blob: 978d8bdb9b3459fe7c66e96710071b2269f4ab24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez01e58d82008-04-03 13:13:13 -07003 * Copyright (c) 2003-2008 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include "qla_def.h"
8
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/delay.h>
Christoph Hellwig39a11242006-02-14 18:46:22 +010012#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <scsi/scsi_tcq.h>
15#include <scsi/scsicam.h>
16#include <scsi/scsi_transport.h>
17#include <scsi/scsi_transport_fc.h>
18
19/*
20 * Driver version
21 */
22char qla2x00_version_str[40];
23
24/*
25 * SRB allocation cache
26 */
Christoph Lametere18b8902006-12-06 20:33:20 -080027static struct kmem_cache *srb_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070029int num_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030int ql2xlogintimeout = 20;
31module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
32MODULE_PARM_DESC(ql2xlogintimeout,
33 "Login timeout value in seconds.");
34
Andrew Vasqueza7b61842007-05-07 07:42:59 -070035int qlport_down_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
37MODULE_PARM_DESC(qlport_down_retry,
Jesper Juhl900d9f92006-06-30 02:33:07 -070038 "Maximum number of command retries to a port that returns "
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 "a PORT-DOWN status.");
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041int ql2xplogiabsentdevice;
42module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
43MODULE_PARM_DESC(ql2xplogiabsentdevice,
44 "Option to enable PLOGI to devices that are not present after "
Jesper Juhl900d9f92006-06-30 02:33:07 -070045 "a Fabric scan. This is needed for several broken switches. "
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048int ql2xloginretrycount = 0;
49module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
50MODULE_PARM_DESC(ql2xloginretrycount,
51 "Specify an alternate value for the NVRAM login retry count.");
52
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070053int ql2xallocfwdump = 1;
54module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
55MODULE_PARM_DESC(ql2xallocfwdump,
56 "Option to enable allocation of memory for a firmware dump "
57 "during HBA initialization. Memory allocation requirements "
58 "vary by ISP type. Default is 1 - allocate memory.");
59
Andrew Vasquez11010fe2006-10-06 09:54:59 -070060int ql2xextended_error_logging;
Andrew Vasquez27d94032007-03-12 10:41:30 -070061module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070062MODULE_PARM_DESC(ql2xextended_error_logging,
Andrew Vasquez01819442006-06-23 16:11:10 -070063 "Option to enable extended error logging, "
64 "Default is 0 - no logging. 1 - log errors.");
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void qla2x00_free_device(scsi_qla_host_t *);
67
68static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
69
Andrew Vasquezcca53352005-08-26 19:08:30 -070070int ql2xfdmienable;
71module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
72MODULE_PARM_DESC(ql2xfdmienable,
73 "Enables FDMI registratons "
74 "Default is 0 - no FDMI. 1 - perfom FDMI.");
75
Andrew Vasquezdf7baa52006-10-13 09:33:39 -070076#define MAX_Q_DEPTH 32
77static int ql2xmaxqdepth = MAX_Q_DEPTH;
78module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(ql2xmaxqdepth,
80 "Maximum queue depth to report for target devices.");
81
82int ql2xqfullrampup = 120;
83module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(ql2xqfullrampup,
85 "Number of seconds to wait to begin to ramp-up the queue "
86 "depth for a device after a queue-full condition has been "
87 "detected. Default is 120 seconds.");
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070090 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
92static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -050093static int qla2xxx_slave_alloc(struct scsi_device *);
Andrew Vasquez1e99e332006-11-22 08:24:48 -080094static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
95static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051e2005-04-17 15:02:26 -050096static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
98 void (*fn)(struct scsi_cmnd *));
Andrew Vasquezfca29702005-07-06 10:31:47 -070099static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
100 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static int qla2xxx_eh_abort(struct scsi_cmnd *);
102static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700103static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
105static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700107static int qla2x00_change_queue_depth(struct scsi_device *, int);
108static int qla2x00_change_queue_type(struct scsi_device *, int);
109
Adrian Bunka824ebb2008-01-17 09:02:15 -0800110static struct scsi_host_template qla2x00_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700112 .name = QLA2XXX_DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .queuecommand = qla2x00_queuecommand,
114
115 .eh_abort_handler = qla2xxx_eh_abort,
116 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700117 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
119 .eh_host_reset_handler = qla2xxx_eh_host_reset,
120
121 .slave_configure = qla2xxx_slave_configure,
122
f4f051e2005-04-17 15:02:26 -0500123 .slave_alloc = qla2xxx_slave_alloc,
124 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800125 .scan_finished = qla2xxx_scan_finished,
126 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700127 .change_queue_depth = qla2x00_change_queue_depth,
128 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .this_id = -1,
130 .cmd_per_lun = 3,
131 .use_clustering = ENABLE_CLUSTERING,
132 .sg_tablesize = SG_ALL,
133
134 /*
135 * The RISC allows for each command to transfer (2^32-1) bytes of data,
136 * which equates to 0x800000 sectors.
137 */
138 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700139 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700142struct scsi_host_template qla24xx_driver_template = {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700143 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700144 .name = QLA2XXX_DRIVER_NAME,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700145 .queuecommand = qla24xx_queuecommand,
146
147 .eh_abort_handler = qla2xxx_eh_abort,
148 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700149 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700150 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
151 .eh_host_reset_handler = qla2xxx_eh_host_reset,
152
153 .slave_configure = qla2xxx_slave_configure,
154
155 .slave_alloc = qla2xxx_slave_alloc,
156 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezed677082007-03-12 10:41:27 -0700157 .scan_finished = qla2xxx_scan_finished,
158 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700159 .change_queue_depth = qla2x00_change_queue_depth,
160 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700161 .this_id = -1,
162 .cmd_per_lun = 3,
163 .use_clustering = ENABLE_CLUSTERING,
164 .sg_tablesize = SG_ALL,
165
166 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700167 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700168};
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700171struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/* TODO Convert to inlines
174 *
175 * Timer routines
176 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700178__inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
180{
181 init_timer(&ha->timer);
182 ha->timer.expires = jiffies + interval * HZ;
183 ha->timer.data = (unsigned long)ha;
184 ha->timer.function = (void (*)(unsigned long))func;
185 add_timer(&ha->timer);
186 ha->timer_active = 1;
187}
188
189static inline void
190qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
191{
192 mod_timer(&ha->timer, jiffies + interval * HZ);
193}
194
Adrian Bunka824ebb2008-01-17 09:02:15 -0800195static __inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196qla2x00_stop_timer(scsi_qla_host_t *ha)
197{
198 del_timer_sync(&ha->timer);
199 ha->timer_active = 0;
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static int qla2x00_do_dpc(void *data);
203
204static void qla2x00_rst_aen(scsi_qla_host_t *);
205
Andrew Vasqueze8711082008-01-31 12:33:48 -0800206static int qla2x00_mem_alloc(scsi_qla_host_t *);
Adrian Bunka824ebb2008-01-17 09:02:15 -0800207static void qla2x00_mem_free(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500208static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/* -------------------------------------------------------------------------- */
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700213qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 static char *pci_bus_modes[] = {
216 "33", "66", "100", "133",
217 };
218 uint16_t pci_bus;
219
220 strcpy(str, "PCI");
221 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
222 if (pci_bus) {
223 strcat(str, "-X (");
224 strcat(str, pci_bus_modes[pci_bus]);
225 } else {
226 pci_bus = (ha->pci_attr & BIT_8) >> 8;
227 strcat(str, " (");
228 strcat(str, pci_bus_modes[pci_bus]);
229 }
230 strcat(str, " MHz)");
231
232 return (str);
233}
234
Andrew Vasquezfca29702005-07-06 10:31:47 -0700235static char *
236qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
237{
238 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
239 uint32_t pci_bus;
240 int pcie_reg;
241
242 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
243 if (pcie_reg) {
244 char lwstr[6];
245 uint16_t pcie_lstat, lspeed, lwidth;
246
247 pcie_reg += 0x12;
248 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
249 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
250 lwidth = (pcie_lstat &
251 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
252
253 strcpy(str, "PCIe (");
254 if (lspeed == 1)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700255 strcat(str, "2.5GT/s ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700256 else if (lspeed == 2)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700257 strcat(str, "5.0GT/s ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700258 else
259 strcat(str, "<unknown> ");
260 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
261 strcat(str, lwstr);
262
263 return str;
264 }
265
266 strcpy(str, "PCI");
267 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
268 if (pci_bus == 0 || pci_bus == 8) {
269 strcat(str, " (");
270 strcat(str, pci_bus_modes[pci_bus >> 3]);
271 } else {
272 strcat(str, "-X ");
273 if (pci_bus & BIT_2)
274 strcat(str, "Mode 2");
275 else
276 strcat(str, "Mode 1");
277 strcat(str, " (");
278 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
279 }
280 strcat(str, " MHz)");
281
282 return str;
283}
284
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800285static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700286qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 char un_str[10];
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
291 ha->fw_minor_version,
292 ha->fw_subminor_version);
293
294 if (ha->fw_attributes & BIT_9) {
295 strcat(str, "FLX");
296 return (str);
297 }
298
299 switch (ha->fw_attributes & 0xFF) {
300 case 0x7:
301 strcat(str, "EF");
302 break;
303 case 0x17:
304 strcat(str, "TP");
305 break;
306 case 0x37:
307 strcat(str, "IP");
308 break;
309 case 0x77:
310 strcat(str, "VI");
311 break;
312 default:
313 sprintf(un_str, "(%x)", ha->fw_attributes);
314 strcat(str, un_str);
315 break;
316 }
317 if (ha->fw_attributes & 0x100)
318 strcat(str, "X");
319
320 return (str);
321}
322
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800323static char *
Andrew Vasquezfca29702005-07-06 10:31:47 -0700324qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
325{
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700326 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
327 ha->fw_minor_version,
328 ha->fw_subminor_version);
329
Andrew Vasquezfca29702005-07-06 10:31:47 -0700330 if (ha->fw_attributes & BIT_0)
331 strcat(str, "[Class 2] ");
332 if (ha->fw_attributes & BIT_1)
333 strcat(str, "[IP] ");
334 if (ha->fw_attributes & BIT_2)
335 strcat(str, "[Multi-ID] ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700336 if (ha->fw_attributes & BIT_3)
337 strcat(str, "[SB-2] ");
338 if (ha->fw_attributes & BIT_4)
339 strcat(str, "[T10 CRC] ");
340 if (ha->fw_attributes & BIT_5)
341 strcat(str, "[VI] ");
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700342 if (ha->fw_attributes & BIT_10)
343 strcat(str, "[84XX] ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700344 if (ha->fw_attributes & BIT_13)
345 strcat(str, "[Experimental]");
346 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700347}
348
349static inline srb_t *
350qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
351 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
352{
353 srb_t *sp;
354
355 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
356 if (!sp)
357 return sp;
358
Andrew Vasquezfca29702005-07-06 10:31:47 -0700359 sp->ha = ha;
360 sp->fcport = fcport;
361 sp->cmd = cmd;
362 sp->flags = 0;
363 CMD_SP(cmd) = (void *)sp;
364 cmd->scsi_done = done;
365
366 return sp;
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static int
f4f051e2005-04-17 15:02:26 -0500370qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700372 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500373 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400374 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051e2005-04-17 15:02:26 -0500375 srb_t *sp;
376 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Seokmann Ju14e660e2007-09-20 14:07:36 -0700378 if (unlikely(pci_channel_offline(ha->pdev))) {
379 cmd->result = DID_REQUEUE << 16;
380 goto qc_fail_command;
381 }
382
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400383 rval = fc_remote_port_chkready(rport);
384 if (rval) {
385 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500386 goto qc_fail_command;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800389 /* Close window on fcport/rport state-transitioning. */
390 if (!*(fc_port_t **)rport->dd_data) {
391 cmd->result = DID_IMM_RETRY << 16;
392 goto qc_fail_command;
393 }
394
f4f051e2005-04-17 15:02:26 -0500395 if (atomic_read(&fcport->state) != FCS_ONLINE) {
396 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
397 atomic_read(&ha->loop_state) == LOOP_DEAD) {
398 cmd->result = DID_NO_CONNECT << 16;
399 goto qc_fail_command;
400 }
401 goto qc_host_busy;
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 spin_unlock_irq(ha->host->host_lock);
405
Andrew Vasquezfca29702005-07-06 10:31:47 -0700406 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
407 if (!sp)
f4f051e2005-04-17 15:02:26 -0500408 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
f4f051e2005-04-17 15:02:26 -0500410 rval = qla2x00_start_scsi(sp);
411 if (rval != QLA_SUCCESS)
412 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 spin_lock_irq(ha->host->host_lock);
415
f4f051e2005-04-17 15:02:26 -0500416 return 0;
417
418qc_host_busy_free_sp:
419 qla2x00_sp_free_dma(ha, sp);
f4f051e2005-04-17 15:02:26 -0500420 mempool_free(sp, ha->srb_mempool);
421
422qc_host_busy_lock:
423 spin_lock_irq(ha->host->host_lock);
424
425qc_host_busy:
426 return SCSI_MLQUEUE_HOST_BUSY;
427
428qc_fail_command:
429 done(cmd);
430
431 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Andrew Vasquezfca29702005-07-06 10:31:47 -0700434
435static int
436qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
437{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700438 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700439 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400440 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700441 srb_t *sp;
442 int rval;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700443 scsi_qla_host_t *pha = to_qla_parent(ha);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700444
Seokmann Ju14e660e2007-09-20 14:07:36 -0700445 if (unlikely(pci_channel_offline(ha->pdev))) {
446 cmd->result = DID_REQUEUE << 16;
447 goto qc24_fail_command;
448 }
449
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400450 rval = fc_remote_port_chkready(rport);
451 if (rval) {
452 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700453 goto qc24_fail_command;
454 }
455
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800456 /* Close window on fcport/rport state-transitioning. */
457 if (!*(fc_port_t **)rport->dd_data) {
458 cmd->result = DID_IMM_RETRY << 16;
459 goto qc24_fail_command;
460 }
461
Andrew Vasquezfca29702005-07-06 10:31:47 -0700462 if (atomic_read(&fcport->state) != FCS_ONLINE) {
463 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700464 atomic_read(&pha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700465 cmd->result = DID_NO_CONNECT << 16;
466 goto qc24_fail_command;
467 }
468 goto qc24_host_busy;
469 }
470
471 spin_unlock_irq(ha->host->host_lock);
472
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700473 sp = qla2x00_get_new_sp(pha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700474 if (!sp)
475 goto qc24_host_busy_lock;
476
477 rval = qla24xx_start_scsi(sp);
478 if (rval != QLA_SUCCESS)
479 goto qc24_host_busy_free_sp;
480
481 spin_lock_irq(ha->host->host_lock);
482
483 return 0;
484
485qc24_host_busy_free_sp:
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700486 qla2x00_sp_free_dma(pha, sp);
487 mempool_free(sp, pha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700488
489qc24_host_busy_lock:
490 spin_lock_irq(ha->host->host_lock);
491
492qc24_host_busy:
493 return SCSI_MLQUEUE_HOST_BUSY;
494
495qc24_fail_command:
496 done(cmd);
497
498 return 0;
499}
500
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*
503 * qla2x00_eh_wait_on_command
504 * Waits for the command to be returned by the Firmware for some
505 * max time.
506 *
507 * Input:
508 * ha = actual ha whose done queue will contain the command
509 * returned by firmware.
510 * cmd = Scsi Command to wait on.
511 * flag = Abort/Reset(Bus or Device Reset)
512 *
513 * Return:
514 * Not Found : 0
515 * Found : 1
516 */
517static int
518qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
519{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700520#define ABORT_POLLING_PERIOD 1000
521#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500522 unsigned long wait_iter = ABORT_WAIT_ITER;
523 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
f4f051e2005-04-17 15:02:26 -0500525 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700526 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
f4f051e2005-04-17 15:02:26 -0500528 if (--wait_iter)
529 break;
530 }
531 if (CMD_SP(cmd))
532 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
f4f051e2005-04-17 15:02:26 -0500534 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537/*
538 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700539 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * <= MAX_RETRIES_OF_ISP_ABORT or
541 * finally HBA is disabled ie marked offline
542 *
543 * Input:
544 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700545 *
546 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * Does context switching-Release SPIN_LOCK
548 * (if any) before calling this routine.
549 *
550 * Return:
551 * Success (Adapter is online) : 0
552 * Failed (Adapter is offline/disabled) : 1
553 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800554int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
556{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700557 int return_status;
558 unsigned long wait_online;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700559 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700561 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700562 while (((test_bit(ISP_ABORT_NEEDED, &pha->dpc_flags)) ||
563 test_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags) ||
564 test_bit(ISP_ABORT_RETRY, &pha->dpc_flags) ||
565 pha->dpc_active) && time_before(jiffies, wait_online)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 msleep(1000);
568 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700569 if (pha->flags.online)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700570 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 else
572 return_status = QLA_FUNCTION_FAILED;
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return (return_status);
575}
576
577/*
578 * qla2x00_wait_for_loop_ready
579 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700580 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * Input:
582 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700583 *
584 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 * Does context switching-Release SPIN_LOCK
586 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700587 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
589 * Return:
590 * Success (LOOP_READY) : 0
591 * Failed (LOOP_NOT_READY) : 1
592 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700593static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
595{
596 int return_status = QLA_SUCCESS;
597 unsigned long loop_timeout ;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700598 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700601 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700603 while ((!atomic_read(&pha->loop_down_timer) &&
604 atomic_read(&pha->loop_state) == LOOP_DOWN) ||
605 atomic_read(&pha->loop_state) != LOOP_READY) {
606 if (atomic_read(&pha->loop_state) == LOOP_DEAD) {
Ravi Anand57680082006-05-17 15:08:44 -0700607 return_status = QLA_FUNCTION_FAILED;
608 break;
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 msleep(1000);
611 if (time_after_eq(jiffies, loop_timeout)) {
612 return_status = QLA_FUNCTION_FAILED;
613 break;
614 }
615 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700616 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Andrew Vasquez07db5182006-10-02 12:00:49 -0700619static void
620qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
621{
622 struct Scsi_Host *shost = cmnd->device->host;
623 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
624 unsigned long flags;
625
626 spin_lock_irqsave(shost->host_lock, flags);
627 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
628 spin_unlock_irqrestore(shost->host_lock, flags);
629 msleep(1000);
630 spin_lock_irqsave(shost->host_lock, flags);
631 }
632 spin_unlock_irqrestore(shost->host_lock, flags);
633 return;
634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/**************************************************************************
637* qla2xxx_eh_abort
638*
639* Description:
640* The abort function will abort the specified command.
641*
642* Input:
643* cmd = Linux SCSI command packet to be aborted.
644*
645* Returns:
646* Either SUCCESS or FAILED.
647*
648* Note:
Michael Reed2ea00202006-04-27 16:25:30 -0700649* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800651static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652qla2xxx_eh_abort(struct scsi_cmnd *cmd)
653{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700654 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
f4f051e2005-04-17 15:02:26 -0500655 srb_t *sp;
656 int ret, i;
657 unsigned int id, lun;
658 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700659 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700660 int wait = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700661 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Andrew Vasquez07db5182006-10-02 12:00:49 -0700663 qla2x00_block_error_handler(cmd);
664
f4f051e2005-04-17 15:02:26 -0500665 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700666 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Michael Reed2ea00202006-04-27 16:25:30 -0700668 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
f4f051e2005-04-17 15:02:26 -0500670 id = cmd->device->id;
671 lun = cmd->device->lun;
672 serial = cmd->serial_number;
673
674 /* Check active list for command command. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700675 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500676 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700677 sp = pha->outstanding_cmds[i];
f4f051e2005-04-17 15:02:26 -0500678
679 if (sp == NULL)
680 continue;
681
682 if (sp->cmd != cmd)
683 continue;
684
Andrew Vasquez75bc4192006-05-17 15:09:22 -0700685 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
686 __func__, ha->host_no, sp, serial));
f4f051e2005-04-17 15:02:26 -0500687
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700688 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700689 if (ha->isp_ops->abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500690 DEBUG2(printk("%s(%ld): abort_command "
691 "mbx failed.\n", __func__, ha->host_no));
692 } else {
693 DEBUG3(printk("%s(%ld): abort_command "
694 "mbx success.\n", __func__, ha->host_no));
Michael Reed2ea00202006-04-27 16:25:30 -0700695 wait = 1;
f4f051e2005-04-17 15:02:26 -0500696 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700697 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500698
699 break;
700 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700701 spin_unlock_irqrestore(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500702
703 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700704 if (wait) {
f4f051e2005-04-17 15:02:26 -0500705 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700706 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500707 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
708 "%x.\n", ha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700709 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700713 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700714 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
715 ha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
f4f051e2005-04-17 15:02:26 -0500717 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Andrew Vasquez523ec772008-04-03 13:13:24 -0700720enum nexus_wait_type {
721 WAIT_HOST = 0,
722 WAIT_TARGET,
723 WAIT_LUN,
724};
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726static int
Andrew Vasquez523ec772008-04-03 13:13:24 -0700727qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha, unsigned int t,
728 unsigned int l, enum nexus_wait_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Andrew Vasquez523ec772008-04-03 13:13:24 -0700730 int cnt, match, status;
731 srb_t *sp;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700732 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700733 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Andrew Vasquez523ec772008-04-03 13:13:24 -0700735 status = QLA_SUCCESS;
736 spin_lock_irqsave(&pha->hardware_lock, flags);
737 for (cnt = 1; status == QLA_SUCCESS && cnt < MAX_OUTSTANDING_COMMANDS;
738 cnt++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700739 sp = pha->outstanding_cmds[cnt];
Andrew Vasquez523ec772008-04-03 13:13:24 -0700740 if (!sp)
741 continue;
742 if (ha->vp_idx != sp->ha->vp_idx)
743 continue;
744 match = 0;
745 switch (type) {
746 case WAIT_HOST:
747 match = 1;
748 break;
749 case WAIT_TARGET:
750 match = sp->cmd->device->id == t;
751 break;
752 case WAIT_LUN:
753 match = (sp->cmd->device->id == t &&
754 sp->cmd->device->lun == l);
755 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Andrew Vasquez523ec772008-04-03 13:13:24 -0700757 if (!match)
758 continue;
759
760 spin_unlock_irqrestore(&pha->hardware_lock, flags);
761 status = qla2x00_eh_wait_on_command(ha, sp->cmd);
762 spin_lock_irqsave(&pha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
Andrew Vasquez523ec772008-04-03 13:13:24 -0700764 spin_unlock_irqrestore(&pha->hardware_lock, flags);
765
766 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Andrew Vasquez523ec772008-04-03 13:13:24 -0700769static char *reset_errors[] = {
770 "HBA not online",
771 "HBA not ready",
772 "Task management failed",
773 "Waiting for command completions",
774};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Andrew Vasquez523ec772008-04-03 13:13:24 -0700776static int
777__qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
778 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int))
779{
780 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
781 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
782 int err;
783
784 qla2x00_block_error_handler(cmd);
785
786 if (!fcport)
787 return FAILED;
788
789 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
790 ha->host_no, cmd->device->id, cmd->device->lun, name);
791
792 err = 0;
793 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
794 goto eh_reset_failed;
795 err = 1;
796 if (qla2x00_wait_for_loop_ready(ha) != QLA_SUCCESS)
797 goto eh_reset_failed;
798 err = 2;
799 if (do_reset(fcport, cmd->device->lun) != QLA_SUCCESS)
800 goto eh_reset_failed;
801 err = 3;
802 if (qla2x00_eh_wait_for_pending_commands(ha, cmd->device->id,
803 cmd->device->lun, type) != QLA_SUCCESS)
804 goto eh_reset_failed;
805
806 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
807 ha->host_no, cmd->device->id, cmd->device->lun, name);
808
809 return SUCCESS;
810
811 eh_reset_failed:
812 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n",
813 ha->host_no, cmd->device->id, cmd->device->lun, name,
814 reset_errors[err]);
815 return FAILED;
816}
817
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800818static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
820{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700821 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Andrew Vasquez523ec772008-04-03 13:13:24 -0700823 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
824 ha->isp_ops->lun_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827static int
Andrew Vasquez523ec772008-04-03 13:13:24 -0700828qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Andrew Vasquez523ec772008-04-03 13:13:24 -0700830 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Andrew Vasquez523ec772008-04-03 13:13:24 -0700832 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
833 ha->isp_ops->target_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/**************************************************************************
837* qla2xxx_eh_bus_reset
838*
839* Description:
840* The bus reset function will reset the bus and abort any executing
841* commands.
842*
843* Input:
844* cmd = Linux SCSI command packet of the command that cause the
845* bus reset.
846*
847* Returns:
848* SUCCESS/FAILURE (defined as macro in scsi.h).
849*
850**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800851static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
853{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700854 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700855 scsi_qla_host_t *pha = to_qla_parent(ha);
bdf79622005-04-17 15:06:53 -0500856 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700857 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500858 unsigned int id, lun;
859 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Andrew Vasquez07db5182006-10-02 12:00:49 -0700861 qla2x00_block_error_handler(cmd);
862
f4f051e2005-04-17 15:02:26 -0500863 id = cmd->device->id;
864 lun = cmd->device->lun;
865 serial = cmd->serial_number;
866
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700867 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500868 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500871 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
874 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500875 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500879 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
880 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
f4f051e2005-04-17 15:02:26 -0500882 if (ret == FAILED)
883 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700885 /* Flush outstanding commands. */
Andrew Vasquez523ec772008-04-03 13:13:24 -0700886 if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) !=
887 QLA_SUCCESS)
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700888 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
f4f051e2005-04-17 15:02:26 -0500890eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500892 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
f4f051e2005-04-17 15:02:26 -0500894 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
897/**************************************************************************
898* qla2xxx_eh_host_reset
899*
900* Description:
901* The reset function will reset the Adapter.
902*
903* Input:
904* cmd = Linux SCSI command packet of the command that cause the
905* adapter reset.
906*
907* Returns:
908* Either SUCCESS or FAILED.
909*
910* Note:
911**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800912static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
914{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700915 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500916 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700917 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500918 unsigned int id, lun;
919 unsigned long serial;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700920 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Andrew Vasquez07db5182006-10-02 12:00:49 -0700922 qla2x00_block_error_handler(cmd);
923
f4f051e2005-04-17 15:02:26 -0500924 id = cmd->device->id;
925 lun = cmd->device->lun;
926 serial = cmd->serial_number;
927
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700928 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500929 return ret;
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500932 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500935 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 /*
938 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700939 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * be completed and then issue big hammer.Otherwise
941 * it may cause I/O failure as big hammer marks the
942 * devices as lost kicking of the port_down_timer
943 * while dpc is stuck for the mailbox to complete.
944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 qla2x00_wait_for_loop_ready(ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700946 set_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
947 if (qla2x00_abort_isp(pha)) {
948 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /* failed. schedule dpc to try */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700950 set_bit(ISP_ABORT_NEEDED, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500953 goto eh_host_reset_lock;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700954 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700955 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /* Waiting for our command in done_queue to be returned to OS.*/
Andrew Vasquez523ec772008-04-03 13:13:24 -0700958 if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) ==
959 QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500960 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700962 if (ha->parent)
963 qla2x00_vp_abort_isp(ha);
964
f4f051e2005-04-17 15:02:26 -0500965eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -0500966 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
967 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
f4f051e2005-04-17 15:02:26 -0500969 return ret;
970}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972/*
973* qla2x00_loop_reset
974* Issue loop reset.
975*
976* Input:
977* ha = adapter block pointer.
978*
979* Returns:
980* 0 = success
981*/
Andrew Vasqueza4722cf2008-01-17 09:02:12 -0800982int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983qla2x00_loop_reset(scsi_qla_host_t *ha)
984{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -0800985 int ret;
bdf79622005-04-17 15:06:53 -0500986 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -0800988 if (ha->flags.enable_lip_full_login) {
989 ret = qla2x00_full_login_lip(ha);
990 if (ret != QLA_SUCCESS) {
991 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
992 "full_login_lip=%d.\n", __func__, ha->host_no,
993 ret));
994 }
995 atomic_set(&ha->loop_state, LOOP_DOWN);
996 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
997 qla2x00_mark_all_devices_lost(ha, 0);
998 qla2x00_wait_for_loop_ready(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001001 if (ha->flags.enable_lip_reset) {
1002 ret = qla2x00_lip_reset(ha);
1003 if (ret != QLA_SUCCESS) {
1004 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1005 "lip_reset=%d.\n", __func__, ha->host_no, ret));
1006 }
1007 qla2x00_wait_for_loop_ready(ha);
1008 }
1009
1010 if (ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -05001011 list_for_each_entry(fcport, &ha->fcports, list) {
1012 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 continue;
1014
Andrew Vasquez523ec772008-04-03 13:13:24 -07001015 ret = ha->isp_ops->target_reset(fcport, 0);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001016 if (ret != QLA_SUCCESS) {
1017 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1018 "target_reset=%d d_id=%x.\n", __func__,
1019 ha->host_no, ret, fcport->d_id.b24));
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022 }
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* Issue marker command only when we are going to start the I/O */
1025 ha->marker_needed = 1;
1026
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001027 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001030void
1031qla2x00_abort_all_cmds(scsi_qla_host_t *ha, int res)
1032{
1033 int cnt;
1034 unsigned long flags;
1035 srb_t *sp;
1036
1037 spin_lock_irqsave(&ha->hardware_lock, flags);
1038 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1039 sp = ha->outstanding_cmds[cnt];
1040 if (sp) {
1041 ha->outstanding_cmds[cnt] = NULL;
1042 sp->flags = 0;
1043 sp->cmd->result = res;
1044 sp->cmd->host_scribble = (unsigned char *)NULL;
1045 qla2x00_sp_compl(ha, sp);
1046 }
1047 }
1048 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1049}
1050
f4f051e2005-04-17 15:02:26 -05001051static int
1052qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
bdf79622005-04-17 15:06:53 -05001054 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001056 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001057 return -ENXIO;
1058
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001059 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001060
1061 return 0;
1062}
1063
1064static int
1065qla2xxx_slave_configure(struct scsi_device *sdev)
1066{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001067 scsi_qla_host_t *ha = shost_priv(sdev->host);
8482e1182005-04-17 15:04:54 -05001068 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1069
f4f051e2005-04-17 15:02:26 -05001070 if (sdev->tagged_supported)
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001071 scsi_activate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 else
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001073 scsi_deactivate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
8482e1182005-04-17 15:04:54 -05001075 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1076
f4f051e2005-04-17 15:02:26 -05001077 return 0;
1078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
f4f051e2005-04-17 15:02:26 -05001080static void
1081qla2xxx_slave_destroy(struct scsi_device *sdev)
1082{
1083 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001086static int
1087qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1088{
1089 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1090 return sdev->queue_depth;
1091}
1092
1093static int
1094qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1095{
1096 if (sdev->tagged_supported) {
1097 scsi_set_tag_type(sdev, tag_type);
1098 if (tag_type)
1099 scsi_activate_tcq(sdev, sdev->queue_depth);
1100 else
1101 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1102 } else
1103 tag_type = 0;
1104
1105 return tag_type;
1106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108/**
1109 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1110 * @ha: HA context
1111 *
1112 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1113 * supported addressing method.
1114 */
1115static void
1116qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1117{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001118 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001121 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1122 /* Any upper-dword bits set? */
1123 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1124 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1125 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001127 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1128 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001129 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001132
1133 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1134 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001137static void
1138qla2x00_enable_intrs(scsi_qla_host_t *ha)
1139{
1140 unsigned long flags = 0;
1141 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1142
1143 spin_lock_irqsave(&ha->hardware_lock, flags);
1144 ha->interrupts_on = 1;
1145 /* enable risc and host interrupts */
1146 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1147 RD_REG_WORD(&reg->ictrl);
1148 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1149
1150}
1151
1152static void
1153qla2x00_disable_intrs(scsi_qla_host_t *ha)
1154{
1155 unsigned long flags = 0;
1156 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1157
1158 spin_lock_irqsave(&ha->hardware_lock, flags);
1159 ha->interrupts_on = 0;
1160 /* disable risc and host interrupts */
1161 WRT_REG_WORD(&reg->ictrl, 0);
1162 RD_REG_WORD(&reg->ictrl);
1163 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1164}
1165
1166static void
1167qla24xx_enable_intrs(scsi_qla_host_t *ha)
1168{
1169 unsigned long flags = 0;
1170 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1171
1172 spin_lock_irqsave(&ha->hardware_lock, flags);
1173 ha->interrupts_on = 1;
1174 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1175 RD_REG_DWORD(&reg->ictrl);
1176 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1177}
1178
1179static void
1180qla24xx_disable_intrs(scsi_qla_host_t *ha)
1181{
1182 unsigned long flags = 0;
1183 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1184
1185 spin_lock_irqsave(&ha->hardware_lock, flags);
1186 ha->interrupts_on = 0;
1187 WRT_REG_DWORD(&reg->ictrl, 0);
1188 RD_REG_DWORD(&reg->ictrl);
1189 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1190}
1191
1192static struct isp_operations qla2100_isp_ops = {
1193 .pci_config = qla2100_pci_config,
1194 .reset_chip = qla2x00_reset_chip,
1195 .chip_diag = qla2x00_chip_diag,
1196 .config_rings = qla2x00_config_rings,
1197 .reset_adapter = qla2x00_reset_adapter,
1198 .nvram_config = qla2x00_nvram_config,
1199 .update_fw_options = qla2x00_update_fw_options,
1200 .load_risc = qla2x00_load_risc,
1201 .pci_info_str = qla2x00_pci_info_str,
1202 .fw_version_str = qla2x00_fw_version_str,
1203 .intr_handler = qla2100_intr_handler,
1204 .enable_intrs = qla2x00_enable_intrs,
1205 .disable_intrs = qla2x00_disable_intrs,
1206 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001207 .target_reset = qla2x00_abort_target,
1208 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001209 .fabric_login = qla2x00_login_fabric,
1210 .fabric_logout = qla2x00_fabric_logout,
1211 .calc_req_entries = qla2x00_calc_iocbs_32,
1212 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1213 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1214 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1215 .read_nvram = qla2x00_read_nvram_data,
1216 .write_nvram = qla2x00_write_nvram_data,
1217 .fw_dump = qla2100_fw_dump,
1218 .beacon_on = NULL,
1219 .beacon_off = NULL,
1220 .beacon_blink = NULL,
1221 .read_optrom = qla2x00_read_optrom_data,
1222 .write_optrom = qla2x00_write_optrom_data,
1223 .get_flash_version = qla2x00_get_flash_version,
1224};
1225
1226static struct isp_operations qla2300_isp_ops = {
1227 .pci_config = qla2300_pci_config,
1228 .reset_chip = qla2x00_reset_chip,
1229 .chip_diag = qla2x00_chip_diag,
1230 .config_rings = qla2x00_config_rings,
1231 .reset_adapter = qla2x00_reset_adapter,
1232 .nvram_config = qla2x00_nvram_config,
1233 .update_fw_options = qla2x00_update_fw_options,
1234 .load_risc = qla2x00_load_risc,
1235 .pci_info_str = qla2x00_pci_info_str,
1236 .fw_version_str = qla2x00_fw_version_str,
1237 .intr_handler = qla2300_intr_handler,
1238 .enable_intrs = qla2x00_enable_intrs,
1239 .disable_intrs = qla2x00_disable_intrs,
1240 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001241 .target_reset = qla2x00_abort_target,
1242 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001243 .fabric_login = qla2x00_login_fabric,
1244 .fabric_logout = qla2x00_fabric_logout,
1245 .calc_req_entries = qla2x00_calc_iocbs_32,
1246 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1247 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1248 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1249 .read_nvram = qla2x00_read_nvram_data,
1250 .write_nvram = qla2x00_write_nvram_data,
1251 .fw_dump = qla2300_fw_dump,
1252 .beacon_on = qla2x00_beacon_on,
1253 .beacon_off = qla2x00_beacon_off,
1254 .beacon_blink = qla2x00_beacon_blink,
1255 .read_optrom = qla2x00_read_optrom_data,
1256 .write_optrom = qla2x00_write_optrom_data,
1257 .get_flash_version = qla2x00_get_flash_version,
1258};
1259
1260static struct isp_operations qla24xx_isp_ops = {
1261 .pci_config = qla24xx_pci_config,
1262 .reset_chip = qla24xx_reset_chip,
1263 .chip_diag = qla24xx_chip_diag,
1264 .config_rings = qla24xx_config_rings,
1265 .reset_adapter = qla24xx_reset_adapter,
1266 .nvram_config = qla24xx_nvram_config,
1267 .update_fw_options = qla24xx_update_fw_options,
1268 .load_risc = qla24xx_load_risc,
1269 .pci_info_str = qla24xx_pci_info_str,
1270 .fw_version_str = qla24xx_fw_version_str,
1271 .intr_handler = qla24xx_intr_handler,
1272 .enable_intrs = qla24xx_enable_intrs,
1273 .disable_intrs = qla24xx_disable_intrs,
1274 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001275 .target_reset = qla24xx_abort_target,
1276 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001277 .fabric_login = qla24xx_login_fabric,
1278 .fabric_logout = qla24xx_fabric_logout,
1279 .calc_req_entries = NULL,
1280 .build_iocbs = NULL,
1281 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1282 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1283 .read_nvram = qla24xx_read_nvram_data,
1284 .write_nvram = qla24xx_write_nvram_data,
1285 .fw_dump = qla24xx_fw_dump,
1286 .beacon_on = qla24xx_beacon_on,
1287 .beacon_off = qla24xx_beacon_off,
1288 .beacon_blink = qla24xx_beacon_blink,
1289 .read_optrom = qla24xx_read_optrom_data,
1290 .write_optrom = qla24xx_write_optrom_data,
1291 .get_flash_version = qla24xx_get_flash_version,
1292};
1293
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001294static struct isp_operations qla25xx_isp_ops = {
1295 .pci_config = qla25xx_pci_config,
1296 .reset_chip = qla24xx_reset_chip,
1297 .chip_diag = qla24xx_chip_diag,
1298 .config_rings = qla24xx_config_rings,
1299 .reset_adapter = qla24xx_reset_adapter,
1300 .nvram_config = qla24xx_nvram_config,
1301 .update_fw_options = qla24xx_update_fw_options,
1302 .load_risc = qla24xx_load_risc,
1303 .pci_info_str = qla24xx_pci_info_str,
1304 .fw_version_str = qla24xx_fw_version_str,
1305 .intr_handler = qla24xx_intr_handler,
1306 .enable_intrs = qla24xx_enable_intrs,
1307 .disable_intrs = qla24xx_disable_intrs,
1308 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001309 .target_reset = qla24xx_abort_target,
1310 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001311 .fabric_login = qla24xx_login_fabric,
1312 .fabric_logout = qla24xx_fabric_logout,
1313 .calc_req_entries = NULL,
1314 .build_iocbs = NULL,
1315 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1316 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1317 .read_nvram = qla25xx_read_nvram_data,
1318 .write_nvram = qla25xx_write_nvram_data,
1319 .fw_dump = qla25xx_fw_dump,
1320 .beacon_on = qla24xx_beacon_on,
1321 .beacon_off = qla24xx_beacon_off,
1322 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001323 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001324 .write_optrom = qla24xx_write_optrom_data,
1325 .get_flash_version = qla24xx_get_flash_version,
1326};
1327
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001328static inline void
1329qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1330{
1331 ha->device_type = DT_EXTENDED_IDS;
1332 switch (ha->pdev->device) {
1333 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1334 ha->device_type |= DT_ISP2100;
1335 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001336 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001337 break;
1338 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1339 ha->device_type |= DT_ISP2200;
1340 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001341 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001342 break;
1343 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1344 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001345 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001346 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001347 break;
1348 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1349 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001350 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001351 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001352 break;
1353 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1354 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001355 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001356 if (ha->pdev->subsystem_vendor == 0x1028 &&
1357 ha->pdev->subsystem_device == 0x0170)
1358 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001359 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001360 break;
1361 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1362 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001363 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001364 break;
1365 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1366 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001367 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001368 break;
1369 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1370 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001371 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001372 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001373 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001374 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001375 break;
1376 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1377 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001378 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001379 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001380 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001381 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001382 break;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001383 case PCI_DEVICE_ID_QLOGIC_ISP8432:
1384 ha->device_type |= DT_ISP8432;
1385 ha->device_type |= DT_ZIO_SUPPORTED;
1386 ha->device_type |= DT_FWI2;
1387 ha->device_type |= DT_IIDMA;
1388 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1389 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001390 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1391 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001392 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001393 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001394 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001395 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1396 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001397 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001398 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001399 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001400 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1401 ha->device_type |= DT_ISP2532;
1402 ha->device_type |= DT_ZIO_SUPPORTED;
1403 ha->device_type |= DT_FWI2;
1404 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001405 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1406 break;
1407 }
1408}
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410static int
1411qla2x00_iospace_config(scsi_qla_host_t *ha)
1412{
Andrew Vasquez37765412008-01-17 09:02:09 -08001413 resource_size_t pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Andrew Vasquez285d0322007-10-19 15:59:17 -07001415 if (pci_request_selected_regions(ha->pdev, ha->bars,
1416 QLA2XXX_DRIVER_NAME)) {
1417 qla_printk(KERN_WARNING, ha,
1418 "Failed to reserve PIO/MMIO regions (%s)\n",
1419 pci_name(ha->pdev));
1420
1421 goto iospace_error_exit;
1422 }
1423 if (!(ha->bars & 1))
1424 goto skip_pio;
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1427 pio = pci_resource_start(ha->pdev, 0);
Andrew Vasquez37765412008-01-17 09:02:09 -08001428 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1429 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 qla_printk(KERN_WARNING, ha,
1431 "Invalid PCI I/O region size (%s)...\n",
1432 pci_name(ha->pdev));
1433 pio = 0;
1434 }
1435 } else {
1436 qla_printk(KERN_WARNING, ha,
1437 "region #0 not a PIO resource (%s)...\n",
1438 pci_name(ha->pdev));
1439 pio = 0;
1440 }
Andrew Vasquez285d0322007-10-19 15:59:17 -07001441 ha->pio_address = pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Andrew Vasquez285d0322007-10-19 15:59:17 -07001443skip_pio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /* Use MMIO operations for all accesses. */
Andrew Vasquez37765412008-01-17 09:02:09 -08001445 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 qla_printk(KERN_ERR, ha,
Andrew Vasquez37765412008-01-17 09:02:09 -08001447 "region #1 not an MMIO resource (%s), aborting\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 pci_name(ha->pdev));
1449 goto iospace_error_exit;
1450 }
Andrew Vasquez37765412008-01-17 09:02:09 -08001451 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 qla_printk(KERN_ERR, ha,
1453 "Invalid PCI mem region size (%s), aborting\n",
1454 pci_name(ha->pdev));
1455 goto iospace_error_exit;
1456 }
1457
Andrew Vasquez37765412008-01-17 09:02:09 -08001458 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (!ha->iobase) {
1460 qla_printk(KERN_ERR, ha,
1461 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1462
1463 goto iospace_error_exit;
1464 }
1465
1466 return (0);
1467
1468iospace_error_exit:
1469 return (-ENOMEM);
1470}
1471
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001472static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001473qla2xxx_scan_start(struct Scsi_Host *shost)
1474{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001475 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001476
1477 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1478 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1479 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1480}
1481
1482static int
1483qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1484{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001485 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001486
1487 if (!ha->host)
1488 return 1;
1489 if (time > ha->loop_reset_delay * HZ)
1490 return 1;
1491
1492 return atomic_read(&ha->loop_state) == LOOP_READY;
1493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495/*
1496 * PCI driver interface
1497 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001498static int __devinit
1499qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001501 int ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 struct Scsi_Host *host;
1503 scsi_qla_host_t *ha;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001504 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001506 struct scsi_host_template *sht;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001507 int bars, mem_only = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Andrew Vasquez285d0322007-10-19 15:59:17 -07001509 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
1510 sht = &qla2x00_driver_template;
1511 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1512 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001513 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
Andrew Vasquez285d0322007-10-19 15:59:17 -07001514 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1515 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
1516 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
1517 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1518 sht = &qla24xx_driver_template;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001519 mem_only = 1;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001520 }
1521
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001522 if (mem_only) {
1523 if (pci_enable_device_mem(pdev))
1524 goto probe_out;
1525 } else {
1526 if (pci_enable_device(pdev))
1527 goto probe_out;
1528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Seokmann Ju14e660e2007-09-20 14:07:36 -07001530 if (pci_find_aer_capability(pdev))
1531 if (pci_enable_pcie_error_reporting(pdev))
1532 goto probe_out;
1533
Andrew Vasquez54333832005-11-09 15:49:04 -08001534 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (host == NULL) {
1536 printk(KERN_WARNING
1537 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1538 goto probe_disable_device;
1539 }
1540
1541 /* Clear our data area */
Andrew Vasquezf363b942007-09-20 14:07:45 -07001542 ha = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 memset(ha, 0, sizeof(scsi_qla_host_t));
1544
1545 ha->pdev = pdev;
1546 ha->host = host;
1547 ha->host_no = host->host_no;
Andrew Vasquezcb630672006-05-17 15:09:45 -07001548 sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001549 ha->parent = NULL;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001550 ha->bars = bars;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001551 ha->mem_only = mem_only;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001552 spin_lock_init(&ha->hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001554 /* Set ISP-type information. */
1555 qla2x00_set_isp_flags(ha);
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /* Configure PCI I/O space */
1558 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001559 if (ret)
1560 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001563 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1564 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001567 ha->init_cb_size = sizeof(init_cb_t);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001568 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001569 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001570 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001572 ha->max_q_depth = MAX_Q_DEPTH;
1573 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1574 ha->max_q_depth = ql2xmaxqdepth;
1575
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001576 /* Assign ISP specific operations. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001578 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1580 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1581 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1582 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1583 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001584 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001585 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001587 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1589 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1590 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1591 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001592 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001593 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001594 } else if (IS_QLA23XX(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001595 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1597 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1598 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1599 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001600 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001601 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1602 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001603 ha->isp_ops = &qla2300_isp_ops;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001604 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001605 host->max_id = MAX_TARGETS_2200;
1606 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1607 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1608 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1609 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001610 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1611 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001612 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001613 ha->optrom_size = OPTROM_SIZE_24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001614 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001615 } else if (IS_QLA25XX(ha)) {
1616 host->max_id = MAX_TARGETS_2200;
1617 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1618 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1619 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1620 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1621 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1622 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
1623 ha->gid_list_info_size = 8;
1624 ha->optrom_size = OPTROM_SIZE_25XX;
1625 ha->isp_ops = &qla25xx_isp_ops;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001626 ha->hw_event_start = PCI_FUNC(pdev->devfn) ?
1627 FA_HW_EVENT1_ADDR: FA_HW_EVENT0_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629 host->can_queue = ha->request_q_length + 128;
1630
1631 /* load the F/W, read paramaters, and init the H/W */
1632 ha->instance = num_hosts;
1633
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001634 init_MUTEX(&ha->vport_sem);
Marcus Barrow0b05a1f2008-01-17 09:02:13 -08001635 init_completion(&ha->mbx_cmd_comp);
1636 complete(&ha->mbx_cmd_comp);
1637 init_completion(&ha->mbx_intr_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 INIT_LIST_HEAD(&ha->list);
1640 INIT_LIST_HEAD(&ha->fcports);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001641 INIT_LIST_HEAD(&ha->vp_list);
Andrew Vasquez0971de72008-04-03 13:13:18 -07001642 INIT_LIST_HEAD(&ha->work_list);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001643
1644 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 qla2x00_config_dma_addressing(ha);
1647 if (qla2x00_mem_alloc(ha)) {
1648 qla_printk(KERN_WARNING, ha,
1649 "[ERROR] Failed to allocate memory for adapter\n");
1650
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001651 ret = -ENOMEM;
1652 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
Andrew Vasquez765140b2007-05-07 07:42:58 -07001655 if (qla2x00_initialize_adapter(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 qla_printk(KERN_WARNING, ha,
1657 "Failed to initialize adapter\n");
1658
1659 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1660 "Adapter flags %x.\n",
1661 ha->host_no, ha->device_flags));
1662
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001663 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto probe_failed;
1665 }
1666
1667 /*
1668 * Startup the kernel thread for this host adapter
1669 */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001670 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1671 "%s_dpc", ha->host_str);
1672 if (IS_ERR(ha->dpc_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 qla_printk(KERN_WARNING, ha,
1674 "Unable to start DPC thread!\n");
Christoph Hellwig39a11242006-02-14 18:46:22 +01001675 ret = PTR_ERR(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 goto probe_failed;
1677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001679 host->this_id = 255;
1680 host->cmd_per_lun = 3;
1681 host->unique_id = ha->instance;
1682 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07001683 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001684 host->max_lun = MAX_LUNS;
1685 host->transportt = qla2xxx_transport_template;
1686
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001687 ret = qla2x00_request_irqs(ha);
1688 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 /* Initialized the timer */
1692 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1693
1694 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1695 ha->host_no, ha));
1696
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001697 pci_set_drvdata(pdev, ha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 ha->flags.init_done = 1;
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001700 ha->flags.online = 1;
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 num_hosts++;
1703
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001704 ret = scsi_add_host(host, &pdev->dev);
1705 if (ret)
1706 goto probe_failed;
1707
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001708 scsi_scan_host(host);
1709
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001710 qla2x00_alloc_sysfs_attr(ha);
1711
1712 qla2x00_init_host_attr(ha);
1713
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001714 qla2x00_dfs_setup(ha);
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 qla_printk(KERN_INFO, ha, "\n"
1717 " QLogic Fibre Channel HBA Driver: %s\n"
1718 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001719 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1720 qla2x00_version_str, ha->model_number,
1721 ha->model_desc ? ha->model_desc: "", pdev->device,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001722 ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
Andrew Vasquez54333832005-11-09 15:49:04 -08001723 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001724 ha->isp_ops->fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return 0;
1727
1728probe_failed:
1729 qla2x00_free_device(ha);
1730
1731 scsi_host_put(host);
1732
1733probe_disable_device:
1734 pci_disable_device(pdev);
1735
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001736probe_out:
1737 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Adrian Bunk4c993f72008-01-14 00:55:16 -08001740static void
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001741qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
1743 scsi_qla_host_t *ha;
1744
1745 ha = pci_get_drvdata(pdev);
1746
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001747 qla2x00_dfs_remove(ha);
1748
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001749 qla84xx_put_chip(ha);
1750
8482e1182005-04-17 15:04:54 -05001751 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
bdf79622005-04-17 15:06:53 -05001753 fc_remove_host(ha->host);
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 scsi_remove_host(ha->host);
1756
1757 qla2x00_free_device(ha);
1758
1759 scsi_host_put(ha->host);
1760
Bernhard Walle665db932007-03-28 00:49:49 +02001761 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 pci_set_drvdata(pdev, NULL);
1763}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765static void
1766qla2x00_free_device(scsi_qla_host_t *ha)
1767{
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001768 qla2x00_abort_all_cmds(ha, DID_NO_CONNECT << 16);
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* Disable timer */
1771 if (ha->timer_active)
1772 qla2x00_stop_timer(ha);
1773
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001774 ha->flags.online = 0;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001777 if (ha->dpc_thread) {
1778 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Christoph Hellwig39a11242006-02-14 18:46:22 +01001780 /*
1781 * qla2xxx_wake_dpc checks for ->dpc_thread
1782 * so we need to zero it out.
1783 */
1784 ha->dpc_thread = NULL;
1785 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001788 if (ha->flags.fce_enabled)
1789 qla2x00_disable_fce_trace(ha, NULL, NULL);
1790
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001791 if (ha->eft)
Andrew Vasquez00b6bd22008-01-17 09:02:16 -08001792 qla2x00_disable_eft_trace(ha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001793
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001794 /* Stop currently executing firmware. */
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001795 qla2x00_try_to_stop_firmware(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001797 /* turn-off interrupts on the card */
1798 if (ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001799 ha->isp_ops->disable_intrs(ha);
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001800
1801 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001803 qla2x00_free_irqs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 /* release io space registers */
1806 if (ha->iobase)
1807 iounmap(ha->iobase);
Andrew Vasquez285d0322007-10-19 15:59:17 -07001808 pci_release_selected_regions(ha->pdev, ha->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001811static inline void
1812qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1813 int defer)
1814{
1815 unsigned long flags;
1816 struct fc_rport *rport;
1817
1818 if (!fcport->rport)
1819 return;
1820
1821 rport = fcport->rport;
1822 if (defer) {
1823 spin_lock_irqsave(&fcport->rport_lock, flags);
1824 fcport->drport = rport;
1825 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001826 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001827 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1828 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1829 } else {
1830 spin_lock_irqsave(&fcport->rport_lock, flags);
1831 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001832 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001833 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1834 fc_remote_port_delete(rport);
1835 }
1836}
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1840 *
1841 * Input: ha = adapter block pointer. fcport = port structure pointer.
1842 *
1843 * Return: None.
1844 *
1845 * Context:
1846 */
1847void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001848 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001850 if (atomic_read(&fcport->state) == FCS_ONLINE &&
1851 ha->vp_idx == fcport->vp_idx)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001852 qla2x00_schedule_rport_del(ha, fcport, defer);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001853
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001854 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 * We may need to retry the login, so don't change the state of the
1856 * port but do the retries.
1857 */
1858 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1859 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1860
1861 if (!do_login)
1862 return;
1863
1864 if (fcport->login_retry == 0) {
1865 fcport->login_retry = ha->login_retry_count;
1866 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1867
1868 DEBUG(printk("scsi(%ld): Port login retry: "
1869 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1870 "id = 0x%04x retry cnt=%d\n",
1871 ha->host_no,
1872 fcport->port_name[0],
1873 fcport->port_name[1],
1874 fcport->port_name[2],
1875 fcport->port_name[3],
1876 fcport->port_name[4],
1877 fcport->port_name[5],
1878 fcport->port_name[6],
1879 fcport->port_name[7],
1880 fcport->loop_id,
1881 fcport->login_retry));
1882 }
1883}
1884
1885/*
1886 * qla2x00_mark_all_devices_lost
1887 * Updates fcport state when device goes offline.
1888 *
1889 * Input:
1890 * ha = adapter block pointer.
1891 * fcport = port structure pointer.
1892 *
1893 * Return:
1894 * None.
1895 *
1896 * Context:
1897 */
1898void
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001899qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 fc_port_t *fcport;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001902 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001904 list_for_each_entry(fcport, &pha->fcports, list) {
1905 if (ha->vp_idx != 0 && ha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 /*
1908 * No point in marking the device as lost, if the device is
1909 * already DEAD.
1910 */
1911 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1912 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001913 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1914 if (defer)
1915 qla2x00_schedule_rport_del(ha, fcport, defer);
1916 else if (ha->vp_idx == fcport->vp_idx)
1917 qla2x00_schedule_rport_del(ha, fcport, defer);
1918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1920 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001921
Christoph Hellwig39a11242006-02-14 18:46:22 +01001922 if (defer)
1923 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
1925
1926/*
1927* qla2x00_mem_alloc
1928* Allocates adapter memory.
1929*
1930* Returns:
1931* 0 = success.
Andrew Vasqueze8711082008-01-31 12:33:48 -08001932* !0 = failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933*/
Andrew Vasqueze8711082008-01-31 12:33:48 -08001934static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935qla2x00_mem_alloc(scsi_qla_host_t *ha)
1936{
1937 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Andrew Vasqueze8711082008-01-31 12:33:48 -08001939 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
1940 (ha->request_q_length + 1) * sizeof(request_t), &ha->request_dma,
1941 GFP_KERNEL);
1942 if (!ha->request_ring)
1943 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Andrew Vasqueze8711082008-01-31 12:33:48 -08001945 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
1946 (ha->response_q_length + 1) * sizeof(response_t),
1947 &ha->response_dma, GFP_KERNEL);
1948 if (!ha->response_ring)
1949 goto fail_free_request_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Andrew Vasqueze8711082008-01-31 12:33:48 -08001951 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
1952 &ha->gid_list_dma, GFP_KERNEL);
1953 if (!ha->gid_list)
1954 goto fail_free_response_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Andrew Vasqueze8711082008-01-31 12:33:48 -08001956 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
1957 &ha->init_cb_dma, GFP_KERNEL);
1958 if (!ha->init_cb)
1959 goto fail_free_gid_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Andrew Vasqueze8711082008-01-31 12:33:48 -08001961 snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
1962 ha->host_no);
1963 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
1964 DMA_POOL_SIZE, 8, 0);
1965 if (!ha->s_dma_pool)
1966 goto fail_free_init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Andrew Vasqueze8711082008-01-31 12:33:48 -08001968 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
1969 if (!ha->srb_mempool)
1970 goto fail_free_s_dma_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Andrew Vasqueze8711082008-01-31 12:33:48 -08001972 /* Get memory for cached NVRAM */
1973 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
1974 if (!ha->nvram)
1975 goto fail_free_srb_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Andrew Vasqueze8711082008-01-31 12:33:48 -08001977 /* Allocate memory for SNS commands */
1978 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1979 /* Get consistent memory allocated for SNS commands */
1980 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
1981 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
1982 if (!ha->sns_cmd)
1983 goto fail_free_nvram;
1984 } else {
1985 /* Get consistent memory allocated for MS IOCB */
1986 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1987 &ha->ms_iocb_dma);
1988 if (!ha->ms_iocb)
1989 goto fail_free_nvram;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Andrew Vasqueze8711082008-01-31 12:33:48 -08001991 /* Get consistent memory allocated for CT SNS commands */
1992 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
1993 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
1994 if (!ha->ct_sns)
1995 goto fail_free_ms_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997
Andrew Vasqueze8711082008-01-31 12:33:48 -08001998 return 0;
1999
2000fail_free_ms_iocb:
2001 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2002 ha->ms_iocb = NULL;
2003 ha->ms_iocb_dma = 0;
2004fail_free_nvram:
2005 kfree(ha->nvram);
2006 ha->nvram = NULL;
2007fail_free_srb_mempool:
2008 mempool_destroy(ha->srb_mempool);
2009 ha->srb_mempool = NULL;
2010fail_free_s_dma_pool:
2011 dma_pool_destroy(ha->s_dma_pool);
2012 ha->s_dma_pool = NULL;
2013fail_free_init_cb:
2014 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2015 ha->init_cb_dma);
2016 ha->init_cb = NULL;
2017 ha->init_cb_dma = 0;
2018fail_free_gid_list:
2019 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2020 ha->gid_list_dma);
2021 ha->gid_list = NULL;
2022 ha->gid_list_dma = 0;
2023fail_free_response_ring:
2024 dma_free_coherent(&ha->pdev->dev, (ha->response_q_length + 1) *
2025 sizeof(response_t), ha->response_ring, ha->response_dma);
2026 ha->response_ring = NULL;
2027 ha->response_dma = 0;
2028fail_free_request_ring:
2029 dma_free_coherent(&ha->pdev->dev, (ha->request_q_length + 1) *
2030 sizeof(request_t), ha->request_ring, ha->request_dma);
2031 ha->request_ring = NULL;
2032 ha->request_dma = 0;
2033fail:
2034 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
2037/*
2038* qla2x00_mem_free
2039* Frees all adapter allocated memory.
2040*
2041* Input:
2042* ha = adapter block pointer.
2043*/
Adrian Bunka824ebb2008-01-17 09:02:15 -08002044static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045qla2x00_mem_free(scsi_qla_host_t *ha)
2046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 struct list_head *fcpl, *fcptemp;
2048 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Andrew Vasqueze8711082008-01-31 12:33:48 -08002050 if (ha->srb_mempool)
2051 mempool_destroy(ha->srb_mempool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002053 if (ha->fce)
2054 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2055 ha->fce_dma);
2056
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002057 if (ha->fw_dump) {
2058 if (ha->eft)
2059 dma_free_coherent(&ha->pdev->dev,
2060 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2061 vfree(ha->fw_dump);
2062 }
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 if (ha->sns_cmd)
2065 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2066 ha->sns_cmd, ha->sns_cmd_dma);
2067
2068 if (ha->ct_sns)
2069 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2070 ha->ct_sns, ha->ct_sns_dma);
2071
Andrew Vasquez88729e52006-06-23 16:10:50 -07002072 if (ha->sfp_data)
2073 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (ha->ms_iocb)
2076 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (ha->s_dma_pool)
2079 dma_pool_destroy(ha->s_dma_pool);
2080
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002081 if (ha->init_cb)
2082 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2083 ha->init_cb, ha->init_cb_dma);
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (ha->gid_list)
2086 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2087 ha->gid_list_dma);
2088
2089 if (ha->response_ring)
2090 dma_free_coherent(&ha->pdev->dev,
2091 (ha->response_q_length + 1) * sizeof(response_t),
2092 ha->response_ring, ha->response_dma);
2093
2094 if (ha->request_ring)
2095 dma_free_coherent(&ha->pdev->dev,
2096 (ha->request_q_length + 1) * sizeof(request_t),
2097 ha->request_ring, ha->request_dma);
2098
Andrew Vasqueze8711082008-01-31 12:33:48 -08002099 ha->srb_mempool = NULL;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002100 ha->eft = NULL;
2101 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 ha->sns_cmd = NULL;
2103 ha->sns_cmd_dma = 0;
2104 ha->ct_sns = NULL;
2105 ha->ct_sns_dma = 0;
2106 ha->ms_iocb = NULL;
2107 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 ha->init_cb = NULL;
2109 ha->init_cb_dma = 0;
2110
2111 ha->s_dma_pool = NULL;
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 ha->gid_list = NULL;
2114 ha->gid_list_dma = 0;
2115
2116 ha->response_ring = NULL;
2117 ha->response_dma = 0;
2118 ha->request_ring = NULL;
2119 ha->request_dma = 0;
2120
2121 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2122 fcport = list_entry(fcpl, fc_port_t, list);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /* fc ports */
2125 list_del_init(&fcport->list);
2126 kfree(fcport);
2127 }
2128 INIT_LIST_HEAD(&ha->fcports);
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002131 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 ha->fw_dump_reading = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002133
2134 vfree(ha->optrom_buffer);
Seokmann Ju53772a22007-07-30 11:01:07 -07002135 kfree(ha->nvram);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
Andrew Vasquez0971de72008-04-03 13:13:18 -07002138struct qla_work_evt *
2139qla2x00_alloc_work(struct scsi_qla_host *ha, enum qla_work_type type,
2140 int locked)
2141{
2142 struct qla_work_evt *e;
2143
2144 e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
2145 GFP_KERNEL);
2146 if (!e)
2147 return NULL;
2148
2149 INIT_LIST_HEAD(&e->list);
2150 e->type = type;
2151 e->flags = QLA_EVT_FLAG_FREE;
2152 return e;
2153}
2154
2155int
2156qla2x00_post_work(struct scsi_qla_host *ha, struct qla_work_evt *e, int locked)
2157{
2158 unsigned long flags;
2159
2160 if (!locked)
2161 spin_lock_irqsave(&ha->hardware_lock, flags);
2162 list_add_tail(&e->list, &ha->work_list);
2163 qla2xxx_wake_dpc(ha);
2164 if (!locked)
2165 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2166 return QLA_SUCCESS;
2167}
2168
2169int
2170qla2x00_post_aen_work(struct scsi_qla_host *ha, enum fc_host_event_code code,
2171 u32 data)
2172{
2173 struct qla_work_evt *e;
2174
2175 e = qla2x00_alloc_work(ha, QLA_EVT_AEN, 1);
2176 if (!e)
2177 return QLA_FUNCTION_FAILED;
2178
2179 e->u.aen.code = code;
2180 e->u.aen.data = data;
2181 return qla2x00_post_work(ha, e, 1);
2182}
2183
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002184int
2185qla2x00_post_hwe_work(struct scsi_qla_host *ha, uint16_t code, uint16_t d1,
2186 uint16_t d2, uint16_t d3)
2187{
2188 struct qla_work_evt *e;
2189
2190 e = qla2x00_alloc_work(ha, QLA_EVT_HWE_LOG, 1);
2191 if (!e)
2192 return QLA_FUNCTION_FAILED;
2193
2194 e->u.hwe.code = code;
2195 e->u.hwe.d1 = d1;
2196 e->u.hwe.d2 = d2;
2197 e->u.hwe.d3 = d3;
2198 return qla2x00_post_work(ha, e, 1);
2199}
2200
Andrew Vasquez0971de72008-04-03 13:13:18 -07002201static void
2202qla2x00_do_work(struct scsi_qla_host *ha)
2203{
2204 struct qla_work_evt *e;
2205
2206 spin_lock_irq(&ha->hardware_lock);
2207 while (!list_empty(&ha->work_list)) {
2208 e = list_entry(ha->work_list.next, struct qla_work_evt, list);
2209 list_del_init(&e->list);
2210 spin_unlock_irq(&ha->hardware_lock);
2211
2212 switch (e->type) {
2213 case QLA_EVT_AEN:
2214 fc_host_post_event(ha->host, fc_get_event_number(),
2215 e->u.aen.code, e->u.aen.data);
2216 break;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002217 case QLA_EVT_HWE_LOG:
2218 qla2xxx_hw_event_log(ha, e->u.hwe.code, e->u.hwe.d1,
2219 e->u.hwe.d2, e->u.hwe.d3);
2220 break;
Andrew Vasquez0971de72008-04-03 13:13:18 -07002221 }
2222 if (e->flags & QLA_EVT_FLAG_FREE)
2223 kfree(e);
2224 spin_lock_irq(&ha->hardware_lock);
2225 }
2226 spin_unlock_irq(&ha->hardware_lock);
2227}
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229/**************************************************************************
2230* qla2x00_do_dpc
2231* This kernel thread is a task that is schedule by the interrupt handler
2232* to perform the background processing for interrupts.
2233*
2234* Notes:
2235* This task always run in the context of a kernel thread. It
2236* is kick-off by the driver's detect code and starts up
2237* up one per adapter. It immediately goes to sleep and waits for
2238* some fibre event. When either the interrupt handler or
2239* the timer routine detects a event it will one of the task
2240* bits then wake us up.
2241**************************************************************************/
2242static int
2243qla2x00_do_dpc(void *data)
2244{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002245 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 scsi_qla_host_t *ha;
2247 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 uint16_t next_loopid;
Seokmann Ju99363ef2008-01-31 12:33:51 -08002250 struct scsi_qla_host *vha;
2251 int i;
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 ha = (scsi_qla_host_t *)data;
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 set_user_nice(current, -20);
2257
Christoph Hellwig39a11242006-02-14 18:46:22 +01002258 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2260
Christoph Hellwig39a11242006-02-14 18:46:22 +01002261 set_current_state(TASK_INTERRUPTIBLE);
2262 schedule();
2263 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2266
2267 /* Initialization not yet finished. Don't do anything yet. */
Christoph Hellwig39a11242006-02-14 18:46:22 +01002268 if (!ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 continue;
2270
2271 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2272
2273 ha->dpc_active = 1;
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 ha->dpc_active = 0;
2277 continue;
2278 }
2279
Andrew Vasquez0971de72008-04-03 13:13:18 -07002280 qla2x00_do_work(ha);
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2283
2284 DEBUG(printk("scsi(%ld): dpc: sched "
2285 "qla2x00_abort_isp ha = %p\n",
2286 ha->host_no, ha));
2287 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2288 &ha->dpc_flags))) {
2289
2290 if (qla2x00_abort_isp(ha)) {
2291 /* failed. retry later */
2292 set_bit(ISP_ABORT_NEEDED,
2293 &ha->dpc_flags);
2294 }
2295 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2296 }
Seokmann Ju99363ef2008-01-31 12:33:51 -08002297
2298 for_each_mapped_vp_idx(ha, i) {
2299 list_for_each_entry(vha, &ha->vp_list,
2300 vp_list) {
2301 if (i == vha->vp_idx) {
2302 set_bit(ISP_ABORT_NEEDED,
2303 &vha->dpc_flags);
2304 break;
2305 }
2306 }
2307 }
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2310 ha->host_no));
2311 }
2312
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002313 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2314 qla2x00_update_fcports(ha);
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2317 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2318
2319 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2320 ha->host_no));
2321
2322 qla2x00_rst_aen(ha);
2323 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2324 }
2325
2326 /* Retry each device up to login retry count */
2327 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2328 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2329 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2330
2331 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2332 ha->host_no));
2333
2334 next_loopid = 0;
2335 list_for_each_entry(fcport, &ha->fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 /*
2337 * If the port is not ONLINE then try to login
2338 * to it if we haven't run out of retries.
2339 */
2340 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2341 fcport->login_retry) {
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (fcport->flags & FCF_FABRIC_DEVICE) {
2344 if (fcport->flags &
2345 FCF_TAPE_PRESENT)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002346 ha->isp_ops->fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002347 ha, fcport->loop_id,
2348 fcport->d_id.b.domain,
2349 fcport->d_id.b.area,
2350 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 status = qla2x00_fabric_login(
2352 ha, fcport, &next_loopid);
2353 } else
2354 status =
2355 qla2x00_local_device_login(
andrew.vasquez@qlogic.com9a52a572006-03-09 14:27:44 -08002356 ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Ravi Anand63a86512007-09-20 14:07:40 -07002358 fcport->login_retry--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (status == QLA_SUCCESS) {
2360 fcport->old_loop_id = fcport->loop_id;
2361
2362 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2363 ha->host_no, fcport->loop_id));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002364
andrew.vasquez@qlogic.com052c40c2006-01-20 14:53:19 -08002365 qla2x00_update_fcport(ha,
2366 fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 } else if (status == 1) {
2368 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2369 /* retry the login again */
2370 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2371 ha->host_no,
2372 fcport->login_retry, fcport->loop_id));
2373 } else {
2374 fcport->login_retry = 0;
2375 }
Ravi Anand63a86512007-09-20 14:07:40 -07002376 if (fcport->login_retry == 0)
2377 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2380 break;
2381 }
2382 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2383 ha->host_no));
2384 }
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2387
2388 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2389 ha->host_no));
2390
2391 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2392 &ha->dpc_flags))) {
2393
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002394 rval = qla2x00_loop_resync(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2397 }
2398
2399 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2400 ha->host_no));
2401 }
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002404 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002406 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002407 ha->isp_ops->beacon_blink(ha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002408
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002409 qla2x00_do_dpc_all_vps(ha);
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 ha->dpc_active = 0;
2412 } /* End of while(1) */
2413
2414 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2415
2416 /*
2417 * Make sure that nobody tries to wake us up again.
2418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 ha->dpc_active = 0;
2420
Christoph Hellwig39a11242006-02-14 18:46:22 +01002421 return 0;
2422}
2423
2424void
2425qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2426{
2427 if (ha->dpc_thread)
2428 wake_up_process(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
2431/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432* qla2x00_rst_aen
2433* Processes asynchronous reset.
2434*
2435* Input:
2436* ha = adapter block pointer.
2437*/
2438static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002439qla2x00_rst_aen(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441 if (ha->flags.online && !ha->flags.reset_active &&
2442 !atomic_read(&ha->loop_down_timer) &&
2443 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2444 do {
2445 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2446
2447 /*
2448 * Issue marker command only when we are going to start
2449 * the I/O.
2450 */
2451 ha->marker_needed = 1;
2452 } while (!atomic_read(&ha->loop_down_timer) &&
2453 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2454 }
2455}
2456
f4f051e2005-04-17 15:02:26 -05002457static void
2458qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2459{
2460 struct scsi_cmnd *cmd = sp->cmd;
2461
2462 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09002463 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05002464 sp->flags &= ~SRB_DMA_VALID;
2465 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002466 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002467}
2468
2469void
2470qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2471{
2472 struct scsi_cmnd *cmd = sp->cmd;
2473
2474 qla2x00_sp_free_dma(ha, sp);
2475
f4f051e2005-04-17 15:02:26 -05002476 mempool_free(sp, ha->srb_mempool);
2477
2478 cmd->scsi_done(cmd);
2479}
bdf79622005-04-17 15:06:53 -05002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481/**************************************************************************
2482* qla2x00_timer
2483*
2484* Description:
2485* One second timer
2486*
2487* Context: Interrupt
2488***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002489void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490qla2x00_timer(scsi_qla_host_t *ha)
2491{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 unsigned long cpu_flags = 0;
2493 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 int start_dpc = 0;
2495 int index;
2496 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002497 int t;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002498 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 /*
2501 * Ports - Port down timer.
2502 *
2503 * Whenever, a port is in the LOST state we start decrementing its port
2504 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002505 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 */
2507 t = 0;
2508 list_for_each_entry(fcport, &ha->fcports, list) {
2509 if (fcport->port_type != FCT_TARGET)
2510 continue;
2511
2512 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2513
2514 if (atomic_read(&fcport->port_down_timer) == 0)
2515 continue;
2516
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002517 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002521 "%d remaining\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 ha->host_no,
2523 t, atomic_read(&fcport->port_down_timer)));
2524 }
2525 t++;
2526 } /* End of for fcport */
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 /* Loop down handler. */
2530 if (atomic_read(&ha->loop_down_timer) > 0 &&
2531 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2532
2533 if (atomic_read(&ha->loop_down_timer) ==
2534 ha->loop_down_abort_time) {
2535
2536 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2537 "queues before time expire\n",
2538 ha->host_no));
2539
2540 if (!IS_QLA2100(ha) && ha->link_down_timeout)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002541 atomic_set(&ha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /* Schedule an ISP abort to return any tape commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002544 /* NPIV - scan physical port only */
2545 if (!ha->parent) {
2546 spin_lock_irqsave(&ha->hardware_lock,
2547 cpu_flags);
2548 for (index = 1;
2549 index < MAX_OUTSTANDING_COMMANDS;
2550 index++) {
2551 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05002552
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002553 sp = ha->outstanding_cmds[index];
2554 if (!sp)
2555 continue;
2556 sfcp = sp->fcport;
2557 if (!(sfcp->flags & FCF_TAPE_PRESENT))
2558 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002560 set_bit(ISP_ABORT_NEEDED,
2561 &ha->dpc_flags);
2562 break;
2563 }
2564 spin_unlock_irqrestore(&ha->hardware_lock,
2565 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2568 start_dpc++;
2569 }
2570
2571 /* if the loop has been down for 4 minutes, reinit adapter */
2572 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2573 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2574 "restarting queues.\n",
2575 ha->host_no));
2576
2577 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2578 start_dpc++;
2579
Seokmann Ju463717e2008-04-03 13:13:29 -07002580 if (!(ha->device_flags & DFLG_NO_CABLE) &&
2581 !ha->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 DEBUG(printk("scsi(%ld): Loop down - "
2583 "aborting ISP.\n",
2584 ha->host_no));
2585 qla_printk(KERN_WARNING, ha,
2586 "Loop down - aborting ISP.\n");
2587
2588 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2589 }
2590 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002591 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 ha->host_no,
2593 atomic_read(&ha->loop_down_timer)));
2594 }
2595
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002596 /* Check if beacon LED needs to be blinked */
2597 if (ha->beacon_blink_led == 1) {
2598 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2599 start_dpc++;
2600 }
2601
Andrew Vasquez550bf572008-04-24 15:21:23 -07002602 /* Process any deferred work. */
2603 if (!list_empty(&ha->work_list))
2604 start_dpc++;
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 /* Schedule the DPC routine if needed */
2607 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2608 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002609 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 start_dpc ||
f4f051e2005-04-17 15:02:26 -05002611 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002612 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002613 test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
Christoph Hellwig39a11242006-02-14 18:46:22 +01002614 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002615 qla2xxx_wake_dpc(pha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2618}
2619
Andrew Vasquez54333832005-11-09 15:49:04 -08002620/* Firmware interface routines. */
2621
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002622#define FW_BLOBS 6
Andrew Vasquez54333832005-11-09 15:49:04 -08002623#define FW_ISP21XX 0
2624#define FW_ISP22XX 1
2625#define FW_ISP2300 2
2626#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002627#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002628#define FW_ISP25XX 5
Andrew Vasquez54333832005-11-09 15:49:04 -08002629
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002630#define FW_FILE_ISP21XX "ql2100_fw.bin"
2631#define FW_FILE_ISP22XX "ql2200_fw.bin"
2632#define FW_FILE_ISP2300 "ql2300_fw.bin"
2633#define FW_FILE_ISP2322 "ql2322_fw.bin"
2634#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002635#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002636
Andrew Vasquez54333832005-11-09 15:49:04 -08002637static DECLARE_MUTEX(qla_fw_lock);
2638
2639static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002640 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2641 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2642 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2643 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2644 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002645 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002646};
2647
2648struct fw_blob *
2649qla2x00_request_firmware(scsi_qla_host_t *ha)
2650{
2651 struct fw_blob *blob;
2652
2653 blob = NULL;
2654 if (IS_QLA2100(ha)) {
2655 blob = &qla_fw_blobs[FW_ISP21XX];
2656 } else if (IS_QLA2200(ha)) {
2657 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002658 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002659 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002660 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002661 blob = &qla_fw_blobs[FW_ISP2322];
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002662 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002663 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002664 } else if (IS_QLA25XX(ha)) {
2665 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08002666 }
2667
2668 down(&qla_fw_lock);
2669 if (blob->fw)
2670 goto out;
2671
2672 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2673 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2674 "(%s).\n", ha->host_no, blob->name));
2675 blob->fw = NULL;
2676 blob = NULL;
2677 goto out;
2678 }
2679
2680out:
2681 up(&qla_fw_lock);
2682 return blob;
2683}
2684
2685static void
2686qla2x00_release_firmware(void)
2687{
2688 int idx;
2689
2690 down(&qla_fw_lock);
2691 for (idx = 0; idx < FW_BLOBS; idx++)
2692 if (qla_fw_blobs[idx].fw)
2693 release_firmware(qla_fw_blobs[idx].fw);
2694 up(&qla_fw_lock);
2695}
2696
Seokmann Ju14e660e2007-09-20 14:07:36 -07002697static pci_ers_result_t
2698qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2699{
2700 switch (state) {
2701 case pci_channel_io_normal:
2702 return PCI_ERS_RESULT_CAN_RECOVER;
2703 case pci_channel_io_frozen:
2704 pci_disable_device(pdev);
2705 return PCI_ERS_RESULT_NEED_RESET;
2706 case pci_channel_io_perm_failure:
2707 qla2x00_remove_one(pdev);
2708 return PCI_ERS_RESULT_DISCONNECT;
2709 }
2710 return PCI_ERS_RESULT_NEED_RESET;
2711}
2712
2713static pci_ers_result_t
2714qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2715{
2716 int risc_paused = 0;
2717 uint32_t stat;
2718 unsigned long flags;
2719 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2720 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2721 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2722
2723 spin_lock_irqsave(&ha->hardware_lock, flags);
2724 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2725 stat = RD_REG_DWORD(&reg->hccr);
2726 if (stat & HCCR_RISC_PAUSE)
2727 risc_paused = 1;
2728 } else if (IS_QLA23XX(ha)) {
2729 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2730 if (stat & HSR_RISC_PAUSED)
2731 risc_paused = 1;
2732 } else if (IS_FWI2_CAPABLE(ha)) {
2733 stat = RD_REG_DWORD(&reg24->host_status);
2734 if (stat & HSRX_RISC_PAUSED)
2735 risc_paused = 1;
2736 }
2737 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2738
2739 if (risc_paused) {
2740 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2741 "Dumping firmware!\n");
2742 ha->isp_ops->fw_dump(ha, 0);
2743
2744 return PCI_ERS_RESULT_NEED_RESET;
2745 } else
2746 return PCI_ERS_RESULT_RECOVERED;
2747}
2748
2749static pci_ers_result_t
2750qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2751{
2752 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
2753 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002754 int rc;
Seokmann Ju14e660e2007-09-20 14:07:36 -07002755
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002756 if (ha->mem_only)
2757 rc = pci_enable_device_mem(pdev);
2758 else
2759 rc = pci_enable_device(pdev);
2760
2761 if (rc) {
Seokmann Ju14e660e2007-09-20 14:07:36 -07002762 qla_printk(KERN_WARNING, ha,
2763 "Can't re-enable PCI device after reset.\n");
2764
2765 return ret;
2766 }
2767 pci_set_master(pdev);
2768
2769 if (ha->isp_ops->pci_config(ha))
2770 return ret;
2771
2772 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2773 if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
2774 ret = PCI_ERS_RESULT_RECOVERED;
2775 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2776
2777 return ret;
2778}
2779
2780static void
2781qla2xxx_pci_resume(struct pci_dev *pdev)
2782{
2783 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2784 int ret;
2785
2786 ret = qla2x00_wait_for_hba_online(ha);
2787 if (ret != QLA_SUCCESS) {
2788 qla_printk(KERN_ERR, ha,
2789 "the device failed to resume I/O "
2790 "from slot/link_reset");
2791 }
2792 pci_cleanup_aer_uncorrect_error_status(pdev);
2793}
2794
2795static struct pci_error_handlers qla2xxx_err_handler = {
2796 .error_detected = qla2xxx_pci_error_detected,
2797 .mmio_enabled = qla2xxx_pci_mmio_enabled,
2798 .slot_reset = qla2xxx_pci_slot_reset,
2799 .resume = qla2xxx_pci_resume,
2800};
2801
Andrew Vasquez54333832005-11-09 15:49:04 -08002802static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002803 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2804 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2805 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2806 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2807 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2808 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2809 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2810 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2811 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002812 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002813 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2814 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002815 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez54333832005-11-09 15:49:04 -08002816 { 0 },
2817};
2818MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2819
Andrew Vasquezfca29702005-07-06 10:31:47 -07002820static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07002821 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06002822 .driver = {
2823 .owner = THIS_MODULE,
2824 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002825 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002826 .probe = qla2x00_probe_one,
Adrian Bunk4c993f72008-01-14 00:55:16 -08002827 .remove = qla2x00_remove_one,
Seokmann Ju14e660e2007-09-20 14:07:36 -07002828 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07002829};
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831/**
2832 * qla2x00_module_init - Module initialization.
2833 **/
2834static int __init
2835qla2x00_module_init(void)
2836{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002837 int ret = 0;
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002840 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09002841 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 if (srb_cachep == NULL) {
2843 printk(KERN_ERR
2844 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2845 return -ENOMEM;
2846 }
2847
2848 /* Derive version string. */
2849 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002850 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07002851 strcat(qla2x00_version_str, "-debug");
2852
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002853 qla2xxx_transport_template =
2854 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002855 if (!qla2xxx_transport_template) {
2856 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002858 }
2859 qla2xxx_transport_vport_template =
2860 fc_attach_transport(&qla2xxx_transport_vport_functions);
2861 if (!qla2xxx_transport_vport_template) {
2862 kmem_cache_destroy(srb_cachep);
2863 fc_release_transport(qla2xxx_transport_template);
2864 return -ENODEV;
2865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002868 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002869 if (ret) {
2870 kmem_cache_destroy(srb_cachep);
2871 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002872 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002873 }
2874 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}
2876
2877/**
2878 * qla2x00_module_exit - Module cleanup.
2879 **/
2880static void __exit
2881qla2x00_module_exit(void)
2882{
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002883 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08002884 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002885 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002887 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
2890module_init(qla2x00_module_init);
2891module_exit(qla2x00_module_exit);
2892
2893MODULE_AUTHOR("QLogic Corporation");
2894MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2895MODULE_LICENSE("GPL");
2896MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002897MODULE_FIRMWARE(FW_FILE_ISP21XX);
2898MODULE_FIRMWARE(FW_FILE_ISP22XX);
2899MODULE_FIRMWARE(FW_FILE_ISP2300);
2900MODULE_FIRMWARE(FW_FILE_ISP2322);
2901MODULE_FIRMWARE(FW_FILE_ISP24XX);
Andrew Vasquez61623fc2008-01-31 12:33:45 -08002902MODULE_FIRMWARE(FW_FILE_ISP25XX);