blob: d6445ae841ba965896c8993fce3ab38ae899f0e4 [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 */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -040032static int num_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34int ql2xlogintimeout = 20;
35module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
36MODULE_PARM_DESC(ql2xlogintimeout,
37 "Login timeout value in seconds.");
38
8482e1182005-04-17 15:04:54 -050039int qlport_down_retry = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
41MODULE_PARM_DESC(qlport_down_retry,
Jesper Juhl900d9f92006-06-30 02:33:07 -070042 "Maximum number of command retries to a port that returns "
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 "a PORT-DOWN status.");
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045int ql2xplogiabsentdevice;
46module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
47MODULE_PARM_DESC(ql2xplogiabsentdevice,
48 "Option to enable PLOGI to devices that are not present after "
Jesper Juhl900d9f92006-06-30 02:33:07 -070049 "a Fabric scan. This is needed for several broken switches. "
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052int ql2xloginretrycount = 0;
53module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
54MODULE_PARM_DESC(ql2xloginretrycount,
55 "Specify an alternate value for the NVRAM login retry count.");
56
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070057int ql2xallocfwdump = 1;
58module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
59MODULE_PARM_DESC(ql2xallocfwdump,
60 "Option to enable allocation of memory for a firmware dump "
61 "during HBA initialization. Memory allocation requirements "
62 "vary by ISP type. Default is 1 - allocate memory.");
63
Andrew Vasquez11010fe2006-10-06 09:54:59 -070064int ql2xextended_error_logging;
65module_param(ql2xextended_error_logging, int, S_IRUGO|S_IRUSR);
66MODULE_PARM_DESC(ql2xextended_error_logging,
Andrew Vasquez01819442006-06-23 16:11:10 -070067 "Option to enable extended error logging, "
68 "Default is 0 - no logging. 1 - log errors.");
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static void qla2x00_free_device(scsi_qla_host_t *);
71
72static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
73
Andrew Vasquezcca53352005-08-26 19:08:30 -070074int ql2xfdmienable;
75module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
76MODULE_PARM_DESC(ql2xfdmienable,
77 "Enables FDMI registratons "
78 "Default is 0 - no FDMI. 1 - perfom FDMI.");
79
Andrew Vasquezdf7baa52006-10-13 09:33:39 -070080#define MAX_Q_DEPTH 32
81static int ql2xmaxqdepth = MAX_Q_DEPTH;
82module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
83MODULE_PARM_DESC(ql2xmaxqdepth,
84 "Maximum queue depth to report for target devices.");
85
86int ql2xqfullrampup = 120;
87module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(ql2xqfullrampup,
89 "Number of seconds to wait to begin to ramp-up the queue "
90 "depth for a device after a queue-full condition has been "
91 "detected. Default is 120 seconds.");
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070094 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
96static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -050097static int qla2xxx_slave_alloc(struct scsi_device *);
Andrew Vasquez1e99e332006-11-22 08:24:48 -080098static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
99static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051e2005-04-17 15:02:26 -0500100static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
102 void (*fn)(struct scsi_cmnd *));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700103static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
104 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int qla2xxx_eh_abort(struct scsi_cmnd *);
106static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
107static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
108static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
109static int qla2x00_loop_reset(scsi_qla_host_t *ha);
110static int qla2x00_device_reset(scsi_qla_host_t *, fc_port_t *);
111
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700112static int qla2x00_change_queue_depth(struct scsi_device *, int);
113static int qla2x00_change_queue_type(struct scsi_device *, int);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static struct scsi_host_template qla2x00_driver_template = {
116 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700117 .name = QLA2XXX_DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .queuecommand = qla2x00_queuecommand,
119
120 .eh_abort_handler = qla2xxx_eh_abort,
121 .eh_device_reset_handler = qla2xxx_eh_device_reset,
122 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
123 .eh_host_reset_handler = qla2xxx_eh_host_reset,
124
125 .slave_configure = qla2xxx_slave_configure,
126
f4f051e2005-04-17 15:02:26 -0500127 .slave_alloc = qla2xxx_slave_alloc,
128 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800129 .scan_finished = qla2xxx_scan_finished,
130 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700131 .change_queue_depth = qla2x00_change_queue_depth,
132 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .this_id = -1,
134 .cmd_per_lun = 3,
135 .use_clustering = ENABLE_CLUSTERING,
136 .sg_tablesize = SG_ALL,
137
138 /*
139 * The RISC allows for each command to transfer (2^32-1) bytes of data,
140 * which equates to 0x800000 sectors.
141 */
142 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700143 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Andrew Vasquezfca29702005-07-06 10:31:47 -0700146static struct scsi_host_template qla24xx_driver_template = {
147 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700148 .name = QLA2XXX_DRIVER_NAME,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700149 .queuecommand = qla24xx_queuecommand,
150
151 .eh_abort_handler = qla2xxx_eh_abort,
152 .eh_device_reset_handler = qla2xxx_eh_device_reset,
153 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
154 .eh_host_reset_handler = qla2xxx_eh_host_reset,
155
156 .slave_configure = qla2xxx_slave_configure,
157
158 .slave_alloc = qla2xxx_slave_alloc,
159 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700160 .change_queue_depth = qla2x00_change_queue_depth,
161 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700162 .this_id = -1,
163 .cmd_per_lun = 3,
164 .use_clustering = ENABLE_CLUSTERING,
165 .sg_tablesize = SG_ALL,
166
167 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700168 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700169};
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static struct scsi_transport_template *qla2xxx_transport_template = NULL;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/* TODO Convert to inlines
174 *
175 * Timer routines
176 */
177#define WATCH_INTERVAL 1 /* number of seconds */
178
179static void qla2x00_timer(scsi_qla_host_t *);
180
181static __inline__ void qla2x00_start_timer(scsi_qla_host_t *,
182 void *, unsigned long);
183static __inline__ void qla2x00_restart_timer(scsi_qla_host_t *, unsigned long);
184static __inline__ void qla2x00_stop_timer(scsi_qla_host_t *);
185
186static inline void
187qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
188{
189 init_timer(&ha->timer);
190 ha->timer.expires = jiffies + interval * HZ;
191 ha->timer.data = (unsigned long)ha;
192 ha->timer.function = (void (*)(unsigned long))func;
193 add_timer(&ha->timer);
194 ha->timer_active = 1;
195}
196
197static inline void
198qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
199{
200 mod_timer(&ha->timer, jiffies + interval * HZ);
201}
202
203static __inline__ void
204qla2x00_stop_timer(scsi_qla_host_t *ha)
205{
206 del_timer_sync(&ha->timer);
207 ha->timer_active = 0;
208}
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static int qla2x00_do_dpc(void *data);
211
212static void qla2x00_rst_aen(scsi_qla_host_t *);
213
214static uint8_t qla2x00_mem_alloc(scsi_qla_host_t *);
215static void qla2x00_mem_free(scsi_qla_host_t *ha);
216static int qla2x00_allocate_sp_pool( scsi_qla_host_t *ha);
217static void qla2x00_free_sp_pool(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500218static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
219void qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/* -------------------------------------------------------------------------- */
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700224qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 static char *pci_bus_modes[] = {
227 "33", "66", "100", "133",
228 };
229 uint16_t pci_bus;
230
231 strcpy(str, "PCI");
232 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
233 if (pci_bus) {
234 strcat(str, "-X (");
235 strcat(str, pci_bus_modes[pci_bus]);
236 } else {
237 pci_bus = (ha->pci_attr & BIT_8) >> 8;
238 strcat(str, " (");
239 strcat(str, pci_bus_modes[pci_bus]);
240 }
241 strcat(str, " MHz)");
242
243 return (str);
244}
245
Andrew Vasquezfca29702005-07-06 10:31:47 -0700246static char *
247qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
248{
249 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
250 uint32_t pci_bus;
251 int pcie_reg;
252
253 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
254 if (pcie_reg) {
255 char lwstr[6];
256 uint16_t pcie_lstat, lspeed, lwidth;
257
258 pcie_reg += 0x12;
259 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
260 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
261 lwidth = (pcie_lstat &
262 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
263
264 strcpy(str, "PCIe (");
265 if (lspeed == 1)
266 strcat(str, "2.5Gb/s ");
267 else
268 strcat(str, "<unknown> ");
269 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
270 strcat(str, lwstr);
271
272 return str;
273 }
274
275 strcpy(str, "PCI");
276 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
277 if (pci_bus == 0 || pci_bus == 8) {
278 strcat(str, " (");
279 strcat(str, pci_bus_modes[pci_bus >> 3]);
280 } else {
281 strcat(str, "-X ");
282 if (pci_bus & BIT_2)
283 strcat(str, "Mode 2");
284 else
285 strcat(str, "Mode 1");
286 strcat(str, " (");
287 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
288 }
289 strcat(str, " MHz)");
290
291 return str;
292}
293
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800294static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700295qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 char un_str[10];
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
300 ha->fw_minor_version,
301 ha->fw_subminor_version);
302
303 if (ha->fw_attributes & BIT_9) {
304 strcat(str, "FLX");
305 return (str);
306 }
307
308 switch (ha->fw_attributes & 0xFF) {
309 case 0x7:
310 strcat(str, "EF");
311 break;
312 case 0x17:
313 strcat(str, "TP");
314 break;
315 case 0x37:
316 strcat(str, "IP");
317 break;
318 case 0x77:
319 strcat(str, "VI");
320 break;
321 default:
322 sprintf(un_str, "(%x)", ha->fw_attributes);
323 strcat(str, un_str);
324 break;
325 }
326 if (ha->fw_attributes & 0x100)
327 strcat(str, "X");
328
329 return (str);
330}
331
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800332static char *
Andrew Vasquezfca29702005-07-06 10:31:47 -0700333qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
334{
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700335 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
336 ha->fw_minor_version,
337 ha->fw_subminor_version);
338
Andrew Vasquezfca29702005-07-06 10:31:47 -0700339 if (ha->fw_attributes & BIT_0)
340 strcat(str, "[Class 2] ");
341 if (ha->fw_attributes & BIT_1)
342 strcat(str, "[IP] ");
343 if (ha->fw_attributes & BIT_2)
344 strcat(str, "[Multi-ID] ");
345 if (ha->fw_attributes & BIT_13)
346 strcat(str, "[Experimental]");
347 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700348}
349
350static inline srb_t *
351qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
352 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
353{
354 srb_t *sp;
355
356 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
357 if (!sp)
358 return sp;
359
Andrew Vasquezfca29702005-07-06 10:31:47 -0700360 sp->ha = ha;
361 sp->fcport = fcport;
362 sp->cmd = cmd;
363 sp->flags = 0;
364 CMD_SP(cmd) = (void *)sp;
365 cmd->scsi_done = done;
366
367 return sp;
368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static int
f4f051e2005-04-17 15:02:26 -0500371qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
f4f051e2005-04-17 15:02:26 -0500373 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500374 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400375 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051e2005-04-17 15:02:26 -0500376 srb_t *sp;
377 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400379 rval = fc_remote_port_chkready(rport);
380 if (rval) {
381 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500382 goto qc_fail_command;
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800385 /* Close window on fcport/rport state-transitioning. */
386 if (!*(fc_port_t **)rport->dd_data) {
387 cmd->result = DID_IMM_RETRY << 16;
388 goto qc_fail_command;
389 }
390
f4f051e2005-04-17 15:02:26 -0500391 if (atomic_read(&fcport->state) != FCS_ONLINE) {
392 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
393 atomic_read(&ha->loop_state) == LOOP_DEAD) {
394 cmd->result = DID_NO_CONNECT << 16;
395 goto qc_fail_command;
396 }
397 goto qc_host_busy;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 spin_unlock_irq(ha->host->host_lock);
401
Andrew Vasquezfca29702005-07-06 10:31:47 -0700402 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
403 if (!sp)
f4f051e2005-04-17 15:02:26 -0500404 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
f4f051e2005-04-17 15:02:26 -0500406 rval = qla2x00_start_scsi(sp);
407 if (rval != QLA_SUCCESS)
408 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 spin_lock_irq(ha->host->host_lock);
411
f4f051e2005-04-17 15:02:26 -0500412 return 0;
413
414qc_host_busy_free_sp:
415 qla2x00_sp_free_dma(ha, sp);
f4f051e2005-04-17 15:02:26 -0500416 mempool_free(sp, ha->srb_mempool);
417
418qc_host_busy_lock:
419 spin_lock_irq(ha->host->host_lock);
420
421qc_host_busy:
422 return SCSI_MLQUEUE_HOST_BUSY;
423
424qc_fail_command:
425 done(cmd);
426
427 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Andrew Vasquezfca29702005-07-06 10:31:47 -0700430
431static int
432qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
433{
434 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
435 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400436 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700437 srb_t *sp;
438 int rval;
439
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400440 rval = fc_remote_port_chkready(rport);
441 if (rval) {
442 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700443 goto qc24_fail_command;
444 }
445
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800446 /* Close window on fcport/rport state-transitioning. */
447 if (!*(fc_port_t **)rport->dd_data) {
448 cmd->result = DID_IMM_RETRY << 16;
449 goto qc24_fail_command;
450 }
451
Andrew Vasquezfca29702005-07-06 10:31:47 -0700452 if (atomic_read(&fcport->state) != FCS_ONLINE) {
453 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
454 atomic_read(&ha->loop_state) == LOOP_DEAD) {
455 cmd->result = DID_NO_CONNECT << 16;
456 goto qc24_fail_command;
457 }
458 goto qc24_host_busy;
459 }
460
461 spin_unlock_irq(ha->host->host_lock);
462
463 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
464 if (!sp)
465 goto qc24_host_busy_lock;
466
467 rval = qla24xx_start_scsi(sp);
468 if (rval != QLA_SUCCESS)
469 goto qc24_host_busy_free_sp;
470
471 spin_lock_irq(ha->host->host_lock);
472
473 return 0;
474
475qc24_host_busy_free_sp:
476 qla2x00_sp_free_dma(ha, sp);
477 mempool_free(sp, ha->srb_mempool);
478
479qc24_host_busy_lock:
480 spin_lock_irq(ha->host->host_lock);
481
482qc24_host_busy:
483 return SCSI_MLQUEUE_HOST_BUSY;
484
485qc24_fail_command:
486 done(cmd);
487
488 return 0;
489}
490
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/*
493 * qla2x00_eh_wait_on_command
494 * Waits for the command to be returned by the Firmware for some
495 * max time.
496 *
497 * Input:
498 * ha = actual ha whose done queue will contain the command
499 * returned by firmware.
500 * cmd = Scsi Command to wait on.
501 * flag = Abort/Reset(Bus or Device Reset)
502 *
503 * Return:
504 * Not Found : 0
505 * Found : 1
506 */
507static int
508qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
509{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700510#define ABORT_POLLING_PERIOD 1000
511#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500512 unsigned long wait_iter = ABORT_WAIT_ITER;
513 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
f4f051e2005-04-17 15:02:26 -0500515 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700516 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
f4f051e2005-04-17 15:02:26 -0500518 if (--wait_iter)
519 break;
520 }
521 if (CMD_SP(cmd))
522 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
f4f051e2005-04-17 15:02:26 -0500524 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/*
528 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700529 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * <= MAX_RETRIES_OF_ISP_ABORT or
531 * finally HBA is disabled ie marked offline
532 *
533 * Input:
534 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700535 *
536 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * Does context switching-Release SPIN_LOCK
538 * (if any) before calling this routine.
539 *
540 * Return:
541 * Success (Adapter is online) : 0
542 * Failed (Adapter is offline/disabled) : 1
543 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800544int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
546{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700547 int return_status;
548 unsigned long wait_online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700550 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 while (((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) ||
552 test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) ||
553 test_bit(ISP_ABORT_RETRY, &ha->dpc_flags) ||
554 ha->dpc_active) && time_before(jiffies, wait_online)) {
555
556 msleep(1000);
557 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700558 if (ha->flags.online)
559 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 else
561 return_status = QLA_FUNCTION_FAILED;
562
563 DEBUG2(printk("%s return_status=%d\n",__func__,return_status));
564
565 return (return_status);
566}
567
568/*
569 * qla2x00_wait_for_loop_ready
570 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700571 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 * Input:
573 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700574 *
575 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * Does context switching-Release SPIN_LOCK
577 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700578 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 *
580 * Return:
581 * Success (LOOP_READY) : 0
582 * Failed (LOOP_NOT_READY) : 1
583 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700584static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
586{
587 int return_status = QLA_SUCCESS;
588 unsigned long loop_timeout ;
589
590 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700591 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 while ((!atomic_read(&ha->loop_down_timer) &&
594 atomic_read(&ha->loop_state) == LOOP_DOWN) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 atomic_read(&ha->loop_state) != LOOP_READY) {
Ravi Anand57680082006-05-17 15:08:44 -0700596 if (atomic_read(&ha->loop_state) == LOOP_DEAD) {
597 return_status = QLA_FUNCTION_FAILED;
598 break;
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 msleep(1000);
601 if (time_after_eq(jiffies, loop_timeout)) {
602 return_status = QLA_FUNCTION_FAILED;
603 break;
604 }
605 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700606 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Andrew Vasquez07db5182006-10-02 12:00:49 -0700609static void
610qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
611{
612 struct Scsi_Host *shost = cmnd->device->host;
613 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
614 unsigned long flags;
615
616 spin_lock_irqsave(shost->host_lock, flags);
617 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
618 spin_unlock_irqrestore(shost->host_lock, flags);
619 msleep(1000);
620 spin_lock_irqsave(shost->host_lock, flags);
621 }
622 spin_unlock_irqrestore(shost->host_lock, flags);
623 return;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/**************************************************************************
627* qla2xxx_eh_abort
628*
629* Description:
630* The abort function will abort the specified command.
631*
632* Input:
633* cmd = Linux SCSI command packet to be aborted.
634*
635* Returns:
636* Either SUCCESS or FAILED.
637*
638* Note:
Michael Reed2ea00202006-04-27 16:25:30 -0700639* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800641static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642qla2xxx_eh_abort(struct scsi_cmnd *cmd)
643{
f4f051e2005-04-17 15:02:26 -0500644 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
645 srb_t *sp;
646 int ret, i;
647 unsigned int id, lun;
648 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700649 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700650 int wait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Andrew Vasquez07db5182006-10-02 12:00:49 -0700652 qla2x00_block_error_handler(cmd);
653
f4f051e2005-04-17 15:02:26 -0500654 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700655 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Michael Reed2ea00202006-04-27 16:25:30 -0700657 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
f4f051e2005-04-17 15:02:26 -0500659 id = cmd->device->id;
660 lun = cmd->device->lun;
661 serial = cmd->serial_number;
662
663 /* Check active list for command command. */
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700664 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500665 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
666 sp = ha->outstanding_cmds[i];
667
668 if (sp == NULL)
669 continue;
670
671 if (sp->cmd != cmd)
672 continue;
673
Andrew Vasquez75bc4192006-05-17 15:09:22 -0700674 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
675 __func__, ha->host_no, sp, serial));
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700676 DEBUG3(qla2x00_print_scsi_cmd(cmd));
f4f051e2005-04-17 15:02:26 -0500677
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700678 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700679 if (ha->isp_ops.abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500680 DEBUG2(printk("%s(%ld): abort_command "
681 "mbx failed.\n", __func__, ha->host_no));
682 } else {
683 DEBUG3(printk("%s(%ld): abort_command "
684 "mbx success.\n", __func__, ha->host_no));
Michael Reed2ea00202006-04-27 16:25:30 -0700685 wait = 1;
f4f051e2005-04-17 15:02:26 -0500686 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700687 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500688
689 break;
690 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700691 spin_unlock_irqrestore(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500692
693 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700694 if (wait) {
f4f051e2005-04-17 15:02:26 -0500695 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700696 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500697 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
698 "%x.\n", ha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700699 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700703 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700704 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
705 ha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
f4f051e2005-04-17 15:02:26 -0500707 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710/**************************************************************************
711* qla2x00_eh_wait_for_pending_target_commands
712*
713* Description:
714* Waits for all the commands to come back from the specified target.
715*
716* Input:
717* ha - pointer to scsi_qla_host structure.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700718* t - target
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719* Returns:
720* Either SUCCESS or FAILED.
721*
722* Note:
723**************************************************************************/
724static int
725qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t *ha, unsigned int t)
726{
727 int cnt;
728 int status;
729 srb_t *sp;
730 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700731 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 status = 0;
734
735 /*
736 * Waiting for all commands for the designated target in the active
737 * array
738 */
739 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700740 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 sp = ha->outstanding_cmds[cnt];
742 if (sp) {
743 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700744 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (cmd->device->id == t) {
746 if (!qla2x00_eh_wait_on_command(ha, cmd)) {
747 status = 1;
748 break;
749 }
750 }
f4f051e2005-04-17 15:02:26 -0500751 } else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700752 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754 }
755 return (status);
756}
757
758
759/**************************************************************************
760* qla2xxx_eh_device_reset
761*
762* Description:
763* The device reset function will reset the target and abort any
764* executing commands.
765*
766* NOTE: The use of SP is undefined within this context. Do *NOT*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700767* attempt to use this value, even if you determine it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768* non-null.
769*
770* Input:
771* cmd = Linux SCSI command packet of the command that cause the
772* bus device reset.
773*
774* Returns:
775* SUCCESS/FAILURE (defined as macro in scsi.h).
776*
777**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800778static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
780{
f4f051e2005-04-17 15:02:26 -0500781 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500782 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500783 int ret;
784 unsigned int id, lun;
785 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Andrew Vasquez07db5182006-10-02 12:00:49 -0700787 qla2x00_block_error_handler(cmd);
788
f4f051e2005-04-17 15:02:26 -0500789 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
f4f051e2005-04-17 15:02:26 -0500791 id = cmd->device->id;
792 lun = cmd->device->lun;
793 serial = cmd->serial_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700795 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500796 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500799 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400801 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto eh_dev_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500805 if (qla2x00_device_reset(ha, fcport) == 0)
806 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808#if defined(LOGOUT_AFTER_DEVICE_RESET)
f4f051e2005-04-17 15:02:26 -0500809 if (ret == SUCCESS) {
810 if (fcport->flags & FC_FABRIC_DEVICE) {
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700811 ha->isp_ops.fabric_logout(ha, fcport->loop_id);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -0800812 qla2x00_mark_device_lost(ha, fcport, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814 }
815#endif
816 } else {
817 DEBUG2(printk(KERN_INFO
Andrew Vasquez744f11fd2006-06-23 16:11:05 -0700818 "%s failed: loop not ready\n",__func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
f4f051e2005-04-17 15:02:26 -0500821 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 DEBUG3(printk("%s(%ld): device reset failed\n",
823 __func__, ha->host_no));
824 qla_printk(KERN_INFO, ha, "%s: device reset failed\n",
825 __func__);
826
827 goto eh_dev_reset_done;
828 }
829
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700830 /* Flush outstanding commands. */
831 if (qla2x00_eh_wait_for_pending_target_commands(ha, id))
832 ret = FAILED;
833 if (ret == FAILED) {
834 DEBUG3(printk("%s(%ld): failed while waiting for commands\n",
835 __func__, ha->host_no));
836 qla_printk(KERN_INFO, ha,
837 "%s: failed while waiting for commands\n", __func__);
838 } else
839 qla_printk(KERN_INFO, ha,
840 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha->host_no,
841 id, lun);
James Bottomley28f22b02005-10-28 17:22:18 -0500842 eh_dev_reset_done:
f4f051e2005-04-17 15:02:26 -0500843 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846/**************************************************************************
847* qla2x00_eh_wait_for_pending_commands
848*
849* Description:
850* Waits for all the commands to come back from the specified host.
851*
852* Input:
853* ha - pointer to scsi_qla_host structure.
854*
855* Returns:
856* 1 : SUCCESS
857* 0 : FAILED
858*
859* Note:
860**************************************************************************/
861static int
862qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha)
863{
864 int cnt;
865 int status;
866 srb_t *sp;
867 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700868 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 status = 1;
871
872 /*
873 * Waiting for all commands for the designated target in the active
874 * array
875 */
876 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700877 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 sp = ha->outstanding_cmds[cnt];
879 if (sp) {
880 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700881 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 status = qla2x00_eh_wait_on_command(ha, cmd);
883 if (status == 0)
884 break;
885 }
886 else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700887 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889 }
890 return (status);
891}
892
893
894/**************************************************************************
895* qla2xxx_eh_bus_reset
896*
897* Description:
898* The bus reset function will reset the bus and abort any executing
899* commands.
900*
901* Input:
902* cmd = Linux SCSI command packet of the command that cause the
903* bus reset.
904*
905* Returns:
906* SUCCESS/FAILURE (defined as macro in scsi.h).
907*
908**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800909static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
911{
f4f051e2005-04-17 15:02:26 -0500912 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500913 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500914 int ret;
915 unsigned int id, lun;
916 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Andrew Vasquez07db5182006-10-02 12:00:49 -0700918 qla2x00_block_error_handler(cmd);
919
f4f051e2005-04-17 15:02:26 -0500920 ret = FAILED;
921
922 id = cmd->device->id;
923 lun = cmd->device->lun;
924 serial = cmd->serial_number;
925
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700926 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500927 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500930 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
933 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500934 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
937 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500938 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
939 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
f4f051e2005-04-17 15:02:26 -0500941 if (ret == FAILED)
942 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700944 /* Flush outstanding commands. */
945 if (!qla2x00_eh_wait_for_pending_commands(ha))
946 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
f4f051e2005-04-17 15:02:26 -0500948eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500950 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
f4f051e2005-04-17 15:02:26 -0500952 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955/**************************************************************************
956* qla2xxx_eh_host_reset
957*
958* Description:
959* The reset function will reset the Adapter.
960*
961* Input:
962* cmd = Linux SCSI command packet of the command that cause the
963* adapter reset.
964*
965* Returns:
966* Either SUCCESS or FAILED.
967*
968* Note:
969**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800970static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
972{
f4f051e2005-04-17 15:02:26 -0500973 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500974 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500975 int ret;
976 unsigned int id, lun;
977 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Andrew Vasquez07db5182006-10-02 12:00:49 -0700979 qla2x00_block_error_handler(cmd);
980
f4f051e2005-04-17 15:02:26 -0500981 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
f4f051e2005-04-17 15:02:26 -0500983 id = cmd->device->id;
984 lun = cmd->device->lun;
985 serial = cmd->serial_number;
986
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700987 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500988 return ret;
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500991 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500994 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 /*
997 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700998 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 * be completed and then issue big hammer.Otherwise
1000 * it may cause I/O failure as big hammer marks the
1001 * devices as lost kicking of the port_down_timer
1002 * while dpc is stuck for the mailbox to complete.
1003 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 qla2x00_wait_for_loop_ready(ha);
1005 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
1006 if (qla2x00_abort_isp(ha)) {
1007 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
1008 /* failed. schedule dpc to try */
1009 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
1010
1011 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001012 goto eh_host_reset_lock;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* Waiting for our command in done_queue to be returned to OS.*/
f4f051e2005-04-17 15:02:26 -05001017 if (qla2x00_eh_wait_for_pending_commands(ha))
1018 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
f4f051e2005-04-17 15:02:26 -05001020eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001021 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1022 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
f4f051e2005-04-17 15:02:26 -05001024 return ret;
1025}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027/*
1028* qla2x00_loop_reset
1029* Issue loop reset.
1030*
1031* Input:
1032* ha = adapter block pointer.
1033*
1034* Returns:
1035* 0 = success
1036*/
1037static int
1038qla2x00_loop_reset(scsi_qla_host_t *ha)
1039{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001040 int ret;
bdf79622005-04-17 15:06:53 -05001041 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001043 if (ha->flags.enable_lip_full_login) {
1044 ret = qla2x00_full_login_lip(ha);
1045 if (ret != QLA_SUCCESS) {
1046 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1047 "full_login_lip=%d.\n", __func__, ha->host_no,
1048 ret));
1049 }
1050 atomic_set(&ha->loop_state, LOOP_DOWN);
1051 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
1052 qla2x00_mark_all_devices_lost(ha, 0);
1053 qla2x00_wait_for_loop_ready(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001056 if (ha->flags.enable_lip_reset) {
1057 ret = qla2x00_lip_reset(ha);
1058 if (ret != QLA_SUCCESS) {
1059 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1060 "lip_reset=%d.\n", __func__, ha->host_no, ret));
1061 }
1062 qla2x00_wait_for_loop_ready(ha);
1063 }
1064
1065 if (ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -05001066 list_for_each_entry(fcport, &ha->fcports, list) {
1067 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 continue;
1069
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001070 ret = qla2x00_device_reset(ha, fcport);
1071 if (ret != QLA_SUCCESS) {
1072 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1073 "target_reset=%d d_id=%x.\n", __func__,
1074 ha->host_no, ret, fcport->d_id.b24));
1075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077 }
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /* Issue marker command only when we are going to start the I/O */
1080 ha->marker_needed = 1;
1081
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001082 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085/*
1086 * qla2x00_device_reset
1087 * Issue bus device reset message to the target.
1088 *
1089 * Input:
1090 * ha = adapter block pointer.
1091 * t = SCSI ID.
1092 * TARGET_QUEUE_LOCK must be released.
1093 * ADAPTER_STATE_LOCK must be released.
1094 *
1095 * Context:
1096 * Kernel context.
1097 */
1098static int
1099qla2x00_device_reset(scsi_qla_host_t *ha, fc_port_t *reset_fcport)
1100{
1101 /* Abort Target command will clear Reservation */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001102 return ha->isp_ops.abort_target(reset_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
f4f051e2005-04-17 15:02:26 -05001105static int
1106qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
bdf79622005-04-17 15:06:53 -05001108 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001110 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001111 return -ENXIO;
1112
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001113 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001114
1115 return 0;
1116}
1117
1118static int
1119qla2xxx_slave_configure(struct scsi_device *sdev)
1120{
8482e1182005-04-17 15:04:54 -05001121 scsi_qla_host_t *ha = to_qla_host(sdev->host);
1122 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1123
f4f051e2005-04-17 15:02:26 -05001124 if (sdev->tagged_supported)
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001125 scsi_activate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 else
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001127 scsi_deactivate_tcq(sdev, ha->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
8482e1182005-04-17 15:04:54 -05001129 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1130
f4f051e2005-04-17 15:02:26 -05001131 return 0;
1132}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
f4f051e2005-04-17 15:02:26 -05001134static void
1135qla2xxx_slave_destroy(struct scsi_device *sdev)
1136{
1137 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001140static int
1141qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1142{
1143 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1144 return sdev->queue_depth;
1145}
1146
1147static int
1148qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1149{
1150 if (sdev->tagged_supported) {
1151 scsi_set_tag_type(sdev, tag_type);
1152 if (tag_type)
1153 scsi_activate_tcq(sdev, sdev->queue_depth);
1154 else
1155 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1156 } else
1157 tag_type = 0;
1158
1159 return tag_type;
1160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162/**
1163 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1164 * @ha: HA context
1165 *
1166 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1167 * supported addressing method.
1168 */
1169static void
1170qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1171{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001172 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001175 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1176 /* Any upper-dword bits set? */
1177 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1178 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1179 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001181 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_64;
1182 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001183 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001186
1187 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1188 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001191static inline void
1192qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1193{
1194 ha->device_type = DT_EXTENDED_IDS;
1195 switch (ha->pdev->device) {
1196 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1197 ha->device_type |= DT_ISP2100;
1198 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001199 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001200 break;
1201 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1202 ha->device_type |= DT_ISP2200;
1203 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001204 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001205 break;
1206 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1207 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001208 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001209 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001210 break;
1211 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1212 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001213 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001214 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001215 break;
1216 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1217 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001218 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001219 if (ha->pdev->subsystem_vendor == 0x1028 &&
1220 ha->pdev->subsystem_device == 0x0170)
1221 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001222 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001223 break;
1224 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1225 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001226 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001227 break;
1228 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1229 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001230 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001231 break;
1232 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1233 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001234 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001235 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001236 break;
1237 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1238 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001239 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001240 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001241 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001242 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1243 ha->device_type |= DT_ISP5422;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001244 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001245 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001246 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1247 ha->device_type |= DT_ISP5432;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001248 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001249 break;
1250 }
1251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253static int
1254qla2x00_iospace_config(scsi_qla_host_t *ha)
1255{
1256 unsigned long pio, pio_len, pio_flags;
1257 unsigned long mmio, mmio_len, mmio_flags;
1258
1259 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1260 pio = pci_resource_start(ha->pdev, 0);
1261 pio_len = pci_resource_len(ha->pdev, 0);
1262 pio_flags = pci_resource_flags(ha->pdev, 0);
1263 if (pio_flags & IORESOURCE_IO) {
1264 if (pio_len < MIN_IOBASE_LEN) {
1265 qla_printk(KERN_WARNING, ha,
1266 "Invalid PCI I/O region size (%s)...\n",
1267 pci_name(ha->pdev));
1268 pio = 0;
1269 }
1270 } else {
1271 qla_printk(KERN_WARNING, ha,
1272 "region #0 not a PIO resource (%s)...\n",
1273 pci_name(ha->pdev));
1274 pio = 0;
1275 }
1276
1277 /* Use MMIO operations for all accesses. */
1278 mmio = pci_resource_start(ha->pdev, 1);
1279 mmio_len = pci_resource_len(ha->pdev, 1);
1280 mmio_flags = pci_resource_flags(ha->pdev, 1);
1281
1282 if (!(mmio_flags & IORESOURCE_MEM)) {
1283 qla_printk(KERN_ERR, ha,
1284 "region #0 not an MMIO resource (%s), aborting\n",
1285 pci_name(ha->pdev));
1286 goto iospace_error_exit;
1287 }
1288 if (mmio_len < MIN_IOBASE_LEN) {
1289 qla_printk(KERN_ERR, ha,
1290 "Invalid PCI mem region size (%s), aborting\n",
1291 pci_name(ha->pdev));
1292 goto iospace_error_exit;
1293 }
1294
Andrew Vasquezcb630672006-05-17 15:09:45 -07001295 if (pci_request_regions(ha->pdev, QLA2XXX_DRIVER_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 qla_printk(KERN_WARNING, ha,
1297 "Failed to reserve PIO/MMIO regions (%s)\n",
1298 pci_name(ha->pdev));
1299
1300 goto iospace_error_exit;
1301 }
1302
1303 ha->pio_address = pio;
1304 ha->pio_length = pio_len;
1305 ha->iobase = ioremap(mmio, MIN_IOBASE_LEN);
1306 if (!ha->iobase) {
1307 qla_printk(KERN_ERR, ha,
1308 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1309
1310 goto iospace_error_exit;
1311 }
1312
1313 return (0);
1314
1315iospace_error_exit:
1316 return (-ENOMEM);
1317}
1318
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001319static void
1320qla2x00_enable_intrs(scsi_qla_host_t *ha)
1321{
1322 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001323 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001324
1325 spin_lock_irqsave(&ha->hardware_lock, flags);
1326 ha->interrupts_on = 1;
1327 /* enable risc and host interrupts */
1328 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1329 RD_REG_WORD(&reg->ictrl);
1330 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1331
1332}
1333
1334static void
1335qla2x00_disable_intrs(scsi_qla_host_t *ha)
1336{
1337 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001338 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001339
1340 spin_lock_irqsave(&ha->hardware_lock, flags);
1341 ha->interrupts_on = 0;
1342 /* disable risc and host interrupts */
1343 WRT_REG_WORD(&reg->ictrl, 0);
1344 RD_REG_WORD(&reg->ictrl);
1345 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1346}
1347
Andrew Vasquezfca29702005-07-06 10:31:47 -07001348static void
1349qla24xx_enable_intrs(scsi_qla_host_t *ha)
1350{
1351 unsigned long flags = 0;
1352 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1353
1354 spin_lock_irqsave(&ha->hardware_lock, flags);
1355 ha->interrupts_on = 1;
1356 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1357 RD_REG_DWORD(&reg->ictrl);
1358 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1359}
1360
1361static void
1362qla24xx_disable_intrs(scsi_qla_host_t *ha)
1363{
1364 unsigned long flags = 0;
1365 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1366
1367 spin_lock_irqsave(&ha->hardware_lock, flags);
1368 ha->interrupts_on = 0;
1369 WRT_REG_DWORD(&reg->ictrl, 0);
1370 RD_REG_DWORD(&reg->ictrl);
1371 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1372}
1373
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001374static void
1375qla2xxx_scan_start(struct Scsi_Host *shost)
1376{
1377 scsi_qla_host_t *ha = (scsi_qla_host_t *)shost->hostdata;
1378
1379 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1380 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1381 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1382}
1383
1384static int
1385qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1386{
1387 scsi_qla_host_t *ha = (scsi_qla_host_t *)shost->hostdata;
1388
1389 if (!ha->host)
1390 return 1;
1391 if (time > ha->loop_reset_delay * HZ)
1392 return 1;
1393
1394 return atomic_read(&ha->loop_state) == LOOP_READY;
1395}
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397/*
1398 * PCI driver interface
1399 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001400static int __devinit
1401qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001403 int ret = -ENODEV;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001404 device_reg_t __iomem *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 struct Scsi_Host *host;
1406 scsi_qla_host_t *ha;
1407 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 char pci_info[20];
1409 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001410 struct scsi_host_template *sht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 if (pci_enable_device(pdev))
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001413 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Andrew Vasquez54333832005-11-09 15:49:04 -08001415 sht = &qla2x00_driver_template;
1416 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
Andrew Vasquez8bc69e72006-12-13 19:20:29 -08001417 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
1418 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1419 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432)
Andrew Vasquez54333832005-11-09 15:49:04 -08001420 sht = &qla24xx_driver_template;
1421 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (host == NULL) {
1423 printk(KERN_WARNING
1424 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1425 goto probe_disable_device;
1426 }
1427
1428 /* Clear our data area */
1429 ha = (scsi_qla_host_t *)host->hostdata;
1430 memset(ha, 0, sizeof(scsi_qla_host_t));
1431
1432 ha->pdev = pdev;
1433 ha->host = host;
1434 ha->host_no = host->host_no;
Andrew Vasquezcb630672006-05-17 15:09:45 -07001435 sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001437 /* Set ISP-type information. */
1438 qla2x00_set_isp_flags(ha);
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* Configure PCI I/O space */
1441 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001442 if (ret)
1443 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001446 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1447 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 spin_lock_init(&ha->hardware_lock);
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001452 ha->init_cb_size = sizeof(init_cb_t);
Andrew Vasquezcca53352005-08-26 19:08:30 -07001453 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001454 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001455 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Andrew Vasquezdf7baa52006-10-13 09:33:39 -07001457 ha->max_q_depth = MAX_Q_DEPTH;
1458 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1459 ha->max_q_depth = ql2xmaxqdepth;
1460
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001461 /* Assign ISP specific operations. */
1462 ha->isp_ops.pci_config = qla2100_pci_config;
1463 ha->isp_ops.reset_chip = qla2x00_reset_chip;
1464 ha->isp_ops.chip_diag = qla2x00_chip_diag;
1465 ha->isp_ops.config_rings = qla2x00_config_rings;
1466 ha->isp_ops.reset_adapter = qla2x00_reset_adapter;
1467 ha->isp_ops.nvram_config = qla2x00_nvram_config;
1468 ha->isp_ops.update_fw_options = qla2x00_update_fw_options;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001469 ha->isp_ops.load_risc = qla2x00_load_risc;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001470 ha->isp_ops.pci_info_str = qla2x00_pci_info_str;
1471 ha->isp_ops.fw_version_str = qla2x00_fw_version_str;
1472 ha->isp_ops.intr_handler = qla2100_intr_handler;
1473 ha->isp_ops.enable_intrs = qla2x00_enable_intrs;
1474 ha->isp_ops.disable_intrs = qla2x00_disable_intrs;
1475 ha->isp_ops.abort_command = qla2x00_abort_command;
1476 ha->isp_ops.abort_target = qla2x00_abort_target;
1477 ha->isp_ops.fabric_login = qla2x00_login_fabric;
1478 ha->isp_ops.fabric_logout = qla2x00_fabric_logout;
1479 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_32;
1480 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_32;
1481 ha->isp_ops.prep_ms_iocb = qla2x00_prep_ms_iocb;
Andrew Vasquezcca53352005-08-26 19:08:30 -07001482 ha->isp_ops.prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001483 ha->isp_ops.read_nvram = qla2x00_read_nvram_data;
1484 ha->isp_ops.write_nvram = qla2x00_write_nvram_data;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001485 ha->isp_ops.fw_dump = qla2100_fw_dump;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001486 ha->isp_ops.read_optrom = qla2x00_read_optrom_data;
1487 ha->isp_ops.write_optrom = qla2x00_write_optrom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001489 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1491 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1492 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1493 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1494 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001495 ha->gid_list_info_size = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001497 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1499 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1500 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1501 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001502 ha->gid_list_info_size = 4;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001503 } else if (IS_QLA23XX(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001504 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1506 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1507 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1508 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001509 ha->isp_ops.pci_config = qla2300_pci_config;
1510 ha->isp_ops.intr_handler = qla2300_intr_handler;
1511 ha->isp_ops.fw_dump = qla2300_fw_dump;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001512 ha->isp_ops.beacon_on = qla2x00_beacon_on;
1513 ha->isp_ops.beacon_off = qla2x00_beacon_off;
1514 ha->isp_ops.beacon_blink = qla2x00_beacon_blink;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001515 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001516 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1517 ha->optrom_size = OPTROM_SIZE_2322;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001518 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001519 host->max_id = MAX_TARGETS_2200;
1520 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1521 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1522 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1523 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1524 ha->init_cb_size = sizeof(struct init_cb_24xx);
Andrew Vasquezcca53352005-08-26 19:08:30 -07001525 ha->mgmt_svr_loop_id = 10;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001526 ha->isp_ops.pci_config = qla24xx_pci_config;
1527 ha->isp_ops.reset_chip = qla24xx_reset_chip;
1528 ha->isp_ops.chip_diag = qla24xx_chip_diag;
1529 ha->isp_ops.config_rings = qla24xx_config_rings;
1530 ha->isp_ops.reset_adapter = qla24xx_reset_adapter;
1531 ha->isp_ops.nvram_config = qla24xx_nvram_config;
1532 ha->isp_ops.update_fw_options = qla24xx_update_fw_options;
Andrew Vasquez54333832005-11-09 15:49:04 -08001533 ha->isp_ops.load_risc = qla24xx_load_risc;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001534 ha->isp_ops.pci_info_str = qla24xx_pci_info_str;
1535 ha->isp_ops.fw_version_str = qla24xx_fw_version_str;
1536 ha->isp_ops.intr_handler = qla24xx_intr_handler;
1537 ha->isp_ops.enable_intrs = qla24xx_enable_intrs;
1538 ha->isp_ops.disable_intrs = qla24xx_disable_intrs;
1539 ha->isp_ops.abort_command = qla24xx_abort_command;
1540 ha->isp_ops.abort_target = qla24xx_abort_target;
1541 ha->isp_ops.fabric_login = qla24xx_login_fabric;
1542 ha->isp_ops.fabric_logout = qla24xx_fabric_logout;
1543 ha->isp_ops.prep_ms_iocb = qla24xx_prep_ms_iocb;
Andrew Vasquezcca53352005-08-26 19:08:30 -07001544 ha->isp_ops.prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001545 ha->isp_ops.read_nvram = qla24xx_read_nvram_data;
1546 ha->isp_ops.write_nvram = qla24xx_write_nvram_data;
1547 ha->isp_ops.fw_dump = qla24xx_fw_dump;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001548 ha->isp_ops.read_optrom = qla24xx_read_optrom_data;
1549 ha->isp_ops.write_optrom = qla24xx_write_optrom_data;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001550 ha->isp_ops.beacon_on = qla24xx_beacon_on;
1551 ha->isp_ops.beacon_off = qla24xx_beacon_off;
1552 ha->isp_ops.beacon_blink = qla24xx_beacon_blink;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001553 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001554 ha->optrom_size = OPTROM_SIZE_24XX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556 host->can_queue = ha->request_q_length + 128;
1557
1558 /* load the F/W, read paramaters, and init the H/W */
1559 ha->instance = num_hosts;
1560
1561 init_MUTEX(&ha->mbx_cmd_sem);
1562 init_MUTEX_LOCKED(&ha->mbx_intr_sem);
1563
1564 INIT_LIST_HEAD(&ha->list);
1565 INIT_LIST_HEAD(&ha->fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 /*
1568 * These locks are used to prevent more than one CPU
1569 * from modifying the queue at the same time. The
1570 * higher level "host_lock" will reduce most
1571 * contention for these locks.
1572 */
1573 spin_lock_init(&ha->mbx_reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 qla2x00_config_dma_addressing(ha);
1576 if (qla2x00_mem_alloc(ha)) {
1577 qla_printk(KERN_WARNING, ha,
1578 "[ERROR] Failed to allocate memory for adapter\n");
1579
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001580 ret = -ENOMEM;
1581 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
1584 if (qla2x00_initialize_adapter(ha) &&
1585 !(ha->device_flags & DFLG_NO_CABLE)) {
1586
1587 qla_printk(KERN_WARNING, ha,
1588 "Failed to initialize adapter\n");
1589
1590 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1591 "Adapter flags %x.\n",
1592 ha->host_no, ha->device_flags));
1593
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001594 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 goto probe_failed;
1596 }
1597
1598 /*
1599 * Startup the kernel thread for this host adapter
1600 */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001601 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1602 "%s_dpc", ha->host_str);
1603 if (IS_ERR(ha->dpc_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 qla_printk(KERN_WARNING, ha,
1605 "Unable to start DPC thread!\n");
Christoph Hellwig39a11242006-02-14 18:46:22 +01001606 ret = PTR_ERR(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 goto probe_failed;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001610 host->this_id = 255;
1611 host->cmd_per_lun = 3;
1612 host->unique_id = ha->instance;
1613 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07001614 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001615 host->max_lun = MAX_LUNS;
1616 host->transportt = qla2xxx_transport_template;
1617
Andrew Vasquezfca29702005-07-06 10:31:47 -07001618 ret = request_irq(pdev->irq, ha->isp_ops.intr_handler,
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07001619 IRQF_DISABLED|IRQF_SHARED, QLA2XXX_DRIVER_NAME, ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001620 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 qla_printk(KERN_WARNING, ha,
1622 "Failed to reserve interrupt %d already in use.\n",
Andrew Vasquezfca29702005-07-06 10:31:47 -07001623 pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 goto probe_failed;
1625 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07001626 host->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /* Initialized the timer */
1629 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1630
1631 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1632 ha->host_no, ha));
1633
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001634 ha->isp_ops.disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquezfca29702005-07-06 10:31:47 -07001637 reg = ha->iobase;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001638 if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001639 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_HOST_INT);
1640 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_RISC_INT);
1641 } else {
1642 WRT_REG_WORD(&reg->isp.semaphore, 0);
1643 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_RISC_INT);
1644 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_HOST_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Andrew Vasquezfca29702005-07-06 10:31:47 -07001646 /* Enable proper parity */
1647 if (!IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1648 if (IS_QLA2300(ha))
1649 /* SRAM parity */
1650 WRT_REG_WORD(&reg->isp.hccr,
1651 (HCCR_ENABLE_PARITY + 0x1));
1652 else
1653 /* SRAM, Instruction RAM and GP RAM parity */
1654 WRT_REG_WORD(&reg->isp.hccr,
1655 (HCCR_ENABLE_PARITY + 0x7));
1656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
1658 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1659
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001660 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001662 pci_set_drvdata(pdev, ha);
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 ha->flags.init_done = 1;
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001665 ha->flags.online = 1;
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 num_hosts++;
1668
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001669 ret = scsi_add_host(host, &pdev->dev);
1670 if (ret)
1671 goto probe_failed;
1672
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001673 scsi_scan_host(host);
1674
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001675 qla2x00_alloc_sysfs_attr(ha);
1676
1677 qla2x00_init_host_attr(ha);
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 qla_printk(KERN_INFO, ha, "\n"
1680 " QLogic Fibre Channel HBA Driver: %s\n"
1681 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001682 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1683 qla2x00_version_str, ha->model_number,
1684 ha->model_desc ? ha->model_desc: "", pdev->device,
1685 ha->isp_ops.pci_info_str(ha, pci_info), pci_name(pdev),
1686 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
1687 ha->isp_ops.fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return 0;
1690
1691probe_failed:
1692 qla2x00_free_device(ha);
1693
1694 scsi_host_put(host);
1695
1696probe_disable_device:
1697 pci_disable_device(pdev);
1698
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001699probe_out:
1700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001703static void __devexit
1704qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 scsi_qla_host_t *ha;
1707
1708 ha = pci_get_drvdata(pdev);
1709
8482e1182005-04-17 15:04:54 -05001710 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
bdf79622005-04-17 15:06:53 -05001712 fc_remove_host(ha->host);
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 scsi_remove_host(ha->host);
1715
1716 qla2x00_free_device(ha);
1717
1718 scsi_host_put(ha->host);
1719
1720 pci_set_drvdata(pdev, NULL);
1721}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723static void
1724qla2x00_free_device(scsi_qla_host_t *ha)
1725{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /* Disable timer */
1727 if (ha->timer_active)
1728 qla2x00_stop_timer(ha);
1729
1730 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001731 if (ha->dpc_thread) {
1732 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Christoph Hellwig39a11242006-02-14 18:46:22 +01001734 /*
1735 * qla2xxx_wake_dpc checks for ->dpc_thread
1736 * so we need to zero it out.
1737 */
1738 ha->dpc_thread = NULL;
1739 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001742 if (ha->eft)
1743 qla2x00_trace_control(ha, TC_DISABLE, 0, 0);
1744
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001745 ha->flags.online = 0;
1746
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001747 /* Stop currently executing firmware. */
Andrew Vasquez18c6c122006-10-13 09:33:38 -07001748 qla2x00_try_to_stop_firmware(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001750 /* turn-off interrupts on the card */
1751 if (ha->interrupts_on)
1752 ha->isp_ops.disable_intrs(ha);
1753
1754 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /* Detach interrupts */
Zach Brown77347ff2006-04-18 21:09:22 -07001757 if (ha->host->irq)
1758 free_irq(ha->host->irq, ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 /* release io space registers */
1761 if (ha->iobase)
1762 iounmap(ha->iobase);
1763 pci_release_regions(ha->pdev);
1764
1765 pci_disable_device(ha->pdev);
1766}
1767
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001768static inline void
1769qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1770 int defer)
1771{
1772 unsigned long flags;
1773 struct fc_rport *rport;
1774
1775 if (!fcport->rport)
1776 return;
1777
1778 rport = fcport->rport;
1779 if (defer) {
1780 spin_lock_irqsave(&fcport->rport_lock, flags);
1781 fcport->drport = rport;
1782 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001783 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001784 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1785 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1786 } else {
1787 spin_lock_irqsave(&fcport->rport_lock, flags);
1788 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001789 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001790 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1791 fc_remote_port_delete(rport);
1792 }
1793}
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1797 *
1798 * Input: ha = adapter block pointer. fcport = port structure pointer.
1799 *
1800 * Return: None.
1801 *
1802 * Context:
1803 */
1804void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001805 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001807 if (atomic_read(&fcport->state) == FCS_ONLINE)
1808 qla2x00_schedule_rport_del(ha, fcport, defer);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001809
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001810 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 * We may need to retry the login, so don't change the state of the
1812 * port but do the retries.
1813 */
1814 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1815 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1816
1817 if (!do_login)
1818 return;
1819
1820 if (fcport->login_retry == 0) {
1821 fcport->login_retry = ha->login_retry_count;
1822 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1823
1824 DEBUG(printk("scsi(%ld): Port login retry: "
1825 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1826 "id = 0x%04x retry cnt=%d\n",
1827 ha->host_no,
1828 fcport->port_name[0],
1829 fcport->port_name[1],
1830 fcport->port_name[2],
1831 fcport->port_name[3],
1832 fcport->port_name[4],
1833 fcport->port_name[5],
1834 fcport->port_name[6],
1835 fcport->port_name[7],
1836 fcport->loop_id,
1837 fcport->login_retry));
1838 }
1839}
1840
1841/*
1842 * qla2x00_mark_all_devices_lost
1843 * Updates fcport state when device goes offline.
1844 *
1845 * Input:
1846 * ha = adapter block pointer.
1847 * fcport = port structure pointer.
1848 *
1849 * Return:
1850 * None.
1851 *
1852 * Context:
1853 */
1854void
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001855qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 fc_port_t *fcport;
1858
1859 list_for_each_entry(fcport, &ha->fcports, list) {
1860 if (fcport->port_type != FCT_TARGET)
1861 continue;
1862
1863 /*
1864 * No point in marking the device as lost, if the device is
1865 * already DEAD.
1866 */
1867 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1868 continue;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001869 if (atomic_read(&fcport->state) == FCS_ONLINE)
1870 qla2x00_schedule_rport_del(ha, fcport, defer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1872 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001873
Christoph Hellwig39a11242006-02-14 18:46:22 +01001874 if (defer)
1875 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
1878/*
1879* qla2x00_mem_alloc
1880* Allocates adapter memory.
1881*
1882* Returns:
1883* 0 = success.
1884* 1 = failure.
1885*/
1886static uint8_t
1887qla2x00_mem_alloc(scsi_qla_host_t *ha)
1888{
1889 char name[16];
1890 uint8_t status = 1;
1891 int retry= 10;
1892
1893 do {
1894 /*
1895 * This will loop only once if everything goes well, else some
1896 * number of retries will be performed to get around a kernel
1897 * bug where available mem is not allocated until after a
1898 * little delay and a retry.
1899 */
1900 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
1901 (ha->request_q_length + 1) * sizeof(request_t),
1902 &ha->request_dma, GFP_KERNEL);
1903 if (ha->request_ring == NULL) {
1904 qla_printk(KERN_WARNING, ha,
1905 "Memory Allocation failed - request_ring\n");
1906
1907 qla2x00_mem_free(ha);
1908 msleep(100);
1909
1910 continue;
1911 }
1912
1913 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
1914 (ha->response_q_length + 1) * sizeof(response_t),
1915 &ha->response_dma, GFP_KERNEL);
1916 if (ha->response_ring == NULL) {
1917 qla_printk(KERN_WARNING, ha,
1918 "Memory Allocation failed - response_ring\n");
1919
1920 qla2x00_mem_free(ha);
1921 msleep(100);
1922
1923 continue;
1924 }
1925
1926 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
1927 &ha->gid_list_dma, GFP_KERNEL);
1928 if (ha->gid_list == NULL) {
1929 qla_printk(KERN_WARNING, ha,
1930 "Memory Allocation failed - gid_list\n");
1931
1932 qla2x00_mem_free(ha);
1933 msleep(100);
1934
1935 continue;
1936 }
1937
Andrew Vasquezcb630672006-05-17 15:09:45 -07001938 snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
1939 ha->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
1941 DMA_POOL_SIZE, 8, 0);
1942 if (ha->s_dma_pool == NULL) {
1943 qla_printk(KERN_WARNING, ha,
1944 "Memory Allocation failed - s_dma_pool\n");
1945
1946 qla2x00_mem_free(ha);
1947 msleep(100);
1948
1949 continue;
1950 }
1951
1952 /* get consistent memory allocated for init control block */
1953 ha->init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1954 &ha->init_cb_dma);
1955 if (ha->init_cb == NULL) {
1956 qla_printk(KERN_WARNING, ha,
1957 "Memory Allocation failed - init_cb\n");
1958
1959 qla2x00_mem_free(ha);
1960 msleep(100);
1961
1962 continue;
1963 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07001964 memset(ha->init_cb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (qla2x00_allocate_sp_pool(ha)) {
1967 qla_printk(KERN_WARNING, ha,
1968 "Memory Allocation failed - "
1969 "qla2x00_allocate_sp_pool()\n");
1970
1971 qla2x00_mem_free(ha);
1972 msleep(100);
1973
1974 continue;
1975 }
1976
1977 /* Allocate memory for SNS commands */
1978 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1979 /* Get consistent memory allocated for SNS commands */
1980 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
1981 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma,
1982 GFP_KERNEL);
1983 if (ha->sns_cmd == NULL) {
1984 /* error */
1985 qla_printk(KERN_WARNING, ha,
1986 "Memory Allocation failed - sns_cmd\n");
1987
1988 qla2x00_mem_free(ha);
1989 msleep(100);
1990
1991 continue;
1992 }
1993 memset(ha->sns_cmd, 0, sizeof(struct sns_cmd_pkt));
1994 } else {
1995 /* Get consistent memory allocated for MS IOCB */
1996 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1997 &ha->ms_iocb_dma);
1998 if (ha->ms_iocb == NULL) {
1999 /* error */
2000 qla_printk(KERN_WARNING, ha,
2001 "Memory Allocation failed - ms_iocb\n");
2002
2003 qla2x00_mem_free(ha);
2004 msleep(100);
2005
2006 continue;
2007 }
2008 memset(ha->ms_iocb, 0, sizeof(ms_iocb_entry_t));
2009
2010 /*
2011 * Get consistent memory allocated for CT SNS
2012 * commands
2013 */
2014 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
2015 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma,
2016 GFP_KERNEL);
2017 if (ha->ct_sns == NULL) {
2018 /* error */
2019 qla_printk(KERN_WARNING, ha,
2020 "Memory Allocation failed - ct_sns\n");
2021
2022 qla2x00_mem_free(ha);
2023 msleep(100);
2024
2025 continue;
2026 }
2027 memset(ha->ct_sns, 0, sizeof(struct ct_sns_pkt));
Andrew Vasquez88729e52006-06-23 16:10:50 -07002028
2029 if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
2030 /*
2031 * Get consistent memory allocated for SFP
2032 * block.
2033 */
2034 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool,
2035 GFP_KERNEL, &ha->sfp_data_dma);
2036 if (ha->sfp_data == NULL) {
2037 qla_printk(KERN_WARNING, ha,
2038 "Memory Allocation failed - "
2039 "sfp_data\n");
2040
2041 qla2x00_mem_free(ha);
2042 msleep(100);
2043
2044 continue;
2045 }
2046 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
2047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
2049
2050 /* Done all allocations without any error. */
2051 status = 0;
2052
2053 } while (retry-- && status != 0);
2054
2055 if (status) {
2056 printk(KERN_WARNING
2057 "%s(): **** FAILED ****\n", __func__);
2058 }
2059
2060 return(status);
2061}
2062
2063/*
2064* qla2x00_mem_free
2065* Frees all adapter allocated memory.
2066*
2067* Input:
2068* ha = adapter block pointer.
2069*/
2070static void
2071qla2x00_mem_free(scsi_qla_host_t *ha)
2072{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct list_head *fcpl, *fcptemp;
2074 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 if (ha == NULL) {
2077 /* error */
2078 DEBUG2(printk("%s(): ERROR invalid ha pointer.\n", __func__));
2079 return;
2080 }
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 /* free sp pool */
2083 qla2x00_free_sp_pool(ha);
2084
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002085 if (ha->fw_dump) {
2086 if (ha->eft)
2087 dma_free_coherent(&ha->pdev->dev,
2088 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2089 vfree(ha->fw_dump);
2090 }
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (ha->sns_cmd)
2093 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2094 ha->sns_cmd, ha->sns_cmd_dma);
2095
2096 if (ha->ct_sns)
2097 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2098 ha->ct_sns, ha->ct_sns_dma);
2099
Andrew Vasquez88729e52006-06-23 16:10:50 -07002100 if (ha->sfp_data)
2101 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (ha->ms_iocb)
2104 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (ha->init_cb)
2107 dma_pool_free(ha->s_dma_pool, ha->init_cb, ha->init_cb_dma);
2108
2109 if (ha->s_dma_pool)
2110 dma_pool_destroy(ha->s_dma_pool);
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (ha->gid_list)
2113 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2114 ha->gid_list_dma);
2115
2116 if (ha->response_ring)
2117 dma_free_coherent(&ha->pdev->dev,
2118 (ha->response_q_length + 1) * sizeof(response_t),
2119 ha->response_ring, ha->response_dma);
2120
2121 if (ha->request_ring)
2122 dma_free_coherent(&ha->pdev->dev,
2123 (ha->request_q_length + 1) * sizeof(request_t),
2124 ha->request_ring, ha->request_dma);
2125
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002126 ha->eft = NULL;
2127 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 ha->sns_cmd = NULL;
2129 ha->sns_cmd_dma = 0;
2130 ha->ct_sns = NULL;
2131 ha->ct_sns_dma = 0;
2132 ha->ms_iocb = NULL;
2133 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 ha->init_cb = NULL;
2135 ha->init_cb_dma = 0;
2136
2137 ha->s_dma_pool = NULL;
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 ha->gid_list = NULL;
2140 ha->gid_list_dma = 0;
2141
2142 ha->response_ring = NULL;
2143 ha->response_dma = 0;
2144 ha->request_ring = NULL;
2145 ha->request_dma = 0;
2146
2147 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2148 fcport = list_entry(fcpl, fc_port_t, list);
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 /* fc ports */
2151 list_del_init(&fcport->list);
2152 kfree(fcport);
2153 }
2154 INIT_LIST_HEAD(&ha->fcports);
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002157 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 ha->fw_dump_reading = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002159
2160 vfree(ha->optrom_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
2162
2163/*
2164 * qla2x00_allocate_sp_pool
2165 * This routine is called during initialization to allocate
2166 * memory for local srb_t.
2167 *
2168 * Input:
2169 * ha = adapter block pointer.
2170 *
2171 * Context:
2172 * Kernel context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 */
2174static int
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002175qla2x00_allocate_sp_pool(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
2177 int rval;
2178
2179 rval = QLA_SUCCESS;
Matthew Dobson93d23412006-03-26 01:37:50 -08002180 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (ha->srb_mempool == NULL) {
2182 qla_printk(KERN_INFO, ha, "Unable to allocate SRB mempool.\n");
2183 rval = QLA_FUNCTION_FAILED;
2184 }
2185 return (rval);
2186}
2187
2188/*
2189 * This routine frees all adapter allocated memory.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002190 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 */
2192static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002193qla2x00_free_sp_pool( scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
2195 if (ha->srb_mempool) {
2196 mempool_destroy(ha->srb_mempool);
2197 ha->srb_mempool = NULL;
2198 }
2199}
2200
2201/**************************************************************************
2202* qla2x00_do_dpc
2203* This kernel thread is a task that is schedule by the interrupt handler
2204* to perform the background processing for interrupts.
2205*
2206* Notes:
2207* This task always run in the context of a kernel thread. It
2208* is kick-off by the driver's detect code and starts up
2209* up one per adapter. It immediately goes to sleep and waits for
2210* some fibre event. When either the interrupt handler or
2211* the timer routine detects a event it will one of the task
2212* bits then wake us up.
2213**************************************************************************/
2214static int
2215qla2x00_do_dpc(void *data)
2216{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 scsi_qla_host_t *ha;
2218 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 uint16_t next_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 ha = (scsi_qla_host_t *)data;
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 set_user_nice(current, -20);
2225
Christoph Hellwig39a11242006-02-14 18:46:22 +01002226 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2228
Christoph Hellwig39a11242006-02-14 18:46:22 +01002229 set_current_state(TASK_INTERRUPTIBLE);
2230 schedule();
2231 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2234
2235 /* Initialization not yet finished. Don't do anything yet. */
Christoph Hellwig39a11242006-02-14 18:46:22 +01002236 if (!ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 continue;
2238
2239 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2240
2241 ha->dpc_active = 1;
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 ha->dpc_active = 0;
2245 continue;
2246 }
2247
2248 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2249
2250 DEBUG(printk("scsi(%ld): dpc: sched "
2251 "qla2x00_abort_isp ha = %p\n",
2252 ha->host_no, ha));
2253 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2254 &ha->dpc_flags))) {
2255
2256 if (qla2x00_abort_isp(ha)) {
2257 /* failed. retry later */
2258 set_bit(ISP_ABORT_NEEDED,
2259 &ha->dpc_flags);
2260 }
2261 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2262 }
2263 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2264 ha->host_no));
2265 }
2266
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002267 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2268 qla2x00_update_fcports(ha);
2269
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002270 if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) {
2271 DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n",
2272 ha->host_no));
2273 qla2x00_loop_reset(ha);
2274 }
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2277 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2278
2279 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2280 ha->host_no));
2281
2282 qla2x00_rst_aen(ha);
2283 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2284 }
2285
2286 /* Retry each device up to login retry count */
2287 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2288 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2289 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2290
2291 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2292 ha->host_no));
2293
2294 next_loopid = 0;
2295 list_for_each_entry(fcport, &ha->fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 /*
2297 * If the port is not ONLINE then try to login
2298 * to it if we haven't run out of retries.
2299 */
2300 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2301 fcport->login_retry) {
2302
2303 fcport->login_retry--;
2304 if (fcport->flags & FCF_FABRIC_DEVICE) {
2305 if (fcport->flags &
2306 FCF_TAPE_PRESENT)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002307 ha->isp_ops.fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002308 ha, fcport->loop_id,
2309 fcport->d_id.b.domain,
2310 fcport->d_id.b.area,
2311 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 status = qla2x00_fabric_login(
2313 ha, fcport, &next_loopid);
2314 } else
2315 status =
2316 qla2x00_local_device_login(
andrew.vasquez@qlogic.com9a52a572006-03-09 14:27:44 -08002317 ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 if (status == QLA_SUCCESS) {
2320 fcport->old_loop_id = fcport->loop_id;
2321
2322 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2323 ha->host_no, fcport->loop_id));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002324
andrew.vasquez@qlogic.com052c40c2006-01-20 14:53:19 -08002325 qla2x00_update_fcport(ha,
2326 fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 } else if (status == 1) {
2328 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2329 /* retry the login again */
2330 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2331 ha->host_no,
2332 fcport->login_retry, fcport->loop_id));
2333 } else {
2334 fcport->login_retry = 0;
2335 }
2336 }
2337 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2338 break;
2339 }
2340 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2341 ha->host_no));
2342 }
2343
2344 if ((test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags)) &&
2345 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2346
2347 clear_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags);
2348 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2349 ha->host_no));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2352
2353 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2354 ha->host_no));
2355 }
2356
2357 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2358
2359 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2360 ha->host_no));
2361
2362 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2363 &ha->dpc_flags))) {
2364
2365 qla2x00_loop_resync(ha);
2366
2367 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2368 }
2369
2370 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2371 ha->host_no));
2372 }
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED, &ha->dpc_flags)) {
2375
2376 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2377 ha->host_no));
2378
2379 qla2x00_rescan_fcports(ha);
2380
2381 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2382 "end.\n",
2383 ha->host_no));
2384 }
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (!ha->interrupts_on)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002387 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002389 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
2390 ha->isp_ops.beacon_blink(ha);
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 ha->dpc_active = 0;
2393 } /* End of while(1) */
2394
2395 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2396
2397 /*
2398 * Make sure that nobody tries to wake us up again.
2399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 ha->dpc_active = 0;
2401
Christoph Hellwig39a11242006-02-14 18:46:22 +01002402 return 0;
2403}
2404
2405void
2406qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2407{
2408 if (ha->dpc_thread)
2409 wake_up_process(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
2412/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413* qla2x00_rst_aen
2414* Processes asynchronous reset.
2415*
2416* Input:
2417* ha = adapter block pointer.
2418*/
2419static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002420qla2x00_rst_aen(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
2422 if (ha->flags.online && !ha->flags.reset_active &&
2423 !atomic_read(&ha->loop_down_timer) &&
2424 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2425 do {
2426 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2427
2428 /*
2429 * Issue marker command only when we are going to start
2430 * the I/O.
2431 */
2432 ha->marker_needed = 1;
2433 } while (!atomic_read(&ha->loop_down_timer) &&
2434 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2435 }
2436}
2437
f4f051e2005-04-17 15:02:26 -05002438static void
2439qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2440{
2441 struct scsi_cmnd *cmd = sp->cmd;
2442
2443 if (sp->flags & SRB_DMA_VALID) {
2444 if (cmd->use_sg) {
2445 dma_unmap_sg(&ha->pdev->dev, cmd->request_buffer,
2446 cmd->use_sg, cmd->sc_data_direction);
2447 } else if (cmd->request_bufflen) {
2448 dma_unmap_single(&ha->pdev->dev, sp->dma_handle,
2449 cmd->request_bufflen, cmd->sc_data_direction);
2450 }
2451 sp->flags &= ~SRB_DMA_VALID;
2452 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002453 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002454}
2455
2456void
2457qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2458{
2459 struct scsi_cmnd *cmd = sp->cmd;
2460
2461 qla2x00_sp_free_dma(ha, sp);
2462
f4f051e2005-04-17 15:02:26 -05002463 mempool_free(sp, ha->srb_mempool);
2464
2465 cmd->scsi_done(cmd);
2466}
bdf79622005-04-17 15:06:53 -05002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468/**************************************************************************
2469* qla2x00_timer
2470*
2471* Description:
2472* One second timer
2473*
2474* Context: Interrupt
2475***************************************************************************/
2476static void
2477qla2x00_timer(scsi_qla_host_t *ha)
2478{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 unsigned long cpu_flags = 0;
2480 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 int start_dpc = 0;
2482 int index;
2483 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002484 int t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 /*
2487 * Ports - Port down timer.
2488 *
2489 * Whenever, a port is in the LOST state we start decrementing its port
2490 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002491 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
2493 t = 0;
2494 list_for_each_entry(fcport, &ha->fcports, list) {
2495 if (fcport->port_type != FCT_TARGET)
2496 continue;
2497
2498 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2499
2500 if (atomic_read(&fcport->port_down_timer) == 0)
2501 continue;
2502
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002503 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002507 "%d remaining\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 ha->host_no,
2509 t, atomic_read(&fcport->port_down_timer)));
2510 }
2511 t++;
2512 } /* End of for fcport */
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 /* Loop down handler. */
2516 if (atomic_read(&ha->loop_down_timer) > 0 &&
2517 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2518
2519 if (atomic_read(&ha->loop_down_timer) ==
2520 ha->loop_down_abort_time) {
2521
2522 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2523 "queues before time expire\n",
2524 ha->host_no));
2525
2526 if (!IS_QLA2100(ha) && ha->link_down_timeout)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002527 atomic_set(&ha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 /* Schedule an ISP abort to return any tape commands. */
2530 spin_lock_irqsave(&ha->hardware_lock, cpu_flags);
2531 for (index = 1; index < MAX_OUTSTANDING_COMMANDS;
2532 index++) {
bdf79622005-04-17 15:06:53 -05002533 fc_port_t *sfcp;
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 sp = ha->outstanding_cmds[index];
2536 if (!sp)
2537 continue;
bdf79622005-04-17 15:06:53 -05002538 sfcp = sp->fcport;
2539 if (!(sfcp->flags & FCF_TAPE_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 continue;
2541
2542 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2543 break;
2544 }
2545 spin_unlock_irqrestore(&ha->hardware_lock, cpu_flags);
2546
2547 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2548 start_dpc++;
2549 }
2550
2551 /* if the loop has been down for 4 minutes, reinit adapter */
2552 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2553 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2554 "restarting queues.\n",
2555 ha->host_no));
2556
2557 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2558 start_dpc++;
2559
2560 if (!(ha->device_flags & DFLG_NO_CABLE)) {
2561 DEBUG(printk("scsi(%ld): Loop down - "
2562 "aborting ISP.\n",
2563 ha->host_no));
2564 qla_printk(KERN_WARNING, ha,
2565 "Loop down - aborting ISP.\n");
2566
2567 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2568 }
2569 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002570 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 ha->host_no,
2572 atomic_read(&ha->loop_down_timer)));
2573 }
2574
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002575 /* Check if beacon LED needs to be blinked */
2576 if (ha->beacon_blink_led == 1) {
2577 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2578 start_dpc++;
2579 }
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 /* Schedule the DPC routine if needed */
2582 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2583 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002584 test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002585 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 start_dpc ||
2587 test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) ||
f4f051e2005-04-17 15:02:26 -05002588 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002589 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
Christoph Hellwig39a11242006-02-14 18:46:22 +01002590 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
2591 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2594}
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596/* XXX(hch): crude hack to emulate a down_timeout() */
2597int
2598qla2x00_down_timeout(struct semaphore *sema, unsigned long timeout)
2599{
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002600 const unsigned int step = 100; /* msecs */
2601 unsigned int iterations = jiffies_to_msecs(timeout)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 do {
2604 if (!down_trylock(sema))
2605 return 0;
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002606 if (msleep_interruptible(step))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 break;
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002608 } while (--iterations >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 return -ETIMEDOUT;
2611}
2612
Andrew Vasquez54333832005-11-09 15:49:04 -08002613/* Firmware interface routines. */
2614
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002615#define FW_BLOBS 5
Andrew Vasquez54333832005-11-09 15:49:04 -08002616#define FW_ISP21XX 0
2617#define FW_ISP22XX 1
2618#define FW_ISP2300 2
2619#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002620#define FW_ISP24XX 4
Andrew Vasquez54333832005-11-09 15:49:04 -08002621
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002622#define FW_FILE_ISP21XX "ql2100_fw.bin"
2623#define FW_FILE_ISP22XX "ql2200_fw.bin"
2624#define FW_FILE_ISP2300 "ql2300_fw.bin"
2625#define FW_FILE_ISP2322 "ql2322_fw.bin"
2626#define FW_FILE_ISP24XX "ql2400_fw.bin"
2627
Andrew Vasquez54333832005-11-09 15:49:04 -08002628static DECLARE_MUTEX(qla_fw_lock);
2629
2630static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002631 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2632 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2633 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2634 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2635 { .name = FW_FILE_ISP24XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002636};
2637
2638struct fw_blob *
2639qla2x00_request_firmware(scsi_qla_host_t *ha)
2640{
2641 struct fw_blob *blob;
2642
2643 blob = NULL;
2644 if (IS_QLA2100(ha)) {
2645 blob = &qla_fw_blobs[FW_ISP21XX];
2646 } else if (IS_QLA2200(ha)) {
2647 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002648 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002649 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002650 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002651 blob = &qla_fw_blobs[FW_ISP2322];
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08002652 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002653 blob = &qla_fw_blobs[FW_ISP24XX];
2654 }
2655
2656 down(&qla_fw_lock);
2657 if (blob->fw)
2658 goto out;
2659
2660 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2661 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2662 "(%s).\n", ha->host_no, blob->name));
2663 blob->fw = NULL;
2664 blob = NULL;
2665 goto out;
2666 }
2667
2668out:
2669 up(&qla_fw_lock);
2670 return blob;
2671}
2672
2673static void
2674qla2x00_release_firmware(void)
2675{
2676 int idx;
2677
2678 down(&qla_fw_lock);
2679 for (idx = 0; idx < FW_BLOBS; idx++)
2680 if (qla_fw_blobs[idx].fw)
2681 release_firmware(qla_fw_blobs[idx].fw);
2682 up(&qla_fw_lock);
2683}
2684
Andrew Vasquez54333832005-11-09 15:49:04 -08002685static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002686 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2687 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2688 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2689 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2690 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2691 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2692 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2693 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2694 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
2695 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2696 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquez54333832005-11-09 15:49:04 -08002697 { 0 },
2698};
2699MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2700
Andrew Vasquezfca29702005-07-06 10:31:47 -07002701static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07002702 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06002703 .driver = {
2704 .owner = THIS_MODULE,
2705 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002706 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002707 .probe = qla2x00_probe_one,
2708 .remove = __devexit_p(qla2x00_remove_one),
Andrew Vasquezfca29702005-07-06 10:31:47 -07002709};
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711/**
2712 * qla2x00_module_init - Module initialization.
2713 **/
2714static int __init
2715qla2x00_module_init(void)
2716{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002717 int ret = 0;
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002720 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 SLAB_HWCACHE_ALIGN, NULL, NULL);
2722 if (srb_cachep == NULL) {
2723 printk(KERN_ERR
2724 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2725 return -ENOMEM;
2726 }
2727
2728 /* Derive version string. */
2729 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002730 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07002731 strcat(qla2x00_version_str, "-debug");
2732
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002733 qla2xxx_transport_template =
2734 fc_attach_transport(&qla2xxx_transport_functions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 if (!qla2xxx_transport_template)
2736 return -ENODEV;
2737
2738 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002739 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002740 if (ret) {
2741 kmem_cache_destroy(srb_cachep);
2742 fc_release_transport(qla2xxx_transport_template);
2743 }
2744 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
2747/**
2748 * qla2x00_module_exit - Module cleanup.
2749 **/
2750static void __exit
2751qla2x00_module_exit(void)
2752{
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002753 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08002754 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002755 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 fc_release_transport(qla2xxx_transport_template);
2757}
2758
2759module_init(qla2x00_module_init);
2760module_exit(qla2x00_module_exit);
2761
2762MODULE_AUTHOR("QLogic Corporation");
2763MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2764MODULE_LICENSE("GPL");
2765MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002766MODULE_FIRMWARE(FW_FILE_ISP21XX);
2767MODULE_FIRMWARE(FW_FILE_ISP22XX);
2768MODULE_FIRMWARE(FW_FILE_ISP2300);
2769MODULE_FIRMWARE(FW_FILE_ISP2322);
2770MODULE_FIRMWARE(FW_FILE_ISP24XX);