blob: 66fb72531b34caab0323797761d68ac2ab0e6fbc [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;
56int pcie_max_read_reqsz;
Jing Huangab2a9ba2010-07-08 20:02:55 -070057int bfa_debugfs_enable = 1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070058int msix_disable_cb = 0, msix_disable_ct = 0;
Krishna Gudipati61e62e22011-06-24 20:29:07 -070059int max_xfer_size = BFAD_MAX_SECTORS >> 1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -070060
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]");
142module_param(pcie_max_read_reqsz, int, S_IRUGO | S_IWUSR);
143MODULE_PARM_DESC(pcie_max_read_reqsz, "PCIe max read request size, default=0 "
144 "(use system setting), Range[128|256|512|1024|2048|4096]");
Jing Huangab2a9ba2010-07-08 20:02:55 -0700145module_param(bfa_debugfs_enable, int, S_IRUGO | S_IWUSR);
146MODULE_PARM_DESC(bfa_debugfs_enable, "Enables debugfs feature, default=1,"
147 " Range[false:0|true:1]");
Krishna Gudipati61e62e22011-06-24 20:29:07 -0700148module_param(max_xfer_size, int, S_IRUGO | S_IWUSR);
149MODULE_PARM_DESC(max_xfer_size, "default=32MB,"
150 " Range[64k|128k|256k|512k|1024k|2048k]");
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{
Jing Huang7725ccf2009-09-23 17:46:15 -0700534 struct bfa_meminfo_s *hal_meminfo = &bfad->meminfo;
Krishna Gudipati45070252011-06-24 20:24:29 -0700535 struct bfa_mem_dma_s *dma_info, *dma_elem;
536 struct bfa_mem_kva_s *kva_info, *kva_elem;
537 struct list_head *dm_qe, *km_qe;
Jing Huang7725ccf2009-09-23 17:46:15 -0700538
Krishna Gudipati45070252011-06-24 20:24:29 -0700539 dma_info = &hal_meminfo->dma_info;
540 kva_info = &hal_meminfo->kva_info;
541
542 /* Iterate through the KVA meminfo queue */
543 list_for_each(km_qe, &kva_info->qe) {
544 kva_elem = (struct bfa_mem_kva_s *) km_qe;
545 vfree(kva_elem->kva);
546 }
547
548 /* Iterate through the DMA meminfo queue */
549 list_for_each(dm_qe, &dma_info->qe) {
550 dma_elem = (struct bfa_mem_dma_s *) dm_qe;
551 dma_free_coherent(&bfad->pcidev->dev,
552 dma_elem->mem_len, dma_elem->kva,
553 (dma_addr_t) dma_elem->dma);
Jing Huang7725ccf2009-09-23 17:46:15 -0700554 }
555
556 memset(hal_meminfo, 0, sizeof(struct bfa_meminfo_s));
557}
558
559void
560bfad_update_hal_cfg(struct bfa_iocfc_cfg_s *bfa_cfg)
561{
562 if (num_rports > 0)
563 bfa_cfg->fwcfg.num_rports = num_rports;
564 if (num_ios > 0)
565 bfa_cfg->fwcfg.num_ioim_reqs = num_ios;
566 if (num_tms > 0)
567 bfa_cfg->fwcfg.num_tskim_reqs = num_tms;
Krishna Gudipati45070252011-06-24 20:24:29 -0700568 if (num_fcxps > 0 && num_fcxps <= BFA_FCXP_MAX)
Jing Huang7725ccf2009-09-23 17:46:15 -0700569 bfa_cfg->fwcfg.num_fcxp_reqs = num_fcxps;
Krishna Gudipati45070252011-06-24 20:24:29 -0700570 if (num_ufbufs > 0 && num_ufbufs <= BFA_UF_MAX)
Jing Huang7725ccf2009-09-23 17:46:15 -0700571 bfa_cfg->fwcfg.num_uf_bufs = num_ufbufs;
572 if (reqq_size > 0)
573 bfa_cfg->drvcfg.num_reqq_elems = reqq_size;
574 if (rspq_size > 0)
575 bfa_cfg->drvcfg.num_rspq_elems = rspq_size;
Krishna Gudipati45070252011-06-24 20:24:29 -0700576 if (num_sgpgs > 0 && num_sgpgs <= BFA_SGPG_MAX)
Jing Huang7725ccf2009-09-23 17:46:15 -0700577 bfa_cfg->drvcfg.num_sgpgs = num_sgpgs;
578
579 /*
580 * populate the hal values back to the driver for sysfs use.
581 * otherwise, the default values will be shown as 0 in sysfs
582 */
583 num_rports = bfa_cfg->fwcfg.num_rports;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700584 num_ios = bfa_cfg->fwcfg.num_ioim_reqs;
585 num_tms = bfa_cfg->fwcfg.num_tskim_reqs;
586 num_fcxps = bfa_cfg->fwcfg.num_fcxp_reqs;
Jing Huang7725ccf2009-09-23 17:46:15 -0700587 num_ufbufs = bfa_cfg->fwcfg.num_uf_bufs;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700588 reqq_size = bfa_cfg->drvcfg.num_reqq_elems;
589 rspq_size = bfa_cfg->drvcfg.num_rspq_elems;
590 num_sgpgs = bfa_cfg->drvcfg.num_sgpgs;
Jing Huang7725ccf2009-09-23 17:46:15 -0700591}
592
593bfa_status_t
594bfad_hal_mem_alloc(struct bfad_s *bfad)
595{
596 struct bfa_meminfo_s *hal_meminfo = &bfad->meminfo;
Krishna Gudipati45070252011-06-24 20:24:29 -0700597 struct bfa_mem_dma_s *dma_info, *dma_elem;
598 struct bfa_mem_kva_s *kva_info, *kva_elem;
599 struct list_head *dm_qe, *km_qe;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700600 bfa_status_t rc = BFA_STATUS_OK;
Krishna Gudipati45070252011-06-24 20:24:29 -0700601 dma_addr_t phys_addr;
Jing Huang7725ccf2009-09-23 17:46:15 -0700602
603 bfa_cfg_get_default(&bfad->ioc_cfg);
Jing Huang7725ccf2009-09-23 17:46:15 -0700604 bfad_update_hal_cfg(&bfad->ioc_cfg);
605 bfad->cfg_data.ioc_queue_depth = bfad->ioc_cfg.fwcfg.num_ioim_reqs;
Krishna Gudipati45070252011-06-24 20:24:29 -0700606 bfa_cfg_get_meminfo(&bfad->ioc_cfg, hal_meminfo, &bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -0700607
Krishna Gudipati45070252011-06-24 20:24:29 -0700608 dma_info = &hal_meminfo->dma_info;
609 kva_info = &hal_meminfo->kva_info;
Jing Huang7725ccf2009-09-23 17:46:15 -0700610
Krishna Gudipati45070252011-06-24 20:24:29 -0700611 /* Iterate through the KVA meminfo queue */
612 list_for_each(km_qe, &kva_info->qe) {
613 kva_elem = (struct bfa_mem_kva_s *) km_qe;
614 kva_elem->kva = vmalloc(kva_elem->mem_len);
615 if (kva_elem->kva == NULL) {
616 bfad_hal_mem_release(bfad);
617 rc = BFA_STATUS_ENOMEM;
618 goto ext;
Jing Huang7725ccf2009-09-23 17:46:15 -0700619 }
Krishna Gudipati45070252011-06-24 20:24:29 -0700620 memset(kva_elem->kva, 0, kva_elem->mem_len);
621 }
622
623 /* Iterate through the DMA meminfo queue */
624 list_for_each(dm_qe, &dma_info->qe) {
625 dma_elem = (struct bfa_mem_dma_s *) dm_qe;
626 dma_elem->kva = dma_alloc_coherent(&bfad->pcidev->dev,
627 dma_elem->mem_len,
628 &phys_addr, GFP_KERNEL);
629 if (dma_elem->kva == NULL) {
630 bfad_hal_mem_release(bfad);
631 rc = BFA_STATUS_ENOMEM;
632 goto ext;
633 }
634 dma_elem->dma = phys_addr;
635 memset(dma_elem->kva, 0, dma_elem->mem_len);
Jing Huang7725ccf2009-09-23 17:46:15 -0700636 }
637ext:
638 return rc;
639}
640
Jing Huang5fbe25c2010-10-18 17:17:23 -0700641/*
Jing Huang7725ccf2009-09-23 17:46:15 -0700642 * Create a vport under a vf.
643 */
644bfa_status_t
645bfad_vport_create(struct bfad_s *bfad, u16 vf_id,
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700646 struct bfa_lport_cfg_s *port_cfg, struct device *dev)
Jing Huang7725ccf2009-09-23 17:46:15 -0700647{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700648 struct bfad_vport_s *vport;
649 int rc = BFA_STATUS_OK;
650 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700651 struct completion fcomp;
652
653 vport = kzalloc(sizeof(struct bfad_vport_s), GFP_KERNEL);
654 if (!vport) {
655 rc = BFA_STATUS_ENOMEM;
656 goto ext;
657 }
658
659 vport->drv_port.bfad = bfad;
660 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700661 rc = bfa_fcs_vport_create(&vport->fcs_vport, &bfad->bfa_fcs, vf_id,
662 port_cfg, vport);
Jing Huang7725ccf2009-09-23 17:46:15 -0700663 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
664
665 if (rc != BFA_STATUS_OK)
666 goto ext_free_vport;
667
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700668 if (port_cfg->roles & BFA_LPORT_ROLE_FCP_IM) {
Jing Huangb5042932010-03-19 11:05:39 -0700669 rc = bfad_im_scsi_host_alloc(bfad, vport->drv_port.im_port,
670 dev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700671 if (rc != BFA_STATUS_OK)
672 goto ext_free_fcs_vport;
673 }
674
675 spin_lock_irqsave(&bfad->bfad_lock, flags);
676 bfa_fcs_vport_start(&vport->fcs_vport);
677 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
678
679 return BFA_STATUS_OK;
680
681ext_free_fcs_vport:
682 spin_lock_irqsave(&bfad->bfad_lock, flags);
683 vport->comp_del = &fcomp;
684 init_completion(vport->comp_del);
685 bfa_fcs_vport_delete(&vport->fcs_vport);
686 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
687 wait_for_completion(vport->comp_del);
688ext_free_vport:
689 kfree(vport);
690ext:
691 return rc;
692}
693
Jing Huang7725ccf2009-09-23 17:46:15 -0700694void
695bfad_bfa_tmo(unsigned long data)
696{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700697 struct bfad_s *bfad = (struct bfad_s *) data;
698 unsigned long flags;
699 struct list_head doneq;
Jing Huang7725ccf2009-09-23 17:46:15 -0700700
701 spin_lock_irqsave(&bfad->bfad_lock, flags);
702
Maggie Zhangf7f738122010-12-09 19:08:43 -0800703 bfa_timer_beat(&bfad->bfa.timer_mod);
Jing Huang7725ccf2009-09-23 17:46:15 -0700704
705 bfa_comp_deq(&bfad->bfa, &doneq);
706 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
707
708 if (!list_empty(&doneq)) {
709 bfa_comp_process(&bfad->bfa, &doneq);
710 spin_lock_irqsave(&bfad->bfad_lock, flags);
711 bfa_comp_free(&bfad->bfa, &doneq);
712 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
713 }
714
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700715 mod_timer(&bfad->hal_tmo,
716 jiffies + msecs_to_jiffies(BFA_TIMER_FREQ));
Jing Huang7725ccf2009-09-23 17:46:15 -0700717}
718
719void
720bfad_init_timer(struct bfad_s *bfad)
721{
722 init_timer(&bfad->hal_tmo);
723 bfad->hal_tmo.function = bfad_bfa_tmo;
724 bfad->hal_tmo.data = (unsigned long)bfad;
725
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700726 mod_timer(&bfad->hal_tmo,
727 jiffies + msecs_to_jiffies(BFA_TIMER_FREQ));
Jing Huang7725ccf2009-09-23 17:46:15 -0700728}
729
730int
731bfad_pci_init(struct pci_dev *pdev, struct bfad_s *bfad)
732{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700733 int rc = -ENODEV;
Jing Huang7725ccf2009-09-23 17:46:15 -0700734
735 if (pci_enable_device(pdev)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700736 printk(KERN_ERR "pci_enable_device fail %p\n", pdev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700737 goto out;
738 }
739
740 if (pci_request_regions(pdev, BFAD_DRIVER_NAME))
741 goto out_disable_device;
742
743 pci_set_master(pdev);
744
745
Krishna Gudipati10a07372011-06-24 20:23:38 -0700746 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) ||
747 (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0)) {
748 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) ||
749 (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)) != 0)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700750 printk(KERN_ERR "pci_set_dma_mask fail %p\n", pdev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700751 goto out_release_region;
752 }
Krishna Gudipati10a07372011-06-24 20:23:38 -0700753 }
Jing Huang7725ccf2009-09-23 17:46:15 -0700754
Jing Huangb3522f02010-03-19 11:06:44 -0700755 bfad->pci_bar0_kva = pci_iomap(pdev, 0, pci_resource_len(pdev, 0));
Krishna Gudipati11189202011-06-13 15:50:35 -0700756 bfad->pci_bar2_kva = pci_iomap(pdev, 2, pci_resource_len(pdev, 2));
Jing Huang7725ccf2009-09-23 17:46:15 -0700757
758 if (bfad->pci_bar0_kva == NULL) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700759 printk(KERN_ERR "Fail to map bar0\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700760 goto out_release_region;
761 }
762
763 bfad->hal_pcidev.pci_slot = PCI_SLOT(pdev->devfn);
764 bfad->hal_pcidev.pci_func = PCI_FUNC(pdev->devfn);
765 bfad->hal_pcidev.pci_bar_kva = bfad->pci_bar0_kva;
766 bfad->hal_pcidev.device_id = pdev->device;
Krishna Gudipati1a4d8e12011-06-24 20:22:28 -0700767 bfad->hal_pcidev.ssid = pdev->subsystem_device;
Jing Huang7725ccf2009-09-23 17:46:15 -0700768 bfad->pci_name = pci_name(pdev);
769
770 bfad->pci_attr.vendor_id = pdev->vendor;
771 bfad->pci_attr.device_id = pdev->device;
772 bfad->pci_attr.ssid = pdev->subsystem_device;
773 bfad->pci_attr.ssvid = pdev->subsystem_vendor;
774 bfad->pci_attr.pcifn = PCI_FUNC(pdev->devfn);
775
776 bfad->pcidev = pdev;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700777
778 /* Adjust PCIe Maximum Read Request Size */
779 if (pcie_max_read_reqsz > 0) {
780 int pcie_cap_reg;
781 u16 pcie_dev_ctl;
782 u16 mask = 0xffff;
783
784 switch (pcie_max_read_reqsz) {
785 case 128:
786 mask = 0x0;
787 break;
788 case 256:
789 mask = 0x1000;
790 break;
791 case 512:
792 mask = 0x2000;
793 break;
794 case 1024:
795 mask = 0x3000;
796 break;
797 case 2048:
798 mask = 0x4000;
799 break;
800 case 4096:
801 mask = 0x5000;
802 break;
803 default:
804 break;
805 }
806
807 pcie_cap_reg = pci_find_capability(pdev, PCI_CAP_ID_EXP);
808 if (mask != 0xffff && pcie_cap_reg) {
809 pcie_cap_reg += 0x08;
810 pci_read_config_word(pdev, pcie_cap_reg, &pcie_dev_ctl);
811 if ((pcie_dev_ctl & 0x7000) != mask) {
812 printk(KERN_WARNING "BFA[%s]: "
813 "pcie_max_read_request_size is %d, "
814 "reset to %d\n", bfad->pci_name,
815 (1 << ((pcie_dev_ctl & 0x7000) >> 12)) << 7,
816 pcie_max_read_reqsz);
817
818 pcie_dev_ctl &= ~0x7000;
819 pci_write_config_word(pdev, pcie_cap_reg,
820 pcie_dev_ctl | mask);
821 }
822 }
823 }
824
Jing Huang7725ccf2009-09-23 17:46:15 -0700825 return 0;
826
827out_release_region:
828 pci_release_regions(pdev);
829out_disable_device:
830 pci_disable_device(pdev);
831out:
832 return rc;
833}
834
835void
836bfad_pci_uninit(struct pci_dev *pdev, struct bfad_s *bfad)
837{
Jing Huang7725ccf2009-09-23 17:46:15 -0700838 pci_iounmap(pdev, bfad->pci_bar0_kva);
Krishna Gudipati11189202011-06-13 15:50:35 -0700839 pci_iounmap(pdev, bfad->pci_bar2_kva);
Jing Huang7725ccf2009-09-23 17:46:15 -0700840 pci_release_regions(pdev);
841 pci_disable_device(pdev);
842 pci_set_drvdata(pdev, NULL);
843}
844
Jing Huang7725ccf2009-09-23 17:46:15 -0700845bfa_status_t
846bfad_drv_init(struct bfad_s *bfad)
847{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700848 bfa_status_t rc;
849 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700850
851 bfad->cfg_data.rport_del_timeout = rport_del_timeout;
852 bfad->cfg_data.lun_queue_depth = bfa_lun_queue_depth;
853 bfad->cfg_data.io_max_sge = bfa_io_max_sge;
854 bfad->cfg_data.binding_method = FCP_PWWN_BINDING;
855
856 rc = bfad_hal_mem_alloc(bfad);
857 if (rc != BFA_STATUS_OK) {
858 printk(KERN_WARNING "bfad%d bfad_hal_mem_alloc failure\n",
859 bfad->inst_no);
860 printk(KERN_WARNING
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700861 "Not enough memory to attach all Brocade HBA ports, %s",
862 "System may need more memory.\n");
Jing Huang7725ccf2009-09-23 17:46:15 -0700863 goto out_hal_mem_alloc_failure;
864 }
865
Maggie Zhangf7f738122010-12-09 19:08:43 -0800866 bfad->bfa.trcmod = bfad->trcmod;
867 bfad->bfa.plog = &bfad->plog_buf;
Jing Huang7725ccf2009-09-23 17:46:15 -0700868 bfa_plog_init(&bfad->plog_buf);
869 bfa_plog_str(&bfad->plog_buf, BFA_PL_MID_DRVR, BFA_PL_EID_DRIVER_START,
870 0, "Driver Attach");
871
872 bfa_attach(&bfad->bfa, bfad, &bfad->ioc_cfg, &bfad->meminfo,
873 &bfad->hal_pcidev);
874
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700875 /* FCS INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -0700876 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800877 bfad->bfa_fcs.trcmod = bfad->trcmod;
Krishna Gudipati82794a22010-03-03 17:43:30 -0800878 bfa_fcs_attach(&bfad->bfa_fcs, &bfad->bfa, bfad, BFA_FALSE);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800879 bfad->bfa_fcs.fdmi_enabled = fdmi_enable;
Krishna Gudipati75332a72011-06-13 15:54:31 -0700880 bfa_fcs_init(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700881 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
882
883 bfad->bfad_flags |= BFAD_DRV_INIT_DONE;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700884
Krishna Gudipati75332a72011-06-13 15:54:31 -0700885 /* configure base port */
886 rc = bfad_cfg_pport(bfad, BFA_LPORT_ROLE_FCP_IM);
887 if (rc != BFA_STATUS_OK)
888 goto out_cfg_pport_fail;
889
Jing Huang7725ccf2009-09-23 17:46:15 -0700890 return BFA_STATUS_OK;
891
Krishna Gudipati75332a72011-06-13 15:54:31 -0700892out_cfg_pport_fail:
893 /* fcs exit - on cfg pport failure */
894 spin_lock_irqsave(&bfad->bfad_lock, flags);
895 init_completion(&bfad->comp);
896 bfad->pport.flags |= BFAD_PORT_DELETE;
897 bfa_fcs_exit(&bfad->bfa_fcs);
898 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
899 wait_for_completion(&bfad->comp);
900 /* bfa detach - free hal memory */
901 bfa_detach(&bfad->bfa);
902 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700903out_hal_mem_alloc_failure:
904 return BFA_STATUS_FAILED;
905}
906
907void
908bfad_drv_uninit(struct bfad_s *bfad)
909{
Krishna Gudipatie6714322010-03-03 17:44:02 -0800910 unsigned long flags;
911
912 spin_lock_irqsave(&bfad->bfad_lock, flags);
913 init_completion(&bfad->comp);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800914 bfa_iocfc_stop(&bfad->bfa);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800915 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
916 wait_for_completion(&bfad->comp);
917
Jing Huang7725ccf2009-09-23 17:46:15 -0700918 del_timer_sync(&bfad->hal_tmo);
919 bfa_isr_disable(&bfad->bfa);
920 bfa_detach(&bfad->bfa);
921 bfad_remove_intr(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -0700922 bfad_hal_mem_release(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -0800923
924 bfad->bfad_flags &= ~BFAD_DRV_INIT_DONE;
Jing Huang7725ccf2009-09-23 17:46:15 -0700925}
926
927void
928bfad_drv_start(struct bfad_s *bfad)
929{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700930 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700931
932 spin_lock_irqsave(&bfad->bfad_lock, flags);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800933 bfa_iocfc_start(&bfad->bfa);
Krishna Gudipati75332a72011-06-13 15:54:31 -0700934 bfa_fcs_pbc_vport_init(&bfad->bfa_fcs);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800935 bfa_fcs_fabric_modstart(&bfad->bfa_fcs);
Jing Huang7725ccf2009-09-23 17:46:15 -0700936 bfad->bfad_flags |= BFAD_HAL_START_DONE;
937 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
938
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700939 if (bfad->im)
940 flush_workqueue(bfad->im->drv_workq);
Jing Huang7725ccf2009-09-23 17:46:15 -0700941}
942
943void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700944bfad_fcs_stop(struct bfad_s *bfad)
Jing Huang7725ccf2009-09-23 17:46:15 -0700945{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700946 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -0700947
948 spin_lock_irqsave(&bfad->bfad_lock, flags);
949 init_completion(&bfad->comp);
950 bfad->pport.flags |= BFAD_PORT_DELETE;
951 bfa_fcs_exit(&bfad->bfa_fcs);
952 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
953 wait_for_completion(&bfad->comp);
954
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700955 bfa_sm_send_event(bfad, BFAD_E_FCS_EXIT_COMP);
956}
957
958void
959bfad_stop(struct bfad_s *bfad)
960{
961 unsigned long flags;
962
Jing Huang7725ccf2009-09-23 17:46:15 -0700963 spin_lock_irqsave(&bfad->bfad_lock, flags);
964 init_completion(&bfad->comp);
Maggie Zhangf7f738122010-12-09 19:08:43 -0800965 bfa_iocfc_stop(&bfad->bfa);
Jing Huang7725ccf2009-09-23 17:46:15 -0700966 bfad->bfad_flags &= ~BFAD_HAL_START_DONE;
967 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
968 wait_for_completion(&bfad->comp);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700969
970 bfa_sm_send_event(bfad, BFAD_E_EXIT_COMP);
Jing Huang7725ccf2009-09-23 17:46:15 -0700971}
972
973bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700974bfad_cfg_pport(struct bfad_s *bfad, enum bfa_lport_role role)
Jing Huang7725ccf2009-09-23 17:46:15 -0700975{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700976 int rc = BFA_STATUS_OK;
Jing Huang7725ccf2009-09-23 17:46:15 -0700977
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700978 /* Allocate scsi_host for the physical port */
979 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
980 (role & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -0700981 if (bfad->pport.im_port == NULL) {
982 rc = BFA_STATUS_FAILED;
983 goto out;
984 }
985
Jing Huangb5042932010-03-19 11:05:39 -0700986 rc = bfad_im_scsi_host_alloc(bfad, bfad->pport.im_port,
987 &bfad->pcidev->dev);
Jing Huang7725ccf2009-09-23 17:46:15 -0700988 if (rc != BFA_STATUS_OK)
989 goto out;
990
Krishna Gudipatia36c61f2010-09-15 11:50:55 -0700991 bfad->pport.roles |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -0700992 }
993
994 bfad->bfad_flags |= BFAD_CFG_PPORT_DONE;
995
996out:
997 return rc;
998}
999
1000void
1001bfad_uncfg_pport(struct bfad_s *bfad)
1002{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001003 if ((supported_fc4s & BFA_LPORT_ROLE_FCP_IM) &&
1004 (bfad->pport.roles & BFA_LPORT_ROLE_FCP_IM)) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001005 bfad_im_scsi_host_free(bfad, bfad->pport.im_port);
1006 bfad_im_port_clean(bfad->pport.im_port);
1007 kfree(bfad->pport.im_port);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001008 bfad->pport.roles &= ~BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001009 }
1010
1011 bfad->bfad_flags &= ~BFAD_CFG_PPORT_DONE;
1012}
1013
Krishna Gudipatie6714322010-03-03 17:44:02 -08001014bfa_status_t
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001015bfad_start_ops(struct bfad_s *bfad) {
1016
1017 int retval;
1018 unsigned long flags;
1019 struct bfad_vport_s *vport, *vport_new;
1020 struct bfa_fcs_driver_info_s driver_info;
1021
Krishna Gudipati61e62e22011-06-24 20:29:07 -07001022 /* Limit min/max. xfer size to [64k-32MB] */
1023 if (max_xfer_size < BFAD_MIN_SECTORS >> 1)
1024 max_xfer_size = BFAD_MIN_SECTORS >> 1;
1025 if (max_xfer_size > BFAD_MAX_SECTORS >> 1)
1026 max_xfer_size = BFAD_MAX_SECTORS >> 1;
1027
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001028 /* Fill the driver_info info to fcs*/
1029 memset(&driver_info, 0, sizeof(driver_info));
1030 strncpy(driver_info.version, BFAD_DRIVER_VERSION,
1031 sizeof(driver_info.version) - 1);
1032 if (host_name)
1033 strncpy(driver_info.host_machine_name, host_name,
1034 sizeof(driver_info.host_machine_name) - 1);
1035 if (os_name)
1036 strncpy(driver_info.host_os_name, os_name,
1037 sizeof(driver_info.host_os_name) - 1);
1038 if (os_patch)
1039 strncpy(driver_info.host_os_patch, os_patch,
1040 sizeof(driver_info.host_os_patch) - 1);
1041
1042 strncpy(driver_info.os_device_name, bfad->pci_name,
1043 sizeof(driver_info.os_device_name - 1));
1044
Krishna Gudipati75332a72011-06-13 15:54:31 -07001045 /* FCS driver info init */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001046 spin_lock_irqsave(&bfad->bfad_lock, flags);
1047 bfa_fcs_driver_info_init(&bfad->bfa_fcs, &driver_info);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001048 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001049
Krishna Gudipati75332a72011-06-13 15:54:31 -07001050 /*
1051 * FCS update cfg - reset the pwwn/nwwn of fabric base logical port
1052 * with values learned during bfa_init firmware GETATTR REQ.
1053 */
1054 bfa_fcs_update_cfg(&bfad->bfa_fcs);
1055
1056 /* Setup fc host fixed attribute if the lk supports */
1057 bfad_fc_host_init(bfad->pport.im_port);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001058
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001059 /* BFAD level FC4 IM specific resource allocation */
1060 retval = bfad_im_probe(bfad);
1061 if (retval != BFA_STATUS_OK) {
1062 printk(KERN_WARNING "bfad_im_probe failed\n");
1063 if (bfa_sm_cmp_state(bfad, bfad_sm_initializing))
1064 bfa_sm_set_state(bfad, bfad_sm_failed);
1065 bfad_im_probe_undo(bfad);
1066 bfad->bfad_flags &= ~BFAD_FC4_PROBE_DONE;
1067 bfad_uncfg_pport(bfad);
1068 bfad_stop(bfad);
1069 return BFA_STATUS_FAILED;
1070 } else
1071 bfad->bfad_flags |= BFAD_FC4_PROBE_DONE;
1072
Krishna Gudipatie6714322010-03-03 17:44:02 -08001073 bfad_drv_start(bfad);
1074
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001075 /* Complete pbc vport create */
1076 list_for_each_entry_safe(vport, vport_new, &bfad->pbc_vport_list,
1077 list_entry) {
Jing Huangd9883542010-07-08 19:46:26 -07001078 struct fc_vport_identifiers vid;
1079 struct fc_vport *fc_vport;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001080 char pwwn_buf[BFA_STRING_32];
Jing Huangd9883542010-07-08 19:46:26 -07001081
1082 memset(&vid, 0, sizeof(vid));
1083 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1084 vid.vport_type = FC_PORTTYPE_NPIV;
1085 vid.disable = false;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001086 vid.node_name = wwn_to_u64((u8 *)
1087 (&((vport->fcs_vport).lport.port_cfg.nwwn)));
1088 vid.port_name = wwn_to_u64((u8 *)
1089 (&((vport->fcs_vport).lport.port_cfg.pwwn)));
Jing Huangd9883542010-07-08 19:46:26 -07001090 fc_vport = fc_vport_create(bfad->pport.im_port->shost, 0, &vid);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001091 if (!fc_vport) {
1092 wwn2str(pwwn_buf, vid.port_name);
Jing Huangd9883542010-07-08 19:46:26 -07001093 printk(KERN_WARNING "bfad%d: failed to create pbc vport"
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001094 " %s\n", bfad->inst_no, pwwn_buf);
1095 }
1096 list_del(&vport->list_entry);
1097 kfree(vport);
Jing Huangd9883542010-07-08 19:46:26 -07001098 }
1099
Krishna Gudipatie6714322010-03-03 17:44:02 -08001100 /*
1101 * If bfa_linkup_delay is set to -1 default; try to retrive the
Maggie Zhangf16a1752010-12-09 19:12:32 -08001102 * value using the bfad_get_linkup_delay(); else use the
Krishna Gudipatie6714322010-03-03 17:44:02 -08001103 * passed in module param value as the bfa_linkup_delay.
1104 */
1105 if (bfa_linkup_delay < 0) {
Maggie Zhangf16a1752010-12-09 19:12:32 -08001106 bfa_linkup_delay = bfad_get_linkup_delay(bfad);
1107 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001108 bfa_linkup_delay = -1;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001109 } else
Maggie Zhangf16a1752010-12-09 19:12:32 -08001110 bfad_rport_online_wait(bfad);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001111
Jing Huang88166242010-12-09 17:11:53 -08001112 BFA_LOG(KERN_INFO, bfad, bfa_log_level, "bfa device claimed\n");
Krishna Gudipatie6714322010-03-03 17:44:02 -08001113
1114 return BFA_STATUS_OK;
Krishna Gudipatie6714322010-03-03 17:44:02 -08001115}
1116
1117int
Jing Huangd9883542010-07-08 19:46:26 -07001118bfad_worker(void *ptr)
Krishna Gudipatie6714322010-03-03 17:44:02 -08001119{
1120 struct bfad_s *bfad;
1121 unsigned long flags;
1122
1123 bfad = (struct bfad_s *)ptr;
1124
1125 while (!kthread_should_stop()) {
1126
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001127 /* Send event BFAD_E_INIT_SUCCESS */
1128 bfa_sm_send_event(bfad, BFAD_E_INIT_SUCCESS);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001129
1130 spin_lock_irqsave(&bfad->bfad_lock, flags);
1131 bfad->bfad_tsk = NULL;
1132 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1133
1134 break;
1135 }
1136
1137 return 0;
1138}
1139
Jing Huang5fbe25c2010-10-18 17:17:23 -07001140/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001141 * BFA driver interrupt functions
1142 */
1143irqreturn_t
1144bfad_intx(int irq, void *dev_id)
1145{
1146 struct bfad_s *bfad = dev_id;
1147 struct list_head doneq;
1148 unsigned long flags;
1149 bfa_boolean_t rc;
1150
1151 spin_lock_irqsave(&bfad->bfad_lock, flags);
1152 rc = bfa_intx(&bfad->bfa);
1153 if (!rc) {
1154 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1155 return IRQ_NONE;
1156 }
1157
1158 bfa_comp_deq(&bfad->bfa, &doneq);
1159 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1160
1161 if (!list_empty(&doneq)) {
1162 bfa_comp_process(&bfad->bfa, &doneq);
1163
1164 spin_lock_irqsave(&bfad->bfad_lock, flags);
1165 bfa_comp_free(&bfad->bfa, &doneq);
1166 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001167 }
1168
1169 return IRQ_HANDLED;
1170
1171}
1172
1173static irqreturn_t
1174bfad_msix(int irq, void *dev_id)
1175{
1176 struct bfad_msix_s *vec = dev_id;
1177 struct bfad_s *bfad = vec->bfad;
1178 struct list_head doneq;
1179 unsigned long flags;
1180
1181 spin_lock_irqsave(&bfad->bfad_lock, flags);
1182
1183 bfa_msix(&bfad->bfa, vec->msix.entry);
1184 bfa_comp_deq(&bfad->bfa, &doneq);
1185 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1186
1187 if (!list_empty(&doneq)) {
1188 bfa_comp_process(&bfad->bfa, &doneq);
1189
1190 spin_lock_irqsave(&bfad->bfad_lock, flags);
1191 bfa_comp_free(&bfad->bfa, &doneq);
1192 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1193 }
1194
1195 return IRQ_HANDLED;
1196}
1197
Jing Huang5fbe25c2010-10-18 17:17:23 -07001198/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001199 * Initialize the MSIX entry table.
1200 */
1201static void
1202bfad_init_msix_entry(struct bfad_s *bfad, struct msix_entry *msix_entries,
1203 int mask, int max_bit)
1204{
1205 int i;
1206 int match = 0x00000001;
1207
1208 for (i = 0, bfad->nvec = 0; i < MAX_MSIX_ENTRY; i++) {
1209 if (mask & match) {
1210 bfad->msix_tab[bfad->nvec].msix.entry = i;
1211 bfad->msix_tab[bfad->nvec].bfad = bfad;
1212 msix_entries[bfad->nvec].entry = i;
1213 bfad->nvec++;
1214 }
1215
1216 match <<= 1;
1217 }
1218
1219}
1220
1221int
1222bfad_install_msix_handler(struct bfad_s *bfad)
1223{
1224 int i, error = 0;
1225
1226 for (i = 0; i < bfad->nvec; i++) {
1227 sprintf(bfad->msix_tab[i].name, "bfa-%s-%s",
1228 bfad->pci_name,
Krishna Gudipati11189202011-06-13 15:50:35 -07001229 ((bfa_asic_id_cb(bfad->hal_pcidev.device_id)) ?
1230 msix_name_cb[i] : msix_name_ct[i]));
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001231
1232 error = request_irq(bfad->msix_tab[i].msix.vector,
1233 (irq_handler_t) bfad_msix, 0,
1234 bfad->msix_tab[i].name, &bfad->msix_tab[i]);
1235 bfa_trc(bfad, i);
1236 bfa_trc(bfad, bfad->msix_tab[i].msix.vector);
1237 if (error) {
1238 int j;
1239
1240 for (j = 0; j < i; j++)
1241 free_irq(bfad->msix_tab[j].msix.vector,
1242 &bfad->msix_tab[j]);
1243
Krishna Gudipati61e62e22011-06-24 20:29:07 -07001244 bfad->bfad_flags &= ~BFAD_MSIX_ON;
1245 pci_disable_msix(bfad->pcidev);
1246
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001247 return 1;
1248 }
1249 }
1250
1251 return 0;
1252}
1253
Jing Huang5fbe25c2010-10-18 17:17:23 -07001254/*
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001255 * Setup MSIX based interrupt.
1256 */
1257int
1258bfad_setup_intr(struct bfad_s *bfad)
1259{
1260 int error = 0;
1261 u32 mask = 0, i, num_bit = 0, max_bit = 0;
1262 struct msix_entry msix_entries[MAX_MSIX_ENTRY];
1263 struct pci_dev *pdev = bfad->pcidev;
Krishna Gudipati10a07372011-06-24 20:23:38 -07001264 u16 reg;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001265
1266 /* Call BFA to get the msix map for this PCI function. */
1267 bfa_msix_getvecs(&bfad->bfa, &mask, &num_bit, &max_bit);
1268
1269 /* Set up the msix entry table */
1270 bfad_init_msix_entry(bfad, msix_entries, mask, max_bit);
1271
Krishna Gudipati11189202011-06-13 15:50:35 -07001272 if ((bfa_asic_id_ctc(pdev->device) && !msix_disable_ct) ||
1273 (bfa_asic_id_cb(pdev->device) && !msix_disable_cb)) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001274
1275 error = pci_enable_msix(bfad->pcidev, msix_entries, bfad->nvec);
1276 if (error) {
1277 /*
1278 * Only error number of vector is available.
1279 * We don't have a mechanism to map multiple
1280 * interrupts into one vector, so even if we
1281 * can try to request less vectors, we don't
1282 * know how to associate interrupt events to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001283 * vectors. Linux doesn't duplicate vectors
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001284 * in the MSIX table for this case.
1285 */
1286
1287 printk(KERN_WARNING "bfad%d: "
1288 "pci_enable_msix failed (%d),"
1289 " use line based.\n", bfad->inst_no, error);
1290
1291 goto line_based;
1292 }
1293
Krishna Gudipati10a07372011-06-24 20:23:38 -07001294 /* Disable INTX in MSI-X mode */
1295 pci_read_config_word(pdev, PCI_COMMAND, &reg);
1296
1297 if (!(reg & PCI_COMMAND_INTX_DISABLE))
1298 pci_write_config_word(pdev, PCI_COMMAND,
1299 reg | PCI_COMMAND_INTX_DISABLE);
1300
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001301 /* Save the vectors */
1302 for (i = 0; i < bfad->nvec; i++) {
1303 bfa_trc(bfad, msix_entries[i].vector);
1304 bfad->msix_tab[i].msix.vector = msix_entries[i].vector;
1305 }
1306
1307 bfa_msix_init(&bfad->bfa, bfad->nvec);
1308
1309 bfad->bfad_flags |= BFAD_MSIX_ON;
1310
1311 return error;
1312 }
1313
1314line_based:
1315 error = 0;
1316 if (request_irq
1317 (bfad->pcidev->irq, (irq_handler_t) bfad_intx, BFAD_IRQ_FLAGS,
1318 BFAD_DRIVER_NAME, bfad) != 0) {
1319 /* Enable interrupt handler failed */
1320 return 1;
1321 }
Krishna Gudipati61e62e22011-06-24 20:29:07 -07001322 bfad->bfad_flags |= BFAD_INTX_ON;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001323
1324 return error;
1325}
1326
1327void
1328bfad_remove_intr(struct bfad_s *bfad)
1329{
1330 int i;
1331
1332 if (bfad->bfad_flags & BFAD_MSIX_ON) {
1333 for (i = 0; i < bfad->nvec; i++)
1334 free_irq(bfad->msix_tab[i].msix.vector,
1335 &bfad->msix_tab[i]);
1336
1337 pci_disable_msix(bfad->pcidev);
1338 bfad->bfad_flags &= ~BFAD_MSIX_ON;
Krishna Gudipati61e62e22011-06-24 20:29:07 -07001339 } else if (bfad->bfad_flags & BFAD_INTX_ON) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001340 free_irq(bfad->pcidev->irq, bfad);
1341 }
1342}
Jing Huang7725ccf2009-09-23 17:46:15 -07001343
Jing Huang5fbe25c2010-10-18 17:17:23 -07001344/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001345 * PCI probe entry.
1346 */
1347int
1348bfad_pci_probe(struct pci_dev *pdev, const struct pci_device_id *pid)
1349{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001350 struct bfad_s *bfad;
Krishna Gudipati7826f302011-07-20 16:59:13 -07001351 int error = -ENODEV, retval, i;
Jing Huang7725ccf2009-09-23 17:46:15 -07001352
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001353 /* For single port cards - only claim function 0 */
Krishna Gudipati8b070b42011-06-13 15:52:40 -07001354 if ((pdev->device == BFA_PCI_DEVICE_ID_FC_8G1P) &&
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001355 (PCI_FUNC(pdev->devfn) != 0))
Jing Huang7725ccf2009-09-23 17:46:15 -07001356 return -ENODEV;
1357
Jing Huang7725ccf2009-09-23 17:46:15 -07001358 bfad = kzalloc(sizeof(struct bfad_s), GFP_KERNEL);
1359 if (!bfad) {
1360 error = -ENOMEM;
1361 goto out;
1362 }
1363
1364 bfad->trcmod = kzalloc(sizeof(struct bfa_trc_mod_s), GFP_KERNEL);
1365 if (!bfad->trcmod) {
1366 printk(KERN_WARNING "Error alloc trace buffer!\n");
1367 error = -ENOMEM;
1368 goto out_alloc_trace_failure;
1369 }
1370
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001371 /* TRACE INIT */
Jing Huang7725ccf2009-09-23 17:46:15 -07001372 bfa_trc_init(bfad->trcmod);
1373 bfa_trc(bfad, bfad_inst);
1374
Krishna Gudipati7826f302011-07-20 16:59:13 -07001375 /* AEN INIT */
1376 INIT_LIST_HEAD(&bfad->free_aen_q);
1377 INIT_LIST_HEAD(&bfad->active_aen_q);
1378 for (i = 0; i < BFA_AEN_MAX_ENTRY; i++)
1379 list_add_tail(&bfad->aen_list[i].qe, &bfad->free_aen_q);
1380
Jing Huang7725ccf2009-09-23 17:46:15 -07001381 if (!(bfad_load_fwimg(pdev))) {
Jing Huang7725ccf2009-09-23 17:46:15 -07001382 kfree(bfad->trcmod);
1383 goto out_alloc_trace_failure;
1384 }
1385
1386 retval = bfad_pci_init(pdev, bfad);
1387 if (retval) {
1388 printk(KERN_WARNING "bfad_pci_init failure!\n");
1389 error = retval;
1390 goto out_pci_init_failure;
1391 }
1392
1393 mutex_lock(&bfad_mutex);
1394 bfad->inst_no = bfad_inst++;
1395 list_add_tail(&bfad->list_entry, &bfad_list);
1396 mutex_unlock(&bfad_mutex);
1397
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001398 /* Initializing the state machine: State set to uninit */
1399 bfa_sm_set_state(bfad, bfad_sm_uninit);
1400
Jing Huang7725ccf2009-09-23 17:46:15 -07001401 spin_lock_init(&bfad->bfad_lock);
1402 pci_set_drvdata(pdev, bfad);
1403
1404 bfad->ref_count = 0;
1405 bfad->pport.bfad = bfad;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001406 INIT_LIST_HEAD(&bfad->pbc_vport_list);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001407
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001408 /* Setup the debugfs node for this bfad */
1409 if (bfa_debugfs_enable)
1410 bfad_debugfs_init(&bfad->pport);
1411
Jing Huang7725ccf2009-09-23 17:46:15 -07001412 retval = bfad_drv_init(bfad);
1413 if (retval != BFA_STATUS_OK)
1414 goto out_drv_init_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001415
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001416 bfa_sm_send_event(bfad, BFAD_E_CREATE);
Jing Huang7725ccf2009-09-23 17:46:15 -07001417
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001418 if (bfa_sm_cmp_state(bfad, bfad_sm_uninit))
1419 goto out_bfad_sm_failure;
Jing Huang7725ccf2009-09-23 17:46:15 -07001420
Jing Huang7725ccf2009-09-23 17:46:15 -07001421 return 0;
1422
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001423out_bfad_sm_failure:
1424 bfa_detach(&bfad->bfa);
1425 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001426out_drv_init_failure:
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001427 /* Remove the debugfs node for this bfad */
1428 kfree(bfad->regdata);
1429 bfad_debugfs_exit(&bfad->pport);
Jing Huang7725ccf2009-09-23 17:46:15 -07001430 mutex_lock(&bfad_mutex);
1431 bfad_inst--;
1432 list_del(&bfad->list_entry);
1433 mutex_unlock(&bfad_mutex);
1434 bfad_pci_uninit(pdev, bfad);
1435out_pci_init_failure:
1436 kfree(bfad->trcmod);
1437out_alloc_trace_failure:
1438 kfree(bfad);
1439out:
1440 return error;
1441}
1442
Jing Huang5fbe25c2010-10-18 17:17:23 -07001443/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001444 * PCI remove entry.
1445 */
1446void
1447bfad_pci_remove(struct pci_dev *pdev)
1448{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001449 struct bfad_s *bfad = pci_get_drvdata(pdev);
1450 unsigned long flags;
Jing Huang7725ccf2009-09-23 17:46:15 -07001451
1452 bfa_trc(bfad, bfad->inst_no);
1453
Krishna Gudipatie6714322010-03-03 17:44:02 -08001454 spin_lock_irqsave(&bfad->bfad_lock, flags);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001455 if (bfad->bfad_tsk != NULL) {
1456 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Krishna Gudipatie6714322010-03-03 17:44:02 -08001457 kthread_stop(bfad->bfad_tsk);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001458 } else {
Jing Huang7725ccf2009-09-23 17:46:15 -07001459 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
Jing Huang7725ccf2009-09-23 17:46:15 -07001460 }
1461
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001462 /* Send Event BFAD_E_STOP */
1463 bfa_sm_send_event(bfad, BFAD_E_STOP);
Jing Huang7725ccf2009-09-23 17:46:15 -07001464
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001465 /* Driver detach and dealloc mem */
Jing Huang7725ccf2009-09-23 17:46:15 -07001466 spin_lock_irqsave(&bfad->bfad_lock, flags);
1467 bfa_detach(&bfad->bfa);
1468 spin_unlock_irqrestore(&bfad->bfad_lock, flags);
1469 bfad_hal_mem_release(bfad);
Jing Huang7725ccf2009-09-23 17:46:15 -07001470
Krishna Gudipati7c38c052011-04-14 16:50:35 -07001471 /* Remove the debugfs node for this bfad */
1472 kfree(bfad->regdata);
1473 bfad_debugfs_exit(&bfad->pport);
1474
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001475 /* Cleaning the BFAD instance */
Jing Huang7725ccf2009-09-23 17:46:15 -07001476 mutex_lock(&bfad_mutex);
1477 bfad_inst--;
1478 list_del(&bfad->list_entry);
1479 mutex_unlock(&bfad_mutex);
1480 bfad_pci_uninit(pdev, bfad);
1481
1482 kfree(bfad->trcmod);
1483 kfree(bfad);
1484}
1485
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001486struct pci_device_id bfad_id_table[] = {
Jing Huang7725ccf2009-09-23 17:46:15 -07001487 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001488 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1489 .device = BFA_PCI_DEVICE_ID_FC_8G2P,
1490 .subvendor = PCI_ANY_ID,
1491 .subdevice = PCI_ANY_ID,
1492 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001493 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001494 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1495 .device = BFA_PCI_DEVICE_ID_FC_8G1P,
1496 .subvendor = PCI_ANY_ID,
1497 .subdevice = PCI_ANY_ID,
1498 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001499 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001500 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1501 .device = BFA_PCI_DEVICE_ID_CT,
1502 .subvendor = PCI_ANY_ID,
1503 .subdevice = PCI_ANY_ID,
1504 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1505 .class_mask = ~0,
1506 },
Jing Huang293f82d2010-07-08 19:45:20 -07001507 {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001508 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1509 .device = BFA_PCI_DEVICE_ID_CT_FC,
1510 .subvendor = PCI_ANY_ID,
1511 .subdevice = PCI_ANY_ID,
1512 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1513 .class_mask = ~0,
Jing Huang293f82d2010-07-08 19:45:20 -07001514 },
Krishna Gudipati11189202011-06-13 15:50:35 -07001515 {
1516 .vendor = BFA_PCI_VENDOR_ID_BROCADE,
1517 .device = BFA_PCI_DEVICE_ID_CT2,
1518 .subvendor = PCI_ANY_ID,
1519 .subdevice = PCI_ANY_ID,
1520 .class = (PCI_CLASS_SERIAL_FIBER << 8),
1521 .class_mask = ~0,
1522 },
Jing Huang7725ccf2009-09-23 17:46:15 -07001523
1524 {0, 0},
1525};
1526
1527MODULE_DEVICE_TABLE(pci, bfad_id_table);
1528
1529static struct pci_driver bfad_pci_driver = {
1530 .name = BFAD_DRIVER_NAME,
1531 .id_table = bfad_id_table,
1532 .probe = bfad_pci_probe,
1533 .remove = __devexit_p(bfad_pci_remove),
1534};
1535
Jing Huang5fbe25c2010-10-18 17:17:23 -07001536/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001537 * Driver module init.
1538 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001539static int __init
Jing Huang7725ccf2009-09-23 17:46:15 -07001540bfad_init(void)
1541{
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001542 int error = 0;
Jing Huang7725ccf2009-09-23 17:46:15 -07001543
1544 printk(KERN_INFO "Brocade BFA FC/FCOE SCSI driver - version: %s\n",
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001545 BFAD_DRIVER_VERSION);
Jing Huang7725ccf2009-09-23 17:46:15 -07001546
1547 if (num_sgpgs > 0)
1548 num_sgpgs_parm = num_sgpgs;
1549
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001550 error = bfad_im_module_init();
Jing Huang7725ccf2009-09-23 17:46:15 -07001551 if (error) {
1552 error = -ENOMEM;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001553 printk(KERN_WARNING "bfad_im_module_init failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001554 goto ext;
1555 }
1556
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001557 if (strcmp(FCPI_NAME, " fcpim") == 0)
1558 supported_fc4s |= BFA_LPORT_ROLE_FCP_IM;
Jing Huang7725ccf2009-09-23 17:46:15 -07001559
Maggie Zhangf7f738122010-12-09 19:08:43 -08001560 bfa_auto_recover = ioc_auto_recover;
Jing Huang7725ccf2009-09-23 17:46:15 -07001561 bfa_fcs_rport_set_del_timeout(rport_del_timeout);
Jing Huang7725ccf2009-09-23 17:46:15 -07001562
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001563 error = pci_register_driver(&bfad_pci_driver);
Jing Huang7725ccf2009-09-23 17:46:15 -07001564 if (error) {
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001565 printk(KERN_WARNING "pci_register_driver failure\n");
Jing Huang7725ccf2009-09-23 17:46:15 -07001566 goto ext;
1567 }
1568
1569 return 0;
1570
1571ext:
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001572 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001573 return error;
1574}
1575
Jing Huang5fbe25c2010-10-18 17:17:23 -07001576/*
Jing Huang7725ccf2009-09-23 17:46:15 -07001577 * Driver module exit.
1578 */
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001579static void __exit
Jing Huang7725ccf2009-09-23 17:46:15 -07001580bfad_exit(void)
1581{
1582 pci_unregister_driver(&bfad_pci_driver);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001583 bfad_im_module_exit();
Jing Huang7725ccf2009-09-23 17:46:15 -07001584 bfad_free_fwimg();
1585}
1586
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001587/* Firmware handling */
Jing Huang61338a02011-04-13 11:44:03 -07001588static void
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001589bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
1590 u32 *bfi_image_size, char *fw_name)
1591{
1592 const struct firmware *fw;
1593
1594 if (request_firmware(&fw, fw_name, &pdev->dev)) {
1595 printk(KERN_ALERT "Can't locate firmware %s\n", fw_name);
Jing Huang61338a02011-04-13 11:44:03 -07001596 *bfi_image = NULL;
1597 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001598 }
1599
1600 *bfi_image = vmalloc(fw->size);
1601 if (NULL == *bfi_image) {
1602 printk(KERN_ALERT "Fail to allocate buffer for fw image "
1603 "size=%x!\n", (u32) fw->size);
Jing Huang61338a02011-04-13 11:44:03 -07001604 goto out;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001605 }
1606
1607 memcpy(*bfi_image, fw->data, fw->size);
1608 *bfi_image_size = fw->size/sizeof(u32);
Jing Huang61338a02011-04-13 11:44:03 -07001609out:
1610 release_firmware(fw);
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001611}
1612
Jing Huang61338a02011-04-13 11:44:03 -07001613static u32 *
1614bfad_load_fwimg(struct pci_dev *pdev)
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001615{
Krishna Gudipati11189202011-06-13 15:50:35 -07001616 if (pdev->device == BFA_PCI_DEVICE_ID_CT2) {
1617 if (bfi_image_ct2_size == 0)
1618 bfad_read_firmware(pdev, &bfi_image_ct2,
1619 &bfi_image_ct2_size, BFAD_FW_FILE_CT2);
1620 return bfi_image_ct2;
1621 } else if (bfa_asic_id_ct(pdev->device)) {
1622 if (bfi_image_ct_size == 0)
1623 bfad_read_firmware(pdev, &bfi_image_ct,
1624 &bfi_image_ct_size, BFAD_FW_FILE_CT);
1625 return bfi_image_ct;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001626 } else {
Krishna Gudipati11189202011-06-13 15:50:35 -07001627 if (bfi_image_cb_size == 0)
1628 bfad_read_firmware(pdev, &bfi_image_cb,
1629 &bfi_image_cb_size, BFAD_FW_FILE_CB);
1630 return bfi_image_cb;
Krishna Gudipatia36c61f2010-09-15 11:50:55 -07001631 }
1632}
Jing Huang7725ccf2009-09-23 17:46:15 -07001633
Jing Huang61338a02011-04-13 11:44:03 -07001634static void
1635bfad_free_fwimg(void)
1636{
Krishna Gudipati11189202011-06-13 15:50:35 -07001637 if (bfi_image_ct2_size && bfi_image_ct2)
1638 vfree(bfi_image_ct2);
1639 if (bfi_image_ct_size && bfi_image_ct)
1640 vfree(bfi_image_ct);
1641 if (bfi_image_cb_size && bfi_image_cb)
1642 vfree(bfi_image_cb);
Jing Huang61338a02011-04-13 11:44:03 -07001643}
1644
Jing Huang7725ccf2009-09-23 17:46:15 -07001645module_init(bfad_init);
1646module_exit(bfad_exit);
1647MODULE_LICENSE("GPL");
1648MODULE_DESCRIPTION("Brocade Fibre Channel HBA Driver" BFAD_PROTO_NAME);
1649MODULE_AUTHOR("Brocade Communications Systems, Inc.");
1650MODULE_VERSION(BFAD_DRIVER_VERSION);