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