blob: 131614751196c3966eededb5292dac5ad29f6932 [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 */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -040027static kmem_cache_t *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,
42 "Maximum number of command retries to a port that returns"
43 "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 "
49 "a Fabric scan. This is needed for several broken switches."
50 "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 Vasquez331e3472005-11-09 15:49:19 -080057#if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE)
58int ql2xfwloadflash;
59module_param(ql2xfwloadflash, int, S_IRUGO|S_IRUSR);
60MODULE_PARM_DESC(ql2xfwloadflash,
61 "Load ISP24xx firmware image from FLASH (onboard memory).");
62#endif
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void qla2x00_free_device(scsi_qla_host_t *);
65
66static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
67
Andrew Vasquezcca53352005-08-26 19:08:30 -070068int ql2xfdmienable;
69module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
70MODULE_PARM_DESC(ql2xfdmienable,
71 "Enables FDMI registratons "
72 "Default is 0 - no FDMI. 1 - perfom FDMI.");
73
andrew.vasquez@qlogic.com79f89a42006-01-13 17:05:58 -080074int ql2xprocessrscn;
75module_param(ql2xprocessrscn, int, S_IRUGO|S_IRUSR);
76MODULE_PARM_DESC(ql2xprocessrscn,
77 "Option to enable port RSCN handling via a series of less"
78 "fabric intrusive ADISCs and PLOGIs.");
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070081 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
83static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -050084static int qla2xxx_slave_alloc(struct scsi_device *);
85static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
87 void (*fn)(struct scsi_cmnd *));
Andrew Vasquezfca29702005-07-06 10:31:47 -070088static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
89 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int qla2xxx_eh_abort(struct scsi_cmnd *);
91static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
92static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
93static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
94static int qla2x00_loop_reset(scsi_qla_host_t *ha);
95static int qla2x00_device_reset(scsi_qla_host_t *, fc_port_t *);
96
Andrew Vasquezce7e4af2005-08-26 19:09:30 -070097static int qla2x00_change_queue_depth(struct scsi_device *, int);
98static int qla2x00_change_queue_type(struct scsi_device *, int);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct scsi_host_template qla2x00_driver_template = {
101 .module = THIS_MODULE,
102 .name = "qla2xxx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .queuecommand = qla2x00_queuecommand,
104
105 .eh_abort_handler = qla2xxx_eh_abort,
106 .eh_device_reset_handler = qla2xxx_eh_device_reset,
107 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
108 .eh_host_reset_handler = qla2xxx_eh_host_reset,
109
110 .slave_configure = qla2xxx_slave_configure,
111
f4f051e2005-04-17 15:02:26 -0500112 .slave_alloc = qla2xxx_slave_alloc,
113 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700114 .change_queue_depth = qla2x00_change_queue_depth,
115 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .this_id = -1,
117 .cmd_per_lun = 3,
118 .use_clustering = ENABLE_CLUSTERING,
119 .sg_tablesize = SG_ALL,
120
121 /*
122 * The RISC allows for each command to transfer (2^32-1) bytes of data,
123 * which equates to 0x800000 sectors.
124 */
125 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700126 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
Andrew Vasquezfca29702005-07-06 10:31:47 -0700129static struct scsi_host_template qla24xx_driver_template = {
130 .module = THIS_MODULE,
131 .name = "qla2xxx",
132 .queuecommand = qla24xx_queuecommand,
133
134 .eh_abort_handler = qla2xxx_eh_abort,
135 .eh_device_reset_handler = qla2xxx_eh_device_reset,
136 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
137 .eh_host_reset_handler = qla2xxx_eh_host_reset,
138
139 .slave_configure = qla2xxx_slave_configure,
140
141 .slave_alloc = qla2xxx_slave_alloc,
142 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700143 .change_queue_depth = qla2x00_change_queue_depth,
144 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700145 .this_id = -1,
146 .cmd_per_lun = 3,
147 .use_clustering = ENABLE_CLUSTERING,
148 .sg_tablesize = SG_ALL,
149
150 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700151 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700152};
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static struct scsi_transport_template *qla2xxx_transport_template = NULL;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/* TODO Convert to inlines
157 *
158 * Timer routines
159 */
160#define WATCH_INTERVAL 1 /* number of seconds */
161
162static void qla2x00_timer(scsi_qla_host_t *);
163
164static __inline__ void qla2x00_start_timer(scsi_qla_host_t *,
165 void *, unsigned long);
166static __inline__ void qla2x00_restart_timer(scsi_qla_host_t *, unsigned long);
167static __inline__ void qla2x00_stop_timer(scsi_qla_host_t *);
168
169static inline void
170qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
171{
172 init_timer(&ha->timer);
173 ha->timer.expires = jiffies + interval * HZ;
174 ha->timer.data = (unsigned long)ha;
175 ha->timer.function = (void (*)(unsigned long))func;
176 add_timer(&ha->timer);
177 ha->timer_active = 1;
178}
179
180static inline void
181qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
182{
183 mod_timer(&ha->timer, jiffies + interval * HZ);
184}
185
186static __inline__ void
187qla2x00_stop_timer(scsi_qla_host_t *ha)
188{
189 del_timer_sync(&ha->timer);
190 ha->timer_active = 0;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static int qla2x00_do_dpc(void *data);
194
195static void qla2x00_rst_aen(scsi_qla_host_t *);
196
197static uint8_t qla2x00_mem_alloc(scsi_qla_host_t *);
198static void qla2x00_mem_free(scsi_qla_host_t *ha);
199static int qla2x00_allocate_sp_pool( scsi_qla_host_t *ha);
200static void qla2x00_free_sp_pool(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500201static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
202void qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/* -------------------------------------------------------------------------- */
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700207qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 static char *pci_bus_modes[] = {
210 "33", "66", "100", "133",
211 };
212 uint16_t pci_bus;
213
214 strcpy(str, "PCI");
215 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
216 if (pci_bus) {
217 strcat(str, "-X (");
218 strcat(str, pci_bus_modes[pci_bus]);
219 } else {
220 pci_bus = (ha->pci_attr & BIT_8) >> 8;
221 strcat(str, " (");
222 strcat(str, pci_bus_modes[pci_bus]);
223 }
224 strcat(str, " MHz)");
225
226 return (str);
227}
228
Andrew Vasquezfca29702005-07-06 10:31:47 -0700229static char *
230qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
231{
232 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
233 uint32_t pci_bus;
234 int pcie_reg;
235
236 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
237 if (pcie_reg) {
238 char lwstr[6];
239 uint16_t pcie_lstat, lspeed, lwidth;
240
241 pcie_reg += 0x12;
242 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
243 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
244 lwidth = (pcie_lstat &
245 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
246
247 strcpy(str, "PCIe (");
248 if (lspeed == 1)
249 strcat(str, "2.5Gb/s ");
250 else
251 strcat(str, "<unknown> ");
252 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
253 strcat(str, lwstr);
254
255 return str;
256 }
257
258 strcpy(str, "PCI");
259 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
260 if (pci_bus == 0 || pci_bus == 8) {
261 strcat(str, " (");
262 strcat(str, pci_bus_modes[pci_bus >> 3]);
263 } else {
264 strcat(str, "-X ");
265 if (pci_bus & BIT_2)
266 strcat(str, "Mode 2");
267 else
268 strcat(str, "Mode 1");
269 strcat(str, " (");
270 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
271 }
272 strcat(str, " MHz)");
273
274 return str;
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700278qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 char un_str[10];
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
283 ha->fw_minor_version,
284 ha->fw_subminor_version);
285
286 if (ha->fw_attributes & BIT_9) {
287 strcat(str, "FLX");
288 return (str);
289 }
290
291 switch (ha->fw_attributes & 0xFF) {
292 case 0x7:
293 strcat(str, "EF");
294 break;
295 case 0x17:
296 strcat(str, "TP");
297 break;
298 case 0x37:
299 strcat(str, "IP");
300 break;
301 case 0x77:
302 strcat(str, "VI");
303 break;
304 default:
305 sprintf(un_str, "(%x)", ha->fw_attributes);
306 strcat(str, un_str);
307 break;
308 }
309 if (ha->fw_attributes & 0x100)
310 strcat(str, "X");
311
312 return (str);
313}
314
Andrew Vasquezfca29702005-07-06 10:31:47 -0700315char *
316qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
317{
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700318 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
319 ha->fw_minor_version,
320 ha->fw_subminor_version);
321
Andrew Vasquezfca29702005-07-06 10:31:47 -0700322 if (ha->fw_attributes & BIT_0)
323 strcat(str, "[Class 2] ");
324 if (ha->fw_attributes & BIT_1)
325 strcat(str, "[IP] ");
326 if (ha->fw_attributes & BIT_2)
327 strcat(str, "[Multi-ID] ");
328 if (ha->fw_attributes & BIT_13)
329 strcat(str, "[Experimental]");
330 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700331}
332
333static inline srb_t *
334qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
335 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
336{
337 srb_t *sp;
338
339 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
340 if (!sp)
341 return sp;
342
343 atomic_set(&sp->ref_count, 1);
344 sp->ha = ha;
345 sp->fcport = fcport;
346 sp->cmd = cmd;
347 sp->flags = 0;
348 CMD_SP(cmd) = (void *)sp;
349 cmd->scsi_done = done;
350
351 return sp;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static int
f4f051e2005-04-17 15:02:26 -0500355qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
f4f051e2005-04-17 15:02:26 -0500357 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500358 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400359 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051e2005-04-17 15:02:26 -0500360 srb_t *sp;
361 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400363 rval = fc_remote_port_chkready(rport);
364 if (rval) {
365 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500366 goto qc_fail_command;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800369 /* Close window on fcport/rport state-transitioning. */
370 if (!*(fc_port_t **)rport->dd_data) {
371 cmd->result = DID_IMM_RETRY << 16;
372 goto qc_fail_command;
373 }
374
f4f051e2005-04-17 15:02:26 -0500375 if (atomic_read(&fcport->state) != FCS_ONLINE) {
376 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
377 atomic_read(&ha->loop_state) == LOOP_DEAD) {
378 cmd->result = DID_NO_CONNECT << 16;
379 goto qc_fail_command;
380 }
381 goto qc_host_busy;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 spin_unlock_irq(ha->host->host_lock);
385
Andrew Vasquezfca29702005-07-06 10:31:47 -0700386 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
387 if (!sp)
f4f051e2005-04-17 15:02:26 -0500388 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
f4f051e2005-04-17 15:02:26 -0500390 rval = qla2x00_start_scsi(sp);
391 if (rval != QLA_SUCCESS)
392 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 spin_lock_irq(ha->host->host_lock);
395
f4f051e2005-04-17 15:02:26 -0500396 return 0;
397
398qc_host_busy_free_sp:
399 qla2x00_sp_free_dma(ha, sp);
f4f051e2005-04-17 15:02:26 -0500400 mempool_free(sp, ha->srb_mempool);
401
402qc_host_busy_lock:
403 spin_lock_irq(ha->host->host_lock);
404
405qc_host_busy:
406 return SCSI_MLQUEUE_HOST_BUSY;
407
408qc_fail_command:
409 done(cmd);
410
411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Andrew Vasquezfca29702005-07-06 10:31:47 -0700414
415static int
416qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
417{
418 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
419 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400420 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700421 srb_t *sp;
422 int rval;
423
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400424 rval = fc_remote_port_chkready(rport);
425 if (rval) {
426 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700427 goto qc24_fail_command;
428 }
429
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800430 /* Close window on fcport/rport state-transitioning. */
431 if (!*(fc_port_t **)rport->dd_data) {
432 cmd->result = DID_IMM_RETRY << 16;
433 goto qc24_fail_command;
434 }
435
Andrew Vasquezfca29702005-07-06 10:31:47 -0700436 if (atomic_read(&fcport->state) != FCS_ONLINE) {
437 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
438 atomic_read(&ha->loop_state) == LOOP_DEAD) {
439 cmd->result = DID_NO_CONNECT << 16;
440 goto qc24_fail_command;
441 }
442 goto qc24_host_busy;
443 }
444
445 spin_unlock_irq(ha->host->host_lock);
446
447 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
448 if (!sp)
449 goto qc24_host_busy_lock;
450
451 rval = qla24xx_start_scsi(sp);
452 if (rval != QLA_SUCCESS)
453 goto qc24_host_busy_free_sp;
454
455 spin_lock_irq(ha->host->host_lock);
456
457 return 0;
458
459qc24_host_busy_free_sp:
460 qla2x00_sp_free_dma(ha, sp);
461 mempool_free(sp, ha->srb_mempool);
462
463qc24_host_busy_lock:
464 spin_lock_irq(ha->host->host_lock);
465
466qc24_host_busy:
467 return SCSI_MLQUEUE_HOST_BUSY;
468
469qc24_fail_command:
470 done(cmd);
471
472 return 0;
473}
474
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * qla2x00_eh_wait_on_command
478 * Waits for the command to be returned by the Firmware for some
479 * max time.
480 *
481 * Input:
482 * ha = actual ha whose done queue will contain the command
483 * returned by firmware.
484 * cmd = Scsi Command to wait on.
485 * flag = Abort/Reset(Bus or Device Reset)
486 *
487 * Return:
488 * Not Found : 0
489 * Found : 1
490 */
491static int
492qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
493{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700494#define ABORT_POLLING_PERIOD 1000
495#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500496 unsigned long wait_iter = ABORT_WAIT_ITER;
497 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
f4f051e2005-04-17 15:02:26 -0500499 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700500 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
f4f051e2005-04-17 15:02:26 -0500502 if (--wait_iter)
503 break;
504 }
505 if (CMD_SP(cmd))
506 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
f4f051e2005-04-17 15:02:26 -0500508 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/*
512 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700513 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * <= MAX_RETRIES_OF_ISP_ABORT or
515 * finally HBA is disabled ie marked offline
516 *
517 * Input:
518 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700519 *
520 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * Does context switching-Release SPIN_LOCK
522 * (if any) before calling this routine.
523 *
524 * Return:
525 * Success (Adapter is online) : 0
526 * Failed (Adapter is offline/disabled) : 1
527 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800528int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
530{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700531 int return_status;
532 unsigned long wait_online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700534 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 while (((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) ||
536 test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) ||
537 test_bit(ISP_ABORT_RETRY, &ha->dpc_flags) ||
538 ha->dpc_active) && time_before(jiffies, wait_online)) {
539
540 msleep(1000);
541 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700542 if (ha->flags.online)
543 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 else
545 return_status = QLA_FUNCTION_FAILED;
546
547 DEBUG2(printk("%s return_status=%d\n",__func__,return_status));
548
549 return (return_status);
550}
551
552/*
553 * qla2x00_wait_for_loop_ready
554 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700555 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * Input:
557 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700558 *
559 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * Does context switching-Release SPIN_LOCK
561 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700562 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *
564 * Return:
565 * Success (LOOP_READY) : 0
566 * Failed (LOOP_NOT_READY) : 1
567 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700568static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
570{
571 int return_status = QLA_SUCCESS;
572 unsigned long loop_timeout ;
573
574 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700575 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 while ((!atomic_read(&ha->loop_down_timer) &&
578 atomic_read(&ha->loop_state) == LOOP_DOWN) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 atomic_read(&ha->loop_state) != LOOP_READY) {
580 msleep(1000);
581 if (time_after_eq(jiffies, loop_timeout)) {
582 return_status = QLA_FUNCTION_FAILED;
583 break;
584 }
585 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700586 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589/**************************************************************************
590* qla2xxx_eh_abort
591*
592* Description:
593* The abort function will abort the specified command.
594*
595* Input:
596* cmd = Linux SCSI command packet to be aborted.
597*
598* Returns:
599* Either SUCCESS or FAILED.
600*
601* Note:
602**************************************************************************/
603int
604qla2xxx_eh_abort(struct scsi_cmnd *cmd)
605{
f4f051e2005-04-17 15:02:26 -0500606 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
607 srb_t *sp;
608 int ret, i;
609 unsigned int id, lun;
610 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700611 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
f4f051e2005-04-17 15:02:26 -0500613 if (!CMD_SP(cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
f4f051e2005-04-17 15:02:26 -0500616 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
f4f051e2005-04-17 15:02:26 -0500618 id = cmd->device->id;
619 lun = cmd->device->lun;
620 serial = cmd->serial_number;
621
622 /* Check active list for command command. */
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700623 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500624 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
625 sp = ha->outstanding_cmds[i];
626
627 if (sp == NULL)
628 continue;
629
630 if (sp->cmd != cmd)
631 continue;
632
633 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld "
634 "sp->state=%x\n", __func__, ha->host_no, sp, serial,
635 sp->state));
636 DEBUG3(qla2x00_print_scsi_cmd(cmd);)
637
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700638 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700639 if (ha->isp_ops.abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500640 DEBUG2(printk("%s(%ld): abort_command "
641 "mbx failed.\n", __func__, ha->host_no));
642 } else {
643 DEBUG3(printk("%s(%ld): abort_command "
644 "mbx success.\n", __func__, ha->host_no));
645 ret = SUCCESS;
646 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700647 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500648
649 break;
650 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700651 spin_unlock_irqrestore(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500652
653 /* Wait for the command to be returned. */
654 if (ret == SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500655 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700656 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500657 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
658 "%x.\n", ha->host_no, id, lun, serial, ret);
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700662 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500663 "scsi(%ld:%d:%d): Abort command issued -- %lx %x.\n", ha->host_no,
664 id, lun, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
f4f051e2005-04-17 15:02:26 -0500666 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**************************************************************************
670* qla2x00_eh_wait_for_pending_target_commands
671*
672* Description:
673* Waits for all the commands to come back from the specified target.
674*
675* Input:
676* ha - pointer to scsi_qla_host structure.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700677* t - target
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678* Returns:
679* Either SUCCESS or FAILED.
680*
681* Note:
682**************************************************************************/
683static int
684qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t *ha, unsigned int t)
685{
686 int cnt;
687 int status;
688 srb_t *sp;
689 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700690 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 status = 0;
693
694 /*
695 * Waiting for all commands for the designated target in the active
696 * array
697 */
698 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700699 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 sp = ha->outstanding_cmds[cnt];
701 if (sp) {
702 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700703 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (cmd->device->id == t) {
705 if (!qla2x00_eh_wait_on_command(ha, cmd)) {
706 status = 1;
707 break;
708 }
709 }
f4f051e2005-04-17 15:02:26 -0500710 } else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700711 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 }
714 return (status);
715}
716
717
718/**************************************************************************
719* qla2xxx_eh_device_reset
720*
721* Description:
722* The device reset function will reset the target and abort any
723* executing commands.
724*
725* NOTE: The use of SP is undefined within this context. Do *NOT*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700726* attempt to use this value, even if you determine it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727* non-null.
728*
729* Input:
730* cmd = Linux SCSI command packet of the command that cause the
731* bus device reset.
732*
733* Returns:
734* SUCCESS/FAILURE (defined as macro in scsi.h).
735*
736**************************************************************************/
737int
738qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
739{
f4f051e2005-04-17 15:02:26 -0500740 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500741 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500742 srb_t *sp;
743 int ret;
744 unsigned int id, lun;
745 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
f4f051e2005-04-17 15:02:26 -0500747 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
f4f051e2005-04-17 15:02:26 -0500749 id = cmd->device->id;
750 lun = cmd->device->lun;
751 serial = cmd->serial_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
f4f051e2005-04-17 15:02:26 -0500753 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500754 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500758 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400760 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 goto eh_dev_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500764 if (qla2x00_device_reset(ha, fcport) == 0)
765 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767#if defined(LOGOUT_AFTER_DEVICE_RESET)
f4f051e2005-04-17 15:02:26 -0500768 if (ret == SUCCESS) {
769 if (fcport->flags & FC_FABRIC_DEVICE) {
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700770 ha->isp_ops.fabric_logout(ha, fcport->loop_id);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -0800771 qla2x00_mark_device_lost(ha, fcport, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
774#endif
775 } else {
776 DEBUG2(printk(KERN_INFO
777 "%s failed: loop not ready\n",__func__);)
778 }
779
f4f051e2005-04-17 15:02:26 -0500780 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 DEBUG3(printk("%s(%ld): device reset failed\n",
782 __func__, ha->host_no));
783 qla_printk(KERN_INFO, ha, "%s: device reset failed\n",
784 __func__);
785
786 goto eh_dev_reset_done;
787 }
788
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700789 /* Flush outstanding commands. */
790 if (qla2x00_eh_wait_for_pending_target_commands(ha, id))
791 ret = FAILED;
792 if (ret == FAILED) {
793 DEBUG3(printk("%s(%ld): failed while waiting for commands\n",
794 __func__, ha->host_no));
795 qla_printk(KERN_INFO, ha,
796 "%s: failed while waiting for commands\n", __func__);
797 } else
798 qla_printk(KERN_INFO, ha,
799 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha->host_no,
800 id, lun);
James Bottomley28f22b02005-10-28 17:22:18 -0500801 eh_dev_reset_done:
f4f051e2005-04-17 15:02:26 -0500802 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805/**************************************************************************
806* qla2x00_eh_wait_for_pending_commands
807*
808* Description:
809* Waits for all the commands to come back from the specified host.
810*
811* Input:
812* ha - pointer to scsi_qla_host structure.
813*
814* Returns:
815* 1 : SUCCESS
816* 0 : FAILED
817*
818* Note:
819**************************************************************************/
820static int
821qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha)
822{
823 int cnt;
824 int status;
825 srb_t *sp;
826 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700827 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 status = 1;
830
831 /*
832 * Waiting for all commands for the designated target in the active
833 * array
834 */
835 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700836 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 sp = ha->outstanding_cmds[cnt];
838 if (sp) {
839 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700840 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 status = qla2x00_eh_wait_on_command(ha, cmd);
842 if (status == 0)
843 break;
844 }
845 else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700846 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 }
849 return (status);
850}
851
852
853/**************************************************************************
854* qla2xxx_eh_bus_reset
855*
856* Description:
857* The bus reset function will reset the bus and abort any executing
858* commands.
859*
860* Input:
861* cmd = Linux SCSI command packet of the command that cause the
862* bus reset.
863*
864* Returns:
865* SUCCESS/FAILURE (defined as macro in scsi.h).
866*
867**************************************************************************/
868int
869qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
870{
f4f051e2005-04-17 15:02:26 -0500871 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500872 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 srb_t *sp;
f4f051e2005-04-17 15:02:26 -0500874 int ret;
875 unsigned int id, lun;
876 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
f4f051e2005-04-17 15:02:26 -0500878 ret = FAILED;
879
880 id = cmd->device->id;
881 lun = cmd->device->lun;
882 serial = cmd->serial_number;
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500885 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500886 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500889 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
892 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500893 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
896 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500897 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
898 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
f4f051e2005-04-17 15:02:26 -0500900 if (ret == FAILED)
901 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700903 /* Flush outstanding commands. */
904 if (!qla2x00_eh_wait_for_pending_commands(ha))
905 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
f4f051e2005-04-17 15:02:26 -0500907eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500909 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
f4f051e2005-04-17 15:02:26 -0500911 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914/**************************************************************************
915* qla2xxx_eh_host_reset
916*
917* Description:
918* The reset function will reset the Adapter.
919*
920* Input:
921* cmd = Linux SCSI command packet of the command that cause the
922* adapter reset.
923*
924* Returns:
925* Either SUCCESS or FAILED.
926*
927* Note:
928**************************************************************************/
929int
930qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
931{
f4f051e2005-04-17 15:02:26 -0500932 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500933 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500934 srb_t *sp;
935 int ret;
936 unsigned int id, lun;
937 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
f4f051e2005-04-17 15:02:26 -0500939 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
f4f051e2005-04-17 15:02:26 -0500941 id = cmd->device->id;
942 lun = cmd->device->lun;
943 serial = cmd->serial_number;
944
945 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500946 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500947 return ret;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500950 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500953 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 /*
956 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700957 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * be completed and then issue big hammer.Otherwise
959 * it may cause I/O failure as big hammer marks the
960 * devices as lost kicking of the port_down_timer
961 * while dpc is stuck for the mailbox to complete.
962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 qla2x00_wait_for_loop_ready(ha);
964 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
965 if (qla2x00_abort_isp(ha)) {
966 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
967 /* failed. schedule dpc to try */
968 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
969
970 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500971 goto eh_host_reset_lock;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* Waiting for our command in done_queue to be returned to OS.*/
f4f051e2005-04-17 15:02:26 -0500976 if (qla2x00_eh_wait_for_pending_commands(ha))
977 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
f4f051e2005-04-17 15:02:26 -0500979eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -0500980 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
981 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
f4f051e2005-04-17 15:02:26 -0500983 return ret;
984}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986/*
987* qla2x00_loop_reset
988* Issue loop reset.
989*
990* Input:
991* ha = adapter block pointer.
992*
993* Returns:
994* 0 = success
995*/
996static int
997qla2x00_loop_reset(scsi_qla_host_t *ha)
998{
999 int status = QLA_SUCCESS;
bdf79622005-04-17 15:06:53 -05001000 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (ha->flags.enable_lip_reset) {
1003 status = qla2x00_lip_reset(ha);
1004 }
1005
1006 if (status == QLA_SUCCESS && ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -05001007 list_for_each_entry(fcport, &ha->fcports, list) {
1008 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 continue;
1010
Andrew Vasquezc00c72a2005-08-26 19:08:50 -07001011 status = qla2x00_device_reset(ha, fcport);
bdf79622005-04-17 15:06:53 -05001012 if (status != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
1016
1017 if (status == QLA_SUCCESS &&
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001018 ((!ha->flags.enable_target_reset &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 !ha->flags.enable_lip_reset) ||
1020 ha->flags.enable_lip_full_login)) {
1021
1022 status = qla2x00_full_login_lip(ha);
1023 }
1024
1025 /* Issue marker command only when we are going to start the I/O */
1026 ha->marker_needed = 1;
1027
1028 if (status) {
1029 /* Empty */
1030 DEBUG2_3(printk("%s(%ld): **** FAILED ****\n",
1031 __func__,
1032 ha->host_no);)
1033 } else {
1034 /* Empty */
1035 DEBUG3(printk("%s(%ld): exiting normally.\n",
1036 __func__,
1037 ha->host_no);)
1038 }
1039
1040 return(status);
1041}
1042
1043/*
1044 * qla2x00_device_reset
1045 * Issue bus device reset message to the target.
1046 *
1047 * Input:
1048 * ha = adapter block pointer.
1049 * t = SCSI ID.
1050 * TARGET_QUEUE_LOCK must be released.
1051 * ADAPTER_STATE_LOCK must be released.
1052 *
1053 * Context:
1054 * Kernel context.
1055 */
1056static int
1057qla2x00_device_reset(scsi_qla_host_t *ha, fc_port_t *reset_fcport)
1058{
1059 /* Abort Target command will clear Reservation */
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001060 return ha->isp_ops.abort_target(reset_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
f4f051e2005-04-17 15:02:26 -05001063static int
1064qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
bdf79622005-04-17 15:06:53 -05001066 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001068 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001069 return -ENXIO;
1070
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001071 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001072
1073 return 0;
1074}
1075
1076static int
1077qla2xxx_slave_configure(struct scsi_device *sdev)
1078{
8482e1182005-04-17 15:04:54 -05001079 scsi_qla_host_t *ha = to_qla_host(sdev->host);
1080 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1081
f4f051e2005-04-17 15:02:26 -05001082 if (sdev->tagged_supported)
1083 scsi_activate_tcq(sdev, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 else
f4f051e2005-04-17 15:02:26 -05001085 scsi_deactivate_tcq(sdev, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
8482e1182005-04-17 15:04:54 -05001087 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1088
f4f051e2005-04-17 15:02:26 -05001089 return 0;
1090}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
f4f051e2005-04-17 15:02:26 -05001092static void
1093qla2xxx_slave_destroy(struct scsi_device *sdev)
1094{
1095 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001098static int
1099qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1100{
1101 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1102 return sdev->queue_depth;
1103}
1104
1105static int
1106qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1107{
1108 if (sdev->tagged_supported) {
1109 scsi_set_tag_type(sdev, tag_type);
1110 if (tag_type)
1111 scsi_activate_tcq(sdev, sdev->queue_depth);
1112 else
1113 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1114 } else
1115 tag_type = 0;
1116
1117 return tag_type;
1118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/**
1121 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1122 * @ha: HA context
1123 *
1124 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1125 * supported addressing method.
1126 */
1127static void
1128qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1129{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001130 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001133 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1134 /* Any upper-dword bits set? */
1135 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1136 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1137 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001139 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_64;
1140 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001144
1145 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1146 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147}
1148
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001149static inline void
1150qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1151{
1152 ha->device_type = DT_EXTENDED_IDS;
1153 switch (ha->pdev->device) {
1154 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1155 ha->device_type |= DT_ISP2100;
1156 ha->device_type &= ~DT_EXTENDED_IDS;
1157 break;
1158 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1159 ha->device_type |= DT_ISP2200;
1160 ha->device_type &= ~DT_EXTENDED_IDS;
1161 break;
1162 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1163 ha->device_type |= DT_ISP2300;
1164 break;
1165 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1166 ha->device_type |= DT_ISP2312;
1167 break;
1168 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1169 ha->device_type |= DT_ISP2322;
1170 if (ha->pdev->subsystem_vendor == 0x1028 &&
1171 ha->pdev->subsystem_device == 0x0170)
1172 ha->device_type |= DT_OEM_001;
1173 break;
1174 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1175 ha->device_type |= DT_ISP6312;
1176 break;
1177 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1178 ha->device_type |= DT_ISP6322;
1179 break;
1180 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1181 ha->device_type |= DT_ISP2422;
1182 break;
1183 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1184 ha->device_type |= DT_ISP2432;
1185 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001186 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1187 ha->device_type |= DT_ISP5422;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001188 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001189 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1190 ha->device_type |= DT_ISP5432;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001191 break;
1192 }
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static int
1196qla2x00_iospace_config(scsi_qla_host_t *ha)
1197{
1198 unsigned long pio, pio_len, pio_flags;
1199 unsigned long mmio, mmio_len, mmio_flags;
1200
1201 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1202 pio = pci_resource_start(ha->pdev, 0);
1203 pio_len = pci_resource_len(ha->pdev, 0);
1204 pio_flags = pci_resource_flags(ha->pdev, 0);
1205 if (pio_flags & IORESOURCE_IO) {
1206 if (pio_len < MIN_IOBASE_LEN) {
1207 qla_printk(KERN_WARNING, ha,
1208 "Invalid PCI I/O region size (%s)...\n",
1209 pci_name(ha->pdev));
1210 pio = 0;
1211 }
1212 } else {
1213 qla_printk(KERN_WARNING, ha,
1214 "region #0 not a PIO resource (%s)...\n",
1215 pci_name(ha->pdev));
1216 pio = 0;
1217 }
1218
1219 /* Use MMIO operations for all accesses. */
1220 mmio = pci_resource_start(ha->pdev, 1);
1221 mmio_len = pci_resource_len(ha->pdev, 1);
1222 mmio_flags = pci_resource_flags(ha->pdev, 1);
1223
1224 if (!(mmio_flags & IORESOURCE_MEM)) {
1225 qla_printk(KERN_ERR, ha,
1226 "region #0 not an MMIO resource (%s), aborting\n",
1227 pci_name(ha->pdev));
1228 goto iospace_error_exit;
1229 }
1230 if (mmio_len < MIN_IOBASE_LEN) {
1231 qla_printk(KERN_ERR, ha,
1232 "Invalid PCI mem region size (%s), aborting\n",
1233 pci_name(ha->pdev));
1234 goto iospace_error_exit;
1235 }
1236
1237 if (pci_request_regions(ha->pdev, ha->brd_info->drv_name)) {
1238 qla_printk(KERN_WARNING, ha,
1239 "Failed to reserve PIO/MMIO regions (%s)\n",
1240 pci_name(ha->pdev));
1241
1242 goto iospace_error_exit;
1243 }
1244
1245 ha->pio_address = pio;
1246 ha->pio_length = pio_len;
1247 ha->iobase = ioremap(mmio, MIN_IOBASE_LEN);
1248 if (!ha->iobase) {
1249 qla_printk(KERN_ERR, ha,
1250 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1251
1252 goto iospace_error_exit;
1253 }
1254
1255 return (0);
1256
1257iospace_error_exit:
1258 return (-ENOMEM);
1259}
1260
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001261static void
1262qla2x00_enable_intrs(scsi_qla_host_t *ha)
1263{
1264 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001265 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001266
1267 spin_lock_irqsave(&ha->hardware_lock, flags);
1268 ha->interrupts_on = 1;
1269 /* enable risc and host interrupts */
1270 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1271 RD_REG_WORD(&reg->ictrl);
1272 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1273
1274}
1275
1276static void
1277qla2x00_disable_intrs(scsi_qla_host_t *ha)
1278{
1279 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001280 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001281
1282 spin_lock_irqsave(&ha->hardware_lock, flags);
1283 ha->interrupts_on = 0;
1284 /* disable risc and host interrupts */
1285 WRT_REG_WORD(&reg->ictrl, 0);
1286 RD_REG_WORD(&reg->ictrl);
1287 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1288}
1289
Andrew Vasquezfca29702005-07-06 10:31:47 -07001290static void
1291qla24xx_enable_intrs(scsi_qla_host_t *ha)
1292{
1293 unsigned long flags = 0;
1294 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1295
1296 spin_lock_irqsave(&ha->hardware_lock, flags);
1297 ha->interrupts_on = 1;
1298 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1299 RD_REG_DWORD(&reg->ictrl);
1300 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1301}
1302
1303static void
1304qla24xx_disable_intrs(scsi_qla_host_t *ha)
1305{
1306 unsigned long flags = 0;
1307 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1308
1309 spin_lock_irqsave(&ha->hardware_lock, flags);
1310 ha->interrupts_on = 0;
1311 WRT_REG_DWORD(&reg->ictrl, 0);
1312 RD_REG_DWORD(&reg->ictrl);
1313 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
1317 * PCI driver interface
1318 */
1319int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info)
1320{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001321 int ret = -ENODEV;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001322 device_reg_t __iomem *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 struct Scsi_Host *host;
1324 scsi_qla_host_t *ha;
1325 unsigned long flags = 0;
1326 unsigned long wait_switch = 0;
1327 char pci_info[20];
1328 char fw_str[30];
8482e1182005-04-17 15:04:54 -05001329 fc_port_t *fcport;
Andrew Vasquez54333832005-11-09 15:49:04 -08001330 struct scsi_host_template *sht;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (pci_enable_device(pdev))
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001333 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Andrew Vasquez54333832005-11-09 15:49:04 -08001335 sht = &qla2x00_driver_template;
1336 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1337 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432)
1338 sht = &qla24xx_driver_template;
1339 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (host == NULL) {
1341 printk(KERN_WARNING
1342 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1343 goto probe_disable_device;
1344 }
1345
1346 /* Clear our data area */
1347 ha = (scsi_qla_host_t *)host->hostdata;
1348 memset(ha, 0, sizeof(scsi_qla_host_t));
1349
1350 ha->pdev = pdev;
1351 ha->host = host;
1352 ha->host_no = host->host_no;
1353 ha->brd_info = brd_info;
1354 sprintf(ha->host_str, "%s_%ld", ha->brd_info->drv_name, ha->host_no);
1355
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001356 /* Set ISP-type information. */
1357 qla2x00_set_isp_flags(ha);
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 /* Configure PCI I/O space */
1360 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001361 if (ret)
1362 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001365 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1366 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 spin_lock_init(&ha->hardware_lock);
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 ha->prev_topology = 0;
1371 ha->ports = MAX_BUSES;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001372 ha->init_cb_size = sizeof(init_cb_t);
Andrew Vasquezcca53352005-08-26 19:08:30 -07001373 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001374 ha->link_data_rate = LDR_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001375 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001377 /* Assign ISP specific operations. */
1378 ha->isp_ops.pci_config = qla2100_pci_config;
1379 ha->isp_ops.reset_chip = qla2x00_reset_chip;
1380 ha->isp_ops.chip_diag = qla2x00_chip_diag;
1381 ha->isp_ops.config_rings = qla2x00_config_rings;
1382 ha->isp_ops.reset_adapter = qla2x00_reset_adapter;
1383 ha->isp_ops.nvram_config = qla2x00_nvram_config;
1384 ha->isp_ops.update_fw_options = qla2x00_update_fw_options;
Andrew Vasquez0107109e2005-07-06 10:31:37 -07001385 ha->isp_ops.load_risc = qla2x00_load_risc;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001386 ha->isp_ops.pci_info_str = qla2x00_pci_info_str;
1387 ha->isp_ops.fw_version_str = qla2x00_fw_version_str;
1388 ha->isp_ops.intr_handler = qla2100_intr_handler;
1389 ha->isp_ops.enable_intrs = qla2x00_enable_intrs;
1390 ha->isp_ops.disable_intrs = qla2x00_disable_intrs;
1391 ha->isp_ops.abort_command = qla2x00_abort_command;
1392 ha->isp_ops.abort_target = qla2x00_abort_target;
1393 ha->isp_ops.fabric_login = qla2x00_login_fabric;
1394 ha->isp_ops.fabric_logout = qla2x00_fabric_logout;
1395 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_32;
1396 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_32;
1397 ha->isp_ops.prep_ms_iocb = qla2x00_prep_ms_iocb;
Andrew Vasquezcca53352005-08-26 19:08:30 -07001398 ha->isp_ops.prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001399 ha->isp_ops.read_nvram = qla2x00_read_nvram_data;
1400 ha->isp_ops.write_nvram = qla2x00_write_nvram_data;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001401 ha->isp_ops.fw_dump = qla2100_fw_dump;
1402 ha->isp_ops.ascii_fw_dump = qla2100_ascii_fw_dump;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001403 ha->isp_ops.read_optrom = qla2x00_read_optrom_data;
1404 ha->isp_ops.write_optrom = qla2x00_write_optrom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001406 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1408 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1409 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1410 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1411 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001412 ha->gid_list_info_size = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001414 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1416 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1417 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1418 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001419 ha->gid_list_info_size = 4;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001420 } else if (IS_QLA23XX(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001421 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1423 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1424 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1425 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001426 ha->isp_ops.pci_config = qla2300_pci_config;
1427 ha->isp_ops.intr_handler = qla2300_intr_handler;
1428 ha->isp_ops.fw_dump = qla2300_fw_dump;
1429 ha->isp_ops.ascii_fw_dump = qla2300_ascii_fw_dump;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001430 ha->isp_ops.beacon_on = qla2x00_beacon_on;
1431 ha->isp_ops.beacon_off = qla2x00_beacon_off;
1432 ha->isp_ops.beacon_blink = qla2x00_beacon_blink;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001433 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001434 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1435 ha->optrom_size = OPTROM_SIZE_2322;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001436 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001437 host->max_id = MAX_TARGETS_2200;
1438 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1439 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1440 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1441 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1442 ha->init_cb_size = sizeof(struct init_cb_24xx);
Andrew Vasquezcca53352005-08-26 19:08:30 -07001443 ha->mgmt_svr_loop_id = 10;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001444 ha->isp_ops.pci_config = qla24xx_pci_config;
1445 ha->isp_ops.reset_chip = qla24xx_reset_chip;
1446 ha->isp_ops.chip_diag = qla24xx_chip_diag;
1447 ha->isp_ops.config_rings = qla24xx_config_rings;
1448 ha->isp_ops.reset_adapter = qla24xx_reset_adapter;
1449 ha->isp_ops.nvram_config = qla24xx_nvram_config;
1450 ha->isp_ops.update_fw_options = qla24xx_update_fw_options;
Andrew Vasquez54333832005-11-09 15:49:04 -08001451 ha->isp_ops.load_risc = qla24xx_load_risc;
Andrew Vasquez331e3472005-11-09 15:49:19 -08001452#if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE)
1453 if (ql2xfwloadflash)
1454 ha->isp_ops.load_risc = qla24xx_load_risc_flash;
Andrew Vasquez54333832005-11-09 15:49:04 -08001455#endif
Andrew Vasquezfca29702005-07-06 10:31:47 -07001456 ha->isp_ops.pci_info_str = qla24xx_pci_info_str;
1457 ha->isp_ops.fw_version_str = qla24xx_fw_version_str;
1458 ha->isp_ops.intr_handler = qla24xx_intr_handler;
1459 ha->isp_ops.enable_intrs = qla24xx_enable_intrs;
1460 ha->isp_ops.disable_intrs = qla24xx_disable_intrs;
1461 ha->isp_ops.abort_command = qla24xx_abort_command;
1462 ha->isp_ops.abort_target = qla24xx_abort_target;
1463 ha->isp_ops.fabric_login = qla24xx_login_fabric;
1464 ha->isp_ops.fabric_logout = qla24xx_fabric_logout;
1465 ha->isp_ops.prep_ms_iocb = qla24xx_prep_ms_iocb;
Andrew Vasquezcca53352005-08-26 19:08:30 -07001466 ha->isp_ops.prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001467 ha->isp_ops.read_nvram = qla24xx_read_nvram_data;
1468 ha->isp_ops.write_nvram = qla24xx_write_nvram_data;
1469 ha->isp_ops.fw_dump = qla24xx_fw_dump;
1470 ha->isp_ops.ascii_fw_dump = qla24xx_ascii_fw_dump;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001471 ha->isp_ops.read_optrom = qla24xx_read_optrom_data;
1472 ha->isp_ops.write_optrom = qla24xx_write_optrom_data;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001473 ha->isp_ops.beacon_on = qla24xx_beacon_on;
1474 ha->isp_ops.beacon_off = qla24xx_beacon_off;
1475 ha->isp_ops.beacon_blink = qla24xx_beacon_blink;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001476 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001477 ha->optrom_size = OPTROM_SIZE_24XX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 host->can_queue = ha->request_q_length + 128;
1480
1481 /* load the F/W, read paramaters, and init the H/W */
1482 ha->instance = num_hosts;
1483
1484 init_MUTEX(&ha->mbx_cmd_sem);
1485 init_MUTEX_LOCKED(&ha->mbx_intr_sem);
1486
1487 INIT_LIST_HEAD(&ha->list);
1488 INIT_LIST_HEAD(&ha->fcports);
1489 INIT_LIST_HEAD(&ha->rscn_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 /*
1492 * These locks are used to prevent more than one CPU
1493 * from modifying the queue at the same time. The
1494 * higher level "host_lock" will reduce most
1495 * contention for these locks.
1496 */
1497 spin_lock_init(&ha->mbx_reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 qla2x00_config_dma_addressing(ha);
1500 if (qla2x00_mem_alloc(ha)) {
1501 qla_printk(KERN_WARNING, ha,
1502 "[ERROR] Failed to allocate memory for adapter\n");
1503
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001504 ret = -ENOMEM;
1505 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507
1508 if (qla2x00_initialize_adapter(ha) &&
1509 !(ha->device_flags & DFLG_NO_CABLE)) {
1510
1511 qla_printk(KERN_WARNING, ha,
1512 "Failed to initialize adapter\n");
1513
1514 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1515 "Adapter flags %x.\n",
1516 ha->host_no, ha->device_flags));
1517
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001518 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 goto probe_failed;
1520 }
1521
1522 /*
1523 * Startup the kernel thread for this host adapter
1524 */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001525 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1526 "%s_dpc", ha->host_str);
1527 if (IS_ERR(ha->dpc_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 qla_printk(KERN_WARNING, ha,
1529 "Unable to start DPC thread!\n");
Christoph Hellwig39a11242006-02-14 18:46:22 +01001530 ret = PTR_ERR(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 goto probe_failed;
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001534 host->this_id = 255;
1535 host->cmd_per_lun = 3;
1536 host->unique_id = ha->instance;
1537 host->max_cmd_len = MAX_CMDSZ;
1538 host->max_channel = ha->ports - 1;
1539 host->max_lun = MAX_LUNS;
1540 host->transportt = qla2xxx_transport_template;
1541
Andrew Vasquezfca29702005-07-06 10:31:47 -07001542 ret = request_irq(pdev->irq, ha->isp_ops.intr_handler,
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001543 SA_INTERRUPT|SA_SHIRQ, ha->brd_info->drv_name, ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001544 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 qla_printk(KERN_WARNING, ha,
1546 "Failed to reserve interrupt %d already in use.\n",
Andrew Vasquezfca29702005-07-06 10:31:47 -07001547 pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto probe_failed;
1549 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07001550 host->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* Initialized the timer */
1553 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1554
1555 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1556 ha->host_no, ha));
1557
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001558 ha->isp_ops.disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquezfca29702005-07-06 10:31:47 -07001561 reg = ha->iobase;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001562 if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001563 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_HOST_INT);
1564 WRT_REG_DWORD(&reg->isp24.hccr, HCCRX_CLR_RISC_INT);
1565 } else {
1566 WRT_REG_WORD(&reg->isp.semaphore, 0);
1567 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_RISC_INT);
1568 WRT_REG_WORD(&reg->isp.hccr, HCCR_CLR_HOST_INT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Andrew Vasquezfca29702005-07-06 10:31:47 -07001570 /* Enable proper parity */
1571 if (!IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1572 if (IS_QLA2300(ha))
1573 /* SRAM parity */
1574 WRT_REG_WORD(&reg->isp.hccr,
1575 (HCCR_ENABLE_PARITY + 0x1));
1576 else
1577 /* SRAM, Instruction RAM and GP RAM parity */
1578 WRT_REG_WORD(&reg->isp.hccr,
1579 (HCCR_ENABLE_PARITY + 0x7));
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1583
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001584 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* v2.19.5b6 */
1587 /*
1588 * Wait around max loop_reset_delay secs for the devices to come
1589 * on-line. We don't want Linux scanning before we are ready.
1590 *
1591 */
1592 for (wait_switch = jiffies + (ha->loop_reset_delay * HZ);
1593 time_before(jiffies,wait_switch) &&
1594 !(ha->device_flags & (DFLG_NO_CABLE | DFLG_FABRIC_DEVICES))
1595 && (ha->device_flags & SWITCH_FOUND) ;) {
1596
1597 qla2x00_check_fabric_devices(ha);
1598
1599 msleep(10);
1600 }
1601
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001602 pci_set_drvdata(pdev, ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 ha->flags.init_done = 1;
1604 num_hosts++;
1605
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001606 ret = scsi_add_host(host, &pdev->dev);
1607 if (ret)
1608 goto probe_failed;
1609
1610 qla2x00_alloc_sysfs_attr(ha);
1611
1612 qla2x00_init_host_attr(ha);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 qla_printk(KERN_INFO, ha, "\n"
1615 " QLogic Fibre Channel HBA Driver: %s\n"
1616 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001617 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1618 qla2x00_version_str, ha->model_number,
1619 ha->model_desc ? ha->model_desc: "", pdev->device,
1620 ha->isp_ops.pci_info_str(ha, pci_info), pci_name(pdev),
1621 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
1622 ha->isp_ops.fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
8482e1182005-04-17 15:04:54 -05001624 /* Go with fc_rport registration. */
1625 list_for_each_entry(fcport, &ha->fcports, list)
1626 qla2x00_reg_remote_port(ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 return 0;
1629
1630probe_failed:
1631 qla2x00_free_device(ha);
1632
1633 scsi_host_put(host);
1634
1635probe_disable_device:
1636 pci_disable_device(pdev);
1637
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001638probe_out:
1639 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641EXPORT_SYMBOL_GPL(qla2x00_probe_one);
1642
1643void qla2x00_remove_one(struct pci_dev *pdev)
1644{
1645 scsi_qla_host_t *ha;
1646
1647 ha = pci_get_drvdata(pdev);
1648
8482e1182005-04-17 15:04:54 -05001649 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
bdf79622005-04-17 15:06:53 -05001651 fc_remove_host(ha->host);
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 scsi_remove_host(ha->host);
1654
1655 qla2x00_free_device(ha);
1656
1657 scsi_host_put(ha->host);
1658
1659 pci_set_drvdata(pdev, NULL);
1660}
1661EXPORT_SYMBOL_GPL(qla2x00_remove_one);
1662
1663static void
1664qla2x00_free_device(scsi_qla_host_t *ha)
1665{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /* Abort any outstanding IO descriptors. */
1667 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
1668 qla2x00_cancel_io_descriptors(ha);
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /* Disable timer */
1671 if (ha->timer_active)
1672 qla2x00_stop_timer(ha);
1673
1674 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001675 if (ha->dpc_thread) {
1676 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Christoph Hellwig39a11242006-02-14 18:46:22 +01001678 /*
1679 * qla2xxx_wake_dpc checks for ->dpc_thread
1680 * so we need to zero it out.
1681 */
1682 ha->dpc_thread = NULL;
1683 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001686 /* Stop currently executing firmware. */
1687 qla2x00_stop_firmware(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001689 /* turn-off interrupts on the card */
1690 if (ha->interrupts_on)
1691 ha->isp_ops.disable_intrs(ha);
1692
1693 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 ha->flags.online = 0;
1696
1697 /* Detach interrupts */
1698 if (ha->pdev->irq)
1699 free_irq(ha->pdev->irq, ha);
1700
1701 /* release io space registers */
1702 if (ha->iobase)
1703 iounmap(ha->iobase);
1704 pci_release_regions(ha->pdev);
1705
1706 pci_disable_device(ha->pdev);
1707}
1708
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001709static inline void
1710qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1711 int defer)
1712{
1713 unsigned long flags;
1714 struct fc_rport *rport;
1715
1716 if (!fcport->rport)
1717 return;
1718
1719 rport = fcport->rport;
1720 if (defer) {
1721 spin_lock_irqsave(&fcport->rport_lock, flags);
1722 fcport->drport = rport;
1723 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001724 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001725 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1726 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1727 } else {
1728 spin_lock_irqsave(&fcport->rport_lock, flags);
1729 fcport->rport = NULL;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -08001730 *(fc_port_t **)rport->dd_data = NULL;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001731 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1732 fc_remote_port_delete(rport);
1733 }
1734}
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1738 *
1739 * Input: ha = adapter block pointer. fcport = port structure pointer.
1740 *
1741 * Return: None.
1742 *
1743 * Context:
1744 */
1745void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001746 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001748 if (atomic_read(&fcport->state) == FCS_ONLINE)
1749 qla2x00_schedule_rport_del(ha, fcport, defer);
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001750
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001751 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 * We may need to retry the login, so don't change the state of the
1753 * port but do the retries.
1754 */
1755 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1756 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1757
1758 if (!do_login)
1759 return;
1760
1761 if (fcport->login_retry == 0) {
1762 fcport->login_retry = ha->login_retry_count;
1763 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1764
1765 DEBUG(printk("scsi(%ld): Port login retry: "
1766 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1767 "id = 0x%04x retry cnt=%d\n",
1768 ha->host_no,
1769 fcport->port_name[0],
1770 fcport->port_name[1],
1771 fcport->port_name[2],
1772 fcport->port_name[3],
1773 fcport->port_name[4],
1774 fcport->port_name[5],
1775 fcport->port_name[6],
1776 fcport->port_name[7],
1777 fcport->loop_id,
1778 fcport->login_retry));
1779 }
1780}
1781
1782/*
1783 * qla2x00_mark_all_devices_lost
1784 * Updates fcport state when device goes offline.
1785 *
1786 * Input:
1787 * ha = adapter block pointer.
1788 * fcport = port structure pointer.
1789 *
1790 * Return:
1791 * None.
1792 *
1793 * Context:
1794 */
1795void
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001796qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
1798 fc_port_t *fcport;
1799
1800 list_for_each_entry(fcport, &ha->fcports, list) {
1801 if (fcport->port_type != FCT_TARGET)
1802 continue;
1803
1804 /*
1805 * No point in marking the device as lost, if the device is
1806 * already DEAD.
1807 */
1808 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1809 continue;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001810 if (atomic_read(&fcport->state) == FCS_ONLINE)
1811 qla2x00_schedule_rport_del(ha, fcport, defer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1813 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001814
Christoph Hellwig39a11242006-02-14 18:46:22 +01001815 if (defer)
1816 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
1819/*
1820* qla2x00_mem_alloc
1821* Allocates adapter memory.
1822*
1823* Returns:
1824* 0 = success.
1825* 1 = failure.
1826*/
1827static uint8_t
1828qla2x00_mem_alloc(scsi_qla_host_t *ha)
1829{
1830 char name[16];
1831 uint8_t status = 1;
1832 int retry= 10;
1833
1834 do {
1835 /*
1836 * This will loop only once if everything goes well, else some
1837 * number of retries will be performed to get around a kernel
1838 * bug where available mem is not allocated until after a
1839 * little delay and a retry.
1840 */
1841 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
1842 (ha->request_q_length + 1) * sizeof(request_t),
1843 &ha->request_dma, GFP_KERNEL);
1844 if (ha->request_ring == NULL) {
1845 qla_printk(KERN_WARNING, ha,
1846 "Memory Allocation failed - request_ring\n");
1847
1848 qla2x00_mem_free(ha);
1849 msleep(100);
1850
1851 continue;
1852 }
1853
1854 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
1855 (ha->response_q_length + 1) * sizeof(response_t),
1856 &ha->response_dma, GFP_KERNEL);
1857 if (ha->response_ring == NULL) {
1858 qla_printk(KERN_WARNING, ha,
1859 "Memory Allocation failed - response_ring\n");
1860
1861 qla2x00_mem_free(ha);
1862 msleep(100);
1863
1864 continue;
1865 }
1866
1867 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
1868 &ha->gid_list_dma, GFP_KERNEL);
1869 if (ha->gid_list == NULL) {
1870 qla_printk(KERN_WARNING, ha,
1871 "Memory Allocation failed - gid_list\n");
1872
1873 qla2x00_mem_free(ha);
1874 msleep(100);
1875
1876 continue;
1877 }
1878
1879 ha->rlc_rsp = dma_alloc_coherent(&ha->pdev->dev,
1880 sizeof(rpt_lun_cmd_rsp_t), &ha->rlc_rsp_dma, GFP_KERNEL);
1881 if (ha->rlc_rsp == NULL) {
1882 qla_printk(KERN_WARNING, ha,
1883 "Memory Allocation failed - rlc");
1884
1885 qla2x00_mem_free(ha);
1886 msleep(100);
1887
1888 continue;
1889 }
1890
1891 snprintf(name, sizeof(name), "qla2xxx_%ld", ha->host_no);
1892 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
1893 DMA_POOL_SIZE, 8, 0);
1894 if (ha->s_dma_pool == NULL) {
1895 qla_printk(KERN_WARNING, ha,
1896 "Memory Allocation failed - s_dma_pool\n");
1897
1898 qla2x00_mem_free(ha);
1899 msleep(100);
1900
1901 continue;
1902 }
1903
1904 /* get consistent memory allocated for init control block */
1905 ha->init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1906 &ha->init_cb_dma);
1907 if (ha->init_cb == NULL) {
1908 qla_printk(KERN_WARNING, ha,
1909 "Memory Allocation failed - init_cb\n");
1910
1911 qla2x00_mem_free(ha);
1912 msleep(100);
1913
1914 continue;
1915 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07001916 memset(ha->init_cb, 0, ha->init_cb_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 /* Get consistent memory allocated for Get Port Database cmd */
1919 ha->iodesc_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1920 &ha->iodesc_pd_dma);
1921 if (ha->iodesc_pd == NULL) {
1922 /* error */
1923 qla_printk(KERN_WARNING, ha,
1924 "Memory Allocation failed - iodesc_pd\n");
1925
1926 qla2x00_mem_free(ha);
1927 msleep(100);
1928
1929 continue;
1930 }
1931 memset(ha->iodesc_pd, 0, PORT_DATABASE_SIZE);
1932
1933 /* Allocate ioctl related memory. */
1934 if (qla2x00_alloc_ioctl_mem(ha)) {
1935 qla_printk(KERN_WARNING, ha,
1936 "Memory Allocation failed - ioctl_mem\n");
1937
1938 qla2x00_mem_free(ha);
1939 msleep(100);
1940
1941 continue;
1942 }
1943
1944 if (qla2x00_allocate_sp_pool(ha)) {
1945 qla_printk(KERN_WARNING, ha,
1946 "Memory Allocation failed - "
1947 "qla2x00_allocate_sp_pool()\n");
1948
1949 qla2x00_mem_free(ha);
1950 msleep(100);
1951
1952 continue;
1953 }
1954
1955 /* Allocate memory for SNS commands */
1956 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1957 /* Get consistent memory allocated for SNS commands */
1958 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
1959 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma,
1960 GFP_KERNEL);
1961 if (ha->sns_cmd == NULL) {
1962 /* error */
1963 qla_printk(KERN_WARNING, ha,
1964 "Memory Allocation failed - sns_cmd\n");
1965
1966 qla2x00_mem_free(ha);
1967 msleep(100);
1968
1969 continue;
1970 }
1971 memset(ha->sns_cmd, 0, sizeof(struct sns_cmd_pkt));
1972 } else {
1973 /* Get consistent memory allocated for MS IOCB */
1974 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1975 &ha->ms_iocb_dma);
1976 if (ha->ms_iocb == NULL) {
1977 /* error */
1978 qla_printk(KERN_WARNING, ha,
1979 "Memory Allocation failed - ms_iocb\n");
1980
1981 qla2x00_mem_free(ha);
1982 msleep(100);
1983
1984 continue;
1985 }
1986 memset(ha->ms_iocb, 0, sizeof(ms_iocb_entry_t));
1987
1988 /*
1989 * Get consistent memory allocated for CT SNS
1990 * commands
1991 */
1992 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
1993 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma,
1994 GFP_KERNEL);
1995 if (ha->ct_sns == NULL) {
1996 /* error */
1997 qla_printk(KERN_WARNING, ha,
1998 "Memory Allocation failed - ct_sns\n");
1999
2000 qla2x00_mem_free(ha);
2001 msleep(100);
2002
2003 continue;
2004 }
2005 memset(ha->ct_sns, 0, sizeof(struct ct_sns_pkt));
2006 }
2007
2008 /* Done all allocations without any error. */
2009 status = 0;
2010
2011 } while (retry-- && status != 0);
2012
2013 if (status) {
2014 printk(KERN_WARNING
2015 "%s(): **** FAILED ****\n", __func__);
2016 }
2017
2018 return(status);
2019}
2020
2021/*
2022* qla2x00_mem_free
2023* Frees all adapter allocated memory.
2024*
2025* Input:
2026* ha = adapter block pointer.
2027*/
2028static void
2029qla2x00_mem_free(scsi_qla_host_t *ha)
2030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct list_head *fcpl, *fcptemp;
2032 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 if (ha == NULL) {
2035 /* error */
2036 DEBUG2(printk("%s(): ERROR invalid ha pointer.\n", __func__));
2037 return;
2038 }
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 /* free ioctl memory */
2041 qla2x00_free_ioctl_mem(ha);
2042
2043 /* free sp pool */
2044 qla2x00_free_sp_pool(ha);
2045
2046 if (ha->sns_cmd)
2047 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2048 ha->sns_cmd, ha->sns_cmd_dma);
2049
2050 if (ha->ct_sns)
2051 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2052 ha->ct_sns, ha->ct_sns_dma);
2053
2054 if (ha->ms_iocb)
2055 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2056
2057 if (ha->iodesc_pd)
2058 dma_pool_free(ha->s_dma_pool, ha->iodesc_pd, ha->iodesc_pd_dma);
2059
2060 if (ha->init_cb)
2061 dma_pool_free(ha->s_dma_pool, ha->init_cb, ha->init_cb_dma);
2062
2063 if (ha->s_dma_pool)
2064 dma_pool_destroy(ha->s_dma_pool);
2065
2066 if (ha->rlc_rsp)
2067 dma_free_coherent(&ha->pdev->dev,
2068 sizeof(rpt_lun_cmd_rsp_t), ha->rlc_rsp,
2069 ha->rlc_rsp_dma);
2070
2071 if (ha->gid_list)
2072 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2073 ha->gid_list_dma);
2074
2075 if (ha->response_ring)
2076 dma_free_coherent(&ha->pdev->dev,
2077 (ha->response_q_length + 1) * sizeof(response_t),
2078 ha->response_ring, ha->response_dma);
2079
2080 if (ha->request_ring)
2081 dma_free_coherent(&ha->pdev->dev,
2082 (ha->request_q_length + 1) * sizeof(request_t),
2083 ha->request_ring, ha->request_dma);
2084
2085 ha->sns_cmd = NULL;
2086 ha->sns_cmd_dma = 0;
2087 ha->ct_sns = NULL;
2088 ha->ct_sns_dma = 0;
2089 ha->ms_iocb = NULL;
2090 ha->ms_iocb_dma = 0;
2091 ha->iodesc_pd = NULL;
2092 ha->iodesc_pd_dma = 0;
2093 ha->init_cb = NULL;
2094 ha->init_cb_dma = 0;
2095
2096 ha->s_dma_pool = NULL;
2097
2098 ha->rlc_rsp = NULL;
2099 ha->rlc_rsp_dma = 0;
2100 ha->gid_list = NULL;
2101 ha->gid_list_dma = 0;
2102
2103 ha->response_ring = NULL;
2104 ha->response_dma = 0;
2105 ha->request_ring = NULL;
2106 ha->request_dma = 0;
2107
2108 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2109 fcport = list_entry(fcpl, fc_port_t, list);
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* fc ports */
2112 list_del_init(&fcport->list);
2113 kfree(fcport);
2114 }
2115 INIT_LIST_HEAD(&ha->fcports);
2116
2117 if (ha->fw_dump)
2118 free_pages((unsigned long)ha->fw_dump, ha->fw_dump_order);
2119
Andrew Vasquezfca29702005-07-06 10:31:47 -07002120 vfree(ha->fw_dump24);
2121
2122 vfree(ha->fw_dump_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002125 ha->fw_dump24 = NULL;
2126 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 ha->fw_dump_reading = 0;
2128 ha->fw_dump_buffer = NULL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002129
2130 vfree(ha->optrom_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/*
2134 * qla2x00_allocate_sp_pool
2135 * This routine is called during initialization to allocate
2136 * memory for local srb_t.
2137 *
2138 * Input:
2139 * ha = adapter block pointer.
2140 *
2141 * Context:
2142 * Kernel context.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002143 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 * Note: Sets the ref_count for non Null sp to one.
2145 */
2146static int
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002147qla2x00_allocate_sp_pool(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
2149 int rval;
2150
2151 rval = QLA_SUCCESS;
2152 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
2153 mempool_free_slab, srb_cachep);
2154 if (ha->srb_mempool == NULL) {
2155 qla_printk(KERN_INFO, ha, "Unable to allocate SRB mempool.\n");
2156 rval = QLA_FUNCTION_FAILED;
2157 }
2158 return (rval);
2159}
2160
2161/*
2162 * This routine frees all adapter allocated memory.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002163 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 */
2165static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002166qla2x00_free_sp_pool( scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
2168 if (ha->srb_mempool) {
2169 mempool_destroy(ha->srb_mempool);
2170 ha->srb_mempool = NULL;
2171 }
2172}
2173
2174/**************************************************************************
2175* qla2x00_do_dpc
2176* This kernel thread is a task that is schedule by the interrupt handler
2177* to perform the background processing for interrupts.
2178*
2179* Notes:
2180* This task always run in the context of a kernel thread. It
2181* is kick-off by the driver's detect code and starts up
2182* up one per adapter. It immediately goes to sleep and waits for
2183* some fibre event. When either the interrupt handler or
2184* the timer routine detects a event it will one of the task
2185* bits then wake us up.
2186**************************************************************************/
2187static int
2188qla2x00_do_dpc(void *data)
2189{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 scsi_qla_host_t *ha;
2191 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 uint16_t next_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 ha = (scsi_qla_host_t *)data;
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 set_user_nice(current, -20);
2198
Christoph Hellwig39a11242006-02-14 18:46:22 +01002199 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2201
Christoph Hellwig39a11242006-02-14 18:46:22 +01002202 set_current_state(TASK_INTERRUPTIBLE);
2203 schedule();
2204 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2207
2208 /* Initialization not yet finished. Don't do anything yet. */
Christoph Hellwig39a11242006-02-14 18:46:22 +01002209 if (!ha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 continue;
2211
2212 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2213
2214 ha->dpc_active = 1;
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 ha->dpc_active = 0;
2218 continue;
2219 }
2220
2221 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2222
2223 DEBUG(printk("scsi(%ld): dpc: sched "
2224 "qla2x00_abort_isp ha = %p\n",
2225 ha->host_no, ha));
2226 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2227 &ha->dpc_flags))) {
2228
2229 if (qla2x00_abort_isp(ha)) {
2230 /* failed. retry later */
2231 set_bit(ISP_ABORT_NEEDED,
2232 &ha->dpc_flags);
2233 }
2234 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2235 }
2236 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2237 ha->host_no));
2238 }
2239
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002240 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2241 qla2x00_update_fcports(ha);
2242
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002243 if (test_and_clear_bit(LOOP_RESET_NEEDED, &ha->dpc_flags)) {
2244 DEBUG(printk("scsi(%ld): dpc: sched loop_reset()\n",
2245 ha->host_no));
2246 qla2x00_loop_reset(ha);
2247 }
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2250 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2251
2252 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2253 ha->host_no));
2254
2255 qla2x00_rst_aen(ha);
2256 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2257 }
2258
2259 /* Retry each device up to login retry count */
2260 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2261 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2262 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2263
2264 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2265 ha->host_no));
2266
2267 next_loopid = 0;
2268 list_for_each_entry(fcport, &ha->fcports, list) {
2269 if (fcport->port_type != FCT_TARGET)
2270 continue;
2271
2272 /*
2273 * If the port is not ONLINE then try to login
2274 * to it if we haven't run out of retries.
2275 */
2276 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2277 fcport->login_retry) {
2278
2279 fcport->login_retry--;
2280 if (fcport->flags & FCF_FABRIC_DEVICE) {
2281 if (fcport->flags &
2282 FCF_TAPE_PRESENT)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002283 ha->isp_ops.fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002284 ha, fcport->loop_id,
2285 fcport->d_id.b.domain,
2286 fcport->d_id.b.area,
2287 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 status = qla2x00_fabric_login(
2289 ha, fcport, &next_loopid);
2290 } else
2291 status =
2292 qla2x00_local_device_login(
2293 ha, fcport->loop_id);
2294
2295 if (status == QLA_SUCCESS) {
2296 fcport->old_loop_id = fcport->loop_id;
2297
2298 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2299 ha->host_no, fcport->loop_id));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002300
andrew.vasquez@qlogic.com052c40c2006-01-20 14:53:19 -08002301 qla2x00_update_fcport(ha,
2302 fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 } else if (status == 1) {
2304 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2305 /* retry the login again */
2306 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2307 ha->host_no,
2308 fcport->login_retry, fcport->loop_id));
2309 } else {
2310 fcport->login_retry = 0;
2311 }
2312 }
2313 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2314 break;
2315 }
2316 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2317 ha->host_no));
2318 }
2319
2320 if ((test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags)) &&
2321 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2322
2323 clear_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags);
2324 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2325 ha->host_no));
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2328
2329 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2330 ha->host_no));
2331 }
2332
2333 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2334
2335 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2336 ha->host_no));
2337
2338 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2339 &ha->dpc_flags))) {
2340
2341 qla2x00_loop_resync(ha);
2342
2343 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2344 }
2345
2346 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2347 ha->host_no));
2348 }
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED, &ha->dpc_flags)) {
2351
2352 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2353 ha->host_no));
2354
2355 qla2x00_rescan_fcports(ha);
2356
2357 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2358 "end.\n",
2359 ha->host_no));
2360 }
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (!ha->interrupts_on)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002363 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002365 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
2366 ha->isp_ops.beacon_blink(ha);
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 ha->dpc_active = 0;
2369 } /* End of while(1) */
2370
2371 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2372
2373 /*
2374 * Make sure that nobody tries to wake us up again.
2375 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 ha->dpc_active = 0;
2377
Christoph Hellwig39a11242006-02-14 18:46:22 +01002378 return 0;
2379}
2380
2381void
2382qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2383{
2384 if (ha->dpc_thread)
2385 wake_up_process(ha->dpc_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389* qla2x00_rst_aen
2390* Processes asynchronous reset.
2391*
2392* Input:
2393* ha = adapter block pointer.
2394*/
2395static void
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002396qla2x00_rst_aen(scsi_qla_host_t *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397{
2398 if (ha->flags.online && !ha->flags.reset_active &&
2399 !atomic_read(&ha->loop_down_timer) &&
2400 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2401 do {
2402 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2403
2404 /*
2405 * Issue marker command only when we are going to start
2406 * the I/O.
2407 */
2408 ha->marker_needed = 1;
2409 } while (!atomic_read(&ha->loop_down_timer) &&
2410 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2411 }
2412}
2413
f4f051e2005-04-17 15:02:26 -05002414static void
2415qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2416{
2417 struct scsi_cmnd *cmd = sp->cmd;
2418
2419 if (sp->flags & SRB_DMA_VALID) {
2420 if (cmd->use_sg) {
2421 dma_unmap_sg(&ha->pdev->dev, cmd->request_buffer,
2422 cmd->use_sg, cmd->sc_data_direction);
2423 } else if (cmd->request_bufflen) {
2424 dma_unmap_single(&ha->pdev->dev, sp->dma_handle,
2425 cmd->request_bufflen, cmd->sc_data_direction);
2426 }
2427 sp->flags &= ~SRB_DMA_VALID;
2428 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002429 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002430}
2431
2432void
2433qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2434{
2435 struct scsi_cmnd *cmd = sp->cmd;
2436
2437 qla2x00_sp_free_dma(ha, sp);
2438
f4f051e2005-04-17 15:02:26 -05002439 mempool_free(sp, ha->srb_mempool);
2440
2441 cmd->scsi_done(cmd);
2442}
bdf79622005-04-17 15:06:53 -05002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444/**************************************************************************
2445* qla2x00_timer
2446*
2447* Description:
2448* One second timer
2449*
2450* Context: Interrupt
2451***************************************************************************/
2452static void
2453qla2x00_timer(scsi_qla_host_t *ha)
2454{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 unsigned long cpu_flags = 0;
2456 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int start_dpc = 0;
2458 int index;
2459 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002460 int t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
2462 /*
2463 * Ports - Port down timer.
2464 *
2465 * Whenever, a port is in the LOST state we start decrementing its port
2466 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002467 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 */
2469 t = 0;
2470 list_for_each_entry(fcport, &ha->fcports, list) {
2471 if (fcport->port_type != FCT_TARGET)
2472 continue;
2473
2474 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2475
2476 if (atomic_read(&fcport->port_down_timer) == 0)
2477 continue;
2478
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002479 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002483 "%d remaining\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 ha->host_no,
2485 t, atomic_read(&fcport->port_down_timer)));
2486 }
2487 t++;
2488 } /* End of for fcport */
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
2491 /* Loop down handler. */
2492 if (atomic_read(&ha->loop_down_timer) > 0 &&
2493 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2494
2495 if (atomic_read(&ha->loop_down_timer) ==
2496 ha->loop_down_abort_time) {
2497
2498 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2499 "queues before time expire\n",
2500 ha->host_no));
2501
2502 if (!IS_QLA2100(ha) && ha->link_down_timeout)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002503 atomic_set(&ha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
2505 /* Schedule an ISP abort to return any tape commands. */
2506 spin_lock_irqsave(&ha->hardware_lock, cpu_flags);
2507 for (index = 1; index < MAX_OUTSTANDING_COMMANDS;
2508 index++) {
bdf79622005-04-17 15:06:53 -05002509 fc_port_t *sfcp;
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 sp = ha->outstanding_cmds[index];
2512 if (!sp)
2513 continue;
bdf79622005-04-17 15:06:53 -05002514 sfcp = sp->fcport;
2515 if (!(sfcp->flags & FCF_TAPE_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 continue;
2517
2518 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2519 break;
2520 }
2521 spin_unlock_irqrestore(&ha->hardware_lock, cpu_flags);
2522
2523 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2524 start_dpc++;
2525 }
2526
2527 /* if the loop has been down for 4 minutes, reinit adapter */
2528 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2529 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2530 "restarting queues.\n",
2531 ha->host_no));
2532
2533 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2534 start_dpc++;
2535
2536 if (!(ha->device_flags & DFLG_NO_CABLE)) {
2537 DEBUG(printk("scsi(%ld): Loop down - "
2538 "aborting ISP.\n",
2539 ha->host_no));
2540 qla_printk(KERN_WARNING, ha,
2541 "Loop down - aborting ISP.\n");
2542
2543 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2544 }
2545 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002546 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 ha->host_no,
2548 atomic_read(&ha->loop_down_timer)));
2549 }
2550
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002551 /* Check if beacon LED needs to be blinked */
2552 if (ha->beacon_blink_led == 1) {
2553 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2554 start_dpc++;
2555 }
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /* Schedule the DPC routine if needed */
2558 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2559 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002560 test_bit(LOOP_RESET_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002561 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 start_dpc ||
2563 test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) ||
f4f051e2005-04-17 15:02:26 -05002564 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002565 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
Christoph Hellwig39a11242006-02-14 18:46:22 +01002566 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
2567 qla2xxx_wake_dpc(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2570}
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572/* XXX(hch): crude hack to emulate a down_timeout() */
2573int
2574qla2x00_down_timeout(struct semaphore *sema, unsigned long timeout)
2575{
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002576 const unsigned int step = 100; /* msecs */
2577 unsigned int iterations = jiffies_to_msecs(timeout)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579 do {
2580 if (!down_trylock(sema))
2581 return 0;
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002582 if (msleep_interruptible(step))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 break;
Andrew Vasquezfe74c712005-08-26 19:10:10 -07002584 } while (--iterations >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
2586 return -ETIMEDOUT;
2587}
2588
Andrew Vasquez54333832005-11-09 15:49:04 -08002589#if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE)
2590
2591#define qla2x00_release_firmware() do { } while (0)
Andrew Vasquez331e3472005-11-09 15:49:19 -08002592#define qla2x00_pci_module_init() (0)
2593#define qla2x00_pci_module_exit() do { } while (0)
Andrew Vasquezfca29702005-07-06 10:31:47 -07002594
Andrew Vasquez54333832005-11-09 15:49:04 -08002595#else /* !defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE) */
2596
2597/* Firmware interface routines. */
2598
2599#define FW_BLOBS 6
2600#define FW_ISP21XX 0
2601#define FW_ISP22XX 1
2602#define FW_ISP2300 2
2603#define FW_ISP2322 3
2604#define FW_ISP63XX 4
2605#define FW_ISP24XX 5
2606
2607static DECLARE_MUTEX(qla_fw_lock);
2608
2609static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
2610 { .name = "ql2100_fw.bin", .segs = { 0x1000, 0 }, },
2611 { .name = "ql2200_fw.bin", .segs = { 0x1000, 0 }, },
2612 { .name = "ql2300_fw.bin", .segs = { 0x800, 0 }, },
2613 { .name = "ql2322_fw.bin", .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2614 { .name = "ql6312_fw.bin", .segs = { 0x800, 0 }, },
2615 { .name = "ql2400_fw.bin", },
2616};
2617
2618struct fw_blob *
2619qla2x00_request_firmware(scsi_qla_host_t *ha)
2620{
2621 struct fw_blob *blob;
2622
2623 blob = NULL;
2624 if (IS_QLA2100(ha)) {
2625 blob = &qla_fw_blobs[FW_ISP21XX];
2626 } else if (IS_QLA2200(ha)) {
2627 blob = &qla_fw_blobs[FW_ISP22XX];
2628 } else if (IS_QLA2300(ha) || IS_QLA2312(ha)) {
2629 blob = &qla_fw_blobs[FW_ISP2300];
2630 } else if (IS_QLA2322(ha)) {
2631 blob = &qla_fw_blobs[FW_ISP2322];
2632 } else if (IS_QLA6312(ha) || IS_QLA6322(ha)) {
2633 blob = &qla_fw_blobs[FW_ISP63XX];
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08002634 } else if (IS_QLA24XX(ha) || IS_QLA54XX(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002635 blob = &qla_fw_blobs[FW_ISP24XX];
2636 }
2637
2638 down(&qla_fw_lock);
2639 if (blob->fw)
2640 goto out;
2641
2642 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2643 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2644 "(%s).\n", ha->host_no, blob->name));
2645 blob->fw = NULL;
2646 blob = NULL;
2647 goto out;
2648 }
2649
2650out:
2651 up(&qla_fw_lock);
2652 return blob;
2653}
2654
2655static void
2656qla2x00_release_firmware(void)
2657{
2658 int idx;
2659
2660 down(&qla_fw_lock);
2661 for (idx = 0; idx < FW_BLOBS; idx++)
2662 if (qla_fw_blobs[idx].fw)
2663 release_firmware(qla_fw_blobs[idx].fw);
2664 up(&qla_fw_lock);
2665}
2666
2667static struct qla_board_info qla_board_tbl = {
2668 .drv_name = "qla2xxx",
2669};
2670
2671static struct pci_device_id qla2xxx_pci_tbl[] = {
2672 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100,
2673 PCI_ANY_ID, PCI_ANY_ID, },
2674 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200,
2675 PCI_ANY_ID, PCI_ANY_ID, },
2676 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300,
2677 PCI_ANY_ID, PCI_ANY_ID, },
2678 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312,
2679 PCI_ANY_ID, PCI_ANY_ID, },
2680 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322,
2681 PCI_ANY_ID, PCI_ANY_ID, },
2682 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312,
2683 PCI_ANY_ID, PCI_ANY_ID, },
2684 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322,
2685 PCI_ANY_ID, PCI_ANY_ID, },
2686 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422,
2687 PCI_ANY_ID, PCI_ANY_ID, },
2688 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432,
2689 PCI_ANY_ID, PCI_ANY_ID, },
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08002690 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422,
2691 PCI_ANY_ID, PCI_ANY_ID, },
2692 { PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432,
2693 PCI_ANY_ID, PCI_ANY_ID, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002694 { 0 },
2695};
2696MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2697
2698static int __devinit
2699qla2xxx_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2700{
2701 return qla2x00_probe_one(pdev, &qla_board_tbl);
2702}
2703
2704static void __devexit
2705qla2xxx_remove_one(struct pci_dev *pdev)
2706{
2707 qla2x00_remove_one(pdev);
2708}
2709
Andrew Vasquezfca29702005-07-06 10:31:47 -07002710static struct pci_driver qla2xxx_pci_driver = {
2711 .name = "qla2xxx",
James Bottomley0a21ef12005-12-01 12:51:50 -06002712 .driver = {
2713 .owner = THIS_MODULE,
2714 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002715 .id_table = qla2xxx_pci_tbl,
2716 .probe = qla2xxx_probe_one,
2717 .remove = __devexit_p(qla2xxx_remove_one),
2718};
2719
Andrew Vasquez331e3472005-11-09 15:49:19 -08002720static inline int
2721qla2x00_pci_module_init(void)
2722{
2723 return pci_module_init(&qla2xxx_pci_driver);
2724}
2725
2726static inline void
2727qla2x00_pci_module_exit(void)
2728{
2729 pci_unregister_driver(&qla2xxx_pci_driver);
2730}
2731
2732#endif
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734/**
2735 * qla2x00_module_init - Module initialization.
2736 **/
2737static int __init
2738qla2x00_module_init(void)
2739{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002740 int ret = 0;
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002743 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 SLAB_HWCACHE_ALIGN, NULL, NULL);
2745 if (srb_cachep == NULL) {
2746 printk(KERN_ERR
2747 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2748 return -ENOMEM;
2749 }
2750
2751 /* Derive version string. */
2752 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez54333832005-11-09 15:49:04 -08002753#if defined(CONFIG_SCSI_QLA2XXX_EMBEDDED_FIRMWARE)
2754 strcat(qla2x00_version_str, "-fw");
2755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756#if DEBUG_QLA2100
2757 strcat(qla2x00_version_str, "-debug");
2758#endif
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002759 qla2xxx_transport_template =
2760 fc_attach_transport(&qla2xxx_transport_functions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (!qla2xxx_transport_template)
2762 return -ENODEV;
2763
2764 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
Andrew Vasquez331e3472005-11-09 15:49:19 -08002765 ret = qla2x00_pci_module_init();
Andrew Vasquezfca29702005-07-06 10:31:47 -07002766 if (ret) {
2767 kmem_cache_destroy(srb_cachep);
2768 fc_release_transport(qla2xxx_transport_template);
2769 }
2770 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771}
2772
2773/**
2774 * qla2x00_module_exit - Module cleanup.
2775 **/
2776static void __exit
2777qla2x00_module_exit(void)
2778{
Andrew Vasquez331e3472005-11-09 15:49:19 -08002779 qla2x00_pci_module_exit();
Andrew Vasquez54333832005-11-09 15:49:04 -08002780 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002781 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 fc_release_transport(qla2xxx_transport_template);
2783}
2784
2785module_init(qla2x00_module_init);
2786module_exit(qla2x00_module_exit);
2787
2788MODULE_AUTHOR("QLogic Corporation");
2789MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2790MODULE_LICENSE("GPL");
2791MODULE_VERSION(QLA2XXX_VERSION);