blob: 76af7ac02fd072949d63afc042bf161c4c7aac8d [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 Zhangf7f738122010-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 Zhangf7f738122010-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
Krishna Gudipati10a07372011-06-24 20:23:38 -0700787 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) ||
788 (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0)) {
789 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) ||
790 (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700791 printk(KERN_ERR "pci_set_dma_mask fail %p\n", pdev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700792 goto out_release_region;
793 }
Krishna Gudipati10a07372011-06-24 20:23:38 -0700794 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700795
Jing Huangb3522f02010-03-19 11:06:44 -0700796 bfad->pci_bar0_kva = pci_iomap(pdev, 0, pci_resource_len(pdev, 0));
Krishna Gudipati11189202011-06-13 15:50:35 -0700797 bfad->pci_bar2_kva = pci_iomap(pdev, 2, pci_resource_len(pdev, 2));
Jing Huang7725ccf2009-09-23 17:46:15 -0700798
799 if (bfad->pci_bar0_kva == NULL) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700800 printk(KERN_ERR "Fail to map bar0\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700801 goto out_release_region;
802 }
803
804 bfad->hal_pcidev.pci_slot = PCI_SLOT(pdev->devfn);
805 bfad->hal_pcidev.pci_func = PCI_FUNC(pdev->devfn);
806 bfad->hal_pcidev.pci_bar_kva = bfad->pci_bar0_kva;
807 bfad->hal_pcidev.device_id = pdev->device;
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700808 bfad->hal_pcidev.ssid = pdev->subsystem_device;
Jing Huang7725ccf2009-09-23 17:46:15 -0700809 bfad->pci_name = pci_name(pdev);
810
811 bfad->pci_attr.vendor_id = pdev->vendor;
812 bfad->pci_attr.device_id = pdev->device;
813 bfad->pci_attr.ssid = pdev->subsystem_device;
814 bfad->pci_attr.ssvid = pdev->subsystem_vendor;
815 bfad->pci_attr.pcifn = PCI_FUNC(pdev->devfn);
816
817 bfad->pcidev = pdev;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700818
819 /* Adjust PCIe Maximum Read Request Size */
820 if (pcie_max_read_reqsz > 0) {
821 int pcie_cap_reg;
822 u16 pcie_dev_ctl;
823 u16 mask = 0xffff;
824
825 switch (pcie_max_read_reqsz) {
826 case 128:
827 mask = 0x0;
828 break;
829 case 256:
830 mask = 0x1000;
831 break;
832 case 512:
833 mask = 0x2000;
834 break;
835 case 1024:
836 mask = 0x3000;
837 break;
838 case 2048:
839 mask = 0x4000;
840 break;
841 case 4096:
842 mask = 0x5000;
843 break;
844 default:
845 break;
846 }
847
848 pcie_cap_reg = pci_find_capability(pdev, PCI_CAP_ID_EXP);
849 if (mask != 0xffff && pcie_cap_reg) {
850 pcie_cap_reg += 0x08;
851 pci_read_config_word(pdev, pcie_cap_reg, &pcie_dev_ctl);
852 if ((pcie_dev_ctl & 0x7000) != mask) {
853 printk(KERN_WARNING "BFA[%s]: "
854 "pcie_max_read_request_size is %d, "
855 "reset to %d\n", bfad->pci_name,
856 (1 << ((pcie_dev_ctl & 0x7000) >> 12)) << 7,
857 pcie_max_read_reqsz);
858
859 pcie_dev_ctl &= ~0x7000;
860 pci_write_config_word(pdev, pcie_cap_reg,
861 pcie_dev_ctl | mask);
862 }
863 }
864 }
865
Jing Huang7725ccf2009-09-23 17:46:15 -0700866 return 0;
867
868out_release_region:
869 pci_release_regions(pdev);
870out_disable_device:
871 pci_disable_device(pdev);
872out:
873 return rc;
874}
875
876void
877bfad_pci_uninit(struct pci_dev *pdev, struct bfad_s *bfad)
878{
Jing Huang7725ccf2009-09-23 17:46:15 -0700879 pci_iounmap(pdev, bfad->pci_bar0_kva);
Krishna Gudipati11189202011-06-13 15:50:35 -0700880 pci_iounmap(pdev, bfad->pci_bar2_kva);
Jing Huang7725ccf2009-09-23 17:46:15 -0700881 pci_release_regions(pdev);
882 pci_disable_device(pdev);
883 pci_set_drvdata(pdev, NULL);
884}
885
Jing Huang7725ccf2009-09-23 17:46:15 -0700886bfa_status_t
887bfad_drv_init(struct bfad_s *bfad)
888{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700889 bfa_status_t rc;
890 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700891
892 bfad->cfg_data.rport_del_timeout = rport_del_timeout;
893 bfad->cfg_data.lun_queue_depth = bfa_lun_queue_depth;
894 bfad->cfg_data.io_max_sge = bfa_io_max_sge;
895 bfad->cfg_data.binding_method = FCP_PWWN_BINDING;
896
897 rc = bfad_hal_mem_alloc(bfad);
898 if (rc != BFA_STATUS_OK) {
899 printk(KERN_WARNING "bfad%d bfad_hal_mem_alloc failure\n",
900 bfad->inst_no);
901 printk(KERN_WARNING
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700902 "Not enough memory to attach all Brocade HBA ports, %s",
903 "System may need more memory.\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700904 goto out_hal_mem_alloc_failure;
905 }
906
Maggie Zhangf7f738122010-12-09 19:08:43 -0800907 bfad->bfa.trcmod = bfad->trcmod;
908 bfad->bfa.plog = &bfad->plog_buf;
Jing Huang7725ccf2009-09-23 17:46:15 -0700909 bfa_plog_init(&bfad->plog_buf);
910 bfa_plog_str(&bfad->plog_buf, BFA_PL_MID_DRVR, BFA_PL_EID_DRIVER_START,
911 0, "Driver Attach");
912
913 bfa_attach(&bfad->bfa, bfad, &bfad->ioc_cfg, &bfad->meminfo,
914 &bfad->hal_pcidev);
915
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700916 /* FCS INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -0700917 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800918 bfad->bfa_fcs.trcmod = bfad->trcmod;
Krishna Gudipati82794a22010-03-03 17:43:30 -0800919 bfa_fcs_attach(&bfad->bfa_fcs, &bfad->bfa, bfad, BFA_FALSE);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800920 bfad->bfa_fcs.fdmi_enabled = fdmi_enable;
Krishna Gudipatibe540a92011-06-13 15:53:04 -0700921 bfad->bfa_fcs.bbscn_enabled = fc_credit_recovery;
Krishna Gudipati75332a72011-06-13 15:54:31 -0700922 bfa_fcs_init(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700923 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
924
925 bfad->bfad_flags |= BFAD_DRV_INIT_DONE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700926
Krishna Gudipati75332a72011-06-13 15:54:31 -0700927 /* configure base port */
928 rc = bfad_cfg_pport(bfad, BFA_LPORT_ROLE_FCP_IM);
929 if (rc != BFA_STATUS_OK)
930 goto out_cfg_pport_fail;
931
Jing Huang7725ccf2009-09-23 17:46:15 -0700932 return BFA_STATUS_OK;
933
Krishna Gudipati75332a72011-06-13 15:54:31 -0700934out_cfg_pport_fail:
935 /* fcs exit - on cfg pport failure */
936 spin_lock_irqsave(&bfad->bfad_lock, flags);
937 init_completion(&bfad->comp);
938 bfad->pport.flags |= BFAD_PORT_DELETE;
939 bfa_fcs_exit(&bfad->bfa_fcs);
940 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
941 wait_for_completion(&bfad->comp);
942 /* bfa detach - free hal memory */
943 bfa_detach(&bfad->bfa);
944 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700945out_hal_mem_alloc_failure:
946 return BFA_STATUS_FAILED;
947}
948
949void
950bfad_drv_uninit(struct bfad_s *bfad)
951{
Krishna Gudipatie6714322010-03-03 17:44:02 -0800952 unsigned long flags;
953
954 spin_lock_irqsave(&bfad->bfad_lock, flags);
955 init_completion(&bfad->comp);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800956 bfa_iocfc_stop(&bfad->bfa);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800957 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
958 wait_for_completion(&bfad->comp);
959
Jing Huang7725ccf2009-09-23 17:46:15 -0700960 del_timer_sync(&bfad->hal_tmo);
961 bfa_isr_disable(&bfad->bfa);
962 bfa_detach(&bfad->bfa);
963 bfad_remove_intr(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700964 bfad_hal_mem_release(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800965
966 bfad->bfad_flags &= ~BFAD_DRV_INIT_DONE;
Jing Huang7725ccf2009-09-23 17:46:15 -0700967}
968
969void
970bfad_drv_start(struct bfad_s *bfad)
971{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700972 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700973
974 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800975 bfa_iocfc_start(&bfad->bfa);
Krishna Gudipati75332a72011-06-13 15:54:31 -0700976 bfa_fcs_pbc_vport_init(&bfad->bfa_fcs);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800977 bfa_fcs_fabric_modstart(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700978 bfad->bfad_flags |= BFAD_HAL_START_DONE;
979 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
980
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700981 if (bfad->im)
982 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700983}
984
985void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700986bfad_fcs_stop(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700987{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700988 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700989
990 spin_lock_irqsave(&bfad->bfad_lock, flags);
991 init_completion(&bfad->comp);
992 bfad->pport.flags |= BFAD_PORT_DELETE;
993 bfa_fcs_exit(&bfad->bfa_fcs);
994 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
995 wait_for_completion(&bfad->comp);
996
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700997 bfa_sm_send_event(bfad, BFAD_E_FCS_EXIT_COMP);
998}
999
1000void
1001bfad_stop(struct bfad_s *bfad)
1002{
1003 unsigned long flags;
1004
Jing Huang7725ccf2009-09-23 17:46:15 -07001005 spin_lock_irqsave(&bfad->bfad_lock, flags);
1006 init_completion(&bfad->comp);
Maggie Zhangf7f738122010-12-09 19:08:43 -08001007 bfa_iocfc_stop(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -07001008 bfad->bfad_flags &= ~BFAD_HAL_START_DONE;
1009 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1010 wait_for_completion(&bfad->comp);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001011
1012 bfa_sm_send_event(bfad, BFAD_E_EXIT_COMP);
Jing Huang7725ccf2009-09-23 17:46:15 -07001013}
1014
1015bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001016bfad_cfg_pport(struct bfad_s *bfad, enum bfa_lport_role role)
Jing Huang7725ccf2009-09-23 17:46:15 -07001017{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001018 int rc = BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -07001019
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001020 /* Allocate scsi_host for the physical port */
1021 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
1022 (role & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001023 if (bfad->pport.im_port == NULL) {
1024 rc = BFA_STATUS_FAILED;
1025 goto out;
1026 }
1027
Jing Huangb5042932010-03-19 11:05:39 -07001028 rc = bfad_im_scsi_host_alloc(bfad, bfad->pport.im_port,
1029 &bfad->pcidev->dev);
Jing Huang7725ccf2009-09-23 17:46:15 -07001030 if (rc != BFA_STATUS_OK)
1031 goto out;
1032
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001033 bfad->pport.roles |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001034 }
1035
1036 bfad->bfad_flags |= BFAD_CFG_PPORT_DONE;
1037
1038out:
1039 return rc;
1040}
1041
1042void
1043bfad_uncfg_pport(struct bfad_s *bfad)
1044{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001045 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
1046 (bfad->pport.roles & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001047 bfad_im_scsi_host_free(bfad, bfad->pport.im_port);
1048 bfad_im_port_clean(bfad->pport.im_port);
1049 kfree(bfad->pport.im_port);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001050 bfad->pport.roles &= ~BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001051 }
1052
1053 bfad->bfad_flags &= ~BFAD_CFG_PPORT_DONE;
1054}
1055
Krishna Gudipatie6714322010-03-03 17:44:02 -08001056bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001057bfad_start_ops(struct bfad_s *bfad) {
1058
1059 int retval;
1060 unsigned long flags;
1061 struct bfad_vport_s *vport, *vport_new;
1062 struct bfa_fcs_driver_info_s driver_info;
1063
1064 /* Fill the driver_info info to fcs*/
1065 memset(&driver_info, 0, sizeof(driver_info));
1066 strncpy(driver_info.version, BFAD_DRIVER_VERSION,
1067 sizeof(driver_info.version) - 1);
1068 if (host_name)
1069 strncpy(driver_info.host_machine_name, host_name,
1070 sizeof(driver_info.host_machine_name) - 1);
1071 if (os_name)
1072 strncpy(driver_info.host_os_name, os_name,
1073 sizeof(driver_info.host_os_name) - 1);
1074 if (os_patch)
1075 strncpy(driver_info.host_os_patch, os_patch,
1076 sizeof(driver_info.host_os_patch) - 1);
1077
1078 strncpy(driver_info.os_device_name, bfad->pci_name,
1079 sizeof(driver_info.os_device_name - 1));
1080
Krishna Gudipati75332a72011-06-13 15:54:31 -07001081 /* FCS driver info init */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001082 spin_lock_irqsave(&bfad->bfad_lock, flags);
1083 bfa_fcs_driver_info_init(&bfad->bfa_fcs, &driver_info);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001084 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001085
Krishna Gudipati75332a72011-06-13 15:54:31 -07001086 /*
1087 * FCS update cfg - reset the pwwn/nwwn of fabric base logical port
1088 * with values learned during bfa_init firmware GETATTR REQ.
1089 */
1090 bfa_fcs_update_cfg(&bfad->bfa_fcs);
1091
1092 /* Setup fc host fixed attribute if the lk supports */
1093 bfad_fc_host_init(bfad->pport.im_port);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001094
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001095 /* BFAD level FC4 IM specific resource allocation */
1096 retval = bfad_im_probe(bfad);
1097 if (retval != BFA_STATUS_OK) {
1098 printk(KERN_WARNING "bfad_im_probe failed\n");
1099 if (bfa_sm_cmp_state(bfad, bfad_sm_initializing))
1100 bfa_sm_set_state(bfad, bfad_sm_failed);
1101 bfad_im_probe_undo(bfad);
1102 bfad->bfad_flags &= ~BFAD_FC4_PROBE_DONE;
1103 bfad_uncfg_pport(bfad);
1104 bfad_stop(bfad);
1105 return BFA_STATUS_FAILED;
1106 } else
1107 bfad->bfad_flags |= BFAD_FC4_PROBE_DONE;
1108
Krishna Gudipatie6714322010-03-03 17:44:02 -08001109 bfad_drv_start(bfad);
1110
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001111 /* Complete pbc vport create */
1112 list_for_each_entry_safe(vport, vport_new, &bfad->pbc_vport_list,
1113 list_entry) {
Jing Huangd9883542010-07-08 19:46:26 -07001114 struct fc_vport_identifiers vid;
1115 struct fc_vport *fc_vport;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001116 char pwwn_buf[BFA_STRING_32];
Jing Huangd9883542010-07-08 19:46:26 -07001117
1118 memset(&vid, 0, sizeof(vid));
1119 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1120 vid.vport_type = FC_PORTTYPE_NPIV;
1121 vid.disable = false;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001122 vid.node_name = wwn_to_u64((u8 *)
1123 (&((vport->fcs_vport).lport.port_cfg.nwwn)));
1124 vid.port_name = wwn_to_u64((u8 *)
1125 (&((vport->fcs_vport).lport.port_cfg.pwwn)));
Jing Huangd9883542010-07-08 19:46:26 -07001126 fc_vport = fc_vport_create(bfad->pport.im_port->shost, 0, &vid);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001127 if (!fc_vport) {
1128 wwn2str(pwwn_buf, vid.port_name);
Jing Huangd9883542010-07-08 19:46:26 -07001129 printk(KERN_WARNING "bfad%d: failed to create pbc vport"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001130 " %s\n", bfad->inst_no, pwwn_buf);
1131 }
1132 list_del(&vport->list_entry);
1133 kfree(vport);
Jing Huangd9883542010-07-08 19:46:26 -07001134 }
1135
Krishna Gudipatie6714322010-03-03 17:44:02 -08001136 /*
1137 * If bfa_linkup_delay is set to -1 default; try to retrive the
Maggie Zhangf16a1752010-12-09 19:12:32 -08001138 * value using the bfad_get_linkup_delay(); else use the
Krishna Gudipatie6714322010-03-03 17:44:02 -08001139 * passed in module param value as the bfa_linkup_delay.
1140 */
1141 if (bfa_linkup_delay < 0) {
Maggie Zhangf16a1752010-12-09 19:12:32 -08001142 bfa_linkup_delay = bfad_get_linkup_delay(bfad);
1143 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001144 bfa_linkup_delay = -1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001145 } else
Maggie Zhangf16a1752010-12-09 19:12:32 -08001146 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001147
Jing Huang88166242010-12-09 17:11:53 -08001148 BFA_LOG(KERN_INFO, bfad, bfa_log_level, "bfa device claimed\n");
Krishna Gudipatie6714322010-03-03 17:44:02 -08001149
1150 return BFA_STATUS_OK;
Krishna Gudipatie6714322010-03-03 17:44:02 -08001151}
1152
1153int
Jing Huangd9883542010-07-08 19:46:26 -07001154bfad_worker(void *ptr)
Krishna Gudipatie6714322010-03-03 17:44:02 -08001155{
1156 struct bfad_s *bfad;
1157 unsigned long flags;
1158
1159 bfad = (struct bfad_s *)ptr;
1160
1161 while (!kthread_should_stop()) {
1162
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001163 /* Send event BFAD_E_INIT_SUCCESS */
1164 bfa_sm_send_event(bfad, BFAD_E_INIT_SUCCESS);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001165
1166 spin_lock_irqsave(&bfad->bfad_lock, flags);
1167 bfad->bfad_tsk = NULL;
1168 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1169
1170 break;
1171 }
1172
1173 return 0;
1174}
1175
Jing Huang5fbe25c2010-10-18 17:17:23 -07001176/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001177 * BFA driver interrupt functions
1178 */
1179irqreturn_t
1180bfad_intx(int irq, void *dev_id)
1181{
1182 struct bfad_s *bfad = dev_id;
1183 struct list_head doneq;
1184 unsigned long flags;
1185 bfa_boolean_t rc;
1186
1187 spin_lock_irqsave(&bfad->bfad_lock, flags);
1188 rc = bfa_intx(&bfad->bfa);
1189 if (!rc) {
1190 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1191 return IRQ_NONE;
1192 }
1193
1194 bfa_comp_deq(&bfad->bfa, &doneq);
1195 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1196
1197 if (!list_empty(&doneq)) {
1198 bfa_comp_process(&bfad->bfa, &doneq);
1199
1200 spin_lock_irqsave(&bfad->bfad_lock, flags);
1201 bfa_comp_free(&bfad->bfa, &doneq);
1202 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001203 }
1204
1205 return IRQ_HANDLED;
1206
1207}
1208
1209static irqreturn_t
1210bfad_msix(int irq, void *dev_id)
1211{
1212 struct bfad_msix_s *vec = dev_id;
1213 struct bfad_s *bfad = vec->bfad;
1214 struct list_head doneq;
1215 unsigned long flags;
1216
1217 spin_lock_irqsave(&bfad->bfad_lock, flags);
1218
1219 bfa_msix(&bfad->bfa, vec->msix.entry);
1220 bfa_comp_deq(&bfad->bfa, &doneq);
1221 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1222
1223 if (!list_empty(&doneq)) {
1224 bfa_comp_process(&bfad->bfa, &doneq);
1225
1226 spin_lock_irqsave(&bfad->bfad_lock, flags);
1227 bfa_comp_free(&bfad->bfa, &doneq);
1228 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1229 }
1230
1231 return IRQ_HANDLED;
1232}
1233
Jing Huang5fbe25c2010-10-18 17:17:23 -07001234/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001235 * Initialize the MSIX entry table.
1236 */
1237static void
1238bfad_init_msix_entry(struct bfad_s *bfad, struct msix_entry *msix_entries,
1239 int mask, int max_bit)
1240{
1241 int i;
1242 int match = 0x00000001;
1243
1244 for (i = 0, bfad->nvec = 0; i < MAX_MSIX_ENTRY; i++) {
1245 if (mask & match) {
1246 bfad->msix_tab[bfad->nvec].msix.entry = i;
1247 bfad->msix_tab[bfad->nvec].bfad = bfad;
1248 msix_entries[bfad->nvec].entry = i;
1249 bfad->nvec++;
1250 }
1251
1252 match <<= 1;
1253 }
1254
1255}
1256
1257int
1258bfad_install_msix_handler(struct bfad_s *bfad)
1259{
1260 int i, error = 0;
1261
1262 for (i = 0; i < bfad->nvec; i++) {
1263 sprintf(bfad->msix_tab[i].name, "bfa-%s-%s",
1264 bfad->pci_name,
Krishna Gudipati11189202011-06-13 15:50:35 -07001265 ((bfa_asic_id_cb(bfad->hal_pcidev.device_id)) ?
1266 msix_name_cb[i] : msix_name_ct[i]));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001267
1268 error = request_irq(bfad->msix_tab[i].msix.vector,
1269 (irq_handler_t) bfad_msix, 0,
1270 bfad->msix_tab[i].name, &bfad->msix_tab[i]);
1271 bfa_trc(bfad, i);
1272 bfa_trc(bfad, bfad->msix_tab[i].msix.vector);
1273 if (error) {
1274 int j;
1275
1276 for (j = 0; j < i; j++)
1277 free_irq(bfad->msix_tab[j].msix.vector,
1278 &bfad->msix_tab[j]);
1279
1280 return 1;
1281 }
1282 }
1283
1284 return 0;
1285}
1286
Jing Huang5fbe25c2010-10-18 17:17:23 -07001287/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001288 * Setup MSIX based interrupt.
1289 */
1290int
1291bfad_setup_intr(struct bfad_s *bfad)
1292{
1293 int error = 0;
1294 u32 mask = 0, i, num_bit = 0, max_bit = 0;
1295 struct msix_entry msix_entries[MAX_MSIX_ENTRY];
1296 struct pci_dev *pdev = bfad->pcidev;
Krishna Gudipati10a07372011-06-24 20:23:38 -07001297 u16 reg;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001298
1299 /* Call BFA to get the msix map for this PCI function. */
1300 bfa_msix_getvecs(&bfad->bfa, &mask, &num_bit, &max_bit);
1301
1302 /* Set up the msix entry table */
1303 bfad_init_msix_entry(bfad, msix_entries, mask, max_bit);
1304
Krishna Gudipati11189202011-06-13 15:50:35 -07001305 if ((bfa_asic_id_ctc(pdev->device) && !msix_disable_ct) ||
1306 (bfa_asic_id_cb(pdev->device) && !msix_disable_cb)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001307
1308 error = pci_enable_msix(bfad->pcidev, msix_entries, bfad->nvec);
1309 if (error) {
1310 /*
1311 * Only error number of vector is available.
1312 * We don't have a mechanism to map multiple
1313 * interrupts into one vector, so even if we
1314 * can try to request less vectors, we don't
1315 * know how to associate interrupt events to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001316 * vectors. Linux doesn't duplicate vectors
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001317 * in the MSIX table for this case.
1318 */
1319
1320 printk(KERN_WARNING "bfad%d: "
1321 "pci_enable_msix failed (%d),"
1322 " use line based.\n", bfad->inst_no, error);
1323
1324 goto line_based;
1325 }
1326
Krishna Gudipati10a07372011-06-24 20:23:38 -07001327 /* Disable INTX in MSI-X mode */
1328 pci_read_config_word(pdev, PCI_COMMAND, &reg);
1329
1330 if (!(reg & PCI_COMMAND_INTX_DISABLE))
1331 pci_write_config_word(pdev, PCI_COMMAND,
1332 reg | PCI_COMMAND_INTX_DISABLE);
1333
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001334 /* Save the vectors */
1335 for (i = 0; i < bfad->nvec; i++) {
1336 bfa_trc(bfad, msix_entries[i].vector);
1337 bfad->msix_tab[i].msix.vector = msix_entries[i].vector;
1338 }
1339
1340 bfa_msix_init(&bfad->bfa, bfad->nvec);
1341
1342 bfad->bfad_flags |= BFAD_MSIX_ON;
1343
1344 return error;
1345 }
1346
1347line_based:
1348 error = 0;
1349 if (request_irq
1350 (bfad->pcidev->irq, (irq_handler_t) bfad_intx, BFAD_IRQ_FLAGS,
1351 BFAD_DRIVER_NAME, bfad) != 0) {
1352 /* Enable interrupt handler failed */
1353 return 1;
1354 }
1355
1356 return error;
1357}
1358
1359void
1360bfad_remove_intr(struct bfad_s *bfad)
1361{
1362 int i;
1363
1364 if (bfad->bfad_flags & BFAD_MSIX_ON) {
1365 for (i = 0; i < bfad->nvec; i++)
1366 free_irq(bfad->msix_tab[i].msix.vector,
1367 &bfad->msix_tab[i]);
1368
1369 pci_disable_msix(bfad->pcidev);
1370 bfad->bfad_flags &= ~BFAD_MSIX_ON;
1371 } else {
1372 free_irq(bfad->pcidev->irq, bfad);
1373 }
1374}
Jing Huang7725ccf2009-09-23 17:46:15 -07001375
Jing Huang5fbe25c2010-10-18 17:17:23 -07001376/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001377 * PCI probe entry.
1378 */
1379int
1380bfad_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pid)
1381{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001382 struct bfad_s *bfad;
1383 int error = -ENODEV, retval;
Jing Huang7725ccf2009-09-23 17:46:15 -07001384
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001385 /* For single port cards - only claim function 0 */
Krishna Gudipati8b070b42011-06-13 15:52:40 -07001386 if ((pdev->device == BFA_PCI_DEVICE_ID_FC_8G1P) &&
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001387 (PCI_FUNC(pdev->devfn) != 0))
Jing Huang7725ccf2009-09-23 17:46:15 -07001388 return -ENODEV;
1389
Jing Huang7725ccf2009-09-23 17:46:15 -07001390 bfad = kzalloc(sizeof(struct bfad_s), GFP_KERNEL);
1391 if (!bfad) {
1392 error = -ENOMEM;
1393 goto out;
1394 }
1395
1396 bfad->trcmod = kzalloc(sizeof(struct bfa_trc_mod_s), GFP_KERNEL);
1397 if (!bfad->trcmod) {
1398 printk(KERN_WARNING "Error alloc trace buffer!\n");
1399 error = -ENOMEM;
1400 goto out_alloc_trace_failure;
1401 }
1402
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001403 /* TRACE INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -07001404 bfa_trc_init(bfad->trcmod);
1405 bfa_trc(bfad, bfad_inst);
1406
Jing Huang7725ccf2009-09-23 17:46:15 -07001407 if (!(bfad_load_fwimg(pdev))) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001408 kfree(bfad->trcmod);
1409 goto out_alloc_trace_failure;
1410 }
1411
1412 retval = bfad_pci_init(pdev, bfad);
1413 if (retval) {
1414 printk(KERN_WARNING "bfad_pci_init failure!\n");
1415 error = retval;
1416 goto out_pci_init_failure;
1417 }
1418
1419 mutex_lock(&bfad_mutex);
1420 bfad->inst_no = bfad_inst++;
1421 list_add_tail(&bfad->list_entry, &bfad_list);
1422 mutex_unlock(&bfad_mutex);
1423
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001424 /* Initializing the state machine: State set to uninit */
1425 bfa_sm_set_state(bfad, bfad_sm_uninit);
1426
Jing Huang7725ccf2009-09-23 17:46:15 -07001427 spin_lock_init(&bfad->bfad_lock);
1428 pci_set_drvdata(pdev, bfad);
1429
1430 bfad->ref_count = 0;
1431 bfad->pport.bfad = bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001432 INIT_LIST_HEAD(&bfad->pbc_vport_list);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001433
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001434 /* Setup the debugfs node for this bfad */
1435 if (bfa_debugfs_enable)
1436 bfad_debugfs_init(&bfad->pport);
1437
Jing Huang7725ccf2009-09-23 17:46:15 -07001438 retval = bfad_drv_init(bfad);
1439 if (retval != BFA_STATUS_OK)
1440 goto out_drv_init_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001441
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001442 bfa_sm_send_event(bfad, BFAD_E_CREATE);
Jing Huang7725ccf2009-09-23 17:46:15 -07001443
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001444 if (bfa_sm_cmp_state(bfad, bfad_sm_uninit))
1445 goto out_bfad_sm_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001446
Jing Huang7725ccf2009-09-23 17:46:15 -07001447 return 0;
1448
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001449out_bfad_sm_failure:
1450 bfa_detach(&bfad->bfa);
1451 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001452out_drv_init_failure:
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001453 /* Remove the debugfs node for this bfad */
1454 kfree(bfad->regdata);
1455 bfad_debugfs_exit(&bfad->pport);
Jing Huang7725ccf2009-09-23 17:46:15 -07001456 mutex_lock(&bfad_mutex);
1457 bfad_inst--;
1458 list_del(&bfad->list_entry);
1459 mutex_unlock(&bfad_mutex);
1460 bfad_pci_uninit(pdev, bfad);
1461out_pci_init_failure:
1462 kfree(bfad->trcmod);
1463out_alloc_trace_failure:
1464 kfree(bfad);
1465out:
1466 return error;
1467}
1468
Jing Huang5fbe25c2010-10-18 17:17:23 -07001469/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001470 * PCI remove entry.
1471 */
1472void
1473bfad_pci_remove(struct pci_dev *pdev)
1474{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001475 struct bfad_s *bfad = pci_get_drvdata(pdev);
1476 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -07001477
1478 bfa_trc(bfad, bfad->inst_no);
1479
Krishna Gudipatie6714322010-03-03 17:44:02 -08001480 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001481 if (bfad->bfad_tsk != NULL) {
1482 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001483 kthread_stop(bfad->bfad_tsk);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001484 } else {
Jing Huang7725ccf2009-09-23 17:46:15 -07001485 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Jing Huang7725ccf2009-09-23 17:46:15 -07001486 }
1487
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001488 /* Send Event BFAD_E_STOP */
1489 bfa_sm_send_event(bfad, BFAD_E_STOP);
Jing Huang7725ccf2009-09-23 17:46:15 -07001490
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001491 /* Driver detach and dealloc mem */
Jing Huang7725ccf2009-09-23 17:46:15 -07001492 spin_lock_irqsave(&bfad->bfad_lock, flags);
1493 bfa_detach(&bfad->bfa);
1494 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1495 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001496
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001497 /* Remove the debugfs node for this bfad */
1498 kfree(bfad->regdata);
1499 bfad_debugfs_exit(&bfad->pport);
1500
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001501 /* Cleaning the BFAD instance */
Jing Huang7725ccf2009-09-23 17:46:15 -07001502 mutex_lock(&bfad_mutex);
1503 bfad_inst--;
1504 list_del(&bfad->list_entry);
1505 mutex_unlock(&bfad_mutex);
1506 bfad_pci_uninit(pdev, bfad);
1507
1508 kfree(bfad->trcmod);
1509 kfree(bfad);
1510}
1511
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001512struct pci_device_id bfad_id_table[] = {
Jing Huang7725ccf2009-09-23 17:46:15 -07001513 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001514 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1515 .device = BFA_PCI_DEVICE_ID_FC_8G2P,
1516 .subvendor = PCI_ANY_ID,
1517 .subdevice = PCI_ANY_ID,
1518 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001519 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001520 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1521 .device = BFA_PCI_DEVICE_ID_FC_8G1P,
1522 .subvendor = PCI_ANY_ID,
1523 .subdevice = PCI_ANY_ID,
1524 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001525 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001526 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1527 .device = BFA_PCI_DEVICE_ID_CT,
1528 .subvendor = PCI_ANY_ID,
1529 .subdevice = PCI_ANY_ID,
1530 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1531 .class_mask = ~0,
1532 },
Jing Huang293f82d2010-07-08 19:45:20 -07001533 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001534 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1535 .device = BFA_PCI_DEVICE_ID_CT_FC,
1536 .subvendor = PCI_ANY_ID,
1537 .subdevice = PCI_ANY_ID,
1538 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1539 .class_mask = ~0,
Jing Huang293f82d2010-07-08 19:45:20 -07001540 },
Krishna Gudipati11189202011-06-13 15:50:35 -07001541 {
1542 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1543 .device = BFA_PCI_DEVICE_ID_CT2,
1544 .subvendor = PCI_ANY_ID,
1545 .subdevice = PCI_ANY_ID,
1546 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1547 .class_mask = ~0,
1548 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001549
1550 {0, 0},
1551};
1552
1553MODULE_DEVICE_TABLE(pci, bfad_id_table);
1554
1555static struct pci_driver bfad_pci_driver = {
1556 .name = BFAD_DRIVER_NAME,
1557 .id_table = bfad_id_table,
1558 .probe = bfad_pci_probe,
1559 .remove = __devexit_p(bfad_pci_remove),
1560};
1561
Jing Huang5fbe25c2010-10-18 17:17:23 -07001562/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001563 * Driver module init.
1564 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001565static int __init
Jing Huang7725ccf2009-09-23 17:46:15 -07001566bfad_init(void)
1567{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001568 int error = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001569
1570 printk(KERN_INFO "Brocade BFA FC/FCOE SCSI driver - version: %s\n",
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001571 BFAD_DRIVER_VERSION);
Jing Huang7725ccf2009-09-23 17:46:15 -07001572
1573 if (num_sgpgs > 0)
1574 num_sgpgs_parm = num_sgpgs;
1575
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001576 error = bfad_im_module_init();
Jing Huang7725ccf2009-09-23 17:46:15 -07001577 if (error) {
1578 error = -ENOMEM;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001579 printk(KERN_WARNING "bfad_im_module_init failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001580 goto ext;
1581 }
1582
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001583 if (strcmp(FCPI_NAME, " fcpim") == 0)
1584 supported_fc4s |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001585
Maggie Zhangf7f738122010-12-09 19:08:43 -08001586 bfa_auto_recover = ioc_auto_recover;
Jing Huang7725ccf2009-09-23 17:46:15 -07001587 bfa_fcs_rport_set_del_timeout(rport_del_timeout);
Jing Huang7725ccf2009-09-23 17:46:15 -07001588
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001589 error = pci_register_driver(&bfad_pci_driver);
Jing Huang7725ccf2009-09-23 17:46:15 -07001590 if (error) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001591 printk(KERN_WARNING "pci_register_driver failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001592 goto ext;
1593 }
1594
1595 return 0;
1596
1597ext:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001598 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001599 return error;
1600}
1601
Jing Huang5fbe25c2010-10-18 17:17:23 -07001602/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001603 * Driver module exit.
1604 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001605static void __exit
Jing Huang7725ccf2009-09-23 17:46:15 -07001606bfad_exit(void)
1607{
1608 pci_unregister_driver(&bfad_pci_driver);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001609 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001610 bfad_free_fwimg();
1611}
1612
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001613/* Firmware handling */
Jing Huang61338a02011-04-13 11:44:03 -07001614static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001615bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
1616 u32 *bfi_image_size, char *fw_name)
1617{
1618 const struct firmware *fw;
1619
1620 if (request_firmware(&fw, fw_name, &pdev->dev)) {
1621 printk(KERN_ALERT "Can't locate firmware %s\n", fw_name);
Jing Huang61338a02011-04-13 11:44:03 -07001622 *bfi_image = NULL;
1623 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001624 }
1625
1626 *bfi_image = vmalloc(fw->size);
1627 if (NULL == *bfi_image) {
1628 printk(KERN_ALERT "Fail to allocate buffer for fw image "
1629 "size=%x!\n", (u32) fw->size);
Jing Huang61338a02011-04-13 11:44:03 -07001630 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001631 }
1632
1633 memcpy(*bfi_image, fw->data, fw->size);
1634 *bfi_image_size = fw->size/sizeof(u32);
Jing Huang61338a02011-04-13 11:44:03 -07001635out:
1636 release_firmware(fw);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001637}
1638
Jing Huang61338a02011-04-13 11:44:03 -07001639static u32 *
1640bfad_load_fwimg(struct pci_dev *pdev)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001641{
Krishna Gudipati11189202011-06-13 15:50:35 -07001642 if (pdev->device == BFA_PCI_DEVICE_ID_CT2) {
1643 if (bfi_image_ct2_size == 0)
1644 bfad_read_firmware(pdev, &bfi_image_ct2,
1645 &bfi_image_ct2_size, BFAD_FW_FILE_CT2);
1646 return bfi_image_ct2;
1647 } else if (bfa_asic_id_ct(pdev->device)) {
1648 if (bfi_image_ct_size == 0)
1649 bfad_read_firmware(pdev, &bfi_image_ct,
1650 &bfi_image_ct_size, BFAD_FW_FILE_CT);
1651 return bfi_image_ct;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001652 } else {
Krishna Gudipati11189202011-06-13 15:50:35 -07001653 if (bfi_image_cb_size == 0)
1654 bfad_read_firmware(pdev, &bfi_image_cb,
1655 &bfi_image_cb_size, BFAD_FW_FILE_CB);
1656 return bfi_image_cb;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001657 }
1658}
Jing Huang7725ccf2009-09-23 17:46:15 -07001659
Jing Huang61338a02011-04-13 11:44:03 -07001660static void
1661bfad_free_fwimg(void)
1662{
Krishna Gudipati11189202011-06-13 15:50:35 -07001663 if (bfi_image_ct2_size && bfi_image_ct2)
1664 vfree(bfi_image_ct2);
1665 if (bfi_image_ct_size && bfi_image_ct)
1666 vfree(bfi_image_ct);
1667 if (bfi_image_cb_size && bfi_image_cb)
1668 vfree(bfi_image_cb);
Jing Huang61338a02011-04-13 11:44:03 -07001669}
1670
Jing Huang7725ccf2009-09-23 17:46:15 -07001671module_init(bfad_init);
1672module_exit(bfad_exit);
1673MODULE_LICENSE("GPL");
1674MODULE_DESCRIPTION("Brocade Fibre Channel HBA Driver" BFAD_PROTO_NAME);
1675MODULE_AUTHOR("Brocade Communications Systems, Inc.");
1676MODULE_VERSION(BFAD_DRIVER_VERSION);