[SCSI] bnx2fc: Remove rtnl_trylock/restart_syscall checks
[linux-2.6.git] / drivers / scsi / bnx2fc / bnx2fc_fcoe.c
blob13271a43cd35fab8034f0fe5340bf93cad546c92
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 - 2010 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)
15 #include "bnx2fc.h"
17 static struct list_head adapter_list;
18 static u32 adapter_count;
19 static DEFINE_MUTEX(bnx2fc_dev_lock);
20 DEFINE_PER_CPU(struct bnx2fc_percpu_s, bnx2fc_percpu);
22 #define DRV_MODULE_NAME "bnx2fc"
23 #define DRV_MODULE_VERSION BNX2FC_VERSION
24 #define DRV_MODULE_RELDATE "Jan 25, 2011"
27 static char version[] __devinitdata =
28 "Broadcom NetXtreme II FCoE Driver " DRV_MODULE_NAME \
29 " v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
32 MODULE_AUTHOR("Bhanu Prakash Gollapudi <bprakash@broadcom.com>");
33 MODULE_DESCRIPTION("Broadcom NetXtreme II BCM57710 FCoE Driver");
34 MODULE_LICENSE("GPL");
35 MODULE_VERSION(DRV_MODULE_VERSION);
37 #define BNX2FC_MAX_QUEUE_DEPTH 256
38 #define BNX2FC_MIN_QUEUE_DEPTH 32
39 #define FCOE_WORD_TO_BYTE 4
41 static struct scsi_transport_template *bnx2fc_transport_template;
42 static struct scsi_transport_template *bnx2fc_vport_xport_template;
44 struct workqueue_struct *bnx2fc_wq;
46 /* bnx2fc structure needs only one instance of the fcoe_percpu_s structure.
47 * Here the io threads are per cpu but the l2 thread is just one
49 struct fcoe_percpu_s bnx2fc_global;
50 DEFINE_SPINLOCK(bnx2fc_global_lock);
52 static struct cnic_ulp_ops bnx2fc_cnic_cb;
53 static struct libfc_function_template bnx2fc_libfc_fcn_templ;
54 static struct scsi_host_template bnx2fc_shost_template;
55 static struct fc_function_template bnx2fc_transport_function;
56 static struct fc_function_template bnx2fc_vport_xport_function;
57 static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode);
58 static int bnx2fc_destroy(struct net_device *net_device);
59 static int bnx2fc_enable(struct net_device *netdev);
60 static int bnx2fc_disable(struct net_device *netdev);
62 static void bnx2fc_recv_frame(struct sk_buff *skb);
64 static void bnx2fc_start_disc(struct bnx2fc_hba *hba);
65 static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev);
66 static int bnx2fc_net_config(struct fc_lport *lp);
67 static int bnx2fc_lport_config(struct fc_lport *lport);
68 static int bnx2fc_em_config(struct fc_lport *lport);
69 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba *hba);
70 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba *hba);
71 static int bnx2fc_bind_pcidev(struct bnx2fc_hba *hba);
72 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba);
73 static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
74 struct device *parent, int npiv);
75 static void bnx2fc_destroy_work(struct work_struct *work);
77 static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device *phys_dev);
78 static struct bnx2fc_hba *bnx2fc_find_hba_for_cnic(struct cnic_dev *cnic);
80 static int bnx2fc_fw_init(struct bnx2fc_hba *hba);
81 static void bnx2fc_fw_destroy(struct bnx2fc_hba *hba);
83 static void bnx2fc_port_shutdown(struct fc_lport *lport);
84 static void bnx2fc_stop(struct bnx2fc_hba *hba);
85 static int __init bnx2fc_mod_init(void);
86 static void __exit bnx2fc_mod_exit(void);
88 unsigned int bnx2fc_debug_level;
89 module_param_named(debug_logging, bnx2fc_debug_level, int, S_IRUGO|S_IWUSR);
91 static int bnx2fc_cpu_callback(struct notifier_block *nfb,
92 unsigned long action, void *hcpu);
93 /* notification function for CPU hotplug events */
94 static struct notifier_block bnx2fc_cpu_notifier = {
95 .notifier_call = bnx2fc_cpu_callback,
98 static void bnx2fc_clean_rx_queue(struct fc_lport *lp)
100 struct fcoe_percpu_s *bg;
101 struct fcoe_rcv_info *fr;
102 struct sk_buff_head *list;
103 struct sk_buff *skb, *next;
104 struct sk_buff *head;
106 bg = &bnx2fc_global;
107 spin_lock_bh(&bg->fcoe_rx_list.lock);
108 list = &bg->fcoe_rx_list;
109 head = list->next;
110 for (skb = head; skb != (struct sk_buff *)list;
111 skb = next) {
112 next = skb->next;
113 fr = fcoe_dev_from_skb(skb);
114 if (fr->fr_dev == lp) {
115 __skb_unlink(skb, list);
116 kfree_skb(skb);
119 spin_unlock_bh(&bg->fcoe_rx_list.lock);
122 int bnx2fc_get_paged_crc_eof(struct sk_buff *skb, int tlen)
124 int rc;
125 spin_lock(&bnx2fc_global_lock);
126 rc = fcoe_get_paged_crc_eof(skb, tlen, &bnx2fc_global);
127 spin_unlock(&bnx2fc_global_lock);
129 return rc;
132 static void bnx2fc_abort_io(struct fc_lport *lport)
135 * This function is no-op for bnx2fc, but we do
136 * not want to leave it as NULL either, as libfc
137 * can call the default function which is
138 * fc_fcp_abort_io.
142 static void bnx2fc_cleanup(struct fc_lport *lport)
144 struct fcoe_port *port = lport_priv(lport);
145 struct bnx2fc_hba *hba = port->priv;
146 struct bnx2fc_rport *tgt;
147 int i;
149 BNX2FC_MISC_DBG("Entered %s\n", __func__);
150 mutex_lock(&hba->hba_mutex);
151 spin_lock_bh(&hba->hba_lock);
152 for (i = 0; i < BNX2FC_NUM_MAX_SESS; i++) {
153 tgt = hba->tgt_ofld_list[i];
154 if (tgt) {
155 /* Cleanup IOs belonging to requested vport */
156 if (tgt->port == port) {
157 spin_unlock_bh(&hba->hba_lock);
158 BNX2FC_TGT_DBG(tgt, "flush/cleanup\n");
159 bnx2fc_flush_active_ios(tgt);
160 spin_lock_bh(&hba->hba_lock);
164 spin_unlock_bh(&hba->hba_lock);
165 mutex_unlock(&hba->hba_mutex);
168 static int bnx2fc_xmit_l2_frame(struct bnx2fc_rport *tgt,
169 struct fc_frame *fp)
171 struct fc_rport_priv *rdata = tgt->rdata;
172 struct fc_frame_header *fh;
173 int rc = 0;
175 fh = fc_frame_header_get(fp);
176 BNX2FC_TGT_DBG(tgt, "Xmit L2 frame rport = 0x%x, oxid = 0x%x, "
177 "r_ctl = 0x%x\n", rdata->ids.port_id,
178 ntohs(fh->fh_ox_id), fh->fh_r_ctl);
179 if ((fh->fh_type == FC_TYPE_ELS) &&
180 (fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
182 switch (fc_frame_payload_op(fp)) {
183 case ELS_ADISC:
184 rc = bnx2fc_send_adisc(tgt, fp);
185 break;
186 case ELS_LOGO:
187 rc = bnx2fc_send_logo(tgt, fp);
188 break;
189 case ELS_RLS:
190 rc = bnx2fc_send_rls(tgt, fp);
191 break;
192 default:
193 break;
195 } else if ((fh->fh_type == FC_TYPE_BLS) &&
196 (fh->fh_r_ctl == FC_RCTL_BA_ABTS))
197 BNX2FC_TGT_DBG(tgt, "ABTS frame\n");
198 else {
199 BNX2FC_TGT_DBG(tgt, "Send L2 frame type 0x%x "
200 "rctl 0x%x thru non-offload path\n",
201 fh->fh_type, fh->fh_r_ctl);
202 return -ENODEV;
204 if (rc)
205 return -ENOMEM;
206 else
207 return 0;
211 * bnx2fc_xmit - bnx2fc's FCoE frame transmit function
213 * @lport: the associated local port
214 * @fp: the fc_frame to be transmitted
216 static int bnx2fc_xmit(struct fc_lport *lport, struct fc_frame *fp)
218 struct ethhdr *eh;
219 struct fcoe_crc_eof *cp;
220 struct sk_buff *skb;
221 struct fc_frame_header *fh;
222 struct bnx2fc_hba *hba;
223 struct fcoe_port *port;
224 struct fcoe_hdr *hp;
225 struct bnx2fc_rport *tgt;
226 struct fcoe_dev_stats *stats;
227 u8 sof, eof;
228 u32 crc;
229 unsigned int hlen, tlen, elen;
230 int wlen, rc = 0;
232 port = (struct fcoe_port *)lport_priv(lport);
233 hba = port->priv;
235 fh = fc_frame_header_get(fp);
237 skb = fp_skb(fp);
238 if (!lport->link_up) {
239 BNX2FC_HBA_DBG(lport, "bnx2fc_xmit link down\n");
240 kfree_skb(skb);
241 return 0;
244 if (unlikely(fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
245 if (!hba->ctlr.sel_fcf) {
246 BNX2FC_HBA_DBG(lport, "FCF not selected yet!\n");
247 kfree_skb(skb);
248 return -EINVAL;
250 if (fcoe_ctlr_els_send(&hba->ctlr, lport, skb))
251 return 0;
254 sof = fr_sof(fp);
255 eof = fr_eof(fp);
258 * Snoop the frame header to check if the frame is for
259 * an offloaded session
262 * tgt_ofld_list access is synchronized using
263 * both hba mutex and hba lock. Atleast hba mutex or
264 * hba lock needs to be held for read access.
267 spin_lock_bh(&hba->hba_lock);
268 tgt = bnx2fc_tgt_lookup(port, ntoh24(fh->fh_d_id));
269 if (tgt && (test_bit(BNX2FC_FLAG_SESSION_READY, &tgt->flags))) {
270 /* This frame is for offloaded session */
271 BNX2FC_HBA_DBG(lport, "xmit: Frame is for offloaded session "
272 "port_id = 0x%x\n", ntoh24(fh->fh_d_id));
273 spin_unlock_bh(&hba->hba_lock);
274 rc = bnx2fc_xmit_l2_frame(tgt, fp);
275 if (rc != -ENODEV) {
276 kfree_skb(skb);
277 return rc;
279 } else {
280 spin_unlock_bh(&hba->hba_lock);
283 elen = sizeof(struct ethhdr);
284 hlen = sizeof(struct fcoe_hdr);
285 tlen = sizeof(struct fcoe_crc_eof);
286 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
288 skb->ip_summed = CHECKSUM_NONE;
289 crc = fcoe_fc_crc(fp);
291 /* copy port crc and eof to the skb buff */
292 if (skb_is_nonlinear(skb)) {
293 skb_frag_t *frag;
294 if (bnx2fc_get_paged_crc_eof(skb, tlen)) {
295 kfree_skb(skb);
296 return -ENOMEM;
298 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
299 cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
300 + frag->page_offset;
301 } else {
302 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
305 memset(cp, 0, sizeof(*cp));
306 cp->fcoe_eof = eof;
307 cp->fcoe_crc32 = cpu_to_le32(~crc);
308 if (skb_is_nonlinear(skb)) {
309 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
310 cp = NULL;
313 /* adjust skb network/transport offsets to match mac/fcoe/port */
314 skb_push(skb, elen + hlen);
315 skb_reset_mac_header(skb);
316 skb_reset_network_header(skb);
317 skb->mac_len = elen;
318 skb->protocol = htons(ETH_P_FCOE);
319 skb->dev = hba->netdev;
321 /* fill up mac and fcoe headers */
322 eh = eth_hdr(skb);
323 eh->h_proto = htons(ETH_P_FCOE);
324 if (hba->ctlr.map_dest)
325 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
326 else
327 /* insert GW address */
328 memcpy(eh->h_dest, hba->ctlr.dest_addr, ETH_ALEN);
330 if (unlikely(hba->ctlr.flogi_oxid != FC_XID_UNKNOWN))
331 memcpy(eh->h_source, hba->ctlr.ctl_src_addr, ETH_ALEN);
332 else
333 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
335 hp = (struct fcoe_hdr *)(eh + 1);
336 memset(hp, 0, sizeof(*hp));
337 if (FC_FCOE_VER)
338 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
339 hp->fcoe_sof = sof;
341 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
342 if (lport->seq_offload && fr_max_payload(fp)) {
343 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
344 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
345 } else {
346 skb_shinfo(skb)->gso_type = 0;
347 skb_shinfo(skb)->gso_size = 0;
350 /*update tx stats */
351 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
352 stats->TxFrames++;
353 stats->TxWords += wlen;
354 put_cpu();
356 /* send down to lld */
357 fr_dev(fp) = lport;
358 if (port->fcoe_pending_queue.qlen)
359 fcoe_check_wait_queue(lport, skb);
360 else if (fcoe_start_io(skb))
361 fcoe_check_wait_queue(lport, skb);
363 return 0;
367 * bnx2fc_rcv - This is bnx2fc's receive function called by NET_RX_SOFTIRQ
369 * @skb: the receive socket buffer
370 * @dev: associated net device
371 * @ptype: context
372 * @olddev: last device
374 * This function receives the packet and builds FC frame and passes it up
376 static int bnx2fc_rcv(struct sk_buff *skb, struct net_device *dev,
377 struct packet_type *ptype, struct net_device *olddev)
379 struct fc_lport *lport;
380 struct bnx2fc_hba *hba;
381 struct fc_frame_header *fh;
382 struct fcoe_rcv_info *fr;
383 struct fcoe_percpu_s *bg;
384 unsigned short oxid;
386 hba = container_of(ptype, struct bnx2fc_hba, fcoe_packet_type);
387 lport = hba->ctlr.lp;
389 if (unlikely(lport == NULL)) {
390 printk(KERN_ALERT PFX "bnx2fc_rcv: lport is NULL\n");
391 goto err;
394 if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) {
395 printk(KERN_ALERT PFX "bnx2fc_rcv: Wrong FC type frame\n");
396 goto err;
400 * Check for minimum frame length, and make sure required FCoE
401 * and FC headers are pulled into the linear data area.
403 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
404 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
405 goto err;
407 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
408 fh = (struct fc_frame_header *) skb_transport_header(skb);
410 oxid = ntohs(fh->fh_ox_id);
412 fr = fcoe_dev_from_skb(skb);
413 fr->fr_dev = lport;
414 fr->ptype = ptype;
416 bg = &bnx2fc_global;
417 spin_lock_bh(&bg->fcoe_rx_list.lock);
419 __skb_queue_tail(&bg->fcoe_rx_list, skb);
420 if (bg->fcoe_rx_list.qlen == 1)
421 wake_up_process(bg->thread);
423 spin_unlock_bh(&bg->fcoe_rx_list.lock);
425 return 0;
426 err:
427 kfree_skb(skb);
428 return -1;
431 static int bnx2fc_l2_rcv_thread(void *arg)
433 struct fcoe_percpu_s *bg = arg;
434 struct sk_buff *skb;
436 set_user_nice(current, -20);
437 set_current_state(TASK_INTERRUPTIBLE);
438 while (!kthread_should_stop()) {
439 schedule();
440 set_current_state(TASK_RUNNING);
441 spin_lock_bh(&bg->fcoe_rx_list.lock);
442 while ((skb = __skb_dequeue(&bg->fcoe_rx_list)) != NULL) {
443 spin_unlock_bh(&bg->fcoe_rx_list.lock);
444 bnx2fc_recv_frame(skb);
445 spin_lock_bh(&bg->fcoe_rx_list.lock);
447 spin_unlock_bh(&bg->fcoe_rx_list.lock);
448 set_current_state(TASK_INTERRUPTIBLE);
450 set_current_state(TASK_RUNNING);
451 return 0;
455 static void bnx2fc_recv_frame(struct sk_buff *skb)
457 u32 fr_len;
458 struct fc_lport *lport;
459 struct fcoe_rcv_info *fr;
460 struct fcoe_dev_stats *stats;
461 struct fc_frame_header *fh;
462 struct fcoe_crc_eof crc_eof;
463 struct fc_frame *fp;
464 struct fc_lport *vn_port;
465 struct fcoe_port *port;
466 u8 *mac = NULL;
467 u8 *dest_mac = NULL;
468 struct fcoe_hdr *hp;
470 fr = fcoe_dev_from_skb(skb);
471 lport = fr->fr_dev;
472 if (unlikely(lport == NULL)) {
473 printk(KERN_ALERT PFX "Invalid lport struct\n");
474 kfree_skb(skb);
475 return;
478 if (skb_is_nonlinear(skb))
479 skb_linearize(skb);
480 mac = eth_hdr(skb)->h_source;
481 dest_mac = eth_hdr(skb)->h_dest;
483 /* Pull the header */
484 hp = (struct fcoe_hdr *) skb_network_header(skb);
485 fh = (struct fc_frame_header *) skb_transport_header(skb);
486 skb_pull(skb, sizeof(struct fcoe_hdr));
487 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
489 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
490 stats->RxFrames++;
491 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
493 fp = (struct fc_frame *)skb;
494 fc_frame_init(fp);
495 fr_dev(fp) = lport;
496 fr_sof(fp) = hp->fcoe_sof;
497 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) {
498 put_cpu();
499 kfree_skb(skb);
500 return;
502 fr_eof(fp) = crc_eof.fcoe_eof;
503 fr_crc(fp) = crc_eof.fcoe_crc32;
504 if (pskb_trim(skb, fr_len)) {
505 put_cpu();
506 kfree_skb(skb);
507 return;
510 fh = fc_frame_header_get(fp);
512 vn_port = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
513 if (vn_port) {
514 port = lport_priv(vn_port);
515 if (compare_ether_addr(port->data_src_addr, dest_mac)
516 != 0) {
517 BNX2FC_HBA_DBG(lport, "fpma mismatch\n");
518 put_cpu();
519 kfree_skb(skb);
520 return;
523 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA &&
524 fh->fh_type == FC_TYPE_FCP) {
525 /* Drop FCP data. We dont this in L2 path */
526 put_cpu();
527 kfree_skb(skb);
528 return;
530 if (fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
531 fh->fh_type == FC_TYPE_ELS) {
532 switch (fc_frame_payload_op(fp)) {
533 case ELS_LOGO:
534 if (ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
535 /* drop non-FIP LOGO */
536 put_cpu();
537 kfree_skb(skb);
538 return;
540 break;
543 if (le32_to_cpu(fr_crc(fp)) !=
544 ~crc32(~0, skb->data, fr_len)) {
545 if (stats->InvalidCRCCount < 5)
546 printk(KERN_WARNING PFX "dropping frame with "
547 "CRC error\n");
548 stats->InvalidCRCCount++;
549 put_cpu();
550 kfree_skb(skb);
551 return;
553 put_cpu();
554 fc_exch_recv(lport, fp);
558 * bnx2fc_percpu_io_thread - thread per cpu for ios
560 * @arg: ptr to bnx2fc_percpu_info structure
562 int bnx2fc_percpu_io_thread(void *arg)
564 struct bnx2fc_percpu_s *p = arg;
565 struct bnx2fc_work *work, *tmp;
566 LIST_HEAD(work_list);
568 set_user_nice(current, -20);
569 set_current_state(TASK_INTERRUPTIBLE);
570 while (!kthread_should_stop()) {
571 schedule();
572 set_current_state(TASK_RUNNING);
573 spin_lock_bh(&p->fp_work_lock);
574 while (!list_empty(&p->work_list)) {
575 list_splice_init(&p->work_list, &work_list);
576 spin_unlock_bh(&p->fp_work_lock);
578 list_for_each_entry_safe(work, tmp, &work_list, list) {
579 list_del_init(&work->list);
580 bnx2fc_process_cq_compl(work->tgt, work->wqe);
581 kfree(work);
584 spin_lock_bh(&p->fp_work_lock);
586 spin_unlock_bh(&p->fp_work_lock);
587 set_current_state(TASK_INTERRUPTIBLE);
589 set_current_state(TASK_RUNNING);
591 return 0;
594 static struct fc_host_statistics *bnx2fc_get_host_stats(struct Scsi_Host *shost)
596 struct fc_host_statistics *bnx2fc_stats;
597 struct fc_lport *lport = shost_priv(shost);
598 struct fcoe_port *port = lport_priv(lport);
599 struct bnx2fc_hba *hba = port->priv;
600 struct fcoe_statistics_params *fw_stats;
601 int rc = 0;
603 fw_stats = (struct fcoe_statistics_params *)hba->stats_buffer;
604 if (!fw_stats)
605 return NULL;
607 bnx2fc_stats = fc_get_host_stats(shost);
609 init_completion(&hba->stat_req_done);
610 if (bnx2fc_send_stat_req(hba))
611 return bnx2fc_stats;
612 rc = wait_for_completion_timeout(&hba->stat_req_done, (2 * HZ));
613 if (!rc) {
614 BNX2FC_HBA_DBG(lport, "FW stat req timed out\n");
615 return bnx2fc_stats;
617 bnx2fc_stats->invalid_crc_count += fw_stats->rx_stat1.fc_crc_cnt;
618 bnx2fc_stats->tx_frames += fw_stats->tx_stat.fcoe_tx_pkt_cnt;
619 bnx2fc_stats->tx_words += (fw_stats->tx_stat.fcoe_tx_byte_cnt) / 4;
620 bnx2fc_stats->rx_frames += fw_stats->rx_stat0.fcoe_rx_pkt_cnt;
621 bnx2fc_stats->rx_words += (fw_stats->rx_stat0.fcoe_rx_byte_cnt) / 4;
623 bnx2fc_stats->dumped_frames = 0;
624 bnx2fc_stats->lip_count = 0;
625 bnx2fc_stats->nos_count = 0;
626 bnx2fc_stats->loss_of_sync_count = 0;
627 bnx2fc_stats->loss_of_signal_count = 0;
628 bnx2fc_stats->prim_seq_protocol_err_count = 0;
630 return bnx2fc_stats;
633 static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev)
635 struct fcoe_port *port = lport_priv(lport);
636 struct bnx2fc_hba *hba = port->priv;
637 struct Scsi_Host *shost = lport->host;
638 int rc = 0;
640 shost->max_cmd_len = BNX2FC_MAX_CMD_LEN;
641 shost->max_lun = BNX2FC_MAX_LUN;
642 shost->max_id = BNX2FC_MAX_FCP_TGT;
643 shost->max_channel = 0;
644 if (lport->vport)
645 shost->transportt = bnx2fc_vport_xport_template;
646 else
647 shost->transportt = bnx2fc_transport_template;
649 /* Add the new host to SCSI-ml */
650 rc = scsi_add_host(lport->host, dev);
651 if (rc) {
652 printk(KERN_ERR PFX "Error on scsi_add_host\n");
653 return rc;
655 if (!lport->vport)
656 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
657 sprintf(fc_host_symbolic_name(lport->host), "%s v%s over %s",
658 BNX2FC_NAME, BNX2FC_VERSION,
659 hba->netdev->name);
661 return 0;
664 static int bnx2fc_mfs_update(struct fc_lport *lport)
666 struct fcoe_port *port = lport_priv(lport);
667 struct bnx2fc_hba *hba = port->priv;
668 struct net_device *netdev = hba->netdev;
669 u32 mfs;
670 u32 max_mfs;
672 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
673 sizeof(struct fcoe_crc_eof));
674 max_mfs = BNX2FC_MAX_PAYLOAD + sizeof(struct fc_frame_header);
675 BNX2FC_HBA_DBG(lport, "mfs = %d, max_mfs = %d\n", mfs, max_mfs);
676 if (mfs > max_mfs)
677 mfs = max_mfs;
679 /* Adjust mfs to be a multiple of 256 bytes */
680 mfs = (((mfs - sizeof(struct fc_frame_header)) / BNX2FC_MIN_PAYLOAD) *
681 BNX2FC_MIN_PAYLOAD);
682 mfs = mfs + sizeof(struct fc_frame_header);
684 BNX2FC_HBA_DBG(lport, "Set MFS = %d\n", mfs);
685 if (fc_set_mfs(lport, mfs))
686 return -EINVAL;
687 return 0;
689 static void bnx2fc_link_speed_update(struct fc_lport *lport)
691 struct fcoe_port *port = lport_priv(lport);
692 struct bnx2fc_hba *hba = port->priv;
693 struct net_device *netdev = hba->netdev;
694 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
696 if (!dev_ethtool_get_settings(netdev, &ecmd)) {
697 lport->link_supported_speeds &=
698 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
699 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
700 SUPPORTED_1000baseT_Full))
701 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
702 if (ecmd.supported & SUPPORTED_10000baseT_Full)
703 lport->link_supported_speeds |= FC_PORTSPEED_10GBIT;
705 if (ecmd.speed == SPEED_1000)
706 lport->link_speed = FC_PORTSPEED_1GBIT;
707 if (ecmd.speed == SPEED_10000)
708 lport->link_speed = FC_PORTSPEED_10GBIT;
710 return;
712 static int bnx2fc_link_ok(struct fc_lport *lport)
714 struct fcoe_port *port = lport_priv(lport);
715 struct bnx2fc_hba *hba = port->priv;
716 struct net_device *dev = hba->phys_dev;
717 int rc = 0;
719 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev))
720 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
721 else {
722 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
723 rc = -1;
725 return rc;
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->netdev->state))
738 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
739 else
740 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
743 static int bnx2fc_net_config(struct fc_lport *lport)
745 struct bnx2fc_hba *hba;
746 struct fcoe_port *port;
747 u64 wwnn, wwpn;
749 port = lport_priv(lport);
750 hba = port->priv;
752 /* require support for get_pauseparam ethtool op. */
753 if (!hba->phys_dev->ethtool_ops ||
754 !hba->phys_dev->ethtool_ops->get_pauseparam)
755 return -EOPNOTSUPP;
757 if (bnx2fc_mfs_update(lport))
758 return -EINVAL;
760 skb_queue_head_init(&port->fcoe_pending_queue);
761 port->fcoe_pending_queue_active = 0;
762 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long) lport);
764 bnx2fc_link_speed_update(lport);
766 if (!lport->vport) {
767 wwnn = fcoe_wwn_from_mac(hba->ctlr.ctl_src_addr, 1, 0);
768 BNX2FC_HBA_DBG(lport, "WWNN = 0x%llx\n", wwnn);
769 fc_set_wwnn(lport, wwnn);
771 wwpn = fcoe_wwn_from_mac(hba->ctlr.ctl_src_addr, 2, 0);
772 BNX2FC_HBA_DBG(lport, "WWPN = 0x%llx\n", wwpn);
773 fc_set_wwpn(lport, wwpn);
776 return 0;
779 static void bnx2fc_destroy_timer(unsigned long data)
781 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)data;
783 BNX2FC_HBA_DBG(hba->ctlr.lp, "ERROR:bnx2fc_destroy_timer - "
784 "Destroy compl not received!!\n");
785 hba->flags |= BNX2FC_FLAG_DESTROY_CMPL;
786 wake_up_interruptible(&hba->destroy_wait);
790 * bnx2fc_indicate_netevent - Generic netdev event handler
792 * @context: adapter structure pointer
793 * @event: event type
795 * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and
796 * NETDEV_CHANGE_MTU events
798 static void bnx2fc_indicate_netevent(void *context, unsigned long event)
800 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)context;
801 struct fc_lport *lport = hba->ctlr.lp;
802 struct fc_lport *vport;
803 u32 link_possible = 1;
805 if (!test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
806 BNX2FC_MISC_DBG("driver not ready. event=%s %ld\n",
807 hba->netdev->name, event);
808 return;
812 * ASSUMPTION:
813 * indicate_netevent cannot be called from cnic unless bnx2fc
814 * does register_device
816 BUG_ON(!lport);
818 BNX2FC_HBA_DBG(lport, "enter netevent handler - event=%s %ld\n",
819 hba->netdev->name, event);
821 switch (event) {
822 case NETDEV_UP:
823 BNX2FC_HBA_DBG(lport, "Port up, adapter_state = %ld\n",
824 hba->adapter_state);
825 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state))
826 printk(KERN_ERR "indicate_netevent: "\
827 "adapter is not UP!!\n");
828 /* fall thru to update mfs if MTU has changed */
829 case NETDEV_CHANGEMTU:
830 BNX2FC_HBA_DBG(lport, "NETDEV_CHANGEMTU event\n");
831 bnx2fc_mfs_update(lport);
832 mutex_lock(&lport->lp_mutex);
833 list_for_each_entry(vport, &lport->vports, list)
834 bnx2fc_mfs_update(vport);
835 mutex_unlock(&lport->lp_mutex);
836 break;
838 case NETDEV_DOWN:
839 BNX2FC_HBA_DBG(lport, "Port down\n");
840 clear_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
841 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
842 link_possible = 0;
843 break;
845 case NETDEV_GOING_DOWN:
846 BNX2FC_HBA_DBG(lport, "Port going down\n");
847 set_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
848 link_possible = 0;
849 break;
851 case NETDEV_CHANGE:
852 BNX2FC_HBA_DBG(lport, "NETDEV_CHANGE\n");
853 break;
855 default:
856 printk(KERN_ERR PFX "Unkonwn netevent %ld", event);
857 return;
860 bnx2fc_link_speed_update(lport);
862 if (link_possible && !bnx2fc_link_ok(lport)) {
863 printk(KERN_ERR "indicate_netevent: call ctlr_link_up\n");
864 fcoe_ctlr_link_up(&hba->ctlr);
865 } else {
866 printk(KERN_ERR "indicate_netevent: call ctlr_link_down\n");
867 if (fcoe_ctlr_link_down(&hba->ctlr)) {
868 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
869 mutex_lock(&lport->lp_mutex);
870 list_for_each_entry(vport, &lport->vports, list)
871 fc_host_port_type(vport->host) =
872 FC_PORTTYPE_UNKNOWN;
873 mutex_unlock(&lport->lp_mutex);
874 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
875 per_cpu_ptr(lport->dev_stats,
876 get_cpu())->LinkFailureCount++;
877 put_cpu();
878 fcoe_clean_pending_queue(lport);
880 init_waitqueue_head(&hba->shutdown_wait);
881 BNX2FC_HBA_DBG(lport, "indicate_netevent "
882 "num_ofld_sess = %d\n",
883 hba->num_ofld_sess);
884 hba->wait_for_link_down = 1;
885 BNX2FC_HBA_DBG(lport, "waiting for uploads to "
886 "compl proc = %s\n",
887 current->comm);
888 wait_event_interruptible(hba->shutdown_wait,
889 (hba->num_ofld_sess == 0));
890 BNX2FC_HBA_DBG(lport, "wakeup - num_ofld_sess = %d\n",
891 hba->num_ofld_sess);
892 hba->wait_for_link_down = 0;
894 if (signal_pending(current))
895 flush_signals(current);
900 static int bnx2fc_libfc_config(struct fc_lport *lport)
903 /* Set the function pointers set by bnx2fc driver */
904 memcpy(&lport->tt, &bnx2fc_libfc_fcn_templ,
905 sizeof(struct libfc_function_template));
906 fc_elsct_init(lport);
907 fc_exch_init(lport);
908 fc_rport_init(lport);
909 fc_disc_init(lport);
910 return 0;
913 static int bnx2fc_em_config(struct fc_lport *lport)
915 struct fcoe_port *port = lport_priv(lport);
916 struct bnx2fc_hba *hba = port->priv;
918 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, FCOE_MIN_XID,
919 FCOE_MAX_XID, NULL)) {
920 printk(KERN_ERR PFX "em_config:fc_exch_mgr_alloc failed\n");
921 return -ENOMEM;
924 hba->cmd_mgr = bnx2fc_cmd_mgr_alloc(hba, BNX2FC_MIN_XID,
925 BNX2FC_MAX_XID);
927 if (!hba->cmd_mgr) {
928 printk(KERN_ERR PFX "em_config:bnx2fc_cmd_mgr_alloc failed\n");
929 fc_exch_mgr_free(lport);
930 return -ENOMEM;
932 return 0;
935 static int bnx2fc_lport_config(struct fc_lport *lport)
937 lport->link_up = 0;
938 lport->qfull = 0;
939 lport->max_retry_count = 3;
940 lport->max_rport_retry_count = 3;
941 lport->e_d_tov = 2 * 1000;
942 lport->r_a_tov = 10 * 1000;
944 /* REVISIT: enable when supporting tape devices
945 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
946 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
948 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS);
949 lport->does_npiv = 1;
951 memset(&lport->rnid_gen, 0, sizeof(struct fc_els_rnid_gen));
952 lport->rnid_gen.rnid_atype = BNX2FC_RNID_HBA;
954 /* alloc stats structure */
955 if (fc_lport_init_stats(lport))
956 return -ENOMEM;
958 /* Finish fc_lport configuration */
959 fc_lport_config(lport);
961 return 0;
965 * bnx2fc_fip_recv - handle a received FIP frame.
967 * @skb: the received skb
968 * @dev: associated &net_device
969 * @ptype: the &packet_type structure which was used to register this handler.
970 * @orig_dev: original receive &net_device, in case @ dev is a bond.
972 * Returns: 0 for success
974 static int bnx2fc_fip_recv(struct sk_buff *skb, struct net_device *dev,
975 struct packet_type *ptype,
976 struct net_device *orig_dev)
978 struct bnx2fc_hba *hba;
979 hba = container_of(ptype, struct bnx2fc_hba, fip_packet_type);
980 fcoe_ctlr_recv(&hba->ctlr, skb);
981 return 0;
985 * bnx2fc_update_src_mac - Update Ethernet MAC filters.
987 * @fip: FCoE controller.
988 * @old: Unicast MAC address to delete if the MAC is non-zero.
989 * @new: Unicast MAC address to add.
991 * Remove any previously-set unicast MAC filter.
992 * Add secondary FCoE MAC address filter for our OUI.
994 static void bnx2fc_update_src_mac(struct fc_lport *lport, u8 *addr)
996 struct fcoe_port *port = lport_priv(lport);
998 memcpy(port->data_src_addr, addr, ETH_ALEN);
1002 * bnx2fc_get_src_mac - return the ethernet source address for an lport
1004 * @lport: libfc port
1006 static u8 *bnx2fc_get_src_mac(struct fc_lport *lport)
1008 struct fcoe_port *port;
1010 port = (struct fcoe_port *)lport_priv(lport);
1011 return port->data_src_addr;
1015 * bnx2fc_fip_send - send an Ethernet-encapsulated FIP frame.
1017 * @fip: FCoE controller.
1018 * @skb: FIP Packet.
1020 static void bnx2fc_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
1022 skb->dev = bnx2fc_from_ctlr(fip)->netdev;
1023 dev_queue_xmit(skb);
1026 static int bnx2fc_vport_create(struct fc_vport *vport, bool disabled)
1028 struct Scsi_Host *shost = vport_to_shost(vport);
1029 struct fc_lport *n_port = shost_priv(shost);
1030 struct fcoe_port *port = lport_priv(n_port);
1031 struct bnx2fc_hba *hba = port->priv;
1032 struct net_device *netdev = hba->netdev;
1033 struct fc_lport *vn_port;
1035 if (!test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done)) {
1036 printk(KERN_ERR PFX "vn ports cannot be created on"
1037 "this hba\n");
1038 return -EIO;
1040 mutex_lock(&bnx2fc_dev_lock);
1041 vn_port = bnx2fc_if_create(hba, &vport->dev, 1);
1042 mutex_unlock(&bnx2fc_dev_lock);
1044 if (IS_ERR(vn_port)) {
1045 printk(KERN_ERR PFX "bnx2fc_vport_create (%s) failed\n",
1046 netdev->name);
1047 return -EIO;
1050 if (disabled) {
1051 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1052 } else {
1053 vn_port->boot_time = jiffies;
1054 fc_lport_init(vn_port);
1055 fc_fabric_login(vn_port);
1056 fc_vport_setlink(vn_port);
1058 return 0;
1061 static int bnx2fc_vport_destroy(struct fc_vport *vport)
1063 struct Scsi_Host *shost = vport_to_shost(vport);
1064 struct fc_lport *n_port = shost_priv(shost);
1065 struct fc_lport *vn_port = vport->dd_data;
1066 struct fcoe_port *port = lport_priv(vn_port);
1068 mutex_lock(&n_port->lp_mutex);
1069 list_del(&vn_port->list);
1070 mutex_unlock(&n_port->lp_mutex);
1071 queue_work(bnx2fc_wq, &port->destroy_work);
1072 return 0;
1075 static int bnx2fc_vport_disable(struct fc_vport *vport, bool disable)
1077 struct fc_lport *lport = vport->dd_data;
1079 if (disable) {
1080 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1081 fc_fabric_logoff(lport);
1082 } else {
1083 lport->boot_time = jiffies;
1084 fc_fabric_login(lport);
1085 fc_vport_setlink(lport);
1087 return 0;
1091 static int bnx2fc_netdev_setup(struct bnx2fc_hba *hba)
1093 struct net_device *netdev = hba->netdev;
1094 struct net_device *physdev = hba->phys_dev;
1095 struct netdev_hw_addr *ha;
1096 int sel_san_mac = 0;
1098 /* Do not support for bonding device */
1099 if ((netdev->priv_flags & IFF_MASTER_ALB) ||
1100 (netdev->priv_flags & IFF_SLAVE_INACTIVE) ||
1101 (netdev->priv_flags & IFF_MASTER_8023AD)) {
1102 return -EOPNOTSUPP;
1105 /* setup Source MAC Address */
1106 rcu_read_lock();
1107 for_each_dev_addr(physdev, ha) {
1108 BNX2FC_MISC_DBG("net_config: ha->type = %d, fip_mac = ",
1109 ha->type);
1110 printk(KERN_INFO "%2x:%2x:%2x:%2x:%2x:%2x\n", ha->addr[0],
1111 ha->addr[1], ha->addr[2], ha->addr[3],
1112 ha->addr[4], ha->addr[5]);
1114 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
1115 (is_valid_ether_addr(ha->addr))) {
1116 memcpy(hba->ctlr.ctl_src_addr, ha->addr, ETH_ALEN);
1117 sel_san_mac = 1;
1118 BNX2FC_MISC_DBG("Found SAN MAC\n");
1121 rcu_read_unlock();
1123 if (!sel_san_mac)
1124 return -ENODEV;
1126 hba->fip_packet_type.func = bnx2fc_fip_recv;
1127 hba->fip_packet_type.type = htons(ETH_P_FIP);
1128 hba->fip_packet_type.dev = netdev;
1129 dev_add_pack(&hba->fip_packet_type);
1131 hba->fcoe_packet_type.func = bnx2fc_rcv;
1132 hba->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
1133 hba->fcoe_packet_type.dev = netdev;
1134 dev_add_pack(&hba->fcoe_packet_type);
1136 return 0;
1139 static int bnx2fc_attach_transport(void)
1141 bnx2fc_transport_template =
1142 fc_attach_transport(&bnx2fc_transport_function);
1144 if (bnx2fc_transport_template == NULL) {
1145 printk(KERN_ERR PFX "Failed to attach FC transport\n");
1146 return -ENODEV;
1149 bnx2fc_vport_xport_template =
1150 fc_attach_transport(&bnx2fc_vport_xport_function);
1151 if (bnx2fc_vport_xport_template == NULL) {
1152 printk(KERN_ERR PFX
1153 "Failed to attach FC transport for vport\n");
1154 fc_release_transport(bnx2fc_transport_template);
1155 bnx2fc_transport_template = NULL;
1156 return -ENODEV;
1158 return 0;
1160 static void bnx2fc_release_transport(void)
1162 fc_release_transport(bnx2fc_transport_template);
1163 fc_release_transport(bnx2fc_vport_xport_template);
1164 bnx2fc_transport_template = NULL;
1165 bnx2fc_vport_xport_template = NULL;
1168 static void bnx2fc_interface_release(struct kref *kref)
1170 struct bnx2fc_hba *hba;
1171 struct net_device *netdev;
1172 struct net_device *phys_dev;
1174 hba = container_of(kref, struct bnx2fc_hba, kref);
1175 BNX2FC_HBA_DBG(hba->ctlr.lp, "Interface is being released\n");
1177 netdev = hba->netdev;
1178 phys_dev = hba->phys_dev;
1180 /* tear-down FIP controller */
1181 if (test_and_clear_bit(BNX2FC_CTLR_INIT_DONE, &hba->init_done))
1182 fcoe_ctlr_destroy(&hba->ctlr);
1184 /* Free the command manager */
1185 if (hba->cmd_mgr) {
1186 bnx2fc_cmd_mgr_free(hba->cmd_mgr);
1187 hba->cmd_mgr = NULL;
1189 dev_put(netdev);
1190 module_put(THIS_MODULE);
1193 static inline void bnx2fc_interface_get(struct bnx2fc_hba *hba)
1195 kref_get(&hba->kref);
1198 static inline void bnx2fc_interface_put(struct bnx2fc_hba *hba)
1200 kref_put(&hba->kref, bnx2fc_interface_release);
1202 static void bnx2fc_interface_destroy(struct bnx2fc_hba *hba)
1204 bnx2fc_unbind_pcidev(hba);
1205 kfree(hba);
1209 * bnx2fc_interface_create - create a new fcoe instance
1211 * @cnic: pointer to cnic device
1213 * Creates a new FCoE instance on the given device which include allocating
1214 * hba structure, scsi_host and lport structures.
1216 static struct bnx2fc_hba *bnx2fc_interface_create(struct cnic_dev *cnic)
1218 struct bnx2fc_hba *hba;
1219 int rc;
1221 hba = kzalloc(sizeof(*hba), GFP_KERNEL);
1222 if (!hba) {
1223 printk(KERN_ERR PFX "Unable to allocate hba structure\n");
1224 return NULL;
1226 spin_lock_init(&hba->hba_lock);
1227 mutex_init(&hba->hba_mutex);
1229 hba->cnic = cnic;
1230 rc = bnx2fc_bind_pcidev(hba);
1231 if (rc)
1232 goto bind_err;
1233 hba->phys_dev = cnic->netdev;
1234 /* will get overwritten after we do vlan discovery */
1235 hba->netdev = hba->phys_dev;
1237 init_waitqueue_head(&hba->shutdown_wait);
1238 init_waitqueue_head(&hba->destroy_wait);
1240 return hba;
1241 bind_err:
1242 printk(KERN_ERR PFX "create_interface: bind error\n");
1243 kfree(hba);
1244 return NULL;
1247 static int bnx2fc_interface_setup(struct bnx2fc_hba *hba,
1248 enum fip_state fip_mode)
1250 int rc = 0;
1251 struct net_device *netdev = hba->netdev;
1252 struct fcoe_ctlr *fip = &hba->ctlr;
1254 dev_hold(netdev);
1255 kref_init(&hba->kref);
1257 hba->flags = 0;
1259 /* Initialize FIP */
1260 memset(fip, 0, sizeof(*fip));
1261 fcoe_ctlr_init(fip, fip_mode);
1262 hba->ctlr.send = bnx2fc_fip_send;
1263 hba->ctlr.update_mac = bnx2fc_update_src_mac;
1264 hba->ctlr.get_src_addr = bnx2fc_get_src_mac;
1265 set_bit(BNX2FC_CTLR_INIT_DONE, &hba->init_done);
1267 rc = bnx2fc_netdev_setup(hba);
1268 if (rc)
1269 goto setup_err;
1271 hba->next_conn_id = 0;
1273 memset(hba->tgt_ofld_list, 0, sizeof(hba->tgt_ofld_list));
1274 hba->num_ofld_sess = 0;
1276 return 0;
1278 setup_err:
1279 fcoe_ctlr_destroy(&hba->ctlr);
1280 dev_put(netdev);
1281 bnx2fc_interface_put(hba);
1282 return rc;
1286 * bnx2fc_if_create - Create FCoE instance on a given interface
1288 * @hba: FCoE interface to create a local port on
1289 * @parent: Device pointer to be the parent in sysfs for the SCSI host
1290 * @npiv: Indicates if the port is vport or not
1292 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
1294 * Returns: Allocated fc_lport or an error pointer
1296 static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
1297 struct device *parent, int npiv)
1299 struct fc_lport *lport = NULL;
1300 struct fcoe_port *port;
1301 struct Scsi_Host *shost;
1302 struct fc_vport *vport = dev_to_vport(parent);
1303 int rc = 0;
1305 /* Allocate Scsi_Host structure */
1306 if (!npiv) {
1307 lport = libfc_host_alloc(&bnx2fc_shost_template,
1308 sizeof(struct fcoe_port));
1309 } else {
1310 lport = libfc_vport_create(vport,
1311 sizeof(struct fcoe_port));
1314 if (!lport) {
1315 printk(KERN_ERR PFX "could not allocate scsi host structure\n");
1316 return NULL;
1318 shost = lport->host;
1319 port = lport_priv(lport);
1320 port->lport = lport;
1321 port->priv = hba;
1322 INIT_WORK(&port->destroy_work, bnx2fc_destroy_work);
1324 /* Configure fcoe_port */
1325 rc = bnx2fc_lport_config(lport);
1326 if (rc)
1327 goto lp_config_err;
1329 if (npiv) {
1330 vport = dev_to_vport(parent);
1331 printk(KERN_ERR PFX "Setting vport names, 0x%llX 0x%llX\n",
1332 vport->node_name, vport->port_name);
1333 fc_set_wwnn(lport, vport->node_name);
1334 fc_set_wwpn(lport, vport->port_name);
1336 /* Configure netdev and networking properties of the lport */
1337 rc = bnx2fc_net_config(lport);
1338 if (rc) {
1339 printk(KERN_ERR PFX "Error on bnx2fc_net_config\n");
1340 goto lp_config_err;
1343 rc = bnx2fc_shost_config(lport, parent);
1344 if (rc) {
1345 printk(KERN_ERR PFX "Couldnt configure shost for %s\n",
1346 hba->netdev->name);
1347 goto lp_config_err;
1350 /* Initialize the libfc library */
1351 rc = bnx2fc_libfc_config(lport);
1352 if (rc) {
1353 printk(KERN_ERR PFX "Couldnt configure libfc\n");
1354 goto shost_err;
1356 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
1358 /* Allocate exchange manager */
1359 if (!npiv) {
1360 rc = bnx2fc_em_config(lport);
1361 if (rc) {
1362 printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
1363 goto shost_err;
1367 bnx2fc_interface_get(hba);
1368 return lport;
1370 shost_err:
1371 scsi_remove_host(shost);
1372 lp_config_err:
1373 scsi_host_put(lport->host);
1374 return NULL;
1377 static void bnx2fc_netdev_cleanup(struct bnx2fc_hba *hba)
1379 /* Dont listen for Ethernet packets anymore */
1380 __dev_remove_pack(&hba->fcoe_packet_type);
1381 __dev_remove_pack(&hba->fip_packet_type);
1382 synchronize_net();
1385 static void bnx2fc_if_destroy(struct fc_lport *lport)
1387 struct fcoe_port *port = lport_priv(lport);
1388 struct bnx2fc_hba *hba = port->priv;
1390 BNX2FC_HBA_DBG(hba->ctlr.lp, "ENTERED bnx2fc_if_destroy\n");
1391 /* Stop the transmit retry timer */
1392 del_timer_sync(&port->timer);
1394 /* Free existing transmit skbs */
1395 fcoe_clean_pending_queue(lport);
1397 bnx2fc_interface_put(hba);
1399 /* Free queued packets for the receive thread */
1400 bnx2fc_clean_rx_queue(lport);
1402 /* Detach from scsi-ml */
1403 fc_remove_host(lport->host);
1404 scsi_remove_host(lport->host);
1407 * Note that only the physical lport will have the exchange manager.
1408 * for vports, this function is NOP
1410 fc_exch_mgr_free(lport);
1412 /* Free memory used by statistical counters */
1413 fc_lport_free_stats(lport);
1415 /* Release Scsi_Host */
1416 scsi_host_put(lport->host);
1420 * bnx2fc_destroy - Destroy a bnx2fc FCoE interface
1422 * @buffer: The name of the Ethernet interface to be destroyed
1423 * @kp: The associated kernel parameter
1425 * Called from sysfs.
1427 * Returns: 0 for success
1429 static int bnx2fc_destroy(struct net_device *netdev)
1431 struct bnx2fc_hba *hba = NULL;
1432 struct net_device *phys_dev;
1433 int rc = 0;
1435 rtnl_lock();
1437 mutex_lock(&bnx2fc_dev_lock);
1438 #ifdef CONFIG_SCSI_BNX2X_FCOE_MODULE
1439 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1440 rc = -ENODEV;
1441 goto netdev_err;
1443 #endif
1444 /* obtain physical netdev */
1445 if (netdev->priv_flags & IFF_802_1Q_VLAN)
1446 phys_dev = vlan_dev_real_dev(netdev);
1447 else {
1448 printk(KERN_ERR PFX "Not a vlan device\n");
1449 rc = -ENODEV;
1450 goto netdev_err;
1453 hba = bnx2fc_hba_lookup(phys_dev);
1454 if (!hba || !hba->ctlr.lp) {
1455 rc = -ENODEV;
1456 printk(KERN_ERR PFX "bnx2fc_destroy: hba or lport not found\n");
1457 goto netdev_err;
1460 if (!test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
1461 printk(KERN_ERR PFX "bnx2fc_destroy: Create not called\n");
1462 goto netdev_err;
1465 bnx2fc_netdev_cleanup(hba);
1467 bnx2fc_stop(hba);
1469 bnx2fc_if_destroy(hba->ctlr.lp);
1471 destroy_workqueue(hba->timer_work_queue);
1473 if (test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done))
1474 bnx2fc_fw_destroy(hba);
1476 clear_bit(BNX2FC_CREATE_DONE, &hba->init_done);
1477 netdev_err:
1478 mutex_unlock(&bnx2fc_dev_lock);
1479 rtnl_unlock();
1480 return rc;
1483 static void bnx2fc_destroy_work(struct work_struct *work)
1485 struct fcoe_port *port;
1486 struct fc_lport *lport;
1488 port = container_of(work, struct fcoe_port, destroy_work);
1489 lport = port->lport;
1491 BNX2FC_HBA_DBG(lport, "Entered bnx2fc_destroy_work\n");
1493 bnx2fc_port_shutdown(lport);
1494 rtnl_lock();
1495 mutex_lock(&bnx2fc_dev_lock);
1496 bnx2fc_if_destroy(lport);
1497 mutex_unlock(&bnx2fc_dev_lock);
1498 rtnl_unlock();
1501 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba *hba)
1503 bnx2fc_free_fw_resc(hba);
1504 bnx2fc_free_task_ctx(hba);
1508 * bnx2fc_bind_adapter_devices - binds bnx2fc adapter with the associated
1509 * pci structure
1511 * @hba: Adapter instance
1513 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba *hba)
1515 if (bnx2fc_setup_task_ctx(hba))
1516 goto mem_err;
1518 if (bnx2fc_setup_fw_resc(hba))
1519 goto mem_err;
1521 return 0;
1522 mem_err:
1523 bnx2fc_unbind_adapter_devices(hba);
1524 return -ENOMEM;
1527 static int bnx2fc_bind_pcidev(struct bnx2fc_hba *hba)
1529 struct cnic_dev *cnic;
1531 if (!hba->cnic) {
1532 printk(KERN_ERR PFX "cnic is NULL\n");
1533 return -ENODEV;
1535 cnic = hba->cnic;
1536 hba->pcidev = cnic->pcidev;
1537 if (hba->pcidev)
1538 pci_dev_get(hba->pcidev);
1540 return 0;
1543 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba)
1545 if (hba->pcidev)
1546 pci_dev_put(hba->pcidev);
1547 hba->pcidev = NULL;
1553 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
1555 * @handle: transport handle pointing to adapter struture
1557 * This function maps adapter structure to pcidev structure and initiates
1558 * firmware handshake to enable/initialize on-chip FCoE components.
1559 * This bnx2fc - cnic interface api callback is used after following
1560 * conditions are met -
1561 * a) underlying network interface is up (marked by event NETDEV_UP
1562 * from netdev
1563 * b) bnx2fc adatper structure is registered.
1565 static void bnx2fc_ulp_start(void *handle)
1567 struct bnx2fc_hba *hba = handle;
1568 struct fc_lport *lport = hba->ctlr.lp;
1570 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1571 mutex_lock(&bnx2fc_dev_lock);
1573 if (test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done))
1574 goto start_disc;
1576 if (test_bit(BNX2FC_CREATE_DONE, &hba->init_done))
1577 bnx2fc_fw_init(hba);
1579 start_disc:
1580 mutex_unlock(&bnx2fc_dev_lock);
1582 BNX2FC_MISC_DBG("bnx2fc started.\n");
1584 /* Kick off Fabric discovery*/
1585 if (test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
1586 printk(KERN_ERR PFX "ulp_init: start discovery\n");
1587 lport->tt.frame_send = bnx2fc_xmit;
1588 bnx2fc_start_disc(hba);
1592 static void bnx2fc_port_shutdown(struct fc_lport *lport)
1594 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1595 fc_fabric_logoff(lport);
1596 fc_lport_destroy(lport);
1599 static void bnx2fc_stop(struct bnx2fc_hba *hba)
1601 struct fc_lport *lport;
1602 struct fc_lport *vport;
1604 BNX2FC_MISC_DBG("ENTERED %s - init_done = %ld\n", __func__,
1605 hba->init_done);
1606 if (test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done) &&
1607 test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
1608 lport = hba->ctlr.lp;
1609 bnx2fc_port_shutdown(lport);
1610 BNX2FC_HBA_DBG(lport, "bnx2fc_stop: waiting for %d "
1611 "offloaded sessions\n",
1612 hba->num_ofld_sess);
1613 wait_event_interruptible(hba->shutdown_wait,
1614 (hba->num_ofld_sess == 0));
1615 mutex_lock(&lport->lp_mutex);
1616 list_for_each_entry(vport, &lport->vports, list)
1617 fc_host_port_type(vport->host) = FC_PORTTYPE_UNKNOWN;
1618 mutex_unlock(&lport->lp_mutex);
1619 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
1620 fcoe_ctlr_link_down(&hba->ctlr);
1621 fcoe_clean_pending_queue(lport);
1623 mutex_lock(&hba->hba_mutex);
1624 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
1625 clear_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
1627 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
1628 mutex_unlock(&hba->hba_mutex);
1632 static int bnx2fc_fw_init(struct bnx2fc_hba *hba)
1634 #define BNX2FC_INIT_POLL_TIME (1000 / HZ)
1635 int rc = -1;
1636 int i = HZ;
1638 rc = bnx2fc_bind_adapter_devices(hba);
1639 if (rc) {
1640 printk(KERN_ALERT PFX
1641 "bnx2fc_bind_adapter_devices failed - rc = %d\n", rc);
1642 goto err_out;
1645 rc = bnx2fc_send_fw_fcoe_init_msg(hba);
1646 if (rc) {
1647 printk(KERN_ALERT PFX
1648 "bnx2fc_send_fw_fcoe_init_msg failed - rc = %d\n", rc);
1649 goto err_unbind;
1653 * Wait until the adapter init message is complete, and adapter
1654 * state is UP.
1656 while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--)
1657 msleep(BNX2FC_INIT_POLL_TIME);
1659 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state)) {
1660 printk(KERN_ERR PFX "bnx2fc_start: %s failed to initialize. "
1661 "Ignoring...\n",
1662 hba->cnic->netdev->name);
1663 rc = -1;
1664 goto err_unbind;
1668 /* Mark HBA to indicate that the FW INIT is done */
1669 set_bit(BNX2FC_FW_INIT_DONE, &hba->init_done);
1670 return 0;
1672 err_unbind:
1673 bnx2fc_unbind_adapter_devices(hba);
1674 err_out:
1675 return rc;
1678 static void bnx2fc_fw_destroy(struct bnx2fc_hba *hba)
1680 if (test_and_clear_bit(BNX2FC_FW_INIT_DONE, &hba->init_done)) {
1681 if (bnx2fc_send_fw_fcoe_destroy_msg(hba) == 0) {
1682 init_timer(&hba->destroy_timer);
1683 hba->destroy_timer.expires = BNX2FC_FW_TIMEOUT +
1684 jiffies;
1685 hba->destroy_timer.function = bnx2fc_destroy_timer;
1686 hba->destroy_timer.data = (unsigned long)hba;
1687 add_timer(&hba->destroy_timer);
1688 wait_event_interruptible(hba->destroy_wait,
1689 (hba->flags &
1690 BNX2FC_FLAG_DESTROY_CMPL));
1691 /* This should never happen */
1692 if (signal_pending(current))
1693 flush_signals(current);
1695 del_timer_sync(&hba->destroy_timer);
1697 bnx2fc_unbind_adapter_devices(hba);
1702 * bnx2fc_ulp_stop - cnic callback to shutdown adapter instance
1704 * @handle: transport handle pointing to adapter structure
1706 * Driver checks if adapter is already in shutdown mode, if not start
1707 * the shutdown process.
1709 static void bnx2fc_ulp_stop(void *handle)
1711 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)handle;
1713 printk(KERN_ERR "ULP_STOP\n");
1715 mutex_lock(&bnx2fc_dev_lock);
1716 bnx2fc_stop(hba);
1717 bnx2fc_fw_destroy(hba);
1718 mutex_unlock(&bnx2fc_dev_lock);
1721 static void bnx2fc_start_disc(struct bnx2fc_hba *hba)
1723 struct fc_lport *lport;
1724 int wait_cnt = 0;
1726 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1727 /* Kick off FIP/FLOGI */
1728 if (!test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done)) {
1729 printk(KERN_ERR PFX "Init not done yet\n");
1730 return;
1733 lport = hba->ctlr.lp;
1734 BNX2FC_HBA_DBG(lport, "calling fc_fabric_login\n");
1736 if (!bnx2fc_link_ok(lport)) {
1737 BNX2FC_HBA_DBG(lport, "ctlr_link_up\n");
1738 fcoe_ctlr_link_up(&hba->ctlr);
1739 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
1740 set_bit(ADAPTER_STATE_READY, &hba->adapter_state);
1743 /* wait for the FCF to be selected before issuing FLOGI */
1744 while (!hba->ctlr.sel_fcf) {
1745 msleep(250);
1746 /* give up after 3 secs */
1747 if (++wait_cnt > 12)
1748 break;
1750 fc_lport_init(lport);
1751 fc_fabric_login(lport);
1756 * bnx2fc_ulp_init - Initialize an adapter instance
1758 * @dev : cnic device handle
1759 * Called from cnic_register_driver() context to initialize all
1760 * enumerated cnic devices. This routine allocates adapter structure
1761 * and other device specific resources.
1763 static void bnx2fc_ulp_init(struct cnic_dev *dev)
1765 struct bnx2fc_hba *hba;
1766 int rc = 0;
1768 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1769 /* bnx2fc works only when bnx2x is loaded */
1770 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
1771 printk(KERN_ERR PFX "bnx2fc FCoE not supported on %s,"
1772 " flags: %lx\n",
1773 dev->netdev->name, dev->flags);
1774 return;
1777 /* Configure FCoE interface */
1778 hba = bnx2fc_interface_create(dev);
1779 if (!hba) {
1780 printk(KERN_ERR PFX "hba initialization failed\n");
1781 return;
1784 /* Add HBA to the adapter list */
1785 mutex_lock(&bnx2fc_dev_lock);
1786 list_add_tail(&hba->link, &adapter_list);
1787 adapter_count++;
1788 mutex_unlock(&bnx2fc_dev_lock);
1790 clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
1791 rc = dev->register_device(dev, CNIC_ULP_FCOE,
1792 (void *) hba);
1793 if (rc)
1794 printk(KERN_ALERT PFX "register_device failed, rc = %d\n", rc);
1795 else
1796 set_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
1800 static int bnx2fc_disable(struct net_device *netdev)
1802 struct bnx2fc_hba *hba;
1803 struct net_device *phys_dev;
1804 struct ethtool_drvinfo drvinfo;
1805 int rc = 0;
1807 rtnl_lock();
1809 mutex_lock(&bnx2fc_dev_lock);
1811 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1812 rc = -ENODEV;
1813 goto nodev;
1816 /* obtain physical netdev */
1817 if (netdev->priv_flags & IFF_802_1Q_VLAN)
1818 phys_dev = vlan_dev_real_dev(netdev);
1819 else {
1820 printk(KERN_ERR PFX "Not a vlan device\n");
1821 rc = -ENODEV;
1822 goto nodev;
1825 /* verify if the physical device is a netxtreme2 device */
1826 if (phys_dev->ethtool_ops && phys_dev->ethtool_ops->get_drvinfo) {
1827 memset(&drvinfo, 0, sizeof(drvinfo));
1828 phys_dev->ethtool_ops->get_drvinfo(phys_dev, &drvinfo);
1829 if (strcmp(drvinfo.driver, "bnx2x")) {
1830 printk(KERN_ERR PFX "Not a netxtreme2 device\n");
1831 rc = -ENODEV;
1832 goto nodev;
1834 } else {
1835 printk(KERN_ERR PFX "unable to obtain drv_info\n");
1836 rc = -ENODEV;
1837 goto nodev;
1840 printk(KERN_ERR PFX "phys_dev is netxtreme2 device\n");
1842 /* obtain hba and initialize rest of the structure */
1843 hba = bnx2fc_hba_lookup(phys_dev);
1844 if (!hba || !hba->ctlr.lp) {
1845 rc = -ENODEV;
1846 printk(KERN_ERR PFX "bnx2fc_disable: hba or lport not found\n");
1847 } else {
1848 fcoe_ctlr_link_down(&hba->ctlr);
1849 fcoe_clean_pending_queue(hba->ctlr.lp);
1852 nodev:
1853 mutex_unlock(&bnx2fc_dev_lock);
1854 rtnl_unlock();
1855 return rc;
1859 static int bnx2fc_enable(struct net_device *netdev)
1861 struct bnx2fc_hba *hba;
1862 struct net_device *phys_dev;
1863 struct ethtool_drvinfo drvinfo;
1864 int rc = 0;
1866 rtnl_lock();
1868 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1869 mutex_lock(&bnx2fc_dev_lock);
1871 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1872 rc = -ENODEV;
1873 goto nodev;
1876 /* obtain physical netdev */
1877 if (netdev->priv_flags & IFF_802_1Q_VLAN)
1878 phys_dev = vlan_dev_real_dev(netdev);
1879 else {
1880 printk(KERN_ERR PFX "Not a vlan device\n");
1881 rc = -ENODEV;
1882 goto nodev;
1884 /* verify if the physical device is a netxtreme2 device */
1885 if (phys_dev->ethtool_ops && phys_dev->ethtool_ops->get_drvinfo) {
1886 memset(&drvinfo, 0, sizeof(drvinfo));
1887 phys_dev->ethtool_ops->get_drvinfo(phys_dev, &drvinfo);
1888 if (strcmp(drvinfo.driver, "bnx2x")) {
1889 printk(KERN_ERR PFX "Not a netxtreme2 device\n");
1890 rc = -ENODEV;
1891 goto nodev;
1893 } else {
1894 printk(KERN_ERR PFX "unable to obtain drv_info\n");
1895 rc = -ENODEV;
1896 goto nodev;
1899 /* obtain hba and initialize rest of the structure */
1900 hba = bnx2fc_hba_lookup(phys_dev);
1901 if (!hba || !hba->ctlr.lp) {
1902 rc = -ENODEV;
1903 printk(KERN_ERR PFX "bnx2fc_enable: hba or lport not found\n");
1904 } else if (!bnx2fc_link_ok(hba->ctlr.lp))
1905 fcoe_ctlr_link_up(&hba->ctlr);
1907 nodev:
1908 mutex_unlock(&bnx2fc_dev_lock);
1909 rtnl_unlock();
1910 return rc;
1914 * bnx2fc_create - Create bnx2fc FCoE interface
1916 * @buffer: The name of Ethernet interface to create on
1917 * @kp: The associated kernel param
1919 * Called from sysfs.
1921 * Returns: 0 for success
1923 static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode)
1925 struct bnx2fc_hba *hba;
1926 struct net_device *phys_dev;
1927 struct fc_lport *lport;
1928 struct ethtool_drvinfo drvinfo;
1929 int rc = 0;
1930 int vlan_id;
1932 BNX2FC_MISC_DBG("Entered bnx2fc_create\n");
1933 if (fip_mode != FIP_MODE_FABRIC) {
1934 printk(KERN_ERR "fip mode not FABRIC\n");
1935 return -EIO;
1938 rtnl_lock();
1940 mutex_lock(&bnx2fc_dev_lock);
1942 #ifdef CONFIG_SCSI_BNX2X_FCOE_MODULE
1943 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1944 rc = -ENODEV;
1945 goto mod_err;
1947 #endif
1949 if (!try_module_get(THIS_MODULE)) {
1950 rc = -EINVAL;
1951 goto mod_err;
1954 /* obtain physical netdev */
1955 if (netdev->priv_flags & IFF_802_1Q_VLAN) {
1956 phys_dev = vlan_dev_real_dev(netdev);
1957 vlan_id = vlan_dev_vlan_id(netdev);
1958 } else {
1959 printk(KERN_ERR PFX "Not a vlan device\n");
1960 rc = -EINVAL;
1961 goto netdev_err;
1963 /* verify if the physical device is a netxtreme2 device */
1964 if (phys_dev->ethtool_ops && phys_dev->ethtool_ops->get_drvinfo) {
1965 memset(&drvinfo, 0, sizeof(drvinfo));
1966 phys_dev->ethtool_ops->get_drvinfo(phys_dev, &drvinfo);
1967 if (strcmp(drvinfo.driver, "bnx2x")) {
1968 printk(KERN_ERR PFX "Not a netxtreme2 device\n");
1969 rc = -EINVAL;
1970 goto netdev_err;
1972 } else {
1973 printk(KERN_ERR PFX "unable to obtain drv_info\n");
1974 rc = -EINVAL;
1975 goto netdev_err;
1978 /* obtain hba and initialize rest of the structure */
1979 hba = bnx2fc_hba_lookup(phys_dev);
1980 if (!hba) {
1981 rc = -ENODEV;
1982 printk(KERN_ERR PFX "bnx2fc_create: hba not found\n");
1983 goto netdev_err;
1986 if (!test_bit(BNX2FC_FW_INIT_DONE, &hba->init_done)) {
1987 rc = bnx2fc_fw_init(hba);
1988 if (rc)
1989 goto netdev_err;
1992 if (test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
1993 rc = -EEXIST;
1994 goto netdev_err;
1997 /* update netdev with vlan netdev */
1998 hba->netdev = netdev;
1999 hba->vlan_id = vlan_id;
2000 hba->vlan_enabled = 1;
2002 rc = bnx2fc_interface_setup(hba, fip_mode);
2003 if (rc) {
2004 printk(KERN_ERR PFX "bnx2fc_interface_setup failed\n");
2005 goto ifput_err;
2008 hba->timer_work_queue =
2009 create_singlethread_workqueue("bnx2fc_timer_wq");
2010 if (!hba->timer_work_queue) {
2011 printk(KERN_ERR PFX "ulp_init could not create timer_wq\n");
2012 rc = -EINVAL;
2013 goto ifput_err;
2016 lport = bnx2fc_if_create(hba, &hba->pcidev->dev, 0);
2017 if (!lport) {
2018 printk(KERN_ERR PFX "Failed to create interface (%s)\n",
2019 netdev->name);
2020 bnx2fc_netdev_cleanup(hba);
2021 rc = -EINVAL;
2022 goto if_create_err;
2025 lport->boot_time = jiffies;
2027 /* Make this master N_port */
2028 hba->ctlr.lp = lport;
2030 set_bit(BNX2FC_CREATE_DONE, &hba->init_done);
2031 printk(KERN_ERR PFX "create: START DISC\n");
2032 bnx2fc_start_disc(hba);
2034 * Release from kref_init in bnx2fc_interface_setup, on success
2035 * lport should be holding a reference taken in bnx2fc_if_create
2037 bnx2fc_interface_put(hba);
2038 /* put netdev that was held while calling dev_get_by_name */
2039 mutex_unlock(&bnx2fc_dev_lock);
2040 rtnl_unlock();
2041 return 0;
2043 if_create_err:
2044 destroy_workqueue(hba->timer_work_queue);
2045 ifput_err:
2046 bnx2fc_interface_put(hba);
2047 netdev_err:
2048 module_put(THIS_MODULE);
2049 mod_err:
2050 mutex_unlock(&bnx2fc_dev_lock);
2051 rtnl_unlock();
2052 return rc;
2056 * bnx2fc_find_hba_for_cnic - maps cnic instance to bnx2fc adapter instance
2058 * @cnic: Pointer to cnic device instance
2061 static struct bnx2fc_hba *bnx2fc_find_hba_for_cnic(struct cnic_dev *cnic)
2063 struct list_head *list;
2064 struct list_head *temp;
2065 struct bnx2fc_hba *hba;
2067 /* Called with bnx2fc_dev_lock held */
2068 list_for_each_safe(list, temp, &adapter_list) {
2069 hba = (struct bnx2fc_hba *)list;
2070 if (hba->cnic == cnic)
2071 return hba;
2073 return NULL;
2076 static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device *phys_dev)
2078 struct list_head *list;
2079 struct list_head *temp;
2080 struct bnx2fc_hba *hba;
2082 /* Called with bnx2fc_dev_lock held */
2083 list_for_each_safe(list, temp, &adapter_list) {
2084 hba = (struct bnx2fc_hba *)list;
2085 if (hba->phys_dev == phys_dev)
2086 return hba;
2088 printk(KERN_ERR PFX "hba_lookup: hba NULL\n");
2089 return NULL;
2093 * bnx2fc_ulp_exit - shuts down adapter instance and frees all resources
2095 * @dev cnic device handle
2097 static void bnx2fc_ulp_exit(struct cnic_dev *dev)
2099 struct bnx2fc_hba *hba;
2101 BNX2FC_MISC_DBG("Entered bnx2fc_ulp_exit\n");
2103 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
2104 printk(KERN_ERR PFX "bnx2fc port check: %s, flags: %lx\n",
2105 dev->netdev->name, dev->flags);
2106 return;
2109 mutex_lock(&bnx2fc_dev_lock);
2110 hba = bnx2fc_find_hba_for_cnic(dev);
2111 if (!hba) {
2112 printk(KERN_ERR PFX "bnx2fc_ulp_exit: hba not found, dev 0%p\n",
2113 dev);
2114 mutex_unlock(&bnx2fc_dev_lock);
2115 return;
2118 list_del_init(&hba->link);
2119 adapter_count--;
2121 if (test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) {
2122 /* destroy not called yet, move to quiesced list */
2123 bnx2fc_netdev_cleanup(hba);
2124 bnx2fc_if_destroy(hba->ctlr.lp);
2126 mutex_unlock(&bnx2fc_dev_lock);
2128 bnx2fc_ulp_stop(hba);
2129 /* unregister cnic device */
2130 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic))
2131 hba->cnic->unregister_device(hba->cnic, CNIC_ULP_FCOE);
2132 bnx2fc_interface_destroy(hba);
2136 * bnx2fc_fcoe_reset - Resets the fcoe
2138 * @shost: shost the reset is from
2140 * Returns: always 0
2142 static int bnx2fc_fcoe_reset(struct Scsi_Host *shost)
2144 struct fc_lport *lport = shost_priv(shost);
2145 fc_lport_reset(lport);
2146 return 0;
2150 static bool bnx2fc_match(struct net_device *netdev)
2152 mutex_lock(&bnx2fc_dev_lock);
2153 if (netdev->priv_flags & IFF_802_1Q_VLAN) {
2154 struct net_device *phys_dev = vlan_dev_real_dev(netdev);
2156 if (bnx2fc_hba_lookup(phys_dev)) {
2157 mutex_unlock(&bnx2fc_dev_lock);
2158 return true;
2161 mutex_unlock(&bnx2fc_dev_lock);
2162 return false;
2166 static struct fcoe_transport bnx2fc_transport = {
2167 .name = {"bnx2fc"},
2168 .attached = false,
2169 .list = LIST_HEAD_INIT(bnx2fc_transport.list),
2170 .match = bnx2fc_match,
2171 .create = bnx2fc_create,
2172 .destroy = bnx2fc_destroy,
2173 .enable = bnx2fc_enable,
2174 .disable = bnx2fc_disable,
2178 * bnx2fc_percpu_thread_create - Create a receive thread for an
2179 * online CPU
2181 * @cpu: cpu index for the online cpu
2183 static void bnx2fc_percpu_thread_create(unsigned int cpu)
2185 struct bnx2fc_percpu_s *p;
2186 struct task_struct *thread;
2188 p = &per_cpu(bnx2fc_percpu, cpu);
2190 thread = kthread_create(bnx2fc_percpu_io_thread,
2191 (void *)p,
2192 "bnx2fc_thread/%d", cpu);
2193 /* bind thread to the cpu */
2194 if (likely(!IS_ERR(p->iothread))) {
2195 kthread_bind(thread, cpu);
2196 p->iothread = thread;
2197 wake_up_process(thread);
2201 static void bnx2fc_percpu_thread_destroy(unsigned int cpu)
2203 struct bnx2fc_percpu_s *p;
2204 struct task_struct *thread;
2205 struct bnx2fc_work *work, *tmp;
2206 LIST_HEAD(work_list);
2208 BNX2FC_MISC_DBG("destroying io thread for CPU %d\n", cpu);
2210 /* Prevent any new work from being queued for this CPU */
2211 p = &per_cpu(bnx2fc_percpu, cpu);
2212 spin_lock_bh(&p->fp_work_lock);
2213 thread = p->iothread;
2214 p->iothread = NULL;
2217 /* Free all work in the list */
2218 list_for_each_entry_safe(work, tmp, &work_list, list) {
2219 list_del_init(&work->list);
2220 bnx2fc_process_cq_compl(work->tgt, work->wqe);
2221 kfree(work);
2224 spin_unlock_bh(&p->fp_work_lock);
2226 if (thread)
2227 kthread_stop(thread);
2231 * bnx2fc_cpu_callback - Handler for CPU hotplug events
2233 * @nfb: The callback data block
2234 * @action: The event triggering the callback
2235 * @hcpu: The index of the CPU that the event is for
2237 * This creates or destroys per-CPU data for fcoe
2239 * Returns NOTIFY_OK always.
2241 static int bnx2fc_cpu_callback(struct notifier_block *nfb,
2242 unsigned long action, void *hcpu)
2244 unsigned cpu = (unsigned long)hcpu;
2246 switch (action) {
2247 case CPU_ONLINE:
2248 case CPU_ONLINE_FROZEN:
2249 printk(PFX "CPU %x online: Create Rx thread\n", cpu);
2250 bnx2fc_percpu_thread_create(cpu);
2251 break;
2252 case CPU_DEAD:
2253 case CPU_DEAD_FROZEN:
2254 printk(PFX "CPU %x offline: Remove Rx thread\n", cpu);
2255 bnx2fc_percpu_thread_destroy(cpu);
2256 break;
2257 default:
2258 break;
2260 return NOTIFY_OK;
2264 * bnx2fc_mod_init - module init entry point
2266 * Initialize driver wide global data structures, and register
2267 * with cnic module
2269 static int __init bnx2fc_mod_init(void)
2271 struct fcoe_percpu_s *bg;
2272 struct task_struct *l2_thread;
2273 int rc = 0;
2274 unsigned int cpu = 0;
2275 struct bnx2fc_percpu_s *p;
2277 printk(KERN_INFO PFX "%s", version);
2279 /* register as a fcoe transport */
2280 rc = fcoe_transport_attach(&bnx2fc_transport);
2281 if (rc) {
2282 printk(KERN_ERR "failed to register an fcoe transport, check "
2283 "if libfcoe is loaded\n");
2284 goto out;
2287 INIT_LIST_HEAD(&adapter_list);
2288 mutex_init(&bnx2fc_dev_lock);
2289 adapter_count = 0;
2291 /* Attach FC transport template */
2292 rc = bnx2fc_attach_transport();
2293 if (rc)
2294 goto detach_ft;
2296 bnx2fc_wq = alloc_workqueue("bnx2fc", 0, 0);
2297 if (!bnx2fc_wq) {
2298 rc = -ENOMEM;
2299 goto release_bt;
2302 bg = &bnx2fc_global;
2303 skb_queue_head_init(&bg->fcoe_rx_list);
2304 l2_thread = kthread_create(bnx2fc_l2_rcv_thread,
2305 (void *)bg,
2306 "bnx2fc_l2_thread");
2307 if (IS_ERR(l2_thread)) {
2308 rc = PTR_ERR(l2_thread);
2309 goto free_wq;
2311 wake_up_process(l2_thread);
2312 spin_lock_bh(&bg->fcoe_rx_list.lock);
2313 bg->thread = l2_thread;
2314 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2316 for_each_possible_cpu(cpu) {
2317 p = &per_cpu(bnx2fc_percpu, cpu);
2318 INIT_LIST_HEAD(&p->work_list);
2319 spin_lock_init(&p->fp_work_lock);
2322 for_each_online_cpu(cpu) {
2323 bnx2fc_percpu_thread_create(cpu);
2326 /* Initialize per CPU interrupt thread */
2327 register_hotcpu_notifier(&bnx2fc_cpu_notifier);
2329 cnic_register_driver(CNIC_ULP_FCOE, &bnx2fc_cnic_cb);
2331 return 0;
2333 free_wq:
2334 destroy_workqueue(bnx2fc_wq);
2335 release_bt:
2336 bnx2fc_release_transport();
2337 detach_ft:
2338 fcoe_transport_detach(&bnx2fc_transport);
2339 out:
2340 return rc;
2343 static void __exit bnx2fc_mod_exit(void)
2345 LIST_HEAD(to_be_deleted);
2346 struct bnx2fc_hba *hba, *next;
2347 struct fcoe_percpu_s *bg;
2348 struct task_struct *l2_thread;
2349 struct sk_buff *skb;
2350 unsigned int cpu = 0;
2353 * NOTE: Since cnic calls register_driver routine rtnl_lock,
2354 * it will have higher precedence than bnx2fc_dev_lock.
2355 * unregister_device() cannot be called with bnx2fc_dev_lock
2356 * held.
2358 mutex_lock(&bnx2fc_dev_lock);
2359 list_splice(&adapter_list, &to_be_deleted);
2360 INIT_LIST_HEAD(&adapter_list);
2361 adapter_count = 0;
2362 mutex_unlock(&bnx2fc_dev_lock);
2364 /* Unregister with cnic */
2365 list_for_each_entry_safe(hba, next, &to_be_deleted, link) {
2366 list_del_init(&hba->link);
2367 printk(KERN_ERR PFX "MOD_EXIT:destroy hba = 0x%p, kref = %d\n",
2368 hba, atomic_read(&hba->kref.refcount));
2369 bnx2fc_ulp_stop(hba);
2370 /* unregister cnic device */
2371 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED,
2372 &hba->reg_with_cnic))
2373 hba->cnic->unregister_device(hba->cnic, CNIC_ULP_FCOE);
2374 bnx2fc_interface_destroy(hba);
2376 cnic_unregister_driver(CNIC_ULP_FCOE);
2378 /* Destroy global thread */
2379 bg = &bnx2fc_global;
2380 spin_lock_bh(&bg->fcoe_rx_list.lock);
2381 l2_thread = bg->thread;
2382 bg->thread = NULL;
2383 while ((skb = __skb_dequeue(&bg->fcoe_rx_list)) != NULL)
2384 kfree_skb(skb);
2386 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2388 if (l2_thread)
2389 kthread_stop(l2_thread);
2391 unregister_hotcpu_notifier(&bnx2fc_cpu_notifier);
2393 /* Destroy per cpu threads */
2394 for_each_online_cpu(cpu) {
2395 bnx2fc_percpu_thread_destroy(cpu);
2398 destroy_workqueue(bnx2fc_wq);
2400 * detach from scsi transport
2401 * must happen after all destroys are done
2403 bnx2fc_release_transport();
2405 /* detach from fcoe transport */
2406 fcoe_transport_detach(&bnx2fc_transport);
2409 module_init(bnx2fc_mod_init);
2410 module_exit(bnx2fc_mod_exit);
2412 static struct fc_function_template bnx2fc_transport_function = {
2413 .show_host_node_name = 1,
2414 .show_host_port_name = 1,
2415 .show_host_supported_classes = 1,
2416 .show_host_supported_fc4s = 1,
2417 .show_host_active_fc4s = 1,
2418 .show_host_maxframe_size = 1,
2420 .show_host_port_id = 1,
2421 .show_host_supported_speeds = 1,
2422 .get_host_speed = fc_get_host_speed,
2423 .show_host_speed = 1,
2424 .show_host_port_type = 1,
2425 .get_host_port_state = fc_get_host_port_state,
2426 .show_host_port_state = 1,
2427 .show_host_symbolic_name = 1,
2429 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2430 sizeof(struct bnx2fc_rport)),
2431 .show_rport_maxframe_size = 1,
2432 .show_rport_supported_classes = 1,
2434 .show_host_fabric_name = 1,
2435 .show_starget_node_name = 1,
2436 .show_starget_port_name = 1,
2437 .show_starget_port_id = 1,
2438 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2439 .show_rport_dev_loss_tmo = 1,
2440 .get_fc_host_stats = bnx2fc_get_host_stats,
2442 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2444 .terminate_rport_io = fc_rport_terminate_io,
2446 .vport_create = bnx2fc_vport_create,
2447 .vport_delete = bnx2fc_vport_destroy,
2448 .vport_disable = bnx2fc_vport_disable,
2451 static struct fc_function_template bnx2fc_vport_xport_function = {
2452 .show_host_node_name = 1,
2453 .show_host_port_name = 1,
2454 .show_host_supported_classes = 1,
2455 .show_host_supported_fc4s = 1,
2456 .show_host_active_fc4s = 1,
2457 .show_host_maxframe_size = 1,
2459 .show_host_port_id = 1,
2460 .show_host_supported_speeds = 1,
2461 .get_host_speed = fc_get_host_speed,
2462 .show_host_speed = 1,
2463 .show_host_port_type = 1,
2464 .get_host_port_state = fc_get_host_port_state,
2465 .show_host_port_state = 1,
2466 .show_host_symbolic_name = 1,
2468 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2469 sizeof(struct bnx2fc_rport)),
2470 .show_rport_maxframe_size = 1,
2471 .show_rport_supported_classes = 1,
2473 .show_host_fabric_name = 1,
2474 .show_starget_node_name = 1,
2475 .show_starget_port_name = 1,
2476 .show_starget_port_id = 1,
2477 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2478 .show_rport_dev_loss_tmo = 1,
2479 .get_fc_host_stats = fc_get_host_stats,
2480 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2481 .terminate_rport_io = fc_rport_terminate_io,
2485 * scsi_host_template structure used while registering with SCSI-ml
2487 static struct scsi_host_template bnx2fc_shost_template = {
2488 .module = THIS_MODULE,
2489 .name = "Broadcom Offload FCoE Initiator",
2490 .queuecommand = bnx2fc_queuecommand,
2491 .eh_abort_handler = bnx2fc_eh_abort, /* abts */
2492 .eh_device_reset_handler = bnx2fc_eh_device_reset, /* lun reset */
2493 .eh_target_reset_handler = bnx2fc_eh_target_reset, /* tgt reset */
2494 .eh_host_reset_handler = fc_eh_host_reset,
2495 .slave_alloc = fc_slave_alloc,
2496 .change_queue_depth = fc_change_queue_depth,
2497 .change_queue_type = fc_change_queue_type,
2498 .this_id = -1,
2499 .cmd_per_lun = 3,
2500 .can_queue = (BNX2FC_MAX_OUTSTANDING_CMNDS/2),
2501 .use_clustering = ENABLE_CLUSTERING,
2502 .sg_tablesize = BNX2FC_MAX_BDS_PER_CMD,
2503 .max_sectors = 512,
2506 static struct libfc_function_template bnx2fc_libfc_fcn_templ = {
2507 .frame_send = bnx2fc_xmit,
2508 .elsct_send = bnx2fc_elsct_send,
2509 .fcp_abort_io = bnx2fc_abort_io,
2510 .fcp_cleanup = bnx2fc_cleanup,
2511 .rport_event_callback = bnx2fc_rport_event_handler,
2515 * bnx2fc_cnic_cb - global template of bnx2fc - cnic driver interface
2516 * structure carrying callback function pointers
2518 static struct cnic_ulp_ops bnx2fc_cnic_cb = {
2519 .owner = THIS_MODULE,
2520 .cnic_init = bnx2fc_ulp_init,
2521 .cnic_exit = bnx2fc_ulp_exit,
2522 .cnic_start = bnx2fc_ulp_start,
2523 .cnic_stop = bnx2fc_ulp_stop,
2524 .indicate_kcqes = bnx2fc_indicate_kcqe,
2525 .indicate_netevent = bnx2fc_indicate_netevent,