blob: 72a82c5af760df67398081f7fa3283858ca7537d [file] [log] [blame]
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001/* 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 *
Bhanu Prakash Gollapudi9b35baa2011-07-27 11:32:13 -07006 * Copyright (c) 2008 - 2011 Broadcom Corporation
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08007 *
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;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -070018static struct list_head if_list;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080019static 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
Bhanu Prakash Gollapudieb47aa2c2012-06-07 02:19:37 -070025#define DRV_MODULE_RELDATE "Jun 04, 2012"
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080026
27
28static char version[] __devinitdata =
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;
Robert Love8d55e502012-05-22 19:06:26 -070057static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080058static struct fc_function_template bnx2fc_vport_xport_function;
59static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode);
Bhanu Prakash Gollapudieccdcd02011-08-24 18:56:42 -070060static void __bnx2fc_destroy(struct bnx2fc_interface *interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080061static 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
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -070067static void bnx2fc_start_disc(struct bnx2fc_interface *interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080068static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080069static 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -070075static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080076 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -070080static struct bnx2fc_interface *bnx2fc_interface_lookup(struct net_device
81 *phys_dev);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -070082static inline void bnx2fc_interface_put(struct bnx2fc_interface *interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080083static 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -070089static void bnx2fc_stop(struct bnx2fc_interface *interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080090static int __init bnx2fc_mod_init(void);
91static void __exit bnx2fc_mod_exit(void);
Robert Love8d55e502012-05-22 19:06:26 -070092static void bnx2fc_ctlr_get_lesb(struct fcoe_ctlr_device *ctlr_dev);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080093
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
Bhanu Prakash Gollapudif72f6972011-10-03 16:45:02 -0700104static 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
Robert Love8d55e502012-05-22 19:06:26 -0700123static 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
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800158static 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700205 struct bnx2fc_interface *interface = port->priv;
206 struct bnx2fc_hba *hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800207 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;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700283 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -0700284 struct fcoe_ctlr *ctlr;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700285 struct bnx2fc_hba *hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800286 struct fcoe_port *port;
287 struct fcoe_hdr *hp;
288 struct bnx2fc_rport *tgt;
Vasu Dev1bd49b42012-05-25 10:26:43 -0700289 struct fc_stats *stats;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800290 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700296 interface = port->priv;
Robert Lovefd8f8902012-05-22 19:06:16 -0700297 ctlr = bnx2fc_to_ctlr(interface);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700298 hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800299
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)) {
Robert Lovefd8f8902012-05-22 19:06:16 -0700310 if (!ctlr->sel_fcf) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800311 BNX2FC_HBA_DBG(lport, "FCF not selected yet!\n");
312 kfree_skb(skb);
313 return -EINVAL;
314 }
Robert Lovefd8f8902012-05-22 19:06:16 -0700315 if (fcoe_ctlr_els_send(ctlr, lport, skb))
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800316 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];
Cong Wang77dfce02011-11-25 23:14:23 +0800364 cp = kmap_atomic(skb_frag_page(frag)) + frag->page_offset;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800365 } 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)) {
Cong Wang77dfce02011-11-25 23:14:23 +0800373 kunmap_atomic(cp);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800374 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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700383 skb->dev = interface->netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800384
385 /* fill up mac and fcoe headers */
386 eh = eth_hdr(skb);
387 eh->h_proto = htons(ETH_P_FCOE);
Robert Lovefd8f8902012-05-22 19:06:16 -0700388 if (ctlr->map_dest)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800389 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
390 else
391 /* insert GW address */
Robert Lovefd8f8902012-05-22 19:06:16 -0700392 memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800393
Robert Lovefd8f8902012-05-22 19:06:16 -0700394 if (unlikely(ctlr->flogi_oxid != FC_XID_UNKNOWN))
395 memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800396 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 */
Vasu Dev1bd49b42012-05-25 10:26:43 -0700415 stats = per_cpu_ptr(lport->stats, get_cpu());
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800416 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;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700444 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -0700445 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800446 struct fc_frame_header *fh;
447 struct fcoe_rcv_info *fr;
448 struct fcoe_percpu_s *bg;
449 unsigned short oxid;
450
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700451 interface = container_of(ptype, struct bnx2fc_interface,
452 fcoe_packet_type);
Robert Lovefd8f8902012-05-22 19:06:16 -0700453 ctlr = bnx2fc_to_ctlr(interface);
454 lport = ctlr->lp;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800455
456 if (unlikely(lport == NULL)) {
Bhanu Prakash Gollapudib2a554f2011-06-27 23:30:53 -0700457 printk(KERN_ERR PFX "bnx2fc_rcv: lport is NULL\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800458 goto err;
459 }
460
461 if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) {
Bhanu Prakash Gollapudib2a554f2011-06-27 23:30:53 -0700462 printk(KERN_ERR PFX "bnx2fc_rcv: Wrong FC type frame\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800463 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;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800481
482 bg = &bnx2fc_global;
Neil Hormanfc05ab72012-03-09 14:50:13 -0800483 spin_lock(&bg->fcoe_rx_list.lock);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800484
485 __skb_queue_tail(&bg->fcoe_rx_list, skb);
486 if (bg->fcoe_rx_list.qlen == 1)
487 wake_up_process(bg->thread);
488
Neil Hormanfc05ab72012-03-09 14:50:13 -0800489 spin_unlock(&bg->fcoe_rx_list.lock);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800490
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();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800506 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 }
Bhanu Gollapudifee78712011-03-21 18:51:13 -0700512 __set_current_state(TASK_INTERRUPTIBLE);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800513 spin_unlock_bh(&bg->fcoe_rx_list.lock);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800514 }
Bhanu Gollapudifee78712011-03-21 18:51:13 -0700515 __set_current_state(TASK_RUNNING);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800516 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;
Vasu Dev1bd49b42012-05-25 10:26:43 -0700525 struct fc_stats *stats;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800526 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)) {
Bhanu Prakash Gollapudib2a554f2011-06-27 23:30:53 -0700538 printk(KERN_ERR PFX "Invalid lport struct\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800539 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
Vasu Dev1bd49b42012-05-25 10:26:43 -0700554 stats = per_cpu_ptr(lport->stats, get_cpu());
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800555 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 }
Bhanu Prakash Gollapudi3f8744d2011-08-04 17:38:48 -0700608
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
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800616 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();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800645 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 }
Bhanu Gollapudifee78712011-03-21 18:51:13 -0700658 __set_current_state(TASK_INTERRUPTIBLE);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800659 spin_unlock_bh(&p->fp_work_lock);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800660 }
Bhanu Gollapudifee78712011-03-21 18:51:13 -0700661 __set_current_state(TASK_RUNNING);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800662
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);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700671 struct bnx2fc_interface *interface = port->priv;
672 struct bnx2fc_hba *hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800673 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 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300690 bnx2fc_stats->invalid_crc_count += fw_stats->rx_stat2.fc_crc_cnt;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800691 bnx2fc_stats->tx_frames += fw_stats->tx_stat.fcoe_tx_pkt_cnt;
692 bnx2fc_stats->tx_words += (fw_stats->tx_stat.fcoe_tx_byte_cnt) / 4;
693 bnx2fc_stats->rx_frames += fw_stats->rx_stat0.fcoe_rx_pkt_cnt;
694 bnx2fc_stats->rx_words += (fw_stats->rx_stat0.fcoe_rx_byte_cnt) / 4;
695
696 bnx2fc_stats->dumped_frames = 0;
697 bnx2fc_stats->lip_count = 0;
698 bnx2fc_stats->nos_count = 0;
699 bnx2fc_stats->loss_of_sync_count = 0;
700 bnx2fc_stats->loss_of_signal_count = 0;
701 bnx2fc_stats->prim_seq_protocol_err_count = 0;
702
703 return bnx2fc_stats;
704}
705
706static int bnx2fc_shost_config(struct fc_lport *lport, struct device *dev)
707{
708 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700709 struct bnx2fc_interface *interface = port->priv;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800710 struct Scsi_Host *shost = lport->host;
711 int rc = 0;
712
713 shost->max_cmd_len = BNX2FC_MAX_CMD_LEN;
714 shost->max_lun = BNX2FC_MAX_LUN;
715 shost->max_id = BNX2FC_MAX_FCP_TGT;
716 shost->max_channel = 0;
717 if (lport->vport)
718 shost->transportt = bnx2fc_vport_xport_template;
719 else
720 shost->transportt = bnx2fc_transport_template;
721
722 /* Add the new host to SCSI-ml */
723 rc = scsi_add_host(lport->host, dev);
724 if (rc) {
725 printk(KERN_ERR PFX "Error on scsi_add_host\n");
726 return rc;
727 }
728 if (!lport->vport)
729 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
730 sprintf(fc_host_symbolic_name(lport->host), "%s v%s over %s",
731 BNX2FC_NAME, BNX2FC_VERSION,
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700732 interface->netdev->name);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800733
734 return 0;
735}
736
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800737static void bnx2fc_link_speed_update(struct fc_lport *lport)
738{
739 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700740 struct bnx2fc_interface *interface = port->priv;
741 struct net_device *netdev = interface->netdev;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000742 struct ethtool_cmd ecmd;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800743
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000744 if (!__ethtool_get_settings(netdev, &ecmd)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800745 lport->link_supported_speeds &=
746 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
747 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
748 SUPPORTED_1000baseT_Full))
749 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
750 if (ecmd.supported & SUPPORTED_10000baseT_Full)
751 lport->link_supported_speeds |= FC_PORTSPEED_10GBIT;
752
David Decotigny8ae6dac2011-04-27 18:32:38 +0000753 switch (ethtool_cmd_speed(&ecmd)) {
754 case SPEED_1000:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800755 lport->link_speed = FC_PORTSPEED_1GBIT;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000756 break;
Bhanu Prakash Gollapudia4dc08c2011-05-27 11:47:25 -0700757 case SPEED_2500:
758 lport->link_speed = FC_PORTSPEED_2GBIT;
759 break;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000760 case SPEED_10000:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800761 lport->link_speed = FC_PORTSPEED_10GBIT;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000762 break;
763 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800764 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800765}
766static int bnx2fc_link_ok(struct fc_lport *lport)
767{
768 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700769 struct bnx2fc_interface *interface = port->priv;
770 struct bnx2fc_hba *hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800771 struct net_device *dev = hba->phys_dev;
772 int rc = 0;
773
774 if ((dev->flags & IFF_UP) && netif_carrier_ok(dev))
775 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
776 else {
777 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
778 rc = -1;
779 }
780 return rc;
781}
782
783/**
784 * bnx2fc_get_link_state - get network link state
785 *
786 * @hba: adapter instance pointer
787 *
788 * updates adapter structure flag based on netdev state
789 */
790void bnx2fc_get_link_state(struct bnx2fc_hba *hba)
791{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700792 if (test_bit(__LINK_STATE_NOCARRIER, &hba->phys_dev->state))
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800793 set_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
794 else
795 clear_bit(ADAPTER_STATE_LINK_DOWN, &hba->adapter_state);
796}
797
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -0700798static int bnx2fc_net_config(struct fc_lport *lport, struct net_device *netdev)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800799{
800 struct bnx2fc_hba *hba;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700801 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -0700802 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800803 struct fcoe_port *port;
804 u64 wwnn, wwpn;
805
806 port = lport_priv(lport);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700807 interface = port->priv;
Robert Lovefd8f8902012-05-22 19:06:16 -0700808 ctlr = bnx2fc_to_ctlr(interface);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700809 hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800810
811 /* require support for get_pauseparam ethtool op. */
812 if (!hba->phys_dev->ethtool_ops ||
813 !hba->phys_dev->ethtool_ops->get_pauseparam)
814 return -EOPNOTSUPP;
815
Bhanu Gollapudi1294bfe2011-03-17 17:13:34 -0700816 if (fc_set_mfs(lport, BNX2FC_MFS))
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800817 return -EINVAL;
818
819 skb_queue_head_init(&port->fcoe_pending_queue);
820 port->fcoe_pending_queue_active = 0;
821 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long) lport);
822
823 bnx2fc_link_speed_update(lport);
824
825 if (!lport->vport) {
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -0700826 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
Robert Lovefd8f8902012-05-22 19:06:16 -0700827 wwnn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -0700828 1, 0);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800829 BNX2FC_HBA_DBG(lport, "WWNN = 0x%llx\n", wwnn);
830 fc_set_wwnn(lport, wwnn);
831
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -0700832 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
Robert Lovefd8f8902012-05-22 19:06:16 -0700833 wwpn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -0700834 2, 0);
835
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800836 BNX2FC_HBA_DBG(lport, "WWPN = 0x%llx\n", wwpn);
837 fc_set_wwpn(lport, wwpn);
838 }
839
840 return 0;
841}
842
843static void bnx2fc_destroy_timer(unsigned long data)
844{
845 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)data;
846
Bhanu Prakash Gollapudicd703ae2011-08-04 17:38:43 -0700847 printk(KERN_ERR PFX "ERROR:bnx2fc_destroy_timer - "
848 "Destroy compl not received!!\n");
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700849 set_bit(BNX2FC_FLAG_DESTROY_CMPL, &hba->flags);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800850 wake_up_interruptible(&hba->destroy_wait);
851}
852
853/**
854 * bnx2fc_indicate_netevent - Generic netdev event handler
855 *
856 * @context: adapter structure pointer
857 * @event: event type
Michael Chan415199f2011-07-20 14:55:24 +0000858 * @vlan_id: vlan id - associated vlan id with this event
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800859 *
860 * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -0700861 * NETDEV_CHANGE_MTU events. Handle NETDEV_UNREGISTER only for vlans.
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800862 */
Michael Chan415199f2011-07-20 14:55:24 +0000863static void bnx2fc_indicate_netevent(void *context, unsigned long event,
864 u16 vlan_id)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800865{
866 struct bnx2fc_hba *hba = (struct bnx2fc_hba *)context;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700867 struct fc_lport *lport;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800868 struct fc_lport *vport;
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -0700869 struct bnx2fc_interface *interface, *tmp;
Robert Lovefd8f8902012-05-22 19:06:16 -0700870 struct fcoe_ctlr *ctlr;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700871 int wait_for_upload = 0;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800872 u32 link_possible = 1;
873
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -0700874 if (vlan_id != 0 && event != NETDEV_UNREGISTER)
Michael Chan415199f2011-07-20 14:55:24 +0000875 return;
876
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800877 switch (event) {
878 case NETDEV_UP:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800879 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state))
880 printk(KERN_ERR "indicate_netevent: "\
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700881 "hba is not UP!!\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800882 break;
883
884 case NETDEV_DOWN:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800885 clear_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
886 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
887 link_possible = 0;
888 break;
889
890 case NETDEV_GOING_DOWN:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800891 set_bit(ADAPTER_STATE_GOING_DOWN, &hba->adapter_state);
892 link_possible = 0;
893 break;
894
895 case NETDEV_CHANGE:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800896 break;
897
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -0700898 case NETDEV_UNREGISTER:
899 if (!vlan_id)
900 return;
901 mutex_lock(&bnx2fc_dev_lock);
902 list_for_each_entry_safe(interface, tmp, &if_list, list) {
Nithin Nayak Sujir26b29822011-08-30 15:54:50 -0700903 if (interface->hba == hba &&
904 interface->vlan_id == (vlan_id & VLAN_VID_MASK))
905 __bnx2fc_destroy(interface);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -0700906 }
907 mutex_unlock(&bnx2fc_dev_lock);
908 return;
909
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800910 default:
911 printk(KERN_ERR PFX "Unkonwn netevent %ld", event);
912 return;
913 }
914
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700915 mutex_lock(&bnx2fc_dev_lock);
916 list_for_each_entry(interface, &if_list, list) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800917
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700918 if (interface->hba != hba)
919 continue;
920
Robert Lovefd8f8902012-05-22 19:06:16 -0700921 ctlr = bnx2fc_to_ctlr(interface);
922 lport = ctlr->lp;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700923 BNX2FC_HBA_DBG(lport, "netevent handler - event=%s %ld\n",
924 interface->netdev->name, event);
925
926 bnx2fc_link_speed_update(lport);
927
928 if (link_possible && !bnx2fc_link_ok(lport)) {
Bhanu Prakash Gollapudic7806732011-08-30 15:54:47 -0700929 /* Reset max recv frame size to default */
930 fc_set_mfs(lport, BNX2FC_MFS);
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -0700931 /*
932 * ctlr link up will only be handled during
933 * enable to avoid sending discovery solicitation
934 * on a stale vlan
935 */
Bhanu Prakash Gollapudifd8fa902011-10-03 16:45:00 -0700936 if (interface->enabled)
Robert Lovefd8f8902012-05-22 19:06:16 -0700937 fcoe_ctlr_link_up(ctlr);
938 } else if (fcoe_ctlr_link_down(ctlr)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800939 mutex_lock(&lport->lp_mutex);
940 list_for_each_entry(vport, &lport->vports, list)
941 fc_host_port_type(vport->host) =
942 FC_PORTTYPE_UNKNOWN;
943 mutex_unlock(&lport->lp_mutex);
944 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
Vasu Dev1bd49b42012-05-25 10:26:43 -0700945 per_cpu_ptr(lport->stats,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800946 get_cpu())->LinkFailureCount++;
947 put_cpu();
948 fcoe_clean_pending_queue(lport);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700949 wait_for_upload = 1;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800950 }
951 }
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700952 mutex_unlock(&bnx2fc_dev_lock);
953
954 if (wait_for_upload) {
955 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
956 init_waitqueue_head(&hba->shutdown_wait);
957 BNX2FC_MISC_DBG("indicate_netevent "
958 "num_ofld_sess = %d\n",
959 hba->num_ofld_sess);
960 hba->wait_for_link_down = 1;
961 wait_event_interruptible(hba->shutdown_wait,
962 (hba->num_ofld_sess == 0));
963 BNX2FC_MISC_DBG("wakeup - num_ofld_sess = %d\n",
964 hba->num_ofld_sess);
965 hba->wait_for_link_down = 0;
966
967 if (signal_pending(current))
968 flush_signals(current);
969 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800970}
971
972static int bnx2fc_libfc_config(struct fc_lport *lport)
973{
974
975 /* Set the function pointers set by bnx2fc driver */
976 memcpy(&lport->tt, &bnx2fc_libfc_fcn_templ,
977 sizeof(struct libfc_function_template));
978 fc_elsct_init(lport);
979 fc_exch_init(lport);
980 fc_rport_init(lport);
981 fc_disc_init(lport);
982 return 0;
983}
984
985static int bnx2fc_em_config(struct fc_lport *lport)
986{
Bhanu Prakash Gollapudi7d742f62012-01-23 18:00:48 -0800987 int max_xid;
988
989 if (nr_cpu_ids <= 2)
990 max_xid = FCOE_XIDS_PER_CPU;
991 else
992 max_xid = FCOE_MAX_XID;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800993 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, FCOE_MIN_XID,
Bhanu Prakash Gollapudi7d742f62012-01-23 18:00:48 -0800994 max_xid, NULL)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800995 printk(KERN_ERR PFX "em_config:fc_exch_mgr_alloc failed\n");
996 return -ENOMEM;
997 }
998
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800999 return 0;
1000}
1001
1002static int bnx2fc_lport_config(struct fc_lport *lport)
1003{
1004 lport->link_up = 0;
1005 lport->qfull = 0;
Bhanu Prakash Gollapudi44c570b2012-01-23 18:00:47 -08001006 lport->max_retry_count = BNX2FC_MAX_RETRY_CNT;
1007 lport->max_rport_retry_count = BNX2FC_MAX_RPORT_RETRY_CNT;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001008 lport->e_d_tov = 2 * 1000;
1009 lport->r_a_tov = 10 * 1000;
1010
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001011 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
1012 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001013 lport->does_npiv = 1;
1014
1015 memset(&lport->rnid_gen, 0, sizeof(struct fc_els_rnid_gen));
1016 lport->rnid_gen.rnid_atype = BNX2FC_RNID_HBA;
1017
1018 /* alloc stats structure */
1019 if (fc_lport_init_stats(lport))
1020 return -ENOMEM;
1021
1022 /* Finish fc_lport configuration */
1023 fc_lport_config(lport);
1024
1025 return 0;
1026}
1027
1028/**
1029 * bnx2fc_fip_recv - handle a received FIP frame.
1030 *
1031 * @skb: the received skb
1032 * @dev: associated &net_device
1033 * @ptype: the &packet_type structure which was used to register this handler.
1034 * @orig_dev: original receive &net_device, in case @ dev is a bond.
1035 *
1036 * Returns: 0 for success
1037 */
1038static int bnx2fc_fip_recv(struct sk_buff *skb, struct net_device *dev,
1039 struct packet_type *ptype,
1040 struct net_device *orig_dev)
1041{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001042 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001043 struct fcoe_ctlr *ctlr;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001044 interface = container_of(ptype, struct bnx2fc_interface,
1045 fip_packet_type);
Robert Lovefd8f8902012-05-22 19:06:16 -07001046 ctlr = bnx2fc_to_ctlr(interface);
1047 fcoe_ctlr_recv(ctlr, skb);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001048 return 0;
1049}
1050
1051/**
1052 * bnx2fc_update_src_mac - Update Ethernet MAC filters.
1053 *
1054 * @fip: FCoE controller.
1055 * @old: Unicast MAC address to delete if the MAC is non-zero.
1056 * @new: Unicast MAC address to add.
1057 *
1058 * Remove any previously-set unicast MAC filter.
1059 * Add secondary FCoE MAC address filter for our OUI.
1060 */
1061static void bnx2fc_update_src_mac(struct fc_lport *lport, u8 *addr)
1062{
1063 struct fcoe_port *port = lport_priv(lport);
1064
1065 memcpy(port->data_src_addr, addr, ETH_ALEN);
1066}
1067
1068/**
1069 * bnx2fc_get_src_mac - return the ethernet source address for an lport
1070 *
1071 * @lport: libfc port
1072 */
1073static u8 *bnx2fc_get_src_mac(struct fc_lport *lport)
1074{
1075 struct fcoe_port *port;
1076
1077 port = (struct fcoe_port *)lport_priv(lport);
1078 return port->data_src_addr;
1079}
1080
1081/**
1082 * bnx2fc_fip_send - send an Ethernet-encapsulated FIP frame.
1083 *
1084 * @fip: FCoE controller.
1085 * @skb: FIP Packet.
1086 */
1087static void bnx2fc_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
1088{
1089 skb->dev = bnx2fc_from_ctlr(fip)->netdev;
1090 dev_queue_xmit(skb);
1091}
1092
1093static int bnx2fc_vport_create(struct fc_vport *vport, bool disabled)
1094{
1095 struct Scsi_Host *shost = vport_to_shost(vport);
1096 struct fc_lport *n_port = shost_priv(shost);
1097 struct fcoe_port *port = lport_priv(n_port);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001098 struct bnx2fc_interface *interface = port->priv;
1099 struct net_device *netdev = interface->netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001100 struct fc_lport *vn_port;
Bhanu Prakash Gollapudi861efc52011-08-04 17:38:51 -07001101 int rc;
1102 char buf[32];
1103
1104 rc = fcoe_validate_vport_create(vport);
1105 if (rc) {
1106 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
1107 printk(KERN_ERR PFX "Failed to create vport, "
1108 "WWPN (0x%s) already exists\n",
1109 buf);
1110 return rc;
1111 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001112
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001113 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001114 printk(KERN_ERR PFX "vn ports cannot be created on"
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001115 "this interface\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001116 return -EIO;
1117 }
Jiri Pirko4bc71cb2011-09-03 03:34:30 +00001118 rtnl_lock();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001119 mutex_lock(&bnx2fc_dev_lock);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001120 vn_port = bnx2fc_if_create(interface, &vport->dev, 1);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001121 mutex_unlock(&bnx2fc_dev_lock);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +00001122 rtnl_unlock();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001123
1124 if (IS_ERR(vn_port)) {
1125 printk(KERN_ERR PFX "bnx2fc_vport_create (%s) failed\n",
1126 netdev->name);
1127 return -EIO;
1128 }
1129
1130 if (disabled) {
1131 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1132 } else {
1133 vn_port->boot_time = jiffies;
1134 fc_lport_init(vn_port);
1135 fc_fabric_login(vn_port);
1136 fc_vport_setlink(vn_port);
1137 }
1138 return 0;
1139}
1140
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001141static void bnx2fc_free_vport(struct bnx2fc_hba *hba, struct fc_lport *lport)
1142{
1143 struct bnx2fc_lport *blport, *tmp;
1144
1145 spin_lock_bh(&hba->hba_lock);
1146 list_for_each_entry_safe(blport, tmp, &hba->vports, list) {
1147 if (blport->lport == lport) {
1148 list_del(&blport->list);
1149 kfree(blport);
1150 }
1151 }
1152 spin_unlock_bh(&hba->hba_lock);
1153}
1154
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001155static int bnx2fc_vport_destroy(struct fc_vport *vport)
1156{
1157 struct Scsi_Host *shost = vport_to_shost(vport);
1158 struct fc_lport *n_port = shost_priv(shost);
1159 struct fc_lport *vn_port = vport->dd_data;
1160 struct fcoe_port *port = lport_priv(vn_port);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001161 struct bnx2fc_interface *interface = port->priv;
Bhanu Prakash Gollapudicdf54662011-08-04 17:38:39 -07001162 struct fc_lport *v_port;
1163 bool found = false;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001164
1165 mutex_lock(&n_port->lp_mutex);
Bhanu Prakash Gollapudicdf54662011-08-04 17:38:39 -07001166 list_for_each_entry(v_port, &n_port->vports, list)
1167 if (v_port->vport == vport) {
1168 found = true;
1169 break;
1170 }
1171
1172 if (!found) {
1173 mutex_unlock(&n_port->lp_mutex);
1174 return -ENOENT;
1175 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001176 list_del(&vn_port->list);
1177 mutex_unlock(&n_port->lp_mutex);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001178 bnx2fc_free_vport(interface->hba, port->lport);
1179 bnx2fc_port_shutdown(port->lport);
1180 bnx2fc_interface_put(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001181 queue_work(bnx2fc_wq, &port->destroy_work);
1182 return 0;
1183}
1184
1185static int bnx2fc_vport_disable(struct fc_vport *vport, bool disable)
1186{
1187 struct fc_lport *lport = vport->dd_data;
1188
1189 if (disable) {
1190 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1191 fc_fabric_logoff(lport);
1192 } else {
1193 lport->boot_time = jiffies;
1194 fc_fabric_login(lport);
1195 fc_vport_setlink(lport);
1196 }
1197 return 0;
1198}
1199
1200
Bhanu Prakash Gollapudi776cebc2011-08-04 17:38:40 -07001201static int bnx2fc_interface_setup(struct bnx2fc_interface *interface)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001202{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001203 struct net_device *netdev = interface->netdev;
1204 struct net_device *physdev = interface->hba->phys_dev;
Robert Lovefd8f8902012-05-22 19:06:16 -07001205 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001206 struct netdev_hw_addr *ha;
1207 int sel_san_mac = 0;
1208
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001209 /* setup Source MAC Address */
1210 rcu_read_lock();
1211 for_each_dev_addr(physdev, ha) {
1212 BNX2FC_MISC_DBG("net_config: ha->type = %d, fip_mac = ",
1213 ha->type);
1214 printk(KERN_INFO "%2x:%2x:%2x:%2x:%2x:%2x\n", ha->addr[0],
1215 ha->addr[1], ha->addr[2], ha->addr[3],
1216 ha->addr[4], ha->addr[5]);
1217
1218 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
1219 (is_valid_ether_addr(ha->addr))) {
Robert Lovefd8f8902012-05-22 19:06:16 -07001220 memcpy(ctlr->ctl_src_addr, ha->addr,
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001221 ETH_ALEN);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001222 sel_san_mac = 1;
1223 BNX2FC_MISC_DBG("Found SAN MAC\n");
1224 }
1225 }
1226 rcu_read_unlock();
1227
1228 if (!sel_san_mac)
1229 return -ENODEV;
1230
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001231 interface->fip_packet_type.func = bnx2fc_fip_recv;
1232 interface->fip_packet_type.type = htons(ETH_P_FIP);
1233 interface->fip_packet_type.dev = netdev;
1234 dev_add_pack(&interface->fip_packet_type);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001235
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001236 interface->fcoe_packet_type.func = bnx2fc_rcv;
1237 interface->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
1238 interface->fcoe_packet_type.dev = netdev;
1239 dev_add_pack(&interface->fcoe_packet_type);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001240
1241 return 0;
1242}
1243
1244static int bnx2fc_attach_transport(void)
1245{
1246 bnx2fc_transport_template =
1247 fc_attach_transport(&bnx2fc_transport_function);
1248
1249 if (bnx2fc_transport_template == NULL) {
1250 printk(KERN_ERR PFX "Failed to attach FC transport\n");
1251 return -ENODEV;
1252 }
1253
1254 bnx2fc_vport_xport_template =
1255 fc_attach_transport(&bnx2fc_vport_xport_function);
1256 if (bnx2fc_vport_xport_template == NULL) {
1257 printk(KERN_ERR PFX
1258 "Failed to attach FC transport for vport\n");
1259 fc_release_transport(bnx2fc_transport_template);
1260 bnx2fc_transport_template = NULL;
1261 return -ENODEV;
1262 }
1263 return 0;
1264}
1265static void bnx2fc_release_transport(void)
1266{
1267 fc_release_transport(bnx2fc_transport_template);
1268 fc_release_transport(bnx2fc_vport_xport_template);
1269 bnx2fc_transport_template = NULL;
1270 bnx2fc_vport_xport_template = NULL;
1271}
1272
1273static void bnx2fc_interface_release(struct kref *kref)
1274{
Robert Love8d55e502012-05-22 19:06:26 -07001275 struct fcoe_ctlr_device *ctlr_dev;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001276 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001277 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001278 struct net_device *netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001279
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001280 interface = container_of(kref, struct bnx2fc_interface, kref);
Nithin Nayak Sujir068bdce2011-04-25 12:30:09 -07001281 BNX2FC_MISC_DBG("Interface is being released\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001282
Robert Lovefd8f8902012-05-22 19:06:16 -07001283 ctlr = bnx2fc_to_ctlr(interface);
Robert Love8d55e502012-05-22 19:06:26 -07001284 ctlr_dev = fcoe_ctlr_to_ctlr_dev(ctlr);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001285 netdev = interface->netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001286
1287 /* tear-down FIP controller */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001288 if (test_and_clear_bit(BNX2FC_CTLR_INIT_DONE, &interface->if_flags))
Robert Lovefd8f8902012-05-22 19:06:16 -07001289 fcoe_ctlr_destroy(ctlr);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001290
Robert Love8d55e502012-05-22 19:06:26 -07001291 fcoe_ctlr_device_delete(ctlr_dev);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001292
1293 dev_put(netdev);
1294 module_put(THIS_MODULE);
1295}
1296
1297static inline void bnx2fc_interface_get(struct bnx2fc_interface *interface)
1298{
1299 kref_get(&interface->kref);
1300}
1301
1302static inline void bnx2fc_interface_put(struct bnx2fc_interface *interface)
1303{
1304 kref_put(&interface->kref, bnx2fc_interface_release);
1305}
1306static void bnx2fc_hba_destroy(struct bnx2fc_hba *hba)
1307{
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001308 /* Free the command manager */
1309 if (hba->cmd_mgr) {
1310 bnx2fc_cmd_mgr_free(hba->cmd_mgr);
1311 hba->cmd_mgr = NULL;
1312 }
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001313 kfree(hba->tgt_ofld_list);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001314 bnx2fc_unbind_pcidev(hba);
1315 kfree(hba);
1316}
1317
1318/**
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001319 * bnx2fc_hba_create - create a new bnx2fc hba
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001320 *
1321 * @cnic: pointer to cnic device
1322 *
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001323 * Creates a new FCoE hba on the given device.
1324 *
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001325 */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001326static struct bnx2fc_hba *bnx2fc_hba_create(struct cnic_dev *cnic)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001327{
1328 struct bnx2fc_hba *hba;
1329 int rc;
1330
1331 hba = kzalloc(sizeof(*hba), GFP_KERNEL);
1332 if (!hba) {
1333 printk(KERN_ERR PFX "Unable to allocate hba structure\n");
1334 return NULL;
1335 }
1336 spin_lock_init(&hba->hba_lock);
1337 mutex_init(&hba->hba_mutex);
1338
1339 hba->cnic = cnic;
1340 rc = bnx2fc_bind_pcidev(hba);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001341 if (rc) {
1342 printk(KERN_ERR PFX "create_adapter: bind error\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001343 goto bind_err;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001344 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001345 hba->phys_dev = cnic->netdev;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001346 hba->next_conn_id = 0;
1347
1348 hba->tgt_ofld_list =
1349 kzalloc(sizeof(struct bnx2fc_rport *) * BNX2FC_NUM_MAX_SESS,
1350 GFP_KERNEL);
1351 if (!hba->tgt_ofld_list) {
1352 printk(KERN_ERR PFX "Unable to allocate tgt offload list\n");
1353 goto tgtofld_err;
1354 }
1355
1356 hba->num_ofld_sess = 0;
1357
1358 hba->cmd_mgr = bnx2fc_cmd_mgr_alloc(hba, BNX2FC_MIN_XID,
1359 BNX2FC_MAX_XID);
1360 if (!hba->cmd_mgr) {
1361 printk(KERN_ERR PFX "em_config:bnx2fc_cmd_mgr_alloc failed\n");
1362 goto cmgr_err;
1363 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001364
1365 init_waitqueue_head(&hba->shutdown_wait);
1366 init_waitqueue_head(&hba->destroy_wait);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001367 INIT_LIST_HEAD(&hba->vports);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001368
1369 return hba;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001370
1371cmgr_err:
1372 kfree(hba->tgt_ofld_list);
1373tgtofld_err:
1374 bnx2fc_unbind_pcidev(hba);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001375bind_err:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001376 kfree(hba);
1377 return NULL;
1378}
1379
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001380struct bnx2fc_interface *bnx2fc_interface_create(struct bnx2fc_hba *hba,
1381 struct net_device *netdev,
1382 enum fip_state fip_mode)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001383{
Robert Love8d55e502012-05-22 19:06:26 -07001384 struct fcoe_ctlr_device *ctlr_dev;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001385 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001386 struct fcoe_ctlr *ctlr;
1387 int size;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001388 int rc = 0;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001389
Robert Lovefd8f8902012-05-22 19:06:16 -07001390 size = (sizeof(*interface) + sizeof(struct fcoe_ctlr));
Robert Love8d55e502012-05-22 19:06:26 -07001391 ctlr_dev = fcoe_ctlr_device_add(&netdev->dev, &bnx2fc_fcoe_sysfs_templ,
1392 size);
1393 if (!ctlr_dev) {
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001394 printk(KERN_ERR PFX "Unable to allocate interface structure\n");
1395 return NULL;
1396 }
Robert Love8d55e502012-05-22 19:06:26 -07001397 ctlr = fcoe_ctlr_device_priv(ctlr_dev);
Robert Lovefd8f8902012-05-22 19:06:16 -07001398 interface = fcoe_ctlr_priv(ctlr);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001399 dev_hold(netdev);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001400 kref_init(&interface->kref);
1401 interface->hba = hba;
1402 interface->netdev = netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001403
1404 /* Initialize FIP */
Robert Lovefd8f8902012-05-22 19:06:16 -07001405 fcoe_ctlr_init(ctlr, fip_mode);
1406 ctlr->send = bnx2fc_fip_send;
1407 ctlr->update_mac = bnx2fc_update_src_mac;
1408 ctlr->get_src_addr = bnx2fc_get_src_mac;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001409 set_bit(BNX2FC_CTLR_INIT_DONE, &interface->if_flags);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001410
Bhanu Prakash Gollapudi776cebc2011-08-04 17:38:40 -07001411 rc = bnx2fc_interface_setup(interface);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001412 if (!rc)
1413 return interface;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001414
Robert Lovefd8f8902012-05-22 19:06:16 -07001415 fcoe_ctlr_destroy(ctlr);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001416 dev_put(netdev);
Robert Love8d55e502012-05-22 19:06:26 -07001417 fcoe_ctlr_device_delete(ctlr_dev);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001418 return NULL;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001419}
1420
1421/**
1422 * bnx2fc_if_create - Create FCoE instance on a given interface
1423 *
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001424 * @interface: FCoE interface to create a local port on
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001425 * @parent: Device pointer to be the parent in sysfs for the SCSI host
1426 * @npiv: Indicates if the port is vport or not
1427 *
1428 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
1429 *
1430 * Returns: Allocated fc_lport or an error pointer
1431 */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001432static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001433 struct device *parent, int npiv)
1434{
Robert Lovefd8f8902012-05-22 19:06:16 -07001435 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
Vasu Dev134a4e22011-04-28 15:55:44 -07001436 struct fc_lport *lport, *n_port;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001437 struct fcoe_port *port;
1438 struct Scsi_Host *shost;
1439 struct fc_vport *vport = dev_to_vport(parent);
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001440 struct bnx2fc_lport *blport;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001441 struct bnx2fc_hba *hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001442 int rc = 0;
1443
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001444 blport = kzalloc(sizeof(struct bnx2fc_lport), GFP_KERNEL);
1445 if (!blport) {
Robert Lovefd8f8902012-05-22 19:06:16 -07001446 BNX2FC_HBA_DBG(ctlr->lp, "Unable to alloc blport\n");
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001447 return NULL;
1448 }
1449
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001450 /* Allocate Scsi_Host structure */
Vasu Dev134a4e22011-04-28 15:55:44 -07001451 if (!npiv)
1452 lport = libfc_host_alloc(&bnx2fc_shost_template, sizeof(*port));
1453 else
1454 lport = libfc_vport_create(vport, sizeof(*port));
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001455
1456 if (!lport) {
1457 printk(KERN_ERR PFX "could not allocate scsi host structure\n");
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001458 goto free_blport;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001459 }
1460 shost = lport->host;
1461 port = lport_priv(lport);
1462 port->lport = lport;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001463 port->priv = interface;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001464 INIT_WORK(&port->destroy_work, bnx2fc_destroy_work);
1465
1466 /* Configure fcoe_port */
1467 rc = bnx2fc_lport_config(lport);
1468 if (rc)
1469 goto lp_config_err;
1470
1471 if (npiv) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001472 printk(KERN_ERR PFX "Setting vport names, 0x%llX 0x%llX\n",
1473 vport->node_name, vport->port_name);
1474 fc_set_wwnn(lport, vport->node_name);
1475 fc_set_wwpn(lport, vport->port_name);
1476 }
1477 /* Configure netdev and networking properties of the lport */
Bhanu Prakash Gollapudi52439602011-08-04 17:38:50 -07001478 rc = bnx2fc_net_config(lport, interface->netdev);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001479 if (rc) {
1480 printk(KERN_ERR PFX "Error on bnx2fc_net_config\n");
1481 goto lp_config_err;
1482 }
1483
1484 rc = bnx2fc_shost_config(lport, parent);
1485 if (rc) {
1486 printk(KERN_ERR PFX "Couldnt configure shost for %s\n",
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001487 interface->netdev->name);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001488 goto lp_config_err;
1489 }
1490
1491 /* Initialize the libfc library */
1492 rc = bnx2fc_libfc_config(lport);
1493 if (rc) {
1494 printk(KERN_ERR PFX "Couldnt configure libfc\n");
1495 goto shost_err;
1496 }
1497 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
1498
1499 /* Allocate exchange manager */
Vasu Dev134a4e22011-04-28 15:55:44 -07001500 if (!npiv)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001501 rc = bnx2fc_em_config(lport);
Vasu Dev134a4e22011-04-28 15:55:44 -07001502 else {
1503 shost = vport_to_shost(vport);
1504 n_port = shost_priv(shost);
1505 rc = fc_exch_mgr_list_clone(n_port, lport);
1506 }
1507
1508 if (rc) {
1509 printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
1510 goto shost_err;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001511 }
1512
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001513 bnx2fc_interface_get(interface);
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001514
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001515 hba = interface->hba;
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001516 spin_lock_bh(&hba->hba_lock);
1517 blport->lport = lport;
1518 list_add_tail(&blport->list, &hba->vports);
1519 spin_unlock_bh(&hba->hba_lock);
1520
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001521 return lport;
1522
1523shost_err:
1524 scsi_remove_host(shost);
1525lp_config_err:
1526 scsi_host_put(lport->host);
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -07001527free_blport:
1528 kfree(blport);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001529 return NULL;
1530}
1531
Bhanu Prakash Gollapudi013068f2011-08-30 15:54:52 -07001532static void bnx2fc_net_cleanup(struct bnx2fc_interface *interface)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001533{
1534 /* Dont listen for Ethernet packets anymore */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001535 __dev_remove_pack(&interface->fcoe_packet_type);
1536 __dev_remove_pack(&interface->fip_packet_type);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001537 synchronize_net();
1538}
1539
Bhanu Prakash Gollapudi776cebc2011-08-04 17:38:40 -07001540static void bnx2fc_interface_cleanup(struct bnx2fc_interface *interface)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001541{
Robert Lovefd8f8902012-05-22 19:06:16 -07001542 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
1543 struct fc_lport *lport = ctlr->lp;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001544 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi9be17fc2011-08-04 17:38:41 -07001545 struct bnx2fc_hba *hba = interface->hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001546
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001547 /* Stop the transmit retry timer */
1548 del_timer_sync(&port->timer);
1549
1550 /* Free existing transmit skbs */
1551 fcoe_clean_pending_queue(lport);
1552
Bhanu Prakash Gollapudi013068f2011-08-30 15:54:52 -07001553 bnx2fc_net_cleanup(interface);
Bhanu Prakash Gollapudi9be17fc2011-08-04 17:38:41 -07001554
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001555 bnx2fc_free_vport(hba, lport);
Bhanu Prakash Gollapudi9be17fc2011-08-04 17:38:41 -07001556}
1557
1558static void bnx2fc_if_destroy(struct fc_lport *lport)
1559{
1560
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001561 /* Free queued packets for the receive thread */
1562 bnx2fc_clean_rx_queue(lport);
1563
1564 /* Detach from scsi-ml */
1565 fc_remove_host(lport->host);
1566 scsi_remove_host(lport->host);
1567
1568 /*
1569 * Note that only the physical lport will have the exchange manager.
1570 * for vports, this function is NOP
1571 */
1572 fc_exch_mgr_free(lport);
1573
1574 /* Free memory used by statistical counters */
1575 fc_lport_free_stats(lport);
1576
1577 /* Release Scsi_Host */
1578 scsi_host_put(lport->host);
1579}
1580
Bhanu Prakash Gollapudieccdcd02011-08-24 18:56:42 -07001581static void __bnx2fc_destroy(struct bnx2fc_interface *interface)
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001582{
Robert Lovefd8f8902012-05-22 19:06:16 -07001583 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
1584 struct fc_lport *lport = ctlr->lp;
Bhanu Prakash Gollapudi0cbf32e2011-08-30 15:54:51 -07001585 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001586
1587 bnx2fc_interface_cleanup(interface);
1588 bnx2fc_stop(interface);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001589 list_del(&interface->list);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001590 bnx2fc_interface_put(interface);
Bhanu Prakash Gollapudi0cbf32e2011-08-30 15:54:51 -07001591 queue_work(bnx2fc_wq, &port->destroy_work);
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07001592}
1593
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001594/**
1595 * bnx2fc_destroy - Destroy a bnx2fc FCoE interface
1596 *
1597 * @buffer: The name of the Ethernet interface to be destroyed
1598 * @kp: The associated kernel parameter
1599 *
1600 * Called from sysfs.
1601 *
1602 * Returns: 0 for success
1603 */
1604static int bnx2fc_destroy(struct net_device *netdev)
1605{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001606 struct bnx2fc_interface *interface = NULL;
Bhanu Prakash Gollapudi2a7b29c2012-01-23 18:00:46 -08001607 struct workqueue_struct *timer_work_queue;
Robert Lovefd8f8902012-05-22 19:06:16 -07001608 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001609 int rc = 0;
1610
Nithin Sujir6702ca12011-03-17 17:13:27 -07001611 rtnl_lock();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001612 mutex_lock(&bnx2fc_dev_lock);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001613
1614 interface = bnx2fc_interface_lookup(netdev);
Robert Lovefd8f8902012-05-22 19:06:16 -07001615 ctlr = bnx2fc_to_ctlr(interface);
1616 if (!interface || !ctlr->lp) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001617 rc = -ENODEV;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001618 printk(KERN_ERR PFX "bnx2fc_destroy: interface or lport not found\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001619 goto netdev_err;
1620 }
1621
Bhanu Prakash Gollapudi2a7b29c2012-01-23 18:00:46 -08001622 timer_work_queue = interface->timer_work_queue;
Bhanu Prakash Gollapudieccdcd02011-08-24 18:56:42 -07001623 __bnx2fc_destroy(interface);
Bhanu Prakash Gollapudi2a7b29c2012-01-23 18:00:46 -08001624 destroy_workqueue(timer_work_queue);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001625
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001626netdev_err:
1627 mutex_unlock(&bnx2fc_dev_lock);
1628 rtnl_unlock();
1629 return rc;
1630}
1631
1632static void bnx2fc_destroy_work(struct work_struct *work)
1633{
1634 struct fcoe_port *port;
1635 struct fc_lport *lport;
1636
1637 port = container_of(work, struct fcoe_port, destroy_work);
1638 lport = port->lport;
1639
1640 BNX2FC_HBA_DBG(lport, "Entered bnx2fc_destroy_work\n");
1641
Bhanu Prakash Gollapudi9be17fc2011-08-04 17:38:41 -07001642 bnx2fc_if_destroy(lport);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001643}
1644
1645static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba *hba)
1646{
1647 bnx2fc_free_fw_resc(hba);
1648 bnx2fc_free_task_ctx(hba);
1649}
1650
1651/**
1652 * bnx2fc_bind_adapter_devices - binds bnx2fc adapter with the associated
1653 * pci structure
1654 *
1655 * @hba: Adapter instance
1656 */
1657static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba *hba)
1658{
1659 if (bnx2fc_setup_task_ctx(hba))
1660 goto mem_err;
1661
1662 if (bnx2fc_setup_fw_resc(hba))
1663 goto mem_err;
1664
1665 return 0;
1666mem_err:
1667 bnx2fc_unbind_adapter_devices(hba);
1668 return -ENOMEM;
1669}
1670
1671static int bnx2fc_bind_pcidev(struct bnx2fc_hba *hba)
1672{
1673 struct cnic_dev *cnic;
1674
1675 if (!hba->cnic) {
1676 printk(KERN_ERR PFX "cnic is NULL\n");
1677 return -ENODEV;
1678 }
1679 cnic = hba->cnic;
1680 hba->pcidev = cnic->pcidev;
1681 if (hba->pcidev)
1682 pci_dev_get(hba->pcidev);
1683
1684 return 0;
1685}
1686
1687static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba)
1688{
1689 if (hba->pcidev)
1690 pci_dev_put(hba->pcidev);
1691 hba->pcidev = NULL;
1692}
1693
1694
1695
1696/**
1697 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
1698 *
1699 * @handle: transport handle pointing to adapter struture
1700 *
1701 * This function maps adapter structure to pcidev structure and initiates
1702 * firmware handshake to enable/initialize on-chip FCoE components.
1703 * This bnx2fc - cnic interface api callback is used after following
1704 * conditions are met -
1705 * a) underlying network interface is up (marked by event NETDEV_UP
1706 * from netdev
1707 * b) bnx2fc adatper structure is registered.
1708 */
1709static void bnx2fc_ulp_start(void *handle)
1710{
1711 struct bnx2fc_hba *hba = handle;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001712 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001713 struct fcoe_ctlr *ctlr;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001714 struct fc_lport *lport;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001715
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001716 mutex_lock(&bnx2fc_dev_lock);
1717
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001718 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags))
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001719 bnx2fc_fw_init(hba);
1720
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001721 BNX2FC_MISC_DBG("bnx2fc started.\n");
1722
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001723 list_for_each_entry(interface, &if_list, list) {
1724 if (interface->hba == hba) {
Robert Lovefd8f8902012-05-22 19:06:16 -07001725 ctlr = bnx2fc_to_ctlr(interface);
1726 lport = ctlr->lp;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001727 /* Kick off Fabric discovery*/
1728 printk(KERN_ERR PFX "ulp_init: start discovery\n");
1729 lport->tt.frame_send = bnx2fc_xmit;
1730 bnx2fc_start_disc(interface);
1731 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001732 }
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001733
1734 mutex_unlock(&bnx2fc_dev_lock);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001735}
1736
1737static void bnx2fc_port_shutdown(struct fc_lport *lport)
1738{
1739 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1740 fc_fabric_logoff(lport);
1741 fc_lport_destroy(lport);
1742}
1743
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001744static void bnx2fc_stop(struct bnx2fc_interface *interface)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001745{
Robert Lovefd8f8902012-05-22 19:06:16 -07001746 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001747 struct fc_lport *lport;
1748 struct fc_lport *vport;
1749
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001750 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags))
1751 return;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001752
Robert Lovefd8f8902012-05-22 19:06:16 -07001753 lport = ctlr->lp;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001754 bnx2fc_port_shutdown(lport);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001755
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001756 mutex_lock(&lport->lp_mutex);
1757 list_for_each_entry(vport, &lport->vports, list)
1758 fc_host_port_type(vport->host) =
1759 FC_PORTTYPE_UNKNOWN;
1760 mutex_unlock(&lport->lp_mutex);
1761 fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
Robert Lovefd8f8902012-05-22 19:06:16 -07001762 fcoe_ctlr_link_down(ctlr);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001763 fcoe_clean_pending_queue(lport);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001764}
1765
1766static int bnx2fc_fw_init(struct bnx2fc_hba *hba)
1767{
1768#define BNX2FC_INIT_POLL_TIME (1000 / HZ)
1769 int rc = -1;
1770 int i = HZ;
1771
1772 rc = bnx2fc_bind_adapter_devices(hba);
1773 if (rc) {
1774 printk(KERN_ALERT PFX
1775 "bnx2fc_bind_adapter_devices failed - rc = %d\n", rc);
1776 goto err_out;
1777 }
1778
1779 rc = bnx2fc_send_fw_fcoe_init_msg(hba);
1780 if (rc) {
1781 printk(KERN_ALERT PFX
1782 "bnx2fc_send_fw_fcoe_init_msg failed - rc = %d\n", rc);
1783 goto err_unbind;
1784 }
1785
1786 /*
1787 * Wait until the adapter init message is complete, and adapter
1788 * state is UP.
1789 */
1790 while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--)
1791 msleep(BNX2FC_INIT_POLL_TIME);
1792
1793 if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state)) {
1794 printk(KERN_ERR PFX "bnx2fc_start: %s failed to initialize. "
1795 "Ignoring...\n",
1796 hba->cnic->netdev->name);
1797 rc = -1;
1798 goto err_unbind;
1799 }
1800
1801
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001802 set_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001803 return 0;
1804
1805err_unbind:
1806 bnx2fc_unbind_adapter_devices(hba);
1807err_out:
1808 return rc;
1809}
1810
1811static void bnx2fc_fw_destroy(struct bnx2fc_hba *hba)
1812{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001813 if (test_and_clear_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001814 if (bnx2fc_send_fw_fcoe_destroy_msg(hba) == 0) {
1815 init_timer(&hba->destroy_timer);
1816 hba->destroy_timer.expires = BNX2FC_FW_TIMEOUT +
1817 jiffies;
1818 hba->destroy_timer.function = bnx2fc_destroy_timer;
1819 hba->destroy_timer.data = (unsigned long)hba;
1820 add_timer(&hba->destroy_timer);
1821 wait_event_interruptible(hba->destroy_wait,
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001822 test_bit(BNX2FC_FLAG_DESTROY_CMPL,
1823 &hba->flags));
Bhanu Prakash Gollapudicd703ae2011-08-04 17:38:43 -07001824 clear_bit(BNX2FC_FLAG_DESTROY_CMPL, &hba->flags);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001825 /* This should never happen */
1826 if (signal_pending(current))
1827 flush_signals(current);
1828
1829 del_timer_sync(&hba->destroy_timer);
1830 }
1831 bnx2fc_unbind_adapter_devices(hba);
1832 }
1833}
1834
1835/**
1836 * bnx2fc_ulp_stop - cnic callback to shutdown adapter instance
1837 *
1838 * @handle: transport handle pointing to adapter structure
1839 *
1840 * Driver checks if adapter is already in shutdown mode, if not start
1841 * the shutdown process.
1842 */
1843static void bnx2fc_ulp_stop(void *handle)
1844{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001845 struct bnx2fc_hba *hba = handle;
1846 struct bnx2fc_interface *interface;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001847
1848 printk(KERN_ERR "ULP_STOP\n");
1849
1850 mutex_lock(&bnx2fc_dev_lock);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001851 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &hba->flags))
1852 goto exit;
1853 list_for_each_entry(interface, &if_list, list) {
1854 if (interface->hba == hba)
1855 bnx2fc_stop(interface);
1856 }
1857 BUG_ON(hba->num_ofld_sess != 0);
1858
1859 mutex_lock(&hba->hba_mutex);
1860 clear_bit(ADAPTER_STATE_UP, &hba->adapter_state);
1861 clear_bit(ADAPTER_STATE_GOING_DOWN,
1862 &hba->adapter_state);
1863
1864 clear_bit(ADAPTER_STATE_READY, &hba->adapter_state);
1865 mutex_unlock(&hba->hba_mutex);
1866
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001867 bnx2fc_fw_destroy(hba);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001868exit:
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001869 mutex_unlock(&bnx2fc_dev_lock);
1870}
1871
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001872static void bnx2fc_start_disc(struct bnx2fc_interface *interface)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001873{
Robert Lovefd8f8902012-05-22 19:06:16 -07001874 struct fcoe_ctlr *ctlr = bnx2fc_to_ctlr(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001875 struct fc_lport *lport;
1876 int wait_cnt = 0;
1877
1878 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1879 /* Kick off FIP/FLOGI */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001880 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE, &interface->hba->flags)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001881 printk(KERN_ERR PFX "Init not done yet\n");
1882 return;
1883 }
1884
Robert Lovefd8f8902012-05-22 19:06:16 -07001885 lport = ctlr->lp;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001886 BNX2FC_HBA_DBG(lport, "calling fc_fabric_login\n");
1887
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07001888 if (!bnx2fc_link_ok(lport) && interface->enabled) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001889 BNX2FC_HBA_DBG(lport, "ctlr_link_up\n");
Robert Lovefd8f8902012-05-22 19:06:16 -07001890 fcoe_ctlr_link_up(ctlr);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001891 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001892 set_bit(ADAPTER_STATE_READY, &interface->hba->adapter_state);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001893 }
1894
1895 /* wait for the FCF to be selected before issuing FLOGI */
Robert Lovefd8f8902012-05-22 19:06:16 -07001896 while (!ctlr->sel_fcf) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001897 msleep(250);
1898 /* give up after 3 secs */
1899 if (++wait_cnt > 12)
1900 break;
1901 }
Bhanu Prakash Gollapudi627e6282011-08-04 17:38:35 -07001902
1903 /* Reset max receive frame size to default */
1904 if (fc_set_mfs(lport, BNX2FC_MFS))
1905 return;
1906
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001907 fc_lport_init(lport);
1908 fc_fabric_login(lport);
1909}
1910
1911
1912/**
1913 * bnx2fc_ulp_init - Initialize an adapter instance
1914 *
1915 * @dev : cnic device handle
1916 * Called from cnic_register_driver() context to initialize all
1917 * enumerated cnic devices. This routine allocates adapter structure
1918 * and other device specific resources.
1919 */
1920static void bnx2fc_ulp_init(struct cnic_dev *dev)
1921{
1922 struct bnx2fc_hba *hba;
1923 int rc = 0;
1924
1925 BNX2FC_MISC_DBG("Entered %s\n", __func__);
1926 /* bnx2fc works only when bnx2x is loaded */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001927 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) ||
1928 (dev->max_fcoe_conn == 0)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001929 printk(KERN_ERR PFX "bnx2fc FCoE not supported on %s,"
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001930 " flags: %lx fcoe_conn: %d\n",
1931 dev->netdev->name, dev->flags, dev->max_fcoe_conn);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001932 return;
1933 }
1934
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001935 hba = bnx2fc_hba_create(dev);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001936 if (!hba) {
1937 printk(KERN_ERR PFX "hba initialization failed\n");
1938 return;
1939 }
1940
1941 /* Add HBA to the adapter list */
1942 mutex_lock(&bnx2fc_dev_lock);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001943 list_add_tail(&hba->list, &adapter_list);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001944 adapter_count++;
1945 mutex_unlock(&bnx2fc_dev_lock);
1946
1947 clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
1948 rc = dev->register_device(dev, CNIC_ULP_FCOE,
1949 (void *) hba);
1950 if (rc)
Bhanu Prakash Gollapudib2a554f2011-06-27 23:30:53 -07001951 printk(KERN_ERR PFX "register_device failed, rc = %d\n", rc);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001952 else
1953 set_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic);
1954}
1955
1956
1957static int bnx2fc_disable(struct net_device *netdev)
1958{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001959 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001960 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001961 int rc = 0;
1962
Nithin Sujir6702ca12011-03-17 17:13:27 -07001963 rtnl_lock();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001964 mutex_lock(&bnx2fc_dev_lock);
1965
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001966 interface = bnx2fc_interface_lookup(netdev);
Robert Lovefd8f8902012-05-22 19:06:16 -07001967 ctlr = bnx2fc_to_ctlr(interface);
1968 if (!interface || !ctlr->lp) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001969 rc = -ENODEV;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001970 printk(KERN_ERR PFX "bnx2fc_disable: interface or lport not found\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001971 } else {
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07001972 interface->enabled = false;
Robert Lovefd8f8902012-05-22 19:06:16 -07001973 fcoe_ctlr_link_down(ctlr);
1974 fcoe_clean_pending_queue(ctlr->lp);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001975 }
1976
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001977 mutex_unlock(&bnx2fc_dev_lock);
1978 rtnl_unlock();
1979 return rc;
1980}
1981
1982
1983static int bnx2fc_enable(struct net_device *netdev)
1984{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001985 struct bnx2fc_interface *interface;
Robert Lovefd8f8902012-05-22 19:06:16 -07001986 struct fcoe_ctlr *ctlr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001987 int rc = 0;
1988
Nithin Sujir6702ca12011-03-17 17:13:27 -07001989 rtnl_lock();
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001990 mutex_lock(&bnx2fc_dev_lock);
1991
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001992 interface = bnx2fc_interface_lookup(netdev);
Robert Lovefd8f8902012-05-22 19:06:16 -07001993 ctlr = bnx2fc_to_ctlr(interface);
1994 if (!interface || !ctlr->lp) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001995 rc = -ENODEV;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07001996 printk(KERN_ERR PFX "bnx2fc_enable: interface or lport not found\n");
Robert Lovefd8f8902012-05-22 19:06:16 -07001997 } else if (!bnx2fc_link_ok(ctlr->lp)) {
1998 fcoe_ctlr_link_up(ctlr);
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07001999 interface->enabled = true;
2000 }
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002001
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002002 mutex_unlock(&bnx2fc_dev_lock);
2003 rtnl_unlock();
2004 return rc;
2005}
2006
2007/**
2008 * bnx2fc_create - Create bnx2fc FCoE interface
2009 *
2010 * @buffer: The name of Ethernet interface to create on
2011 * @kp: The associated kernel param
2012 *
2013 * Called from sysfs.
2014 *
2015 * Returns: 0 for success
2016 */
2017static int bnx2fc_create(struct net_device *netdev, enum fip_state fip_mode)
2018{
Robert Lovefd8f8902012-05-22 19:06:16 -07002019 struct fcoe_ctlr *ctlr;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002020 struct bnx2fc_interface *interface;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002021 struct bnx2fc_hba *hba;
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002022 struct net_device *phys_dev = netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002023 struct fc_lport *lport;
2024 struct ethtool_drvinfo drvinfo;
2025 int rc = 0;
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002026 int vlan_id = 0;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002027
2028 BNX2FC_MISC_DBG("Entered bnx2fc_create\n");
2029 if (fip_mode != FIP_MODE_FABRIC) {
2030 printk(KERN_ERR "fip mode not FABRIC\n");
2031 return -EIO;
2032 }
2033
Nithin Sujir6702ca12011-03-17 17:13:27 -07002034 rtnl_lock();
2035
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002036 mutex_lock(&bnx2fc_dev_lock);
2037
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002038 if (!try_module_get(THIS_MODULE)) {
2039 rc = -EINVAL;
2040 goto mod_err;
2041 }
2042
2043 /* obtain physical netdev */
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002044 if (netdev->priv_flags & IFF_802_1Q_VLAN)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002045 phys_dev = vlan_dev_real_dev(netdev);
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002046
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002047 /* verify if the physical device is a netxtreme2 device */
2048 if (phys_dev->ethtool_ops && phys_dev->ethtool_ops->get_drvinfo) {
2049 memset(&drvinfo, 0, sizeof(drvinfo));
2050 phys_dev->ethtool_ops->get_drvinfo(phys_dev, &drvinfo);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002051 if (strncmp(drvinfo.driver, "bnx2x", strlen("bnx2x"))) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002052 printk(KERN_ERR PFX "Not a netxtreme2 device\n");
2053 rc = -EINVAL;
2054 goto netdev_err;
2055 }
2056 } else {
2057 printk(KERN_ERR PFX "unable to obtain drv_info\n");
2058 rc = -EINVAL;
2059 goto netdev_err;
2060 }
2061
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002062 /* obtain interface and initialize rest of the structure */
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002063 hba = bnx2fc_hba_lookup(phys_dev);
2064 if (!hba) {
2065 rc = -ENODEV;
2066 printk(KERN_ERR PFX "bnx2fc_create: hba not found\n");
2067 goto netdev_err;
2068 }
2069
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002070 if (bnx2fc_interface_lookup(netdev)) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002071 rc = -EEXIST;
2072 goto netdev_err;
2073 }
2074
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002075 interface = bnx2fc_interface_create(hba, netdev, fip_mode);
2076 if (!interface) {
2077 printk(KERN_ERR PFX "bnx2fc_interface_create failed\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002078 goto ifput_err;
2079 }
2080
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002081 if (netdev->priv_flags & IFF_802_1Q_VLAN) {
2082 vlan_id = vlan_dev_vlan_id(netdev);
2083 interface->vlan_enabled = 1;
2084 }
2085
Robert Lovefd8f8902012-05-22 19:06:16 -07002086 ctlr = bnx2fc_to_ctlr(interface);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002087 interface->vlan_id = vlan_id;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002088
2089 interface->timer_work_queue =
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002090 create_singlethread_workqueue("bnx2fc_timer_wq");
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002091 if (!interface->timer_work_queue) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002092 printk(KERN_ERR PFX "ulp_init could not create timer_wq\n");
2093 rc = -EINVAL;
2094 goto ifput_err;
2095 }
2096
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002097 lport = bnx2fc_if_create(interface, &interface->hba->pcidev->dev, 0);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002098 if (!lport) {
2099 printk(KERN_ERR PFX "Failed to create interface (%s)\n",
2100 netdev->name);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002101 rc = -EINVAL;
2102 goto if_create_err;
2103 }
2104
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002105 /* Add interface to if_list */
2106 list_add_tail(&interface->list, &if_list);
2107
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002108 lport->boot_time = jiffies;
2109
2110 /* Make this master N_port */
Robert Lovefd8f8902012-05-22 19:06:16 -07002111 ctlr->lp = lport;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002112
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07002113 if (!bnx2fc_link_ok(lport)) {
Robert Lovefd8f8902012-05-22 19:06:16 -07002114 fcoe_ctlr_link_up(ctlr);
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07002115 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
2116 set_bit(ADAPTER_STATE_READY, &interface->hba->adapter_state);
2117 }
2118
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002119 BNX2FC_HBA_DBG(lport, "create: START DISC\n");
2120 bnx2fc_start_disc(interface);
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -07002121 interface->enabled = true;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002122 /*
2123 * Release from kref_init in bnx2fc_interface_setup, on success
2124 * lport should be holding a reference taken in bnx2fc_if_create
2125 */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002126 bnx2fc_interface_put(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002127 /* put netdev that was held while calling dev_get_by_name */
2128 mutex_unlock(&bnx2fc_dev_lock);
2129 rtnl_unlock();
2130 return 0;
2131
2132if_create_err:
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002133 destroy_workqueue(interface->timer_work_queue);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002134ifput_err:
Bhanu Prakash Gollapudi013068f2011-08-30 15:54:52 -07002135 bnx2fc_net_cleanup(interface);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002136 bnx2fc_interface_put(interface);
Bhanu Prakash Gollapudi7d742f62012-01-23 18:00:48 -08002137 goto mod_err;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002138netdev_err:
2139 module_put(THIS_MODULE);
2140mod_err:
2141 mutex_unlock(&bnx2fc_dev_lock);
2142 rtnl_unlock();
2143 return rc;
2144}
2145
2146/**
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002147 * bnx2fc_find_hba_for_cnic - maps cnic instance to bnx2fc hba instance
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002148 *
2149 * @cnic: Pointer to cnic device instance
2150 *
2151 **/
2152static struct bnx2fc_hba *bnx2fc_find_hba_for_cnic(struct cnic_dev *cnic)
2153{
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002154 struct bnx2fc_hba *hba;
2155
2156 /* Called with bnx2fc_dev_lock held */
Bhanu Prakash Gollapudid71fb3b2012-06-07 02:19:36 -07002157 list_for_each_entry(hba, &adapter_list, list) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002158 if (hba->cnic == cnic)
2159 return hba;
2160 }
2161 return NULL;
2162}
2163
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002164static struct bnx2fc_interface *bnx2fc_interface_lookup(struct net_device
2165 *netdev)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002166{
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002167 struct bnx2fc_interface *interface;
2168
2169 /* Called with bnx2fc_dev_lock held */
2170 list_for_each_entry(interface, &if_list, list) {
2171 if (interface->netdev == netdev)
2172 return interface;
2173 }
2174 return NULL;
2175}
2176
2177static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device
2178 *phys_dev)
2179{
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002180 struct bnx2fc_hba *hba;
2181
2182 /* Called with bnx2fc_dev_lock held */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002183 list_for_each_entry(hba, &adapter_list, list) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002184 if (hba->phys_dev == phys_dev)
2185 return hba;
2186 }
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002187 printk(KERN_ERR PFX "adapter_lookup: hba NULL\n");
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002188 return NULL;
2189}
2190
2191/**
2192 * bnx2fc_ulp_exit - shuts down adapter instance and frees all resources
2193 *
2194 * @dev cnic device handle
2195 */
2196static void bnx2fc_ulp_exit(struct cnic_dev *dev)
2197{
2198 struct bnx2fc_hba *hba;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002199 struct bnx2fc_interface *interface, *tmp;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002200
2201 BNX2FC_MISC_DBG("Entered bnx2fc_ulp_exit\n");
2202
2203 if (!test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
2204 printk(KERN_ERR PFX "bnx2fc port check: %s, flags: %lx\n",
2205 dev->netdev->name, dev->flags);
2206 return;
2207 }
2208
2209 mutex_lock(&bnx2fc_dev_lock);
2210 hba = bnx2fc_find_hba_for_cnic(dev);
2211 if (!hba) {
2212 printk(KERN_ERR PFX "bnx2fc_ulp_exit: hba not found, dev 0%p\n",
2213 dev);
2214 mutex_unlock(&bnx2fc_dev_lock);
2215 return;
2216 }
2217
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002218 list_del_init(&hba->list);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002219 adapter_count--;
2220
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07002221 list_for_each_entry_safe(interface, tmp, &if_list, list)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002222 /* destroy not called yet, move to quiesced list */
Bhanu Prakash Gollapudiabc49a92011-08-04 17:38:42 -07002223 if (interface->hba == hba)
Bhanu Prakash Gollapudieccdcd02011-08-24 18:56:42 -07002224 __bnx2fc_destroy(interface);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002225 mutex_unlock(&bnx2fc_dev_lock);
2226
2227 bnx2fc_ulp_stop(hba);
2228 /* unregister cnic device */
2229 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic))
2230 hba->cnic->unregister_device(hba->cnic, CNIC_ULP_FCOE);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002231 bnx2fc_hba_destroy(hba);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002232}
2233
2234/**
2235 * bnx2fc_fcoe_reset - Resets the fcoe
2236 *
2237 * @shost: shost the reset is from
2238 *
2239 * Returns: always 0
2240 */
2241static int bnx2fc_fcoe_reset(struct Scsi_Host *shost)
2242{
2243 struct fc_lport *lport = shost_priv(shost);
2244 fc_lport_reset(lport);
2245 return 0;
2246}
2247
2248
2249static bool bnx2fc_match(struct net_device *netdev)
2250{
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002251 struct net_device *phys_dev = netdev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002252
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002253 mutex_lock(&bnx2fc_dev_lock);
2254 if (netdev->priv_flags & IFF_802_1Q_VLAN)
2255 phys_dev = vlan_dev_real_dev(netdev);
2256
2257 if (bnx2fc_hba_lookup(phys_dev)) {
2258 mutex_unlock(&bnx2fc_dev_lock);
2259 return true;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002260 }
Bhanu Prakash Gollapudi7adc5a32012-06-04 16:15:44 -07002261
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002262 mutex_unlock(&bnx2fc_dev_lock);
2263 return false;
2264}
2265
2266
2267static struct fcoe_transport bnx2fc_transport = {
2268 .name = {"bnx2fc"},
2269 .attached = false,
2270 .list = LIST_HEAD_INIT(bnx2fc_transport.list),
2271 .match = bnx2fc_match,
2272 .create = bnx2fc_create,
2273 .destroy = bnx2fc_destroy,
2274 .enable = bnx2fc_enable,
2275 .disable = bnx2fc_disable,
2276};
2277
2278/**
2279 * bnx2fc_percpu_thread_create - Create a receive thread for an
2280 * online CPU
2281 *
2282 * @cpu: cpu index for the online cpu
2283 */
2284static void bnx2fc_percpu_thread_create(unsigned int cpu)
2285{
2286 struct bnx2fc_percpu_s *p;
2287 struct task_struct *thread;
2288
2289 p = &per_cpu(bnx2fc_percpu, cpu);
2290
Eric Dumazet69614272012-06-04 16:15:42 -07002291 thread = kthread_create_on_node(bnx2fc_percpu_io_thread,
2292 (void *)p, cpu_to_node(cpu),
2293 "bnx2fc_thread/%d", cpu);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002294 /* bind thread to the cpu */
Bhanu Prakash Gollapudi32248762011-08-04 17:38:36 -07002295 if (likely(!IS_ERR(thread))) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002296 kthread_bind(thread, cpu);
2297 p->iothread = thread;
2298 wake_up_process(thread);
2299 }
2300}
2301
2302static void bnx2fc_percpu_thread_destroy(unsigned int cpu)
2303{
2304 struct bnx2fc_percpu_s *p;
2305 struct task_struct *thread;
2306 struct bnx2fc_work *work, *tmp;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002307
2308 BNX2FC_MISC_DBG("destroying io thread for CPU %d\n", cpu);
2309
2310 /* Prevent any new work from being queued for this CPU */
2311 p = &per_cpu(bnx2fc_percpu, cpu);
2312 spin_lock_bh(&p->fp_work_lock);
2313 thread = p->iothread;
2314 p->iothread = NULL;
2315
2316
2317 /* Free all work in the list */
Bhanu Prakash Gollapudi32248762011-08-04 17:38:36 -07002318 list_for_each_entry_safe(work, tmp, &p->work_list, list) {
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002319 list_del_init(&work->list);
2320 bnx2fc_process_cq_compl(work->tgt, work->wqe);
2321 kfree(work);
2322 }
2323
2324 spin_unlock_bh(&p->fp_work_lock);
2325
2326 if (thread)
2327 kthread_stop(thread);
2328}
2329
2330/**
2331 * bnx2fc_cpu_callback - Handler for CPU hotplug events
2332 *
2333 * @nfb: The callback data block
2334 * @action: The event triggering the callback
2335 * @hcpu: The index of the CPU that the event is for
2336 *
2337 * This creates or destroys per-CPU data for fcoe
2338 *
2339 * Returns NOTIFY_OK always.
2340 */
2341static int bnx2fc_cpu_callback(struct notifier_block *nfb,
2342 unsigned long action, void *hcpu)
2343{
2344 unsigned cpu = (unsigned long)hcpu;
2345
2346 switch (action) {
2347 case CPU_ONLINE:
2348 case CPU_ONLINE_FROZEN:
2349 printk(PFX "CPU %x online: Create Rx thread\n", cpu);
2350 bnx2fc_percpu_thread_create(cpu);
2351 break;
2352 case CPU_DEAD:
2353 case CPU_DEAD_FROZEN:
2354 printk(PFX "CPU %x offline: Remove Rx thread\n", cpu);
2355 bnx2fc_percpu_thread_destroy(cpu);
2356 break;
2357 default:
2358 break;
2359 }
2360 return NOTIFY_OK;
2361}
2362
2363/**
2364 * bnx2fc_mod_init - module init entry point
2365 *
2366 * Initialize driver wide global data structures, and register
2367 * with cnic module
2368 **/
2369static int __init bnx2fc_mod_init(void)
2370{
2371 struct fcoe_percpu_s *bg;
2372 struct task_struct *l2_thread;
2373 int rc = 0;
2374 unsigned int cpu = 0;
2375 struct bnx2fc_percpu_s *p;
2376
2377 printk(KERN_INFO PFX "%s", version);
2378
2379 /* register as a fcoe transport */
2380 rc = fcoe_transport_attach(&bnx2fc_transport);
2381 if (rc) {
2382 printk(KERN_ERR "failed to register an fcoe transport, check "
2383 "if libfcoe is loaded\n");
2384 goto out;
2385 }
2386
2387 INIT_LIST_HEAD(&adapter_list);
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002388 INIT_LIST_HEAD(&if_list);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002389 mutex_init(&bnx2fc_dev_lock);
2390 adapter_count = 0;
2391
2392 /* Attach FC transport template */
2393 rc = bnx2fc_attach_transport();
2394 if (rc)
2395 goto detach_ft;
2396
2397 bnx2fc_wq = alloc_workqueue("bnx2fc", 0, 0);
2398 if (!bnx2fc_wq) {
2399 rc = -ENOMEM;
2400 goto release_bt;
2401 }
2402
2403 bg = &bnx2fc_global;
2404 skb_queue_head_init(&bg->fcoe_rx_list);
2405 l2_thread = kthread_create(bnx2fc_l2_rcv_thread,
2406 (void *)bg,
2407 "bnx2fc_l2_thread");
2408 if (IS_ERR(l2_thread)) {
2409 rc = PTR_ERR(l2_thread);
2410 goto free_wq;
2411 }
2412 wake_up_process(l2_thread);
2413 spin_lock_bh(&bg->fcoe_rx_list.lock);
2414 bg->thread = l2_thread;
2415 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2416
2417 for_each_possible_cpu(cpu) {
2418 p = &per_cpu(bnx2fc_percpu, cpu);
2419 INIT_LIST_HEAD(&p->work_list);
2420 spin_lock_init(&p->fp_work_lock);
2421 }
2422
2423 for_each_online_cpu(cpu) {
2424 bnx2fc_percpu_thread_create(cpu);
2425 }
2426
2427 /* Initialize per CPU interrupt thread */
2428 register_hotcpu_notifier(&bnx2fc_cpu_notifier);
2429
2430 cnic_register_driver(CNIC_ULP_FCOE, &bnx2fc_cnic_cb);
2431
2432 return 0;
2433
2434free_wq:
2435 destroy_workqueue(bnx2fc_wq);
2436release_bt:
2437 bnx2fc_release_transport();
2438detach_ft:
2439 fcoe_transport_detach(&bnx2fc_transport);
2440out:
2441 return rc;
2442}
2443
2444static void __exit bnx2fc_mod_exit(void)
2445{
2446 LIST_HEAD(to_be_deleted);
2447 struct bnx2fc_hba *hba, *next;
2448 struct fcoe_percpu_s *bg;
2449 struct task_struct *l2_thread;
2450 struct sk_buff *skb;
2451 unsigned int cpu = 0;
2452
2453 /*
2454 * NOTE: Since cnic calls register_driver routine rtnl_lock,
2455 * it will have higher precedence than bnx2fc_dev_lock.
2456 * unregister_device() cannot be called with bnx2fc_dev_lock
2457 * held.
2458 */
2459 mutex_lock(&bnx2fc_dev_lock);
2460 list_splice(&adapter_list, &to_be_deleted);
2461 INIT_LIST_HEAD(&adapter_list);
2462 adapter_count = 0;
2463 mutex_unlock(&bnx2fc_dev_lock);
2464
2465 /* Unregister with cnic */
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002466 list_for_each_entry_safe(hba, next, &to_be_deleted, list) {
2467 list_del_init(&hba->list);
2468 printk(KERN_ERR PFX "MOD_EXIT:destroy hba = 0x%p\n",
2469 hba);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002470 bnx2fc_ulp_stop(hba);
2471 /* unregister cnic device */
2472 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED,
2473 &hba->reg_with_cnic))
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -07002474 hba->cnic->unregister_device(hba->cnic,
2475 CNIC_ULP_FCOE);
2476 bnx2fc_hba_destroy(hba);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002477 }
2478 cnic_unregister_driver(CNIC_ULP_FCOE);
2479
2480 /* Destroy global thread */
2481 bg = &bnx2fc_global;
2482 spin_lock_bh(&bg->fcoe_rx_list.lock);
2483 l2_thread = bg->thread;
2484 bg->thread = NULL;
2485 while ((skb = __skb_dequeue(&bg->fcoe_rx_list)) != NULL)
2486 kfree_skb(skb);
2487
2488 spin_unlock_bh(&bg->fcoe_rx_list.lock);
2489
2490 if (l2_thread)
2491 kthread_stop(l2_thread);
2492
2493 unregister_hotcpu_notifier(&bnx2fc_cpu_notifier);
2494
2495 /* Destroy per cpu threads */
2496 for_each_online_cpu(cpu) {
2497 bnx2fc_percpu_thread_destroy(cpu);
2498 }
2499
2500 destroy_workqueue(bnx2fc_wq);
2501 /*
2502 * detach from scsi transport
2503 * must happen after all destroys are done
2504 */
2505 bnx2fc_release_transport();
2506
2507 /* detach from fcoe transport */
2508 fcoe_transport_detach(&bnx2fc_transport);
2509}
2510
2511module_init(bnx2fc_mod_init);
2512module_exit(bnx2fc_mod_exit);
2513
Robert Love8d55e502012-05-22 19:06:26 -07002514static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ = {
2515 .get_fcoe_ctlr_mode = fcoe_ctlr_get_fip_mode,
2516 .get_fcoe_ctlr_link_fail = bnx2fc_ctlr_get_lesb,
2517 .get_fcoe_ctlr_vlink_fail = bnx2fc_ctlr_get_lesb,
2518 .get_fcoe_ctlr_miss_fka = bnx2fc_ctlr_get_lesb,
2519 .get_fcoe_ctlr_symb_err = bnx2fc_ctlr_get_lesb,
2520 .get_fcoe_ctlr_err_block = bnx2fc_ctlr_get_lesb,
2521 .get_fcoe_ctlr_fcs_error = bnx2fc_ctlr_get_lesb,
2522
2523 .get_fcoe_fcf_selected = fcoe_fcf_get_selected,
2524 .get_fcoe_fcf_vlan_id = bnx2fc_fcf_get_vlan_id,
2525};
2526
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002527static struct fc_function_template bnx2fc_transport_function = {
2528 .show_host_node_name = 1,
2529 .show_host_port_name = 1,
2530 .show_host_supported_classes = 1,
2531 .show_host_supported_fc4s = 1,
2532 .show_host_active_fc4s = 1,
2533 .show_host_maxframe_size = 1,
2534
2535 .show_host_port_id = 1,
2536 .show_host_supported_speeds = 1,
2537 .get_host_speed = fc_get_host_speed,
2538 .show_host_speed = 1,
2539 .show_host_port_type = 1,
2540 .get_host_port_state = fc_get_host_port_state,
2541 .show_host_port_state = 1,
2542 .show_host_symbolic_name = 1,
2543
2544 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2545 sizeof(struct bnx2fc_rport)),
2546 .show_rport_maxframe_size = 1,
2547 .show_rport_supported_classes = 1,
2548
2549 .show_host_fabric_name = 1,
2550 .show_starget_node_name = 1,
2551 .show_starget_port_name = 1,
2552 .show_starget_port_id = 1,
2553 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2554 .show_rport_dev_loss_tmo = 1,
2555 .get_fc_host_stats = bnx2fc_get_host_stats,
2556
2557 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2558
2559 .terminate_rport_io = fc_rport_terminate_io,
2560
2561 .vport_create = bnx2fc_vport_create,
2562 .vport_delete = bnx2fc_vport_destroy,
2563 .vport_disable = bnx2fc_vport_disable,
Bhanu Prakash Gollapudie9a5289c2011-08-04 17:38:37 -07002564 .bsg_request = fc_lport_bsg_request,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002565};
2566
2567static struct fc_function_template bnx2fc_vport_xport_function = {
2568 .show_host_node_name = 1,
2569 .show_host_port_name = 1,
2570 .show_host_supported_classes = 1,
2571 .show_host_supported_fc4s = 1,
2572 .show_host_active_fc4s = 1,
2573 .show_host_maxframe_size = 1,
2574
2575 .show_host_port_id = 1,
2576 .show_host_supported_speeds = 1,
2577 .get_host_speed = fc_get_host_speed,
2578 .show_host_speed = 1,
2579 .show_host_port_type = 1,
2580 .get_host_port_state = fc_get_host_port_state,
2581 .show_host_port_state = 1,
2582 .show_host_symbolic_name = 1,
2583
2584 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2585 sizeof(struct bnx2fc_rport)),
2586 .show_rport_maxframe_size = 1,
2587 .show_rport_supported_classes = 1,
2588
2589 .show_host_fabric_name = 1,
2590 .show_starget_node_name = 1,
2591 .show_starget_port_name = 1,
2592 .show_starget_port_id = 1,
2593 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2594 .show_rport_dev_loss_tmo = 1,
2595 .get_fc_host_stats = fc_get_host_stats,
2596 .issue_fc_host_lip = bnx2fc_fcoe_reset,
2597 .terminate_rport_io = fc_rport_terminate_io,
Bhanu Prakash Gollapudie9a5289c2011-08-04 17:38:37 -07002598 .bsg_request = fc_lport_bsg_request,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002599};
2600
2601/**
2602 * scsi_host_template structure used while registering with SCSI-ml
2603 */
2604static struct scsi_host_template bnx2fc_shost_template = {
2605 .module = THIS_MODULE,
2606 .name = "Broadcom Offload FCoE Initiator",
2607 .queuecommand = bnx2fc_queuecommand,
2608 .eh_abort_handler = bnx2fc_eh_abort, /* abts */
2609 .eh_device_reset_handler = bnx2fc_eh_device_reset, /* lun reset */
2610 .eh_target_reset_handler = bnx2fc_eh_target_reset, /* tgt reset */
2611 .eh_host_reset_handler = fc_eh_host_reset,
2612 .slave_alloc = fc_slave_alloc,
2613 .change_queue_depth = fc_change_queue_depth,
2614 .change_queue_type = fc_change_queue_type,
2615 .this_id = -1,
2616 .cmd_per_lun = 3,
Bhanu Gollapudi0ea5c272011-03-17 17:13:29 -07002617 .can_queue = BNX2FC_CAN_QUEUE,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002618 .use_clustering = ENABLE_CLUSTERING,
2619 .sg_tablesize = BNX2FC_MAX_BDS_PER_CMD,
2620 .max_sectors = 512,
2621};
2622
2623static struct libfc_function_template bnx2fc_libfc_fcn_templ = {
2624 .frame_send = bnx2fc_xmit,
2625 .elsct_send = bnx2fc_elsct_send,
2626 .fcp_abort_io = bnx2fc_abort_io,
2627 .fcp_cleanup = bnx2fc_cleanup,
Bhanu Prakash Gollapudif72f6972011-10-03 16:45:02 -07002628 .get_lesb = bnx2fc_get_lesb,
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08002629 .rport_event_callback = bnx2fc_rport_event_handler,
2630};
2631
2632/**
2633 * bnx2fc_cnic_cb - global template of bnx2fc - cnic driver interface
2634 * structure carrying callback function pointers
2635 */
2636static struct cnic_ulp_ops bnx2fc_cnic_cb = {
2637 .owner = THIS_MODULE,
2638 .cnic_init = bnx2fc_ulp_init,
2639 .cnic_exit = bnx2fc_ulp_exit,
2640 .cnic_start = bnx2fc_ulp_start,
2641 .cnic_stop = bnx2fc_ulp_stop,
2642 .indicate_kcqes = bnx2fc_indicate_kcqe,
2643 .indicate_netevent = bnx2fc_indicate_netevent,
2644};