[SCSI] bnx2fc: Bumped version to 1.0.13
[deliverable/linux.git] / drivers / scsi / bnx2fc / bnx2fc_fcoe.c
CommitLineData
853e2bd2
BG
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.
5 *
9b35baae 6 * Copyright (c) 2008 - 2011 Broadcom Corporation
853e2bd2
BG
7 *
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.
11 *
12 * Written by: Bhanu Prakash Gollapudi (bprakash@broadcom.com)
13 */
14
15#include "bnx2fc.h"
16
17static struct list_head adapter_list;
aea71a02 18static struct list_head if_list;
853e2bd2
BG
19static u32 adapter_count;
20static DEFINE_MUTEX(bnx2fc_dev_lock);
21DEFINE_PER_CPU(struct bnx2fc_percpu_s, bnx2fc_percpu);
22
23#define DRV_MODULE_NAME "bnx2fc"
24#define DRV_MODULE_VERSION BNX2FC_VERSION
2b82d825 25#define DRV_MODULE_RELDATE "Dec 21, 2012"
853e2bd2
BG
26
27
6f039790 28static char version[] =
853e2bd2
BG
29 "Broadcom NetXtreme II FCoE Driver " DRV_MODULE_NAME \
30 " v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
31
32
33MODULE_AUTHOR("Bhanu Prakash Gollapudi <bprakash@broadcom.com>");
34MODULE_DESCRIPTION("Broadcom NetXtreme II BCM57710 FCoE Driver");
35MODULE_LICENSE("GPL");
36MODULE_VERSION(DRV_MODULE_VERSION);
37
38#define BNX2FC_MAX_QUEUE_DEPTH 256
39#define BNX2FC_MIN_QUEUE_DEPTH 32
40#define FCOE_WORD_TO_BYTE 4
41
42static struct scsi_transport_template *bnx2fc_transport_template;
43static struct scsi_transport_template *bnx2fc_vport_xport_template;
44
45struct workqueue_struct *bnx2fc_wq;
46
47/* bnx2fc structure needs only one instance of the fcoe_percpu_s structure.
48 * Here the io threads are per cpu but the l2 thread is just one
49 */
50struct fcoe_percpu_s bnx2fc_global;
51DEFINE_SPINLOCK(bnx2fc_global_lock);
52
53static struct cnic_ulp_ops bnx2fc_cnic_cb;
54static struct libfc_function_template bnx2fc_libfc_fcn_templ;
55static struct scsi_host_template bnx2fc_shost_template;
56static struct fc_function_template bnx2fc_transport_function;
8d55e507 57static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ;
853e2bd2
BG
58static struct fc_function_template bnx2fc_vport_xport_function;
59static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode);
eccdcd02 60static void __bnx2fc_destroy(struct bnx2fc_interface *interface);
853e2bd2
BG
61static int bnx2fc_destroy(struct net_device *net_device);
62static int bnx2fc_enable(struct net_device *netdev);
63static int bnx2fc_disable(struct net_device *netdev);
64
65static void bnx2fc_recv_frame(struct sk_buff *skb);
66
aea71a02 67static void bnx2fc_start_disc(struct bnx2fc_interface *interface);
853e2bd2 68static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev);
853e2bd2
BG
69static int bnx2fc_lport_config(struct fc_lport *lport);
70static int bnx2fc_em_config(struct fc_lport *lport);
71static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba *hba);
72static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba *hba);
73static int bnx2fc_bind_pcidev(struct bnx2fc_hba *hba);
74static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba);
aea71a02 75static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
853e2bd2
BG
76 struct device *parent, int npiv);
77static void bnx2fc_destroy_work(struct work_struct *work);
78
79static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device *phys_dev);
aea71a02
BPG
80static struct bnx2fc_interface *bnx2fc_interface_lookup(struct net_device
81 *phys_dev);
abc49a93 82static inline void bnx2fc_interface_put(struct bnx2fc_interface *interface);
853e2bd2
BG
83static struct bnx2fc_hba *bnx2fc_find_hba_for_cnic(struct cnic_dev *cnic);
84
85static int bnx2fc_fw_init(struct bnx2fc_hba *hba);
86static void bnx2fc_fw_destroy(struct bnx2fc_hba *hba);
87
88static void bnx2fc_port_shutdown(struct fc_lport *lport);
aea71a02 89static void bnx2fc_stop(struct bnx2fc_interface *interface);
853e2bd2
BG
90static int __init bnx2fc_mod_init(void);
91static void __exit bnx2fc_mod_exit(void);
8d55e507 92static void bnx2fc_ctlr_get_lesb(struct fcoe_ctlr_device *ctlr_dev);
853e2bd2
BG
93
94unsigned int bnx2fc_debug_level;
95module_param_named(debug_logging, bnx2fc_debug_level, int, S_IRUGO|S_IWUSR);
96
97static int bnx2fc_cpu_callback(struct notifier_block *nfb,
98 unsigned long action, void *hcpu);
99/* notification function for CPU hotplug events */
100static struct notifier_block bnx2fc_cpu_notifier = {
101 .notifier_call = bnx2fc_cpu_callback,
102};
103
f72f6979
BPG
104static inline struct net_device *bnx2fc_netdev(const struct fc_lport *lport)
105{
106 return ((struct bnx2fc_interface *)
107 ((struct fcoe_port *)lport_priv(lport))->priv)->netdev;
108}
109
110/**
111 * bnx2fc_get_lesb() - Fill the FCoE Link Error Status Block
112 * @lport: the local port
113 * @fc_lesb: the link error status block
114 */
115static void bnx2fc_get_lesb(struct fc_lport *lport,
116 struct fc_els_lesb *fc_lesb)
117{
118 struct net_device *netdev = bnx2fc_netdev(lport);
119
120 __fcoe_get_lesb(lport, fc_lesb, netdev);
121}
122
8d55e507
RL
123static void bnx2fc_ctlr_get_lesb(struct fcoe_ctlr_device *ctlr_dev)
124{
125 struct fcoe_ctlr *fip = fcoe_ctlr_device_priv(ctlr_dev);
126 struct net_device *netdev = bnx2fc_netdev(fip->lp);
127 struct fcoe_fc_els_lesb *fcoe_lesb;
128 struct fc_els_lesb fc_lesb;
129
130 __fcoe_get_lesb(fip->lp, &fc_lesb, netdev);
131 fcoe_lesb = (struct fcoe_fc_els_lesb *)(&fc_lesb);
132
133 ctlr_dev->lesb.lesb_link_fail =
134 ntohl(fcoe_lesb->lesb_link_fail);
135 ctlr_dev->lesb.lesb_vlink_fail =
136 ntohl(fcoe_lesb->lesb_vlink_fail);
137 ctlr_dev->lesb.lesb_miss_fka =
138 ntohl(fcoe_lesb->lesb_miss_fka);
139 ctlr_dev->lesb.lesb_symb_err =
140 ntohl(fcoe_lesb->lesb_symb_err);
141 ctlr_dev->lesb.lesb_err_block =
142 ntohl(fcoe_lesb->lesb_err_block);
143 ctlr_dev->lesb.lesb_fcs_error =
144 ntohl(fcoe_lesb->lesb_fcs_error);
145}
146EXPORT_SYMBOL(bnx2fc_ctlr_get_lesb);
147
148static void bnx2fc_fcf_get_vlan_id(struct fcoe_fcf_device *fcf_dev)
149{
150 struct fcoe_ctlr_device *ctlr_dev =
151 fcoe_fcf_dev_to_ctlr_dev(fcf_dev);
152 struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(ctlr_dev);
153 struct bnx2fc_interface *fcoe = fcoe_ctlr_priv(ctlr);
154
155 fcf_dev->vlan_id = fcoe->vlan_id;
156}
157
853e2bd2
BG
158static void bnx2fc_clean_rx_queue(struct fc_lport *lp)
159{
160 struct fcoe_percpu_s *bg;
161 struct fcoe_rcv_info *fr;
162 struct sk_buff_head *list;
163 struct sk_buff *skb, *next;
164 struct sk_buff *head;
165
166 bg = &bnx2fc_global;
167 spin_lock_bh(&bg->fcoe_rx_list.lock);
168 list = &bg->fcoe_rx_list;
169 head = list->next;
170 for (skb = head; skb != (struct sk_buff *)list;
171 skb = next) {
172 next = skb->next;
173 fr = fcoe_dev_from_skb(skb);
174 if (fr->fr_dev == lp) {
175 __skb_unlink(skb, list);
176 kfree_skb(skb);
177 }
178 }
179 spin_unlock_bh(&bg->fcoe_rx_list.lock);
180}
181
182int bnx2fc_get_paged_crc_eof(struct sk_buff *skb, int tlen)
183{
184 int rc;
185 spin_lock(&bnx2fc_global_lock);
186 rc = fcoe_get_paged_crc_eof(skb, tlen, &bnx2fc_global);
187 spin_unlock(&bnx2fc_global_lock);
188
189 return rc;
190}
191
192static void bnx2fc_abort_io(struct fc_lport *lport)
193{
194 /*
195 * This function is no-op for bnx2fc, but we do
196 * not want to leave it as NULL either, as libfc
197 * can call the default function which is
198 * fc_fcp_abort_io.
199 */
200}
201
202static void bnx2fc_cleanup(struct fc_lport *lport)
203{
204 struct fcoe_port *port = lport_priv(lport);
aea71a02
BPG
205 struct bnx2fc_interface *interface = port->priv;
206 struct bnx2fc_hba *hba = interface->hba;
853e2bd2
BG
207 struct bnx2fc_rport *tgt;
208 int i;
209
210 BNX2FC_MISC_DBG("Entered %s\n", __func__);
211 mutex_lock(&hba->hba_mutex);
212 spin_lock_bh(&hba->hba_lock);
213 for (i = 0; i < BNX2FC_NUM_MAX_SESS; i++) {
214 tgt = hba->tgt_ofld_list[i];
215 if (tgt) {
216 /* Cleanup IOs belonging to requested vport */
217 if (tgt->port == port) {
218 spin_unlock_bh(&hba->hba_lock);
219 BNX2FC_TGT_DBG(tgt, "flush/cleanup\n");
220 bnx2fc_flush_active_ios(tgt);
221 spin_lock_bh(&hba->hba_lock);
222 }
223 }
224 }
225 spin_unlock_bh(&hba->hba_lock);
226 mutex_unlock(&hba->hba_mutex);
227}
228
229static int bnx2fc_xmit_l2_frame(struct bnx2fc_rport *tgt,
230 struct fc_frame *fp)
231{
232 struct fc_rport_priv *rdata = tgt->rdata;
233 struct fc_frame_header *fh;
234 int rc = 0;
235
236 fh = fc_frame_header_get(fp);
237 BNX2FC_TGT_DBG(tgt, "Xmit L2 frame rport = 0x%x, oxid = 0x%x, "
238 "r_ctl = 0x%x\n", rdata->ids.port_id,
239 ntohs(fh->fh_ox_id), fh->fh_r_ctl);
240 if ((fh->fh_type == FC_TYPE_ELS) &&
241 (fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
242
243 switch (fc_frame_payload_op(fp)) {
244 case ELS_ADISC:
245 rc = bnx2fc_send_adisc(tgt, fp);
246 break;
247 case ELS_LOGO:
248 rc = bnx2fc_send_logo(tgt, fp);
249 break;
250 case ELS_RLS:
251 rc = bnx2fc_send_rls(tgt, fp);
252 break;
253 default:
254 break;
255 }
256 } else if ((fh->fh_type == FC_TYPE_BLS) &&
257 (fh->fh_r_ctl == FC_RCTL_BA_ABTS))
258 BNX2FC_TGT_DBG(tgt, "ABTS frame\n");
259 else {
260 BNX2FC_TGT_DBG(tgt, "Send L2 frame type 0x%x "
261 "rctl 0x%x thru non-offload path\n",
262 fh->fh_type, fh->fh_r_ctl);
263 return -ENODEV;
264 }
265 if (rc)
266 return -ENOMEM;
267 else
268 return 0;
269}
270
271/**
272 * bnx2fc_xmit - bnx2fc's FCoE frame transmit function
273 *
274 * @lport: the associated local port
275 * @fp: the fc_frame to be transmitted
276 */
277static int bnx2fc_xmit(struct fc_lport *lport, struct fc_frame *fp)
278{
279 struct ethhdr *eh;
280 struct fcoe_crc_eof *cp;
281 struct sk_buff *skb;
282 struct fc_frame_header *fh;
aea71a02 283 struct bnx2fc_interface *interface;
fd8f8902 284 struct fcoe_ctlr *ctlr;
aea71a02 285 struct bnx2fc_hba *hba;
853e2bd2
BG
286 struct fcoe_port *port;
287 struct fcoe_hdr *hp;
288 struct bnx2fc_rport *tgt;
1bd49b48 289 struct fc_stats *stats;
853e2bd2
BG
290 u8 sof, eof;
291 u32 crc;
292 unsigned int hlen, tlen, elen;
293 int wlen, rc = 0;
294
295 port = (struct fcoe_port *)lport_priv(lport);
aea71a02 296 interface = port->priv;
fd8f8902 297 ctlr = bnx2fc_to_ctlr(interface);
aea71a02 298 hba = interface->hba;
853e2bd2
BG
299
300 fh = fc_frame_header_get(fp);
301
302 skb = fp_skb(fp);
303 if (!lport->link_up) {
304 BNX2FC_HBA_DBG(lport, "bnx2fc_xmit link down\n");
305 kfree_skb(skb);
306 return 0;
307 }
308
309 if (unlikely(fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
fd8f8902 310 if (!ctlr->sel_fcf) {
853e2bd2
BG
311 BNX2FC_HBA_DBG(lport, "FCF not selected yet!\n");
312 kfree_skb(skb);
313 return -EINVAL;
314 }
fd8f8902 315 if (fcoe_ctlr_els_send(ctlr, lport, skb))
853e2bd2
BG
316 return 0;
317 }
318
319 sof = fr_sof(fp);
320 eof = fr_eof(fp);
321
322 /*
323 * Snoop the frame header to check if the frame is for
324 * an offloaded session
325 */
326 /*
327 * tgt_ofld_list access is synchronized using
328 * both hba mutex and hba lock. Atleast hba mutex or
329 * hba lock needs to be held for read access.
330 */
331
332 spin_lock_bh(&hba->hba_lock);
333 tgt = bnx2fc_tgt_lookup(port, ntoh24(fh->fh_d_id));
334 if (tgt && (test_bit(BNX2FC_FLAG_SESSION_READY, &tgt->flags))) {
335 /* This frame is for offloaded session */
336 BNX2FC_HBA_DBG(lport, "xmit: Frame is for offloaded session "
337 "port_id = 0x%x\n", ntoh24(fh->fh_d_id));
338 spin_unlock_bh(&hba->hba_lock);
339 rc = bnx2fc_xmit_l2_frame(tgt, fp);
340 if (rc != -ENODEV) {
341 kfree_skb(skb);
342 return rc;
343 }
344 } else {
345 spin_unlock_bh(&hba->hba_lock);
346 }
347
348 elen = sizeof(struct ethhdr);
349 hlen = sizeof(struct fcoe_hdr);
350 tlen = sizeof(struct fcoe_crc_eof);
351 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
352
353 skb->ip_summed = CHECKSUM_NONE;
354 crc = fcoe_fc_crc(fp);
355
356 /* copy port crc and eof to the skb buff */
357 if (skb_is_nonlinear(skb)) {
358 skb_frag_t *frag;
359 if (bnx2fc_get_paged_crc_eof(skb, tlen)) {
360 kfree_skb(skb);
361 return -ENOMEM;
362 }
363 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
77dfce07 364 cp = kmap_atomic(skb_frag_page(frag)) + frag->page_offset;
853e2bd2
BG
365 } else {
366 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
367 }
368
369 memset(cp, 0, sizeof(*cp));
370 cp->fcoe_eof = eof;
371 cp->fcoe_crc32 = cpu_to_le32(~crc);
372 if (skb_is_nonlinear(skb)) {
77dfce07 373 kunmap_atomic(cp);
853e2bd2
BG
374 cp = NULL;
375 }
376
377 /* adjust skb network/transport offsets to match mac/fcoe/port */
378 skb_push(skb, elen + hlen);
379 skb_reset_mac_header(skb);
380 skb_reset_network_header(skb);
381 skb->mac_len = elen;
382 skb->protocol = htons(ETH_P_FCOE);
aea71a02 383 skb->dev = interface->netdev;
853e2bd2
BG
384
385 /* fill up mac and fcoe headers */
386 eh = eth_hdr(skb);
387 eh->h_proto = htons(ETH_P_FCOE);
fd8f8902 388 if (ctlr->map_dest)
853e2bd2
BG
389 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
390 else
391 /* insert GW address */
fd8f8902 392 memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN);
853e2bd2 393
fd8f8902
RL
394 if (unlikely(ctlr->flogi_oxid != FC_XID_UNKNOWN))
395 memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN);
853e2bd2
BG
396 else
397 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
398
399 hp = (struct fcoe_hdr *)(eh + 1);
400 memset(hp, 0, sizeof(*hp));
401 if (FC_FCOE_VER)
402 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
403 hp->fcoe_sof = sof;
404
405 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
406 if (lport->seq_offload && fr_max_payload(fp)) {
407 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
408 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
409 } else {
410 skb_shinfo(skb)->gso_type = 0;
411 skb_shinfo(skb)->gso_size = 0;
412 }
413
414 /*update tx stats */
1bd49b48 415 stats = per_cpu_ptr(lport->stats, get_cpu());
853e2bd2
BG
416 stats->TxFrames++;
417 stats->TxWords += wlen;
418 put_cpu();
419
420 /* send down to lld */
421 fr_dev(fp) = lport;
422 if (port->fcoe_pending_queue.qlen)
423 fcoe_check_wait_queue(lport, skb);
424 else if (fcoe_start_io(skb))
425 fcoe_check_wait_queue(lport, skb);
426
427 return 0;
428}
429
430/**
431 * bnx2fc_rcv - This is bnx2fc's receive function called by NET_RX_SOFTIRQ
432 *
433 * @skb: the receive socket buffer
434 * @dev: associated net device
435 * @ptype: context
436 * @olddev: last device
437 *
438 * This function receives the packet and builds FC frame and passes it up
439 */
440static int bnx2fc_rcv(struct sk_buff *skb, struct net_device *dev,
441 struct packet_type *ptype, struct net_device *olddev)
442{
443 struct fc_lport *lport;
aea71a02 444 struct bnx2fc_interface *interface;
fd8f8902 445 struct fcoe_ctlr *ctlr;
853e2bd2
BG
446 struct fc_frame_header *fh;
447 struct fcoe_rcv_info *fr;
448 struct fcoe_percpu_s *bg;
449 unsigned short oxid;
450
aea71a02
BPG
451 interface = container_of(ptype, struct bnx2fc_interface,
452 fcoe_packet_type);
fd8f8902
RL
453 ctlr = bnx2fc_to_ctlr(interface);
454 lport = ctlr->lp;
853e2bd2
BG
455
456 if (unlikely(lport == NULL)) {
b2a554ff 457 printk(KERN_ERR PFX "bnx2fc_rcv: lport is NULL\n");
853e2bd2
BG
458 goto err;
459 }
460
461 if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) {
b2a554ff 462 printk(KERN_ERR PFX "bnx2fc_rcv: Wrong FC type frame\n");
853e2bd2
BG
463 goto err;
464 }
465
466 /*
467 * Check for minimum frame length, and make sure required FCoE
468 * and FC headers are pulled into the linear data area.
469 */
470 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
471 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
472 goto err;
473
474 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
475 fh = (struct fc_frame_header *) skb_transport_header(skb);
476
477 oxid = ntohs(fh->fh_ox_id);
478
479 fr = fcoe_dev_from_skb(skb);
480 fr->fr_dev = lport;
853e2bd2
BG
481
482 bg = &bnx2fc_global;
fc05ab74 483 spin_lock(&bg->fcoe_rx_list.lock);
853e2bd2
BG
484
485 __skb_queue_tail(&bg->fcoe_rx_list, skb);
486 if (bg->fcoe_rx_list.qlen == 1)
487 wake_up_process(bg->thread);
488
fc05ab74 489 spin_unlock(&bg->fcoe_rx_list.lock);
853e2bd2
BG
490
491 return 0;
492err:
493 kfree_skb(skb);
494 return -1;
495}
496
497static int bnx2fc_l2_rcv_thread(void *arg)
498{
499 struct fcoe_percpu_s *bg = arg;
500 struct sk_buff *skb;
501
502 set_user_nice(current, -20);
503 set_current_state(TASK_INTERRUPTIBLE);
504 while (!kthread_should_stop()) {
505 schedule();
853e2bd2
BG
506 spin_lock_bh(&bg->fcoe_rx_list.lock);
507 while ((skb = __skb_dequeue(&bg->fcoe_rx_list)) != NULL) {
508 spin_unlock_bh(&bg->fcoe_rx_list.lock);
509 bnx2fc_recv_frame(skb);
510 spin_lock_bh(&bg->fcoe_rx_list.lock);
511 }
fee78712 512 __set_current_state(TASK_INTERRUPTIBLE);
853e2bd2 513 spin_unlock_bh(&bg->fcoe_rx_list.lock);
853e2bd2 514 }
fee78712 515 __set_current_state(TASK_RUNNING);
853e2bd2
BG
516 return 0;
517}
518
519
520static void bnx2fc_recv_frame(struct sk_buff *skb)
521{
522 u32 fr_len;
523 struct fc_lport *lport;
524 struct fcoe_rcv_info *fr;
1bd49b48 525 struct fc_stats *stats;
853e2bd2
BG
526 struct fc_frame_header *fh;
527 struct fcoe_crc_eof crc_eof;
528 struct fc_frame *fp;
529 struct fc_lport *vn_port;
530 struct fcoe_port *port;
531 u8 *mac = NULL;
532 u8 *dest_mac = NULL;
533 struct fcoe_hdr *hp;
534
535 fr = fcoe_dev_from_skb(skb);
536 lport = fr->fr_dev;
537 if (unlikely(lport == NULL)) {
b2a554ff 538 printk(KERN_ERR PFX "Invalid lport struct\n");
853e2bd2
BG
539 kfree_skb(skb);
540 return;
541 }
542
543 if (skb_is_nonlinear(skb))
544 skb_linearize(skb);
545 mac = eth_hdr(skb)->h_source;
546 dest_mac = eth_hdr(skb)->h_dest;
547
548 /* Pull the header */
549 hp = (struct fcoe_hdr *) skb_network_header(skb);
550 fh = (struct fc_frame_header *) skb_transport_header(skb);
551 skb_pull(skb, sizeof(struct fcoe_hdr));
552 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
553
1bd49b48 554 stats = per_cpu_ptr(lport->stats, get_cpu());
853e2bd2
BG
555 stats->RxFrames++;
556 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
557
558 fp = (struct fc_frame *)skb;
559 fc_frame_init(fp);
560 fr_dev(fp) = lport;
561 fr_sof(fp) = hp->fcoe_sof;
562 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) {
563 put_cpu();
564 kfree_skb(skb);
565 return;
566 }
567 fr_eof(fp) = crc_eof.fcoe_eof;
568 fr_crc(fp) = crc_eof.fcoe_crc32;
569 if (pskb_trim(skb, fr_len)) {
570 put_cpu();
571 kfree_skb(skb);
572 return;
573 }
574
575 fh = fc_frame_header_get(fp);
576
577 vn_port = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
578 if (vn_port) {
579 port = lport_priv(vn_port);
580 if (compare_ether_addr(port->data_src_addr, dest_mac)
581 != 0) {
582 BNX2FC_HBA_DBG(lport, "fpma mismatch\n");
583 put_cpu();
584 kfree_skb(skb);
585 return;
586 }
587 }
588 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA &&
589 fh->fh_type == FC_TYPE_FCP) {
590 /* Drop FCP data. We dont this in L2 path */
591 put_cpu();
592 kfree_skb(skb);
593 return;
594 }
595 if (fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
596 fh->fh_type == FC_TYPE_ELS) {
597 switch (fc_frame_payload_op(fp)) {
598 case ELS_LOGO:
599 if (ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
600 /* drop non-FIP LOGO */
601 put_cpu();
602 kfree_skb(skb);
603 return;
604 }
605 break;
606 }
607 }
3f8744d1
BPG
608
609 if (fh->fh_r_ctl == FC_RCTL_BA_ABTS) {
610 /* Drop incoming ABTS */
611 put_cpu();
612 kfree_skb(skb);
613 return;
614 }
615
853e2bd2
BG
616 if (le32_to_cpu(fr_crc(fp)) !=
617 ~crc32(~0, skb->data, fr_len)) {
618 if (stats->InvalidCRCCount < 5)
619 printk(KERN_WARNING PFX "dropping frame with "
620 "CRC error\n");
621 stats->InvalidCRCCount++;
622 put_cpu();
623 kfree_skb(skb);
624 return;
625 }
626 put_cpu();
627 fc_exch_recv(lport, fp);
628}
629
630/**
631 * bnx2fc_percpu_io_thread - thread per cpu for ios
632 *
633 * @arg: ptr to bnx2fc_percpu_info structure
634 */
635int bnx2fc_percpu_io_thread(void *arg)
636{
637 struct bnx2fc_percpu_s *p = arg;
638 struct bnx2fc_work *work, *tmp;
639 LIST_HEAD(work_list);
640
641 set_user_nice(current, -20);
642 set_current_state(TASK_INTERRUPTIBLE);
643 while (!kthread_should_stop()) {
644 schedule();
853e2bd2
BG
645 spin_lock_bh(&p->fp_work_lock);
646 while (!list_empty(&p->work_list)) {
647 list_splice_init(&p->work_list, &work_list);
648 spin_unlock_bh(&p->fp_work_lock);
649
650 list_for_each_entry_safe(work, tmp, &work_list, list) {
651 list_del_init(&work->list);
652 bnx2fc_process_cq_compl(work->tgt, work->wqe);
653 kfree(work);
654 }
655
656 spin_lock_bh(&p->fp_work_lock);
657 }
fee78712 658 __set_current_state(TASK_INTERRUPTIBLE);
853e2bd2 659 spin_unlock_bh(&p->fp_work_lock);
853e2bd2 660 }
fee78712 661 __set_current_state(TASK_RUNNING);
853e2bd2
BG
662
663 return 0;
664}
665
666static struct fc_host_statistics *bnx2fc_get_host_stats(struct Scsi_Host *shost)
667{
668 struct fc_host_statistics *bnx2fc_stats;
669 struct fc_lport *lport = shost_priv(shost);
670 struct fcoe_port *port = lport_priv(lport);
aea71a02
BPG
671 struct bnx2fc_interface *interface = port->priv;
672 struct bnx2fc_hba *hba = interface->hba;
853e2bd2
BG
673 struct fcoe_statistics_params *fw_stats;
674 int rc = 0;
675
676 fw_stats = (struct fcoe_statistics_params *)hba->stats_buffer;
677 if (!fw_stats)
678 return NULL;
679
680 bnx2fc_stats = fc_get_host_stats(shost);
681
682 init_completion(&hba->stat_req_done);
683 if (bnx2fc_send_stat_req(hba))
684 return bnx2fc_stats;
685 rc = wait_for_completion_timeout(&hba->stat_req_done, (2 * HZ));
686 if (!rc) {
687 BNX2FC_HBA_DBG(lport, "FW stat req timed out\n");
688 return bnx2fc_stats;
689 }
f246fe2a
BPG
690 BNX2FC_STATS(hba, rx_stat2, fc_crc_cnt);
691 bnx2fc_stats->invalid_crc_count += hba->bfw_stats.fc_crc_cnt;
692 BNX2FC_STATS(hba, tx_stat, fcoe_tx_pkt_cnt);
693 bnx2fc_stats->tx_frames += hba->bfw_stats.fcoe_tx_pkt_cnt;
694 BNX2FC_STATS(hba, tx_stat, fcoe_tx_byte_cnt);
695 bnx2fc_stats->tx_words += ((hba->bfw_stats.fcoe_tx_byte_cnt) / 4);
696 BNX2FC_STATS(hba, rx_stat0, fcoe_rx_pkt_cnt);
697 bnx2fc_stats->rx_frames += hba->bfw_stats.fcoe_rx_pkt_cnt;
698 BNX2FC_STATS(hba, rx_stat0, fcoe_rx_byte_cnt);
699 bnx2fc_stats->rx_words += ((hba->bfw_stats.fcoe_rx_byte_cnt) / 4);
853e2bd2
BG
700
701 bnx2fc_stats->dumped_frames = 0;
702 bnx2fc_stats->lip_count = 0;
703 bnx2fc_stats->nos_count = 0;
704 bnx2fc_stats->loss_of_sync_count = 0;
705 bnx2fc_stats->loss_of_signal_count = 0;
706 bnx2fc_stats->prim_seq_protocol_err_count = 0;
707
f246fe2a
BPG
708 memcpy(&hba->prev_stats, hba->stats_buffer,
709 sizeof(struct fcoe_statistics_params));
853e2bd2
BG
710 return bnx2fc_stats;
711}
712
713static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev)
714{
715 struct fcoe_port *port = lport_priv(lport);
aea71a02 716 struct bnx2fc_interface *interface = port->priv;
853e2bd2
BG
717 struct Scsi_Host *shost = lport->host;
718 int rc = 0;
719
720 shost->max_cmd_len = BNX2FC_MAX_CMD_LEN;
721 shost->max_lun = BNX2FC_MAX_LUN;
722 shost->max_id = BNX2FC_MAX_FCP_TGT;
723 shost->max_channel = 0;
724 if (lport->vport)
725 shost->transportt = bnx2fc_vport_xport_template;
726 else
727 shost->transportt = bnx2fc_transport_template;
728
729 /* Add the new host to SCSI-ml */
730 rc = scsi_add_host(lport->host, dev);
731 if (rc) {
732 printk(KERN_ERR PFX "Error on scsi_add_host\n");
733 return rc;
734 }
735 if (!lport->vport)
736 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
737 sprintf(fc_host_symbolic_name(lport->host), "%s v%s over %s",
738 BNX2FC_NAME, BNX2FC_VERSION,
aea71a02 739 interface->netdev->name);
853e2bd2
BG
740
741 return 0;
742}
743
853e2bd2
BG
744static void bnx2fc_link_speed_update(struct fc_lport *lport)
745{
746 struct fcoe_port *port = lport_priv(lport);
aea71a02
BPG
747 struct bnx2fc_interface *interface = port->priv;
748 struct net_device *netdev = interface->netdev;
8ae6daca 749 struct ethtool_cmd ecmd;
853e2bd2 750
4bc71cb9 751 if (!__ethtool_get_settings(netdev, &ecmd)) {
853e2bd2
BG
752 lport->link_supported_speeds &=
753 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
754 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
755 SUPPORTED_1000baseT_Full))
756 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
757 if (ecmd.supported & SUPPORTED_10000baseT_Full)
758 lport->link_supported_speeds |= FC_PORTSPEED_10GBIT;
759
8ae6daca
DD
760 switch (ethtool_cmd_speed(&ecmd)) {
761 case SPEED_1000:
853e2bd2 762 lport->link_speed = FC_PORTSPEED_1GBIT;
8ae6daca 763 break;
a4dc08ce
BPG
764 case SPEED_2500:
765 lport->link_speed = FC_PORTSPEED_2GBIT;
766 break;
8ae6daca 767 case SPEED_10000:
853e2bd2 768 lport->link_speed = FC_PORTSPEED_10GBIT;
8ae6daca
DD
769 break;
770 }
853e2bd2 771 }
853e2bd2
BG
772}
773static int bnx2fc_link_ok(struct fc_lport *lport)
774{
775 struct fcoe_port *port = lport_priv(lport);
aea71a02
BPG
776 struct bnx2fc_interface *interface = port->priv;
777 struct bnx2fc_hba *hba = interface->hba;
853e2bd2
BG
778 struct net_device *dev = hba->phys_dev;
779 int rc = 0;
780
781 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev))
782 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
783 else {
784 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
785 rc = -1;
786 }
787 return rc;
788}
789
790/**
791 * bnx2fc_get_link_state - get network link state
792 *
793 * @hba: adapter instance pointer
794 *
795 * updates adapter structure flag based on netdev state
796 */
797void bnx2fc_get_link_state(struct bnx2fc_hba *hba)
798{
aea71a02 799 if (test_bit(__LINK_STATE_NOCARRIER, &hba->phys_dev->state))
853e2bd2
BG
800 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
801 else
802 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
803}
804
52439607 805static int bnx2fc_net_config(struct fc_lport *lport, struct net_device *netdev)
853e2bd2
BG
806{
807 struct bnx2fc_hba *hba;
aea71a02 808 struct bnx2fc_interface *interface;
fd8f8902 809 struct fcoe_ctlr *ctlr;
853e2bd2
BG
810 struct fcoe_port *port;
811 u64 wwnn, wwpn;
812
813 port = lport_priv(lport);
aea71a02 814 interface = port->priv;
fd8f8902 815 ctlr = bnx2fc_to_ctlr(interface);
aea71a02 816 hba = interface->hba;
853e2bd2
BG
817
818 /* require support for get_pauseparam ethtool op. */
819 if (!hba->phys_dev->ethtool_ops ||
820 !hba->phys_dev->ethtool_ops->get_pauseparam)
821 return -EOPNOTSUPP;
822
1294bfe6 823 if (fc_set_mfs(lport, BNX2FC_MFS))
853e2bd2
BG
824 return -EINVAL;
825
826 skb_queue_head_init(&port->fcoe_pending_queue);
827 port->fcoe_pending_queue_active = 0;
828 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long) lport);
829
830 bnx2fc_link_speed_update(lport);
831
832 if (!lport->vport) {
52439607 833 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
fd8f8902 834 wwnn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
52439607 835 1, 0);
853e2bd2
BG
836 BNX2FC_HBA_DBG(lport, "WWNN = 0x%llx\n", wwnn);
837 fc_set_wwnn(lport, wwnn);
838
52439607 839 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
fd8f8902 840 wwpn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
52439607
BPG
841 2, 0);
842
853e2bd2
BG
843 BNX2FC_HBA_DBG(lport, "WWPN = 0x%llx\n", wwpn);
844 fc_set_wwpn(lport, wwpn);
845 }
846
847 return 0;
848}
849
850static void bnx2fc_destroy_timer(unsigned long data)
851{
852 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)data;
853
cd703ae7
BPG
854 printk(KERN_ERR PFX "ERROR:bnx2fc_destroy_timer - "
855 "Destroy compl not received!!\n");
aea71a02 856 set_bit(BNX2FC_FLAG_DESTROY_CMPL, &hba->flags);
853e2bd2
BG
857 wake_up_interruptible(&hba->destroy_wait);
858}
859
860/**
861 * bnx2fc_indicate_netevent - Generic netdev event handler
862 *
863 * @context: adapter structure pointer
864 * @event: event type
415199f2 865 * @vlan_id: vlan id - associated vlan id with this event
853e2bd2
BG
866 *
867 * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and
abc49a93 868 * NETDEV_CHANGE_MTU events. Handle NETDEV_UNREGISTER only for vlans.
853e2bd2 869 */
415199f2
MC
870static void bnx2fc_indicate_netevent(void *context, unsigned long event,
871 u16 vlan_id)
853e2bd2
BG
872{
873 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)context;
aea71a02 874 struct fc_lport *lport;
853e2bd2 875 struct fc_lport *vport;
abc49a93 876 struct bnx2fc_interface *interface, *tmp;
fd8f8902 877 struct fcoe_ctlr *ctlr;
aea71a02 878 int wait_for_upload = 0;
853e2bd2
BG
879 u32 link_possible = 1;
880
abc49a93 881 if (vlan_id != 0 && event != NETDEV_UNREGISTER)
415199f2
MC
882 return;
883
853e2bd2
BG
884 switch (event) {
885 case NETDEV_UP:
853e2bd2
BG
886 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state))
887 printk(KERN_ERR "indicate_netevent: "\
aea71a02 888 "hba is not UP!!\n");
853e2bd2
BG
889 break;
890
891 case NETDEV_DOWN:
853e2bd2
BG
892 clear_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
893 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
894 link_possible = 0;
895 break;
896
897 case NETDEV_GOING_DOWN:
853e2bd2
BG
898 set_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
899 link_possible = 0;
900 break;
901
902 case NETDEV_CHANGE:
853e2bd2
BG
903 break;
904
abc49a93
BPG
905 case NETDEV_UNREGISTER:
906 if (!vlan_id)
907 return;
908 mutex_lock(&bnx2fc_dev_lock);
909 list_for_each_entry_safe(interface, tmp, &if_list, list) {
26b2982f
NNS
910 if (interface->hba == hba &&
911 interface->vlan_id == (vlan_id & VLAN_VID_MASK))
912 __bnx2fc_destroy(interface);
abc49a93
BPG
913 }
914 mutex_unlock(&bnx2fc_dev_lock);
915 return;
916
853e2bd2 917 default:
59e13d48 918 printk(KERN_ERR PFX "Unknown netevent %ld", event);
853e2bd2
BG
919 return;
920 }
921
aea71a02
BPG
922 mutex_lock(&bnx2fc_dev_lock);
923 list_for_each_entry(interface, &if_list, list) {
853e2bd2 924
aea71a02
BPG
925 if (interface->hba != hba)
926 continue;
927
fd8f8902
RL
928 ctlr = bnx2fc_to_ctlr(interface);
929 lport = ctlr->lp;
aea71a02
BPG
930 BNX2FC_HBA_DBG(lport, "netevent handler - event=%s %ld\n",
931 interface->netdev->name, event);
932
933 bnx2fc_link_speed_update(lport);
934
935 if (link_possible && !bnx2fc_link_ok(lport)) {
c780673c
BPG
936 /* Reset max recv frame size to default */
937 fc_set_mfs(lport, BNX2FC_MFS);
8a5badf1
BPG
938 /*
939 * ctlr link up will only be handled during
940 * enable to avoid sending discovery solicitation
941 * on a stale vlan
942 */
fd8fa907 943 if (interface->enabled)
fd8f8902
RL
944 fcoe_ctlr_link_up(ctlr);
945 } else if (fcoe_ctlr_link_down(ctlr)) {
853e2bd2
BG
946 mutex_lock(&lport->lp_mutex);
947 list_for_each_entry(vport, &lport->vports, list)
948 fc_host_port_type(vport->host) =
949 FC_PORTTYPE_UNKNOWN;
950 mutex_unlock(&lport->lp_mutex);
951 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
1bd49b48 952 per_cpu_ptr(lport->stats,
853e2bd2
BG
953 get_cpu())->LinkFailureCount++;
954 put_cpu();
955 fcoe_clean_pending_queue(lport);
aea71a02
BPG
956 wait_for_upload = 1;
957 }
958 }
959 mutex_unlock(&bnx2fc_dev_lock);
853e2bd2 960
aea71a02
BPG
961 if (wait_for_upload) {
962 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
963 init_waitqueue_head(&hba->shutdown_wait);
964 BNX2FC_MISC_DBG("indicate_netevent "
965 "num_ofld_sess = %d\n",
966 hba->num_ofld_sess);
967 hba->wait_for_link_down = 1;
968 wait_event_interruptible(hba->shutdown_wait,
969 (hba->num_ofld_sess == 0));
970 BNX2FC_MISC_DBG("wakeup - num_ofld_sess = %d\n",
853e2bd2 971 hba->num_ofld_sess);
aea71a02 972 hba->wait_for_link_down = 0;
853e2bd2 973
aea71a02
BPG
974 if (signal_pending(current))
975 flush_signals(current);
853e2bd2
BG
976 }
977}
978
979static int bnx2fc_libfc_config(struct fc_lport *lport)
980{
981
982 /* Set the function pointers set by bnx2fc driver */
983 memcpy(&lport->tt, &bnx2fc_libfc_fcn_templ,
984 sizeof(struct libfc_function_template));
985 fc_elsct_init(lport);
986 fc_exch_init(lport);
987 fc_rport_init(lport);
988 fc_disc_init(lport);
989 return 0;
990}
991
992static int bnx2fc_em_config(struct fc_lport *lport)
993{
7d742f65
BPG
994 int max_xid;
995
996 if (nr_cpu_ids <= 2)
997 max_xid = FCOE_XIDS_PER_CPU;
998 else
999 max_xid = FCOE_MAX_XID;
853e2bd2 1000 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, FCOE_MIN_XID,
7d742f65 1001 max_xid, NULL)) {
853e2bd2
BG
1002 printk(KERN_ERR PFX "em_config:fc_exch_mgr_alloc failed\n");
1003 return -ENOMEM;
1004 }
1005
853e2bd2
BG
1006 return 0;
1007}
1008
1009static int bnx2fc_lport_config(struct fc_lport *lport)
1010{
1011 lport->link_up = 0;
1012 lport->qfull = 0;
44c570b5
BPG
1013 lport->max_retry_count = BNX2FC_MAX_RETRY_CNT;
1014 lport->max_rport_retry_count = BNX2FC_MAX_RPORT_RETRY_CNT;
853e2bd2
BG
1015 lport->e_d_tov = 2 * 1000;
1016 lport->r_a_tov = 10 * 1000;
1017
853e2bd2
BG
1018 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
1019 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
853e2bd2
BG
1020 lport->does_npiv = 1;
1021
1022 memset(&lport->rnid_gen, 0, sizeof(struct fc_els_rnid_gen));
1023 lport->rnid_gen.rnid_atype = BNX2FC_RNID_HBA;
1024
1025 /* alloc stats structure */
1026 if (fc_lport_init_stats(lport))
1027 return -ENOMEM;
1028
1029 /* Finish fc_lport configuration */
1030 fc_lport_config(lport);
1031
1032 return 0;
1033}
1034
1035/**
1036 * bnx2fc_fip_recv - handle a received FIP frame.
1037 *
1038 * @skb: the received skb
1039 * @dev: associated &net_device
1040 * @ptype: the &packet_type structure which was used to register this handler.
1041 * @orig_dev: original receive &net_device, in case @ dev is a bond.
1042 *
1043 * Returns: 0 for success
1044 */
1045static int bnx2fc_fip_recv(struct sk_buff *skb, struct net_device *dev,
1046 struct packet_type *ptype,
1047 struct net_device *orig_dev)
1048{
aea71a02 1049 struct bnx2fc_interface *interface;
fd8f8902 1050 struct fcoe_ctlr *ctlr;
aea71a02
BPG
1051 interface = container_of(ptype, struct bnx2fc_interface,
1052 fip_packet_type);
fd8f8902
RL
1053 ctlr = bnx2fc_to_ctlr(interface);
1054 fcoe_ctlr_recv(ctlr, skb);
853e2bd2
BG
1055 return 0;
1056}
1057
1058/**
1059 * bnx2fc_update_src_mac - Update Ethernet MAC filters.
1060 *
1061 * @fip: FCoE controller.
1062 * @old: Unicast MAC address to delete if the MAC is non-zero.
1063 * @new: Unicast MAC address to add.
1064 *
1065 * Remove any previously-set unicast MAC filter.
1066 * Add secondary FCoE MAC address filter for our OUI.
1067 */
1068static void bnx2fc_update_src_mac(struct fc_lport *lport, u8 *addr)
1069{
1070 struct fcoe_port *port = lport_priv(lport);
1071
1072 memcpy(port->data_src_addr, addr, ETH_ALEN);
1073}
1074
1075/**
1076 * bnx2fc_get_src_mac - return the ethernet source address for an lport
1077 *
1078 * @lport: libfc port
1079 */
1080static u8 *bnx2fc_get_src_mac(struct fc_lport *lport)
1081{
1082 struct fcoe_port *port;
1083
1084 port = (struct fcoe_port *)lport_priv(lport);
1085 return port->data_src_addr;
1086}
1087
1088/**
1089 * bnx2fc_fip_send - send an Ethernet-encapsulated FIP frame.
1090 *
1091 * @fip: FCoE controller.
1092 * @skb: FIP Packet.
1093 */
1094static void bnx2fc_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
1095{
1096 skb->dev = bnx2fc_from_ctlr(fip)->netdev;
1097 dev_queue_xmit(skb);
1098}
1099
1100static int bnx2fc_vport_create(struct fc_vport *vport, bool disabled)
1101{
1102 struct Scsi_Host *shost = vport_to_shost(vport);
1103 struct fc_lport *n_port = shost_priv(shost);
1104 struct fcoe_port *port = lport_priv(n_port);
aea71a02
BPG
1105 struct bnx2fc_interface *interface = port->priv;
1106 struct net_device *netdev = interface->netdev;
853e2bd2 1107 struct fc_lport *vn_port;
861efc54
BPG
1108 int rc;
1109 char buf[32];
1110
1111 rc = fcoe_validate_vport_create(vport);
1112 if (rc) {
1113 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
1114 printk(KERN_ERR PFX "Failed to create vport, "
1115 "WWPN (0x%s) already exists\n",
1116 buf);
1117 return rc;
1118 }
853e2bd2 1119
aea71a02 1120 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags)) {
853e2bd2 1121 printk(KERN_ERR PFX "vn ports cannot be created on"
aea71a02 1122 "this interface\n");
853e2bd2
BG
1123 return -EIO;
1124 }
4bc71cb9 1125 rtnl_lock();
853e2bd2 1126 mutex_lock(&bnx2fc_dev_lock);
aea71a02 1127 vn_port = bnx2fc_if_create(interface, &vport->dev, 1);
853e2bd2 1128 mutex_unlock(&bnx2fc_dev_lock);
4bc71cb9 1129 rtnl_unlock();
853e2bd2
BG
1130
1131 if (IS_ERR(vn_port)) {
1132 printk(KERN_ERR PFX "bnx2fc_vport_create (%s) failed\n",
1133 netdev->name);
1134 return -EIO;
1135 }
1136
1137 if (disabled) {
1138 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1139 } else {
1140 vn_port->boot_time = jiffies;
1141 fc_lport_init(vn_port);
1142 fc_fabric_login(vn_port);
1143 fc_vport_setlink(vn_port);
1144 }
1145 return 0;
1146}
1147
abc49a93
BPG
1148static void bnx2fc_free_vport(struct bnx2fc_hba *hba, struct fc_lport *lport)
1149{
1150 struct bnx2fc_lport *blport, *tmp;
1151
1152 spin_lock_bh(&hba->hba_lock);
1153 list_for_each_entry_safe(blport, tmp, &hba->vports, list) {
1154 if (blport->lport == lport) {
1155 list_del(&blport->list);
1156 kfree(blport);
1157 }
1158 }
1159 spin_unlock_bh(&hba->hba_lock);
1160}
1161
853e2bd2
BG
1162static int bnx2fc_vport_destroy(struct fc_vport *vport)
1163{
1164 struct Scsi_Host *shost = vport_to_shost(vport);
1165 struct fc_lport *n_port = shost_priv(shost);
1166 struct fc_lport *vn_port = vport->dd_data;
1167 struct fcoe_port *port = lport_priv(vn_port);
abc49a93 1168 struct bnx2fc_interface *interface = port->priv;
cdf54668
BPG
1169 struct fc_lport *v_port;
1170 bool found = false;
853e2bd2
BG
1171
1172 mutex_lock(&n_port->lp_mutex);
cdf54668
BPG
1173 list_for_each_entry(v_port, &n_port->vports, list)
1174 if (v_port->vport == vport) {
1175 found = true;
1176 break;
1177 }
1178
1179 if (!found) {
1180 mutex_unlock(&n_port->lp_mutex);
1181 return -ENOENT;
1182 }
853e2bd2
BG
1183 list_del(&vn_port->list);
1184 mutex_unlock(&n_port->lp_mutex);
abc49a93
BPG
1185 bnx2fc_free_vport(interface->hba, port->lport);
1186 bnx2fc_port_shutdown(port->lport);
1187 bnx2fc_interface_put(interface);
853e2bd2
BG
1188 queue_work(bnx2fc_wq, &port->destroy_work);
1189 return 0;
1190}
1191
1192static int bnx2fc_vport_disable(struct fc_vport *vport, bool disable)
1193{
1194 struct fc_lport *lport = vport->dd_data;
1195
1196 if (disable) {
1197 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1198 fc_fabric_logoff(lport);
1199 } else {
1200 lport->boot_time = jiffies;
1201 fc_fabric_login(lport);
1202 fc_vport_setlink(lport);
1203 }
1204 return 0;
1205}
1206
1207
776cebca 1208static int bnx2fc_interface_setup(struct bnx2fc_interface *interface)
853e2bd2 1209{
aea71a02
BPG
1210 struct net_device *netdev = interface->netdev;
1211 struct net_device *physdev = interface->hba->phys_dev;
fd8f8902 1212 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
853e2bd2
BG
1213 struct netdev_hw_addr *ha;
1214 int sel_san_mac = 0;
1215
853e2bd2
BG
1216 /* setup Source MAC Address */
1217 rcu_read_lock();
1218 for_each_dev_addr(physdev, ha) {
1219 BNX2FC_MISC_DBG("net_config: ha->type = %d, fip_mac = ",
1220 ha->type);
1221 printk(KERN_INFO "%2x:%2x:%2x:%2x:%2x:%2x\n", ha->addr[0],
1222 ha->addr[1], ha->addr[2], ha->addr[3],
1223 ha->addr[4], ha->addr[5]);
1224
1225 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
1226 (is_valid_ether_addr(ha->addr))) {
fd8f8902 1227 memcpy(ctlr->ctl_src_addr, ha->addr,
aea71a02 1228 ETH_ALEN);
853e2bd2
BG
1229 sel_san_mac = 1;
1230 BNX2FC_MISC_DBG("Found SAN MAC\n");
1231 }
1232 }
1233 rcu_read_unlock();
1234
1235 if (!sel_san_mac)
1236 return -ENODEV;
1237
aea71a02
BPG
1238 interface->fip_packet_type.func = bnx2fc_fip_recv;
1239 interface->fip_packet_type.type = htons(ETH_P_FIP);
1240 interface->fip_packet_type.dev = netdev;
1241 dev_add_pack(&interface->fip_packet_type);
853e2bd2 1242
aea71a02
BPG
1243 interface->fcoe_packet_type.func = bnx2fc_rcv;
1244 interface->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
1245 interface->fcoe_packet_type.dev = netdev;
1246 dev_add_pack(&interface->fcoe_packet_type);
853e2bd2
BG
1247
1248 return 0;
1249}
1250
1251static int bnx2fc_attach_transport(void)
1252{
1253 bnx2fc_transport_template =
1254 fc_attach_transport(&bnx2fc_transport_function);
1255
1256 if (bnx2fc_transport_template == NULL) {
1257 printk(KERN_ERR PFX "Failed to attach FC transport\n");
1258 return -ENODEV;
1259 }
1260
1261 bnx2fc_vport_xport_template =
1262 fc_attach_transport(&bnx2fc_vport_xport_function);
1263 if (bnx2fc_vport_xport_template == NULL) {
1264 printk(KERN_ERR PFX
1265 "Failed to attach FC transport for vport\n");
1266 fc_release_transport(bnx2fc_transport_template);
1267 bnx2fc_transport_template = NULL;
1268 return -ENODEV;
1269 }
1270 return 0;
1271}
1272static void bnx2fc_release_transport(void)
1273{
1274 fc_release_transport(bnx2fc_transport_template);
1275 fc_release_transport(bnx2fc_vport_xport_template);
1276 bnx2fc_transport_template = NULL;
1277 bnx2fc_vport_xport_template = NULL;
1278}
1279
1280static void bnx2fc_interface_release(struct kref *kref)
1281{
8d55e507 1282 struct fcoe_ctlr_device *ctlr_dev;
aea71a02 1283 struct bnx2fc_interface *interface;
fd8f8902 1284 struct fcoe_ctlr *ctlr;
853e2bd2 1285 struct net_device *netdev;
853e2bd2 1286
aea71a02 1287 interface = container_of(kref, struct bnx2fc_interface, kref);
068bdce4 1288 BNX2FC_MISC_DBG("Interface is being released\n");
853e2bd2 1289
fd8f8902 1290 ctlr = bnx2fc_to_ctlr(interface);
8d55e507 1291 ctlr_dev = fcoe_ctlr_to_ctlr_dev(ctlr);
aea71a02 1292 netdev = interface->netdev;
853e2bd2
BG
1293
1294 /* tear-down FIP controller */
aea71a02 1295 if (test_and_clear_bit(BNX2FC_CTLR_INIT_DONE, &interface->if_flags))
fd8f8902 1296 fcoe_ctlr_destroy(ctlr);
aea71a02 1297
8d55e507 1298 fcoe_ctlr_device_delete(ctlr_dev);
853e2bd2 1299
853e2bd2
BG
1300 dev_put(netdev);
1301 module_put(THIS_MODULE);
1302}
1303
aea71a02 1304static inline void bnx2fc_interface_get(struct bnx2fc_interface *interface)
853e2bd2 1305{
aea71a02 1306 kref_get(&interface->kref);
853e2bd2
BG
1307}
1308
aea71a02 1309static inline void bnx2fc_interface_put(struct bnx2fc_interface *interface)
853e2bd2 1310{
aea71a02 1311 kref_put(&interface->kref, bnx2fc_interface_release);
853e2bd2 1312}
aea71a02 1313static void bnx2fc_hba_destroy(struct bnx2fc_hba *hba)
853e2bd2 1314{
aea71a02
BPG
1315 /* Free the command manager */
1316 if (hba->cmd_mgr) {
1317 bnx2fc_cmd_mgr_free(hba->cmd_mgr);
1318 hba->cmd_mgr = NULL;
1319 }
1320 kfree(hba->tgt_ofld_list);
853e2bd2
BG
1321 bnx2fc_unbind_pcidev(hba);
1322 kfree(hba);
1323}
1324
1325/**
aea71a02 1326 * bnx2fc_hba_create - create a new bnx2fc hba
853e2bd2
BG
1327 *
1328 * @cnic: pointer to cnic device
1329 *
aea71a02
BPG
1330 * Creates a new FCoE hba on the given device.
1331 *
853e2bd2 1332 */
aea71a02 1333static struct bnx2fc_hba *bnx2fc_hba_create(struct cnic_dev *cnic)
853e2bd2
BG
1334{
1335 struct bnx2fc_hba *hba;
2e499d3c 1336 struct fcoe_capabilities *fcoe_cap;
853e2bd2
BG
1337 int rc;
1338
1339 hba = kzalloc(sizeof(*hba), GFP_KERNEL);
1340 if (!hba) {
1341 printk(KERN_ERR PFX "Unable to allocate hba structure\n");
1342 return NULL;
1343 }
1344 spin_lock_init(&hba->hba_lock);
1345 mutex_init(&hba->hba_mutex);
1346
1347 hba->cnic = cnic;
1348 rc = bnx2fc_bind_pcidev(hba);
aea71a02
BPG
1349 if (rc) {
1350 printk(KERN_ERR PFX "create_adapter: bind error\n");
853e2bd2 1351 goto bind_err;
aea71a02 1352 }
853e2bd2 1353 hba->phys_dev = cnic->netdev;
aea71a02
BPG
1354 hba->next_conn_id = 0;
1355
1356 hba->tgt_ofld_list =
1357 kzalloc(sizeof(struct bnx2fc_rport *) * BNX2FC_NUM_MAX_SESS,
1358 GFP_KERNEL);
1359 if (!hba->tgt_ofld_list) {
1360 printk(KERN_ERR PFX "Unable to allocate tgt offload list\n");
1361 goto tgtofld_err;
1362 }
1363
1364 hba->num_ofld_sess = 0;
1365
1366 hba->cmd_mgr = bnx2fc_cmd_mgr_alloc(hba, BNX2FC_MIN_XID,
1367 BNX2FC_MAX_XID);
1368 if (!hba->cmd_mgr) {
1369 printk(KERN_ERR PFX "em_config:bnx2fc_cmd_mgr_alloc failed\n");
1370 goto cmgr_err;
1371 }
2e499d3c
BW
1372 fcoe_cap = &hba->fcoe_cap;
1373
1374 fcoe_cap->capability1 = BNX2FC_TM_MAX_SQES <<
1375 FCOE_IOS_PER_CONNECTION_SHIFT;
1376 fcoe_cap->capability1 |= BNX2FC_NUM_MAX_SESS <<
1377 FCOE_LOGINS_PER_PORT_SHIFT;
1378 fcoe_cap->capability2 = BNX2FC_MAX_OUTSTANDING_CMNDS <<
1379 FCOE_NUMBER_OF_EXCHANGES_SHIFT;
1380 fcoe_cap->capability2 |= BNX2FC_MAX_NPIV <<
1381 FCOE_NPIV_WWN_PER_PORT_SHIFT;
1382 fcoe_cap->capability3 = BNX2FC_NUM_MAX_SESS <<
1383 FCOE_TARGETS_SUPPORTED_SHIFT;
1384 fcoe_cap->capability3 |= BNX2FC_MAX_OUTSTANDING_CMNDS <<
1385 FCOE_OUTSTANDING_COMMANDS_SHIFT;
1386 fcoe_cap->capability4 = FCOE_CAPABILITY4_STATEFUL;
853e2bd2
BG
1387
1388 init_waitqueue_head(&hba->shutdown_wait);
1389 init_waitqueue_head(&hba->destroy_wait);
aea71a02 1390 INIT_LIST_HEAD(&hba->vports);
853e2bd2
BG
1391
1392 return hba;
aea71a02
BPG
1393
1394cmgr_err:
1395 kfree(hba->tgt_ofld_list);
1396tgtofld_err:
1397 bnx2fc_unbind_pcidev(hba);
853e2bd2 1398bind_err:
853e2bd2
BG
1399 kfree(hba);
1400 return NULL;
1401}
1402
aea71a02
BPG
1403struct bnx2fc_interface *bnx2fc_interface_create(struct bnx2fc_hba *hba,
1404 struct net_device *netdev,
1405 enum fip_state fip_mode)
853e2bd2 1406{
8d55e507 1407 struct fcoe_ctlr_device *ctlr_dev;
aea71a02 1408 struct bnx2fc_interface *interface;
fd8f8902
RL
1409 struct fcoe_ctlr *ctlr;
1410 int size;
853e2bd2 1411 int rc = 0;
853e2bd2 1412
fd8f8902 1413 size = (sizeof(*interface) + sizeof(struct fcoe_ctlr));
8d55e507
RL
1414 ctlr_dev = fcoe_ctlr_device_add(&netdev->dev, &bnx2fc_fcoe_sysfs_templ,
1415 size);
1416 if (!ctlr_dev) {
aea71a02
BPG
1417 printk(KERN_ERR PFX "Unable to allocate interface structure\n");
1418 return NULL;
1419 }
8d55e507 1420 ctlr = fcoe_ctlr_device_priv(ctlr_dev);
fd8f8902 1421 interface = fcoe_ctlr_priv(ctlr);
853e2bd2 1422 dev_hold(netdev);
aea71a02
BPG
1423 kref_init(&interface->kref);
1424 interface->hba = hba;
1425 interface->netdev = netdev;
853e2bd2
BG
1426
1427 /* Initialize FIP */
fd8f8902
RL
1428 fcoe_ctlr_init(ctlr, fip_mode);
1429 ctlr->send = bnx2fc_fip_send;
1430 ctlr->update_mac = bnx2fc_update_src_mac;
1431 ctlr->get_src_addr = bnx2fc_get_src_mac;
aea71a02 1432 set_bit(BNX2FC_CTLR_INIT_DONE, &interface->if_flags);
853e2bd2 1433
776cebca 1434 rc = bnx2fc_interface_setup(interface);
aea71a02
BPG
1435 if (!rc)
1436 return interface;
853e2bd2 1437
fd8f8902 1438 fcoe_ctlr_destroy(ctlr);
853e2bd2 1439 dev_put(netdev);
8d55e507 1440 fcoe_ctlr_device_delete(ctlr_dev);
aea71a02 1441 return NULL;
853e2bd2
BG
1442}
1443
1444/**
1445 * bnx2fc_if_create - Create FCoE instance on a given interface
1446 *
aea71a02 1447 * @interface: FCoE interface to create a local port on
853e2bd2
BG
1448 * @parent: Device pointer to be the parent in sysfs for the SCSI host
1449 * @npiv: Indicates if the port is vport or not
1450 *
1451 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
1452 *
1453 * Returns: Allocated fc_lport or an error pointer
1454 */
aea71a02 1455static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
853e2bd2
BG
1456 struct device *parent, int npiv)
1457{
fd8f8902 1458 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
134a4e27 1459 struct fc_lport *lport, *n_port;
853e2bd2
BG
1460 struct fcoe_port *port;
1461 struct Scsi_Host *shost;
1462 struct fc_vport *vport = dev_to_vport(parent);
d36b3279 1463 struct bnx2fc_lport *blport;
aea71a02 1464 struct bnx2fc_hba *hba;
853e2bd2
BG
1465 int rc = 0;
1466
d36b3279
BPG
1467 blport = kzalloc(sizeof(struct bnx2fc_lport), GFP_KERNEL);
1468 if (!blport) {
fd8f8902 1469 BNX2FC_HBA_DBG(ctlr->lp, "Unable to alloc blport\n");
d36b3279
BPG
1470 return NULL;
1471 }
1472
853e2bd2 1473 /* Allocate Scsi_Host structure */
134a4e27
VD
1474 if (!npiv)
1475 lport = libfc_host_alloc(&bnx2fc_shost_template, sizeof(*port));
1476 else
1477 lport = libfc_vport_create(vport, sizeof(*port));
853e2bd2
BG
1478
1479 if (!lport) {
1480 printk(KERN_ERR PFX "could not allocate scsi host structure\n");
d36b3279 1481 goto free_blport;
853e2bd2
BG
1482 }
1483 shost = lport->host;
1484 port = lport_priv(lport);
1485 port->lport = lport;
aea71a02 1486 port->priv = interface;
853e2bd2
BG
1487 INIT_WORK(&port->destroy_work, bnx2fc_destroy_work);
1488
1489 /* Configure fcoe_port */
1490 rc = bnx2fc_lport_config(lport);
1491 if (rc)
1492 goto lp_config_err;
1493
1494 if (npiv) {
853e2bd2
BG
1495 printk(KERN_ERR PFX "Setting vport names, 0x%llX 0x%llX\n",
1496 vport->node_name, vport->port_name);
1497 fc_set_wwnn(lport, vport->node_name);
1498 fc_set_wwpn(lport, vport->port_name);
1499 }
1500 /* Configure netdev and networking properties of the lport */
52439607 1501 rc = bnx2fc_net_config(lport, interface->netdev);
853e2bd2
BG
1502 if (rc) {
1503 printk(KERN_ERR PFX "Error on bnx2fc_net_config\n");
1504 goto lp_config_err;
1505 }
1506
1507 rc = bnx2fc_shost_config(lport, parent);
1508 if (rc) {
1509 printk(KERN_ERR PFX "Couldnt configure shost for %s\n",
aea71a02 1510 interface->netdev->name);
853e2bd2
BG
1511 goto lp_config_err;
1512 }
1513
1514 /* Initialize the libfc library */
1515 rc = bnx2fc_libfc_config(lport);
1516 if (rc) {
1517 printk(KERN_ERR PFX "Couldnt configure libfc\n");
1518 goto shost_err;
1519 }
1520 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
1521
1522 /* Allocate exchange manager */
134a4e27 1523 if (!npiv)
853e2bd2 1524 rc = bnx2fc_em_config(lport);
134a4e27
VD
1525 else {
1526 shost = vport_to_shost(vport);
1527 n_port = shost_priv(shost);
1528 rc = fc_exch_mgr_list_clone(n_port, lport);
1529 }
1530
1531 if (rc) {
1532 printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
1533 goto shost_err;
853e2bd2
BG
1534 }
1535
aea71a02 1536 bnx2fc_interface_get(interface);
d36b3279 1537
aea71a02 1538 hba = interface->hba;
d36b3279
BPG
1539 spin_lock_bh(&hba->hba_lock);
1540 blport->lport = lport;
1541 list_add_tail(&blport->list, &hba->vports);
1542 spin_unlock_bh(&hba->hba_lock);
1543
853e2bd2
BG
1544 return lport;
1545
1546shost_err:
1547 scsi_remove_host(shost);
1548lp_config_err:
1549 scsi_host_put(lport->host);
d36b3279
BPG
1550free_blport:
1551 kfree(blport);
853e2bd2
BG
1552 return NULL;
1553}
1554
013068fa 1555static void bnx2fc_net_cleanup(struct bnx2fc_interface *interface)
853e2bd2
BG
1556{
1557 /* Dont listen for Ethernet packets anymore */
aea71a02
BPG
1558 __dev_remove_pack(&interface->fcoe_packet_type);
1559 __dev_remove_pack(&interface->fip_packet_type);
853e2bd2
BG
1560 synchronize_net();
1561}
1562
776cebca 1563static void bnx2fc_interface_cleanup(struct bnx2fc_interface *interface)
853e2bd2 1564{
fd8f8902
RL
1565 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
1566 struct fc_lport *lport = ctlr->lp;
853e2bd2 1567 struct fcoe_port *port = lport_priv(lport);
9be17fc4 1568 struct bnx2fc_hba *hba = interface->hba;
853e2bd2 1569
853e2bd2
BG
1570 /* Stop the transmit retry timer */
1571 del_timer_sync(&port->timer);
1572
1573 /* Free existing transmit skbs */
1574 fcoe_clean_pending_queue(lport);
1575
013068fa 1576 bnx2fc_net_cleanup(interface);
9be17fc4 1577
abc49a93 1578 bnx2fc_free_vport(hba, lport);
9be17fc4
BPG
1579}
1580
1581static void bnx2fc_if_destroy(struct fc_lport *lport)
1582{
1583
853e2bd2
BG
1584 /* Free queued packets for the receive thread */
1585 bnx2fc_clean_rx_queue(lport);
1586
1587 /* Detach from scsi-ml */
1588 fc_remove_host(lport->host);
1589 scsi_remove_host(lport->host);
1590
1591 /*
1592 * Note that only the physical lport will have the exchange manager.
1593 * for vports, this function is NOP
1594 */
1595 fc_exch_mgr_free(lport);
1596
1597 /* Free memory used by statistical counters */
1598 fc_lport_free_stats(lport);
1599
1600 /* Release Scsi_Host */
1601 scsi_host_put(lport->host);
1602}
1603
eccdcd02 1604static void __bnx2fc_destroy(struct bnx2fc_interface *interface)
abc49a93 1605{
fd8f8902
RL
1606 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
1607 struct fc_lport *lport = ctlr->lp;
0cbf32e1 1608 struct fcoe_port *port = lport_priv(lport);
abc49a93
BPG
1609
1610 bnx2fc_interface_cleanup(interface);
1611 bnx2fc_stop(interface);
abc49a93 1612 list_del(&interface->list);
abc49a93 1613 bnx2fc_interface_put(interface);
0cbf32e1 1614 queue_work(bnx2fc_wq, &port->destroy_work);
abc49a93
BPG
1615}
1616
853e2bd2
BG
1617/**
1618 * bnx2fc_destroy - Destroy a bnx2fc FCoE interface
1619 *
1620 * @buffer: The name of the Ethernet interface to be destroyed
1621 * @kp: The associated kernel parameter
1622 *
1623 * Called from sysfs.
1624 *
1625 * Returns: 0 for success
1626 */
1627static int bnx2fc_destroy(struct net_device *netdev)
1628{
aea71a02 1629 struct bnx2fc_interface *interface = NULL;
2a7b29c5 1630 struct workqueue_struct *timer_work_queue;
fd8f8902 1631 struct fcoe_ctlr *ctlr;
853e2bd2
BG
1632 int rc = 0;
1633
6702ca1d 1634 rtnl_lock();
853e2bd2 1635 mutex_lock(&bnx2fc_dev_lock);
853e2bd2 1636
aea71a02 1637 interface = bnx2fc_interface_lookup(netdev);
fd8f8902
RL
1638 ctlr = bnx2fc_to_ctlr(interface);
1639 if (!interface || !ctlr->lp) {
853e2bd2 1640 rc = -ENODEV;
aea71a02 1641 printk(KERN_ERR PFX "bnx2fc_destroy: interface or lport not found\n");
853e2bd2
BG
1642 goto netdev_err;
1643 }
1644
2a7b29c5 1645 timer_work_queue = interface->timer_work_queue;
eccdcd02 1646 __bnx2fc_destroy(interface);
2a7b29c5 1647 destroy_workqueue(timer_work_queue);
853e2bd2 1648
853e2bd2
BG
1649netdev_err:
1650 mutex_unlock(&bnx2fc_dev_lock);
1651 rtnl_unlock();
1652 return rc;
1653}
1654
1655static void bnx2fc_destroy_work(struct work_struct *work)
1656{
1657 struct fcoe_port *port;
1658 struct fc_lport *lport;
1659
1660 port = container_of(work, struct fcoe_port, destroy_work);
1661 lport = port->lport;
1662
1663 BNX2FC_HBA_DBG(lport, "Entered bnx2fc_destroy_work\n");
1664
9be17fc4 1665 bnx2fc_if_destroy(lport);
853e2bd2
BG
1666}
1667
1668static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba *hba)
1669{
1670 bnx2fc_free_fw_resc(hba);
1671 bnx2fc_free_task_ctx(hba);
1672}
1673
1674/**
1675 * bnx2fc_bind_adapter_devices - binds bnx2fc adapter with the associated
1676 * pci structure
1677 *
1678 * @hba: Adapter instance
1679 */
1680static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba *hba)
1681{
1682 if (bnx2fc_setup_task_ctx(hba))
1683 goto mem_err;
1684
1685 if (bnx2fc_setup_fw_resc(hba))
1686 goto mem_err;
1687
1688 return 0;
1689mem_err:
1690 bnx2fc_unbind_adapter_devices(hba);
1691 return -ENOMEM;
1692}
1693
1694static int bnx2fc_bind_pcidev(struct bnx2fc_hba *hba)
1695{
1696 struct cnic_dev *cnic;
1697
1698 if (!hba->cnic) {
1699 printk(KERN_ERR PFX "cnic is NULL\n");
1700 return -ENODEV;
1701 }
1702 cnic = hba->cnic;
1703 hba->pcidev = cnic->pcidev;
1704 if (hba->pcidev)
1705 pci_dev_get(hba->pcidev);
1706
1707 return 0;
1708}
1709
1710static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba)
1711{
1712 if (hba->pcidev)
1713 pci_dev_put(hba->pcidev);
1714 hba->pcidev = NULL;
1715}
1716
2e499d3c
BW
1717/**
1718 * bnx2fc_ulp_get_stats - cnic callback to populate FCoE stats
1719 *
1720 * @handle: transport handle pointing to adapter struture
1721 */
1722static int bnx2fc_ulp_get_stats(void *handle)
1723{
1724 struct bnx2fc_hba *hba = handle;
1725 struct cnic_dev *cnic;
1726 struct fcoe_stats_info *stats_addr;
1727
1728 if (!hba)
1729 return -EINVAL;
1730
1731 cnic = hba->cnic;
1732 stats_addr = &cnic->stats_addr->fcoe_stat;
1733 if (!stats_addr)
1734 return -EINVAL;
1735
1736 strncpy(stats_addr->version, BNX2FC_VERSION,
1737 sizeof(stats_addr->version));
1738 stats_addr->txq_size = BNX2FC_SQ_WQES_MAX;
1739 stats_addr->rxq_size = BNX2FC_CQ_WQES_MAX;
1740
1741 return 0;
1742}
853e2bd2
BG
1743
1744
1745/**
1746 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
1747 *
59e13d48 1748 * @handle: transport handle pointing to adapter structure
853e2bd2
BG
1749 *
1750 * This function maps adapter structure to pcidev structure and initiates
1751 * firmware handshake to enable/initialize on-chip FCoE components.
1752 * This bnx2fc - cnic interface api callback is used after following
1753 * conditions are met -
1754 * a) underlying network interface is up (marked by event NETDEV_UP
1755 * from netdev
1756 * b) bnx2fc adatper structure is registered.
1757 */
1758static void bnx2fc_ulp_start(void *handle)
1759{
1760 struct bnx2fc_hba *hba = handle;
aea71a02 1761 struct bnx2fc_interface *interface;
fd8f8902 1762 struct fcoe_ctlr *ctlr;
aea71a02 1763 struct fc_lport *lport;
853e2bd2 1764
853e2bd2
BG
1765 mutex_lock(&bnx2fc_dev_lock);
1766
aea71a02 1767 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags))
853e2bd2
BG
1768 bnx2fc_fw_init(hba);
1769
853e2bd2
BG
1770 BNX2FC_MISC_DBG("bnx2fc started.\n");
1771
aea71a02
BPG
1772 list_for_each_entry(interface, &if_list, list) {
1773 if (interface->hba == hba) {
fd8f8902
RL
1774 ctlr = bnx2fc_to_ctlr(interface);
1775 lport = ctlr->lp;
aea71a02
BPG
1776 /* Kick off Fabric discovery*/
1777 printk(KERN_ERR PFX "ulp_init: start discovery\n");
1778 lport->tt.frame_send = bnx2fc_xmit;
1779 bnx2fc_start_disc(interface);
1780 }
853e2bd2 1781 }
aea71a02
BPG
1782
1783 mutex_unlock(&bnx2fc_dev_lock);
853e2bd2
BG
1784}
1785
1786static void bnx2fc_port_shutdown(struct fc_lport *lport)
1787{
1788 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1789 fc_fabric_logoff(lport);
1790 fc_lport_destroy(lport);
1791}
1792
aea71a02 1793static void bnx2fc_stop(struct bnx2fc_interface *interface)
853e2bd2 1794{
fd8f8902 1795 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
853e2bd2
BG
1796 struct fc_lport *lport;
1797 struct fc_lport *vport;
1798
aea71a02
BPG
1799 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags))
1800 return;
853e2bd2 1801
fd8f8902 1802 lport = ctlr->lp;
aea71a02
BPG
1803 bnx2fc_port_shutdown(lport);
1804
1805 mutex_lock(&lport->lp_mutex);
1806 list_for_each_entry(vport, &lport->vports, list)
1807 fc_host_port_type(vport->host) =
1808 FC_PORTTYPE_UNKNOWN;
1809 mutex_unlock(&lport->lp_mutex);
1810 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
fd8f8902 1811 fcoe_ctlr_link_down(ctlr);
aea71a02 1812 fcoe_clean_pending_queue(lport);
853e2bd2
BG
1813}
1814
1815static int bnx2fc_fw_init(struct bnx2fc_hba *hba)
1816{
1817#define BNX2FC_INIT_POLL_TIME (1000 / HZ)
1818 int rc = -1;
1819 int i = HZ;
1820
1821 rc = bnx2fc_bind_adapter_devices(hba);
1822 if (rc) {
1823 printk(KERN_ALERT PFX
1824 "bnx2fc_bind_adapter_devices failed - rc = %d\n", rc);
1825 goto err_out;
1826 }
1827
1828 rc = bnx2fc_send_fw_fcoe_init_msg(hba);
1829 if (rc) {
1830 printk(KERN_ALERT PFX
1831 "bnx2fc_send_fw_fcoe_init_msg failed - rc = %d\n", rc);
1832 goto err_unbind;
1833 }
1834
1835 /*
1836 * Wait until the adapter init message is complete, and adapter
1837 * state is UP.
1838 */
1839 while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--)
1840 msleep(BNX2FC_INIT_POLL_TIME);
1841
1842 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state)) {
1843 printk(KERN_ERR PFX "bnx2fc_start: %s failed to initialize. "
1844 "Ignoring...\n",
1845 hba->cnic->netdev->name);
1846 rc = -1;
1847 goto err_unbind;
1848 }
1849
1850
aea71a02 1851 set_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags);
853e2bd2
BG
1852 return 0;
1853
1854err_unbind:
1855 bnx2fc_unbind_adapter_devices(hba);
1856err_out:
1857 return rc;
1858}
1859
1860static void bnx2fc_fw_destroy(struct bnx2fc_hba *hba)
1861{
aea71a02 1862 if (test_and_clear_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags)) {
853e2bd2
BG
1863 if (bnx2fc_send_fw_fcoe_destroy_msg(hba) == 0) {
1864 init_timer(&hba->destroy_timer);
1865 hba->destroy_timer.expires = BNX2FC_FW_TIMEOUT +
1866 jiffies;
1867 hba->destroy_timer.function = bnx2fc_destroy_timer;
1868 hba->destroy_timer.data = (unsigned long)hba;
1869 add_timer(&hba->destroy_timer);
1870 wait_event_interruptible(hba->destroy_wait,
aea71a02
BPG
1871 test_bit(BNX2FC_FLAG_DESTROY_CMPL,
1872 &hba->flags));
cd703ae7 1873 clear_bit(BNX2FC_FLAG_DESTROY_CMPL, &hba->flags);
853e2bd2
BG
1874 /* This should never happen */
1875 if (signal_pending(current))
1876 flush_signals(current);
1877
1878 del_timer_sync(&hba->destroy_timer);
1879 }
1880 bnx2fc_unbind_adapter_devices(hba);
1881 }
1882}
1883
1884/**
1885 * bnx2fc_ulp_stop - cnic callback to shutdown adapter instance
1886 *
1887 * @handle: transport handle pointing to adapter structure
1888 *
1889 * Driver checks if adapter is already in shutdown mode, if not start
1890 * the shutdown process.
1891 */
1892static void bnx2fc_ulp_stop(void *handle)
1893{
aea71a02
BPG
1894 struct bnx2fc_hba *hba = handle;
1895 struct bnx2fc_interface *interface;
853e2bd2
BG
1896
1897 printk(KERN_ERR "ULP_STOP\n");
1898
1899 mutex_lock(&bnx2fc_dev_lock);
aea71a02
BPG
1900 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags))
1901 goto exit;
1902 list_for_each_entry(interface, &if_list, list) {
1903 if (interface->hba == hba)
1904 bnx2fc_stop(interface);
1905 }
1906 BUG_ON(hba->num_ofld_sess != 0);
1907
1908 mutex_lock(&hba->hba_mutex);
1909 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
1910 clear_bit(ADAPTER_STATE_GOING_DOWN,
1911 &hba->adapter_state);
1912
1913 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
1914 mutex_unlock(&hba->hba_mutex);
1915
853e2bd2 1916 bnx2fc_fw_destroy(hba);
aea71a02 1917exit:
853e2bd2
BG
1918 mutex_unlock(&bnx2fc_dev_lock);
1919}
1920
aea71a02 1921static void bnx2fc_start_disc(struct bnx2fc_interface *interface)
853e2bd2 1922{
fd8f8902 1923 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
853e2bd2
BG
1924 struct fc_lport *lport;
1925 int wait_cnt = 0;
1926
1927 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1928 /* Kick off FIP/FLOGI */
aea71a02 1929 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags)) {
853e2bd2
BG
1930 printk(KERN_ERR PFX "Init not done yet\n");
1931 return;
1932 }
1933
fd8f8902 1934 lport = ctlr->lp;
853e2bd2
BG
1935 BNX2FC_HBA_DBG(lport, "calling fc_fabric_login\n");
1936
8a5badf1 1937 if (!bnx2fc_link_ok(lport) && interface->enabled) {
853e2bd2 1938 BNX2FC_HBA_DBG(lport, "ctlr_link_up\n");
fd8f8902 1939 fcoe_ctlr_link_up(ctlr);
853e2bd2 1940 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
aea71a02 1941 set_bit(ADAPTER_STATE_READY, &interface->hba->adapter_state);
853e2bd2
BG
1942 }
1943
1944 /* wait for the FCF to be selected before issuing FLOGI */
fd8f8902 1945 while (!ctlr->sel_fcf) {
853e2bd2
BG
1946 msleep(250);
1947 /* give up after 3 secs */
1948 if (++wait_cnt > 12)
1949 break;
1950 }
627e628f
BPG
1951
1952 /* Reset max receive frame size to default */
1953 if (fc_set_mfs(lport, BNX2FC_MFS))
1954 return;
1955
853e2bd2
BG
1956 fc_lport_init(lport);
1957 fc_fabric_login(lport);
1958}
1959
1960
1961/**
1962 * bnx2fc_ulp_init - Initialize an adapter instance
1963 *
1964 * @dev : cnic device handle
1965 * Called from cnic_register_driver() context to initialize all
1966 * enumerated cnic devices. This routine allocates adapter structure
1967 * and other device specific resources.
1968 */
1969static void bnx2fc_ulp_init(struct cnic_dev *dev)
1970{
1971 struct bnx2fc_hba *hba;
1972 int rc = 0;
1973
1974 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1975 /* bnx2fc works only when bnx2x is loaded */
aea71a02
BPG
1976 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) ||
1977 (dev->max_fcoe_conn == 0)) {
853e2bd2 1978 printk(KERN_ERR PFX "bnx2fc FCoE not supported on %s,"
aea71a02
BPG
1979 " flags: %lx fcoe_conn: %d\n",
1980 dev->netdev->name, dev->flags, dev->max_fcoe_conn);
853e2bd2
BG
1981 return;
1982 }
1983
aea71a02 1984 hba = bnx2fc_hba_create(dev);
853e2bd2
BG
1985 if (!hba) {
1986 printk(KERN_ERR PFX "hba initialization failed\n");
1987 return;
1988 }
1989
1990 /* Add HBA to the adapter list */
1991 mutex_lock(&bnx2fc_dev_lock);
aea71a02 1992 list_add_tail(&hba->list, &adapter_list);
853e2bd2
BG
1993 adapter_count++;
1994 mutex_unlock(&bnx2fc_dev_lock);
1995
2e499d3c 1996 dev->fcoe_cap = &hba->fcoe_cap;
853e2bd2
BG
1997 clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
1998 rc = dev->register_device(dev, CNIC_ULP_FCOE,
1999 (void *) hba);
2000 if (rc)
b2a554ff 2001 printk(KERN_ERR PFX "register_device failed, rc = %d\n", rc);
853e2bd2
BG
2002 else
2003 set_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
2004}
2005
2006
2007static int bnx2fc_disable(struct net_device *netdev)
2008{
aea71a02 2009 struct bnx2fc_interface *interface;
fd8f8902 2010 struct fcoe_ctlr *ctlr;
853e2bd2
BG
2011 int rc = 0;
2012
6702ca1d 2013 rtnl_lock();
853e2bd2
BG
2014 mutex_lock(&bnx2fc_dev_lock);
2015
aea71a02 2016 interface = bnx2fc_interface_lookup(netdev);
fd8f8902
RL
2017 ctlr = bnx2fc_to_ctlr(interface);
2018 if (!interface || !ctlr->lp) {
853e2bd2 2019 rc = -ENODEV;
aea71a02 2020 printk(KERN_ERR PFX "bnx2fc_disable: interface or lport not found\n");
853e2bd2 2021 } else {
8a5badf1 2022 interface->enabled = false;
fd8f8902
RL
2023 fcoe_ctlr_link_down(ctlr);
2024 fcoe_clean_pending_queue(ctlr->lp);
853e2bd2
BG
2025 }
2026
853e2bd2
BG
2027 mutex_unlock(&bnx2fc_dev_lock);
2028 rtnl_unlock();
2029 return rc;
2030}
2031
2032
2033static int bnx2fc_enable(struct net_device *netdev)
2034{
aea71a02 2035 struct bnx2fc_interface *interface;
fd8f8902 2036 struct fcoe_ctlr *ctlr;
853e2bd2
BG
2037 int rc = 0;
2038
6702ca1d 2039 rtnl_lock();
853e2bd2
BG
2040 mutex_lock(&bnx2fc_dev_lock);
2041
aea71a02 2042 interface = bnx2fc_interface_lookup(netdev);
fd8f8902
RL
2043 ctlr = bnx2fc_to_ctlr(interface);
2044 if (!interface || !ctlr->lp) {
853e2bd2 2045 rc = -ENODEV;
aea71a02 2046 printk(KERN_ERR PFX "bnx2fc_enable: interface or lport not found\n");
fd8f8902
RL
2047 } else if (!bnx2fc_link_ok(ctlr->lp)) {
2048 fcoe_ctlr_link_up(ctlr);
8a5badf1
BPG
2049 interface->enabled = true;
2050 }
853e2bd2 2051
853e2bd2
BG
2052 mutex_unlock(&bnx2fc_dev_lock);
2053 rtnl_unlock();
2054 return rc;
2055}
2056
2057/**
2058 * bnx2fc_create - Create bnx2fc FCoE interface
2059 *
2060 * @buffer: The name of Ethernet interface to create on
2061 * @kp: The associated kernel param
2062 *
2063 * Called from sysfs.
2064 *
2065 * Returns: 0 for success
2066 */
2067static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode)
2068{
fd8f8902 2069 struct fcoe_ctlr *ctlr;
aea71a02 2070 struct bnx2fc_interface *interface;
853e2bd2 2071 struct bnx2fc_hba *hba;
7adc5a37 2072 struct net_device *phys_dev = netdev;
853e2bd2
BG
2073 struct fc_lport *lport;
2074 struct ethtool_drvinfo drvinfo;
2075 int rc = 0;
7adc5a37 2076 int vlan_id = 0;
853e2bd2
BG
2077
2078 BNX2FC_MISC_DBG("Entered bnx2fc_create\n");
2079 if (fip_mode != FIP_MODE_FABRIC) {
2080 printk(KERN_ERR "fip mode not FABRIC\n");
2081 return -EIO;
2082 }
2083
6702ca1d
NS
2084 rtnl_lock();
2085
853e2bd2
BG
2086 mutex_lock(&bnx2fc_dev_lock);
2087
853e2bd2
BG
2088 if (!try_module_get(THIS_MODULE)) {
2089 rc = -EINVAL;
2090 goto mod_err;
2091 }
2092
2093 /* obtain physical netdev */
7adc5a37 2094 if (netdev->priv_flags & IFF_802_1Q_VLAN)
853e2bd2 2095 phys_dev = vlan_dev_real_dev(netdev);
7adc5a37 2096
853e2bd2
BG
2097 /* verify if the physical device is a netxtreme2 device */
2098 if (phys_dev->ethtool_ops && phys_dev->ethtool_ops->get_drvinfo) {
2099 memset(&drvinfo, 0, sizeof(drvinfo));
2100 phys_dev->ethtool_ops->get_drvinfo(phys_dev, &drvinfo);
aea71a02 2101 if (strncmp(drvinfo.driver, "bnx2x", strlen("bnx2x"))) {
853e2bd2
BG
2102 printk(KERN_ERR PFX "Not a netxtreme2 device\n");
2103 rc = -EINVAL;
2104 goto netdev_err;
2105 }
2106 } else {
2107 printk(KERN_ERR PFX "unable to obtain drv_info\n");
2108 rc = -EINVAL;
2109 goto netdev_err;
2110 }
2111
aea71a02 2112 /* obtain interface and initialize rest of the structure */
853e2bd2
BG
2113 hba = bnx2fc_hba_lookup(phys_dev);
2114 if (!hba) {
2115 rc = -ENODEV;
2116 printk(KERN_ERR PFX "bnx2fc_create: hba not found\n");
2117 goto netdev_err;
2118 }
2119
aea71a02 2120 if (bnx2fc_interface_lookup(netdev)) {
853e2bd2
BG
2121 rc = -EEXIST;
2122 goto netdev_err;
2123 }
2124
aea71a02
BPG
2125 interface = bnx2fc_interface_create(hba, netdev, fip_mode);
2126 if (!interface) {
2127 printk(KERN_ERR PFX "bnx2fc_interface_create failed\n");
853e2bd2
BG
2128 goto ifput_err;
2129 }
2130
7adc5a37
BPG
2131 if (netdev->priv_flags & IFF_802_1Q_VLAN) {
2132 vlan_id = vlan_dev_vlan_id(netdev);
2133 interface->vlan_enabled = 1;
2134 }
2135
fd8f8902 2136 ctlr = bnx2fc_to_ctlr(interface);
aea71a02 2137 interface->vlan_id = vlan_id;
aea71a02
BPG
2138
2139 interface->timer_work_queue =
853e2bd2 2140 create_singlethread_workqueue("bnx2fc_timer_wq");
aea71a02 2141 if (!interface->timer_work_queue) {
853e2bd2
BG
2142 printk(KERN_ERR PFX "ulp_init could not create timer_wq\n");
2143 rc = -EINVAL;
2144 goto ifput_err;
2145 }
2146
aea71a02 2147 lport = bnx2fc_if_create(interface, &interface->hba->pcidev->dev, 0);
853e2bd2
BG
2148 if (!lport) {
2149 printk(KERN_ERR PFX "Failed to create interface (%s)\n",
2150 netdev->name);
853e2bd2
BG
2151 rc = -EINVAL;
2152 goto if_create_err;
2153 }
2154
aea71a02
BPG
2155 /* Add interface to if_list */
2156 list_add_tail(&interface->list, &if_list);
2157
853e2bd2
BG
2158 lport->boot_time = jiffies;
2159
2160 /* Make this master N_port */
fd8f8902 2161 ctlr->lp = lport;
853e2bd2 2162
8a5badf1 2163 if (!bnx2fc_link_ok(lport)) {
fd8f8902 2164 fcoe_ctlr_link_up(ctlr);
8a5badf1
BPG
2165 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
2166 set_bit(ADAPTER_STATE_READY, &interface->hba->adapter_state);
2167 }
2168
aea71a02
BPG
2169 BNX2FC_HBA_DBG(lport, "create: START DISC\n");
2170 bnx2fc_start_disc(interface);
8a5badf1 2171 interface->enabled = true;
853e2bd2
BG
2172 /*
2173 * Release from kref_init in bnx2fc_interface_setup, on success
2174 * lport should be holding a reference taken in bnx2fc_if_create
2175 */
aea71a02 2176 bnx2fc_interface_put(interface);
853e2bd2
BG
2177 /* put netdev that was held while calling dev_get_by_name */
2178 mutex_unlock(&bnx2fc_dev_lock);
2179 rtnl_unlock();
2180 return 0;
2181
2182if_create_err:
aea71a02 2183 destroy_workqueue(interface->timer_work_queue);
853e2bd2 2184ifput_err:
013068fa 2185 bnx2fc_net_cleanup(interface);
aea71a02 2186 bnx2fc_interface_put(interface);
7d742f65 2187 goto mod_err;
853e2bd2
BG
2188netdev_err:
2189 module_put(THIS_MODULE);
2190mod_err:
2191 mutex_unlock(&bnx2fc_dev_lock);
2192 rtnl_unlock();
2193 return rc;
2194}
2195
2196/**
aea71a02 2197 * bnx2fc_find_hba_for_cnic - maps cnic instance to bnx2fc hba instance
853e2bd2
BG
2198 *
2199 * @cnic: Pointer to cnic device instance
2200 *
2201 **/
2202static struct bnx2fc_hba *bnx2fc_find_hba_for_cnic(struct cnic_dev *cnic)
2203{
853e2bd2
BG
2204 struct bnx2fc_hba *hba;
2205
2206 /* Called with bnx2fc_dev_lock held */
d71fb3bd 2207 list_for_each_entry(hba, &adapter_list, list) {
853e2bd2
BG
2208 if (hba->cnic == cnic)
2209 return hba;
2210 }
2211 return NULL;
2212}
2213
aea71a02
BPG
2214static struct bnx2fc_interface *bnx2fc_interface_lookup(struct net_device
2215 *netdev)
2216{
2217 struct bnx2fc_interface *interface;
2218
2219 /* Called with bnx2fc_dev_lock held */
2220 list_for_each_entry(interface, &if_list, list) {
2221 if (interface->netdev == netdev)
2222 return interface;
2223 }
2224 return NULL;
2225}
2226
2227static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device
2228 *phys_dev)
853e2bd2 2229{
853e2bd2
BG
2230 struct bnx2fc_hba *hba;
2231
2232 /* Called with bnx2fc_dev_lock held */
aea71a02 2233 list_for_each_entry(hba, &adapter_list, list) {
853e2bd2
BG
2234 if (hba->phys_dev == phys_dev)
2235 return hba;
2236 }
aea71a02 2237 printk(KERN_ERR PFX "adapter_lookup: hba NULL\n");
853e2bd2
BG
2238 return NULL;
2239}
2240
2241/**
2242 * bnx2fc_ulp_exit - shuts down adapter instance and frees all resources
2243 *
2244 * @dev cnic device handle
2245 */
2246static void bnx2fc_ulp_exit(struct cnic_dev *dev)
2247{
2248 struct bnx2fc_hba *hba;
aea71a02 2249 struct bnx2fc_interface *interface, *tmp;
853e2bd2
BG
2250
2251 BNX2FC_MISC_DBG("Entered bnx2fc_ulp_exit\n");
2252
2253 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
2254 printk(KERN_ERR PFX "bnx2fc port check: %s, flags: %lx\n",
2255 dev->netdev->name, dev->flags);
2256 return;
2257 }
2258
2259 mutex_lock(&bnx2fc_dev_lock);
2260 hba = bnx2fc_find_hba_for_cnic(dev);
2261 if (!hba) {
2262 printk(KERN_ERR PFX "bnx2fc_ulp_exit: hba not found, dev 0%p\n",
2263 dev);
2264 mutex_unlock(&bnx2fc_dev_lock);
2265 return;
2266 }
2267
aea71a02 2268 list_del_init(&hba->list);
853e2bd2
BG
2269 adapter_count--;
2270
abc49a93 2271 list_for_each_entry_safe(interface, tmp, &if_list, list)
853e2bd2 2272 /* destroy not called yet, move to quiesced list */
abc49a93 2273 if (interface->hba == hba)
eccdcd02 2274 __bnx2fc_destroy(interface);
853e2bd2
BG
2275 mutex_unlock(&bnx2fc_dev_lock);
2276
2277 bnx2fc_ulp_stop(hba);
2278 /* unregister cnic device */
2279 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic))
2280 hba->cnic->unregister_device(hba->cnic, CNIC_ULP_FCOE);
aea71a02 2281 bnx2fc_hba_destroy(hba);
853e2bd2
BG
2282}
2283
2284/**
2285 * bnx2fc_fcoe_reset - Resets the fcoe
2286 *
2287 * @shost: shost the reset is from
2288 *
2289 * Returns: always 0
2290 */
2291static int bnx2fc_fcoe_reset(struct Scsi_Host *shost)
2292{
2293 struct fc_lport *lport = shost_priv(shost);
2294 fc_lport_reset(lport);
2295 return 0;
2296}
2297
2298
2299static bool bnx2fc_match(struct net_device *netdev)
2300{
7adc5a37
BPG
2301 struct net_device *phys_dev = netdev;
2302
853e2bd2 2303 mutex_lock(&bnx2fc_dev_lock);
7adc5a37
BPG
2304 if (netdev->priv_flags & IFF_802_1Q_VLAN)
2305 phys_dev = vlan_dev_real_dev(netdev);
853e2bd2 2306
7adc5a37
BPG
2307 if (bnx2fc_hba_lookup(phys_dev)) {
2308 mutex_unlock(&bnx2fc_dev_lock);
2309 return true;
853e2bd2 2310 }
7adc5a37 2311
853e2bd2
BG
2312 mutex_unlock(&bnx2fc_dev_lock);
2313 return false;
2314}
2315
2316
2317static struct fcoe_transport bnx2fc_transport = {
2318 .name = {"bnx2fc"},
2319 .attached = false,
2320 .list = LIST_HEAD_INIT(bnx2fc_transport.list),
2321 .match = bnx2fc_match,
2322 .create = bnx2fc_create,
2323 .destroy = bnx2fc_destroy,
2324 .enable = bnx2fc_enable,
2325 .disable = bnx2fc_disable,
2326};
2327
2328/**
2329 * bnx2fc_percpu_thread_create - Create a receive thread for an
2330 * online CPU
2331 *
2332 * @cpu: cpu index for the online cpu
2333 */
2334static void bnx2fc_percpu_thread_create(unsigned int cpu)
2335{
2336 struct bnx2fc_percpu_s *p;
2337 struct task_struct *thread;
2338
2339 p = &per_cpu(bnx2fc_percpu, cpu);
2340
69614270
ED
2341 thread = kthread_create_on_node(bnx2fc_percpu_io_thread,
2342 (void *)p, cpu_to_node(cpu),
2343 "bnx2fc_thread/%d", cpu);
853e2bd2 2344 /* bind thread to the cpu */
32248763 2345 if (likely(!IS_ERR(thread))) {
853e2bd2
BG
2346 kthread_bind(thread, cpu);
2347 p->iothread = thread;
2348 wake_up_process(thread);
2349 }
2350}
2351
2352static void bnx2fc_percpu_thread_destroy(unsigned int cpu)
2353{
2354 struct bnx2fc_percpu_s *p;
2355 struct task_struct *thread;
2356 struct bnx2fc_work *work, *tmp;
853e2bd2
BG
2357
2358 BNX2FC_MISC_DBG("destroying io thread for CPU %d\n", cpu);
2359
2360 /* Prevent any new work from being queued for this CPU */
2361 p = &per_cpu(bnx2fc_percpu, cpu);
2362 spin_lock_bh(&p->fp_work_lock);
2363 thread = p->iothread;
2364 p->iothread = NULL;
2365
2366
2367 /* Free all work in the list */
32248763 2368 list_for_each_entry_safe(work, tmp, &p->work_list, list) {
853e2bd2
BG
2369 list_del_init(&work->list);
2370 bnx2fc_process_cq_compl(work->tgt, work->wqe);
2371 kfree(work);
2372 }
2373
2374 spin_unlock_bh(&p->fp_work_lock);
2375
2376 if (thread)
2377 kthread_stop(thread);
2378}
2379
2380/**
2381 * bnx2fc_cpu_callback - Handler for CPU hotplug events
2382 *
2383 * @nfb: The callback data block
2384 * @action: The event triggering the callback
2385 * @hcpu: The index of the CPU that the event is for
2386 *
2387 * This creates or destroys per-CPU data for fcoe
2388 *
2389 * Returns NOTIFY_OK always.
2390 */
2391static int bnx2fc_cpu_callback(struct notifier_block *nfb,
2392 unsigned long action, void *hcpu)
2393{
2394 unsigned cpu = (unsigned long)hcpu;
2395
2396 switch (action) {
2397 case CPU_ONLINE:
2398 case CPU_ONLINE_FROZEN:
2399 printk(PFX "CPU %x online: Create Rx thread\n", cpu);
2400 bnx2fc_percpu_thread_create(cpu);
2401 break;
2402 case CPU_DEAD:
2403 case CPU_DEAD_FROZEN:
2404 printk(PFX "CPU %x offline: Remove Rx thread\n", cpu);
2405 bnx2fc_percpu_thread_destroy(cpu);
2406 break;
2407 default:
2408 break;
2409 }
2410 return NOTIFY_OK;
2411}
2412
2413/**
2414 * bnx2fc_mod_init - module init entry point
2415 *
2416 * Initialize driver wide global data structures, and register
2417 * with cnic module
2418 **/
2419static int __init bnx2fc_mod_init(void)
2420{
2421 struct fcoe_percpu_s *bg;
2422 struct task_struct *l2_thread;
2423 int rc = 0;
2424 unsigned int cpu = 0;
2425 struct bnx2fc_percpu_s *p;
2426
2427 printk(KERN_INFO PFX "%s", version);
2428
2429 /* register as a fcoe transport */
2430 rc = fcoe_transport_attach(&bnx2fc_transport);
2431 if (rc) {
2432 printk(KERN_ERR "failed to register an fcoe transport, check "
2433 "if libfcoe is loaded\n");
2434 goto out;
2435 }
2436
2437 INIT_LIST_HEAD(&adapter_list);
aea71a02 2438 INIT_LIST_HEAD(&if_list);
853e2bd2
BG
2439 mutex_init(&bnx2fc_dev_lock);
2440 adapter_count = 0;
2441
2442 /* Attach FC transport template */
2443 rc = bnx2fc_attach_transport();
2444 if (rc)
2445 goto detach_ft;
2446
2447 bnx2fc_wq = alloc_workqueue("bnx2fc", 0, 0);
2448 if (!bnx2fc_wq) {
2449 rc = -ENOMEM;
2450 goto release_bt;
2451 }
2452
2453 bg = &bnx2fc_global;
2454 skb_queue_head_init(&bg->fcoe_rx_list);
2455 l2_thread = kthread_create(bnx2fc_l2_rcv_thread,
2456 (void *)bg,
2457 "bnx2fc_l2_thread");
2458 if (IS_ERR(l2_thread)) {
2459 rc = PTR_ERR(l2_thread);
2460 goto free_wq;
2461 }
2462 wake_up_process(l2_thread);
2463 spin_lock_bh(&bg->fcoe_rx_list.lock);
2464 bg->thread = l2_thread;
2465 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2466
2467 for_each_possible_cpu(cpu) {
2468 p = &per_cpu(bnx2fc_percpu, cpu);
2469 INIT_LIST_HEAD(&p->work_list);
2470 spin_lock_init(&p->fp_work_lock);
2471 }
2472
2473 for_each_online_cpu(cpu) {
2474 bnx2fc_percpu_thread_create(cpu);
2475 }
2476
2477 /* Initialize per CPU interrupt thread */
2478 register_hotcpu_notifier(&bnx2fc_cpu_notifier);
2479
2480 cnic_register_driver(CNIC_ULP_FCOE, &bnx2fc_cnic_cb);
2481
2482 return 0;
2483
2484free_wq:
2485 destroy_workqueue(bnx2fc_wq);
2486release_bt:
2487 bnx2fc_release_transport();
2488detach_ft:
2489 fcoe_transport_detach(&bnx2fc_transport);
2490out:
2491 return rc;
2492}
2493
2494static void __exit bnx2fc_mod_exit(void)
2495{
2496 LIST_HEAD(to_be_deleted);
2497 struct bnx2fc_hba *hba, *next;
2498 struct fcoe_percpu_s *bg;
2499 struct task_struct *l2_thread;
2500 struct sk_buff *skb;
2501 unsigned int cpu = 0;
2502
2503 /*
2504 * NOTE: Since cnic calls register_driver routine rtnl_lock,
2505 * it will have higher precedence than bnx2fc_dev_lock.
2506 * unregister_device() cannot be called with bnx2fc_dev_lock
2507 * held.
2508 */
2509 mutex_lock(&bnx2fc_dev_lock);
2510 list_splice(&adapter_list, &to_be_deleted);
2511 INIT_LIST_HEAD(&adapter_list);
2512 adapter_count = 0;
2513 mutex_unlock(&bnx2fc_dev_lock);
2514
2515 /* Unregister with cnic */
aea71a02
BPG
2516 list_for_each_entry_safe(hba, next, &to_be_deleted, list) {
2517 list_del_init(&hba->list);
2518 printk(KERN_ERR PFX "MOD_EXIT:destroy hba = 0x%p\n",
2519 hba);
853e2bd2
BG
2520 bnx2fc_ulp_stop(hba);
2521 /* unregister cnic device */
2522 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED,
2523 &hba->reg_with_cnic))
aea71a02
BPG
2524 hba->cnic->unregister_device(hba->cnic,
2525 CNIC_ULP_FCOE);
2526 bnx2fc_hba_destroy(hba);
853e2bd2
BG
2527 }
2528 cnic_unregister_driver(CNIC_ULP_FCOE);
2529
2530 /* Destroy global thread */
2531 bg = &bnx2fc_global;
2532 spin_lock_bh(&bg->fcoe_rx_list.lock);
2533 l2_thread = bg->thread;
2534 bg->thread = NULL;
2535 while ((skb = __skb_dequeue(&bg->fcoe_rx_list)) != NULL)
2536 kfree_skb(skb);
2537
2538 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2539
2540 if (l2_thread)
2541 kthread_stop(l2_thread);
2542
2543 unregister_hotcpu_notifier(&bnx2fc_cpu_notifier);
2544
2545 /* Destroy per cpu threads */
2546 for_each_online_cpu(cpu) {
2547 bnx2fc_percpu_thread_destroy(cpu);
2548 }
2549
2550 destroy_workqueue(bnx2fc_wq);
2551 /*
2552 * detach from scsi transport
2553 * must happen after all destroys are done
2554 */
2555 bnx2fc_release_transport();
2556
2557 /* detach from fcoe transport */
2558 fcoe_transport_detach(&bnx2fc_transport);
2559}
2560
2561module_init(bnx2fc_mod_init);
2562module_exit(bnx2fc_mod_exit);
2563
8d55e507
RL
2564static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ = {
2565 .get_fcoe_ctlr_mode = fcoe_ctlr_get_fip_mode,
2566 .get_fcoe_ctlr_link_fail = bnx2fc_ctlr_get_lesb,
2567 .get_fcoe_ctlr_vlink_fail = bnx2fc_ctlr_get_lesb,
2568 .get_fcoe_ctlr_miss_fka = bnx2fc_ctlr_get_lesb,
2569 .get_fcoe_ctlr_symb_err = bnx2fc_ctlr_get_lesb,
2570 .get_fcoe_ctlr_err_block = bnx2fc_ctlr_get_lesb,
2571 .get_fcoe_ctlr_fcs_error = bnx2fc_ctlr_get_lesb,
2572
2573 .get_fcoe_fcf_selected = fcoe_fcf_get_selected,
2574 .get_fcoe_fcf_vlan_id = bnx2fc_fcf_get_vlan_id,
2575};
2576
853e2bd2
BG
2577static struct fc_function_template bnx2fc_transport_function = {
2578 .show_host_node_name = 1,
2579 .show_host_port_name = 1,
2580 .show_host_supported_classes = 1,
2581 .show_host_supported_fc4s = 1,
2582 .show_host_active_fc4s = 1,
2583 .show_host_maxframe_size = 1,
2584
2585 .show_host_port_id = 1,
2586 .show_host_supported_speeds = 1,
2587 .get_host_speed = fc_get_host_speed,
2588 .show_host_speed = 1,
2589 .show_host_port_type = 1,
2590 .get_host_port_state = fc_get_host_port_state,
2591 .show_host_port_state = 1,
2592 .show_host_symbolic_name = 1,
2593
2594 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2595 sizeof(struct bnx2fc_rport)),
2596 .show_rport_maxframe_size = 1,
2597 .show_rport_supported_classes = 1,
2598
2599 .show_host_fabric_name = 1,
2600 .show_starget_node_name = 1,
2601 .show_starget_port_name = 1,
2602 .show_starget_port_id = 1,
2603 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2604 .show_rport_dev_loss_tmo = 1,
2605 .get_fc_host_stats = bnx2fc_get_host_stats,
2606
2607 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2608
2609 .terminate_rport_io = fc_rport_terminate_io,
2610
2611 .vport_create = bnx2fc_vport_create,
2612 .vport_delete = bnx2fc_vport_destroy,
2613 .vport_disable = bnx2fc_vport_disable,
e9a5289c 2614 .bsg_request = fc_lport_bsg_request,
853e2bd2
BG
2615};
2616
2617static struct fc_function_template bnx2fc_vport_xport_function = {
2618 .show_host_node_name = 1,
2619 .show_host_port_name = 1,
2620 .show_host_supported_classes = 1,
2621 .show_host_supported_fc4s = 1,
2622 .show_host_active_fc4s = 1,
2623 .show_host_maxframe_size = 1,
2624
2625 .show_host_port_id = 1,
2626 .show_host_supported_speeds = 1,
2627 .get_host_speed = fc_get_host_speed,
2628 .show_host_speed = 1,
2629 .show_host_port_type = 1,
2630 .get_host_port_state = fc_get_host_port_state,
2631 .show_host_port_state = 1,
2632 .show_host_symbolic_name = 1,
2633
2634 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2635 sizeof(struct bnx2fc_rport)),
2636 .show_rport_maxframe_size = 1,
2637 .show_rport_supported_classes = 1,
2638
2639 .show_host_fabric_name = 1,
2640 .show_starget_node_name = 1,
2641 .show_starget_port_name = 1,
2642 .show_starget_port_id = 1,
2643 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2644 .show_rport_dev_loss_tmo = 1,
2645 .get_fc_host_stats = fc_get_host_stats,
2646 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2647 .terminate_rport_io = fc_rport_terminate_io,
e9a5289c 2648 .bsg_request = fc_lport_bsg_request,
853e2bd2
BG
2649};
2650
2651/**
2652 * scsi_host_template structure used while registering with SCSI-ml
2653 */
2654static struct scsi_host_template bnx2fc_shost_template = {
2655 .module = THIS_MODULE,
2656 .name = "Broadcom Offload FCoE Initiator",
2657 .queuecommand = bnx2fc_queuecommand,
2658 .eh_abort_handler = bnx2fc_eh_abort, /* abts */
2659 .eh_device_reset_handler = bnx2fc_eh_device_reset, /* lun reset */
2660 .eh_target_reset_handler = bnx2fc_eh_target_reset, /* tgt reset */
2661 .eh_host_reset_handler = fc_eh_host_reset,
2662 .slave_alloc = fc_slave_alloc,
2663 .change_queue_depth = fc_change_queue_depth,
2664 .change_queue_type = fc_change_queue_type,
2665 .this_id = -1,
2666 .cmd_per_lun = 3,
0ea5c275 2667 .can_queue = BNX2FC_CAN_QUEUE,
853e2bd2
BG
2668 .use_clustering = ENABLE_CLUSTERING,
2669 .sg_tablesize = BNX2FC_MAX_BDS_PER_CMD,
d450d778 2670 .max_sectors = 1024,
853e2bd2
BG
2671};
2672
2673static struct libfc_function_template bnx2fc_libfc_fcn_templ = {
2674 .frame_send = bnx2fc_xmit,
2675 .elsct_send = bnx2fc_elsct_send,
2676 .fcp_abort_io = bnx2fc_abort_io,
2677 .fcp_cleanup = bnx2fc_cleanup,
f72f6979 2678 .get_lesb = bnx2fc_get_lesb,
853e2bd2
BG
2679 .rport_event_callback = bnx2fc_rport_event_handler,
2680};
2681
2682/**
2683 * bnx2fc_cnic_cb - global template of bnx2fc - cnic driver interface
2684 * structure carrying callback function pointers
2685 */
2686static struct cnic_ulp_ops bnx2fc_cnic_cb = {
2687 .owner = THIS_MODULE,
2688 .cnic_init = bnx2fc_ulp_init,
2689 .cnic_exit = bnx2fc_ulp_exit,
2690 .cnic_start = bnx2fc_ulp_start,
2691 .cnic_stop = bnx2fc_ulp_stop,
2692 .indicate_kcqes = bnx2fc_indicate_kcqe,
2693 .indicate_netevent = bnx2fc_indicate_netevent,
2e499d3c 2694 .cnic_get_stats = bnx2fc_ulp_get_stats,
853e2bd2 2695};
This page took 0.29479 seconds and 5 git commands to generate.