blob: 4fa3988ccb321d230677845e0b16327479d1221b [file] [log] [blame]
Jing Huang7725ccf2009-09-23 17:46:15 -07001/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07002 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
Jing Huang7725ccf2009-09-23 17:46:15 -07003 * All rights reserved
4 * www.brocade.com
5 *
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 */
17
Jing Huang5fbe25c2010-10-18 17:17:23 -070018/*
Jing Huang7725ccf2009-09-23 17:46:15 -070019 * bfad.c Linux driver PCI interface module.
20 */
Jing Huang7725ccf2009-09-23 17:46:15 -070021#include <linux/module.h>
Krishna Gudipatie6714322010-03-03 17:44:02 -080022#include <linux/kthread.h>
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070023#include <linux/errno.h>
24#include <linux/sched.h>
25#include <linux/init.h>
26#include <linux/fs.h>
27#include <linux/pci.h>
28#include <linux/firmware.h>
29#include <asm/uaccess.h>
30#include <asm/fcntl.h>
31
Jing Huang7725ccf2009-09-23 17:46:15 -070032#include "bfad_drv.h"
33#include "bfad_im.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070034#include "bfa_fcs.h"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070035#include "bfa_defs.h"
36#include "bfa.h"
Jing Huang7725ccf2009-09-23 17:46:15 -070037
38BFA_TRC_FILE(LDRV, BFAD);
Jing Huang42b426e2010-03-19 11:07:09 -070039DEFINE_MUTEX(bfad_mutex);
Jing Huang7725ccf2009-09-23 17:46:15 -070040LIST_HEAD(bfad_list);
Jing Huang7725ccf2009-09-23 17:46:15 -070041
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070042static int bfad_inst;
43static int num_sgpgs_parm;
44int supported_fc4s;
45char *host_name, *os_name, *os_patch;
46int num_rports, num_ios, num_tms;
47int num_fcxps, num_ufbufs;
48int reqq_size, rspq_size, num_sgpgs;
49int rport_del_timeout = BFA_FCS_RPORT_DEF_DEL_TIMEOUT;
50int bfa_lun_queue_depth = BFAD_LUN_QUEUE_DEPTH;
51int bfa_io_max_sge = BFAD_IO_MAX_SGE;
Jing Huang88166242010-12-09 17:11:53 -080052int bfa_log_level = 3; /* WARNING log level */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070053int ioc_auto_recover = BFA_TRUE;
54int bfa_linkup_delay = -1;
55int fdmi_enable = BFA_TRUE;
Krishna Gudipatibe540a92011-06-13 15:53:04 -070056int fc_credit_recovery = BFA_TRUE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070057int pcie_max_read_reqsz;
Jing Huangab2a9ba2010-07-08 20:02:55 -070058int bfa_debugfs_enable = 1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070059int msix_disable_cb = 0, msix_disable_ct = 0;
60
Jing Huang61338a02011-04-13 11:44:03 -070061/* Firmware releated */
Krishna Gudipati11189202011-06-13 15:50:35 -070062u32 bfi_image_cb_size, bfi_image_ct_size, bfi_image_ct2_size;
63u32 *bfi_image_cb, *bfi_image_ct, *bfi_image_ct2;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070064
Krishna Gudipati11189202011-06-13 15:50:35 -070065#define BFAD_FW_FILE_CB "cbfw.bin"
66#define BFAD_FW_FILE_CT "ctfw.bin"
67#define BFAD_FW_FILE_CT2 "ct2fw.bin"
Jing Huang61338a02011-04-13 11:44:03 -070068
69static u32 *bfad_load_fwimg(struct pci_dev *pdev);
70static void bfad_free_fwimg(void);
71static void bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
72 u32 *bfi_image_size, char *fw_name);
73
Maggie52f94b62010-11-29 18:21:32 -080074static const char *msix_name_ct[] = {
Krishna Gudipati11189202011-06-13 15:50:35 -070075 "ctrl",
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070076 "cpe0", "cpe1", "cpe2", "cpe3",
Krishna Gudipati11189202011-06-13 15:50:35 -070077 "rme0", "rme1", "rme2", "rme3" };
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070078
Maggie52f94b62010-11-29 18:21:32 -080079static const char *msix_name_cb[] = {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070080 "cpe0", "cpe1", "cpe2", "cpe3",
81 "rme0", "rme1", "rme2", "rme3",
82 "eemc", "elpu0", "elpu1", "epss", "mlpu" };
83
Krishna Gudipati11189202011-06-13 15:50:35 -070084MODULE_FIRMWARE(BFAD_FW_FILE_CB);
85MODULE_FIRMWARE(BFAD_FW_FILE_CT);
86MODULE_FIRMWARE(BFAD_FW_FILE_CT2);
Jing Huang7725ccf2009-09-23 17:46:15 -070087
88module_param(os_name, charp, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -070089MODULE_PARM_DESC(os_name, "OS name of the hba host machine");
Jing Huang7725ccf2009-09-23 17:46:15 -070090module_param(os_patch, charp, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -070091MODULE_PARM_DESC(os_patch, "OS patch level of the hba host machine");
Jing Huang7725ccf2009-09-23 17:46:15 -070092module_param(host_name, charp, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -070093MODULE_PARM_DESC(host_name, "Hostname of the hba host machine");
Jing Huang7725ccf2009-09-23 17:46:15 -070094module_param(num_rports, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070095MODULE_PARM_DESC(num_rports, "Max number of rports supported per port "
96 "(physical/logical), default=1024");
Jing Huang7725ccf2009-09-23 17:46:15 -070097module_param(num_ios, int, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -070098MODULE_PARM_DESC(num_ios, "Max number of ioim requests, default=2000");
Jing Huang7725ccf2009-09-23 17:46:15 -070099module_param(num_tms, int, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -0700100MODULE_PARM_DESC(num_tms, "Max number of task im requests, default=128");
Jing Huang7725ccf2009-09-23 17:46:15 -0700101module_param(num_fcxps, int, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -0700102MODULE_PARM_DESC(num_fcxps, "Max number of fcxp requests, default=64");
Jing Huang7725ccf2009-09-23 17:46:15 -0700103module_param(num_ufbufs, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700104MODULE_PARM_DESC(num_ufbufs, "Max number of unsolicited frame "
105 "buffers, default=64");
Jing Huang7725ccf2009-09-23 17:46:15 -0700106module_param(reqq_size, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700107MODULE_PARM_DESC(reqq_size, "Max number of request queue elements, "
108 "default=256");
Jing Huang7725ccf2009-09-23 17:46:15 -0700109module_param(rspq_size, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700110MODULE_PARM_DESC(rspq_size, "Max number of response queue elements, "
111 "default=64");
Jing Huang7725ccf2009-09-23 17:46:15 -0700112module_param(num_sgpgs, int, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -0700113MODULE_PARM_DESC(num_sgpgs, "Number of scatter/gather pages, default=2048");
Jing Huang7725ccf2009-09-23 17:46:15 -0700114module_param(rport_del_timeout, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700115MODULE_PARM_DESC(rport_del_timeout, "Rport delete timeout, default=90 secs, "
116 "Range[>0]");
Jing Huang7725ccf2009-09-23 17:46:15 -0700117module_param(bfa_lun_queue_depth, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700118MODULE_PARM_DESC(bfa_lun_queue_depth, "Lun queue depth, default=32, Range[>0]");
Jing Huang7725ccf2009-09-23 17:46:15 -0700119module_param(bfa_io_max_sge, int, S_IRUGO | S_IWUSR);
Jing Huang604158ad2010-07-08 19:59:49 -0700120MODULE_PARM_DESC(bfa_io_max_sge, "Max io scatter/gather elements, default=255");
Jing Huang88166242010-12-09 17:11:53 -0800121module_param(bfa_log_level, int, S_IRUGO | S_IWUSR);
122MODULE_PARM_DESC(bfa_log_level, "Driver log level, default=3, "
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700123 "Range[Critical:1|Error:2|Warning:3|Info:4]");
Jing Huang7725ccf2009-09-23 17:46:15 -0700124module_param(ioc_auto_recover, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700125MODULE_PARM_DESC(ioc_auto_recover, "IOC auto recovery, default=1, "
126 "Range[off:0|on:1]");
Jing Huang7725ccf2009-09-23 17:46:15 -0700127module_param(bfa_linkup_delay, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700128MODULE_PARM_DESC(bfa_linkup_delay, "Link up delay, default=30 secs for "
129 "boot port. Otherwise 10 secs in RHEL4 & 0 for "
130 "[RHEL5, SLES10, ESX40] Range[>0]");
131module_param(msix_disable_cb, int, S_IRUGO | S_IWUSR);
132MODULE_PARM_DESC(msix_disable_cb, "Disable Message Signaled Interrupts "
133 "for Brocade-415/425/815/825 cards, default=0, "
134 " Range[false:0|true:1]");
135module_param(msix_disable_ct, int, S_IRUGO | S_IWUSR);
136MODULE_PARM_DESC(msix_disable_ct, "Disable Message Signaled Interrupts "
137 "if possible for Brocade-1010/1020/804/1007/902/1741 "
138 "cards, default=0, Range[false:0|true:1]");
Jing Huang604158ad2010-07-08 19:59:49 -0700139module_param(fdmi_enable, int, S_IRUGO | S_IWUSR);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700140MODULE_PARM_DESC(fdmi_enable, "Enables fdmi registration, default=1, "
141 "Range[false:0|true:1]");
Krishna Gudipatibe540a92011-06-13 15:53:04 -0700142module_param(fc_credit_recovery, int, S_IRUGO | S_IWUSR);
143MODULE_PARM_DESC(fc_credit_recovery, "Enables FC Credit Recovery, default=1, "
144 "Range[false:0|true:1]");
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700145module_param(pcie_max_read_reqsz, int, S_IRUGO | S_IWUSR);
146MODULE_PARM_DESC(pcie_max_read_reqsz, "PCIe max read request size, default=0 "
147 "(use system setting), Range[128|256|512|1024|2048|4096]");
Jing Huangab2a9ba2010-07-08 20:02:55 -0700148module_param(bfa_debugfs_enable, int, S_IRUGO | S_IWUSR);
149MODULE_PARM_DESC(bfa_debugfs_enable, "Enables debugfs feature, default=1,"
150 " Range[false:0|true:1]");
Jing Huang7725ccf2009-09-23 17:46:15 -0700151
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700152static void
153bfad_sm_uninit(struct bfad_s *bfad, enum bfad_sm_event event);
154static void
155bfad_sm_created(struct bfad_s *bfad, enum bfad_sm_event event);
156static void
157bfad_sm_initializing(struct bfad_s *bfad, enum bfad_sm_event event);
158static void
159bfad_sm_operational(struct bfad_s *bfad, enum bfad_sm_event event);
160static void
161bfad_sm_stopping(struct bfad_s *bfad, enum bfad_sm_event event);
162static void
163bfad_sm_failed(struct bfad_s *bfad, enum bfad_sm_event event);
164static void
165bfad_sm_fcs_exit(struct bfad_s *bfad, enum bfad_sm_event event);
166
Jing Huang5fbe25c2010-10-18 17:17:23 -0700167/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700168 * Beginning state for the driver instance, awaiting the pci_probe event
Jing Huang7725ccf2009-09-23 17:46:15 -0700169 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700170static void
171bfad_sm_uninit(struct bfad_s *bfad, enum bfad_sm_event event)
Jing Huang7725ccf2009-09-23 17:46:15 -0700172{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700173 bfa_trc(bfad, event);
Jing Huang7725ccf2009-09-23 17:46:15 -0700174
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700175 switch (event) {
176 case BFAD_E_CREATE:
177 bfa_sm_set_state(bfad, bfad_sm_created);
178 bfad->bfad_tsk = kthread_create(bfad_worker, (void *) bfad,
179 "%s", "bfad_worker");
180 if (IS_ERR(bfad->bfad_tsk)) {
181 printk(KERN_INFO "bfad[%d]: Kernel thread "
182 "creation failed!\n", bfad->inst_no);
183 bfa_sm_send_event(bfad, BFAD_E_KTHREAD_CREATE_FAILED);
184 }
185 bfa_sm_send_event(bfad, BFAD_E_INIT);
186 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700187
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700188 case BFAD_E_STOP:
189 /* Ignore stop; already in uninit */
190 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700191
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700192 default:
193 bfa_sm_fault(bfad, event);
194 }
195}
Krishna Gudipatie6714322010-03-03 17:44:02 -0800196
Jing Huang5fbe25c2010-10-18 17:17:23 -0700197/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700198 * Driver Instance is created, awaiting event INIT to initialize the bfad
199 */
200static void
201bfad_sm_created(struct bfad_s *bfad, enum bfad_sm_event event)
202{
203 unsigned long flags;
204
205 bfa_trc(bfad, event);
206
207 switch (event) {
208 case BFAD_E_INIT:
209 bfa_sm_set_state(bfad, bfad_sm_initializing);
210
211 init_completion(&bfad->comp);
212
213 /* Enable Interrupt and wait bfa_init completion */
214 if (bfad_setup_intr(bfad)) {
215 printk(KERN_WARNING "bfad%d: bfad_setup_intr failed\n",
216 bfad->inst_no);
217 bfa_sm_send_event(bfad, BFAD_E_INTR_INIT_FAILED);
218 break;
219 }
220
221 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800222 bfa_iocfc_init(&bfad->bfa);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700223 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
224
225 /* Set up interrupt handler for each vectors */
226 if ((bfad->bfad_flags & BFAD_MSIX_ON) &&
227 bfad_install_msix_handler(bfad)) {
228 printk(KERN_WARNING "%s: install_msix failed, bfad%d\n",
229 __func__, bfad->inst_no);
230 }
231
232 bfad_init_timer(bfad);
233
234 wait_for_completion(&bfad->comp);
235
236 if ((bfad->bfad_flags & BFAD_HAL_INIT_DONE)) {
237 bfa_sm_send_event(bfad, BFAD_E_INIT_SUCCESS);
238 } else {
Krishna Gudipati7c38c052011-04-14 16:50:35 -0700239 printk(KERN_WARNING
240 "bfa %s: bfa init failed\n",
241 bfad->pci_name);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700242 bfad->bfad_flags |= BFAD_HAL_INIT_FAIL;
243 bfa_sm_send_event(bfad, BFAD_E_INIT_FAILED);
244 }
245
246 break;
247
248 case BFAD_E_KTHREAD_CREATE_FAILED:
249 bfa_sm_set_state(bfad, bfad_sm_uninit);
250 break;
251
252 default:
253 bfa_sm_fault(bfad, event);
254 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700255}
256
257static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700258bfad_sm_initializing(struct bfad_s *bfad, enum bfad_sm_event event)
Jing Huang7725ccf2009-09-23 17:46:15 -0700259{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700260 int retval;
261 unsigned long flags;
262
263 bfa_trc(bfad, event);
264
265 switch (event) {
266 case BFAD_E_INIT_SUCCESS:
267 kthread_stop(bfad->bfad_tsk);
268 spin_lock_irqsave(&bfad->bfad_lock, flags);
269 bfad->bfad_tsk = NULL;
270 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
271
272 retval = bfad_start_ops(bfad);
273 if (retval != BFA_STATUS_OK)
274 break;
275 bfa_sm_set_state(bfad, bfad_sm_operational);
276 break;
277
278 case BFAD_E_INTR_INIT_FAILED:
279 bfa_sm_set_state(bfad, bfad_sm_uninit);
280 kthread_stop(bfad->bfad_tsk);
281 spin_lock_irqsave(&bfad->bfad_lock, flags);
282 bfad->bfad_tsk = NULL;
283 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
284 break;
285
286 case BFAD_E_INIT_FAILED:
287 bfa_sm_set_state(bfad, bfad_sm_failed);
288 break;
289 default:
290 bfa_sm_fault(bfad, event);
291 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700292}
293
294static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700295bfad_sm_failed(struct bfad_s *bfad, enum bfad_sm_event event)
Jing Huang7725ccf2009-09-23 17:46:15 -0700296{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700297 int retval;
Jing Huang7725ccf2009-09-23 17:46:15 -0700298
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700299 bfa_trc(bfad, event);
Jing Huang7725ccf2009-09-23 17:46:15 -0700300
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700301 switch (event) {
302 case BFAD_E_INIT_SUCCESS:
303 retval = bfad_start_ops(bfad);
304 if (retval != BFA_STATUS_OK)
305 break;
306 bfa_sm_set_state(bfad, bfad_sm_operational);
307 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700308
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700309 case BFAD_E_STOP:
310 if (bfad->bfad_flags & BFAD_CFG_PPORT_DONE)
311 bfad_uncfg_pport(bfad);
312 if (bfad->bfad_flags & BFAD_FC4_PROBE_DONE) {
313 bfad_im_probe_undo(bfad);
314 bfad->bfad_flags &= ~BFAD_FC4_PROBE_DONE;
315 }
316 bfad_stop(bfad);
317 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700318
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700319 case BFAD_E_EXIT_COMP:
320 bfa_sm_set_state(bfad, bfad_sm_uninit);
321 bfad_remove_intr(bfad);
322 del_timer_sync(&bfad->hal_tmo);
323 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700324
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700325 default:
326 bfa_sm_fault(bfad, event);
327 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700328}
329
330static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700331bfad_sm_operational(struct bfad_s *bfad, enum bfad_sm_event event)
Jing Huang7725ccf2009-09-23 17:46:15 -0700332{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700333 bfa_trc(bfad, event);
Jing Huang7725ccf2009-09-23 17:46:15 -0700334
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700335 switch (event) {
336 case BFAD_E_STOP:
337 bfa_sm_set_state(bfad, bfad_sm_fcs_exit);
338 bfad_fcs_stop(bfad);
339 break;
Jing Huang7725ccf2009-09-23 17:46:15 -0700340
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700341 default:
342 bfa_sm_fault(bfad, event);
343 }
344}
345
346static void
347bfad_sm_fcs_exit(struct bfad_s *bfad, enum bfad_sm_event event)
348{
349 bfa_trc(bfad, event);
350
351 switch (event) {
352 case BFAD_E_FCS_EXIT_COMP:
353 bfa_sm_set_state(bfad, bfad_sm_stopping);
354 bfad_stop(bfad);
355 break;
356
357 default:
358 bfa_sm_fault(bfad, event);
359 }
360}
361
362static void
363bfad_sm_stopping(struct bfad_s *bfad, enum bfad_sm_event event)
364{
365 bfa_trc(bfad, event);
366
367 switch (event) {
368 case BFAD_E_EXIT_COMP:
369 bfa_sm_set_state(bfad, bfad_sm_uninit);
370 bfad_remove_intr(bfad);
371 del_timer_sync(&bfad->hal_tmo);
372 bfad_im_probe_undo(bfad);
373 bfad->bfad_flags &= ~BFAD_FC4_PROBE_DONE;
374 bfad_uncfg_pport(bfad);
375 break;
376
377 default:
378 bfa_sm_fault(bfad, event);
379 break;
380 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700381}
382
Jing Huang5fbe25c2010-10-18 17:17:23 -0700383/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700384 * BFA callbacks
385 */
386void
387bfad_hcb_comp(void *arg, bfa_status_t status)
388{
389 struct bfad_hal_comp *fcomp = (struct bfad_hal_comp *)arg;
390
391 fcomp->status = status;
392 complete(&fcomp->comp);
393}
394
Jing Huang5fbe25c2010-10-18 17:17:23 -0700395/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700396 * bfa_init callback
397 */
398void
399bfa_cb_init(void *drv, bfa_status_t init_status)
400{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700401 struct bfad_s *bfad = drv;
Jing Huang7725ccf2009-09-23 17:46:15 -0700402
Krishna Gudipatie6714322010-03-03 17:44:02 -0800403 if (init_status == BFA_STATUS_OK) {
Jing Huang7725ccf2009-09-23 17:46:15 -0700404 bfad->bfad_flags |= BFAD_HAL_INIT_DONE;
405
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700406 /*
407 * If BFAD_HAL_INIT_FAIL flag is set:
Krishna Gudipatie6714322010-03-03 17:44:02 -0800408 * Wake up the kernel thread to start
409 * the bfad operations after HAL init done
410 */
411 if ((bfad->bfad_flags & BFAD_HAL_INIT_FAIL)) {
412 bfad->bfad_flags &= ~BFAD_HAL_INIT_FAIL;
413 wake_up_process(bfad->bfad_tsk);
414 }
415 }
416
Jing Huang7725ccf2009-09-23 17:46:15 -0700417 complete(&bfad->comp);
418}
419
Jing Huang5fbe25c2010-10-18 17:17:23 -0700420/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700421 * BFA_FCS callbacks
422 */
Jing Huang7725ccf2009-09-23 17:46:15 -0700423struct bfad_port_s *
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700424bfa_fcb_lport_new(struct bfad_s *bfad, struct bfa_fcs_lport_s *port,
425 enum bfa_lport_role roles, struct bfad_vf_s *vf_drv,
Jing Huang7725ccf2009-09-23 17:46:15 -0700426 struct bfad_vport_s *vp_drv)
427{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700428 bfa_status_t rc;
429 struct bfad_port_s *port_drv;
Jing Huang7725ccf2009-09-23 17:46:15 -0700430
431 if (!vp_drv && !vf_drv) {
432 port_drv = &bfad->pport;
433 port_drv->pvb_type = BFAD_PORT_PHYS_BASE;
434 } else if (!vp_drv && vf_drv) {
435 port_drv = &vf_drv->base_port;
436 port_drv->pvb_type = BFAD_PORT_VF_BASE;
437 } else if (vp_drv && !vf_drv) {
438 port_drv = &vp_drv->drv_port;
439 port_drv->pvb_type = BFAD_PORT_PHYS_VPORT;
440 } else {
441 port_drv = &vp_drv->drv_port;
442 port_drv->pvb_type = BFAD_PORT_VF_VPORT;
443 }
444
445 port_drv->fcs_port = port;
446 port_drv->roles = roles;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700447
448 if (roles & BFA_LPORT_ROLE_FCP_IM) {
449 rc = bfad_im_port_new(bfad, port_drv);
450 if (rc != BFA_STATUS_OK) {
451 bfad_im_port_delete(bfad, port_drv);
452 port_drv = NULL;
453 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700454 }
455
456 return port_drv;
457}
458
459void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700460bfa_fcb_lport_delete(struct bfad_s *bfad, enum bfa_lport_role roles,
Jing Huang7725ccf2009-09-23 17:46:15 -0700461 struct bfad_vf_s *vf_drv, struct bfad_vport_s *vp_drv)
462{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700463 struct bfad_port_s *port_drv;
Jing Huang7725ccf2009-09-23 17:46:15 -0700464
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700465 /* this will be only called from rmmod context */
Jing Huang7725ccf2009-09-23 17:46:15 -0700466 if (vp_drv && !vp_drv->comp_del) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700467 port_drv = (vp_drv) ? (&(vp_drv)->drv_port) :
468 ((vf_drv) ? (&(vf_drv)->base_port) :
469 (&(bfad)->pport));
Jing Huang7725ccf2009-09-23 17:46:15 -0700470 bfa_trc(bfad, roles);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700471 if (roles & BFA_LPORT_ROLE_FCP_IM)
472 bfad_im_port_delete(bfad, port_drv);
Jing Huang7725ccf2009-09-23 17:46:15 -0700473 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700474}
475
Jing Huang5fbe25c2010-10-18 17:17:23 -0700476/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700477 * FCS RPORT alloc callback, after successful PLOGI by FCS
478 */
479bfa_status_t
480bfa_fcb_rport_alloc(struct bfad_s *bfad, struct bfa_fcs_rport_s **rport,
481 struct bfad_rport_s **rport_drv)
482{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700483 bfa_status_t rc = BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -0700484
485 *rport_drv = kzalloc(sizeof(struct bfad_rport_s), GFP_ATOMIC);
486 if (*rport_drv == NULL) {
487 rc = BFA_STATUS_ENOMEM;
488 goto ext;
489 }
490
491 *rport = &(*rport_drv)->fcs_rport;
492
493ext:
494 return rc;
495}
496
Jing Huang5fbe25c2010-10-18 17:17:23 -0700497/*
Jing Huangd9883542010-07-08 19:46:26 -0700498 * FCS PBC VPORT Create
499 */
500void
501bfa_fcb_pbc_vport_create(struct bfad_s *bfad, struct bfi_pbc_vport_s pbc_vport)
502{
Jing Huang7725ccf2009-09-23 17:46:15 -0700503
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700504 struct bfa_lport_cfg_s port_cfg = {0};
505 struct bfad_vport_s *vport;
506 int rc;
Jing Huangd9883542010-07-08 19:46:26 -0700507
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700508 vport = kzalloc(sizeof(struct bfad_vport_s), GFP_KERNEL);
509 if (!vport) {
Jing Huangd9883542010-07-08 19:46:26 -0700510 bfa_trc(bfad, 0);
511 return;
512 }
513
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700514 vport->drv_port.bfad = bfad;
515 port_cfg.roles = BFA_LPORT_ROLE_FCP_IM;
516 port_cfg.pwwn = pbc_vport.vp_pwwn;
517 port_cfg.nwwn = pbc_vport.vp_nwwn;
518 port_cfg.preboot_vp = BFA_TRUE;
Jing Huangd9883542010-07-08 19:46:26 -0700519
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700520 rc = bfa_fcs_pbc_vport_create(&vport->fcs_vport, &bfad->bfa_fcs, 0,
521 &port_cfg, vport);
Jing Huangd9883542010-07-08 19:46:26 -0700522
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700523 if (rc != BFA_STATUS_OK) {
524 bfa_trc(bfad, 0);
525 return;
526 }
527
528 list_add_tail(&vport->list_entry, &bfad->pbc_vport_list);
Jing Huangd9883542010-07-08 19:46:26 -0700529}
Jing Huang7725ccf2009-09-23 17:46:15 -0700530
531void
532bfad_hal_mem_release(struct bfad_s *bfad)
533{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700534 int i;
Jing Huang7725ccf2009-09-23 17:46:15 -0700535 struct bfa_meminfo_s *hal_meminfo = &bfad->meminfo;
536 struct bfa_mem_elem_s *meminfo_elem;
537
538 for (i = 0; i < BFA_MEM_TYPE_MAX; i++) {
539 meminfo_elem = &hal_meminfo->meminfo[i];
540 if (meminfo_elem->kva != NULL) {
541 switch (meminfo_elem->mem_type) {
542 case BFA_MEM_TYPE_KVA:
543 vfree(meminfo_elem->kva);
544 break;
545 case BFA_MEM_TYPE_DMA:
546 dma_free_coherent(&bfad->pcidev->dev,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700547 meminfo_elem->mem_len,
548 meminfo_elem->kva,
549 (dma_addr_t) meminfo_elem->dma);
Jing Huang7725ccf2009-09-23 17:46:15 -0700550 break;
551 default:
Jing Huangd4b671c2010-12-26 21:46:35 -0800552 WARN_ON(1);
Jing Huang7725ccf2009-09-23 17:46:15 -0700553 break;
554 }
555 }
556 }
557
558 memset(hal_meminfo, 0, sizeof(struct bfa_meminfo_s));
559}
560
561void
562bfad_update_hal_cfg(struct bfa_iocfc_cfg_s *bfa_cfg)
563{
564 if (num_rports > 0)
565 bfa_cfg->fwcfg.num_rports = num_rports;
566 if (num_ios > 0)
567 bfa_cfg->fwcfg.num_ioim_reqs = num_ios;
568 if (num_tms > 0)
569 bfa_cfg->fwcfg.num_tskim_reqs = num_tms;
570 if (num_fcxps > 0)
571 bfa_cfg->fwcfg.num_fcxp_reqs = num_fcxps;
572 if (num_ufbufs > 0)
573 bfa_cfg->fwcfg.num_uf_bufs = num_ufbufs;
574 if (reqq_size > 0)
575 bfa_cfg->drvcfg.num_reqq_elems = reqq_size;
576 if (rspq_size > 0)
577 bfa_cfg->drvcfg.num_rspq_elems = rspq_size;
578 if (num_sgpgs > 0)
579 bfa_cfg->drvcfg.num_sgpgs = num_sgpgs;
580
581 /*
582 * populate the hal values back to the driver for sysfs use.
583 * otherwise, the default values will be shown as 0 in sysfs
584 */
585 num_rports = bfa_cfg->fwcfg.num_rports;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700586 num_ios = bfa_cfg->fwcfg.num_ioim_reqs;
587 num_tms = bfa_cfg->fwcfg.num_tskim_reqs;
588 num_fcxps = bfa_cfg->fwcfg.num_fcxp_reqs;
Jing Huang7725ccf2009-09-23 17:46:15 -0700589 num_ufbufs = bfa_cfg->fwcfg.num_uf_bufs;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700590 reqq_size = bfa_cfg->drvcfg.num_reqq_elems;
591 rspq_size = bfa_cfg->drvcfg.num_rspq_elems;
592 num_sgpgs = bfa_cfg->drvcfg.num_sgpgs;
Jing Huang7725ccf2009-09-23 17:46:15 -0700593}
594
595bfa_status_t
596bfad_hal_mem_alloc(struct bfad_s *bfad)
597{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700598 int i;
Jing Huang7725ccf2009-09-23 17:46:15 -0700599 struct bfa_meminfo_s *hal_meminfo = &bfad->meminfo;
600 struct bfa_mem_elem_s *meminfo_elem;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700601 dma_addr_t phys_addr;
602 void *kva;
603 bfa_status_t rc = BFA_STATUS_OK;
604 int retry_count = 0;
605 int reset_value = 1;
606 int min_num_sgpgs = 512;
Jing Huang7725ccf2009-09-23 17:46:15 -0700607
608 bfa_cfg_get_default(&bfad->ioc_cfg);
609
610retry:
611 bfad_update_hal_cfg(&bfad->ioc_cfg);
612 bfad->cfg_data.ioc_queue_depth = bfad->ioc_cfg.fwcfg.num_ioim_reqs;
613 bfa_cfg_get_meminfo(&bfad->ioc_cfg, hal_meminfo);
614
615 for (i = 0; i < BFA_MEM_TYPE_MAX; i++) {
616 meminfo_elem = &hal_meminfo->meminfo[i];
617 switch (meminfo_elem->mem_type) {
618 case BFA_MEM_TYPE_KVA:
619 kva = vmalloc(meminfo_elem->mem_len);
620 if (kva == NULL) {
621 bfad_hal_mem_release(bfad);
622 rc = BFA_STATUS_ENOMEM;
623 goto ext;
624 }
625 memset(kva, 0, meminfo_elem->mem_len);
626 meminfo_elem->kva = kva;
627 break;
628 case BFA_MEM_TYPE_DMA:
629 kva = dma_alloc_coherent(&bfad->pcidev->dev,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700630 meminfo_elem->mem_len, &phys_addr, GFP_KERNEL);
Jing Huang7725ccf2009-09-23 17:46:15 -0700631 if (kva == NULL) {
632 bfad_hal_mem_release(bfad);
633 /*
634 * If we cannot allocate with default
635 * num_sgpages try with half the value.
636 */
637 if (num_sgpgs > min_num_sgpgs) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700638 printk(KERN_INFO
639 "bfad[%d]: memory allocation failed"
640 " with num_sgpgs: %d\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700641 bfad->inst_no, num_sgpgs);
642 nextLowerInt(&num_sgpgs);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700643 printk(KERN_INFO
644 "bfad[%d]: trying to allocate memory"
645 " with num_sgpgs: %d\n",
Jing Huang7725ccf2009-09-23 17:46:15 -0700646 bfad->inst_no, num_sgpgs);
647 retry_count++;
648 goto retry;
649 } else {
650 if (num_sgpgs_parm > 0)
651 num_sgpgs = num_sgpgs_parm;
652 else {
653 reset_value =
654 (1 << retry_count);
655 num_sgpgs *= reset_value;
656 }
657 rc = BFA_STATUS_ENOMEM;
658 goto ext;
659 }
660 }
661
662 if (num_sgpgs_parm > 0)
663 num_sgpgs = num_sgpgs_parm;
664 else {
665 reset_value = (1 << retry_count);
666 num_sgpgs *= reset_value;
667 }
668
669 memset(kva, 0, meminfo_elem->mem_len);
670 meminfo_elem->kva = kva;
671 meminfo_elem->dma = phys_addr;
672 break;
673 default:
674 break;
675
676 }
677 }
678ext:
679 return rc;
680}
681
Jing Huang5fbe25c2010-10-18 17:17:23 -0700682/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700683 * Create a vport under a vf.
684 */
685bfa_status_t
686bfad_vport_create(struct bfad_s *bfad, u16 vf_id,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700687 struct bfa_lport_cfg_s *port_cfg, struct device *dev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700688{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700689 struct bfad_vport_s *vport;
690 int rc = BFA_STATUS_OK;
691 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700692 struct completion fcomp;
693
694 vport = kzalloc(sizeof(struct bfad_vport_s), GFP_KERNEL);
695 if (!vport) {
696 rc = BFA_STATUS_ENOMEM;
697 goto ext;
698 }
699
700 vport->drv_port.bfad = bfad;
701 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700702 rc = bfa_fcs_vport_create(&vport->fcs_vport, &bfad->bfa_fcs, vf_id,
703 port_cfg, vport);
Jing Huang7725ccf2009-09-23 17:46:15 -0700704 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
705
706 if (rc != BFA_STATUS_OK)
707 goto ext_free_vport;
708
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700709 if (port_cfg->roles & BFA_LPORT_ROLE_FCP_IM) {
Jing Huangb5042932010-03-19 11:05:39 -0700710 rc = bfad_im_scsi_host_alloc(bfad, vport->drv_port.im_port,
711 dev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700712 if (rc != BFA_STATUS_OK)
713 goto ext_free_fcs_vport;
714 }
715
716 spin_lock_irqsave(&bfad->bfad_lock, flags);
717 bfa_fcs_vport_start(&vport->fcs_vport);
718 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
719
720 return BFA_STATUS_OK;
721
722ext_free_fcs_vport:
723 spin_lock_irqsave(&bfad->bfad_lock, flags);
724 vport->comp_del = &fcomp;
725 init_completion(vport->comp_del);
726 bfa_fcs_vport_delete(&vport->fcs_vport);
727 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
728 wait_for_completion(vport->comp_del);
729ext_free_vport:
730 kfree(vport);
731ext:
732 return rc;
733}
734
Jing Huang7725ccf2009-09-23 17:46:15 -0700735void
736bfad_bfa_tmo(unsigned long data)
737{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700738 struct bfad_s *bfad = (struct bfad_s *) data;
739 unsigned long flags;
740 struct list_head doneq;
Jing Huang7725ccf2009-09-23 17:46:15 -0700741
742 spin_lock_irqsave(&bfad->bfad_lock, flags);
743
Maggie Zhangf7f73812010-12-09 19:08:43 -0800744 bfa_timer_beat(&bfad->bfa.timer_mod);
Jing Huang7725ccf2009-09-23 17:46:15 -0700745
746 bfa_comp_deq(&bfad->bfa, &doneq);
747 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
748
749 if (!list_empty(&doneq)) {
750 bfa_comp_process(&bfad->bfa, &doneq);
751 spin_lock_irqsave(&bfad->bfad_lock, flags);
752 bfa_comp_free(&bfad->bfa, &doneq);
753 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
754 }
755
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700756 mod_timer(&bfad->hal_tmo,
757 jiffies + msecs_to_jiffies(BFA_TIMER_FREQ));
Jing Huang7725ccf2009-09-23 17:46:15 -0700758}
759
760void
761bfad_init_timer(struct bfad_s *bfad)
762{
763 init_timer(&bfad->hal_tmo);
764 bfad->hal_tmo.function = bfad_bfa_tmo;
765 bfad->hal_tmo.data = (unsigned long)bfad;
766
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700767 mod_timer(&bfad->hal_tmo,
768 jiffies + msecs_to_jiffies(BFA_TIMER_FREQ));
Jing Huang7725ccf2009-09-23 17:46:15 -0700769}
770
771int
772bfad_pci_init(struct pci_dev *pdev, struct bfad_s *bfad)
773{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700774 int rc = -ENODEV;
Jing Huang7725ccf2009-09-23 17:46:15 -0700775
776 if (pci_enable_device(pdev)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700777 printk(KERN_ERR "pci_enable_device fail %p\n", pdev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700778 goto out;
779 }
780
781 if (pci_request_regions(pdev, BFAD_DRIVER_NAME))
782 goto out_disable_device;
783
784 pci_set_master(pdev);
785
786
787 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0)
788 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700789 printk(KERN_ERR "pci_set_dma_mask fail %p\n", pdev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700790 goto out_release_region;
791 }
792
Jing Huangb3522f02010-03-19 11:06:44 -0700793 bfad->pci_bar0_kva = pci_iomap(pdev, 0, pci_resource_len(pdev, 0));
Krishna Gudipati11189202011-06-13 15:50:35 -0700794 bfad->pci_bar2_kva = pci_iomap(pdev, 2, pci_resource_len(pdev, 2));
Jing Huang7725ccf2009-09-23 17:46:15 -0700795
796 if (bfad->pci_bar0_kva == NULL) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700797 printk(KERN_ERR "Fail to map bar0\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700798 goto out_release_region;
799 }
800
801 bfad->hal_pcidev.pci_slot = PCI_SLOT(pdev->devfn);
802 bfad->hal_pcidev.pci_func = PCI_FUNC(pdev->devfn);
803 bfad->hal_pcidev.pci_bar_kva = bfad->pci_bar0_kva;
804 bfad->hal_pcidev.device_id = pdev->device;
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700805 bfad->hal_pcidev.ssid = pdev->subsystem_device;
Jing Huang7725ccf2009-09-23 17:46:15 -0700806 bfad->pci_name = pci_name(pdev);
807
808 bfad->pci_attr.vendor_id = pdev->vendor;
809 bfad->pci_attr.device_id = pdev->device;
810 bfad->pci_attr.ssid = pdev->subsystem_device;
811 bfad->pci_attr.ssvid = pdev->subsystem_vendor;
812 bfad->pci_attr.pcifn = PCI_FUNC(pdev->devfn);
813
814 bfad->pcidev = pdev;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700815
816 /* Adjust PCIe Maximum Read Request Size */
817 if (pcie_max_read_reqsz > 0) {
818 int pcie_cap_reg;
819 u16 pcie_dev_ctl;
820 u16 mask = 0xffff;
821
822 switch (pcie_max_read_reqsz) {
823 case 128:
824 mask = 0x0;
825 break;
826 case 256:
827 mask = 0x1000;
828 break;
829 case 512:
830 mask = 0x2000;
831 break;
832 case 1024:
833 mask = 0x3000;
834 break;
835 case 2048:
836 mask = 0x4000;
837 break;
838 case 4096:
839 mask = 0x5000;
840 break;
841 default:
842 break;
843 }
844
845 pcie_cap_reg = pci_find_capability(pdev, PCI_CAP_ID_EXP);
846 if (mask != 0xffff && pcie_cap_reg) {
847 pcie_cap_reg += 0x08;
848 pci_read_config_word(pdev, pcie_cap_reg, &pcie_dev_ctl);
849 if ((pcie_dev_ctl & 0x7000) != mask) {
850 printk(KERN_WARNING "BFA[%s]: "
851 "pcie_max_read_request_size is %d, "
852 "reset to %d\n", bfad->pci_name,
853 (1 << ((pcie_dev_ctl & 0x7000) >> 12)) << 7,
854 pcie_max_read_reqsz);
855
856 pcie_dev_ctl &= ~0x7000;
857 pci_write_config_word(pdev, pcie_cap_reg,
858 pcie_dev_ctl | mask);
859 }
860 }
861 }
862
Jing Huang7725ccf2009-09-23 17:46:15 -0700863 return 0;
864
865out_release_region:
866 pci_release_regions(pdev);
867out_disable_device:
868 pci_disable_device(pdev);
869out:
870 return rc;
871}
872
873void
874bfad_pci_uninit(struct pci_dev *pdev, struct bfad_s *bfad)
875{
Jing Huang7725ccf2009-09-23 17:46:15 -0700876 pci_iounmap(pdev, bfad->pci_bar0_kva);
Krishna Gudipati11189202011-06-13 15:50:35 -0700877 pci_iounmap(pdev, bfad->pci_bar2_kva);
Jing Huang7725ccf2009-09-23 17:46:15 -0700878 pci_release_regions(pdev);
879 pci_disable_device(pdev);
880 pci_set_drvdata(pdev, NULL);
881}
882
Jing Huang7725ccf2009-09-23 17:46:15 -0700883bfa_status_t
884bfad_drv_init(struct bfad_s *bfad)
885{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700886 bfa_status_t rc;
887 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700888
889 bfad->cfg_data.rport_del_timeout = rport_del_timeout;
890 bfad->cfg_data.lun_queue_depth = bfa_lun_queue_depth;
891 bfad->cfg_data.io_max_sge = bfa_io_max_sge;
892 bfad->cfg_data.binding_method = FCP_PWWN_BINDING;
893
894 rc = bfad_hal_mem_alloc(bfad);
895 if (rc != BFA_STATUS_OK) {
896 printk(KERN_WARNING "bfad%d bfad_hal_mem_alloc failure\n",
897 bfad->inst_no);
898 printk(KERN_WARNING
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700899 "Not enough memory to attach all Brocade HBA ports, %s",
900 "System may need more memory.\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700901 goto out_hal_mem_alloc_failure;
902 }
903
Maggie Zhangf7f73812010-12-09 19:08:43 -0800904 bfad->bfa.trcmod = bfad->trcmod;
905 bfad->bfa.plog = &bfad->plog_buf;
Jing Huang7725ccf2009-09-23 17:46:15 -0700906 bfa_plog_init(&bfad->plog_buf);
907 bfa_plog_str(&bfad->plog_buf, BFA_PL_MID_DRVR, BFA_PL_EID_DRIVER_START,
908 0, "Driver Attach");
909
910 bfa_attach(&bfad->bfa, bfad, &bfad->ioc_cfg, &bfad->meminfo,
911 &bfad->hal_pcidev);
912
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700913 /* FCS INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -0700914 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800915 bfad->bfa_fcs.trcmod = bfad->trcmod;
Krishna Gudipati82794a22010-03-03 17:43:30 -0800916 bfa_fcs_attach(&bfad->bfa_fcs, &bfad->bfa, bfad, BFA_FALSE);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800917 bfad->bfa_fcs.fdmi_enabled = fdmi_enable;
Krishna Gudipatibe540a92011-06-13 15:53:04 -0700918 bfad->bfa_fcs.bbscn_enabled = fc_credit_recovery;
Krishna Gudipati75332a72011-06-13 15:54:31 -0700919 bfa_fcs_init(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700920 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
921
922 bfad->bfad_flags |= BFAD_DRV_INIT_DONE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700923
Krishna Gudipati75332a72011-06-13 15:54:31 -0700924 /* configure base port */
925 rc = bfad_cfg_pport(bfad, BFA_LPORT_ROLE_FCP_IM);
926 if (rc != BFA_STATUS_OK)
927 goto out_cfg_pport_fail;
928
Jing Huang7725ccf2009-09-23 17:46:15 -0700929 return BFA_STATUS_OK;
930
Krishna Gudipati75332a72011-06-13 15:54:31 -0700931out_cfg_pport_fail:
932 /* fcs exit - on cfg pport failure */
933 spin_lock_irqsave(&bfad->bfad_lock, flags);
934 init_completion(&bfad->comp);
935 bfad->pport.flags |= BFAD_PORT_DELETE;
936 bfa_fcs_exit(&bfad->bfa_fcs);
937 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
938 wait_for_completion(&bfad->comp);
939 /* bfa detach - free hal memory */
940 bfa_detach(&bfad->bfa);
941 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700942out_hal_mem_alloc_failure:
943 return BFA_STATUS_FAILED;
944}
945
946void
947bfad_drv_uninit(struct bfad_s *bfad)
948{
Krishna Gudipatie6714322010-03-03 17:44:02 -0800949 unsigned long flags;
950
951 spin_lock_irqsave(&bfad->bfad_lock, flags);
952 init_completion(&bfad->comp);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800953 bfa_iocfc_stop(&bfad->bfa);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800954 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
955 wait_for_completion(&bfad->comp);
956
Jing Huang7725ccf2009-09-23 17:46:15 -0700957 del_timer_sync(&bfad->hal_tmo);
958 bfa_isr_disable(&bfad->bfa);
959 bfa_detach(&bfad->bfa);
960 bfad_remove_intr(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700961 bfad_hal_mem_release(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800962
963 bfad->bfad_flags &= ~BFAD_DRV_INIT_DONE;
Jing Huang7725ccf2009-09-23 17:46:15 -0700964}
965
966void
967bfad_drv_start(struct bfad_s *bfad)
968{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700969 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700970
971 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800972 bfa_iocfc_start(&bfad->bfa);
Krishna Gudipati75332a72011-06-13 15:54:31 -0700973 bfa_fcs_pbc_vport_init(&bfad->bfa_fcs);
Maggie Zhangf7f73812010-12-09 19:08:43 -0800974 bfa_fcs_fabric_modstart(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700975 bfad->bfad_flags |= BFAD_HAL_START_DONE;
976 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
977
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700978 if (bfad->im)
979 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700980}
981
982void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700983bfad_fcs_stop(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700984{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700985 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700986
987 spin_lock_irqsave(&bfad->bfad_lock, flags);
988 init_completion(&bfad->comp);
989 bfad->pport.flags |= BFAD_PORT_DELETE;
990 bfa_fcs_exit(&bfad->bfa_fcs);
991 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
992 wait_for_completion(&bfad->comp);
993
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700994 bfa_sm_send_event(bfad, BFAD_E_FCS_EXIT_COMP);
995}
996
997void
998bfad_stop(struct bfad_s *bfad)
999{
1000 unsigned long flags;
1001
Jing Huang7725ccf2009-09-23 17:46:15 -07001002 spin_lock_irqsave(&bfad->bfad_lock, flags);
1003 init_completion(&bfad->comp);
Maggie Zhangf7f73812010-12-09 19:08:43 -08001004 bfa_iocfc_stop(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001005 bfad->bfad_flags &= ~BFAD_HAL_START_DONE;
1006 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1007 wait_for_completion(&bfad->comp);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001008
1009 bfa_sm_send_event(bfad, BFAD_E_EXIT_COMP);
Jing Huang7725ccf2009-09-23 17:46:15 -07001010}
1011
1012bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001013bfad_cfg_pport(struct bfad_s *bfad, enum bfa_lport_role role)
Jing Huang7725ccf2009-09-23 17:46:15 -07001014{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001015 int rc = BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -07001016
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001017 /* Allocate scsi_host for the physical port */
1018 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
1019 (role & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001020 if (bfad->pport.im_port == NULL) {
1021 rc = BFA_STATUS_FAILED;
1022 goto out;
1023 }
1024
Jing Huangb5042932010-03-19 11:05:39 -07001025 rc = bfad_im_scsi_host_alloc(bfad, bfad->pport.im_port,
1026 &bfad->pcidev->dev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001027 if (rc != BFA_STATUS_OK)
1028 goto out;
1029
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001030 bfad->pport.roles |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001031 }
1032
1033 bfad->bfad_flags |= BFAD_CFG_PPORT_DONE;
1034
1035out:
1036 return rc;
1037}
1038
1039void
1040bfad_uncfg_pport(struct bfad_s *bfad)
1041{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001042 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
1043 (bfad->pport.roles & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001044 bfad_im_scsi_host_free(bfad, bfad->pport.im_port);
1045 bfad_im_port_clean(bfad->pport.im_port);
1046 kfree(bfad->pport.im_port);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001047 bfad->pport.roles &= ~BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001048 }
1049
1050 bfad->bfad_flags &= ~BFAD_CFG_PPORT_DONE;
1051}
1052
Krishna Gudipatie6714322010-03-03 17:44:02 -08001053bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001054bfad_start_ops(struct bfad_s *bfad) {
1055
1056 int retval;
1057 unsigned long flags;
1058 struct bfad_vport_s *vport, *vport_new;
1059 struct bfa_fcs_driver_info_s driver_info;
1060
1061 /* Fill the driver_info info to fcs*/
1062 memset(&driver_info, 0, sizeof(driver_info));
1063 strncpy(driver_info.version, BFAD_DRIVER_VERSION,
1064 sizeof(driver_info.version) - 1);
1065 if (host_name)
1066 strncpy(driver_info.host_machine_name, host_name,
1067 sizeof(driver_info.host_machine_name) - 1);
1068 if (os_name)
1069 strncpy(driver_info.host_os_name, os_name,
1070 sizeof(driver_info.host_os_name) - 1);
1071 if (os_patch)
1072 strncpy(driver_info.host_os_patch, os_patch,
1073 sizeof(driver_info.host_os_patch) - 1);
1074
1075 strncpy(driver_info.os_device_name, bfad->pci_name,
1076 sizeof(driver_info.os_device_name - 1));
1077
Krishna Gudipati75332a72011-06-13 15:54:31 -07001078 /* FCS driver info init */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001079 spin_lock_irqsave(&bfad->bfad_lock, flags);
1080 bfa_fcs_driver_info_init(&bfad->bfa_fcs, &driver_info);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001081 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001082
Krishna Gudipati75332a72011-06-13 15:54:31 -07001083 /*
1084 * FCS update cfg - reset the pwwn/nwwn of fabric base logical port
1085 * with values learned during bfa_init firmware GETATTR REQ.
1086 */
1087 bfa_fcs_update_cfg(&bfad->bfa_fcs);
1088
1089 /* Setup fc host fixed attribute if the lk supports */
1090 bfad_fc_host_init(bfad->pport.im_port);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001091
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001092 /* BFAD level FC4 IM specific resource allocation */
1093 retval = bfad_im_probe(bfad);
1094 if (retval != BFA_STATUS_OK) {
1095 printk(KERN_WARNING "bfad_im_probe failed\n");
1096 if (bfa_sm_cmp_state(bfad, bfad_sm_initializing))
1097 bfa_sm_set_state(bfad, bfad_sm_failed);
1098 bfad_im_probe_undo(bfad);
1099 bfad->bfad_flags &= ~BFAD_FC4_PROBE_DONE;
1100 bfad_uncfg_pport(bfad);
1101 bfad_stop(bfad);
1102 return BFA_STATUS_FAILED;
1103 } else
1104 bfad->bfad_flags |= BFAD_FC4_PROBE_DONE;
1105
Krishna Gudipatie6714322010-03-03 17:44:02 -08001106 bfad_drv_start(bfad);
1107
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001108 /* Complete pbc vport create */
1109 list_for_each_entry_safe(vport, vport_new, &bfad->pbc_vport_list,
1110 list_entry) {
Jing Huangd9883542010-07-08 19:46:26 -07001111 struct fc_vport_identifiers vid;
1112 struct fc_vport *fc_vport;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001113 char pwwn_buf[BFA_STRING_32];
Jing Huangd9883542010-07-08 19:46:26 -07001114
1115 memset(&vid, 0, sizeof(vid));
1116 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1117 vid.vport_type = FC_PORTTYPE_NPIV;
1118 vid.disable = false;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001119 vid.node_name = wwn_to_u64((u8 *)
1120 (&((vport->fcs_vport).lport.port_cfg.nwwn)));
1121 vid.port_name = wwn_to_u64((u8 *)
1122 (&((vport->fcs_vport).lport.port_cfg.pwwn)));
Jing Huangd9883542010-07-08 19:46:26 -07001123 fc_vport = fc_vport_create(bfad->pport.im_port->shost, 0, &vid);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001124 if (!fc_vport) {
1125 wwn2str(pwwn_buf, vid.port_name);
Jing Huangd9883542010-07-08 19:46:26 -07001126 printk(KERN_WARNING "bfad%d: failed to create pbc vport"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001127 " %s\n", bfad->inst_no, pwwn_buf);
1128 }
1129 list_del(&vport->list_entry);
1130 kfree(vport);
Jing Huangd9883542010-07-08 19:46:26 -07001131 }
1132
Krishna Gudipatie6714322010-03-03 17:44:02 -08001133 /*
1134 * If bfa_linkup_delay is set to -1 default; try to retrive the
Maggie Zhangf16a1752010-12-09 19:12:32 -08001135 * value using the bfad_get_linkup_delay(); else use the
Krishna Gudipatie6714322010-03-03 17:44:02 -08001136 * passed in module param value as the bfa_linkup_delay.
1137 */
1138 if (bfa_linkup_delay < 0) {
Maggie Zhangf16a1752010-12-09 19:12:32 -08001139 bfa_linkup_delay = bfad_get_linkup_delay(bfad);
1140 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001141 bfa_linkup_delay = -1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001142 } else
Maggie Zhangf16a1752010-12-09 19:12:32 -08001143 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001144
Jing Huang88166242010-12-09 17:11:53 -08001145 BFA_LOG(KERN_INFO, bfad, bfa_log_level, "bfa device claimed\n");
Krishna Gudipatie6714322010-03-03 17:44:02 -08001146
1147 return BFA_STATUS_OK;
Krishna Gudipatie6714322010-03-03 17:44:02 -08001148}
1149
1150int
Jing Huangd9883542010-07-08 19:46:26 -07001151bfad_worker(void *ptr)
Krishna Gudipatie6714322010-03-03 17:44:02 -08001152{
1153 struct bfad_s *bfad;
1154 unsigned long flags;
1155
1156 bfad = (struct bfad_s *)ptr;
1157
1158 while (!kthread_should_stop()) {
1159
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001160 /* Send event BFAD_E_INIT_SUCCESS */
1161 bfa_sm_send_event(bfad, BFAD_E_INIT_SUCCESS);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001162
1163 spin_lock_irqsave(&bfad->bfad_lock, flags);
1164 bfad->bfad_tsk = NULL;
1165 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1166
1167 break;
1168 }
1169
1170 return 0;
1171}
1172
Jing Huang5fbe25c2010-10-18 17:17:23 -07001173/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001174 * BFA driver interrupt functions
1175 */
1176irqreturn_t
1177bfad_intx(int irq, void *dev_id)
1178{
1179 struct bfad_s *bfad = dev_id;
1180 struct list_head doneq;
1181 unsigned long flags;
1182 bfa_boolean_t rc;
1183
1184 spin_lock_irqsave(&bfad->bfad_lock, flags);
1185 rc = bfa_intx(&bfad->bfa);
1186 if (!rc) {
1187 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1188 return IRQ_NONE;
1189 }
1190
1191 bfa_comp_deq(&bfad->bfa, &doneq);
1192 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1193
1194 if (!list_empty(&doneq)) {
1195 bfa_comp_process(&bfad->bfa, &doneq);
1196
1197 spin_lock_irqsave(&bfad->bfad_lock, flags);
1198 bfa_comp_free(&bfad->bfa, &doneq);
1199 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001200 }
1201
1202 return IRQ_HANDLED;
1203
1204}
1205
1206static irqreturn_t
1207bfad_msix(int irq, void *dev_id)
1208{
1209 struct bfad_msix_s *vec = dev_id;
1210 struct bfad_s *bfad = vec->bfad;
1211 struct list_head doneq;
1212 unsigned long flags;
1213
1214 spin_lock_irqsave(&bfad->bfad_lock, flags);
1215
1216 bfa_msix(&bfad->bfa, vec->msix.entry);
1217 bfa_comp_deq(&bfad->bfa, &doneq);
1218 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1219
1220 if (!list_empty(&doneq)) {
1221 bfa_comp_process(&bfad->bfa, &doneq);
1222
1223 spin_lock_irqsave(&bfad->bfad_lock, flags);
1224 bfa_comp_free(&bfad->bfa, &doneq);
1225 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1226 }
1227
1228 return IRQ_HANDLED;
1229}
1230
Jing Huang5fbe25c2010-10-18 17:17:23 -07001231/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001232 * Initialize the MSIX entry table.
1233 */
1234static void
1235bfad_init_msix_entry(struct bfad_s *bfad, struct msix_entry *msix_entries,
1236 int mask, int max_bit)
1237{
1238 int i;
1239 int match = 0x00000001;
1240
1241 for (i = 0, bfad->nvec = 0; i < MAX_MSIX_ENTRY; i++) {
1242 if (mask & match) {
1243 bfad->msix_tab[bfad->nvec].msix.entry = i;
1244 bfad->msix_tab[bfad->nvec].bfad = bfad;
1245 msix_entries[bfad->nvec].entry = i;
1246 bfad->nvec++;
1247 }
1248
1249 match <<= 1;
1250 }
1251
1252}
1253
1254int
1255bfad_install_msix_handler(struct bfad_s *bfad)
1256{
1257 int i, error = 0;
1258
1259 for (i = 0; i < bfad->nvec; i++) {
1260 sprintf(bfad->msix_tab[i].name, "bfa-%s-%s",
1261 bfad->pci_name,
Krishna Gudipati11189202011-06-13 15:50:35 -07001262 ((bfa_asic_id_cb(bfad->hal_pcidev.device_id)) ?
1263 msix_name_cb[i] : msix_name_ct[i]));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001264
1265 error = request_irq(bfad->msix_tab[i].msix.vector,
1266 (irq_handler_t) bfad_msix, 0,
1267 bfad->msix_tab[i].name, &bfad->msix_tab[i]);
1268 bfa_trc(bfad, i);
1269 bfa_trc(bfad, bfad->msix_tab[i].msix.vector);
1270 if (error) {
1271 int j;
1272
1273 for (j = 0; j < i; j++)
1274 free_irq(bfad->msix_tab[j].msix.vector,
1275 &bfad->msix_tab[j]);
1276
1277 return 1;
1278 }
1279 }
1280
1281 return 0;
1282}
1283
Jing Huang5fbe25c2010-10-18 17:17:23 -07001284/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001285 * Setup MSIX based interrupt.
1286 */
1287int
1288bfad_setup_intr(struct bfad_s *bfad)
1289{
1290 int error = 0;
1291 u32 mask = 0, i, num_bit = 0, max_bit = 0;
1292 struct msix_entry msix_entries[MAX_MSIX_ENTRY];
1293 struct pci_dev *pdev = bfad->pcidev;
1294
1295 /* Call BFA to get the msix map for this PCI function. */
1296 bfa_msix_getvecs(&bfad->bfa, &mask, &num_bit, &max_bit);
1297
1298 /* Set up the msix entry table */
1299 bfad_init_msix_entry(bfad, msix_entries, mask, max_bit);
1300
Krishna Gudipati11189202011-06-13 15:50:35 -07001301 if ((bfa_asic_id_ctc(pdev->device) && !msix_disable_ct) ||
1302 (bfa_asic_id_cb(pdev->device) && !msix_disable_cb)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001303
1304 error = pci_enable_msix(bfad->pcidev, msix_entries, bfad->nvec);
1305 if (error) {
1306 /*
1307 * Only error number of vector is available.
1308 * We don't have a mechanism to map multiple
1309 * interrupts into one vector, so even if we
1310 * can try to request less vectors, we don't
1311 * know how to associate interrupt events to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001312 * vectors. Linux doesn't duplicate vectors
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001313 * in the MSIX table for this case.
1314 */
1315
1316 printk(KERN_WARNING "bfad%d: "
1317 "pci_enable_msix failed (%d),"
1318 " use line based.\n", bfad->inst_no, error);
1319
1320 goto line_based;
1321 }
1322
1323 /* Save the vectors */
1324 for (i = 0; i < bfad->nvec; i++) {
1325 bfa_trc(bfad, msix_entries[i].vector);
1326 bfad->msix_tab[i].msix.vector = msix_entries[i].vector;
1327 }
1328
1329 bfa_msix_init(&bfad->bfa, bfad->nvec);
1330
1331 bfad->bfad_flags |= BFAD_MSIX_ON;
1332
1333 return error;
1334 }
1335
1336line_based:
1337 error = 0;
1338 if (request_irq
1339 (bfad->pcidev->irq, (irq_handler_t) bfad_intx, BFAD_IRQ_FLAGS,
1340 BFAD_DRIVER_NAME, bfad) != 0) {
1341 /* Enable interrupt handler failed */
1342 return 1;
1343 }
1344
1345 return error;
1346}
1347
1348void
1349bfad_remove_intr(struct bfad_s *bfad)
1350{
1351 int i;
1352
1353 if (bfad->bfad_flags & BFAD_MSIX_ON) {
1354 for (i = 0; i < bfad->nvec; i++)
1355 free_irq(bfad->msix_tab[i].msix.vector,
1356 &bfad->msix_tab[i]);
1357
1358 pci_disable_msix(bfad->pcidev);
1359 bfad->bfad_flags &= ~BFAD_MSIX_ON;
1360 } else {
1361 free_irq(bfad->pcidev->irq, bfad);
1362 }
1363}
Jing Huang7725ccf2009-09-23 17:46:15 -07001364
Jing Huang5fbe25c2010-10-18 17:17:23 -07001365/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001366 * PCI probe entry.
1367 */
1368int
1369bfad_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pid)
1370{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001371 struct bfad_s *bfad;
1372 int error = -ENODEV, retval;
Jing Huang7725ccf2009-09-23 17:46:15 -07001373
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001374 /* For single port cards - only claim function 0 */
Krishna Gudipati8b070b42011-06-13 15:52:40 -07001375 if ((pdev->device == BFA_PCI_DEVICE_ID_FC_8G1P) &&
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001376 (PCI_FUNC(pdev->devfn) != 0))
Jing Huang7725ccf2009-09-23 17:46:15 -07001377 return -ENODEV;
1378
Jing Huang7725ccf2009-09-23 17:46:15 -07001379 bfad = kzalloc(sizeof(struct bfad_s), GFP_KERNEL);
1380 if (!bfad) {
1381 error = -ENOMEM;
1382 goto out;
1383 }
1384
1385 bfad->trcmod = kzalloc(sizeof(struct bfa_trc_mod_s), GFP_KERNEL);
1386 if (!bfad->trcmod) {
1387 printk(KERN_WARNING "Error alloc trace buffer!\n");
1388 error = -ENOMEM;
1389 goto out_alloc_trace_failure;
1390 }
1391
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001392 /* TRACE INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -07001393 bfa_trc_init(bfad->trcmod);
1394 bfa_trc(bfad, bfad_inst);
1395
Jing Huang7725ccf2009-09-23 17:46:15 -07001396 if (!(bfad_load_fwimg(pdev))) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001397 kfree(bfad->trcmod);
1398 goto out_alloc_trace_failure;
1399 }
1400
1401 retval = bfad_pci_init(pdev, bfad);
1402 if (retval) {
1403 printk(KERN_WARNING "bfad_pci_init failure!\n");
1404 error = retval;
1405 goto out_pci_init_failure;
1406 }
1407
1408 mutex_lock(&bfad_mutex);
1409 bfad->inst_no = bfad_inst++;
1410 list_add_tail(&bfad->list_entry, &bfad_list);
1411 mutex_unlock(&bfad_mutex);
1412
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001413 /* Initializing the state machine: State set to uninit */
1414 bfa_sm_set_state(bfad, bfad_sm_uninit);
1415
Jing Huang7725ccf2009-09-23 17:46:15 -07001416 spin_lock_init(&bfad->bfad_lock);
1417 pci_set_drvdata(pdev, bfad);
1418
1419 bfad->ref_count = 0;
1420 bfad->pport.bfad = bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001421 INIT_LIST_HEAD(&bfad->pbc_vport_list);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001422
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001423 /* Setup the debugfs node for this bfad */
1424 if (bfa_debugfs_enable)
1425 bfad_debugfs_init(&bfad->pport);
1426
Jing Huang7725ccf2009-09-23 17:46:15 -07001427 retval = bfad_drv_init(bfad);
1428 if (retval != BFA_STATUS_OK)
1429 goto out_drv_init_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001430
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001431 bfa_sm_send_event(bfad, BFAD_E_CREATE);
Jing Huang7725ccf2009-09-23 17:46:15 -07001432
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001433 if (bfa_sm_cmp_state(bfad, bfad_sm_uninit))
1434 goto out_bfad_sm_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001435
Jing Huang7725ccf2009-09-23 17:46:15 -07001436 return 0;
1437
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001438out_bfad_sm_failure:
1439 bfa_detach(&bfad->bfa);
1440 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001441out_drv_init_failure:
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001442 /* Remove the debugfs node for this bfad */
1443 kfree(bfad->regdata);
1444 bfad_debugfs_exit(&bfad->pport);
Jing Huang7725ccf2009-09-23 17:46:15 -07001445 mutex_lock(&bfad_mutex);
1446 bfad_inst--;
1447 list_del(&bfad->list_entry);
1448 mutex_unlock(&bfad_mutex);
1449 bfad_pci_uninit(pdev, bfad);
1450out_pci_init_failure:
1451 kfree(bfad->trcmod);
1452out_alloc_trace_failure:
1453 kfree(bfad);
1454out:
1455 return error;
1456}
1457
Jing Huang5fbe25c2010-10-18 17:17:23 -07001458/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001459 * PCI remove entry.
1460 */
1461void
1462bfad_pci_remove(struct pci_dev *pdev)
1463{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001464 struct bfad_s *bfad = pci_get_drvdata(pdev);
1465 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -07001466
1467 bfa_trc(bfad, bfad->inst_no);
1468
Krishna Gudipatie6714322010-03-03 17:44:02 -08001469 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001470 if (bfad->bfad_tsk != NULL) {
1471 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001472 kthread_stop(bfad->bfad_tsk);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001473 } else {
Jing Huang7725ccf2009-09-23 17:46:15 -07001474 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Jing Huang7725ccf2009-09-23 17:46:15 -07001475 }
1476
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001477 /* Send Event BFAD_E_STOP */
1478 bfa_sm_send_event(bfad, BFAD_E_STOP);
Jing Huang7725ccf2009-09-23 17:46:15 -07001479
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001480 /* Driver detach and dealloc mem */
Jing Huang7725ccf2009-09-23 17:46:15 -07001481 spin_lock_irqsave(&bfad->bfad_lock, flags);
1482 bfa_detach(&bfad->bfa);
1483 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1484 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001485
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001486 /* Remove the debugfs node for this bfad */
1487 kfree(bfad->regdata);
1488 bfad_debugfs_exit(&bfad->pport);
1489
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001490 /* Cleaning the BFAD instance */
Jing Huang7725ccf2009-09-23 17:46:15 -07001491 mutex_lock(&bfad_mutex);
1492 bfad_inst--;
1493 list_del(&bfad->list_entry);
1494 mutex_unlock(&bfad_mutex);
1495 bfad_pci_uninit(pdev, bfad);
1496
1497 kfree(bfad->trcmod);
1498 kfree(bfad);
1499}
1500
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001501struct pci_device_id bfad_id_table[] = {
Jing Huang7725ccf2009-09-23 17:46:15 -07001502 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001503 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1504 .device = BFA_PCI_DEVICE_ID_FC_8G2P,
1505 .subvendor = PCI_ANY_ID,
1506 .subdevice = PCI_ANY_ID,
1507 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001508 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001509 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1510 .device = BFA_PCI_DEVICE_ID_FC_8G1P,
1511 .subvendor = PCI_ANY_ID,
1512 .subdevice = PCI_ANY_ID,
1513 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001514 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001515 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1516 .device = BFA_PCI_DEVICE_ID_CT,
1517 .subvendor = PCI_ANY_ID,
1518 .subdevice = PCI_ANY_ID,
1519 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1520 .class_mask = ~0,
1521 },
Jing Huang293f82d2010-07-08 19:45:20 -07001522 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001523 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1524 .device = BFA_PCI_DEVICE_ID_CT_FC,
1525 .subvendor = PCI_ANY_ID,
1526 .subdevice = PCI_ANY_ID,
1527 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1528 .class_mask = ~0,
Jing Huang293f82d2010-07-08 19:45:20 -07001529 },
Krishna Gudipati11189202011-06-13 15:50:35 -07001530 {
1531 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1532 .device = BFA_PCI_DEVICE_ID_CT2,
1533 .subvendor = PCI_ANY_ID,
1534 .subdevice = PCI_ANY_ID,
1535 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1536 .class_mask = ~0,
1537 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001538
1539 {0, 0},
1540};
1541
1542MODULE_DEVICE_TABLE(pci, bfad_id_table);
1543
1544static struct pci_driver bfad_pci_driver = {
1545 .name = BFAD_DRIVER_NAME,
1546 .id_table = bfad_id_table,
1547 .probe = bfad_pci_probe,
1548 .remove = __devexit_p(bfad_pci_remove),
1549};
1550
Jing Huang5fbe25c2010-10-18 17:17:23 -07001551/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001552 * Driver module init.
1553 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001554static int __init
Jing Huang7725ccf2009-09-23 17:46:15 -07001555bfad_init(void)
1556{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001557 int error = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001558
1559 printk(KERN_INFO "Brocade BFA FC/FCOE SCSI driver - version: %s\n",
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001560 BFAD_DRIVER_VERSION);
Jing Huang7725ccf2009-09-23 17:46:15 -07001561
1562 if (num_sgpgs > 0)
1563 num_sgpgs_parm = num_sgpgs;
1564
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001565 error = bfad_im_module_init();
Jing Huang7725ccf2009-09-23 17:46:15 -07001566 if (error) {
1567 error = -ENOMEM;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001568 printk(KERN_WARNING "bfad_im_module_init failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001569 goto ext;
1570 }
1571
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001572 if (strcmp(FCPI_NAME, " fcpim") == 0)
1573 supported_fc4s |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001574
Maggie Zhangf7f73812010-12-09 19:08:43 -08001575 bfa_auto_recover = ioc_auto_recover;
Jing Huang7725ccf2009-09-23 17:46:15 -07001576 bfa_fcs_rport_set_del_timeout(rport_del_timeout);
Jing Huang7725ccf2009-09-23 17:46:15 -07001577
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001578 error = pci_register_driver(&bfad_pci_driver);
Jing Huang7725ccf2009-09-23 17:46:15 -07001579 if (error) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001580 printk(KERN_WARNING "pci_register_driver failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001581 goto ext;
1582 }
1583
1584 return 0;
1585
1586ext:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001587 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001588 return error;
1589}
1590
Jing Huang5fbe25c2010-10-18 17:17:23 -07001591/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001592 * Driver module exit.
1593 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001594static void __exit
Jing Huang7725ccf2009-09-23 17:46:15 -07001595bfad_exit(void)
1596{
1597 pci_unregister_driver(&bfad_pci_driver);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001598 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001599 bfad_free_fwimg();
1600}
1601
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001602/* Firmware handling */
Jing Huang61338a02011-04-13 11:44:03 -07001603static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001604bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
1605 u32 *bfi_image_size, char *fw_name)
1606{
1607 const struct firmware *fw;
1608
1609 if (request_firmware(&fw, fw_name, &pdev->dev)) {
1610 printk(KERN_ALERT "Can't locate firmware %s\n", fw_name);
Jing Huang61338a02011-04-13 11:44:03 -07001611 *bfi_image = NULL;
1612 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001613 }
1614
1615 *bfi_image = vmalloc(fw->size);
1616 if (NULL == *bfi_image) {
1617 printk(KERN_ALERT "Fail to allocate buffer for fw image "
1618 "size=%x!\n", (u32) fw->size);
Jing Huang61338a02011-04-13 11:44:03 -07001619 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001620 }
1621
1622 memcpy(*bfi_image, fw->data, fw->size);
1623 *bfi_image_size = fw->size/sizeof(u32);
Jing Huang61338a02011-04-13 11:44:03 -07001624out:
1625 release_firmware(fw);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001626}
1627
Jing Huang61338a02011-04-13 11:44:03 -07001628static u32 *
1629bfad_load_fwimg(struct pci_dev *pdev)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001630{
Krishna Gudipati11189202011-06-13 15:50:35 -07001631 if (pdev->device == BFA_PCI_DEVICE_ID_CT2) {
1632 if (bfi_image_ct2_size == 0)
1633 bfad_read_firmware(pdev, &bfi_image_ct2,
1634 &bfi_image_ct2_size, BFAD_FW_FILE_CT2);
1635 return bfi_image_ct2;
1636 } else if (bfa_asic_id_ct(pdev->device)) {
1637 if (bfi_image_ct_size == 0)
1638 bfad_read_firmware(pdev, &bfi_image_ct,
1639 &bfi_image_ct_size, BFAD_FW_FILE_CT);
1640 return bfi_image_ct;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001641 } else {
Krishna Gudipati11189202011-06-13 15:50:35 -07001642 if (bfi_image_cb_size == 0)
1643 bfad_read_firmware(pdev, &bfi_image_cb,
1644 &bfi_image_cb_size, BFAD_FW_FILE_CB);
1645 return bfi_image_cb;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001646 }
1647}
Jing Huang7725ccf2009-09-23 17:46:15 -07001648
Jing Huang61338a02011-04-13 11:44:03 -07001649static void
1650bfad_free_fwimg(void)
1651{
Krishna Gudipati11189202011-06-13 15:50:35 -07001652 if (bfi_image_ct2_size && bfi_image_ct2)
1653 vfree(bfi_image_ct2);
1654 if (bfi_image_ct_size && bfi_image_ct)
1655 vfree(bfi_image_ct);
1656 if (bfi_image_cb_size && bfi_image_cb)
1657 vfree(bfi_image_cb);
Jing Huang61338a02011-04-13 11:44:03 -07001658}
1659
Jing Huang7725ccf2009-09-23 17:46:15 -07001660module_init(bfad_init);
1661module_exit(bfad_exit);
1662MODULE_LICENSE("GPL");
1663MODULE_DESCRIPTION("Brocade Fibre Channel HBA Driver" BFAD_PROTO_NAME);
1664MODULE_AUTHOR("Brocade Communications Systems, Inc.");
1665MODULE_VERSION(BFAD_DRIVER_VERSION);