blob: a6bb8d0ecf139fe46de567eb773abd8fead11dba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 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 *);
108static int qla2x00_loop_reset(scsi_qla_host_t *ha);
109static int qla2x00_device_reset(scsi_qla_host_t *, fc_port_t *);
110
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700111static int qla2x00_change_queue_depth(struct scsi_device *, int);
112static int qla2x00_change_queue_type(struct scsi_device *, int);
113
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700114struct scsi_host_template qla2x00_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700116 .name = QLA2XXX_DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .queuecommand = qla2x00_queuecommand,
118
119 .eh_abort_handler = qla2xxx_eh_abort,
120 .eh_device_reset_handler = qla2xxx_eh_device_reset,
121 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
122 .eh_host_reset_handler = qla2xxx_eh_host_reset,
123
124 .slave_configure = qla2xxx_slave_configure,
125
f4f051e2005-04-17 15:02:26 -0500126 .slave_alloc = qla2xxx_slave_alloc,
127 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800128 .scan_finished = qla2xxx_scan_finished,
129 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700130 .change_queue_depth = qla2x00_change_queue_depth,
131 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .this_id = -1,
133 .cmd_per_lun = 3,
134 .use_clustering = ENABLE_CLUSTERING,
135 .sg_tablesize = SG_ALL,
136
137 /*
138 * The RISC allows for each command to transfer (2^32-1) bytes of data,
139 * which equates to 0x800000 sectors.
140 */
141 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700142 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700145struct scsi_host_template qla24xx_driver_template = {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700146 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700147 .name = QLA2XXX_DRIVER_NAME,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700148 .queuecommand = qla24xx_queuecommand,
149
150 .eh_abort_handler = qla2xxx_eh_abort,
151 .eh_device_reset_handler = qla2xxx_eh_device_reset,
152 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
153 .eh_host_reset_handler = qla2xxx_eh_host_reset,
154
155 .slave_configure = qla2xxx_slave_configure,
156
157 .slave_alloc = qla2xxx_slave_alloc,
158 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezed677082007-03-12 10:41:27 -0700159 .scan_finished = qla2xxx_scan_finished,
160 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700161 .change_queue_depth = qla2x00_change_queue_depth,
162 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700163 .this_id = -1,
164 .cmd_per_lun = 3,
165 .use_clustering = ENABLE_CLUSTERING,
166 .sg_tablesize = SG_ALL,
167
168 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700169 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700170};
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700173struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* TODO Convert to inlines
176 *
177 * Timer routines
178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700180void qla2x00_timer(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700182__inline__ void qla2x00_start_timer(scsi_qla_host_t *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 void *, unsigned long);
184static __inline__ void qla2x00_restart_timer(scsi_qla_host_t *, unsigned long);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700185__inline__ void qla2x00_stop_timer(scsi_qla_host_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700187__inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
189{
190 init_timer(&ha->timer);
191 ha->timer.expires = jiffies + interval * HZ;
192 ha->timer.data = (unsigned long)ha;
193 ha->timer.function = (void (*)(unsigned long))func;
194 add_timer(&ha->timer);
195 ha->timer_active = 1;
196}
197
198static inline void
199qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
200{
201 mod_timer(&ha->timer, jiffies + interval * HZ);
202}
203
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700204__inline__ void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205qla2x00_stop_timer(scsi_qla_host_t *ha)
206{
207 del_timer_sync(&ha->timer);
208 ha->timer_active = 0;
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static int qla2x00_do_dpc(void *data);
212
213static void qla2x00_rst_aen(scsi_qla_host_t *);
214
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700215uint8_t qla2x00_mem_alloc(scsi_qla_host_t *);
216void qla2x00_mem_free(scsi_qla_host_t *ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static int qla2x00_allocate_sp_pool( scsi_qla_host_t *ha);
218static void qla2x00_free_sp_pool(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500219static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
220void qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* -------------------------------------------------------------------------- */
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700225qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 static char *pci_bus_modes[] = {
228 "33", "66", "100", "133",
229 };
230 uint16_t pci_bus;
231
232 strcpy(str, "PCI");
233 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
234 if (pci_bus) {
235 strcat(str, "-X (");
236 strcat(str, pci_bus_modes[pci_bus]);
237 } else {
238 pci_bus = (ha->pci_attr & BIT_8) >> 8;
239 strcat(str, " (");
240 strcat(str, pci_bus_modes[pci_bus]);
241 }
242 strcat(str, " MHz)");
243
244 return (str);
245}
246
Andrew Vasquezfca29702005-07-06 10:31:47 -0700247static char *
248qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
249{
250 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
251 uint32_t pci_bus;
252 int pcie_reg;
253
254 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
255 if (pcie_reg) {
256 char lwstr[6];
257 uint16_t pcie_lstat, lspeed, lwidth;
258
259 pcie_reg += 0x12;
260 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
261 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
262 lwidth = (pcie_lstat &
263 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
264
265 strcpy(str, "PCIe (");
266 if (lspeed == 1)
267 strcat(str, "2.5Gb/s ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700268 else if (lspeed == 2)
269 strcat(str, "5.0Gb/s ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700270 else
271 strcat(str, "<unknown> ");
272 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
273 strcat(str, lwstr);
274
275 return str;
276 }
277
278 strcpy(str, "PCI");
279 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
280 if (pci_bus == 0 || pci_bus == 8) {
281 strcat(str, " (");
282 strcat(str, pci_bus_modes[pci_bus >> 3]);
283 } else {
284 strcat(str, "-X ");
285 if (pci_bus & BIT_2)
286 strcat(str, "Mode 2");
287 else
288 strcat(str, "Mode 1");
289 strcat(str, " (");
290 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
291 }
292 strcat(str, " MHz)");
293
294 return str;
295}
296
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800297static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700298qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 char un_str[10];
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
303 ha->fw_minor_version,
304 ha->fw_subminor_version);
305
306 if (ha->fw_attributes & BIT_9) {
307 strcat(str, "FLX");
308 return (str);
309 }
310
311 switch (ha->fw_attributes & 0xFF) {
312 case 0x7:
313 strcat(str, "EF");
314 break;
315 case 0x17:
316 strcat(str, "TP");
317 break;
318 case 0x37:
319 strcat(str, "IP");
320 break;
321 case 0x77:
322 strcat(str, "VI");
323 break;
324 default:
325 sprintf(un_str, "(%x)", ha->fw_attributes);
326 strcat(str, un_str);
327 break;
328 }
329 if (ha->fw_attributes & 0x100)
330 strcat(str, "X");
331
332 return (str);
333}
334
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800335static char *
Andrew Vasquezfca29702005-07-06 10:31:47 -0700336qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
337{
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700338 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
339 ha->fw_minor_version,
340 ha->fw_subminor_version);
341
Andrew Vasquezfca29702005-07-06 10:31:47 -0700342 if (ha->fw_attributes & BIT_0)
343 strcat(str, "[Class 2] ");
344 if (ha->fw_attributes & BIT_1)
345 strcat(str, "[IP] ");
346 if (ha->fw_attributes & BIT_2)
347 strcat(str, "[Multi-ID] ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700348 if (ha->fw_attributes & BIT_3)
349 strcat(str, "[SB-2] ");
350 if (ha->fw_attributes & BIT_4)
351 strcat(str, "[T10 CRC] ");
352 if (ha->fw_attributes & BIT_5)
353 strcat(str, "[VI] ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700354 if (ha->fw_attributes & BIT_13)
355 strcat(str, "[Experimental]");
356 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700357}
358
359static inline srb_t *
360qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
361 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
362{
363 srb_t *sp;
364
365 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
366 if (!sp)
367 return sp;
368
Andrew Vasquezfca29702005-07-06 10:31:47 -0700369 sp->ha = ha;
370 sp->fcport = fcport;
371 sp->cmd = cmd;
372 sp->flags = 0;
373 CMD_SP(cmd) = (void *)sp;
374 cmd->scsi_done = done;
375
376 return sp;
377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static int
f4f051e2005-04-17 15:02:26 -0500380qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700382 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500383 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400384 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051e2005-04-17 15:02:26 -0500385 srb_t *sp;
386 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Seokmann Ju14e660e2007-09-20 14:07:36 -0700388 if (unlikely(pci_channel_offline(ha->pdev))) {
389 cmd->result = DID_REQUEUE << 16;
390 goto qc_fail_command;
391 }
392
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400393 rval = fc_remote_port_chkready(rport);
394 if (rval) {
395 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500396 goto qc_fail_command;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800399 /* Close window on fcport/rport state-transitioning. */
400 if (!*(fc_port_t **)rport->dd_data) {
401 cmd->result = DID_IMM_RETRY << 16;
402 goto qc_fail_command;
403 }
404
f4f051e2005-04-17 15:02:26 -0500405 if (atomic_read(&fcport->state) != FCS_ONLINE) {
406 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
407 atomic_read(&ha->loop_state) == LOOP_DEAD) {
408 cmd->result = DID_NO_CONNECT << 16;
409 goto qc_fail_command;
410 }
411 goto qc_host_busy;
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 spin_unlock_irq(ha->host->host_lock);
415
Andrew Vasquezfca29702005-07-06 10:31:47 -0700416 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
417 if (!sp)
f4f051e2005-04-17 15:02:26 -0500418 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
f4f051e2005-04-17 15:02:26 -0500420 rval = qla2x00_start_scsi(sp);
421 if (rval != QLA_SUCCESS)
422 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 spin_lock_irq(ha->host->host_lock);
425
f4f051e2005-04-17 15:02:26 -0500426 return 0;
427
428qc_host_busy_free_sp:
429 qla2x00_sp_free_dma(ha, sp);
f4f051e2005-04-17 15:02:26 -0500430 mempool_free(sp, ha->srb_mempool);
431
432qc_host_busy_lock:
433 spin_lock_irq(ha->host->host_lock);
434
435qc_host_busy:
436 return SCSI_MLQUEUE_HOST_BUSY;
437
438qc_fail_command:
439 done(cmd);
440
441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Andrew Vasquezfca29702005-07-06 10:31:47 -0700444
445static int
446qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
447{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700448 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700449 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400450 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700451 srb_t *sp;
452 int rval;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700453 scsi_qla_host_t *pha = to_qla_parent(ha);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700454
Seokmann Ju14e660e2007-09-20 14:07:36 -0700455 if (unlikely(pci_channel_offline(ha->pdev))) {
456 cmd->result = DID_REQUEUE << 16;
457 goto qc24_fail_command;
458 }
459
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400460 rval = fc_remote_port_chkready(rport);
461 if (rval) {
462 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700463 goto qc24_fail_command;
464 }
465
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800466 /* Close window on fcport/rport state-transitioning. */
467 if (!*(fc_port_t **)rport->dd_data) {
468 cmd->result = DID_IMM_RETRY << 16;
469 goto qc24_fail_command;
470 }
471
Andrew Vasquezfca29702005-07-06 10:31:47 -0700472 if (atomic_read(&fcport->state) != FCS_ONLINE) {
473 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700474 atomic_read(&pha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700475 cmd->result = DID_NO_CONNECT << 16;
476 goto qc24_fail_command;
477 }
478 goto qc24_host_busy;
479 }
480
481 spin_unlock_irq(ha->host->host_lock);
482
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700483 sp = qla2x00_get_new_sp(pha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700484 if (!sp)
485 goto qc24_host_busy_lock;
486
487 rval = qla24xx_start_scsi(sp);
488 if (rval != QLA_SUCCESS)
489 goto qc24_host_busy_free_sp;
490
491 spin_lock_irq(ha->host->host_lock);
492
493 return 0;
494
495qc24_host_busy_free_sp:
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700496 qla2x00_sp_free_dma(pha, sp);
497 mempool_free(sp, pha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700498
499qc24_host_busy_lock:
500 spin_lock_irq(ha->host->host_lock);
501
502qc24_host_busy:
503 return SCSI_MLQUEUE_HOST_BUSY;
504
505qc24_fail_command:
506 done(cmd);
507
508 return 0;
509}
510
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
513 * qla2x00_eh_wait_on_command
514 * Waits for the command to be returned by the Firmware for some
515 * max time.
516 *
517 * Input:
518 * ha = actual ha whose done queue will contain the command
519 * returned by firmware.
520 * cmd = Scsi Command to wait on.
521 * flag = Abort/Reset(Bus or Device Reset)
522 *
523 * Return:
524 * Not Found : 0
525 * Found : 1
526 */
527static int
528qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
529{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700530#define ABORT_POLLING_PERIOD 1000
531#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500532 unsigned long wait_iter = ABORT_WAIT_ITER;
533 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
f4f051e2005-04-17 15:02:26 -0500535 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700536 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
f4f051e2005-04-17 15:02:26 -0500538 if (--wait_iter)
539 break;
540 }
541 if (CMD_SP(cmd))
542 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
f4f051e2005-04-17 15:02:26 -0500544 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547/*
548 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700549 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * <= MAX_RETRIES_OF_ISP_ABORT or
551 * finally HBA is disabled ie marked offline
552 *
553 * Input:
554 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700555 *
556 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * Does context switching-Release SPIN_LOCK
558 * (if any) before calling this routine.
559 *
560 * Return:
561 * Success (Adapter is online) : 0
562 * Failed (Adapter is offline/disabled) : 1
563 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800564int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
566{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700567 int return_status;
568 unsigned long wait_online;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700569 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700571 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700572 while (((test_bit(ISP_ABORT_NEEDED, &pha->dpc_flags)) ||
573 test_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags) ||
574 test_bit(ISP_ABORT_RETRY, &pha->dpc_flags) ||
575 pha->dpc_active) && time_before(jiffies, wait_online)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 msleep(1000);
578 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700579 if (pha->flags.online)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700580 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 else
582 return_status = QLA_FUNCTION_FAILED;
583
584 DEBUG2(printk("%s return_status=%d\n",__func__,return_status));
585
586 return (return_status);
587}
588
589/*
590 * qla2x00_wait_for_loop_ready
591 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700592 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * Input:
594 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700595 *
596 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * Does context switching-Release SPIN_LOCK
598 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700599 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 *
601 * Return:
602 * Success (LOOP_READY) : 0
603 * Failed (LOOP_NOT_READY) : 1
604 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700605static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
607{
608 int return_status = QLA_SUCCESS;
609 unsigned long loop_timeout ;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700610 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700613 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700615 while ((!atomic_read(&pha->loop_down_timer) &&
616 atomic_read(&pha->loop_state) == LOOP_DOWN) ||
617 atomic_read(&pha->loop_state) != LOOP_READY) {
618 if (atomic_read(&pha->loop_state) == LOOP_DEAD) {
Ravi Anand57680082006-05-17 15:08:44 -0700619 return_status = QLA_FUNCTION_FAILED;
620 break;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 msleep(1000);
623 if (time_after_eq(jiffies, loop_timeout)) {
624 return_status = QLA_FUNCTION_FAILED;
625 break;
626 }
627 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700628 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Andrew Vasquez07db5182006-10-02 12:00:49 -0700631static void
632qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
633{
634 struct Scsi_Host *shost = cmnd->device->host;
635 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
636 unsigned long flags;
637
638 spin_lock_irqsave(shost->host_lock, flags);
639 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
640 spin_unlock_irqrestore(shost->host_lock, flags);
641 msleep(1000);
642 spin_lock_irqsave(shost->host_lock, flags);
643 }
644 spin_unlock_irqrestore(shost->host_lock, flags);
645 return;
646}
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/**************************************************************************
649* qla2xxx_eh_abort
650*
651* Description:
652* The abort function will abort the specified command.
653*
654* Input:
655* cmd = Linux SCSI command packet to be aborted.
656*
657* Returns:
658* Either SUCCESS or FAILED.
659*
660* Note:
Michael Reed2ea00202006-04-27 16:25:30 -0700661* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800663static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664qla2xxx_eh_abort(struct scsi_cmnd *cmd)
665{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700666 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
f4f051e2005-04-17 15:02:26 -0500667 srb_t *sp;
668 int ret, i;
669 unsigned int id, lun;
670 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700671 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700672 int wait = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700673 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Andrew Vasquez07db5182006-10-02 12:00:49 -0700675 qla2x00_block_error_handler(cmd);
676
f4f051e2005-04-17 15:02:26 -0500677 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700678 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Michael Reed2ea00202006-04-27 16:25:30 -0700680 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
f4f051e2005-04-17 15:02:26 -0500682 id = cmd->device->id;
683 lun = cmd->device->lun;
684 serial = cmd->serial_number;
685
686 /* Check active list for command command. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700687 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500688 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700689 sp = pha->outstanding_cmds[i];
f4f051e2005-04-17 15:02:26 -0500690
691 if (sp == NULL)
692 continue;
693
694 if (sp->cmd != cmd)
695 continue;
696
Andrew Vasquez75bc4192006-05-17 15:09:22 -0700697 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
698 __func__, ha->host_no, sp, serial));
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700699 DEBUG3(qla2x00_print_scsi_cmd(cmd));
f4f051e2005-04-17 15:02:26 -0500700
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700701 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700702 if (ha->isp_ops->abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500703 DEBUG2(printk("%s(%ld): abort_command "
704 "mbx failed.\n", __func__, ha->host_no));
705 } else {
706 DEBUG3(printk("%s(%ld): abort_command "
707 "mbx success.\n", __func__, ha->host_no));
Michael Reed2ea00202006-04-27 16:25:30 -0700708 wait = 1;
f4f051e2005-04-17 15:02:26 -0500709 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700710 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500711
712 break;
713 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700714 spin_unlock_irqrestore(&pha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500715
716 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700717 if (wait) {
f4f051e2005-04-17 15:02:26 -0500718 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700719 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500720 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
721 "%x.\n", ha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700722 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700726 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700727 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
728 ha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
f4f051e2005-04-17 15:02:26 -0500730 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733/**************************************************************************
734* qla2x00_eh_wait_for_pending_target_commands
735*
736* Description:
737* Waits for all the commands to come back from the specified target.
738*
739* Input:
740* ha - pointer to scsi_qla_host structure.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700741* t - target
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742* Returns:
743* Either SUCCESS or FAILED.
744*
745* Note:
746**************************************************************************/
747static int
748qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t *ha, unsigned int t)
749{
750 int cnt;
751 int status;
752 srb_t *sp;
753 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700754 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700755 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 status = 0;
758
759 /*
760 * Waiting for all commands for the designated target in the active
761 * array
762 */
763 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700764 spin_lock_irqsave(&pha->hardware_lock, flags);
765 sp = pha->outstanding_cmds[cnt];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (sp) {
767 cmd = sp->cmd;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700768 spin_unlock_irqrestore(&pha->hardware_lock, flags);
769 if (cmd->device->id == t &&
770 ha->vp_idx == sp->ha->vp_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!qla2x00_eh_wait_on_command(ha, cmd)) {
772 status = 1;
773 break;
774 }
775 }
f4f051e2005-04-17 15:02:26 -0500776 } else {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700777 spin_unlock_irqrestore(&pha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779 }
780 return (status);
781}
782
783
784/**************************************************************************
785* qla2xxx_eh_device_reset
786*
787* Description:
788* The device reset function will reset the target and abort any
789* executing commands.
790*
791* NOTE: The use of SP is undefined within this context. Do *NOT*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700792* attempt to use this value, even if you determine it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793* non-null.
794*
795* Input:
796* cmd = Linux SCSI command packet of the command that cause the
797* bus device reset.
798*
799* Returns:
800* SUCCESS/FAILURE (defined as macro in scsi.h).
801*
802**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800803static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
805{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700806 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500807 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700808 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500809 unsigned int id, lun;
810 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Andrew Vasquez07db5182006-10-02 12:00:49 -0700812 qla2x00_block_error_handler(cmd);
813
f4f051e2005-04-17 15:02:26 -0500814 id = cmd->device->id;
815 lun = cmd->device->lun;
816 serial = cmd->serial_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700818 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500819 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500822 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400824 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto eh_dev_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500828 if (qla2x00_device_reset(ha, fcport) == 0)
829 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831#if defined(LOGOUT_AFTER_DEVICE_RESET)
f4f051e2005-04-17 15:02:26 -0500832 if (ret == SUCCESS) {
833 if (fcport->flags & FC_FABRIC_DEVICE) {
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700834 ha->isp_ops->fabric_logout(ha, fcport->loop_id);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -0800835 qla2x00_mark_device_lost(ha, fcport, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 }
838#endif
839 } else {
840 DEBUG2(printk(KERN_INFO
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700841 "%s failed: loop not ready\n",__func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
f4f051e2005-04-17 15:02:26 -0500844 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 DEBUG3(printk("%s(%ld): device reset failed\n",
846 __func__, ha->host_no));
847 qla_printk(KERN_INFO, ha, "%s: device reset failed\n",
848 __func__);
849
850 goto eh_dev_reset_done;
851 }
852
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700853 /* Flush outstanding commands. */
854 if (qla2x00_eh_wait_for_pending_target_commands(ha, id))
855 ret = FAILED;
856 if (ret == FAILED) {
857 DEBUG3(printk("%s(%ld): failed while waiting for commands\n",
858 __func__, ha->host_no));
859 qla_printk(KERN_INFO, ha,
860 "%s: failed while waiting for commands\n", __func__);
861 } else
862 qla_printk(KERN_INFO, ha,
863 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha->host_no,
864 id, lun);
James Bottomley28f22b02005-10-28 17:22:18 -0500865 eh_dev_reset_done:
f4f051e2005-04-17 15:02:26 -0500866 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869/**************************************************************************
870* qla2x00_eh_wait_for_pending_commands
871*
872* Description:
873* Waits for all the commands to come back from the specified host.
874*
875* Input:
876* ha - pointer to scsi_qla_host structure.
877*
878* Returns:
879* 1 : SUCCESS
880* 0 : FAILED
881*
882* Note:
883**************************************************************************/
884static int
885qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha)
886{
887 int cnt;
888 int status;
889 srb_t *sp;
890 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700891 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 status = 1;
894
895 /*
896 * Waiting for all commands for the designated target in the active
897 * array
898 */
899 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700900 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 sp = ha->outstanding_cmds[cnt];
902 if (sp) {
903 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700904 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 status = qla2x00_eh_wait_on_command(ha, cmd);
906 if (status == 0)
907 break;
908 }
909 else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700910 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 }
913 return (status);
914}
915
916
917/**************************************************************************
918* qla2xxx_eh_bus_reset
919*
920* Description:
921* The bus reset function will reset the bus and abort any executing
922* commands.
923*
924* Input:
925* cmd = Linux SCSI command packet of the command that cause the
926* bus reset.
927*
928* Returns:
929* SUCCESS/FAILURE (defined as macro in scsi.h).
930*
931**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800932static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
934{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700935 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700936 scsi_qla_host_t *pha = to_qla_parent(ha);
bdf79622005-04-17 15:06:53 -0500937 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700938 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500939 unsigned int id, lun;
940 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Andrew Vasquez07db5182006-10-02 12:00:49 -0700942 qla2x00_block_error_handler(cmd);
943
f4f051e2005-04-17 15:02:26 -0500944 id = cmd->device->id;
945 lun = cmd->device->lun;
946 serial = cmd->serial_number;
947
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700948 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500949 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500952 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
955 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500956 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958
959 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500960 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
961 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
f4f051e2005-04-17 15:02:26 -0500963 if (ret == FAILED)
964 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700966 /* Flush outstanding commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700967 if (!qla2x00_eh_wait_for_pending_commands(pha))
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700968 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
f4f051e2005-04-17 15:02:26 -0500970eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500972 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
f4f051e2005-04-17 15:02:26 -0500974 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977/**************************************************************************
978* qla2xxx_eh_host_reset
979*
980* Description:
981* The reset function will reset the Adapter.
982*
983* Input:
984* cmd = Linux SCSI command packet of the command that cause the
985* adapter reset.
986*
987* Returns:
988* Either SUCCESS or FAILED.
989*
990* Note:
991**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800992static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
994{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700995 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500996 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700997 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500998 unsigned int id, lun;
999 unsigned long serial;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001000 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Andrew Vasquez07db5182006-10-02 12:00:49 -07001002 qla2x00_block_error_handler(cmd);
1003
f4f051e2005-04-17 15:02:26 -05001004 id = cmd->device->id;
1005 lun = cmd->device->lun;
1006 serial = cmd->serial_number;
1007
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -07001008 if (!fcport)
f4f051e2005-04-17 15:02:26 -05001009 return ret;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -05001012 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001015 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 /*
1018 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001019 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 * be completed and then issue big hammer.Otherwise
1021 * it may cause I/O failure as big hammer marks the
1022 * devices as lost kicking of the port_down_timer
1023 * while dpc is stuck for the mailbox to complete.
1024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 qla2x00_wait_for_loop_ready(ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001026 set_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
1027 if (qla2x00_abort_isp(pha)) {
1028 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* failed. schedule dpc to try */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001030 set_bit(ISP_ABORT_NEEDED, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001033 goto eh_host_reset_lock;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001034 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001035 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* Waiting for our command in done_queue to be returned to OS.*/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001038 if (qla2x00_eh_wait_for_pending_commands(pha))
f4f051e2005-04-17 15:02:26 -05001039 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001041 if (ha->parent)
1042 qla2x00_vp_abort_isp(ha);
1043
f4f051e2005-04-17 15:02:26 -05001044eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001045 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1046 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
f4f051e2005-04-17 15:02:26 -05001048 return ret;
1049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051/*
1052* qla2x00_loop_reset
1053* Issue loop reset.
1054*
1055* Input:
1056* ha = adapter block pointer.
1057*
1058* Returns:
1059* 0 = success
1060*/
1061static int
1062qla2x00_loop_reset(scsi_qla_host_t *ha)
1063{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001064 int ret;
bdf79622005-04-17 15:06:53 -05001065 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001067 if (ha->flags.enable_lip_full_login) {
1068 ret = qla2x00_full_login_lip(ha);
1069 if (ret != QLA_SUCCESS) {
1070 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1071 "full_login_lip=%d.\n", __func__, ha->host_no,
1072 ret));
1073 }
1074 atomic_set(&ha->loop_state, LOOP_DOWN);
1075 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
1076 qla2x00_mark_all_devices_lost(ha, 0);
1077 qla2x00_wait_for_loop_ready(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001080 if (ha->flags.enable_lip_reset) {
1081 ret = qla2x00_lip_reset(ha);
1082 if (ret != QLA_SUCCESS) {
1083 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1084 "lip_reset=%d.\n", __func__, ha->host_no, ret));
1085 }
1086 qla2x00_wait_for_loop_ready(ha);
1087 }
1088
1089 if (ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -05001090 list_for_each_entry(fcport, &ha->fcports, list) {
1091 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 continue;
1093
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001094 ret = qla2x00_device_reset(ha, fcport);
1095 if (ret != QLA_SUCCESS) {
1096 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1097 "target_reset=%d d_id=%x.\n", __func__,
1098 ha->host_no, ret, fcport->d_id.b24));
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 }
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /* Issue marker command only when we are going to start the I/O */
1104 ha->marker_needed = 1;
1105
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001106 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
1109/*
1110 * qla2x00_device_reset
1111 * Issue bus device reset message to the target.
1112 *
1113 * Input:
1114 * ha = adapter block pointer.
1115 * t = SCSI ID.
1116 * TARGET_QUEUE_LOCK must be released.
1117 * ADAPTER_STATE_LOCK must be released.
1118 *
1119 * Context:
1120 * Kernel context.
1121 */
1122static int
1123qla2x00_device_reset(scsi_qla_host_t *ha, fc_port_t *reset_fcport)
1124{
1125 /* Abort Target command will clear Reservation */
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001126 return ha->isp_ops->abort_target(reset_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
f4f051e2005-04-17 15:02:26 -05001129static int
1130qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
bdf79622005-04-17 15:06:53 -05001132 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001134 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001135 return -ENXIO;
1136
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001137 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001138
1139 return 0;
1140}
1141
1142static int
1143qla2xxx_slave_configure(struct scsi_device *sdev)
1144{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001145 scsi_qla_host_t *ha = shost_priv(sdev->host);
8482e1182005-04-17 15:04:54 -05001146 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1147
f4f051e2005-04-17 15:02:26 -05001148 if (sdev->tagged_supported)
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001149 scsi_activate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 else
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001151 scsi_deactivate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
8482e1182005-04-17 15:04:54 -05001153 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1154
f4f051e2005-04-17 15:02:26 -05001155 return 0;
1156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
f4f051e2005-04-17 15:02:26 -05001158static void
1159qla2xxx_slave_destroy(struct scsi_device *sdev)
1160{
1161 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001164static int
1165qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1166{
1167 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1168 return sdev->queue_depth;
1169}
1170
1171static int
1172qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1173{
1174 if (sdev->tagged_supported) {
1175 scsi_set_tag_type(sdev, tag_type);
1176 if (tag_type)
1177 scsi_activate_tcq(sdev, sdev->queue_depth);
1178 else
1179 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1180 } else
1181 tag_type = 0;
1182
1183 return tag_type;
1184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186/**
1187 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1188 * @ha: HA context
1189 *
1190 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1191 * supported addressing method.
1192 */
1193static void
1194qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1195{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001196 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001199 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1200 /* Any upper-dword bits set? */
1201 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1202 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1203 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001205 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1206 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001207 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001210
1211 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1212 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001215static void
1216qla2x00_enable_intrs(scsi_qla_host_t *ha)
1217{
1218 unsigned long flags = 0;
1219 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1220
1221 spin_lock_irqsave(&ha->hardware_lock, flags);
1222 ha->interrupts_on = 1;
1223 /* enable risc and host interrupts */
1224 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1225 RD_REG_WORD(&reg->ictrl);
1226 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1227
1228}
1229
1230static void
1231qla2x00_disable_intrs(scsi_qla_host_t *ha)
1232{
1233 unsigned long flags = 0;
1234 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1235
1236 spin_lock_irqsave(&ha->hardware_lock, flags);
1237 ha->interrupts_on = 0;
1238 /* disable risc and host interrupts */
1239 WRT_REG_WORD(&reg->ictrl, 0);
1240 RD_REG_WORD(&reg->ictrl);
1241 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1242}
1243
1244static void
1245qla24xx_enable_intrs(scsi_qla_host_t *ha)
1246{
1247 unsigned long flags = 0;
1248 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1249
1250 spin_lock_irqsave(&ha->hardware_lock, flags);
1251 ha->interrupts_on = 1;
1252 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1253 RD_REG_DWORD(&reg->ictrl);
1254 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1255}
1256
1257static void
1258qla24xx_disable_intrs(scsi_qla_host_t *ha)
1259{
1260 unsigned long flags = 0;
1261 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1262
1263 spin_lock_irqsave(&ha->hardware_lock, flags);
1264 ha->interrupts_on = 0;
1265 WRT_REG_DWORD(&reg->ictrl, 0);
1266 RD_REG_DWORD(&reg->ictrl);
1267 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1268}
1269
1270static struct isp_operations qla2100_isp_ops = {
1271 .pci_config = qla2100_pci_config,
1272 .reset_chip = qla2x00_reset_chip,
1273 .chip_diag = qla2x00_chip_diag,
1274 .config_rings = qla2x00_config_rings,
1275 .reset_adapter = qla2x00_reset_adapter,
1276 .nvram_config = qla2x00_nvram_config,
1277 .update_fw_options = qla2x00_update_fw_options,
1278 .load_risc = qla2x00_load_risc,
1279 .pci_info_str = qla2x00_pci_info_str,
1280 .fw_version_str = qla2x00_fw_version_str,
1281 .intr_handler = qla2100_intr_handler,
1282 .enable_intrs = qla2x00_enable_intrs,
1283 .disable_intrs = qla2x00_disable_intrs,
1284 .abort_command = qla2x00_abort_command,
1285 .abort_target = qla2x00_abort_target,
1286 .fabric_login = qla2x00_login_fabric,
1287 .fabric_logout = qla2x00_fabric_logout,
1288 .calc_req_entries = qla2x00_calc_iocbs_32,
1289 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1290 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1291 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1292 .read_nvram = qla2x00_read_nvram_data,
1293 .write_nvram = qla2x00_write_nvram_data,
1294 .fw_dump = qla2100_fw_dump,
1295 .beacon_on = NULL,
1296 .beacon_off = NULL,
1297 .beacon_blink = NULL,
1298 .read_optrom = qla2x00_read_optrom_data,
1299 .write_optrom = qla2x00_write_optrom_data,
1300 .get_flash_version = qla2x00_get_flash_version,
1301};
1302
1303static struct isp_operations qla2300_isp_ops = {
1304 .pci_config = qla2300_pci_config,
1305 .reset_chip = qla2x00_reset_chip,
1306 .chip_diag = qla2x00_chip_diag,
1307 .config_rings = qla2x00_config_rings,
1308 .reset_adapter = qla2x00_reset_adapter,
1309 .nvram_config = qla2x00_nvram_config,
1310 .update_fw_options = qla2x00_update_fw_options,
1311 .load_risc = qla2x00_load_risc,
1312 .pci_info_str = qla2x00_pci_info_str,
1313 .fw_version_str = qla2x00_fw_version_str,
1314 .intr_handler = qla2300_intr_handler,
1315 .enable_intrs = qla2x00_enable_intrs,
1316 .disable_intrs = qla2x00_disable_intrs,
1317 .abort_command = qla2x00_abort_command,
1318 .abort_target = qla2x00_abort_target,
1319 .fabric_login = qla2x00_login_fabric,
1320 .fabric_logout = qla2x00_fabric_logout,
1321 .calc_req_entries = qla2x00_calc_iocbs_32,
1322 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1323 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1324 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1325 .read_nvram = qla2x00_read_nvram_data,
1326 .write_nvram = qla2x00_write_nvram_data,
1327 .fw_dump = qla2300_fw_dump,
1328 .beacon_on = qla2x00_beacon_on,
1329 .beacon_off = qla2x00_beacon_off,
1330 .beacon_blink = qla2x00_beacon_blink,
1331 .read_optrom = qla2x00_read_optrom_data,
1332 .write_optrom = qla2x00_write_optrom_data,
1333 .get_flash_version = qla2x00_get_flash_version,
1334};
1335
1336static struct isp_operations qla24xx_isp_ops = {
1337 .pci_config = qla24xx_pci_config,
1338 .reset_chip = qla24xx_reset_chip,
1339 .chip_diag = qla24xx_chip_diag,
1340 .config_rings = qla24xx_config_rings,
1341 .reset_adapter = qla24xx_reset_adapter,
1342 .nvram_config = qla24xx_nvram_config,
1343 .update_fw_options = qla24xx_update_fw_options,
1344 .load_risc = qla24xx_load_risc,
1345 .pci_info_str = qla24xx_pci_info_str,
1346 .fw_version_str = qla24xx_fw_version_str,
1347 .intr_handler = qla24xx_intr_handler,
1348 .enable_intrs = qla24xx_enable_intrs,
1349 .disable_intrs = qla24xx_disable_intrs,
1350 .abort_command = qla24xx_abort_command,
1351 .abort_target = qla24xx_abort_target,
1352 .fabric_login = qla24xx_login_fabric,
1353 .fabric_logout = qla24xx_fabric_logout,
1354 .calc_req_entries = NULL,
1355 .build_iocbs = NULL,
1356 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1357 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1358 .read_nvram = qla24xx_read_nvram_data,
1359 .write_nvram = qla24xx_write_nvram_data,
1360 .fw_dump = qla24xx_fw_dump,
1361 .beacon_on = qla24xx_beacon_on,
1362 .beacon_off = qla24xx_beacon_off,
1363 .beacon_blink = qla24xx_beacon_blink,
1364 .read_optrom = qla24xx_read_optrom_data,
1365 .write_optrom = qla24xx_write_optrom_data,
1366 .get_flash_version = qla24xx_get_flash_version,
1367};
1368
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001369static struct isp_operations qla25xx_isp_ops = {
1370 .pci_config = qla25xx_pci_config,
1371 .reset_chip = qla24xx_reset_chip,
1372 .chip_diag = qla24xx_chip_diag,
1373 .config_rings = qla24xx_config_rings,
1374 .reset_adapter = qla24xx_reset_adapter,
1375 .nvram_config = qla24xx_nvram_config,
1376 .update_fw_options = qla24xx_update_fw_options,
1377 .load_risc = qla24xx_load_risc,
1378 .pci_info_str = qla24xx_pci_info_str,
1379 .fw_version_str = qla24xx_fw_version_str,
1380 .intr_handler = qla24xx_intr_handler,
1381 .enable_intrs = qla24xx_enable_intrs,
1382 .disable_intrs = qla24xx_disable_intrs,
1383 .abort_command = qla24xx_abort_command,
1384 .abort_target = qla24xx_abort_target,
1385 .fabric_login = qla24xx_login_fabric,
1386 .fabric_logout = qla24xx_fabric_logout,
1387 .calc_req_entries = NULL,
1388 .build_iocbs = NULL,
1389 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1390 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1391 .read_nvram = qla25xx_read_nvram_data,
1392 .write_nvram = qla25xx_write_nvram_data,
1393 .fw_dump = qla25xx_fw_dump,
1394 .beacon_on = qla24xx_beacon_on,
1395 .beacon_off = qla24xx_beacon_off,
1396 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001397 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001398 .write_optrom = qla24xx_write_optrom_data,
1399 .get_flash_version = qla24xx_get_flash_version,
1400};
1401
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001402static inline void
1403qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1404{
1405 ha->device_type = DT_EXTENDED_IDS;
1406 switch (ha->pdev->device) {
1407 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1408 ha->device_type |= DT_ISP2100;
1409 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001410 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001411 break;
1412 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1413 ha->device_type |= DT_ISP2200;
1414 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001415 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001416 break;
1417 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1418 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001419 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001420 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001421 break;
1422 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1423 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001424 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001425 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001426 break;
1427 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1428 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001429 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001430 if (ha->pdev->subsystem_vendor == 0x1028 &&
1431 ha->pdev->subsystem_device == 0x0170)
1432 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001433 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001434 break;
1435 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1436 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001437 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001438 break;
1439 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1440 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001441 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001442 break;
1443 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1444 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001445 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001446 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001447 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001448 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001449 break;
1450 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1451 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001452 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001453 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001454 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001455 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001456 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001457 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1458 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001459 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001460 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001461 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001462 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1463 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001464 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001465 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001466 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001467 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1468 ha->device_type |= DT_ISP2532;
1469 ha->device_type |= DT_ZIO_SUPPORTED;
1470 ha->device_type |= DT_FWI2;
1471 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001472 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1473 break;
1474 }
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477static int
1478qla2x00_iospace_config(scsi_qla_host_t *ha)
1479{
1480 unsigned long pio, pio_len, pio_flags;
1481 unsigned long mmio, mmio_len, mmio_flags;
1482
1483 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1484 pio = pci_resource_start(ha->pdev, 0);
1485 pio_len = pci_resource_len(ha->pdev, 0);
1486 pio_flags = pci_resource_flags(ha->pdev, 0);
1487 if (pio_flags & IORESOURCE_IO) {
1488 if (pio_len < MIN_IOBASE_LEN) {
1489 qla_printk(KERN_WARNING, ha,
1490 "Invalid PCI I/O region size (%s)...\n",
1491 pci_name(ha->pdev));
1492 pio = 0;
1493 }
1494 } else {
1495 qla_printk(KERN_WARNING, ha,
1496 "region #0 not a PIO resource (%s)...\n",
1497 pci_name(ha->pdev));
1498 pio = 0;
1499 }
1500
1501 /* Use MMIO operations for all accesses. */
1502 mmio = pci_resource_start(ha->pdev, 1);
1503 mmio_len = pci_resource_len(ha->pdev, 1);
1504 mmio_flags = pci_resource_flags(ha->pdev, 1);
1505
1506 if (!(mmio_flags & IORESOURCE_MEM)) {
1507 qla_printk(KERN_ERR, ha,
1508 "region #0 not an MMIO resource (%s), aborting\n",
1509 pci_name(ha->pdev));
1510 goto iospace_error_exit;
1511 }
1512 if (mmio_len < MIN_IOBASE_LEN) {
1513 qla_printk(KERN_ERR, ha,
1514 "Invalid PCI mem region size (%s), aborting\n",
1515 pci_name(ha->pdev));
1516 goto iospace_error_exit;
1517 }
1518
Andrew Vasquezcb630672006-05-17 15:09:45 -07001519 if (pci_request_regions(ha->pdev, QLA2XXX_DRIVER_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 qla_printk(KERN_WARNING, ha,
1521 "Failed to reserve PIO/MMIO regions (%s)\n",
1522 pci_name(ha->pdev));
1523
1524 goto iospace_error_exit;
1525 }
1526
1527 ha->pio_address = pio;
1528 ha->pio_length = pio_len;
1529 ha->iobase = ioremap(mmio, MIN_IOBASE_LEN);
1530 if (!ha->iobase) {
1531 qla_printk(KERN_ERR, ha,
1532 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1533
1534 goto iospace_error_exit;
1535 }
1536
1537 return (0);
1538
1539iospace_error_exit:
1540 return (-ENOMEM);
1541}
1542
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001543static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001544qla2xxx_scan_start(struct Scsi_Host *shost)
1545{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001546 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001547
1548 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1549 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1550 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1551}
1552
1553static int
1554qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1555{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001556 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001557
1558 if (!ha->host)
1559 return 1;
1560 if (time > ha->loop_reset_delay * HZ)
1561 return 1;
1562
1563 return atomic_read(&ha->loop_state) == LOOP_READY;
1564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566/*
1567 * PCI driver interface
1568 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001569static int __devinit
1570qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001572 int ret = -ENODEV;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001573 device_reg_t __iomem *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 struct Scsi_Host *host;
1575 scsi_qla_host_t *ha;
1576 unsigned long flags = 0;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001577 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001579 struct scsi_host_template *sht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 if (pci_enable_device(pdev))
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001582 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Seokmann Ju14e660e2007-09-20 14:07:36 -07001584 if (pci_find_aer_capability(pdev))
1585 if (pci_enable_pcie_error_reporting(pdev))
1586 goto probe_out;
1587
Andrew Vasquez54333832005-11-09 15:49:04 -08001588 sht = &qla2x00_driver_template;
1589 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
Andrew Vasquez8bc69e72006-12-13 19:20:29 -08001590 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
1591 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001592 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
1593 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532)
Andrew Vasquez54333832005-11-09 15:49:04 -08001594 sht = &qla24xx_driver_template;
1595 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (host == NULL) {
1597 printk(KERN_WARNING
1598 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1599 goto probe_disable_device;
1600 }
1601
1602 /* Clear our data area */
Andrew Vasquezf363b942007-09-20 14:07:45 -07001603 ha = shost_priv(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 memset(ha, 0, sizeof(scsi_qla_host_t));
1605
1606 ha->pdev = pdev;
1607 ha->host = host;
1608 ha->host_no = host->host_no;
Andrew Vasquezcb630672006-05-17 15:09:45 -07001609 sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001610 ha->parent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001612 /* Set ISP-type information. */
1613 qla2x00_set_isp_flags(ha);
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /* Configure PCI I/O space */
1616 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001617 if (ret)
1618 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001621 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1622 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 spin_lock_init(&ha->hardware_lock);
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001627 ha->init_cb_size = sizeof(init_cb_t);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001628 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001629 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001630 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001632 ha->max_q_depth = MAX_Q_DEPTH;
1633 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1634 ha->max_q_depth = ql2xmaxqdepth;
1635
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001636 /* Assign ISP specific operations. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001638 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1640 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1641 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1642 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1643 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001644 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001645 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001647 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1649 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1650 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1651 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001652 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001653 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001654 } else if (IS_QLA23XX(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001655 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1657 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1658 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1659 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001660 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001661 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1662 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001663 ha->isp_ops = &qla2300_isp_ops;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001664 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001665 host->max_id = MAX_TARGETS_2200;
1666 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1667 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1668 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1669 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001670 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1671 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001672 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001673 ha->optrom_size = OPTROM_SIZE_24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001674 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001675 } else if (IS_QLA25XX(ha)) {
1676 host->max_id = MAX_TARGETS_2200;
1677 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1678 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1679 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1680 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1681 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1682 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
1683 ha->gid_list_info_size = 8;
1684 ha->optrom_size = OPTROM_SIZE_25XX;
1685 ha->isp_ops = &qla25xx_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687 host->can_queue = ha->request_q_length + 128;
1688
1689 /* load the F/W, read paramaters, and init the H/W */
1690 ha->instance = num_hosts;
1691
1692 init_MUTEX(&ha->mbx_cmd_sem);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001693 init_MUTEX(&ha->vport_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 init_MUTEX_LOCKED(&ha->mbx_intr_sem);
1695
1696 INIT_LIST_HEAD(&ha->list);
1697 INIT_LIST_HEAD(&ha->fcports);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001698 INIT_LIST_HEAD(&ha->vp_list);
1699
1700 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 qla2x00_config_dma_addressing(ha);
1703 if (qla2x00_mem_alloc(ha)) {
1704 qla_printk(KERN_WARNING, ha,
1705 "[ERROR] Failed to allocate memory for adapter\n");
1706
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001707 ret = -ENOMEM;
1708 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710
Andrew Vasquez765140b2007-05-07 07:42:58 -07001711 if (qla2x00_initialize_adapter(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 qla_printk(KERN_WARNING, ha,
1713 "Failed to initialize adapter\n");
1714
1715 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1716 "Adapter flags %x.\n",
1717 ha->host_no, ha->device_flags));
1718
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001719 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 goto probe_failed;
1721 }
1722
1723 /*
1724 * Startup the kernel thread for this host adapter
1725 */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001726 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1727 "%s_dpc", ha->host_str);
1728 if (IS_ERR(ha->dpc_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 qla_printk(KERN_WARNING, ha,
1730 "Unable to start DPC thread!\n");
Christoph Hellwig39a11242006-02-14 18:46:22 +01001731 ret = PTR_ERR(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 goto probe_failed;
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001735 host->this_id = 255;
1736 host->cmd_per_lun = 3;
1737 host->unique_id = ha->instance;
1738 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07001739 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001740 host->max_lun = MAX_LUNS;
1741 host->transportt = qla2xxx_transport_template;
1742
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001743 ret = qla2x00_request_irqs(ha);
1744 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 /* Initialized the timer */
1748 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1749
1750 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1751 ha->host_no, ha));
1752
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001753 ha->isp_ops->disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquezfca29702005-07-06 10:31:47 -07001756 reg = ha->iobase;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001757 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001758 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_HOST_INT);
1759 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_RISC_INT);
1760 } else {
1761 WRT_REG_WORD(&reg->isp.semaphore, 0);
1762 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_RISC_INT);
1763 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_HOST_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Andrew Vasquezfca29702005-07-06 10:31:47 -07001765 /* Enable proper parity */
1766 if (!IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1767 if (IS_QLA2300(ha))
1768 /* SRAM parity */
1769 WRT_REG_WORD(&reg->isp.hccr,
1770 (HCCR_ENABLE_PARITY + 0x1));
1771 else
1772 /* SRAM, Instruction RAM and GP RAM parity */
1773 WRT_REG_WORD(&reg->isp.hccr,
1774 (HCCR_ENABLE_PARITY + 0x7));
1775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1778
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001779 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001781 pci_set_drvdata(pdev, ha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 ha->flags.init_done = 1;
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001784 ha->flags.online = 1;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 num_hosts++;
1787
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001788 ret = scsi_add_host(host, &pdev->dev);
1789 if (ret)
1790 goto probe_failed;
1791
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001792 scsi_scan_host(host);
1793
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001794 qla2x00_alloc_sysfs_attr(ha);
1795
1796 qla2x00_init_host_attr(ha);
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 qla_printk(KERN_INFO, ha, "\n"
1799 " QLogic Fibre Channel HBA Driver: %s\n"
1800 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001801 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1802 qla2x00_version_str, ha->model_number,
1803 ha->model_desc ? ha->model_desc: "", pdev->device,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001804 ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
Andrew Vasquez54333832005-11-09 15:49:04 -08001805 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001806 ha->isp_ops->fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return 0;
1809
1810probe_failed:
1811 qla2x00_free_device(ha);
1812
1813 scsi_host_put(host);
1814
1815probe_disable_device:
1816 pci_disable_device(pdev);
1817
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001818probe_out:
1819 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001822static void __devexit
1823qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 scsi_qla_host_t *ha;
1826
1827 ha = pci_get_drvdata(pdev);
1828
8482e1182005-04-17 15:04:54 -05001829 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
bdf79622005-04-17 15:06:53 -05001831 fc_remove_host(ha->host);
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 scsi_remove_host(ha->host);
1834
1835 qla2x00_free_device(ha);
1836
1837 scsi_host_put(ha->host);
1838
Bernhard Walle665db932007-03-28 00:49:49 +02001839 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 pci_set_drvdata(pdev, NULL);
1841}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843static void
1844qla2x00_free_device(scsi_qla_host_t *ha)
1845{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 /* Disable timer */
1847 if (ha->timer_active)
1848 qla2x00_stop_timer(ha);
1849
1850 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001851 if (ha->dpc_thread) {
1852 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Christoph Hellwig39a11242006-02-14 18:46:22 +01001854 /*
1855 * qla2xxx_wake_dpc checks for ->dpc_thread
1856 * so we need to zero it out.
1857 */
1858 ha->dpc_thread = NULL;
1859 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001862 if (ha->eft)
1863 qla2x00_trace_control(ha, TC_DISABLE, 0, 0);
1864
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001865 ha->flags.online = 0;
1866
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001867 /* Stop currently executing firmware. */
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001868 qla2x00_try_to_stop_firmware(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001870 /* turn-off interrupts on the card */
1871 if (ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001872 ha->isp_ops->disable_intrs(ha);
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001873
1874 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001876 qla2x00_free_irqs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 /* release io space registers */
1879 if (ha->iobase)
1880 iounmap(ha->iobase);
1881 pci_release_regions(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001884static inline void
1885qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1886 int defer)
1887{
1888 unsigned long flags;
1889 struct fc_rport *rport;
1890
1891 if (!fcport->rport)
1892 return;
1893
1894 rport = fcport->rport;
1895 if (defer) {
1896 spin_lock_irqsave(&fcport->rport_lock, flags);
1897 fcport->drport = rport;
1898 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001899 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001900 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1901 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1902 } else {
1903 spin_lock_irqsave(&fcport->rport_lock, flags);
1904 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001905 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001906 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1907 fc_remote_port_delete(rport);
1908 }
1909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1913 *
1914 * Input: ha = adapter block pointer. fcport = port structure pointer.
1915 *
1916 * Return: None.
1917 *
1918 * Context:
1919 */
1920void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001921 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001923 if (atomic_read(&fcport->state) == FCS_ONLINE &&
1924 ha->vp_idx == fcport->vp_idx)
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001925 qla2x00_schedule_rport_del(ha, fcport, defer);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001926
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001927 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * We may need to retry the login, so don't change the state of the
1929 * port but do the retries.
1930 */
1931 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1932 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1933
1934 if (!do_login)
1935 return;
1936
1937 if (fcport->login_retry == 0) {
1938 fcport->login_retry = ha->login_retry_count;
1939 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1940
1941 DEBUG(printk("scsi(%ld): Port login retry: "
1942 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1943 "id = 0x%04x retry cnt=%d\n",
1944 ha->host_no,
1945 fcport->port_name[0],
1946 fcport->port_name[1],
1947 fcport->port_name[2],
1948 fcport->port_name[3],
1949 fcport->port_name[4],
1950 fcport->port_name[5],
1951 fcport->port_name[6],
1952 fcport->port_name[7],
1953 fcport->loop_id,
1954 fcport->login_retry));
1955 }
1956}
1957
1958/*
1959 * qla2x00_mark_all_devices_lost
1960 * Updates fcport state when device goes offline.
1961 *
1962 * Input:
1963 * ha = adapter block pointer.
1964 * fcport = port structure pointer.
1965 *
1966 * Return:
1967 * None.
1968 *
1969 * Context:
1970 */
1971void
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001972qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 fc_port_t *fcport;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001975 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001977 list_for_each_entry(fcport, &pha->fcports, list) {
1978 if (ha->vp_idx != 0 && ha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /*
1981 * No point in marking the device as lost, if the device is
1982 * already DEAD.
1983 */
1984 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1985 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001986 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1987 if (defer)
1988 qla2x00_schedule_rport_del(ha, fcport, defer);
1989 else if (ha->vp_idx == fcport->vp_idx)
1990 qla2x00_schedule_rport_del(ha, fcport, defer);
1991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1993 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001994
Christoph Hellwig39a11242006-02-14 18:46:22 +01001995 if (defer)
1996 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
1999/*
2000* qla2x00_mem_alloc
2001* Allocates adapter memory.
2002*
2003* Returns:
2004* 0 = success.
2005* 1 = failure.
2006*/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002007uint8_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008qla2x00_mem_alloc(scsi_qla_host_t *ha)
2009{
2010 char name[16];
2011 uint8_t status = 1;
2012 int retry= 10;
2013
2014 do {
2015 /*
2016 * This will loop only once if everything goes well, else some
2017 * number of retries will be performed to get around a kernel
2018 * bug where available mem is not allocated until after a
2019 * little delay and a retry.
2020 */
2021 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
2022 (ha->request_q_length + 1) * sizeof(request_t),
2023 &ha->request_dma, GFP_KERNEL);
2024 if (ha->request_ring == NULL) {
2025 qla_printk(KERN_WARNING, ha,
2026 "Memory Allocation failed - request_ring\n");
2027
2028 qla2x00_mem_free(ha);
2029 msleep(100);
2030
2031 continue;
2032 }
2033
2034 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
2035 (ha->response_q_length + 1) * sizeof(response_t),
2036 &ha->response_dma, GFP_KERNEL);
2037 if (ha->response_ring == NULL) {
2038 qla_printk(KERN_WARNING, ha,
2039 "Memory Allocation failed - response_ring\n");
2040
2041 qla2x00_mem_free(ha);
2042 msleep(100);
2043
2044 continue;
2045 }
2046
2047 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2048 &ha->gid_list_dma, GFP_KERNEL);
2049 if (ha->gid_list == NULL) {
2050 qla_printk(KERN_WARNING, ha,
2051 "Memory Allocation failed - gid_list\n");
2052
2053 qla2x00_mem_free(ha);
2054 msleep(100);
2055
2056 continue;
2057 }
2058
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002059 /* get consistent memory allocated for init control block */
2060 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev,
2061 ha->init_cb_size, &ha->init_cb_dma, GFP_KERNEL);
2062 if (ha->init_cb == NULL) {
2063 qla_printk(KERN_WARNING, ha,
2064 "Memory Allocation failed - init_cb\n");
2065
2066 qla2x00_mem_free(ha);
2067 msleep(100);
2068
2069 continue;
2070 }
2071 memset(ha->init_cb, 0, ha->init_cb_size);
2072
Andrew Vasquezcb630672006-05-17 15:09:45 -07002073 snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
2074 ha->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2076 DMA_POOL_SIZE, 8, 0);
2077 if (ha->s_dma_pool == NULL) {
2078 qla_printk(KERN_WARNING, ha,
2079 "Memory Allocation failed - s_dma_pool\n");
2080
2081 qla2x00_mem_free(ha);
2082 msleep(100);
2083
2084 continue;
2085 }
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (qla2x00_allocate_sp_pool(ha)) {
2088 qla_printk(KERN_WARNING, ha,
2089 "Memory Allocation failed - "
2090 "qla2x00_allocate_sp_pool()\n");
2091
2092 qla2x00_mem_free(ha);
2093 msleep(100);
2094
2095 continue;
2096 }
2097
2098 /* Allocate memory for SNS commands */
2099 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2100 /* Get consistent memory allocated for SNS commands */
2101 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
2102 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma,
2103 GFP_KERNEL);
2104 if (ha->sns_cmd == NULL) {
2105 /* error */
2106 qla_printk(KERN_WARNING, ha,
2107 "Memory Allocation failed - sns_cmd\n");
2108
2109 qla2x00_mem_free(ha);
2110 msleep(100);
2111
2112 continue;
2113 }
2114 memset(ha->sns_cmd, 0, sizeof(struct sns_cmd_pkt));
2115 } else {
2116 /* Get consistent memory allocated for MS IOCB */
2117 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2118 &ha->ms_iocb_dma);
2119 if (ha->ms_iocb == NULL) {
2120 /* error */
2121 qla_printk(KERN_WARNING, ha,
2122 "Memory Allocation failed - ms_iocb\n");
2123
2124 qla2x00_mem_free(ha);
2125 msleep(100);
2126
2127 continue;
2128 }
2129 memset(ha->ms_iocb, 0, sizeof(ms_iocb_entry_t));
2130
2131 /*
2132 * Get consistent memory allocated for CT SNS
2133 * commands
2134 */
2135 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
2136 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma,
2137 GFP_KERNEL);
2138 if (ha->ct_sns == NULL) {
2139 /* error */
2140 qla_printk(KERN_WARNING, ha,
2141 "Memory Allocation failed - ct_sns\n");
2142
2143 qla2x00_mem_free(ha);
2144 msleep(100);
2145
2146 continue;
2147 }
2148 memset(ha->ct_sns, 0, sizeof(struct ct_sns_pkt));
Andrew Vasquez88729e52006-06-23 16:10:50 -07002149
Andrew Vasqueze4289242007-07-19 15:05:56 -07002150 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez88729e52006-06-23 16:10:50 -07002151 /*
2152 * Get consistent memory allocated for SFP
2153 * block.
2154 */
2155 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool,
2156 GFP_KERNEL, &ha->sfp_data_dma);
2157 if (ha->sfp_data == NULL) {
2158 qla_printk(KERN_WARNING, ha,
2159 "Memory Allocation failed - "
2160 "sfp_data\n");
2161
2162 qla2x00_mem_free(ha);
2163 msleep(100);
2164
2165 continue;
2166 }
2167 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
2168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
Seokmann Ju53772a22007-07-30 11:01:07 -07002171 /* Get memory for cached NVRAM */
2172 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2173 if (ha->nvram == NULL) {
2174 /* error */
2175 qla_printk(KERN_WARNING, ha,
2176 "Memory Allocation failed - nvram cache\n");
2177
2178 qla2x00_mem_free(ha);
2179 msleep(100);
2180
2181 continue;
2182 }
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 /* Done all allocations without any error. */
2185 status = 0;
2186
2187 } while (retry-- && status != 0);
2188
2189 if (status) {
2190 printk(KERN_WARNING
2191 "%s(): **** FAILED ****\n", __func__);
2192 }
2193
2194 return(status);
2195}
2196
2197/*
2198* qla2x00_mem_free
2199* Frees all adapter allocated memory.
2200*
2201* Input:
2202* ha = adapter block pointer.
2203*/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002204void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205qla2x00_mem_free(scsi_qla_host_t *ha)
2206{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 struct list_head *fcpl, *fcptemp;
2208 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 if (ha == NULL) {
2211 /* error */
2212 DEBUG2(printk("%s(): ERROR invalid ha pointer.\n", __func__));
2213 return;
2214 }
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 /* free sp pool */
2217 qla2x00_free_sp_pool(ha);
2218
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002219 if (ha->fw_dump) {
2220 if (ha->eft)
2221 dma_free_coherent(&ha->pdev->dev,
2222 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2223 vfree(ha->fw_dump);
2224 }
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (ha->sns_cmd)
2227 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2228 ha->sns_cmd, ha->sns_cmd_dma);
2229
2230 if (ha->ct_sns)
2231 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2232 ha->ct_sns, ha->ct_sns_dma);
2233
Andrew Vasquez88729e52006-06-23 16:10:50 -07002234 if (ha->sfp_data)
2235 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (ha->ms_iocb)
2238 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (ha->s_dma_pool)
2241 dma_pool_destroy(ha->s_dma_pool);
2242
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002243 if (ha->init_cb)
2244 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2245 ha->init_cb, ha->init_cb_dma);
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (ha->gid_list)
2248 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2249 ha->gid_list_dma);
2250
2251 if (ha->response_ring)
2252 dma_free_coherent(&ha->pdev->dev,
2253 (ha->response_q_length + 1) * sizeof(response_t),
2254 ha->response_ring, ha->response_dma);
2255
2256 if (ha->request_ring)
2257 dma_free_coherent(&ha->pdev->dev,
2258 (ha->request_q_length + 1) * sizeof(request_t),
2259 ha->request_ring, ha->request_dma);
2260
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002261 ha->eft = NULL;
2262 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 ha->sns_cmd = NULL;
2264 ha->sns_cmd_dma = 0;
2265 ha->ct_sns = NULL;
2266 ha->ct_sns_dma = 0;
2267 ha->ms_iocb = NULL;
2268 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 ha->init_cb = NULL;
2270 ha->init_cb_dma = 0;
2271
2272 ha->s_dma_pool = NULL;
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 ha->gid_list = NULL;
2275 ha->gid_list_dma = 0;
2276
2277 ha->response_ring = NULL;
2278 ha->response_dma = 0;
2279 ha->request_ring = NULL;
2280 ha->request_dma = 0;
2281
2282 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2283 fcport = list_entry(fcpl, fc_port_t, list);
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 /* fc ports */
2286 list_del_init(&fcport->list);
2287 kfree(fcport);
2288 }
2289 INIT_LIST_HEAD(&ha->fcports);
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002292 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 ha->fw_dump_reading = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002294
2295 vfree(ha->optrom_buffer);
Seokmann Ju53772a22007-07-30 11:01:07 -07002296 kfree(ha->nvram);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298
2299/*
2300 * qla2x00_allocate_sp_pool
2301 * This routine is called during initialization to allocate
2302 * memory for local srb_t.
2303 *
2304 * Input:
2305 * ha = adapter block pointer.
2306 *
2307 * Context:
2308 * Kernel context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 */
2310static int
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002311qla2x00_allocate_sp_pool(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
2313 int rval;
2314
2315 rval = QLA_SUCCESS;
Matthew Dobson93d23412006-03-26 01:37:50 -08002316 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (ha->srb_mempool == NULL) {
2318 qla_printk(KERN_INFO, ha, "Unable to allocate SRB mempool.\n");
2319 rval = QLA_FUNCTION_FAILED;
2320 }
2321 return (rval);
2322}
2323
2324/*
2325 * This routine frees all adapter allocated memory.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002326 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 */
2328static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002329qla2x00_free_sp_pool( scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
2331 if (ha->srb_mempool) {
2332 mempool_destroy(ha->srb_mempool);
2333 ha->srb_mempool = NULL;
2334 }
2335}
2336
2337/**************************************************************************
2338* qla2x00_do_dpc
2339* This kernel thread is a task that is schedule by the interrupt handler
2340* to perform the background processing for interrupts.
2341*
2342* Notes:
2343* This task always run in the context of a kernel thread. It
2344* is kick-off by the driver's detect code and starts up
2345* up one per adapter. It immediately goes to sleep and waits for
2346* some fibre event. When either the interrupt handler or
2347* the timer routine detects a event it will one of the task
2348* bits then wake us up.
2349**************************************************************************/
2350static int
2351qla2x00_do_dpc(void *data)
2352{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002353 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 scsi_qla_host_t *ha;
2355 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 uint16_t next_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 ha = (scsi_qla_host_t *)data;
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 set_user_nice(current, -20);
2362
Christoph Hellwig39a11242006-02-14 18:46:22 +01002363 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2365
Christoph Hellwig39a11242006-02-14 18:46:22 +01002366 set_current_state(TASK_INTERRUPTIBLE);
2367 schedule();
2368 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2371
2372 /* Initialization not yet finished. Don't do anything yet. */
Christoph Hellwig39a11242006-02-14 18:46:22 +01002373 if (!ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 continue;
2375
2376 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2377
2378 ha->dpc_active = 1;
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 ha->dpc_active = 0;
2382 continue;
2383 }
2384
2385 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2386
2387 DEBUG(printk("scsi(%ld): dpc: sched "
2388 "qla2x00_abort_isp ha = %p\n",
2389 ha->host_no, ha));
2390 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2391 &ha->dpc_flags))) {
2392
2393 if (qla2x00_abort_isp(ha)) {
2394 /* failed. retry later */
2395 set_bit(ISP_ABORT_NEEDED,
2396 &ha->dpc_flags);
2397 }
2398 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2399 }
2400 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2401 ha->host_no));
2402 }
2403
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002404 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2405 qla2x00_update_fcports(ha);
2406
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002407 if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) {
2408 DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n",
2409 ha->host_no));
2410 qla2x00_loop_reset(ha);
2411 }
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2414 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2415
2416 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2417 ha->host_no));
2418
2419 qla2x00_rst_aen(ha);
2420 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2421 }
2422
2423 /* Retry each device up to login retry count */
2424 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2425 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2426 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2427
2428 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2429 ha->host_no));
2430
2431 next_loopid = 0;
2432 list_for_each_entry(fcport, &ha->fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 /*
2434 * If the port is not ONLINE then try to login
2435 * to it if we haven't run out of retries.
2436 */
2437 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2438 fcport->login_retry) {
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 if (fcport->flags & FCF_FABRIC_DEVICE) {
2441 if (fcport->flags &
2442 FCF_TAPE_PRESENT)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002443 ha->isp_ops->fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002444 ha, fcport->loop_id,
2445 fcport->d_id.b.domain,
2446 fcport->d_id.b.area,
2447 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 status = qla2x00_fabric_login(
2449 ha, fcport, &next_loopid);
2450 } else
2451 status =
2452 qla2x00_local_device_login(
andrew.vasquez@qlogic.com9a52a57c2006-03-09 14:27:44 -08002453 ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Ravi Anand63a86512007-09-20 14:07:40 -07002455 fcport->login_retry--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (status == QLA_SUCCESS) {
2457 fcport->old_loop_id = fcport->loop_id;
2458
2459 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2460 ha->host_no, fcport->loop_id));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002461
andrew.vasquez@qlogic.com052c40c2006-01-20 14:53:19 -08002462 qla2x00_update_fcport(ha,
2463 fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 } else if (status == 1) {
2465 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2466 /* retry the login again */
2467 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2468 ha->host_no,
2469 fcport->login_retry, fcport->loop_id));
2470 } else {
2471 fcport->login_retry = 0;
2472 }
Ravi Anand63a86512007-09-20 14:07:40 -07002473 if (fcport->login_retry == 0)
2474 fcport->loop_id = FC_NO_LOOP_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2477 break;
2478 }
2479 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2480 ha->host_no));
2481 }
2482
2483 if ((test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags)) &&
2484 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2485
2486 clear_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags);
2487 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2488 ha->host_no));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2491
2492 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2493 ha->host_no));
2494 }
2495
2496 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2497
2498 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2499 ha->host_no));
2500
2501 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2502 &ha->dpc_flags))) {
2503
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002504 rval = qla2x00_loop_resync(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2507 }
2508
2509 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2510 ha->host_no));
2511 }
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED, &ha->dpc_flags)) {
2514
2515 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2516 ha->host_no));
2517
2518 qla2x00_rescan_fcports(ha);
2519
2520 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2521 "end.\n",
2522 ha->host_no));
2523 }
2524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002526 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002528 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002529 ha->isp_ops->beacon_blink(ha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002530
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002531 qla2x00_do_dpc_all_vps(ha);
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 ha->dpc_active = 0;
2534 } /* End of while(1) */
2535
2536 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2537
2538 /*
2539 * Make sure that nobody tries to wake us up again.
2540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 ha->dpc_active = 0;
2542
Christoph Hellwig39a11242006-02-14 18:46:22 +01002543 return 0;
2544}
2545
2546void
2547qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2548{
2549 if (ha->dpc_thread)
2550 wake_up_process(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
2552
2553/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554* qla2x00_rst_aen
2555* Processes asynchronous reset.
2556*
2557* Input:
2558* ha = adapter block pointer.
2559*/
2560static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002561qla2x00_rst_aen(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
2563 if (ha->flags.online && !ha->flags.reset_active &&
2564 !atomic_read(&ha->loop_down_timer) &&
2565 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2566 do {
2567 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2568
2569 /*
2570 * Issue marker command only when we are going to start
2571 * the I/O.
2572 */
2573 ha->marker_needed = 1;
2574 } while (!atomic_read(&ha->loop_down_timer) &&
2575 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2576 }
2577}
2578
f4f051e2005-04-17 15:02:26 -05002579static void
2580qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2581{
2582 struct scsi_cmnd *cmd = sp->cmd;
2583
2584 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09002585 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05002586 sp->flags &= ~SRB_DMA_VALID;
2587 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002588 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002589}
2590
2591void
2592qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2593{
2594 struct scsi_cmnd *cmd = sp->cmd;
2595
2596 qla2x00_sp_free_dma(ha, sp);
2597
f4f051e2005-04-17 15:02:26 -05002598 mempool_free(sp, ha->srb_mempool);
2599
2600 cmd->scsi_done(cmd);
2601}
bdf79622005-04-17 15:06:53 -05002602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603/**************************************************************************
2604* qla2x00_timer
2605*
2606* Description:
2607* One second timer
2608*
2609* Context: Interrupt
2610***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002611void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612qla2x00_timer(scsi_qla_host_t *ha)
2613{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 unsigned long cpu_flags = 0;
2615 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 int start_dpc = 0;
2617 int index;
2618 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002619 int t;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002620 scsi_qla_host_t *pha = to_qla_parent(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 /*
2623 * Ports - Port down timer.
2624 *
2625 * Whenever, a port is in the LOST state we start decrementing its port
2626 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002627 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 */
2629 t = 0;
2630 list_for_each_entry(fcport, &ha->fcports, list) {
2631 if (fcport->port_type != FCT_TARGET)
2632 continue;
2633
2634 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2635
2636 if (atomic_read(&fcport->port_down_timer) == 0)
2637 continue;
2638
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002639 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002643 "%d remaining\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 ha->host_no,
2645 t, atomic_read(&fcport->port_down_timer)));
2646 }
2647 t++;
2648 } /* End of for fcport */
2649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 /* Loop down handler. */
2652 if (atomic_read(&ha->loop_down_timer) > 0 &&
2653 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2654
2655 if (atomic_read(&ha->loop_down_timer) ==
2656 ha->loop_down_abort_time) {
2657
2658 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2659 "queues before time expire\n",
2660 ha->host_no));
2661
2662 if (!IS_QLA2100(ha) && ha->link_down_timeout)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002663 atomic_set(&ha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 /* Schedule an ISP abort to return any tape commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002666 /* NPIV - scan physical port only */
2667 if (!ha->parent) {
2668 spin_lock_irqsave(&ha->hardware_lock,
2669 cpu_flags);
2670 for (index = 1;
2671 index < MAX_OUTSTANDING_COMMANDS;
2672 index++) {
2673 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05002674
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002675 sp = ha->outstanding_cmds[index];
2676 if (!sp)
2677 continue;
2678 sfcp = sp->fcport;
2679 if (!(sfcp->flags & FCF_TAPE_PRESENT))
2680 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002682 set_bit(ISP_ABORT_NEEDED,
2683 &ha->dpc_flags);
2684 break;
2685 }
2686 spin_unlock_irqrestore(&ha->hardware_lock,
2687 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2690 start_dpc++;
2691 }
2692
2693 /* if the loop has been down for 4 minutes, reinit adapter */
2694 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2695 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2696 "restarting queues.\n",
2697 ha->host_no));
2698
2699 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2700 start_dpc++;
2701
2702 if (!(ha->device_flags & DFLG_NO_CABLE)) {
2703 DEBUG(printk("scsi(%ld): Loop down - "
2704 "aborting ISP.\n",
2705 ha->host_no));
2706 qla_printk(KERN_WARNING, ha,
2707 "Loop down - aborting ISP.\n");
2708
2709 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2710 }
2711 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002712 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 ha->host_no,
2714 atomic_read(&ha->loop_down_timer)));
2715 }
2716
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002717 /* Check if beacon LED needs to be blinked */
2718 if (ha->beacon_blink_led == 1) {
2719 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2720 start_dpc++;
2721 }
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 /* Schedule the DPC routine if needed */
2724 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2725 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002726 test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002727 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 start_dpc ||
2729 test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) ||
f4f051e2005-04-17 15:02:26 -05002730 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002731 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002732 test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
Christoph Hellwig39a11242006-02-14 18:46:22 +01002733 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002734 qla2xxx_wake_dpc(pha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2737}
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739/* XXX(hch): crude hack to emulate a down_timeout() */
2740int
2741qla2x00_down_timeout(struct semaphore *sema, unsigned long timeout)
2742{
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002743 const unsigned int step = 100; /* msecs */
2744 unsigned int iterations = jiffies_to_msecs(timeout)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 do {
2747 if (!down_trylock(sema))
2748 return 0;
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002749 if (msleep_interruptible(step))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 break;
Bill Nottingham88f57742007-05-30 04:16:43 -04002751 } while (--iterations > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 return -ETIMEDOUT;
2754}
2755
Andrew Vasquez54333832005-11-09 15:49:04 -08002756/* Firmware interface routines. */
2757
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002758#define FW_BLOBS 6
Andrew Vasquez54333832005-11-09 15:49:04 -08002759#define FW_ISP21XX 0
2760#define FW_ISP22XX 1
2761#define FW_ISP2300 2
2762#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002763#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002764#define FW_ISP25XX 5
Andrew Vasquez54333832005-11-09 15:49:04 -08002765
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002766#define FW_FILE_ISP21XX "ql2100_fw.bin"
2767#define FW_FILE_ISP22XX "ql2200_fw.bin"
2768#define FW_FILE_ISP2300 "ql2300_fw.bin"
2769#define FW_FILE_ISP2322 "ql2322_fw.bin"
2770#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002771#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002772
Andrew Vasquez54333832005-11-09 15:49:04 -08002773static DECLARE_MUTEX(qla_fw_lock);
2774
2775static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002776 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2777 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2778 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2779 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2780 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002781 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002782};
2783
2784struct fw_blob *
2785qla2x00_request_firmware(scsi_qla_host_t *ha)
2786{
2787 struct fw_blob *blob;
2788
2789 blob = NULL;
2790 if (IS_QLA2100(ha)) {
2791 blob = &qla_fw_blobs[FW_ISP21XX];
2792 } else if (IS_QLA2200(ha)) {
2793 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002794 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002795 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002796 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002797 blob = &qla_fw_blobs[FW_ISP2322];
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08002798 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002799 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002800 } else if (IS_QLA25XX(ha)) {
2801 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08002802 }
2803
2804 down(&qla_fw_lock);
2805 if (blob->fw)
2806 goto out;
2807
2808 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2809 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2810 "(%s).\n", ha->host_no, blob->name));
2811 blob->fw = NULL;
2812 blob = NULL;
2813 goto out;
2814 }
2815
2816out:
2817 up(&qla_fw_lock);
2818 return blob;
2819}
2820
2821static void
2822qla2x00_release_firmware(void)
2823{
2824 int idx;
2825
2826 down(&qla_fw_lock);
2827 for (idx = 0; idx < FW_BLOBS; idx++)
2828 if (qla_fw_blobs[idx].fw)
2829 release_firmware(qla_fw_blobs[idx].fw);
2830 up(&qla_fw_lock);
2831}
2832
Seokmann Ju14e660e2007-09-20 14:07:36 -07002833static pci_ers_result_t
2834qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2835{
2836 switch (state) {
2837 case pci_channel_io_normal:
2838 return PCI_ERS_RESULT_CAN_RECOVER;
2839 case pci_channel_io_frozen:
2840 pci_disable_device(pdev);
2841 return PCI_ERS_RESULT_NEED_RESET;
2842 case pci_channel_io_perm_failure:
2843 qla2x00_remove_one(pdev);
2844 return PCI_ERS_RESULT_DISCONNECT;
2845 }
2846 return PCI_ERS_RESULT_NEED_RESET;
2847}
2848
2849static pci_ers_result_t
2850qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2851{
2852 int risc_paused = 0;
2853 uint32_t stat;
2854 unsigned long flags;
2855 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2856 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2857 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2858
2859 spin_lock_irqsave(&ha->hardware_lock, flags);
2860 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2861 stat = RD_REG_DWORD(&reg->hccr);
2862 if (stat & HCCR_RISC_PAUSE)
2863 risc_paused = 1;
2864 } else if (IS_QLA23XX(ha)) {
2865 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2866 if (stat & HSR_RISC_PAUSED)
2867 risc_paused = 1;
2868 } else if (IS_FWI2_CAPABLE(ha)) {
2869 stat = RD_REG_DWORD(&reg24->host_status);
2870 if (stat & HSRX_RISC_PAUSED)
2871 risc_paused = 1;
2872 }
2873 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2874
2875 if (risc_paused) {
2876 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2877 "Dumping firmware!\n");
2878 ha->isp_ops->fw_dump(ha, 0);
2879
2880 return PCI_ERS_RESULT_NEED_RESET;
2881 } else
2882 return PCI_ERS_RESULT_RECOVERED;
2883}
2884
2885static pci_ers_result_t
2886qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2887{
2888 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
2889 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2890
2891 if (pci_enable_device(pdev)) {
2892 qla_printk(KERN_WARNING, ha,
2893 "Can't re-enable PCI device after reset.\n");
2894
2895 return ret;
2896 }
2897 pci_set_master(pdev);
2898
2899 if (ha->isp_ops->pci_config(ha))
2900 return ret;
2901
2902 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2903 if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
2904 ret = PCI_ERS_RESULT_RECOVERED;
2905 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2906
2907 return ret;
2908}
2909
2910static void
2911qla2xxx_pci_resume(struct pci_dev *pdev)
2912{
2913 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2914 int ret;
2915
2916 ret = qla2x00_wait_for_hba_online(ha);
2917 if (ret != QLA_SUCCESS) {
2918 qla_printk(KERN_ERR, ha,
2919 "the device failed to resume I/O "
2920 "from slot/link_reset");
2921 }
2922 pci_cleanup_aer_uncorrect_error_status(pdev);
2923}
2924
2925static struct pci_error_handlers qla2xxx_err_handler = {
2926 .error_detected = qla2xxx_pci_error_detected,
2927 .mmio_enabled = qla2xxx_pci_mmio_enabled,
2928 .slot_reset = qla2xxx_pci_slot_reset,
2929 .resume = qla2xxx_pci_resume,
2930};
2931
Andrew Vasquez54333832005-11-09 15:49:04 -08002932static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002933 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2934 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2935 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2936 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2937 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2938 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2939 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2940 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2941 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
2942 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2943 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002944 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez54333832005-11-09 15:49:04 -08002945 { 0 },
2946};
2947MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2948
Andrew Vasquezfca29702005-07-06 10:31:47 -07002949static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07002950 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06002951 .driver = {
2952 .owner = THIS_MODULE,
2953 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002954 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002955 .probe = qla2x00_probe_one,
2956 .remove = __devexit_p(qla2x00_remove_one),
Seokmann Ju14e660e2007-09-20 14:07:36 -07002957 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07002958};
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960/**
2961 * qla2x00_module_init - Module initialization.
2962 **/
2963static int __init
2964qla2x00_module_init(void)
2965{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002966 int ret = 0;
2967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002969 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09002970 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (srb_cachep == NULL) {
2972 printk(KERN_ERR
2973 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2974 return -ENOMEM;
2975 }
2976
2977 /* Derive version string. */
2978 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002979 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07002980 strcat(qla2x00_version_str, "-debug");
2981
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002982 qla2xxx_transport_template =
2983 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002984 if (!qla2xxx_transport_template) {
2985 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002987 }
2988 qla2xxx_transport_vport_template =
2989 fc_attach_transport(&qla2xxx_transport_vport_functions);
2990 if (!qla2xxx_transport_vport_template) {
2991 kmem_cache_destroy(srb_cachep);
2992 fc_release_transport(qla2xxx_transport_template);
2993 return -ENODEV;
2994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002997 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002998 if (ret) {
2999 kmem_cache_destroy(srb_cachep);
3000 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003001 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07003002 }
3003 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004}
3005
3006/**
3007 * qla2x00_module_exit - Module cleanup.
3008 **/
3009static void __exit
3010qla2x00_module_exit(void)
3011{
Andrew Vasquez7ee61392006-06-23 16:11:22 -07003012 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08003013 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04003014 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003016 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
3019module_init(qla2x00_module_init);
3020module_exit(qla2x00_module_exit);
3021
3022MODULE_AUTHOR("QLogic Corporation");
3023MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
3024MODULE_LICENSE("GPL");
3025MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003026MODULE_FIRMWARE(FW_FILE_ISP21XX);
3027MODULE_FIRMWARE(FW_FILE_ISP22XX);
3028MODULE_FIRMWARE(FW_FILE_ISP2300);
3029MODULE_FIRMWARE(FW_FILE_ISP2322);
3030MODULE_FIRMWARE(FW_FILE_ISP24XX);