blob: 3d290417bfc64db61b99d5ef0af76fbedebb3f6e [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
29/*
30 * Ioctl related information.
31 */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070032int num_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033int ql2xlogintimeout = 20;
34module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
35MODULE_PARM_DESC(ql2xlogintimeout,
36 "Login timeout value in seconds.");
37
Andrew Vasqueza7b61842007-05-07 07:42:59 -070038int qlport_down_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
40MODULE_PARM_DESC(qlport_down_retry,
Jesper Juhl900d9f92006-06-30 02:33:07 -070041 "Maximum number of command retries to a port that returns "
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 "a PORT-DOWN status.");
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044int ql2xplogiabsentdevice;
45module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
46MODULE_PARM_DESC(ql2xplogiabsentdevice,
47 "Option to enable PLOGI to devices that are not present after "
Jesper Juhl900d9f92006-06-30 02:33:07 -070048 "a Fabric scan. This is needed for several broken switches. "
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051int ql2xloginretrycount = 0;
52module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
53MODULE_PARM_DESC(ql2xloginretrycount,
54 "Specify an alternate value for the NVRAM login retry count.");
55
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070056int ql2xallocfwdump = 1;
57module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
58MODULE_PARM_DESC(ql2xallocfwdump,
59 "Option to enable allocation of memory for a firmware dump "
60 "during HBA initialization. Memory allocation requirements "
61 "vary by ISP type. Default is 1 - allocate memory.");
62
Andrew Vasquez11010fe2006-10-06 09:54:59 -070063int ql2xextended_error_logging;
Andrew Vasquez27d94032007-03-12 10:41:30 -070064module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070065MODULE_PARM_DESC(ql2xextended_error_logging,
Andrew Vasquez01819442006-06-23 16:11:10 -070066 "Option to enable extended error logging, "
67 "Default is 0 - no logging. 1 - log errors.");
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static void qla2x00_free_device(scsi_qla_host_t *);
70
71static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
72
Andrew Vasquezcca53352005-08-26 19:08:30 -070073int ql2xfdmienable;
74module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
75MODULE_PARM_DESC(ql2xfdmienable,
76 "Enables FDMI registratons "
77 "Default is 0 - no FDMI. 1 - perfom FDMI.");
78
Andrew Vasquezdf7baa52006-10-13 09:33:39 -070079#define MAX_Q_DEPTH 32
80static int ql2xmaxqdepth = MAX_Q_DEPTH;
81module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
82MODULE_PARM_DESC(ql2xmaxqdepth,
83 "Maximum queue depth to report for target devices.");
84
85int ql2xqfullrampup = 120;
86module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
87MODULE_PARM_DESC(ql2xqfullrampup,
88 "Number of seconds to wait to begin to ramp-up the queue "
89 "depth for a device after a queue-full condition has been "
90 "detected. Default is 120 seconds.");
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070093 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 */
95static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -050096static int qla2xxx_slave_alloc(struct scsi_device *);
Andrew Vasquez1e99e332006-11-22 08:24:48 -080097static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
98static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051e2005-04-17 15:02:26 -050099static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
101 void (*fn)(struct scsi_cmnd *));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700102static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
103 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int qla2xxx_eh_abort(struct scsi_cmnd *);
105static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
106static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
107static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int qla2x00_device_reset(scsi_qla_host_t *, fc_port_t *);
109
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700110static int qla2x00_change_queue_depth(struct scsi_device *, int);
111static int qla2x00_change_queue_type(struct scsi_device *, int);
112
Adrian Bunka824ebb2008-01-17 09:02:15 -0800113static struct scsi_host_template qla2x00_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700115 .name = QLA2XXX_DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .queuecommand = qla2x00_queuecommand,
117
118 .eh_abort_handler = qla2xxx_eh_abort,
119 .eh_device_reset_handler = qla2xxx_eh_device_reset,
120 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
121 .eh_host_reset_handler = qla2xxx_eh_host_reset,
122
123 .slave_configure = qla2xxx_slave_configure,
124
f4f051e2005-04-17 15:02:26 -0500125 .slave_alloc = qla2xxx_slave_alloc,
126 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800127 .scan_finished = qla2xxx_scan_finished,
128 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700129 .change_queue_depth = qla2x00_change_queue_depth,
130 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .this_id = -1,
132 .cmd_per_lun = 3,
133 .use_clustering = ENABLE_CLUSTERING,
134 .sg_tablesize = SG_ALL,
135
136 /*
137 * The RISC allows for each command to transfer (2^32-1) bytes of data,
138 * which equates to 0x800000 sectors.
139 */
140 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700141 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700144struct scsi_host_template qla24xx_driver_template = {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700145 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700146 .name = QLA2XXX_DRIVER_NAME,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700147 .queuecommand = qla24xx_queuecommand,
148
149 .eh_abort_handler = qla2xxx_eh_abort,
150 .eh_device_reset_handler = qla2xxx_eh_device_reset,
151 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
152 .eh_host_reset_handler = qla2xxx_eh_host_reset,
153
154 .slave_configure = qla2xxx_slave_configure,
155
156 .slave_alloc = qla2xxx_slave_alloc,
157 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezed677082007-03-12 10:41:27 -0700158 .scan_finished = qla2xxx_scan_finished,
159 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700160 .change_queue_depth = qla2x00_change_queue_depth,
161 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700162 .this_id = -1,
163 .cmd_per_lun = 3,
164 .use_clustering = ENABLE_CLUSTERING,
165 .sg_tablesize = SG_ALL,
166
167 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700168 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700169};
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700172struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* TODO Convert to inlines
175 *
176 * Timer routines
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700179__inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
181{
182 init_timer(&ha->timer);
183 ha->timer.expires = jiffies + interval * HZ;
184 ha->timer.data = (unsigned long)ha;
185 ha->timer.function = (void (*)(unsigned long))func;
186 add_timer(&ha->timer);
187 ha->timer_active = 1;
188}
189
190static inline void
191qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
192{
193 mod_timer(&ha->timer, jiffies + interval * HZ);
194}
195
Adrian Bunka824ebb2008-01-17 09:02:15 -0800196static __inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197qla2x00_stop_timer(scsi_qla_host_t *ha)
198{
199 del_timer_sync(&ha->timer);
200 ha->timer_active = 0;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static int qla2x00_do_dpc(void *data);
204
205static void qla2x00_rst_aen(scsi_qla_host_t *);
206
Andrew Vasqueze8711082008-01-31 12:33:48 -0800207static int qla2x00_mem_alloc(scsi_qla_host_t *);
Adrian Bunka824ebb2008-01-17 09:02:15 -0800208static void qla2x00_mem_free(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500209static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* -------------------------------------------------------------------------- */
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700214qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 static char *pci_bus_modes[] = {
217 "33", "66", "100", "133",
218 };
219 uint16_t pci_bus;
220
221 strcpy(str, "PCI");
222 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
223 if (pci_bus) {
224 strcat(str, "-X (");
225 strcat(str, pci_bus_modes[pci_bus]);
226 } else {
227 pci_bus = (ha->pci_attr & BIT_8) >> 8;
228 strcat(str, " (");
229 strcat(str, pci_bus_modes[pci_bus]);
230 }
231 strcat(str, " MHz)");
232
233 return (str);
234}
235
Andrew Vasquezfca29702005-07-06 10:31:47 -0700236static char *
237qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
238{
239 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
240 uint32_t pci_bus;
241 int pcie_reg;
242
243 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
244 if (pcie_reg) {
245 char lwstr[6];
246 uint16_t pcie_lstat, lspeed, lwidth;
247
248 pcie_reg += 0x12;
249 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
250 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
251 lwidth = (pcie_lstat &
252 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
253
254 strcpy(str, "PCIe (");
255 if (lspeed == 1)
256 strcat(str, "2.5Gb/s ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700257 else if (lspeed == 2)
258 strcat(str, "5.0Gb/s ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700259 else
260 strcat(str, "<unknown> ");
261 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
262 strcat(str, lwstr);
263
264 return str;
265 }
266
267 strcpy(str, "PCI");
268 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
269 if (pci_bus == 0 || pci_bus == 8) {
270 strcat(str, " (");
271 strcat(str, pci_bus_modes[pci_bus >> 3]);
272 } else {
273 strcat(str, "-X ");
274 if (pci_bus & BIT_2)
275 strcat(str, "Mode 2");
276 else
277 strcat(str, "Mode 1");
278 strcat(str, " (");
279 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
280 }
281 strcat(str, " MHz)");
282
283 return str;
284}
285
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800286static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700287qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 char un_str[10];
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
292 ha->fw_minor_version,
293 ha->fw_subminor_version);
294
295 if (ha->fw_attributes & BIT_9) {
296 strcat(str, "FLX");
297 return (str);
298 }
299
300 switch (ha->fw_attributes & 0xFF) {
301 case 0x7:
302 strcat(str, "EF");
303 break;
304 case 0x17:
305 strcat(str, "TP");
306 break;
307 case 0x37:
308 strcat(str, "IP");
309 break;
310 case 0x77:
311 strcat(str, "VI");
312 break;
313 default:
314 sprintf(un_str, "(%x)", ha->fw_attributes);
315 strcat(str, un_str);
316 break;
317 }
318 if (ha->fw_attributes & 0x100)
319 strcat(str, "X");
320
321 return (str);
322}
323
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800324static char *
Andrew Vasquezfca29702005-07-06 10:31:47 -0700325qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
326{
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700327 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
328 ha->fw_minor_version,
329 ha->fw_subminor_version);
330
Andrew Vasquezfca29702005-07-06 10:31:47 -0700331 if (ha->fw_attributes & BIT_0)
332 strcat(str, "[Class 2] ");
333 if (ha->fw_attributes & BIT_1)
334 strcat(str, "[IP] ");
335 if (ha->fw_attributes & BIT_2)
336 strcat(str, "[Multi-ID] ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700337 if (ha->fw_attributes & BIT_3)
338 strcat(str, "[SB-2] ");
339 if (ha->fw_attributes & BIT_4)
340 strcat(str, "[T10 CRC] ");
341 if (ha->fw_attributes & BIT_5)
342 strcat(str, "[VI] ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700343 if (ha->fw_attributes & BIT_13)
344 strcat(str, "[Experimental]");
345 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700346}
347
348static inline srb_t *
349qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
350 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
351{
352 srb_t *sp;
353
354 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
355 if (!sp)
356 return sp;
357
Andrew Vasquezfca29702005-07-06 10:31:47 -0700358 sp->ha = ha;
359 sp->fcport = fcport;
360 sp->cmd = cmd;
361 sp->flags = 0;
362 CMD_SP(cmd) = (void *)sp;
363 cmd->scsi_done = done;
364
365 return sp;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int
f4f051e2005-04-17 15:02:26 -0500369qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700371 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500372 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400373 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051e2005-04-17 15:02:26 -0500374 srb_t *sp;
375 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Seokmann Ju14e660e2007-09-20 14:07:36 -0700377 if (unlikely(pci_channel_offline(ha->pdev))) {
378 cmd->result = DID_REQUEUE << 16;
379 goto qc_fail_command;
380 }
381
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400382 rval = fc_remote_port_chkready(rport);
383 if (rval) {
384 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500385 goto qc_fail_command;
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800388 /* Close window on fcport/rport state-transitioning. */
389 if (!*(fc_port_t **)rport->dd_data) {
390 cmd->result = DID_IMM_RETRY << 16;
391 goto qc_fail_command;
392 }
393
f4f051e2005-04-17 15:02:26 -0500394 if (atomic_read(&fcport->state) != FCS_ONLINE) {
395 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
396 atomic_read(&ha->loop_state) == LOOP_DEAD) {
397 cmd->result = DID_NO_CONNECT << 16;
398 goto qc_fail_command;
399 }
400 goto qc_host_busy;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 spin_unlock_irq(ha->host->host_lock);
404
Andrew Vasquezfca29702005-07-06 10:31:47 -0700405 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
406 if (!sp)
f4f051e2005-04-17 15:02:26 -0500407 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
f4f051e2005-04-17 15:02:26 -0500409 rval = qla2x00_start_scsi(sp);
410 if (rval != QLA_SUCCESS)
411 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 spin_lock_irq(ha->host->host_lock);
414
f4f051e2005-04-17 15:02:26 -0500415 return 0;
416
417qc_host_busy_free_sp:
418 qla2x00_sp_free_dma(ha, sp);
f4f051e2005-04-17 15:02:26 -0500419 mempool_free(sp, ha->srb_mempool);
420
421qc_host_busy_lock:
422 spin_lock_irq(ha->host->host_lock);
423
424qc_host_busy:
425 return SCSI_MLQUEUE_HOST_BUSY;
426
427qc_fail_command:
428 done(cmd);
429
430 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Andrew Vasquezfca29702005-07-06 10:31:47 -0700433
434static int
435qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
436{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700437 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700438 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400439 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700440 srb_t *sp;
441 int rval;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700442 scsi_qla_host_t *pha = to_qla_parent(ha);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700443
Seokmann Ju14e660e2007-09-20 14:07:36 -0700444 if (unlikely(pci_channel_offline(ha->pdev))) {
445 cmd->result = DID_REQUEUE << 16;
446 goto qc24_fail_command;
447 }
448
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400449 rval = fc_remote_port_chkready(rport);
450 if (rval) {
451 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700452 goto qc24_fail_command;
453 }
454
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800455 /* Close window on fcport/rport state-transitioning. */
456 if (!*(fc_port_t **)rport->dd_data) {
457 cmd->result = DID_IMM_RETRY << 16;
458 goto qc24_fail_command;
459 }
460
Andrew Vasquezfca29702005-07-06 10:31:47 -0700461 if (atomic_read(&fcport->state) != FCS_ONLINE) {
462 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700463 atomic_read(&pha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700464 cmd->result = DID_NO_CONNECT << 16;
465 goto qc24_fail_command;
466 }
467 goto qc24_host_busy;
468 }
469
470 spin_unlock_irq(ha->host->host_lock);
471
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700472 sp = qla2x00_get_new_sp(pha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700473 if (!sp)
474 goto qc24_host_busy_lock;
475
476 rval = qla24xx_start_scsi(sp);
477 if (rval != QLA_SUCCESS)
478 goto qc24_host_busy_free_sp;
479
480 spin_lock_irq(ha->host->host_lock);
481
482 return 0;
483
484qc24_host_busy_free_sp:
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700485 qla2x00_sp_free_dma(pha, sp);
486 mempool_free(sp, pha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700487
488qc24_host_busy_lock:
489 spin_lock_irq(ha->host->host_lock);
490
491qc24_host_busy:
492 return SCSI_MLQUEUE_HOST_BUSY;
493
494qc24_fail_command:
495 done(cmd);
496
497 return 0;
498}
499
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501/*
502 * qla2x00_eh_wait_on_command
503 * Waits for the command to be returned by the Firmware for some
504 * max time.
505 *
506 * Input:
507 * ha = actual ha whose done queue will contain the command
508 * returned by firmware.
509 * cmd = Scsi Command to wait on.
510 * flag = Abort/Reset(Bus or Device Reset)
511 *
512 * Return:
513 * Not Found : 0
514 * Found : 1
515 */
516static int
517qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
518{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700519#define ABORT_POLLING_PERIOD 1000
520#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500521 unsigned long wait_iter = ABORT_WAIT_ITER;
522 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
f4f051e2005-04-17 15:02:26 -0500524 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700525 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
f4f051e2005-04-17 15:02:26 -0500527 if (--wait_iter)
528 break;
529 }
530 if (CMD_SP(cmd))
531 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
f4f051e2005-04-17 15:02:26 -0500533 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/*
537 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700538 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * <= MAX_RETRIES_OF_ISP_ABORT or
540 * finally HBA is disabled ie marked offline
541 *
542 * Input:
543 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700544 *
545 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * Does context switching-Release SPIN_LOCK
547 * (if any) before calling this routine.
548 *
549 * Return:
550 * Success (Adapter is online) : 0
551 * Failed (Adapter is offline/disabled) : 1
552 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800553int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
555{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700556 int return_status;
557 unsigned long wait_online;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700558 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700560 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700561 while (((test_bit(ISP_ABORT_NEEDED, &pha->dpc_flags)) ||
562 test_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags) ||
563 test_bit(ISP_ABORT_RETRY, &pha->dpc_flags) ||
564 pha->dpc_active) && time_before(jiffies, wait_online)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 msleep(1000);
567 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700568 if (pha->flags.online)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700569 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 else
571 return_status = QLA_FUNCTION_FAILED;
572
573 DEBUG2(printk("%s return_status=%d\n",__func__,return_status));
574
575 return (return_status);
576}
577
578/*
579 * qla2x00_wait_for_loop_ready
580 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700581 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * Input:
583 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700584 *
585 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * Does context switching-Release SPIN_LOCK
587 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700588 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 *
590 * Return:
591 * Success (LOOP_READY) : 0
592 * Failed (LOOP_NOT_READY) : 1
593 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700594static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
596{
597 int return_status = QLA_SUCCESS;
598 unsigned long loop_timeout ;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700599 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700602 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700604 while ((!atomic_read(&pha->loop_down_timer) &&
605 atomic_read(&pha->loop_state) == LOOP_DOWN) ||
606 atomic_read(&pha->loop_state) != LOOP_READY) {
607 if (atomic_read(&pha->loop_state) == LOOP_DEAD) {
Ravi Anand57680082006-05-17 15:08:44 -0700608 return_status = QLA_FUNCTION_FAILED;
609 break;
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 msleep(1000);
612 if (time_after_eq(jiffies, loop_timeout)) {
613 return_status = QLA_FUNCTION_FAILED;
614 break;
615 }
616 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700617 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Andrew Vasquez07db5182006-10-02 12:00:49 -0700620static void
621qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
622{
623 struct Scsi_Host *shost = cmnd->device->host;
624 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
625 unsigned long flags;
626
627 spin_lock_irqsave(shost->host_lock, flags);
628 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
629 spin_unlock_irqrestore(shost->host_lock, flags);
630 msleep(1000);
631 spin_lock_irqsave(shost->host_lock, flags);
632 }
633 spin_unlock_irqrestore(shost->host_lock, flags);
634 return;
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/**************************************************************************
638* qla2xxx_eh_abort
639*
640* Description:
641* The abort function will abort the specified command.
642*
643* Input:
644* cmd = Linux SCSI command packet to be aborted.
645*
646* Returns:
647* Either SUCCESS or FAILED.
648*
649* Note:
Michael Reed2ea00202006-04-27 16:25:30 -0700650* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800652static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653qla2xxx_eh_abort(struct scsi_cmnd *cmd)
654{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700655 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
f4f051e2005-04-17 15:02:26 -0500656 srb_t *sp;
657 int ret, i;
658 unsigned int id, lun;
659 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700660 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700661 int wait = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700662 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Andrew Vasquez07db5182006-10-02 12:00:49 -0700664 qla2x00_block_error_handler(cmd);
665
f4f051e2005-04-17 15:02:26 -0500666 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700667 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Michael Reed2ea00202006-04-27 16:25:30 -0700669 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
f4f051e2005-04-17 15:02:26 -0500671 id = cmd->device->id;
672 lun = cmd->device->lun;
673 serial = cmd->serial_number;
674
675 /* Check active list for command command. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700676 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500677 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700678 sp = pha->outstanding_cmds[i];
f4f051e2005-04-17 15:02:26 -0500679
680 if (sp == NULL)
681 continue;
682
683 if (sp->cmd != cmd)
684 continue;
685
Andrew Vasquez75bc4192006-05-17 15:09:22 -0700686 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
687 __func__, ha->host_no, sp, serial));
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700688 DEBUG3(qla2x00_print_scsi_cmd(cmd));
f4f051e2005-04-17 15:02:26 -0500689
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700690 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700691 if (ha->isp_ops->abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500692 DEBUG2(printk("%s(%ld): abort_command "
693 "mbx failed.\n", __func__, ha->host_no));
694 } else {
695 DEBUG3(printk("%s(%ld): abort_command "
696 "mbx success.\n", __func__, ha->host_no));
Michael Reed2ea00202006-04-27 16:25:30 -0700697 wait = 1;
f4f051e2005-04-17 15:02:26 -0500698 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700699 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500700
701 break;
702 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700703 spin_unlock_irqrestore(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500704
705 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700706 if (wait) {
f4f051e2005-04-17 15:02:26 -0500707 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700708 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500709 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
710 "%x.\n", ha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700711 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700715 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700716 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
717 ha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
f4f051e2005-04-17 15:02:26 -0500719 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/**************************************************************************
723* qla2x00_eh_wait_for_pending_target_commands
724*
725* Description:
726* Waits for all the commands to come back from the specified target.
727*
728* Input:
729* ha - pointer to scsi_qla_host structure.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700730* t - target
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731* Returns:
732* Either SUCCESS or FAILED.
733*
734* Note:
735**************************************************************************/
736static int
737qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t *ha, unsigned int t)
738{
739 int cnt;
740 int status;
741 srb_t *sp;
742 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700743 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700744 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 status = 0;
747
748 /*
749 * Waiting for all commands for the designated target in the active
750 * array
751 */
752 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700753 spin_lock_irqsave(&pha->hardware_lock, flags);
754 sp = pha->outstanding_cmds[cnt];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (sp) {
756 cmd = sp->cmd;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700757 spin_unlock_irqrestore(&pha->hardware_lock, flags);
758 if (cmd->device->id == t &&
759 ha->vp_idx == sp->ha->vp_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!qla2x00_eh_wait_on_command(ha, cmd)) {
761 status = 1;
762 break;
763 }
764 }
f4f051e2005-04-17 15:02:26 -0500765 } else {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700766 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768 }
769 return (status);
770}
771
772
773/**************************************************************************
774* qla2xxx_eh_device_reset
775*
776* Description:
777* The device reset function will reset the target and abort any
778* executing commands.
779*
780* NOTE: The use of SP is undefined within this context. Do *NOT*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700781* attempt to use this value, even if you determine it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782* non-null.
783*
784* Input:
785* cmd = Linux SCSI command packet of the command that cause the
786* bus device reset.
787*
788* Returns:
789* SUCCESS/FAILURE (defined as macro in scsi.h).
790*
791**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800792static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
794{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700795 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500796 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700797 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500798 unsigned int id, lun;
799 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Andrew Vasquez07db5182006-10-02 12:00:49 -0700801 qla2x00_block_error_handler(cmd);
802
f4f051e2005-04-17 15:02:26 -0500803 id = cmd->device->id;
804 lun = cmd->device->lun;
805 serial = cmd->serial_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700807 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500808 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500811 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400813 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 goto eh_dev_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500817 if (qla2x00_device_reset(ha, fcport) == 0)
818 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else {
820 DEBUG2(printk(KERN_INFO
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700821 "%s failed: loop not ready\n",__func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823
f4f051e2005-04-17 15:02:26 -0500824 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 DEBUG3(printk("%s(%ld): device reset failed\n",
826 __func__, ha->host_no));
827 qla_printk(KERN_INFO, ha, "%s: device reset failed\n",
828 __func__);
829
830 goto eh_dev_reset_done;
831 }
832
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700833 /* Flush outstanding commands. */
834 if (qla2x00_eh_wait_for_pending_target_commands(ha, id))
835 ret = FAILED;
836 if (ret == FAILED) {
837 DEBUG3(printk("%s(%ld): failed while waiting for commands\n",
838 __func__, ha->host_no));
839 qla_printk(KERN_INFO, ha,
840 "%s: failed while waiting for commands\n", __func__);
841 } else
842 qla_printk(KERN_INFO, ha,
843 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha->host_no,
844 id, lun);
James Bottomley28f22b02005-10-28 17:22:18 -0500845 eh_dev_reset_done:
f4f051e2005-04-17 15:02:26 -0500846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
849/**************************************************************************
850* qla2x00_eh_wait_for_pending_commands
851*
852* Description:
853* Waits for all the commands to come back from the specified host.
854*
855* Input:
856* ha - pointer to scsi_qla_host structure.
857*
858* Returns:
859* 1 : SUCCESS
860* 0 : FAILED
861*
862* Note:
863**************************************************************************/
864static int
865qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha)
866{
867 int cnt;
868 int status;
869 srb_t *sp;
870 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700871 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 status = 1;
874
875 /*
876 * Waiting for all commands for the designated target in the active
877 * array
878 */
879 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700880 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 sp = ha->outstanding_cmds[cnt];
882 if (sp) {
883 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700884 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 status = qla2x00_eh_wait_on_command(ha, cmd);
886 if (status == 0)
887 break;
888 }
889 else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700890 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892 }
893 return (status);
894}
895
896
897/**************************************************************************
898* qla2xxx_eh_bus_reset
899*
900* Description:
901* The bus reset function will reset the bus and abort any executing
902* commands.
903*
904* Input:
905* cmd = Linux SCSI command packet of the command that cause the
906* bus reset.
907*
908* Returns:
909* SUCCESS/FAILURE (defined as macro in scsi.h).
910*
911**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800912static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
914{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700915 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700916 scsi_qla_host_t *pha = to_qla_parent(ha);
bdf79622005-04-17 15:06:53 -0500917 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700918 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500919 unsigned int id, lun;
920 unsigned long serial;
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500932 "scsi(%ld:%d:%d): LOOP 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) {
935 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500936 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938
939 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500940 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
941 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
f4f051e2005-04-17 15:02:26 -0500943 if (ret == FAILED)
944 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700946 /* Flush outstanding commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700947 if (!qla2x00_eh_wait_for_pending_commands(pha))
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700948 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
f4f051e2005-04-17 15:02:26 -0500950eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500952 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
f4f051e2005-04-17 15:02:26 -0500954 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957/**************************************************************************
958* qla2xxx_eh_host_reset
959*
960* Description:
961* The reset function will reset the Adapter.
962*
963* Input:
964* cmd = Linux SCSI command packet of the command that cause the
965* adapter reset.
966*
967* Returns:
968* Either SUCCESS or FAILED.
969*
970* Note:
971**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800972static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
974{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700975 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500976 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700977 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500978 unsigned int id, lun;
979 unsigned long serial;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700980 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Andrew Vasquez07db5182006-10-02 12:00:49 -0700982 qla2x00_block_error_handler(cmd);
983
f4f051e2005-04-17 15:02:26 -0500984 id = cmd->device->id;
985 lun = cmd->device->lun;
986 serial = cmd->serial_number;
987
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700988 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500989 return ret;
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500992 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500995 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 /*
998 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700999 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 * be completed and then issue big hammer.Otherwise
1001 * it may cause I/O failure as big hammer marks the
1002 * devices as lost kicking of the port_down_timer
1003 * while dpc is stuck for the mailbox to complete.
1004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 qla2x00_wait_for_loop_ready(ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001006 set_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
1007 if (qla2x00_abort_isp(pha)) {
1008 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* failed. schedule dpc to try */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001010 set_bit(ISP_ABORT_NEEDED, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001013 goto eh_host_reset_lock;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001014 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001015 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 /* Waiting for our command in done_queue to be returned to OS.*/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001018 if (qla2x00_eh_wait_for_pending_commands(pha))
f4f051e2005-04-17 15:02:26 -05001019 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001021 if (ha->parent)
1022 qla2x00_vp_abort_isp(ha);
1023
f4f051e2005-04-17 15:02:26 -05001024eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001025 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1026 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
f4f051e2005-04-17 15:02:26 -05001028 return ret;
1029}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031/*
1032* qla2x00_loop_reset
1033* Issue loop reset.
1034*
1035* Input:
1036* ha = adapter block pointer.
1037*
1038* Returns:
1039* 0 = success
1040*/
Andrew Vasqueza4722cf2008-01-17 09:02:12 -08001041int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042qla2x00_loop_reset(scsi_qla_host_t *ha)
1043{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001044 int ret;
bdf79622005-04-17 15:06:53 -05001045 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001047 if (ha->flags.enable_lip_full_login) {
1048 ret = qla2x00_full_login_lip(ha);
1049 if (ret != QLA_SUCCESS) {
1050 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1051 "full_login_lip=%d.\n", __func__, ha->host_no,
1052 ret));
1053 }
1054 atomic_set(&ha->loop_state, LOOP_DOWN);
1055 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
1056 qla2x00_mark_all_devices_lost(ha, 0);
1057 qla2x00_wait_for_loop_ready(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001060 if (ha->flags.enable_lip_reset) {
1061 ret = qla2x00_lip_reset(ha);
1062 if (ret != QLA_SUCCESS) {
1063 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1064 "lip_reset=%d.\n", __func__, ha->host_no, ret));
1065 }
1066 qla2x00_wait_for_loop_ready(ha);
1067 }
1068
1069 if (ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -05001070 list_for_each_entry(fcport, &ha->fcports, list) {
1071 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 continue;
1073
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001074 ret = qla2x00_device_reset(ha, fcport);
1075 if (ret != QLA_SUCCESS) {
1076 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1077 "target_reset=%d d_id=%x.\n", __func__,
1078 ha->host_no, ret, fcport->d_id.b24));
1079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081 }
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /* Issue marker command only when we are going to start the I/O */
1084 ha->marker_needed = 1;
1085
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001086 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089/*
1090 * qla2x00_device_reset
1091 * Issue bus device reset message to the target.
1092 *
1093 * Input:
1094 * ha = adapter block pointer.
1095 * t = SCSI ID.
1096 * TARGET_QUEUE_LOCK must be released.
1097 * ADAPTER_STATE_LOCK must be released.
1098 *
1099 * Context:
1100 * Kernel context.
1101 */
1102static int
1103qla2x00_device_reset(scsi_qla_host_t *ha, fc_port_t *reset_fcport)
1104{
1105 /* Abort Target command will clear Reservation */
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001106 return ha->isp_ops->abort_target(reset_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001109void
1110qla2x00_abort_all_cmds(scsi_qla_host_t *ha, int res)
1111{
1112 int cnt;
1113 unsigned long flags;
1114 srb_t *sp;
1115
1116 spin_lock_irqsave(&ha->hardware_lock, flags);
1117 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1118 sp = ha->outstanding_cmds[cnt];
1119 if (sp) {
1120 ha->outstanding_cmds[cnt] = NULL;
1121 sp->flags = 0;
1122 sp->cmd->result = res;
1123 sp->cmd->host_scribble = (unsigned char *)NULL;
1124 qla2x00_sp_compl(ha, sp);
1125 }
1126 }
1127 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1128}
1129
f4f051e2005-04-17 15:02:26 -05001130static int
1131qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
bdf79622005-04-17 15:06:53 -05001133 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001135 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001136 return -ENXIO;
1137
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001138 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001139
1140 return 0;
1141}
1142
1143static int
1144qla2xxx_slave_configure(struct scsi_device *sdev)
1145{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001146 scsi_qla_host_t *ha = shost_priv(sdev->host);
8482e1182005-04-17 15:04:54 -05001147 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1148
f4f051e2005-04-17 15:02:26 -05001149 if (sdev->tagged_supported)
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001150 scsi_activate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 else
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001152 scsi_deactivate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
8482e1182005-04-17 15:04:54 -05001154 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1155
f4f051e2005-04-17 15:02:26 -05001156 return 0;
1157}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
f4f051e2005-04-17 15:02:26 -05001159static void
1160qla2xxx_slave_destroy(struct scsi_device *sdev)
1161{
1162 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001165static int
1166qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1167{
1168 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1169 return sdev->queue_depth;
1170}
1171
1172static int
1173qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1174{
1175 if (sdev->tagged_supported) {
1176 scsi_set_tag_type(sdev, tag_type);
1177 if (tag_type)
1178 scsi_activate_tcq(sdev, sdev->queue_depth);
1179 else
1180 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1181 } else
1182 tag_type = 0;
1183
1184 return tag_type;
1185}
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187/**
1188 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1189 * @ha: HA context
1190 *
1191 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1192 * supported addressing method.
1193 */
1194static void
1195qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1196{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001197 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001200 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1201 /* Any upper-dword bits set? */
1202 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1203 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1204 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001206 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1207 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001208 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001211
1212 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1213 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001216static void
1217qla2x00_enable_intrs(scsi_qla_host_t *ha)
1218{
1219 unsigned long flags = 0;
1220 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1221
1222 spin_lock_irqsave(&ha->hardware_lock, flags);
1223 ha->interrupts_on = 1;
1224 /* enable risc and host interrupts */
1225 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1226 RD_REG_WORD(&reg->ictrl);
1227 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1228
1229}
1230
1231static void
1232qla2x00_disable_intrs(scsi_qla_host_t *ha)
1233{
1234 unsigned long flags = 0;
1235 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1236
1237 spin_lock_irqsave(&ha->hardware_lock, flags);
1238 ha->interrupts_on = 0;
1239 /* disable risc and host interrupts */
1240 WRT_REG_WORD(&reg->ictrl, 0);
1241 RD_REG_WORD(&reg->ictrl);
1242 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1243}
1244
1245static void
1246qla24xx_enable_intrs(scsi_qla_host_t *ha)
1247{
1248 unsigned long flags = 0;
1249 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1250
1251 spin_lock_irqsave(&ha->hardware_lock, flags);
1252 ha->interrupts_on = 1;
1253 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1254 RD_REG_DWORD(&reg->ictrl);
1255 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1256}
1257
1258static void
1259qla24xx_disable_intrs(scsi_qla_host_t *ha)
1260{
1261 unsigned long flags = 0;
1262 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1263
1264 spin_lock_irqsave(&ha->hardware_lock, flags);
1265 ha->interrupts_on = 0;
1266 WRT_REG_DWORD(&reg->ictrl, 0);
1267 RD_REG_DWORD(&reg->ictrl);
1268 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1269}
1270
1271static struct isp_operations qla2100_isp_ops = {
1272 .pci_config = qla2100_pci_config,
1273 .reset_chip = qla2x00_reset_chip,
1274 .chip_diag = qla2x00_chip_diag,
1275 .config_rings = qla2x00_config_rings,
1276 .reset_adapter = qla2x00_reset_adapter,
1277 .nvram_config = qla2x00_nvram_config,
1278 .update_fw_options = qla2x00_update_fw_options,
1279 .load_risc = qla2x00_load_risc,
1280 .pci_info_str = qla2x00_pci_info_str,
1281 .fw_version_str = qla2x00_fw_version_str,
1282 .intr_handler = qla2100_intr_handler,
1283 .enable_intrs = qla2x00_enable_intrs,
1284 .disable_intrs = qla2x00_disable_intrs,
1285 .abort_command = qla2x00_abort_command,
1286 .abort_target = qla2x00_abort_target,
1287 .fabric_login = qla2x00_login_fabric,
1288 .fabric_logout = qla2x00_fabric_logout,
1289 .calc_req_entries = qla2x00_calc_iocbs_32,
1290 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1291 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1292 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1293 .read_nvram = qla2x00_read_nvram_data,
1294 .write_nvram = qla2x00_write_nvram_data,
1295 .fw_dump = qla2100_fw_dump,
1296 .beacon_on = NULL,
1297 .beacon_off = NULL,
1298 .beacon_blink = NULL,
1299 .read_optrom = qla2x00_read_optrom_data,
1300 .write_optrom = qla2x00_write_optrom_data,
1301 .get_flash_version = qla2x00_get_flash_version,
1302};
1303
1304static struct isp_operations qla2300_isp_ops = {
1305 .pci_config = qla2300_pci_config,
1306 .reset_chip = qla2x00_reset_chip,
1307 .chip_diag = qla2x00_chip_diag,
1308 .config_rings = qla2x00_config_rings,
1309 .reset_adapter = qla2x00_reset_adapter,
1310 .nvram_config = qla2x00_nvram_config,
1311 .update_fw_options = qla2x00_update_fw_options,
1312 .load_risc = qla2x00_load_risc,
1313 .pci_info_str = qla2x00_pci_info_str,
1314 .fw_version_str = qla2x00_fw_version_str,
1315 .intr_handler = qla2300_intr_handler,
1316 .enable_intrs = qla2x00_enable_intrs,
1317 .disable_intrs = qla2x00_disable_intrs,
1318 .abort_command = qla2x00_abort_command,
1319 .abort_target = qla2x00_abort_target,
1320 .fabric_login = qla2x00_login_fabric,
1321 .fabric_logout = qla2x00_fabric_logout,
1322 .calc_req_entries = qla2x00_calc_iocbs_32,
1323 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1324 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1325 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1326 .read_nvram = qla2x00_read_nvram_data,
1327 .write_nvram = qla2x00_write_nvram_data,
1328 .fw_dump = qla2300_fw_dump,
1329 .beacon_on = qla2x00_beacon_on,
1330 .beacon_off = qla2x00_beacon_off,
1331 .beacon_blink = qla2x00_beacon_blink,
1332 .read_optrom = qla2x00_read_optrom_data,
1333 .write_optrom = qla2x00_write_optrom_data,
1334 .get_flash_version = qla2x00_get_flash_version,
1335};
1336
1337static struct isp_operations qla24xx_isp_ops = {
1338 .pci_config = qla24xx_pci_config,
1339 .reset_chip = qla24xx_reset_chip,
1340 .chip_diag = qla24xx_chip_diag,
1341 .config_rings = qla24xx_config_rings,
1342 .reset_adapter = qla24xx_reset_adapter,
1343 .nvram_config = qla24xx_nvram_config,
1344 .update_fw_options = qla24xx_update_fw_options,
1345 .load_risc = qla24xx_load_risc,
1346 .pci_info_str = qla24xx_pci_info_str,
1347 .fw_version_str = qla24xx_fw_version_str,
1348 .intr_handler = qla24xx_intr_handler,
1349 .enable_intrs = qla24xx_enable_intrs,
1350 .disable_intrs = qla24xx_disable_intrs,
1351 .abort_command = qla24xx_abort_command,
1352 .abort_target = qla24xx_abort_target,
1353 .fabric_login = qla24xx_login_fabric,
1354 .fabric_logout = qla24xx_fabric_logout,
1355 .calc_req_entries = NULL,
1356 .build_iocbs = NULL,
1357 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1358 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1359 .read_nvram = qla24xx_read_nvram_data,
1360 .write_nvram = qla24xx_write_nvram_data,
1361 .fw_dump = qla24xx_fw_dump,
1362 .beacon_on = qla24xx_beacon_on,
1363 .beacon_off = qla24xx_beacon_off,
1364 .beacon_blink = qla24xx_beacon_blink,
1365 .read_optrom = qla24xx_read_optrom_data,
1366 .write_optrom = qla24xx_write_optrom_data,
1367 .get_flash_version = qla24xx_get_flash_version,
1368};
1369
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001370static struct isp_operations qla25xx_isp_ops = {
1371 .pci_config = qla25xx_pci_config,
1372 .reset_chip = qla24xx_reset_chip,
1373 .chip_diag = qla24xx_chip_diag,
1374 .config_rings = qla24xx_config_rings,
1375 .reset_adapter = qla24xx_reset_adapter,
1376 .nvram_config = qla24xx_nvram_config,
1377 .update_fw_options = qla24xx_update_fw_options,
1378 .load_risc = qla24xx_load_risc,
1379 .pci_info_str = qla24xx_pci_info_str,
1380 .fw_version_str = qla24xx_fw_version_str,
1381 .intr_handler = qla24xx_intr_handler,
1382 .enable_intrs = qla24xx_enable_intrs,
1383 .disable_intrs = qla24xx_disable_intrs,
1384 .abort_command = qla24xx_abort_command,
1385 .abort_target = qla24xx_abort_target,
1386 .fabric_login = qla24xx_login_fabric,
1387 .fabric_logout = qla24xx_fabric_logout,
1388 .calc_req_entries = NULL,
1389 .build_iocbs = NULL,
1390 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1391 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1392 .read_nvram = qla25xx_read_nvram_data,
1393 .write_nvram = qla25xx_write_nvram_data,
1394 .fw_dump = qla25xx_fw_dump,
1395 .beacon_on = qla24xx_beacon_on,
1396 .beacon_off = qla24xx_beacon_off,
1397 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001398 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001399 .write_optrom = qla24xx_write_optrom_data,
1400 .get_flash_version = qla24xx_get_flash_version,
1401};
1402
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001403static inline void
1404qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1405{
1406 ha->device_type = DT_EXTENDED_IDS;
1407 switch (ha->pdev->device) {
1408 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1409 ha->device_type |= DT_ISP2100;
1410 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001411 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001412 break;
1413 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1414 ha->device_type |= DT_ISP2200;
1415 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001416 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001417 break;
1418 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1419 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001420 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001421 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001422 break;
1423 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1424 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001425 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001426 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001427 break;
1428 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1429 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001430 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001431 if (ha->pdev->subsystem_vendor == 0x1028 &&
1432 ha->pdev->subsystem_device == 0x0170)
1433 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001434 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001435 break;
1436 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1437 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001438 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001439 break;
1440 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1441 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001442 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001443 break;
1444 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1445 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001446 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001447 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001448 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001449 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001450 break;
1451 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1452 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001453 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001454 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001455 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001456 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001457 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001458 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1459 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001460 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001461 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001462 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001463 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1464 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001465 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001466 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001467 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001468 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1469 ha->device_type |= DT_ISP2532;
1470 ha->device_type |= DT_ZIO_SUPPORTED;
1471 ha->device_type |= DT_FWI2;
1472 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001473 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1474 break;
1475 }
1476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478static int
1479qla2x00_iospace_config(scsi_qla_host_t *ha)
1480{
Andrew Vasquez37765412008-01-17 09:02:09 -08001481 resource_size_t pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Andrew Vasquez285d0322007-10-19 15:59:17 -07001483 if (pci_request_selected_regions(ha->pdev, ha->bars,
1484 QLA2XXX_DRIVER_NAME)) {
1485 qla_printk(KERN_WARNING, ha,
1486 "Failed to reserve PIO/MMIO regions (%s)\n",
1487 pci_name(ha->pdev));
1488
1489 goto iospace_error_exit;
1490 }
1491 if (!(ha->bars & 1))
1492 goto skip_pio;
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1495 pio = pci_resource_start(ha->pdev, 0);
Andrew Vasquez37765412008-01-17 09:02:09 -08001496 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1497 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 qla_printk(KERN_WARNING, ha,
1499 "Invalid PCI I/O region size (%s)...\n",
1500 pci_name(ha->pdev));
1501 pio = 0;
1502 }
1503 } else {
1504 qla_printk(KERN_WARNING, ha,
1505 "region #0 not a PIO resource (%s)...\n",
1506 pci_name(ha->pdev));
1507 pio = 0;
1508 }
Andrew Vasquez285d0322007-10-19 15:59:17 -07001509 ha->pio_address = pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Andrew Vasquez285d0322007-10-19 15:59:17 -07001511skip_pio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /* Use MMIO operations for all accesses. */
Andrew Vasquez37765412008-01-17 09:02:09 -08001513 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 qla_printk(KERN_ERR, ha,
Andrew Vasquez37765412008-01-17 09:02:09 -08001515 "region #1 not an MMIO resource (%s), aborting\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 pci_name(ha->pdev));
1517 goto iospace_error_exit;
1518 }
Andrew Vasquez37765412008-01-17 09:02:09 -08001519 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 qla_printk(KERN_ERR, ha,
1521 "Invalid PCI mem region size (%s), aborting\n",
1522 pci_name(ha->pdev));
1523 goto iospace_error_exit;
1524 }
1525
Andrew Vasquez37765412008-01-17 09:02:09 -08001526 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (!ha->iobase) {
1528 qla_printk(KERN_ERR, ha,
1529 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1530
1531 goto iospace_error_exit;
1532 }
1533
1534 return (0);
1535
1536iospace_error_exit:
1537 return (-ENOMEM);
1538}
1539
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001540static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001541qla2xxx_scan_start(struct Scsi_Host *shost)
1542{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001543 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001544
1545 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1546 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1547 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1548}
1549
1550static int
1551qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1552{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001553 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001554
1555 if (!ha->host)
1556 return 1;
1557 if (time > ha->loop_reset_delay * HZ)
1558 return 1;
1559
1560 return atomic_read(&ha->loop_state) == LOOP_READY;
1561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/*
1564 * PCI driver interface
1565 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001566static int __devinit
1567qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001569 int ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct Scsi_Host *host;
1571 scsi_qla_host_t *ha;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001572 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001574 struct scsi_host_template *sht;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001575 int bars, mem_only = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Andrew Vasquez285d0322007-10-19 15:59:17 -07001577 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
1578 sht = &qla2x00_driver_template;
1579 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1580 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
1581 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1582 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
1583 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
1584 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1585 sht = &qla24xx_driver_template;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001586 mem_only = 1;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001587 }
1588
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001589 if (mem_only) {
1590 if (pci_enable_device_mem(pdev))
1591 goto probe_out;
1592 } else {
1593 if (pci_enable_device(pdev))
1594 goto probe_out;
1595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Seokmann Ju14e660e2007-09-20 14:07:36 -07001597 if (pci_find_aer_capability(pdev))
1598 if (pci_enable_pcie_error_reporting(pdev))
1599 goto probe_out;
1600
Andrew Vasquez54333832005-11-09 15:49:04 -08001601 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (host == NULL) {
1603 printk(KERN_WARNING
1604 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1605 goto probe_disable_device;
1606 }
1607
1608 /* Clear our data area */
Andrew Vasquezf363b942007-09-20 14:07:45 -07001609 ha = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 memset(ha, 0, sizeof(scsi_qla_host_t));
1611
1612 ha->pdev = pdev;
1613 ha->host = host;
1614 ha->host_no = host->host_no;
Andrew Vasquezcb630672006-05-17 15:09:45 -07001615 sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001616 ha->parent = NULL;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001617 ha->bars = bars;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001618 ha->mem_only = mem_only;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001619 spin_lock_init(&ha->hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001621 /* Set ISP-type information. */
1622 qla2x00_set_isp_flags(ha);
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 /* Configure PCI I/O space */
1625 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001626 if (ret)
1627 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001630 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1631 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001634 ha->init_cb_size = sizeof(init_cb_t);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001635 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001636 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001637 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001639 ha->max_q_depth = MAX_Q_DEPTH;
1640 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1641 ha->max_q_depth = ql2xmaxqdepth;
1642
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001643 /* Assign ISP specific operations. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001645 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1647 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1648 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1649 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1650 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001651 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001652 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001654 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1656 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1657 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1658 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001659 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001660 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001661 } else if (IS_QLA23XX(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001662 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1664 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1665 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1666 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001667 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001668 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1669 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001670 ha->isp_ops = &qla2300_isp_ops;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001671 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001672 host->max_id = MAX_TARGETS_2200;
1673 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1674 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1675 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1676 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001677 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1678 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001679 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001680 ha->optrom_size = OPTROM_SIZE_24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001681 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001682 } else if (IS_QLA25XX(ha)) {
1683 host->max_id = MAX_TARGETS_2200;
1684 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1685 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1686 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1687 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1688 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1689 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
1690 ha->gid_list_info_size = 8;
1691 ha->optrom_size = OPTROM_SIZE_25XX;
1692 ha->isp_ops = &qla25xx_isp_ops;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001693 ha->hw_event_start = PCI_FUNC(pdev->devfn) ?
1694 FA_HW_EVENT1_ADDR: FA_HW_EVENT0_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696 host->can_queue = ha->request_q_length + 128;
1697
1698 /* load the F/W, read paramaters, and init the H/W */
1699 ha->instance = num_hosts;
1700
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001701 init_MUTEX(&ha->vport_sem);
Marcus Barrow0b05a1f2008-01-17 09:02:13 -08001702 init_completion(&ha->mbx_cmd_comp);
1703 complete(&ha->mbx_cmd_comp);
1704 init_completion(&ha->mbx_intr_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 INIT_LIST_HEAD(&ha->list);
1707 INIT_LIST_HEAD(&ha->fcports);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001708 INIT_LIST_HEAD(&ha->vp_list);
Andrew Vasquez0971de72008-04-03 13:13:18 -07001709 INIT_LIST_HEAD(&ha->work_list);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001710
1711 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 qla2x00_config_dma_addressing(ha);
1714 if (qla2x00_mem_alloc(ha)) {
1715 qla_printk(KERN_WARNING, ha,
1716 "[ERROR] Failed to allocate memory for adapter\n");
1717
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001718 ret = -ENOMEM;
1719 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721
Andrew Vasquez765140b2007-05-07 07:42:58 -07001722 if (qla2x00_initialize_adapter(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 qla_printk(KERN_WARNING, ha,
1724 "Failed to initialize adapter\n");
1725
1726 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1727 "Adapter flags %x.\n",
1728 ha->host_no, ha->device_flags));
1729
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001730 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 goto probe_failed;
1732 }
1733
1734 /*
1735 * Startup the kernel thread for this host adapter
1736 */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001737 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1738 "%s_dpc", ha->host_str);
1739 if (IS_ERR(ha->dpc_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 qla_printk(KERN_WARNING, ha,
1741 "Unable to start DPC thread!\n");
Christoph Hellwig39a11242006-02-14 18:46:22 +01001742 ret = PTR_ERR(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto probe_failed;
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001746 host->this_id = 255;
1747 host->cmd_per_lun = 3;
1748 host->unique_id = ha->instance;
1749 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07001750 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001751 host->max_lun = MAX_LUNS;
1752 host->transportt = qla2xxx_transport_template;
1753
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001754 ret = qla2x00_request_irqs(ha);
1755 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 /* Initialized the timer */
1759 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1760
1761 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1762 ha->host_no, ha));
1763
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001764 pci_set_drvdata(pdev, ha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 ha->flags.init_done = 1;
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001767 ha->flags.online = 1;
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 num_hosts++;
1770
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001771 ret = scsi_add_host(host, &pdev->dev);
1772 if (ret)
1773 goto probe_failed;
1774
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001775 scsi_scan_host(host);
1776
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001777 qla2x00_alloc_sysfs_attr(ha);
1778
1779 qla2x00_init_host_attr(ha);
1780
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001781 qla2x00_dfs_setup(ha);
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 qla_printk(KERN_INFO, ha, "\n"
1784 " QLogic Fibre Channel HBA Driver: %s\n"
1785 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001786 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1787 qla2x00_version_str, ha->model_number,
1788 ha->model_desc ? ha->model_desc: "", pdev->device,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001789 ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
Andrew Vasquez54333832005-11-09 15:49:04 -08001790 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001791 ha->isp_ops->fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return 0;
1794
1795probe_failed:
1796 qla2x00_free_device(ha);
1797
1798 scsi_host_put(host);
1799
1800probe_disable_device:
1801 pci_disable_device(pdev);
1802
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001803probe_out:
1804 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Adrian Bunk4c993f72008-01-14 00:55:16 -08001807static void
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001808qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 scsi_qla_host_t *ha;
1811
1812 ha = pci_get_drvdata(pdev);
1813
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001814 qla2x00_dfs_remove(ha);
1815
8482e1182005-04-17 15:04:54 -05001816 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
bdf79622005-04-17 15:06:53 -05001818 fc_remove_host(ha->host);
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 scsi_remove_host(ha->host);
1821
1822 qla2x00_free_device(ha);
1823
1824 scsi_host_put(ha->host);
1825
Bernhard Walle665db932007-03-28 00:49:49 +02001826 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 pci_set_drvdata(pdev, NULL);
1828}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830static void
1831qla2x00_free_device(scsi_qla_host_t *ha)
1832{
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001833 qla2x00_abort_all_cmds(ha, DID_NO_CONNECT << 16);
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 /* Disable timer */
1836 if (ha->timer_active)
1837 qla2x00_stop_timer(ha);
1838
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001839 ha->flags.online = 0;
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001842 if (ha->dpc_thread) {
1843 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Christoph Hellwig39a11242006-02-14 18:46:22 +01001845 /*
1846 * qla2xxx_wake_dpc checks for ->dpc_thread
1847 * so we need to zero it out.
1848 */
1849 ha->dpc_thread = NULL;
1850 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001853 if (ha->flags.fce_enabled)
1854 qla2x00_disable_fce_trace(ha, NULL, NULL);
1855
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001856 if (ha->eft)
Andrew Vasquez00b6bd22008-01-17 09:02:16 -08001857 qla2x00_disable_eft_trace(ha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001858
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001859 /* Stop currently executing firmware. */
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001860 qla2x00_try_to_stop_firmware(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001862 /* turn-off interrupts on the card */
1863 if (ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001864 ha->isp_ops->disable_intrs(ha);
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001865
1866 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001868 qla2x00_free_irqs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 /* release io space registers */
1871 if (ha->iobase)
1872 iounmap(ha->iobase);
Andrew Vasquez285d0322007-10-19 15:59:17 -07001873 pci_release_selected_regions(ha->pdev, ha->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001876static inline void
1877qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1878 int defer)
1879{
1880 unsigned long flags;
1881 struct fc_rport *rport;
1882
1883 if (!fcport->rport)
1884 return;
1885
1886 rport = fcport->rport;
1887 if (defer) {
1888 spin_lock_irqsave(&fcport->rport_lock, flags);
1889 fcport->drport = rport;
1890 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001891 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001892 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1893 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1894 } else {
1895 spin_lock_irqsave(&fcport->rport_lock, flags);
1896 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001897 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001898 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1899 fc_remote_port_delete(rport);
1900 }
1901}
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1905 *
1906 * Input: ha = adapter block pointer. fcport = port structure pointer.
1907 *
1908 * Return: None.
1909 *
1910 * Context:
1911 */
1912void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001913 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001915 if (atomic_read(&fcport->state) == FCS_ONLINE &&
1916 ha->vp_idx == fcport->vp_idx)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001917 qla2x00_schedule_rport_del(ha, fcport, defer);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001918
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001919 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 * We may need to retry the login, so don't change the state of the
1921 * port but do the retries.
1922 */
1923 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1924 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1925
1926 if (!do_login)
1927 return;
1928
1929 if (fcport->login_retry == 0) {
1930 fcport->login_retry = ha->login_retry_count;
1931 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1932
1933 DEBUG(printk("scsi(%ld): Port login retry: "
1934 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1935 "id = 0x%04x retry cnt=%d\n",
1936 ha->host_no,
1937 fcport->port_name[0],
1938 fcport->port_name[1],
1939 fcport->port_name[2],
1940 fcport->port_name[3],
1941 fcport->port_name[4],
1942 fcport->port_name[5],
1943 fcport->port_name[6],
1944 fcport->port_name[7],
1945 fcport->loop_id,
1946 fcport->login_retry));
1947 }
1948}
1949
1950/*
1951 * qla2x00_mark_all_devices_lost
1952 * Updates fcport state when device goes offline.
1953 *
1954 * Input:
1955 * ha = adapter block pointer.
1956 * fcport = port structure pointer.
1957 *
1958 * Return:
1959 * None.
1960 *
1961 * Context:
1962 */
1963void
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001964qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
1966 fc_port_t *fcport;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001967 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001969 list_for_each_entry(fcport, &pha->fcports, list) {
1970 if (ha->vp_idx != 0 && ha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 /*
1973 * No point in marking the device as lost, if the device is
1974 * already DEAD.
1975 */
1976 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1977 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001978 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1979 if (defer)
1980 qla2x00_schedule_rport_del(ha, fcport, defer);
1981 else if (ha->vp_idx == fcport->vp_idx)
1982 qla2x00_schedule_rport_del(ha, fcport, defer);
1983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1985 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001986
Christoph Hellwig39a11242006-02-14 18:46:22 +01001987 if (defer)
1988 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
1991/*
1992* qla2x00_mem_alloc
1993* Allocates adapter memory.
1994*
1995* Returns:
1996* 0 = success.
Andrew Vasqueze8711082008-01-31 12:33:48 -08001997* !0 = failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998*/
Andrew Vasqueze8711082008-01-31 12:33:48 -08001999static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000qla2x00_mem_alloc(scsi_qla_host_t *ha)
2001{
2002 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Andrew Vasqueze8711082008-01-31 12:33:48 -08002004 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
2005 (ha->request_q_length + 1) * sizeof(request_t), &ha->request_dma,
2006 GFP_KERNEL);
2007 if (!ha->request_ring)
2008 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Andrew Vasqueze8711082008-01-31 12:33:48 -08002010 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
2011 (ha->response_q_length + 1) * sizeof(response_t),
2012 &ha->response_dma, GFP_KERNEL);
2013 if (!ha->response_ring)
2014 goto fail_free_request_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Andrew Vasqueze8711082008-01-31 12:33:48 -08002016 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2017 &ha->gid_list_dma, GFP_KERNEL);
2018 if (!ha->gid_list)
2019 goto fail_free_response_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Andrew Vasqueze8711082008-01-31 12:33:48 -08002021 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
2022 &ha->init_cb_dma, GFP_KERNEL);
2023 if (!ha->init_cb)
2024 goto fail_free_gid_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Andrew Vasqueze8711082008-01-31 12:33:48 -08002026 snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
2027 ha->host_no);
2028 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2029 DMA_POOL_SIZE, 8, 0);
2030 if (!ha->s_dma_pool)
2031 goto fail_free_init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Andrew Vasqueze8711082008-01-31 12:33:48 -08002033 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2034 if (!ha->srb_mempool)
2035 goto fail_free_s_dma_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Andrew Vasqueze8711082008-01-31 12:33:48 -08002037 /* Get memory for cached NVRAM */
2038 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2039 if (!ha->nvram)
2040 goto fail_free_srb_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Andrew Vasqueze8711082008-01-31 12:33:48 -08002042 /* Allocate memory for SNS commands */
2043 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2044 /* Get consistent memory allocated for SNS commands */
2045 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
2046 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
2047 if (!ha->sns_cmd)
2048 goto fail_free_nvram;
2049 } else {
2050 /* Get consistent memory allocated for MS IOCB */
2051 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2052 &ha->ms_iocb_dma);
2053 if (!ha->ms_iocb)
2054 goto fail_free_nvram;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Andrew Vasqueze8711082008-01-31 12:33:48 -08002056 /* Get consistent memory allocated for CT SNS commands */
2057 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
2058 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
2059 if (!ha->ct_sns)
2060 goto fail_free_ms_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062
Andrew Vasqueze8711082008-01-31 12:33:48 -08002063 return 0;
2064
2065fail_free_ms_iocb:
2066 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2067 ha->ms_iocb = NULL;
2068 ha->ms_iocb_dma = 0;
2069fail_free_nvram:
2070 kfree(ha->nvram);
2071 ha->nvram = NULL;
2072fail_free_srb_mempool:
2073 mempool_destroy(ha->srb_mempool);
2074 ha->srb_mempool = NULL;
2075fail_free_s_dma_pool:
2076 dma_pool_destroy(ha->s_dma_pool);
2077 ha->s_dma_pool = NULL;
2078fail_free_init_cb:
2079 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2080 ha->init_cb_dma);
2081 ha->init_cb = NULL;
2082 ha->init_cb_dma = 0;
2083fail_free_gid_list:
2084 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2085 ha->gid_list_dma);
2086 ha->gid_list = NULL;
2087 ha->gid_list_dma = 0;
2088fail_free_response_ring:
2089 dma_free_coherent(&ha->pdev->dev, (ha->response_q_length + 1) *
2090 sizeof(response_t), ha->response_ring, ha->response_dma);
2091 ha->response_ring = NULL;
2092 ha->response_dma = 0;
2093fail_free_request_ring:
2094 dma_free_coherent(&ha->pdev->dev, (ha->request_q_length + 1) *
2095 sizeof(request_t), ha->request_ring, ha->request_dma);
2096 ha->request_ring = NULL;
2097 ha->request_dma = 0;
2098fail:
2099 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
2102/*
2103* qla2x00_mem_free
2104* Frees all adapter allocated memory.
2105*
2106* Input:
2107* ha = adapter block pointer.
2108*/
Adrian Bunka824ebb2008-01-17 09:02:15 -08002109static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110qla2x00_mem_free(scsi_qla_host_t *ha)
2111{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 struct list_head *fcpl, *fcptemp;
2113 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Andrew Vasqueze8711082008-01-31 12:33:48 -08002115 if (ha->srb_mempool)
2116 mempool_destroy(ha->srb_mempool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002118 if (ha->fce)
2119 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2120 ha->fce_dma);
2121
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002122 if (ha->fw_dump) {
2123 if (ha->eft)
2124 dma_free_coherent(&ha->pdev->dev,
2125 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2126 vfree(ha->fw_dump);
2127 }
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (ha->sns_cmd)
2130 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2131 ha->sns_cmd, ha->sns_cmd_dma);
2132
2133 if (ha->ct_sns)
2134 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2135 ha->ct_sns, ha->ct_sns_dma);
2136
Andrew Vasquez88729e52006-06-23 16:10:50 -07002137 if (ha->sfp_data)
2138 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (ha->ms_iocb)
2141 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (ha->s_dma_pool)
2144 dma_pool_destroy(ha->s_dma_pool);
2145
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002146 if (ha->init_cb)
2147 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2148 ha->init_cb, ha->init_cb_dma);
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (ha->gid_list)
2151 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2152 ha->gid_list_dma);
2153
2154 if (ha->response_ring)
2155 dma_free_coherent(&ha->pdev->dev,
2156 (ha->response_q_length + 1) * sizeof(response_t),
2157 ha->response_ring, ha->response_dma);
2158
2159 if (ha->request_ring)
2160 dma_free_coherent(&ha->pdev->dev,
2161 (ha->request_q_length + 1) * sizeof(request_t),
2162 ha->request_ring, ha->request_dma);
2163
Andrew Vasqueze8711082008-01-31 12:33:48 -08002164 ha->srb_mempool = NULL;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002165 ha->eft = NULL;
2166 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 ha->sns_cmd = NULL;
2168 ha->sns_cmd_dma = 0;
2169 ha->ct_sns = NULL;
2170 ha->ct_sns_dma = 0;
2171 ha->ms_iocb = NULL;
2172 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 ha->init_cb = NULL;
2174 ha->init_cb_dma = 0;
2175
2176 ha->s_dma_pool = NULL;
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 ha->gid_list = NULL;
2179 ha->gid_list_dma = 0;
2180
2181 ha->response_ring = NULL;
2182 ha->response_dma = 0;
2183 ha->request_ring = NULL;
2184 ha->request_dma = 0;
2185
2186 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2187 fcport = list_entry(fcpl, fc_port_t, list);
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /* fc ports */
2190 list_del_init(&fcport->list);
2191 kfree(fcport);
2192 }
2193 INIT_LIST_HEAD(&ha->fcports);
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002196 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 ha->fw_dump_reading = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002198
2199 vfree(ha->optrom_buffer);
Seokmann Ju53772a22007-07-30 11:01:07 -07002200 kfree(ha->nvram);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Andrew Vasquez0971de72008-04-03 13:13:18 -07002203struct qla_work_evt *
2204qla2x00_alloc_work(struct scsi_qla_host *ha, enum qla_work_type type,
2205 int locked)
2206{
2207 struct qla_work_evt *e;
2208
2209 e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
2210 GFP_KERNEL);
2211 if (!e)
2212 return NULL;
2213
2214 INIT_LIST_HEAD(&e->list);
2215 e->type = type;
2216 e->flags = QLA_EVT_FLAG_FREE;
2217 return e;
2218}
2219
2220int
2221qla2x00_post_work(struct scsi_qla_host *ha, struct qla_work_evt *e, int locked)
2222{
2223 unsigned long flags;
2224
2225 if (!locked)
2226 spin_lock_irqsave(&ha->hardware_lock, flags);
2227 list_add_tail(&e->list, &ha->work_list);
2228 qla2xxx_wake_dpc(ha);
2229 if (!locked)
2230 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2231 return QLA_SUCCESS;
2232}
2233
2234int
2235qla2x00_post_aen_work(struct scsi_qla_host *ha, enum fc_host_event_code code,
2236 u32 data)
2237{
2238 struct qla_work_evt *e;
2239
2240 e = qla2x00_alloc_work(ha, QLA_EVT_AEN, 1);
2241 if (!e)
2242 return QLA_FUNCTION_FAILED;
2243
2244 e->u.aen.code = code;
2245 e->u.aen.data = data;
2246 return qla2x00_post_work(ha, e, 1);
2247}
2248
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002249int
2250qla2x00_post_hwe_work(struct scsi_qla_host *ha, uint16_t code, uint16_t d1,
2251 uint16_t d2, uint16_t d3)
2252{
2253 struct qla_work_evt *e;
2254
2255 e = qla2x00_alloc_work(ha, QLA_EVT_HWE_LOG, 1);
2256 if (!e)
2257 return QLA_FUNCTION_FAILED;
2258
2259 e->u.hwe.code = code;
2260 e->u.hwe.d1 = d1;
2261 e->u.hwe.d2 = d2;
2262 e->u.hwe.d3 = d3;
2263 return qla2x00_post_work(ha, e, 1);
2264}
2265
Andrew Vasquez0971de72008-04-03 13:13:18 -07002266static void
2267qla2x00_do_work(struct scsi_qla_host *ha)
2268{
2269 struct qla_work_evt *e;
2270
2271 spin_lock_irq(&ha->hardware_lock);
2272 while (!list_empty(&ha->work_list)) {
2273 e = list_entry(ha->work_list.next, struct qla_work_evt, list);
2274 list_del_init(&e->list);
2275 spin_unlock_irq(&ha->hardware_lock);
2276
2277 switch (e->type) {
2278 case QLA_EVT_AEN:
2279 fc_host_post_event(ha->host, fc_get_event_number(),
2280 e->u.aen.code, e->u.aen.data);
2281 break;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002282 case QLA_EVT_HWE_LOG:
2283 qla2xxx_hw_event_log(ha, e->u.hwe.code, e->u.hwe.d1,
2284 e->u.hwe.d2, e->u.hwe.d3);
2285 break;
Andrew Vasquez0971de72008-04-03 13:13:18 -07002286 }
2287 if (e->flags & QLA_EVT_FLAG_FREE)
2288 kfree(e);
2289 spin_lock_irq(&ha->hardware_lock);
2290 }
2291 spin_unlock_irq(&ha->hardware_lock);
2292}
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294/**************************************************************************
2295* qla2x00_do_dpc
2296* This kernel thread is a task that is schedule by the interrupt handler
2297* to perform the background processing for interrupts.
2298*
2299* Notes:
2300* This task always run in the context of a kernel thread. It
2301* is kick-off by the driver's detect code and starts up
2302* up one per adapter. It immediately goes to sleep and waits for
2303* some fibre event. When either the interrupt handler or
2304* the timer routine detects a event it will one of the task
2305* bits then wake us up.
2306**************************************************************************/
2307static int
2308qla2x00_do_dpc(void *data)
2309{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002310 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 scsi_qla_host_t *ha;
2312 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 uint16_t next_loopid;
Seokmann Ju99363ef2008-01-31 12:33:51 -08002315 struct scsi_qla_host *vha;
2316 int i;
2317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 ha = (scsi_qla_host_t *)data;
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 set_user_nice(current, -20);
2322
Christoph Hellwig39a11242006-02-14 18:46:22 +01002323 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2325
Christoph Hellwig39a11242006-02-14 18:46:22 +01002326 set_current_state(TASK_INTERRUPTIBLE);
2327 schedule();
2328 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2331
2332 /* Initialization not yet finished. Don't do anything yet. */
Christoph Hellwig39a11242006-02-14 18:46:22 +01002333 if (!ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 continue;
2335
2336 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2337
2338 ha->dpc_active = 1;
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 ha->dpc_active = 0;
2342 continue;
2343 }
2344
Andrew Vasquez0971de72008-04-03 13:13:18 -07002345 qla2x00_do_work(ha);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2348
2349 DEBUG(printk("scsi(%ld): dpc: sched "
2350 "qla2x00_abort_isp ha = %p\n",
2351 ha->host_no, ha));
2352 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2353 &ha->dpc_flags))) {
2354
2355 if (qla2x00_abort_isp(ha)) {
2356 /* failed. retry later */
2357 set_bit(ISP_ABORT_NEEDED,
2358 &ha->dpc_flags);
2359 }
2360 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2361 }
Seokmann Ju99363ef2008-01-31 12:33:51 -08002362
2363 for_each_mapped_vp_idx(ha, i) {
2364 list_for_each_entry(vha, &ha->vp_list,
2365 vp_list) {
2366 if (i == vha->vp_idx) {
2367 set_bit(ISP_ABORT_NEEDED,
2368 &vha->dpc_flags);
2369 break;
2370 }
2371 }
2372 }
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2375 ha->host_no));
2376 }
2377
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002378 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2379 qla2x00_update_fcports(ha);
2380
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002381 if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) {
2382 DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n",
2383 ha->host_no));
2384 qla2x00_loop_reset(ha);
2385 }
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2388 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2389
2390 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2391 ha->host_no));
2392
2393 qla2x00_rst_aen(ha);
2394 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2395 }
2396
2397 /* Retry each device up to login retry count */
2398 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2399 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2400 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2401
2402 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2403 ha->host_no));
2404
2405 next_loopid = 0;
2406 list_for_each_entry(fcport, &ha->fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 /*
2408 * If the port is not ONLINE then try to login
2409 * to it if we haven't run out of retries.
2410 */
2411 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2412 fcport->login_retry) {
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (fcport->flags & FCF_FABRIC_DEVICE) {
2415 if (fcport->flags &
2416 FCF_TAPE_PRESENT)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002417 ha->isp_ops->fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002418 ha, fcport->loop_id,
2419 fcport->d_id.b.domain,
2420 fcport->d_id.b.area,
2421 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 status = qla2x00_fabric_login(
2423 ha, fcport, &next_loopid);
2424 } else
2425 status =
2426 qla2x00_local_device_login(
andrew.vasquez@qlogic.com9a52a57c2006-03-09 14:27:44 -08002427 ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Ravi Anand63a86512007-09-20 14:07:40 -07002429 fcport->login_retry--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 if (status == QLA_SUCCESS) {
2431 fcport->old_loop_id = fcport->loop_id;
2432
2433 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2434 ha->host_no, fcport->loop_id));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002435
andrew.vasquez@qlogic.com052c40c2006-01-20 14:53:19 -08002436 qla2x00_update_fcport(ha,
2437 fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 } else if (status == 1) {
2439 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2440 /* retry the login again */
2441 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2442 ha->host_no,
2443 fcport->login_retry, fcport->loop_id));
2444 } else {
2445 fcport->login_retry = 0;
2446 }
Ravi Anand63a86512007-09-20 14:07:40 -07002447 if (fcport->login_retry == 0)
2448 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
2450 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2451 break;
2452 }
2453 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2454 ha->host_no));
2455 }
2456
2457 if ((test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags)) &&
2458 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2459
2460 clear_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags);
2461 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2462 ha->host_no));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2465
2466 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2467 ha->host_no));
2468 }
2469
2470 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2471
2472 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2473 ha->host_no));
2474
2475 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2476 &ha->dpc_flags))) {
2477
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002478 rval = qla2x00_loop_resync(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2481 }
2482
2483 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2484 ha->host_no));
2485 }
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED, &ha->dpc_flags)) {
2488
2489 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2490 ha->host_no));
2491
2492 qla2x00_rescan_fcports(ha);
2493
2494 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2495 "end.\n",
2496 ha->host_no));
2497 }
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002500 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002502 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002503 ha->isp_ops->beacon_blink(ha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002504
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002505 qla2x00_do_dpc_all_vps(ha);
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 ha->dpc_active = 0;
2508 } /* End of while(1) */
2509
2510 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2511
2512 /*
2513 * Make sure that nobody tries to wake us up again.
2514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 ha->dpc_active = 0;
2516
Christoph Hellwig39a11242006-02-14 18:46:22 +01002517 return 0;
2518}
2519
2520void
2521qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2522{
2523 if (ha->dpc_thread)
2524 wake_up_process(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
2527/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528* qla2x00_rst_aen
2529* Processes asynchronous reset.
2530*
2531* Input:
2532* ha = adapter block pointer.
2533*/
2534static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002535qla2x00_rst_aen(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
2537 if (ha->flags.online && !ha->flags.reset_active &&
2538 !atomic_read(&ha->loop_down_timer) &&
2539 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2540 do {
2541 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2542
2543 /*
2544 * Issue marker command only when we are going to start
2545 * the I/O.
2546 */
2547 ha->marker_needed = 1;
2548 } while (!atomic_read(&ha->loop_down_timer) &&
2549 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2550 }
2551}
2552
f4f051e2005-04-17 15:02:26 -05002553static void
2554qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2555{
2556 struct scsi_cmnd *cmd = sp->cmd;
2557
2558 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09002559 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05002560 sp->flags &= ~SRB_DMA_VALID;
2561 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002562 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002563}
2564
2565void
2566qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2567{
2568 struct scsi_cmnd *cmd = sp->cmd;
2569
2570 qla2x00_sp_free_dma(ha, sp);
2571
f4f051e2005-04-17 15:02:26 -05002572 mempool_free(sp, ha->srb_mempool);
2573
2574 cmd->scsi_done(cmd);
2575}
bdf79622005-04-17 15:06:53 -05002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577/**************************************************************************
2578* qla2x00_timer
2579*
2580* Description:
2581* One second timer
2582*
2583* Context: Interrupt
2584***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002585void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586qla2x00_timer(scsi_qla_host_t *ha)
2587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 unsigned long cpu_flags = 0;
2589 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 int start_dpc = 0;
2591 int index;
2592 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002593 int t;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002594 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 /*
2597 * Ports - Port down timer.
2598 *
2599 * Whenever, a port is in the LOST state we start decrementing its port
2600 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002601 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 */
2603 t = 0;
2604 list_for_each_entry(fcport, &ha->fcports, list) {
2605 if (fcport->port_type != FCT_TARGET)
2606 continue;
2607
2608 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2609
2610 if (atomic_read(&fcport->port_down_timer) == 0)
2611 continue;
2612
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002613 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002617 "%d remaining\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 ha->host_no,
2619 t, atomic_read(&fcport->port_down_timer)));
2620 }
2621 t++;
2622 } /* End of for fcport */
2623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 /* Loop down handler. */
2626 if (atomic_read(&ha->loop_down_timer) > 0 &&
2627 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2628
2629 if (atomic_read(&ha->loop_down_timer) ==
2630 ha->loop_down_abort_time) {
2631
2632 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2633 "queues before time expire\n",
2634 ha->host_no));
2635
2636 if (!IS_QLA2100(ha) && ha->link_down_timeout)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002637 atomic_set(&ha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 /* Schedule an ISP abort to return any tape commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002640 /* NPIV - scan physical port only */
2641 if (!ha->parent) {
2642 spin_lock_irqsave(&ha->hardware_lock,
2643 cpu_flags);
2644 for (index = 1;
2645 index < MAX_OUTSTANDING_COMMANDS;
2646 index++) {
2647 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05002648
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002649 sp = ha->outstanding_cmds[index];
2650 if (!sp)
2651 continue;
2652 sfcp = sp->fcport;
2653 if (!(sfcp->flags & FCF_TAPE_PRESENT))
2654 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002656 set_bit(ISP_ABORT_NEEDED,
2657 &ha->dpc_flags);
2658 break;
2659 }
2660 spin_unlock_irqrestore(&ha->hardware_lock,
2661 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2664 start_dpc++;
2665 }
2666
2667 /* if the loop has been down for 4 minutes, reinit adapter */
2668 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2669 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2670 "restarting queues.\n",
2671 ha->host_no));
2672
2673 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2674 start_dpc++;
2675
2676 if (!(ha->device_flags & DFLG_NO_CABLE)) {
2677 DEBUG(printk("scsi(%ld): Loop down - "
2678 "aborting ISP.\n",
2679 ha->host_no));
2680 qla_printk(KERN_WARNING, ha,
2681 "Loop down - aborting ISP.\n");
2682
2683 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2684 }
2685 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002686 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 ha->host_no,
2688 atomic_read(&ha->loop_down_timer)));
2689 }
2690
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002691 /* Check if beacon LED needs to be blinked */
2692 if (ha->beacon_blink_led == 1) {
2693 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2694 start_dpc++;
2695 }
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /* Schedule the DPC routine if needed */
2698 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2699 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002700 test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002701 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 start_dpc ||
2703 test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) ||
f4f051e2005-04-17 15:02:26 -05002704 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002705 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002706 test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
Christoph Hellwig39a11242006-02-14 18:46:22 +01002707 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002708 qla2xxx_wake_dpc(pha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2711}
2712
Andrew Vasquez54333832005-11-09 15:49:04 -08002713/* Firmware interface routines. */
2714
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002715#define FW_BLOBS 6
Andrew Vasquez54333832005-11-09 15:49:04 -08002716#define FW_ISP21XX 0
2717#define FW_ISP22XX 1
2718#define FW_ISP2300 2
2719#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002720#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002721#define FW_ISP25XX 5
Andrew Vasquez54333832005-11-09 15:49:04 -08002722
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002723#define FW_FILE_ISP21XX "ql2100_fw.bin"
2724#define FW_FILE_ISP22XX "ql2200_fw.bin"
2725#define FW_FILE_ISP2300 "ql2300_fw.bin"
2726#define FW_FILE_ISP2322 "ql2322_fw.bin"
2727#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002728#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002729
Andrew Vasquez54333832005-11-09 15:49:04 -08002730static DECLARE_MUTEX(qla_fw_lock);
2731
2732static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002733 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2734 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2735 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2736 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2737 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002738 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002739};
2740
2741struct fw_blob *
2742qla2x00_request_firmware(scsi_qla_host_t *ha)
2743{
2744 struct fw_blob *blob;
2745
2746 blob = NULL;
2747 if (IS_QLA2100(ha)) {
2748 blob = &qla_fw_blobs[FW_ISP21XX];
2749 } else if (IS_QLA2200(ha)) {
2750 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002751 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002752 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002753 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002754 blob = &qla_fw_blobs[FW_ISP2322];
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08002755 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002756 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002757 } else if (IS_QLA25XX(ha)) {
2758 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08002759 }
2760
2761 down(&qla_fw_lock);
2762 if (blob->fw)
2763 goto out;
2764
2765 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2766 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2767 "(%s).\n", ha->host_no, blob->name));
2768 blob->fw = NULL;
2769 blob = NULL;
2770 goto out;
2771 }
2772
2773out:
2774 up(&qla_fw_lock);
2775 return blob;
2776}
2777
2778static void
2779qla2x00_release_firmware(void)
2780{
2781 int idx;
2782
2783 down(&qla_fw_lock);
2784 for (idx = 0; idx < FW_BLOBS; idx++)
2785 if (qla_fw_blobs[idx].fw)
2786 release_firmware(qla_fw_blobs[idx].fw);
2787 up(&qla_fw_lock);
2788}
2789
Seokmann Ju14e660e2007-09-20 14:07:36 -07002790static pci_ers_result_t
2791qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2792{
2793 switch (state) {
2794 case pci_channel_io_normal:
2795 return PCI_ERS_RESULT_CAN_RECOVER;
2796 case pci_channel_io_frozen:
2797 pci_disable_device(pdev);
2798 return PCI_ERS_RESULT_NEED_RESET;
2799 case pci_channel_io_perm_failure:
2800 qla2x00_remove_one(pdev);
2801 return PCI_ERS_RESULT_DISCONNECT;
2802 }
2803 return PCI_ERS_RESULT_NEED_RESET;
2804}
2805
2806static pci_ers_result_t
2807qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2808{
2809 int risc_paused = 0;
2810 uint32_t stat;
2811 unsigned long flags;
2812 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2813 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2814 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2815
2816 spin_lock_irqsave(&ha->hardware_lock, flags);
2817 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2818 stat = RD_REG_DWORD(&reg->hccr);
2819 if (stat & HCCR_RISC_PAUSE)
2820 risc_paused = 1;
2821 } else if (IS_QLA23XX(ha)) {
2822 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2823 if (stat & HSR_RISC_PAUSED)
2824 risc_paused = 1;
2825 } else if (IS_FWI2_CAPABLE(ha)) {
2826 stat = RD_REG_DWORD(&reg24->host_status);
2827 if (stat & HSRX_RISC_PAUSED)
2828 risc_paused = 1;
2829 }
2830 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2831
2832 if (risc_paused) {
2833 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2834 "Dumping firmware!\n");
2835 ha->isp_ops->fw_dump(ha, 0);
2836
2837 return PCI_ERS_RESULT_NEED_RESET;
2838 } else
2839 return PCI_ERS_RESULT_RECOVERED;
2840}
2841
2842static pci_ers_result_t
2843qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2844{
2845 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
2846 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002847 int rc;
Seokmann Ju14e660e2007-09-20 14:07:36 -07002848
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002849 if (ha->mem_only)
2850 rc = pci_enable_device_mem(pdev);
2851 else
2852 rc = pci_enable_device(pdev);
2853
2854 if (rc) {
Seokmann Ju14e660e2007-09-20 14:07:36 -07002855 qla_printk(KERN_WARNING, ha,
2856 "Can't re-enable PCI device after reset.\n");
2857
2858 return ret;
2859 }
2860 pci_set_master(pdev);
2861
2862 if (ha->isp_ops->pci_config(ha))
2863 return ret;
2864
2865 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2866 if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
2867 ret = PCI_ERS_RESULT_RECOVERED;
2868 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2869
2870 return ret;
2871}
2872
2873static void
2874qla2xxx_pci_resume(struct pci_dev *pdev)
2875{
2876 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2877 int ret;
2878
2879 ret = qla2x00_wait_for_hba_online(ha);
2880 if (ret != QLA_SUCCESS) {
2881 qla_printk(KERN_ERR, ha,
2882 "the device failed to resume I/O "
2883 "from slot/link_reset");
2884 }
2885 pci_cleanup_aer_uncorrect_error_status(pdev);
2886}
2887
2888static struct pci_error_handlers qla2xxx_err_handler = {
2889 .error_detected = qla2xxx_pci_error_detected,
2890 .mmio_enabled = qla2xxx_pci_mmio_enabled,
2891 .slot_reset = qla2xxx_pci_slot_reset,
2892 .resume = qla2xxx_pci_resume,
2893};
2894
Andrew Vasquez54333832005-11-09 15:49:04 -08002895static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002896 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2897 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2898 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2899 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2900 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2901 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2902 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2903 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2904 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
2905 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2906 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002907 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez54333832005-11-09 15:49:04 -08002908 { 0 },
2909};
2910MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2911
Andrew Vasquezfca29702005-07-06 10:31:47 -07002912static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07002913 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06002914 .driver = {
2915 .owner = THIS_MODULE,
2916 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002917 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002918 .probe = qla2x00_probe_one,
Adrian Bunk4c993f72008-01-14 00:55:16 -08002919 .remove = qla2x00_remove_one,
Seokmann Ju14e660e2007-09-20 14:07:36 -07002920 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07002921};
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923/**
2924 * qla2x00_module_init - Module initialization.
2925 **/
2926static int __init
2927qla2x00_module_init(void)
2928{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002929 int ret = 0;
2930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002932 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09002933 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 if (srb_cachep == NULL) {
2935 printk(KERN_ERR
2936 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2937 return -ENOMEM;
2938 }
2939
2940 /* Derive version string. */
2941 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002942 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07002943 strcat(qla2x00_version_str, "-debug");
2944
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002945 qla2xxx_transport_template =
2946 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002947 if (!qla2xxx_transport_template) {
2948 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002950 }
2951 qla2xxx_transport_vport_template =
2952 fc_attach_transport(&qla2xxx_transport_vport_functions);
2953 if (!qla2xxx_transport_vport_template) {
2954 kmem_cache_destroy(srb_cachep);
2955 fc_release_transport(qla2xxx_transport_template);
2956 return -ENODEV;
2957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002960 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002961 if (ret) {
2962 kmem_cache_destroy(srb_cachep);
2963 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002964 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002965 }
2966 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
2968
2969/**
2970 * qla2x00_module_exit - Module cleanup.
2971 **/
2972static void __exit
2973qla2x00_module_exit(void)
2974{
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002975 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08002976 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002977 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002979 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
2981
2982module_init(qla2x00_module_init);
2983module_exit(qla2x00_module_exit);
2984
2985MODULE_AUTHOR("QLogic Corporation");
2986MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2987MODULE_LICENSE("GPL");
2988MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002989MODULE_FIRMWARE(FW_FILE_ISP21XX);
2990MODULE_FIRMWARE(FW_FILE_ISP22XX);
2991MODULE_FIRMWARE(FW_FILE_ISP2300);
2992MODULE_FIRMWARE(FW_FILE_ISP2322);
2993MODULE_FIRMWARE(FW_FILE_ISP24XX);
Andrew Vasquez61623fc2008-01-31 12:33:45 -08002994MODULE_FIRMWARE(FW_FILE_ISP25XX);