[SCSI] qla2xxx: Collapse RISC-RAM retrieval code during a firmware-dump.
[linux-2.6-block.git] / drivers / scsi / qla2xxx / qla_os.c
CommitLineData
1da177e4 1/*
fa90c54f 2 * QLogic Fibre Channel HBA Driver
01e58d8e 3 * Copyright (c) 2003-2008 QLogic Corporation
1da177e4 4 *
fa90c54f 5 * See LICENSE.qla2xxx for copyright and licensing details.
1da177e4
LT
6 */
7#include "qla_def.h"
8
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
1da177e4 11#include <linux/delay.h>
39a11240 12#include <linux/kthread.h>
1da177e4
LT
13
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 */
e18b890b 27static struct kmem_cache *srb_cachep;
1da177e4 28
2c3dfe3f 29int num_hosts;
1da177e4
LT
30int ql2xlogintimeout = 20;
31module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
32MODULE_PARM_DESC(ql2xlogintimeout,
33 "Login timeout value in seconds.");
34
a7b61842 35int qlport_down_retry;
1da177e4
LT
36module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
37MODULE_PARM_DESC(qlport_down_retry,
900d9f98 38 "Maximum number of command retries to a port that returns "
1da177e4
LT
39 "a PORT-DOWN status.");
40
1da177e4
LT
41int ql2xplogiabsentdevice;
42module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
43MODULE_PARM_DESC(ql2xplogiabsentdevice,
44 "Option to enable PLOGI to devices that are not present after "
900d9f98 45 "a Fabric scan. This is needed for several broken switches. "
1da177e4
LT
46 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
47
1da177e4
LT
48int ql2xloginretrycount = 0;
49module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
50MODULE_PARM_DESC(ql2xloginretrycount,
51 "Specify an alternate value for the NVRAM login retry count.");
52
a7a167bf
AV
53int ql2xallocfwdump = 1;
54module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
55MODULE_PARM_DESC(ql2xallocfwdump,
56 "Option to enable allocation of memory for a firmware dump "
57 "during HBA initialization. Memory allocation requirements "
58 "vary by ISP type. Default is 1 - allocate memory.");
59
11010fec 60int ql2xextended_error_logging;
27d94035 61module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
11010fec 62MODULE_PARM_DESC(ql2xextended_error_logging,
0181944f
AV
63 "Option to enable extended error logging, "
64 "Default is 0 - no logging. 1 - log errors.");
65
1da177e4
LT
66static void qla2x00_free_device(scsi_qla_host_t *);
67
68static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
69
cca5335c
AV
70int ql2xfdmienable;
71module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
72MODULE_PARM_DESC(ql2xfdmienable,
73 "Enables FDMI registratons "
74 "Default is 0 - no FDMI. 1 - perfom FDMI.");
75
df7baa50
AV
76#define MAX_Q_DEPTH 32
77static int ql2xmaxqdepth = MAX_Q_DEPTH;
78module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(ql2xmaxqdepth,
80 "Maximum queue depth to report for target devices.");
81
82int ql2xqfullrampup = 120;
83module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
84MODULE_PARM_DESC(ql2xqfullrampup,
85 "Number of seconds to wait to begin to ramp-up the queue "
86 "depth for a device after a queue-full condition has been "
87 "detected. Default is 120 seconds.");
88
1da177e4 89/*
fa2a1ce5 90 * SCSI host template entry points
1da177e4
LT
91 */
92static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051eb 93static int qla2xxx_slave_alloc(struct scsi_device *);
1e99e33a
AV
94static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
95static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051eb 96static void qla2xxx_slave_destroy(struct scsi_device *);
1da177e4
LT
97static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
98 void (*fn)(struct scsi_cmnd *));
fca29703
AV
99static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
100 void (*fn)(struct scsi_cmnd *));
1da177e4
LT
101static int qla2xxx_eh_abort(struct scsi_cmnd *);
102static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
523ec773 103static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
1da177e4
LT
104static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
105static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
1da177e4 106
ce7e4af7
AV
107static int qla2x00_change_queue_depth(struct scsi_device *, int);
108static int qla2x00_change_queue_type(struct scsi_device *, int);
109
a824ebb3 110static struct scsi_host_template qla2x00_driver_template = {
1da177e4 111 .module = THIS_MODULE,
cb63067a 112 .name = QLA2XXX_DRIVER_NAME,
1da177e4
LT
113 .queuecommand = qla2x00_queuecommand,
114
115 .eh_abort_handler = qla2xxx_eh_abort,
116 .eh_device_reset_handler = qla2xxx_eh_device_reset,
523ec773 117 .eh_target_reset_handler = qla2xxx_eh_target_reset,
1da177e4
LT
118 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
119 .eh_host_reset_handler = qla2xxx_eh_host_reset,
120
121 .slave_configure = qla2xxx_slave_configure,
122
f4f051eb 123 .slave_alloc = qla2xxx_slave_alloc,
124 .slave_destroy = qla2xxx_slave_destroy,
1e99e33a
AV
125 .scan_finished = qla2xxx_scan_finished,
126 .scan_start = qla2xxx_scan_start,
ce7e4af7
AV
127 .change_queue_depth = qla2x00_change_queue_depth,
128 .change_queue_type = qla2x00_change_queue_type,
1da177e4
LT
129 .this_id = -1,
130 .cmd_per_lun = 3,
131 .use_clustering = ENABLE_CLUSTERING,
132 .sg_tablesize = SG_ALL,
133
134 /*
135 * The RISC allows for each command to transfer (2^32-1) bytes of data,
136 * which equates to 0x800000 sectors.
137 */
138 .max_sectors = 0xFFFF,
afb046e2 139 .shost_attrs = qla2x00_host_attrs,
1da177e4
LT
140};
141
2c3dfe3f 142struct scsi_host_template qla24xx_driver_template = {
fca29703 143 .module = THIS_MODULE,
cb63067a 144 .name = QLA2XXX_DRIVER_NAME,
fca29703
AV
145 .queuecommand = qla24xx_queuecommand,
146
147 .eh_abort_handler = qla2xxx_eh_abort,
148 .eh_device_reset_handler = qla2xxx_eh_device_reset,
523ec773 149 .eh_target_reset_handler = qla2xxx_eh_target_reset,
fca29703
AV
150 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
151 .eh_host_reset_handler = qla2xxx_eh_host_reset,
152
153 .slave_configure = qla2xxx_slave_configure,
154
155 .slave_alloc = qla2xxx_slave_alloc,
156 .slave_destroy = qla2xxx_slave_destroy,
ed677086
AV
157 .scan_finished = qla2xxx_scan_finished,
158 .scan_start = qla2xxx_scan_start,
ce7e4af7
AV
159 .change_queue_depth = qla2x00_change_queue_depth,
160 .change_queue_type = qla2x00_change_queue_type,
fca29703
AV
161 .this_id = -1,
162 .cmd_per_lun = 3,
163 .use_clustering = ENABLE_CLUSTERING,
164 .sg_tablesize = SG_ALL,
165
166 .max_sectors = 0xFFFF,
afb046e2 167 .shost_attrs = qla2x00_host_attrs,
fca29703
AV
168};
169
1da177e4 170static struct scsi_transport_template *qla2xxx_transport_template = NULL;
2c3dfe3f 171struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
1da177e4 172
1da177e4
LT
173/* TODO Convert to inlines
174 *
175 * Timer routines
176 */
1da177e4 177
2c3dfe3f 178__inline__ void
1da177e4
LT
179qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
180{
181 init_timer(&ha->timer);
182 ha->timer.expires = jiffies + interval * HZ;
183 ha->timer.data = (unsigned long)ha;
184 ha->timer.function = (void (*)(unsigned long))func;
185 add_timer(&ha->timer);
186 ha->timer_active = 1;
187}
188
189static inline void
190qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
191{
192 mod_timer(&ha->timer, jiffies + interval * HZ);
193}
194
a824ebb3 195static __inline__ void
1da177e4
LT
196qla2x00_stop_timer(scsi_qla_host_t *ha)
197{
198 del_timer_sync(&ha->timer);
199 ha->timer_active = 0;
200}
201
1da177e4
LT
202static int qla2x00_do_dpc(void *data);
203
204static void qla2x00_rst_aen(scsi_qla_host_t *);
205
e8711085 206static int qla2x00_mem_alloc(scsi_qla_host_t *);
a824ebb3 207static void qla2x00_mem_free(scsi_qla_host_t *ha);
f4f051eb 208static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
1da177e4 209
1da177e4
LT
210/* -------------------------------------------------------------------------- */
211
1da177e4 212static char *
abbd8870 213qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
1da177e4
LT
214{
215 static char *pci_bus_modes[] = {
216 "33", "66", "100", "133",
217 };
218 uint16_t pci_bus;
219
220 strcpy(str, "PCI");
221 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
222 if (pci_bus) {
223 strcat(str, "-X (");
224 strcat(str, pci_bus_modes[pci_bus]);
225 } else {
226 pci_bus = (ha->pci_attr & BIT_8) >> 8;
227 strcat(str, " (");
228 strcat(str, pci_bus_modes[pci_bus]);
229 }
230 strcat(str, " MHz)");
231
232 return (str);
233}
234
fca29703
AV
235static char *
236qla24xx_pci_info_str(struct scsi_qla_host *ha, char *str)
237{
238 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
239 uint32_t pci_bus;
240 int pcie_reg;
241
242 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
243 if (pcie_reg) {
244 char lwstr[6];
245 uint16_t pcie_lstat, lspeed, lwidth;
246
247 pcie_reg += 0x12;
248 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
249 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
250 lwidth = (pcie_lstat &
251 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
252
253 strcpy(str, "PCIe (");
254 if (lspeed == 1)
c87a0d8c 255 strcat(str, "2.5GT/s ");
c3a2f0df 256 else if (lspeed == 2)
c87a0d8c 257 strcat(str, "5.0GT/s ");
fca29703
AV
258 else
259 strcat(str, "<unknown> ");
260 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
261 strcat(str, lwstr);
262
263 return str;
264 }
265
266 strcpy(str, "PCI");
267 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
268 if (pci_bus == 0 || pci_bus == 8) {
269 strcat(str, " (");
270 strcat(str, pci_bus_modes[pci_bus >> 3]);
271 } else {
272 strcat(str, "-X ");
273 if (pci_bus & BIT_2)
274 strcat(str, "Mode 2");
275 else
276 strcat(str, "Mode 1");
277 strcat(str, " (");
278 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
279 }
280 strcat(str, " MHz)");
281
282 return str;
283}
284
e5f82ab8 285static char *
abbd8870 286qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
1da177e4
LT
287{
288 char un_str[10];
fa2a1ce5 289
1da177e4
LT
290 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
291 ha->fw_minor_version,
292 ha->fw_subminor_version);
293
294 if (ha->fw_attributes & BIT_9) {
295 strcat(str, "FLX");
296 return (str);
297 }
298
299 switch (ha->fw_attributes & 0xFF) {
300 case 0x7:
301 strcat(str, "EF");
302 break;
303 case 0x17:
304 strcat(str, "TP");
305 break;
306 case 0x37:
307 strcat(str, "IP");
308 break;
309 case 0x77:
310 strcat(str, "VI");
311 break;
312 default:
313 sprintf(un_str, "(%x)", ha->fw_attributes);
314 strcat(str, un_str);
315 break;
316 }
317 if (ha->fw_attributes & 0x100)
318 strcat(str, "X");
319
320 return (str);
321}
322
e5f82ab8 323static char *
fca29703
AV
324qla24xx_fw_version_str(struct scsi_qla_host *ha, char *str)
325{
f0883ac6
AV
326 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
327 ha->fw_minor_version,
328 ha->fw_subminor_version);
329
fca29703
AV
330 if (ha->fw_attributes & BIT_0)
331 strcat(str, "[Class 2] ");
332 if (ha->fw_attributes & BIT_1)
333 strcat(str, "[IP] ");
334 if (ha->fw_attributes & BIT_2)
335 strcat(str, "[Multi-ID] ");
c3a2f0df
AV
336 if (ha->fw_attributes & BIT_3)
337 strcat(str, "[SB-2] ");
338 if (ha->fw_attributes & BIT_4)
339 strcat(str, "[T10 CRC] ");
340 if (ha->fw_attributes & BIT_5)
341 strcat(str, "[VI] ");
4d4df193
HK
342 if (ha->fw_attributes & BIT_10)
343 strcat(str, "[84XX] ");
fca29703
AV
344 if (ha->fw_attributes & BIT_13)
345 strcat(str, "[Experimental]");
346 return str;
fca29703
AV
347}
348
349static inline srb_t *
350qla2x00_get_new_sp(scsi_qla_host_t *ha, fc_port_t *fcport,
351 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
352{
353 srb_t *sp;
354
355 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
356 if (!sp)
357 return sp;
358
fca29703
AV
359 sp->ha = ha;
360 sp->fcport = fcport;
361 sp->cmd = cmd;
362 sp->flags = 0;
363 CMD_SP(cmd) = (void *)sp;
364 cmd->scsi_done = done;
365
366 return sp;
367}
368
1da177e4 369static int
f4f051eb 370qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
1da177e4 371{
f363b943 372 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79621 373 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
19a7b4ae 374 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
f4f051eb 375 srb_t *sp;
376 int rval;
1da177e4 377
14e660e6
SJ
378 if (unlikely(pci_channel_offline(ha->pdev))) {
379 cmd->result = DID_REQUEUE << 16;
380 goto qc_fail_command;
381 }
382
19a7b4ae
JSEC
383 rval = fc_remote_port_chkready(rport);
384 if (rval) {
385 cmd->result = rval;
f4f051eb 386 goto qc_fail_command;
387 }
1da177e4 388
387f96b4 389 /* Close window on fcport/rport state-transitioning. */
390 if (!*(fc_port_t **)rport->dd_data) {
391 cmd->result = DID_IMM_RETRY << 16;
392 goto qc_fail_command;
393 }
394
f4f051eb 395 if (atomic_read(&fcport->state) != FCS_ONLINE) {
396 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
397 atomic_read(&ha->loop_state) == LOOP_DEAD) {
398 cmd->result = DID_NO_CONNECT << 16;
399 goto qc_fail_command;
400 }
401 goto qc_host_busy;
402 }
1da177e4
LT
403
404 spin_unlock_irq(ha->host->host_lock);
405
fca29703
AV
406 sp = qla2x00_get_new_sp(ha, fcport, cmd, done);
407 if (!sp)
f4f051eb 408 goto qc_host_busy_lock;
1da177e4 409
f4f051eb 410 rval = qla2x00_start_scsi(sp);
411 if (rval != QLA_SUCCESS)
412 goto qc_host_busy_free_sp;
1da177e4 413
f4f051eb 414 spin_lock_irq(ha->host->host_lock);
1da177e4 415
f4f051eb 416 return 0;
1da177e4 417
f4f051eb 418qc_host_busy_free_sp:
419 qla2x00_sp_free_dma(ha, sp);
f4f051eb 420 mempool_free(sp, ha->srb_mempool);
1da177e4 421
f4f051eb 422qc_host_busy_lock:
423 spin_lock_irq(ha->host->host_lock);
1da177e4 424
f4f051eb 425qc_host_busy:
426 return SCSI_MLQUEUE_HOST_BUSY;
1da177e4 427
f4f051eb 428qc_fail_command:
429 done(cmd);
1da177e4 430
f4f051eb 431 return 0;
1da177e4
LT
432}
433
fca29703
AV
434
435static int
436qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
437{
f363b943 438 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
fca29703 439 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
19a7b4ae 440 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
fca29703
AV
441 srb_t *sp;
442 int rval;
2c3dfe3f 443 scsi_qla_host_t *pha = to_qla_parent(ha);
fca29703 444
14e660e6
SJ
445 if (unlikely(pci_channel_offline(ha->pdev))) {
446 cmd->result = DID_REQUEUE << 16;
447 goto qc24_fail_command;
448 }
449
19a7b4ae
JSEC
450 rval = fc_remote_port_chkready(rport);
451 if (rval) {
452 cmd->result = rval;
fca29703
AV
453 goto qc24_fail_command;
454 }
455
387f96b4 456 /* Close window on fcport/rport state-transitioning. */
457 if (!*(fc_port_t **)rport->dd_data) {
458 cmd->result = DID_IMM_RETRY << 16;
459 goto qc24_fail_command;
460 }
461
fca29703
AV
462 if (atomic_read(&fcport->state) != FCS_ONLINE) {
463 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
2c3dfe3f 464 atomic_read(&pha->loop_state) == LOOP_DEAD) {
fca29703
AV
465 cmd->result = DID_NO_CONNECT << 16;
466 goto qc24_fail_command;
467 }
468 goto qc24_host_busy;
469 }
470
471 spin_unlock_irq(ha->host->host_lock);
472
2c3dfe3f 473 sp = qla2x00_get_new_sp(pha, fcport, cmd, done);
fca29703
AV
474 if (!sp)
475 goto qc24_host_busy_lock;
476
477 rval = qla24xx_start_scsi(sp);
478 if (rval != QLA_SUCCESS)
479 goto qc24_host_busy_free_sp;
480
481 spin_lock_irq(ha->host->host_lock);
482
483 return 0;
484
485qc24_host_busy_free_sp:
2c3dfe3f
SJ
486 qla2x00_sp_free_dma(pha, sp);
487 mempool_free(sp, pha->srb_mempool);
fca29703
AV
488
489qc24_host_busy_lock:
490 spin_lock_irq(ha->host->host_lock);
491
492qc24_host_busy:
493 return SCSI_MLQUEUE_HOST_BUSY;
494
495qc24_fail_command:
496 done(cmd);
497
498 return 0;
499}
500
501
1da177e4
LT
502/*
503 * qla2x00_eh_wait_on_command
504 * Waits for the command to be returned by the Firmware for some
505 * max time.
506 *
507 * Input:
508 * ha = actual ha whose done queue will contain the command
509 * returned by firmware.
510 * cmd = Scsi Command to wait on.
511 * flag = Abort/Reset(Bus or Device Reset)
512 *
513 * Return:
514 * Not Found : 0
515 * Found : 1
516 */
517static int
518qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
519{
fe74c71f
AV
520#define ABORT_POLLING_PERIOD 1000
521#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051eb 522 unsigned long wait_iter = ABORT_WAIT_ITER;
523 int ret = QLA_SUCCESS;
1da177e4 524
f4f051eb 525 while (CMD_SP(cmd)) {
fe74c71f 526 msleep(ABORT_POLLING_PERIOD);
1da177e4 527
f4f051eb 528 if (--wait_iter)
529 break;
530 }
531 if (CMD_SP(cmd))
532 ret = QLA_FUNCTION_FAILED;
1da177e4 533
f4f051eb 534 return ret;
1da177e4
LT
535}
536
537/*
538 * qla2x00_wait_for_hba_online
fa2a1ce5 539 * Wait till the HBA is online after going through
1da177e4
LT
540 * <= MAX_RETRIES_OF_ISP_ABORT or
541 * finally HBA is disabled ie marked offline
542 *
543 * Input:
544 * ha - pointer to host adapter structure
fa2a1ce5
AV
545 *
546 * Note:
1da177e4
LT
547 * Does context switching-Release SPIN_LOCK
548 * (if any) before calling this routine.
549 *
550 * Return:
551 * Success (Adapter is online) : 0
552 * Failed (Adapter is offline/disabled) : 1
553 */
854165f4 554int
1da177e4
LT
555qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
556{
fca29703
AV
557 int return_status;
558 unsigned long wait_online;
2c3dfe3f 559 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4 560
fa2a1ce5 561 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
2c3dfe3f
SJ
562 while (((test_bit(ISP_ABORT_NEEDED, &pha->dpc_flags)) ||
563 test_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags) ||
564 test_bit(ISP_ABORT_RETRY, &pha->dpc_flags) ||
565 pha->dpc_active) && time_before(jiffies, wait_online)) {
1da177e4
LT
566
567 msleep(1000);
568 }
2c3dfe3f 569 if (pha->flags.online)
fa2a1ce5 570 return_status = QLA_SUCCESS;
1da177e4
LT
571 else
572 return_status = QLA_FUNCTION_FAILED;
573
1da177e4
LT
574 return (return_status);
575}
576
577/*
578 * qla2x00_wait_for_loop_ready
579 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
fa2a1ce5 580 * to be in LOOP_READY state.
1da177e4
LT
581 * Input:
582 * ha - pointer to host adapter structure
fa2a1ce5
AV
583 *
584 * Note:
1da177e4
LT
585 * Does context switching-Release SPIN_LOCK
586 * (if any) before calling this routine.
fa2a1ce5 587 *
1da177e4
LT
588 *
589 * Return:
590 * Success (LOOP_READY) : 0
591 * Failed (LOOP_NOT_READY) : 1
592 */
fa2a1ce5 593static inline int
1da177e4
LT
594qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
595{
596 int return_status = QLA_SUCCESS;
597 unsigned long loop_timeout ;
2c3dfe3f 598 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4
LT
599
600 /* wait for 5 min at the max for loop to be ready */
fa2a1ce5 601 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1da177e4 602
2c3dfe3f
SJ
603 while ((!atomic_read(&pha->loop_down_timer) &&
604 atomic_read(&pha->loop_state) == LOOP_DOWN) ||
605 atomic_read(&pha->loop_state) != LOOP_READY) {
606 if (atomic_read(&pha->loop_state) == LOOP_DEAD) {
57680080
RA
607 return_status = QLA_FUNCTION_FAILED;
608 break;
609 }
1da177e4
LT
610 msleep(1000);
611 if (time_after_eq(jiffies, loop_timeout)) {
612 return_status = QLA_FUNCTION_FAILED;
613 break;
614 }
615 }
fa2a1ce5 616 return (return_status);
1da177e4
LT
617}
618
07db5183
AV
619static void
620qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
621{
622 struct Scsi_Host *shost = cmnd->device->host;
623 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
624 unsigned long flags;
625
626 spin_lock_irqsave(shost->host_lock, flags);
627 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
628 spin_unlock_irqrestore(shost->host_lock, flags);
629 msleep(1000);
630 spin_lock_irqsave(shost->host_lock, flags);
631 }
632 spin_unlock_irqrestore(shost->host_lock, flags);
633 return;
634}
635
1da177e4
LT
636/**************************************************************************
637* qla2xxx_eh_abort
638*
639* Description:
640* The abort function will abort the specified command.
641*
642* Input:
643* cmd = Linux SCSI command packet to be aborted.
644*
645* Returns:
646* Either SUCCESS or FAILED.
647*
648* Note:
2ea00202 649* Only return FAILED if command not returned by firmware.
1da177e4 650**************************************************************************/
e5f82ab8 651static int
1da177e4
LT
652qla2xxx_eh_abort(struct scsi_cmnd *cmd)
653{
f363b943 654 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
f4f051eb 655 srb_t *sp;
656 int ret, i;
657 unsigned int id, lun;
658 unsigned long serial;
18e144d3 659 unsigned long flags;
2ea00202 660 int wait = 0;
2c3dfe3f 661 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4 662
07db5183
AV
663 qla2x00_block_error_handler(cmd);
664
f4f051eb 665 if (!CMD_SP(cmd))
2ea00202 666 return SUCCESS;
1da177e4 667
2ea00202 668 ret = SUCCESS;
1da177e4 669
f4f051eb 670 id = cmd->device->id;
671 lun = cmd->device->lun;
672 serial = cmd->serial_number;
1da177e4 673
f4f051eb 674 /* Check active list for command command. */
2c3dfe3f 675 spin_lock_irqsave(&pha->hardware_lock, flags);
f4f051eb 676 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
2c3dfe3f 677 sp = pha->outstanding_cmds[i];
1da177e4 678
f4f051eb 679 if (sp == NULL)
680 continue;
1da177e4 681
f4f051eb 682 if (sp->cmd != cmd)
683 continue;
1da177e4 684
75bc4190
AV
685 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
686 __func__, ha->host_no, sp, serial));
1da177e4 687
2c3dfe3f 688 spin_unlock_irqrestore(&pha->hardware_lock, flags);
fd34f556 689 if (ha->isp_ops->abort_command(ha, sp)) {
f4f051eb 690 DEBUG2(printk("%s(%ld): abort_command "
691 "mbx failed.\n", __func__, ha->host_no));
692 } else {
693 DEBUG3(printk("%s(%ld): abort_command "
694 "mbx success.\n", __func__, ha->host_no));
2ea00202 695 wait = 1;
f4f051eb 696 }
2c3dfe3f 697 spin_lock_irqsave(&pha->hardware_lock, flags);
1da177e4 698
f4f051eb 699 break;
700 }
2c3dfe3f 701 spin_unlock_irqrestore(&pha->hardware_lock, flags);
1da177e4 702
f4f051eb 703 /* Wait for the command to be returned. */
2ea00202 704 if (wait) {
f4f051eb 705 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
fa2a1ce5 706 qla_printk(KERN_ERR, ha,
f4f051eb 707 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
708 "%x.\n", ha->host_no, id, lun, serial, ret);
2ea00202 709 ret = FAILED;
f4f051eb 710 }
1da177e4 711 }
1da177e4 712
fa2a1ce5 713 qla_printk(KERN_INFO, ha,
2ea00202
MR
714 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
715 ha->host_no, id, lun, wait, serial, ret);
1da177e4 716
f4f051eb 717 return ret;
718}
1da177e4 719
523ec773
AV
720enum nexus_wait_type {
721 WAIT_HOST = 0,
722 WAIT_TARGET,
723 WAIT_LUN,
724};
725
f4f051eb 726static int
523ec773
AV
727qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha, unsigned int t,
728 unsigned int l, enum nexus_wait_type type)
f4f051eb 729{
523ec773
AV
730 int cnt, match, status;
731 srb_t *sp;
18e144d3 732 unsigned long flags;
2c3dfe3f 733 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4 734
523ec773
AV
735 status = QLA_SUCCESS;
736 spin_lock_irqsave(&pha->hardware_lock, flags);
737 for (cnt = 1; status == QLA_SUCCESS && cnt < MAX_OUTSTANDING_COMMANDS;
738 cnt++) {
2c3dfe3f 739 sp = pha->outstanding_cmds[cnt];
523ec773
AV
740 if (!sp)
741 continue;
742 if (ha->vp_idx != sp->ha->vp_idx)
743 continue;
744 match = 0;
745 switch (type) {
746 case WAIT_HOST:
747 match = 1;
748 break;
749 case WAIT_TARGET:
750 match = sp->cmd->device->id == t;
751 break;
752 case WAIT_LUN:
753 match = (sp->cmd->device->id == t &&
754 sp->cmd->device->lun == l);
755 break;
1da177e4 756 }
523ec773
AV
757 if (!match)
758 continue;
759
760 spin_unlock_irqrestore(&pha->hardware_lock, flags);
761 status = qla2x00_eh_wait_on_command(ha, sp->cmd);
762 spin_lock_irqsave(&pha->hardware_lock, flags);
1da177e4 763 }
523ec773
AV
764 spin_unlock_irqrestore(&pha->hardware_lock, flags);
765
766 return status;
1da177e4
LT
767}
768
523ec773
AV
769static char *reset_errors[] = {
770 "HBA not online",
771 "HBA not ready",
772 "Task management failed",
773 "Waiting for command completions",
774};
1da177e4 775
e5f82ab8 776static int
523ec773
AV
777__qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
778 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int))
1da177e4 779{
f363b943 780 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79621 781 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
523ec773 782 int err;
1da177e4 783
07db5183
AV
784 qla2x00_block_error_handler(cmd);
785
b0328bee 786 if (!fcport)
523ec773 787 return FAILED;
1da177e4 788
523ec773
AV
789 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
790 ha->host_no, cmd->device->id, cmd->device->lun, name);
1da177e4 791
523ec773 792 err = 0;
94d0e7b8 793 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
523ec773
AV
794 goto eh_reset_failed;
795 err = 1;
796 if (qla2x00_wait_for_loop_ready(ha) != QLA_SUCCESS)
797 goto eh_reset_failed;
798 err = 2;
799 if (do_reset(fcport, cmd->device->lun) != QLA_SUCCESS)
800 goto eh_reset_failed;
801 err = 3;
802 if (qla2x00_eh_wait_for_pending_commands(ha, cmd->device->id,
803 cmd->device->lun, type) != QLA_SUCCESS)
804 goto eh_reset_failed;
805
806 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
807 ha->host_no, cmd->device->id, cmd->device->lun, name);
808
809 return SUCCESS;
810
811 eh_reset_failed:
812 qla_printk(KERN_INFO, ha, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n",
813 ha->host_no, cmd->device->id, cmd->device->lun, name,
814 reset_errors[err]);
815 return FAILED;
816}
1da177e4 817
523ec773
AV
818static int
819qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
820{
821 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
1da177e4 822
523ec773
AV
823 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
824 ha->isp_ops->lun_reset);
1da177e4
LT
825}
826
1da177e4 827static int
523ec773 828qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
1da177e4 829{
523ec773 830 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
1da177e4 831
523ec773
AV
832 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
833 ha->isp_ops->target_reset);
1da177e4
LT
834}
835
1da177e4
LT
836/**************************************************************************
837* qla2xxx_eh_bus_reset
838*
839* Description:
840* The bus reset function will reset the bus and abort any executing
841* commands.
842*
843* Input:
844* cmd = Linux SCSI command packet of the command that cause the
845* bus reset.
846*
847* Returns:
848* SUCCESS/FAILURE (defined as macro in scsi.h).
849*
850**************************************************************************/
e5f82ab8 851static int
1da177e4
LT
852qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
853{
f363b943 854 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
2c3dfe3f 855 scsi_qla_host_t *pha = to_qla_parent(ha);
bdf79621 856 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
2c3dfe3f 857 int ret = FAILED;
f4f051eb 858 unsigned int id, lun;
859 unsigned long serial;
860
07db5183
AV
861 qla2x00_block_error_handler(cmd);
862
f4f051eb 863 id = cmd->device->id;
864 lun = cmd->device->lun;
865 serial = cmd->serial_number;
1da177e4 866
b0328bee 867 if (!fcport)
f4f051eb 868 return ret;
1da177e4
LT
869
870 qla_printk(KERN_INFO, ha,
f4f051eb 871 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
1da177e4 872
1da177e4
LT
873 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
874 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051eb 875 goto eh_bus_reset_done;
1da177e4
LT
876 }
877
878 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051eb 879 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
880 ret = SUCCESS;
1da177e4 881 }
f4f051eb 882 if (ret == FAILED)
883 goto eh_bus_reset_done;
1da177e4 884
9a41a62b 885 /* Flush outstanding commands. */
523ec773
AV
886 if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) !=
887 QLA_SUCCESS)
9a41a62b 888 ret = FAILED;
1da177e4 889
f4f051eb 890eh_bus_reset_done:
1da177e4 891 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051eb 892 (ret == FAILED) ? "failed" : "succeded");
1da177e4 893
f4f051eb 894 return ret;
1da177e4
LT
895}
896
897/**************************************************************************
898* qla2xxx_eh_host_reset
899*
900* Description:
901* The reset function will reset the Adapter.
902*
903* Input:
904* cmd = Linux SCSI command packet of the command that cause the
905* adapter reset.
906*
907* Returns:
908* Either SUCCESS or FAILED.
909*
910* Note:
911**************************************************************************/
e5f82ab8 912static int
1da177e4
LT
913qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
914{
f363b943 915 scsi_qla_host_t *ha = shost_priv(cmd->device->host);
bdf79621 916 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
2c3dfe3f 917 int ret = FAILED;
f4f051eb 918 unsigned int id, lun;
919 unsigned long serial;
2c3dfe3f 920 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4 921
07db5183
AV
922 qla2x00_block_error_handler(cmd);
923
f4f051eb 924 id = cmd->device->id;
925 lun = cmd->device->lun;
926 serial = cmd->serial_number;
927
b0328bee 928 if (!fcport)
f4f051eb 929 return ret;
1da177e4 930
1da177e4 931 qla_printk(KERN_INFO, ha,
f4f051eb 932 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
1da177e4 933
1da177e4 934 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051eb 935 goto eh_host_reset_lock;
1da177e4
LT
936
937 /*
938 * Fixme-may be dpc thread is active and processing
fa2a1ce5 939 * loop_resync,so wait a while for it to
1da177e4
LT
940 * be completed and then issue big hammer.Otherwise
941 * it may cause I/O failure as big hammer marks the
942 * devices as lost kicking of the port_down_timer
943 * while dpc is stuck for the mailbox to complete.
944 */
1da177e4 945 qla2x00_wait_for_loop_ready(ha);
2c3dfe3f
SJ
946 set_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
947 if (qla2x00_abort_isp(pha)) {
948 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
1da177e4 949 /* failed. schedule dpc to try */
2c3dfe3f 950 set_bit(ISP_ABORT_NEEDED, &pha->dpc_flags);
1da177e4
LT
951
952 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051eb 953 goto eh_host_reset_lock;
fa2a1ce5 954 }
2c3dfe3f 955 clear_bit(ABORT_ISP_ACTIVE, &pha->dpc_flags);
1da177e4 956
1da177e4 957 /* Waiting for our command in done_queue to be returned to OS.*/
523ec773
AV
958 if (qla2x00_eh_wait_for_pending_commands(pha, 0, 0, WAIT_HOST) ==
959 QLA_SUCCESS)
f4f051eb 960 ret = SUCCESS;
1da177e4 961
2c3dfe3f
SJ
962 if (ha->parent)
963 qla2x00_vp_abort_isp(ha);
964
f4f051eb 965eh_host_reset_lock:
f4f051eb 966 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
967 (ret == FAILED) ? "failed" : "succeded");
1da177e4 968
f4f051eb 969 return ret;
970}
1da177e4
LT
971
972/*
973* qla2x00_loop_reset
974* Issue loop reset.
975*
976* Input:
977* ha = adapter block pointer.
978*
979* Returns:
980* 0 = success
981*/
a4722cf2 982int
1da177e4
LT
983qla2x00_loop_reset(scsi_qla_host_t *ha)
984{
0c8c39af 985 int ret;
bdf79621 986 struct fc_port *fcport;
1da177e4 987
0c8c39af
AV
988 if (ha->flags.enable_lip_full_login) {
989 ret = qla2x00_full_login_lip(ha);
990 if (ret != QLA_SUCCESS) {
991 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
992 "full_login_lip=%d.\n", __func__, ha->host_no,
993 ret));
994 }
995 atomic_set(&ha->loop_state, LOOP_DOWN);
996 atomic_set(&ha->loop_down_timer, LOOP_DOWN_TIME);
997 qla2x00_mark_all_devices_lost(ha, 0);
998 qla2x00_wait_for_loop_ready(ha);
999 }
1000
1da177e4 1001 if (ha->flags.enable_lip_reset) {
0c8c39af
AV
1002 ret = qla2x00_lip_reset(ha);
1003 if (ret != QLA_SUCCESS) {
1004 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1005 "lip_reset=%d.\n", __func__, ha->host_no, ret));
1006 }
1007 qla2x00_wait_for_loop_ready(ha);
1da177e4
LT
1008 }
1009
0c8c39af 1010 if (ha->flags.enable_target_reset) {
bdf79621 1011 list_for_each_entry(fcport, &ha->fcports, list) {
1012 if (fcport->port_type != FCT_TARGET)
1da177e4
LT
1013 continue;
1014
523ec773 1015 ret = ha->isp_ops->target_reset(fcport, 0);
0c8c39af
AV
1016 if (ret != QLA_SUCCESS) {
1017 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1018 "target_reset=%d d_id=%x.\n", __func__,
1019 ha->host_no, ret, fcport->d_id.b24));
1020 }
1da177e4
LT
1021 }
1022 }
1023
1da177e4
LT
1024 /* Issue marker command only when we are going to start the I/O */
1025 ha->marker_needed = 1;
1026
0c8c39af 1027 return QLA_SUCCESS;
1da177e4
LT
1028}
1029
df4bf0bb
AV
1030void
1031qla2x00_abort_all_cmds(scsi_qla_host_t *ha, int res)
1032{
1033 int cnt;
1034 unsigned long flags;
1035 srb_t *sp;
1036
1037 spin_lock_irqsave(&ha->hardware_lock, flags);
1038 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1039 sp = ha->outstanding_cmds[cnt];
1040 if (sp) {
1041 ha->outstanding_cmds[cnt] = NULL;
1042 sp->flags = 0;
1043 sp->cmd->result = res;
1044 sp->cmd->host_scribble = (unsigned char *)NULL;
1045 qla2x00_sp_compl(ha, sp);
1046 }
1047 }
1048 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1049}
1050
f4f051eb 1051static int
1052qla2xxx_slave_alloc(struct scsi_device *sdev)
1da177e4 1053{
bdf79621 1054 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1da177e4 1055
19a7b4ae 1056 if (!rport || fc_remote_port_chkready(rport))
f4f051eb 1057 return -ENXIO;
bdf79621 1058
19a7b4ae 1059 sdev->hostdata = *(fc_port_t **)rport->dd_data;
1da177e4 1060
f4f051eb 1061 return 0;
1062}
1da177e4 1063
f4f051eb 1064static int
1065qla2xxx_slave_configure(struct scsi_device *sdev)
1066{
f363b943 1067 scsi_qla_host_t *ha = shost_priv(sdev->host);
8482e118 1068 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1069
f4f051eb 1070 if (sdev->tagged_supported)
df7baa50 1071 scsi_activate_tcq(sdev, ha->max_q_depth);
f4f051eb 1072 else
df7baa50 1073 scsi_deactivate_tcq(sdev, ha->max_q_depth);
1da177e4 1074
8482e118 1075 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
1076
f4f051eb 1077 return 0;
1078}
1da177e4 1079
f4f051eb 1080static void
1081qla2xxx_slave_destroy(struct scsi_device *sdev)
1082{
1083 sdev->hostdata = NULL;
1da177e4
LT
1084}
1085
ce7e4af7
AV
1086static int
1087qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1088{
1089 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1090 return sdev->queue_depth;
1091}
1092
1093static int
1094qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1095{
1096 if (sdev->tagged_supported) {
1097 scsi_set_tag_type(sdev, tag_type);
1098 if (tag_type)
1099 scsi_activate_tcq(sdev, sdev->queue_depth);
1100 else
1101 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1102 } else
1103 tag_type = 0;
1104
1105 return tag_type;
1106}
1107
1da177e4
LT
1108/**
1109 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1110 * @ha: HA context
1111 *
1112 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1113 * supported addressing method.
1114 */
1115static void
1116qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
1117{
7524f9b9 1118 /* Assume a 32bit DMA mask. */
1da177e4 1119 ha->flags.enable_64bit_addressing = 0;
1da177e4 1120
7524f9b9
AV
1121 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1122 /* Any upper-dword bits set? */
1123 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1124 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1125 /* Ok, a 64bit DMA mask is applicable. */
1da177e4 1126 ha->flags.enable_64bit_addressing = 1;
fd34f556
AV
1127 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1128 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
7524f9b9 1129 return;
1da177e4 1130 }
1da177e4 1131 }
7524f9b9
AV
1132
1133 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1134 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
1da177e4
LT
1135}
1136
fd34f556
AV
1137static void
1138qla2x00_enable_intrs(scsi_qla_host_t *ha)
1139{
1140 unsigned long flags = 0;
1141 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1142
1143 spin_lock_irqsave(&ha->hardware_lock, flags);
1144 ha->interrupts_on = 1;
1145 /* enable risc and host interrupts */
1146 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1147 RD_REG_WORD(&reg->ictrl);
1148 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1149
1150}
1151
1152static void
1153qla2x00_disable_intrs(scsi_qla_host_t *ha)
1154{
1155 unsigned long flags = 0;
1156 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1157
1158 spin_lock_irqsave(&ha->hardware_lock, flags);
1159 ha->interrupts_on = 0;
1160 /* disable risc and host interrupts */
1161 WRT_REG_WORD(&reg->ictrl, 0);
1162 RD_REG_WORD(&reg->ictrl);
1163 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1164}
1165
1166static void
1167qla24xx_enable_intrs(scsi_qla_host_t *ha)
1168{
1169 unsigned long flags = 0;
1170 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1171
1172 spin_lock_irqsave(&ha->hardware_lock, flags);
1173 ha->interrupts_on = 1;
1174 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1175 RD_REG_DWORD(&reg->ictrl);
1176 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1177}
1178
1179static void
1180qla24xx_disable_intrs(scsi_qla_host_t *ha)
1181{
1182 unsigned long flags = 0;
1183 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1184
1185 spin_lock_irqsave(&ha->hardware_lock, flags);
1186 ha->interrupts_on = 0;
1187 WRT_REG_DWORD(&reg->ictrl, 0);
1188 RD_REG_DWORD(&reg->ictrl);
1189 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1190}
1191
1192static struct isp_operations qla2100_isp_ops = {
1193 .pci_config = qla2100_pci_config,
1194 .reset_chip = qla2x00_reset_chip,
1195 .chip_diag = qla2x00_chip_diag,
1196 .config_rings = qla2x00_config_rings,
1197 .reset_adapter = qla2x00_reset_adapter,
1198 .nvram_config = qla2x00_nvram_config,
1199 .update_fw_options = qla2x00_update_fw_options,
1200 .load_risc = qla2x00_load_risc,
1201 .pci_info_str = qla2x00_pci_info_str,
1202 .fw_version_str = qla2x00_fw_version_str,
1203 .intr_handler = qla2100_intr_handler,
1204 .enable_intrs = qla2x00_enable_intrs,
1205 .disable_intrs = qla2x00_disable_intrs,
1206 .abort_command = qla2x00_abort_command,
523ec773
AV
1207 .target_reset = qla2x00_abort_target,
1208 .lun_reset = qla2x00_lun_reset,
fd34f556
AV
1209 .fabric_login = qla2x00_login_fabric,
1210 .fabric_logout = qla2x00_fabric_logout,
1211 .calc_req_entries = qla2x00_calc_iocbs_32,
1212 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1213 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1214 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1215 .read_nvram = qla2x00_read_nvram_data,
1216 .write_nvram = qla2x00_write_nvram_data,
1217 .fw_dump = qla2100_fw_dump,
1218 .beacon_on = NULL,
1219 .beacon_off = NULL,
1220 .beacon_blink = NULL,
1221 .read_optrom = qla2x00_read_optrom_data,
1222 .write_optrom = qla2x00_write_optrom_data,
1223 .get_flash_version = qla2x00_get_flash_version,
1224};
1225
1226static struct isp_operations qla2300_isp_ops = {
1227 .pci_config = qla2300_pci_config,
1228 .reset_chip = qla2x00_reset_chip,
1229 .chip_diag = qla2x00_chip_diag,
1230 .config_rings = qla2x00_config_rings,
1231 .reset_adapter = qla2x00_reset_adapter,
1232 .nvram_config = qla2x00_nvram_config,
1233 .update_fw_options = qla2x00_update_fw_options,
1234 .load_risc = qla2x00_load_risc,
1235 .pci_info_str = qla2x00_pci_info_str,
1236 .fw_version_str = qla2x00_fw_version_str,
1237 .intr_handler = qla2300_intr_handler,
1238 .enable_intrs = qla2x00_enable_intrs,
1239 .disable_intrs = qla2x00_disable_intrs,
1240 .abort_command = qla2x00_abort_command,
523ec773
AV
1241 .target_reset = qla2x00_abort_target,
1242 .lun_reset = qla2x00_lun_reset,
fd34f556
AV
1243 .fabric_login = qla2x00_login_fabric,
1244 .fabric_logout = qla2x00_fabric_logout,
1245 .calc_req_entries = qla2x00_calc_iocbs_32,
1246 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1247 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1248 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1249 .read_nvram = qla2x00_read_nvram_data,
1250 .write_nvram = qla2x00_write_nvram_data,
1251 .fw_dump = qla2300_fw_dump,
1252 .beacon_on = qla2x00_beacon_on,
1253 .beacon_off = qla2x00_beacon_off,
1254 .beacon_blink = qla2x00_beacon_blink,
1255 .read_optrom = qla2x00_read_optrom_data,
1256 .write_optrom = qla2x00_write_optrom_data,
1257 .get_flash_version = qla2x00_get_flash_version,
1258};
1259
1260static struct isp_operations qla24xx_isp_ops = {
1261 .pci_config = qla24xx_pci_config,
1262 .reset_chip = qla24xx_reset_chip,
1263 .chip_diag = qla24xx_chip_diag,
1264 .config_rings = qla24xx_config_rings,
1265 .reset_adapter = qla24xx_reset_adapter,
1266 .nvram_config = qla24xx_nvram_config,
1267 .update_fw_options = qla24xx_update_fw_options,
1268 .load_risc = qla24xx_load_risc,
1269 .pci_info_str = qla24xx_pci_info_str,
1270 .fw_version_str = qla24xx_fw_version_str,
1271 .intr_handler = qla24xx_intr_handler,
1272 .enable_intrs = qla24xx_enable_intrs,
1273 .disable_intrs = qla24xx_disable_intrs,
1274 .abort_command = qla24xx_abort_command,
523ec773
AV
1275 .target_reset = qla24xx_abort_target,
1276 .lun_reset = qla24xx_lun_reset,
fd34f556
AV
1277 .fabric_login = qla24xx_login_fabric,
1278 .fabric_logout = qla24xx_fabric_logout,
1279 .calc_req_entries = NULL,
1280 .build_iocbs = NULL,
1281 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1282 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1283 .read_nvram = qla24xx_read_nvram_data,
1284 .write_nvram = qla24xx_write_nvram_data,
1285 .fw_dump = qla24xx_fw_dump,
1286 .beacon_on = qla24xx_beacon_on,
1287 .beacon_off = qla24xx_beacon_off,
1288 .beacon_blink = qla24xx_beacon_blink,
1289 .read_optrom = qla24xx_read_optrom_data,
1290 .write_optrom = qla24xx_write_optrom_data,
1291 .get_flash_version = qla24xx_get_flash_version,
1292};
1293
c3a2f0df
AV
1294static struct isp_operations qla25xx_isp_ops = {
1295 .pci_config = qla25xx_pci_config,
1296 .reset_chip = qla24xx_reset_chip,
1297 .chip_diag = qla24xx_chip_diag,
1298 .config_rings = qla24xx_config_rings,
1299 .reset_adapter = qla24xx_reset_adapter,
1300 .nvram_config = qla24xx_nvram_config,
1301 .update_fw_options = qla24xx_update_fw_options,
1302 .load_risc = qla24xx_load_risc,
1303 .pci_info_str = qla24xx_pci_info_str,
1304 .fw_version_str = qla24xx_fw_version_str,
1305 .intr_handler = qla24xx_intr_handler,
1306 .enable_intrs = qla24xx_enable_intrs,
1307 .disable_intrs = qla24xx_disable_intrs,
1308 .abort_command = qla24xx_abort_command,
523ec773
AV
1309 .target_reset = qla24xx_abort_target,
1310 .lun_reset = qla24xx_lun_reset,
c3a2f0df
AV
1311 .fabric_login = qla24xx_login_fabric,
1312 .fabric_logout = qla24xx_fabric_logout,
1313 .calc_req_entries = NULL,
1314 .build_iocbs = NULL,
1315 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1316 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1317 .read_nvram = qla25xx_read_nvram_data,
1318 .write_nvram = qla25xx_write_nvram_data,
1319 .fw_dump = qla25xx_fw_dump,
1320 .beacon_on = qla24xx_beacon_on,
1321 .beacon_off = qla24xx_beacon_off,
1322 .beacon_blink = qla24xx_beacon_blink,
338c9161 1323 .read_optrom = qla25xx_read_optrom_data,
c3a2f0df
AV
1324 .write_optrom = qla24xx_write_optrom_data,
1325 .get_flash_version = qla24xx_get_flash_version,
1326};
1327
ea5b6382 1328static inline void
1329qla2x00_set_isp_flags(scsi_qla_host_t *ha)
1330{
1331 ha->device_type = DT_EXTENDED_IDS;
1332 switch (ha->pdev->device) {
1333 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1334 ha->device_type |= DT_ISP2100;
1335 ha->device_type &= ~DT_EXTENDED_IDS;
441d1072 1336 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
ea5b6382 1337 break;
1338 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1339 ha->device_type |= DT_ISP2200;
1340 ha->device_type &= ~DT_EXTENDED_IDS;
441d1072 1341 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
ea5b6382 1342 break;
1343 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1344 ha->device_type |= DT_ISP2300;
4a59f71d 1345 ha->device_type |= DT_ZIO_SUPPORTED;
441d1072 1346 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
ea5b6382 1347 break;
1348 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1349 ha->device_type |= DT_ISP2312;
4a59f71d 1350 ha->device_type |= DT_ZIO_SUPPORTED;
441d1072 1351 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
ea5b6382 1352 break;
1353 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1354 ha->device_type |= DT_ISP2322;
4a59f71d 1355 ha->device_type |= DT_ZIO_SUPPORTED;
ea5b6382 1356 if (ha->pdev->subsystem_vendor == 0x1028 &&
1357 ha->pdev->subsystem_device == 0x0170)
1358 ha->device_type |= DT_OEM_001;
441d1072 1359 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
ea5b6382 1360 break;
1361 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1362 ha->device_type |= DT_ISP6312;
441d1072 1363 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
ea5b6382 1364 break;
1365 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1366 ha->device_type |= DT_ISP6322;
441d1072 1367 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
ea5b6382 1368 break;
1369 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1370 ha->device_type |= DT_ISP2422;
4a59f71d 1371 ha->device_type |= DT_ZIO_SUPPORTED;
e428924c 1372 ha->device_type |= DT_FWI2;
c76f2c01 1373 ha->device_type |= DT_IIDMA;
441d1072 1374 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
ea5b6382 1375 break;
1376 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1377 ha->device_type |= DT_ISP2432;
4a59f71d 1378 ha->device_type |= DT_ZIO_SUPPORTED;
e428924c 1379 ha->device_type |= DT_FWI2;
c76f2c01 1380 ha->device_type |= DT_IIDMA;
441d1072 1381 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
ea5b6382 1382 break;
4d4df193
HK
1383 case PCI_DEVICE_ID_QLOGIC_ISP8432:
1384 ha->device_type |= DT_ISP8432;
1385 ha->device_type |= DT_ZIO_SUPPORTED;
1386 ha->device_type |= DT_FWI2;
1387 ha->device_type |= DT_IIDMA;
1388 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1389 break;
044cc6c8 1390 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1391 ha->device_type |= DT_ISP5422;
e428924c 1392 ha->device_type |= DT_FWI2;
441d1072 1393 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
ea5b6382 1394 break;
044cc6c8 1395 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1396 ha->device_type |= DT_ISP5432;
e428924c 1397 ha->device_type |= DT_FWI2;
441d1072 1398 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
ea5b6382 1399 break;
c3a2f0df
AV
1400 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1401 ha->device_type |= DT_ISP2532;
1402 ha->device_type |= DT_ZIO_SUPPORTED;
1403 ha->device_type |= DT_FWI2;
1404 ha->device_type |= DT_IIDMA;
441d1072 1405 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
ea5b6382 1406 break;
1407 }
1408}
1409
1da177e4
LT
1410static int
1411qla2x00_iospace_config(scsi_qla_host_t *ha)
1412{
3776541d 1413 resource_size_t pio;
1da177e4 1414
285d0321
AV
1415 if (pci_request_selected_regions(ha->pdev, ha->bars,
1416 QLA2XXX_DRIVER_NAME)) {
1417 qla_printk(KERN_WARNING, ha,
1418 "Failed to reserve PIO/MMIO regions (%s)\n",
1419 pci_name(ha->pdev));
1420
1421 goto iospace_error_exit;
1422 }
1423 if (!(ha->bars & 1))
1424 goto skip_pio;
1425
1da177e4
LT
1426 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1427 pio = pci_resource_start(ha->pdev, 0);
3776541d
AV
1428 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1429 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
1da177e4
LT
1430 qla_printk(KERN_WARNING, ha,
1431 "Invalid PCI I/O region size (%s)...\n",
1432 pci_name(ha->pdev));
1433 pio = 0;
1434 }
1435 } else {
1436 qla_printk(KERN_WARNING, ha,
1437 "region #0 not a PIO resource (%s)...\n",
1438 pci_name(ha->pdev));
1439 pio = 0;
1440 }
285d0321 1441 ha->pio_address = pio;
1da177e4 1442
285d0321 1443skip_pio:
1da177e4 1444 /* Use MMIO operations for all accesses. */
3776541d 1445 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
1da177e4 1446 qla_printk(KERN_ERR, ha,
3776541d 1447 "region #1 not an MMIO resource (%s), aborting\n",
1da177e4
LT
1448 pci_name(ha->pdev));
1449 goto iospace_error_exit;
1450 }
3776541d 1451 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
1da177e4
LT
1452 qla_printk(KERN_ERR, ha,
1453 "Invalid PCI mem region size (%s), aborting\n",
1454 pci_name(ha->pdev));
1455 goto iospace_error_exit;
1456 }
1457
3776541d 1458 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
1da177e4
LT
1459 if (!ha->iobase) {
1460 qla_printk(KERN_ERR, ha,
1461 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1462
1463 goto iospace_error_exit;
1464 }
1465
1466 return (0);
1467
1468iospace_error_exit:
1469 return (-ENOMEM);
1470}
1471
1e99e33a
AV
1472static void
1473qla2xxx_scan_start(struct Scsi_Host *shost)
1474{
f363b943 1475 scsi_qla_host_t *ha = shost_priv(shost);
1e99e33a
AV
1476
1477 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
1478 set_bit(LOCAL_LOOP_UPDATE, &ha->dpc_flags);
1479 set_bit(RSCN_UPDATE, &ha->dpc_flags);
1480}
1481
1482static int
1483qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1484{
f363b943 1485 scsi_qla_host_t *ha = shost_priv(shost);
1e99e33a
AV
1486
1487 if (!ha->host)
1488 return 1;
1489 if (time > ha->loop_reset_delay * HZ)
1490 return 1;
1491
1492 return atomic_read(&ha->loop_state) == LOOP_READY;
1493}
1494
1da177e4
LT
1495/*
1496 * PCI driver interface
1497 */
7ee61397
AV
1498static int __devinit
1499qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
1da177e4 1500{
a1541d5a 1501 int ret = -ENODEV;
1da177e4
LT
1502 struct Scsi_Host *host;
1503 scsi_qla_host_t *ha;
29856e28 1504 char pci_info[30];
1da177e4 1505 char fw_str[30];
5433383e 1506 struct scsi_host_template *sht;
09483916 1507 int bars, mem_only = 0;
1da177e4 1508
285d0321 1509 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
5433383e
AV
1510 sht = &qla2x00_driver_template;
1511 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
8bc69e7d 1512 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
4d4df193 1513 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
8bc69e7d 1514 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
c3a2f0df 1515 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
285d0321
AV
1516 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
1517 bars = pci_select_bars(pdev, IORESOURCE_MEM);
5433383e 1518 sht = &qla24xx_driver_template;
09483916 1519 mem_only = 1;
285d0321
AV
1520 }
1521
09483916
BH
1522 if (mem_only) {
1523 if (pci_enable_device_mem(pdev))
1524 goto probe_out;
1525 } else {
1526 if (pci_enable_device(pdev))
1527 goto probe_out;
1528 }
285d0321
AV
1529
1530 if (pci_find_aer_capability(pdev))
1531 if (pci_enable_pcie_error_reporting(pdev))
1532 goto probe_out;
1533
5433383e 1534 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
1da177e4
LT
1535 if (host == NULL) {
1536 printk(KERN_WARNING
1537 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1538 goto probe_disable_device;
1539 }
1540
1541 /* Clear our data area */
f363b943 1542 ha = shost_priv(host);
1da177e4
LT
1543 memset(ha, 0, sizeof(scsi_qla_host_t));
1544
1545 ha->pdev = pdev;
1546 ha->host = host;
1547 ha->host_no = host->host_no;
cb63067a 1548 sprintf(ha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, ha->host_no);
2c3dfe3f 1549 ha->parent = NULL;
285d0321 1550 ha->bars = bars;
09483916 1551 ha->mem_only = mem_only;
df4bf0bb 1552 spin_lock_init(&ha->hardware_lock);
1da177e4 1553
ea5b6382 1554 /* Set ISP-type information. */
1555 qla2x00_set_isp_flags(ha);
1556
1da177e4
LT
1557 /* Configure PCI I/O space */
1558 ret = qla2x00_iospace_config(ha);
a1541d5a
AV
1559 if (ret)
1560 goto probe_failed;
1da177e4 1561
1da177e4 1562 qla_printk(KERN_INFO, ha,
5433383e
AV
1563 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1564 ha->iobase);
1da177e4 1565
1da177e4 1566 ha->prev_topology = 0;
fca29703 1567 ha->init_cb_size = sizeof(init_cb_t);
2c3dfe3f 1568 ha->mgmt_svr_loop_id = MANAGEMENT_SERVER + ha->vp_idx;
d8b45213 1569 ha->link_data_rate = PORT_SPEED_UNKNOWN;
854165f4 1570 ha->optrom_size = OPTROM_SIZE_2300;
1da177e4 1571
df7baa50
AV
1572 ha->max_q_depth = MAX_Q_DEPTH;
1573 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1574 ha->max_q_depth = ql2xmaxqdepth;
1575
abbd8870 1576 /* Assign ISP specific operations. */
1da177e4 1577 if (IS_QLA2100(ha)) {
354d6b21 1578 host->max_id = MAX_TARGETS_2100;
1da177e4
LT
1579 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1580 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1581 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1582 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1583 host->sg_tablesize = 32;
abbd8870 1584 ha->gid_list_info_size = 4;
fd34f556 1585 ha->isp_ops = &qla2100_isp_ops;
1da177e4 1586 } else if (IS_QLA2200(ha)) {
354d6b21 1587 host->max_id = MAX_TARGETS_2200;
1da177e4
LT
1588 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1589 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1590 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1591 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
abbd8870 1592 ha->gid_list_info_size = 4;
fd34f556 1593 ha->isp_ops = &qla2100_isp_ops;
fca29703 1594 } else if (IS_QLA23XX(ha)) {
354d6b21 1595 host->max_id = MAX_TARGETS_2200;
1da177e4
LT
1596 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1597 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1598 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1599 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
abbd8870 1600 ha->gid_list_info_size = 6;
854165f4 1601 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1602 ha->optrom_size = OPTROM_SIZE_2322;
fd34f556 1603 ha->isp_ops = &qla2300_isp_ops;
4d4df193 1604 } else if (IS_QLA24XX_TYPE(ha)) {
fca29703
AV
1605 host->max_id = MAX_TARGETS_2200;
1606 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1607 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1608 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1609 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
2c3dfe3f
SJ
1610 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1611 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
fca29703 1612 ha->gid_list_info_size = 8;
854165f4 1613 ha->optrom_size = OPTROM_SIZE_24XX;
fd34f556 1614 ha->isp_ops = &qla24xx_isp_ops;
c3a2f0df
AV
1615 } else if (IS_QLA25XX(ha)) {
1616 host->max_id = MAX_TARGETS_2200;
1617 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1618 ha->request_q_length = REQUEST_ENTRY_CNT_24XX;
1619 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1620 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
1621 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1622 ha->mgmt_svr_loop_id = 10 + ha->vp_idx;
1623 ha->gid_list_info_size = 8;
1624 ha->optrom_size = OPTROM_SIZE_25XX;
1625 ha->isp_ops = &qla25xx_isp_ops;
cb8dacbf
AV
1626 ha->hw_event_start = PCI_FUNC(pdev->devfn) ?
1627 FA_HW_EVENT1_ADDR: FA_HW_EVENT0_ADDR;
1da177e4
LT
1628 }
1629 host->can_queue = ha->request_q_length + 128;
1630
1631 /* load the F/W, read paramaters, and init the H/W */
1632 ha->instance = num_hosts;
1633
2c3dfe3f 1634 init_MUTEX(&ha->vport_sem);
0b05a1f0
MB
1635 init_completion(&ha->mbx_cmd_comp);
1636 complete(&ha->mbx_cmd_comp);
1637 init_completion(&ha->mbx_intr_comp);
1da177e4
LT
1638
1639 INIT_LIST_HEAD(&ha->list);
1640 INIT_LIST_HEAD(&ha->fcports);
2c3dfe3f 1641 INIT_LIST_HEAD(&ha->vp_list);
0971de7f 1642 INIT_LIST_HEAD(&ha->work_list);
2c3dfe3f
SJ
1643
1644 set_bit(0, (unsigned long *) ha->vp_idx_map);
1da177e4 1645
1da177e4
LT
1646 qla2x00_config_dma_addressing(ha);
1647 if (qla2x00_mem_alloc(ha)) {
1648 qla_printk(KERN_WARNING, ha,
1649 "[ERROR] Failed to allocate memory for adapter\n");
1650
a1541d5a
AV
1651 ret = -ENOMEM;
1652 goto probe_failed;
1da177e4
LT
1653 }
1654
765140bf 1655 if (qla2x00_initialize_adapter(ha)) {
1da177e4
LT
1656 qla_printk(KERN_WARNING, ha,
1657 "Failed to initialize adapter\n");
1658
1659 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1660 "Adapter flags %x.\n",
1661 ha->host_no, ha->device_flags));
1662
a1541d5a 1663 ret = -ENODEV;
1da177e4
LT
1664 goto probe_failed;
1665 }
1666
1667 /*
1668 * Startup the kernel thread for this host adapter
1669 */
39a11240
CH
1670 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1671 "%s_dpc", ha->host_str);
1672 if (IS_ERR(ha->dpc_thread)) {
1da177e4
LT
1673 qla_printk(KERN_WARNING, ha,
1674 "Unable to start DPC thread!\n");
39a11240 1675 ret = PTR_ERR(ha->dpc_thread);
1da177e4
LT
1676 goto probe_failed;
1677 }
1da177e4 1678
a1541d5a
AV
1679 host->this_id = 255;
1680 host->cmd_per_lun = 3;
1681 host->unique_id = ha->instance;
1682 host->max_cmd_len = MAX_CMDSZ;
75bc4190 1683 host->max_channel = MAX_BUSES - 1;
a1541d5a
AV
1684 host->max_lun = MAX_LUNS;
1685 host->transportt = qla2xxx_transport_template;
1686
a8488abe
AV
1687 ret = qla2x00_request_irqs(ha);
1688 if (ret)
1da177e4 1689 goto probe_failed;
1da177e4
LT
1690
1691 /* Initialized the timer */
1692 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1693
1694 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1695 ha->host_no, ha));
1696
a1541d5a 1697 pci_set_drvdata(pdev, ha);
d19044c3 1698
1da177e4 1699 ha->flags.init_done = 1;
d19044c3
AV
1700 ha->flags.online = 1;
1701
1da177e4
LT
1702 num_hosts++;
1703
a1541d5a
AV
1704 ret = scsi_add_host(host, &pdev->dev);
1705 if (ret)
1706 goto probe_failed;
1707
1e99e33a
AV
1708 scsi_scan_host(host);
1709
a1541d5a
AV
1710 qla2x00_alloc_sysfs_attr(ha);
1711
1712 qla2x00_init_host_attr(ha);
1713
df613b96
AV
1714 qla2x00_dfs_setup(ha);
1715
1da177e4
LT
1716 qla_printk(KERN_INFO, ha, "\n"
1717 " QLogic Fibre Channel HBA Driver: %s\n"
1718 " QLogic %s - %s\n"
5433383e
AV
1719 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1720 qla2x00_version_str, ha->model_number,
1721 ha->model_desc ? ha->model_desc: "", pdev->device,
fd34f556 1722 ha->isp_ops->pci_info_str(ha, pci_info), pci_name(pdev),
5433383e 1723 ha->flags.enable_64bit_addressing ? '+': '-', ha->host_no,
fd34f556 1724 ha->isp_ops->fw_version_str(ha, fw_str));
1da177e4 1725
1da177e4
LT
1726 return 0;
1727
1728probe_failed:
1729 qla2x00_free_device(ha);
1730
1731 scsi_host_put(host);
1732
1733probe_disable_device:
1734 pci_disable_device(pdev);
1735
a1541d5a
AV
1736probe_out:
1737 return ret;
1da177e4 1738}
1da177e4 1739
4c993f76 1740static void
7ee61397 1741qla2x00_remove_one(struct pci_dev *pdev)
1da177e4
LT
1742{
1743 scsi_qla_host_t *ha;
1744
1745 ha = pci_get_drvdata(pdev);
1746
df613b96
AV
1747 qla2x00_dfs_remove(ha);
1748
4d4df193
HK
1749 qla84xx_put_chip(ha);
1750
8482e118 1751 qla2x00_free_sysfs_attr(ha);
1da177e4 1752
bdf79621 1753 fc_remove_host(ha->host);
1754
1da177e4
LT
1755 scsi_remove_host(ha->host);
1756
1757 qla2x00_free_device(ha);
1758
1759 scsi_host_put(ha->host);
1760
665db93b 1761 pci_disable_device(pdev);
1da177e4
LT
1762 pci_set_drvdata(pdev, NULL);
1763}
1da177e4
LT
1764
1765static void
1766qla2x00_free_device(scsi_qla_host_t *ha)
1767{
df4bf0bb
AV
1768 qla2x00_abort_all_cmds(ha, DID_NO_CONNECT << 16);
1769
1da177e4
LT
1770 /* Disable timer */
1771 if (ha->timer_active)
1772 qla2x00_stop_timer(ha);
1773
df4bf0bb
AV
1774 ha->flags.online = 0;
1775
1da177e4 1776 /* Kill the kernel thread for this host */
39a11240
CH
1777 if (ha->dpc_thread) {
1778 struct task_struct *t = ha->dpc_thread;
1da177e4 1779
39a11240
CH
1780 /*
1781 * qla2xxx_wake_dpc checks for ->dpc_thread
1782 * so we need to zero it out.
1783 */
1784 ha->dpc_thread = NULL;
1785 kthread_stop(t);
1da177e4
LT
1786 }
1787
df613b96
AV
1788 if (ha->flags.fce_enabled)
1789 qla2x00_disable_fce_trace(ha, NULL, NULL);
1790
a7a167bf 1791 if (ha->eft)
00b6bd25 1792 qla2x00_disable_eft_trace(ha);
a7a167bf 1793
f6ef3b18 1794 /* Stop currently executing firmware. */
18c6c127 1795 qla2x00_try_to_stop_firmware(ha);
1da177e4 1796
f6ef3b18
AV
1797 /* turn-off interrupts on the card */
1798 if (ha->interrupts_on)
fd34f556 1799 ha->isp_ops->disable_intrs(ha);
f6ef3b18
AV
1800
1801 qla2x00_mem_free(ha);
1da177e4 1802
a8488abe 1803 qla2x00_free_irqs(ha);
1da177e4
LT
1804
1805 /* release io space registers */
1806 if (ha->iobase)
1807 iounmap(ha->iobase);
285d0321 1808 pci_release_selected_regions(ha->pdev, ha->bars);
1da177e4
LT
1809}
1810
d97994dc 1811static inline void
1812qla2x00_schedule_rport_del(struct scsi_qla_host *ha, fc_port_t *fcport,
1813 int defer)
1814{
1815 unsigned long flags;
1816 struct fc_rport *rport;
1817
1818 if (!fcport->rport)
1819 return;
1820
1821 rport = fcport->rport;
1822 if (defer) {
1823 spin_lock_irqsave(&fcport->rport_lock, flags);
1824 fcport->drport = rport;
1825 fcport->rport = NULL;
387f96b4 1826 *(fc_port_t **)rport->dd_data = NULL;
d97994dc 1827 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1828 set_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags);
1829 } else {
1830 spin_lock_irqsave(&fcport->rport_lock, flags);
1831 fcport->rport = NULL;
387f96b4 1832 *(fc_port_t **)rport->dd_data = NULL;
d97994dc 1833 spin_unlock_irqrestore(&fcport->rport_lock, flags);
1834 fc_remote_port_delete(rport);
1835 }
1836}
1837
1da177e4
LT
1838/*
1839 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1840 *
1841 * Input: ha = adapter block pointer. fcport = port structure pointer.
1842 *
1843 * Return: None.
1844 *
1845 * Context:
1846 */
1847void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
d97994dc 1848 int do_login, int defer)
1da177e4 1849{
2c3dfe3f
SJ
1850 if (atomic_read(&fcport->state) == FCS_ONLINE &&
1851 ha->vp_idx == fcport->vp_idx)
d97994dc 1852 qla2x00_schedule_rport_del(ha, fcport, defer);
19a7b4ae 1853
fa2a1ce5 1854 /*
1da177e4
LT
1855 * We may need to retry the login, so don't change the state of the
1856 * port but do the retries.
1857 */
1858 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1859 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1860
1861 if (!do_login)
1862 return;
1863
1864 if (fcport->login_retry == 0) {
1865 fcport->login_retry = ha->login_retry_count;
1866 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1867
1868 DEBUG(printk("scsi(%ld): Port login retry: "
1869 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1870 "id = 0x%04x retry cnt=%d\n",
1871 ha->host_no,
1872 fcport->port_name[0],
1873 fcport->port_name[1],
1874 fcport->port_name[2],
1875 fcport->port_name[3],
1876 fcport->port_name[4],
1877 fcport->port_name[5],
1878 fcport->port_name[6],
1879 fcport->port_name[7],
1880 fcport->loop_id,
1881 fcport->login_retry));
1882 }
1883}
1884
1885/*
1886 * qla2x00_mark_all_devices_lost
1887 * Updates fcport state when device goes offline.
1888 *
1889 * Input:
1890 * ha = adapter block pointer.
1891 * fcport = port structure pointer.
1892 *
1893 * Return:
1894 * None.
1895 *
1896 * Context:
1897 */
1898void
d97994dc 1899qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha, int defer)
1da177e4
LT
1900{
1901 fc_port_t *fcport;
2c3dfe3f 1902 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4 1903
2c3dfe3f
SJ
1904 list_for_each_entry(fcport, &pha->fcports, list) {
1905 if (ha->vp_idx != 0 && ha->vp_idx != fcport->vp_idx)
1da177e4 1906 continue;
1da177e4
LT
1907 /*
1908 * No point in marking the device as lost, if the device is
1909 * already DEAD.
1910 */
1911 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1912 continue;
2c3dfe3f
SJ
1913 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1914 if (defer)
1915 qla2x00_schedule_rport_del(ha, fcport, defer);
1916 else if (ha->vp_idx == fcport->vp_idx)
1917 qla2x00_schedule_rport_del(ha, fcport, defer);
1918 }
1da177e4
LT
1919 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1920 }
d97994dc 1921
39a11240
CH
1922 if (defer)
1923 qla2xxx_wake_dpc(ha);
1da177e4
LT
1924}
1925
1926/*
1927* qla2x00_mem_alloc
1928* Allocates adapter memory.
1929*
1930* Returns:
1931* 0 = success.
e8711085 1932* !0 = failure.
1da177e4 1933*/
e8711085 1934static int
1da177e4
LT
1935qla2x00_mem_alloc(scsi_qla_host_t *ha)
1936{
1937 char name[16];
1da177e4 1938
e8711085
AV
1939 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
1940 (ha->request_q_length + 1) * sizeof(request_t), &ha->request_dma,
1941 GFP_KERNEL);
1942 if (!ha->request_ring)
1943 goto fail;
1944
1945 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
1946 (ha->response_q_length + 1) * sizeof(response_t),
1947 &ha->response_dma, GFP_KERNEL);
1948 if (!ha->response_ring)
1949 goto fail_free_request_ring;
1950
1951 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
1952 &ha->gid_list_dma, GFP_KERNEL);
1953 if (!ha->gid_list)
1954 goto fail_free_response_ring;
1955
1956 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
1957 &ha->init_cb_dma, GFP_KERNEL);
1958 if (!ha->init_cb)
1959 goto fail_free_gid_list;
1960
1961 snprintf(name, sizeof(name), "%s_%ld", QLA2XXX_DRIVER_NAME,
1962 ha->host_no);
1963 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
1964 DMA_POOL_SIZE, 8, 0);
1965 if (!ha->s_dma_pool)
1966 goto fail_free_init_cb;
1da177e4 1967
e8711085
AV
1968 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
1969 if (!ha->srb_mempool)
1970 goto fail_free_s_dma_pool;
1971
1972 /* Get memory for cached NVRAM */
1973 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
1974 if (!ha->nvram)
1975 goto fail_free_srb_mempool;
1976
1977 /* Allocate memory for SNS commands */
1978 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1979 /* Get consistent memory allocated for SNS commands */
1980 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
1981 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
1982 if (!ha->sns_cmd)
1983 goto fail_free_nvram;
1984 } else {
1985 /* Get consistent memory allocated for MS IOCB */
1986 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1987 &ha->ms_iocb_dma);
1988 if (!ha->ms_iocb)
1989 goto fail_free_nvram;
1990
1991 /* Get consistent memory allocated for CT SNS commands */
1992 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
1993 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
1994 if (!ha->ct_sns)
1995 goto fail_free_ms_iocb;
1da177e4
LT
1996 }
1997
e8711085
AV
1998 return 0;
1999
2000fail_free_ms_iocb:
2001 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2002 ha->ms_iocb = NULL;
2003 ha->ms_iocb_dma = 0;
2004fail_free_nvram:
2005 kfree(ha->nvram);
2006 ha->nvram = NULL;
2007fail_free_srb_mempool:
2008 mempool_destroy(ha->srb_mempool);
2009 ha->srb_mempool = NULL;
2010fail_free_s_dma_pool:
2011 dma_pool_destroy(ha->s_dma_pool);
2012 ha->s_dma_pool = NULL;
2013fail_free_init_cb:
2014 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2015 ha->init_cb_dma);
2016 ha->init_cb = NULL;
2017 ha->init_cb_dma = 0;
2018fail_free_gid_list:
2019 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2020 ha->gid_list_dma);
2021 ha->gid_list = NULL;
2022 ha->gid_list_dma = 0;
2023fail_free_response_ring:
2024 dma_free_coherent(&ha->pdev->dev, (ha->response_q_length + 1) *
2025 sizeof(response_t), ha->response_ring, ha->response_dma);
2026 ha->response_ring = NULL;
2027 ha->response_dma = 0;
2028fail_free_request_ring:
2029 dma_free_coherent(&ha->pdev->dev, (ha->request_q_length + 1) *
2030 sizeof(request_t), ha->request_ring, ha->request_dma);
2031 ha->request_ring = NULL;
2032 ha->request_dma = 0;
2033fail:
2034 return -ENOMEM;
1da177e4
LT
2035}
2036
2037/*
2038* qla2x00_mem_free
2039* Frees all adapter allocated memory.
2040*
2041* Input:
2042* ha = adapter block pointer.
2043*/
a824ebb3 2044static void
1da177e4
LT
2045qla2x00_mem_free(scsi_qla_host_t *ha)
2046{
1da177e4
LT
2047 struct list_head *fcpl, *fcptemp;
2048 fc_port_t *fcport;
1da177e4 2049
e8711085
AV
2050 if (ha->srb_mempool)
2051 mempool_destroy(ha->srb_mempool);
1da177e4 2052
df613b96
AV
2053 if (ha->fce)
2054 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2055 ha->fce_dma);
2056
a7a167bf
AV
2057 if (ha->fw_dump) {
2058 if (ha->eft)
2059 dma_free_coherent(&ha->pdev->dev,
2060 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2061 vfree(ha->fw_dump);
2062 }
2063
1da177e4
LT
2064 if (ha->sns_cmd)
2065 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2066 ha->sns_cmd, ha->sns_cmd_dma);
2067
2068 if (ha->ct_sns)
2069 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2070 ha->ct_sns, ha->ct_sns_dma);
2071
88729e53
AV
2072 if (ha->sfp_data)
2073 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2074
1da177e4
LT
2075 if (ha->ms_iocb)
2076 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2077
1da177e4
LT
2078 if (ha->s_dma_pool)
2079 dma_pool_destroy(ha->s_dma_pool);
2080
2c3dfe3f
SJ
2081 if (ha->init_cb)
2082 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2083 ha->init_cb, ha->init_cb_dma);
2084
1da177e4
LT
2085 if (ha->gid_list)
2086 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2087 ha->gid_list_dma);
2088
2089 if (ha->response_ring)
2090 dma_free_coherent(&ha->pdev->dev,
2091 (ha->response_q_length + 1) * sizeof(response_t),
2092 ha->response_ring, ha->response_dma);
2093
2094 if (ha->request_ring)
2095 dma_free_coherent(&ha->pdev->dev,
2096 (ha->request_q_length + 1) * sizeof(request_t),
2097 ha->request_ring, ha->request_dma);
2098
e8711085 2099 ha->srb_mempool = NULL;
a7a167bf
AV
2100 ha->eft = NULL;
2101 ha->eft_dma = 0;
1da177e4
LT
2102 ha->sns_cmd = NULL;
2103 ha->sns_cmd_dma = 0;
2104 ha->ct_sns = NULL;
2105 ha->ct_sns_dma = 0;
2106 ha->ms_iocb = NULL;
2107 ha->ms_iocb_dma = 0;
1da177e4
LT
2108 ha->init_cb = NULL;
2109 ha->init_cb_dma = 0;
2110
2111 ha->s_dma_pool = NULL;
2112
1da177e4
LT
2113 ha->gid_list = NULL;
2114 ha->gid_list_dma = 0;
2115
2116 ha->response_ring = NULL;
2117 ha->response_dma = 0;
2118 ha->request_ring = NULL;
2119 ha->request_dma = 0;
2120
2121 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
2122 fcport = list_entry(fcpl, fc_port_t, list);
2123
1da177e4
LT
2124 /* fc ports */
2125 list_del_init(&fcport->list);
2126 kfree(fcport);
2127 }
2128 INIT_LIST_HEAD(&ha->fcports);
2129
1da177e4 2130 ha->fw_dump = NULL;
fca29703 2131 ha->fw_dumped = 0;
1da177e4 2132 ha->fw_dump_reading = 0;
854165f4 2133
2134 vfree(ha->optrom_buffer);
53772a2c 2135 kfree(ha->nvram);
1da177e4
LT
2136}
2137
0971de7f
AV
2138struct qla_work_evt *
2139qla2x00_alloc_work(struct scsi_qla_host *ha, enum qla_work_type type,
2140 int locked)
2141{
2142 struct qla_work_evt *e;
2143
2144 e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
2145 GFP_KERNEL);
2146 if (!e)
2147 return NULL;
2148
2149 INIT_LIST_HEAD(&e->list);
2150 e->type = type;
2151 e->flags = QLA_EVT_FLAG_FREE;
2152 return e;
2153}
2154
2155int
2156qla2x00_post_work(struct scsi_qla_host *ha, struct qla_work_evt *e, int locked)
2157{
2158 unsigned long flags;
2159
2160 if (!locked)
2161 spin_lock_irqsave(&ha->hardware_lock, flags);
2162 list_add_tail(&e->list, &ha->work_list);
2163 qla2xxx_wake_dpc(ha);
2164 if (!locked)
2165 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2166 return QLA_SUCCESS;
2167}
2168
2169int
2170qla2x00_post_aen_work(struct scsi_qla_host *ha, enum fc_host_event_code code,
2171 u32 data)
2172{
2173 struct qla_work_evt *e;
2174
2175 e = qla2x00_alloc_work(ha, QLA_EVT_AEN, 1);
2176 if (!e)
2177 return QLA_FUNCTION_FAILED;
2178
2179 e->u.aen.code = code;
2180 e->u.aen.data = data;
2181 return qla2x00_post_work(ha, e, 1);
2182}
2183
cb8dacbf
AV
2184int
2185qla2x00_post_hwe_work(struct scsi_qla_host *ha, uint16_t code, uint16_t d1,
2186 uint16_t d2, uint16_t d3)
2187{
2188 struct qla_work_evt *e;
2189
2190 e = qla2x00_alloc_work(ha, QLA_EVT_HWE_LOG, 1);
2191 if (!e)
2192 return QLA_FUNCTION_FAILED;
2193
2194 e->u.hwe.code = code;
2195 e->u.hwe.d1 = d1;
2196 e->u.hwe.d2 = d2;
2197 e->u.hwe.d3 = d3;
2198 return qla2x00_post_work(ha, e, 1);
2199}
2200
0971de7f
AV
2201static void
2202qla2x00_do_work(struct scsi_qla_host *ha)
2203{
2204 struct qla_work_evt *e;
2205
2206 spin_lock_irq(&ha->hardware_lock);
2207 while (!list_empty(&ha->work_list)) {
2208 e = list_entry(ha->work_list.next, struct qla_work_evt, list);
2209 list_del_init(&e->list);
2210 spin_unlock_irq(&ha->hardware_lock);
2211
2212 switch (e->type) {
2213 case QLA_EVT_AEN:
2214 fc_host_post_event(ha->host, fc_get_event_number(),
2215 e->u.aen.code, e->u.aen.data);
2216 break;
cb8dacbf
AV
2217 case QLA_EVT_HWE_LOG:
2218 qla2xxx_hw_event_log(ha, e->u.hwe.code, e->u.hwe.d1,
2219 e->u.hwe.d2, e->u.hwe.d3);
2220 break;
0971de7f
AV
2221 }
2222 if (e->flags & QLA_EVT_FLAG_FREE)
2223 kfree(e);
2224 spin_lock_irq(&ha->hardware_lock);
2225 }
2226 spin_unlock_irq(&ha->hardware_lock);
2227}
2228
1da177e4
LT
2229/**************************************************************************
2230* qla2x00_do_dpc
2231* This kernel thread is a task that is schedule by the interrupt handler
2232* to perform the background processing for interrupts.
2233*
2234* Notes:
2235* This task always run in the context of a kernel thread. It
2236* is kick-off by the driver's detect code and starts up
2237* up one per adapter. It immediately goes to sleep and waits for
2238* some fibre event. When either the interrupt handler or
2239* the timer routine detects a event it will one of the task
2240* bits then wake us up.
2241**************************************************************************/
2242static int
2243qla2x00_do_dpc(void *data)
2244{
2c3dfe3f 2245 int rval;
1da177e4
LT
2246 scsi_qla_host_t *ha;
2247 fc_port_t *fcport;
1da177e4 2248 uint8_t status;
1da177e4 2249 uint16_t next_loopid;
99363ef8
SJ
2250 struct scsi_qla_host *vha;
2251 int i;
2252
1da177e4
LT
2253
2254 ha = (scsi_qla_host_t *)data;
2255
1da177e4
LT
2256 set_user_nice(current, -20);
2257
39a11240 2258 while (!kthread_should_stop()) {
1da177e4
LT
2259 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2260
39a11240
CH
2261 set_current_state(TASK_INTERRUPTIBLE);
2262 schedule();
2263 __set_current_state(TASK_RUNNING);
1da177e4
LT
2264
2265 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2266
2267 /* Initialization not yet finished. Don't do anything yet. */
39a11240 2268 if (!ha->flags.init_done)
1da177e4
LT
2269 continue;
2270
2271 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
2272
2273 ha->dpc_active = 1;
2274
1da177e4 2275 if (ha->flags.mbox_busy) {
1da177e4
LT
2276 ha->dpc_active = 0;
2277 continue;
2278 }
2279
0971de7f
AV
2280 qla2x00_do_work(ha);
2281
1da177e4
LT
2282 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
2283
2284 DEBUG(printk("scsi(%ld): dpc: sched "
2285 "qla2x00_abort_isp ha = %p\n",
2286 ha->host_no, ha));
2287 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2288 &ha->dpc_flags))) {
2289
2290 if (qla2x00_abort_isp(ha)) {
2291 /* failed. retry later */
2292 set_bit(ISP_ABORT_NEEDED,
2293 &ha->dpc_flags);
2294 }
2295 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2296 }
99363ef8
SJ
2297
2298 for_each_mapped_vp_idx(ha, i) {
2299 list_for_each_entry(vha, &ha->vp_list,
2300 vp_list) {
2301 if (i == vha->vp_idx) {
2302 set_bit(ISP_ABORT_NEEDED,
2303 &vha->dpc_flags);
2304 break;
2305 }
2306 }
2307 }
2308
1da177e4
LT
2309 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2310 ha->host_no));
2311 }
2312
d97994dc 2313 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags))
2314 qla2x00_update_fcports(ha);
2315
1da177e4
LT
2316 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
2317 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
2318
2319 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2320 ha->host_no));
2321
2322 qla2x00_rst_aen(ha);
2323 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
2324 }
2325
2326 /* Retry each device up to login retry count */
2327 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2328 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
2329 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2330
2331 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2332 ha->host_no));
2333
2334 next_loopid = 0;
2335 list_for_each_entry(fcport, &ha->fcports, list) {
1da177e4
LT
2336 /*
2337 * If the port is not ONLINE then try to login
2338 * to it if we haven't run out of retries.
2339 */
2340 if (atomic_read(&fcport->state) != FCS_ONLINE &&
2341 fcport->login_retry) {
2342
1da177e4
LT
2343 if (fcport->flags & FCF_FABRIC_DEVICE) {
2344 if (fcport->flags &
2345 FCF_TAPE_PRESENT)
fd34f556 2346 ha->isp_ops->fabric_logout(
1c7c6357
AV
2347 ha, fcport->loop_id,
2348 fcport->d_id.b.domain,
2349 fcport->d_id.b.area,
2350 fcport->d_id.b.al_pa);
1da177e4
LT
2351 status = qla2x00_fabric_login(
2352 ha, fcport, &next_loopid);
2353 } else
2354 status =
2355 qla2x00_local_device_login(
9a52a57c 2356 ha, fcport);
1da177e4 2357
63a8651f 2358 fcport->login_retry--;
1da177e4
LT
2359 if (status == QLA_SUCCESS) {
2360 fcport->old_loop_id = fcport->loop_id;
2361
2362 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2363 ha->host_no, fcport->loop_id));
fa2a1ce5 2364
052c40c8 2365 qla2x00_update_fcport(ha,
2366 fcport);
1da177e4
LT
2367 } else if (status == 1) {
2368 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2369 /* retry the login again */
2370 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2371 ha->host_no,
2372 fcport->login_retry, fcport->loop_id));
2373 } else {
2374 fcport->login_retry = 0;
2375 }
63a8651f
RA
2376 if (fcport->login_retry == 0)
2377 fcport->loop_id = FC_NO_LOOP_ID;
1da177e4
LT
2378 }
2379 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2380 break;
2381 }
2382 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2383 ha->host_no));
2384 }
2385
1da177e4
LT
2386 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2387
2388 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2389 ha->host_no));
2390
2391 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2392 &ha->dpc_flags))) {
2393
2c3dfe3f 2394 rval = qla2x00_loop_resync(ha);
1da177e4
LT
2395
2396 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2397 }
2398
2399 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2400 ha->host_no));
2401 }
2402
1da177e4 2403 if (!ha->interrupts_on)
fd34f556 2404 ha->isp_ops->enable_intrs(ha);
1da177e4 2405
f6df144c 2406 if (test_and_clear_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags))
fd34f556 2407 ha->isp_ops->beacon_blink(ha);
f6df144c 2408
2c3dfe3f
SJ
2409 qla2x00_do_dpc_all_vps(ha);
2410
1da177e4
LT
2411 ha->dpc_active = 0;
2412 } /* End of while(1) */
2413
2414 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2415
2416 /*
2417 * Make sure that nobody tries to wake us up again.
2418 */
1da177e4
LT
2419 ha->dpc_active = 0;
2420
39a11240
CH
2421 return 0;
2422}
2423
2424void
2425qla2xxx_wake_dpc(scsi_qla_host_t *ha)
2426{
2427 if (ha->dpc_thread)
2428 wake_up_process(ha->dpc_thread);
1da177e4
LT
2429}
2430
1da177e4
LT
2431/*
2432* qla2x00_rst_aen
2433* Processes asynchronous reset.
2434*
2435* Input:
2436* ha = adapter block pointer.
2437*/
2438static void
fa2a1ce5 2439qla2x00_rst_aen(scsi_qla_host_t *ha)
1da177e4
LT
2440{
2441 if (ha->flags.online && !ha->flags.reset_active &&
2442 !atomic_read(&ha->loop_down_timer) &&
2443 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2444 do {
2445 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2446
2447 /*
2448 * Issue marker command only when we are going to start
2449 * the I/O.
2450 */
2451 ha->marker_needed = 1;
2452 } while (!atomic_read(&ha->loop_down_timer) &&
2453 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2454 }
2455}
2456
f4f051eb 2457static void
2458qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2459{
2460 struct scsi_cmnd *cmd = sp->cmd;
2461
2462 if (sp->flags & SRB_DMA_VALID) {
385d70b4 2463 scsi_dma_unmap(cmd);
f4f051eb 2464 sp->flags &= ~SRB_DMA_VALID;
2465 }
fca29703 2466 CMD_SP(cmd) = NULL;
f4f051eb 2467}
2468
2469void
2470qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2471{
2472 struct scsi_cmnd *cmd = sp->cmd;
2473
2474 qla2x00_sp_free_dma(ha, sp);
2475
f4f051eb 2476 mempool_free(sp, ha->srb_mempool);
2477
2478 cmd->scsi_done(cmd);
2479}
bdf79621 2480
1da177e4
LT
2481/**************************************************************************
2482* qla2x00_timer
2483*
2484* Description:
2485* One second timer
2486*
2487* Context: Interrupt
2488***************************************************************************/
2c3dfe3f 2489void
1da177e4
LT
2490qla2x00_timer(scsi_qla_host_t *ha)
2491{
1da177e4
LT
2492 unsigned long cpu_flags = 0;
2493 fc_port_t *fcport;
1da177e4
LT
2494 int start_dpc = 0;
2495 int index;
2496 srb_t *sp;
f4f051eb 2497 int t;
2c3dfe3f 2498 scsi_qla_host_t *pha = to_qla_parent(ha);
1da177e4
LT
2499
2500 /*
2501 * Ports - Port down timer.
2502 *
2503 * Whenever, a port is in the LOST state we start decrementing its port
2504 * down timer every second until it reaches zero. Once it reaches zero
fa2a1ce5 2505 * the port it marked DEAD.
1da177e4
LT
2506 */
2507 t = 0;
2508 list_for_each_entry(fcport, &ha->fcports, list) {
2509 if (fcport->port_type != FCT_TARGET)
2510 continue;
2511
2512 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2513
2514 if (atomic_read(&fcport->port_down_timer) == 0)
2515 continue;
2516
fa2a1ce5 2517 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
1da177e4 2518 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
fa2a1ce5 2519
1da177e4 2520 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
fca29703 2521 "%d remaining\n",
1da177e4
LT
2522 ha->host_no,
2523 t, atomic_read(&fcport->port_down_timer)));
2524 }
2525 t++;
2526 } /* End of for fcport */
2527
1da177e4
LT
2528
2529 /* Loop down handler. */
2530 if (atomic_read(&ha->loop_down_timer) > 0 &&
2531 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2532
2533 if (atomic_read(&ha->loop_down_timer) ==
2534 ha->loop_down_abort_time) {
2535
2536 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2537 "queues before time expire\n",
2538 ha->host_no));
2539
2540 if (!IS_QLA2100(ha) && ha->link_down_timeout)
fa2a1ce5 2541 atomic_set(&ha->loop_state, LOOP_DEAD);
1da177e4
LT
2542
2543 /* Schedule an ISP abort to return any tape commands. */
2c3dfe3f
SJ
2544 /* NPIV - scan physical port only */
2545 if (!ha->parent) {
2546 spin_lock_irqsave(&ha->hardware_lock,
2547 cpu_flags);
2548 for (index = 1;
2549 index < MAX_OUTSTANDING_COMMANDS;
2550 index++) {
2551 fc_port_t *sfcp;
2552
2553 sp = ha->outstanding_cmds[index];
2554 if (!sp)
2555 continue;
2556 sfcp = sp->fcport;
2557 if (!(sfcp->flags & FCF_TAPE_PRESENT))
2558 continue;
bdf79621 2559
2c3dfe3f
SJ
2560 set_bit(ISP_ABORT_NEEDED,
2561 &ha->dpc_flags);
2562 break;
2563 }
2564 spin_unlock_irqrestore(&ha->hardware_lock,
2565 cpu_flags);
1da177e4 2566 }
1da177e4
LT
2567 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2568 start_dpc++;
2569 }
2570
2571 /* if the loop has been down for 4 minutes, reinit adapter */
2572 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2573 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2574 "restarting queues.\n",
2575 ha->host_no));
2576
2577 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2578 start_dpc++;
2579
463717ed
SJ
2580 if (!(ha->device_flags & DFLG_NO_CABLE) &&
2581 !ha->parent) {
1da177e4
LT
2582 DEBUG(printk("scsi(%ld): Loop down - "
2583 "aborting ISP.\n",
2584 ha->host_no));
2585 qla_printk(KERN_WARNING, ha,
2586 "Loop down - aborting ISP.\n");
2587
2588 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2589 }
2590 }
fca29703 2591 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
1da177e4
LT
2592 ha->host_no,
2593 atomic_read(&ha->loop_down_timer)));
2594 }
2595
f6df144c 2596 /* Check if beacon LED needs to be blinked */
2597 if (ha->beacon_blink_led == 1) {
2598 set_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags);
2599 start_dpc++;
2600 }
2601
1da177e4
LT
2602 /* Schedule the DPC routine if needed */
2603 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2604 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
d97994dc 2605 test_bit(FCPORT_UPDATE_NEEDED, &ha->dpc_flags) ||
1da177e4 2606 start_dpc ||
f4f051eb 2607 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
f6df144c 2608 test_bit(BEACON_BLINK_NEEDED, &ha->dpc_flags) ||
2c3dfe3f 2609 test_bit(VP_DPC_NEEDED, &ha->dpc_flags) ||
39a11240 2610 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)))
2c3dfe3f 2611 qla2xxx_wake_dpc(pha);
1da177e4
LT
2612
2613 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2614}
2615
5433383e
AV
2616/* Firmware interface routines. */
2617
c3a2f0df 2618#define FW_BLOBS 6
5433383e
AV
2619#define FW_ISP21XX 0
2620#define FW_ISP22XX 1
2621#define FW_ISP2300 2
2622#define FW_ISP2322 3
48c02fde 2623#define FW_ISP24XX 4
c3a2f0df 2624#define FW_ISP25XX 5
5433383e 2625
bb8ee499
AV
2626#define FW_FILE_ISP21XX "ql2100_fw.bin"
2627#define FW_FILE_ISP22XX "ql2200_fw.bin"
2628#define FW_FILE_ISP2300 "ql2300_fw.bin"
2629#define FW_FILE_ISP2322 "ql2322_fw.bin"
2630#define FW_FILE_ISP24XX "ql2400_fw.bin"
c3a2f0df 2631#define FW_FILE_ISP25XX "ql2500_fw.bin"
bb8ee499 2632
5433383e
AV
2633static DECLARE_MUTEX(qla_fw_lock);
2634
2635static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
bb8ee499
AV
2636 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2637 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2638 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2639 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2640 { .name = FW_FILE_ISP24XX, },
c3a2f0df 2641 { .name = FW_FILE_ISP25XX, },
5433383e
AV
2642};
2643
2644struct fw_blob *
2645qla2x00_request_firmware(scsi_qla_host_t *ha)
2646{
2647 struct fw_blob *blob;
2648
2649 blob = NULL;
2650 if (IS_QLA2100(ha)) {
2651 blob = &qla_fw_blobs[FW_ISP21XX];
2652 } else if (IS_QLA2200(ha)) {
2653 blob = &qla_fw_blobs[FW_ISP22XX];
48c02fde 2654 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
5433383e 2655 blob = &qla_fw_blobs[FW_ISP2300];
48c02fde 2656 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
5433383e 2657 blob = &qla_fw_blobs[FW_ISP2322];
4d4df193 2658 } else if (IS_QLA24XX_TYPE(ha)) {
5433383e 2659 blob = &qla_fw_blobs[FW_ISP24XX];
c3a2f0df
AV
2660 } else if (IS_QLA25XX(ha)) {
2661 blob = &qla_fw_blobs[FW_ISP25XX];
5433383e
AV
2662 }
2663
2664 down(&qla_fw_lock);
2665 if (blob->fw)
2666 goto out;
2667
2668 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2669 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2670 "(%s).\n", ha->host_no, blob->name));
2671 blob->fw = NULL;
2672 blob = NULL;
2673 goto out;
2674 }
2675
2676out:
2677 up(&qla_fw_lock);
2678 return blob;
2679}
2680
2681static void
2682qla2x00_release_firmware(void)
2683{
2684 int idx;
2685
2686 down(&qla_fw_lock);
2687 for (idx = 0; idx < FW_BLOBS; idx++)
2688 if (qla_fw_blobs[idx].fw)
2689 release_firmware(qla_fw_blobs[idx].fw);
2690 up(&qla_fw_lock);
2691}
2692
14e660e6
SJ
2693static pci_ers_result_t
2694qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2695{
2696 switch (state) {
2697 case pci_channel_io_normal:
2698 return PCI_ERS_RESULT_CAN_RECOVER;
2699 case pci_channel_io_frozen:
2700 pci_disable_device(pdev);
2701 return PCI_ERS_RESULT_NEED_RESET;
2702 case pci_channel_io_perm_failure:
2703 qla2x00_remove_one(pdev);
2704 return PCI_ERS_RESULT_DISCONNECT;
2705 }
2706 return PCI_ERS_RESULT_NEED_RESET;
2707}
2708
2709static pci_ers_result_t
2710qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2711{
2712 int risc_paused = 0;
2713 uint32_t stat;
2714 unsigned long flags;
2715 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2716 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2717 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2718
2719 spin_lock_irqsave(&ha->hardware_lock, flags);
2720 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2721 stat = RD_REG_DWORD(&reg->hccr);
2722 if (stat & HCCR_RISC_PAUSE)
2723 risc_paused = 1;
2724 } else if (IS_QLA23XX(ha)) {
2725 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2726 if (stat & HSR_RISC_PAUSED)
2727 risc_paused = 1;
2728 } else if (IS_FWI2_CAPABLE(ha)) {
2729 stat = RD_REG_DWORD(&reg24->host_status);
2730 if (stat & HSRX_RISC_PAUSED)
2731 risc_paused = 1;
2732 }
2733 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2734
2735 if (risc_paused) {
2736 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2737 "Dumping firmware!\n");
2738 ha->isp_ops->fw_dump(ha, 0);
2739
2740 return PCI_ERS_RESULT_NEED_RESET;
2741 } else
2742 return PCI_ERS_RESULT_RECOVERED;
2743}
2744
2745static pci_ers_result_t
2746qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2747{
2748 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
2749 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
09483916
BH
2750 int rc;
2751
2752 if (ha->mem_only)
2753 rc = pci_enable_device_mem(pdev);
2754 else
2755 rc = pci_enable_device(pdev);
14e660e6 2756
09483916 2757 if (rc) {
14e660e6
SJ
2758 qla_printk(KERN_WARNING, ha,
2759 "Can't re-enable PCI device after reset.\n");
2760
2761 return ret;
2762 }
2763 pci_set_master(pdev);
2764
2765 if (ha->isp_ops->pci_config(ha))
2766 return ret;
2767
2768 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2769 if (qla2x00_abort_isp(ha)== QLA_SUCCESS)
2770 ret = PCI_ERS_RESULT_RECOVERED;
2771 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
2772
2773 return ret;
2774}
2775
2776static void
2777qla2xxx_pci_resume(struct pci_dev *pdev)
2778{
2779 scsi_qla_host_t *ha = pci_get_drvdata(pdev);
2780 int ret;
2781
2782 ret = qla2x00_wait_for_hba_online(ha);
2783 if (ret != QLA_SUCCESS) {
2784 qla_printk(KERN_ERR, ha,
2785 "the device failed to resume I/O "
2786 "from slot/link_reset");
2787 }
2788 pci_cleanup_aer_uncorrect_error_status(pdev);
2789}
2790
2791static struct pci_error_handlers qla2xxx_err_handler = {
2792 .error_detected = qla2xxx_pci_error_detected,
2793 .mmio_enabled = qla2xxx_pci_mmio_enabled,
2794 .slot_reset = qla2xxx_pci_slot_reset,
2795 .resume = qla2xxx_pci_resume,
2796};
2797
5433383e 2798static struct pci_device_id qla2xxx_pci_tbl[] = {
47f5e069
AV
2799 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2800 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2801 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2802 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2803 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2804 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2805 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2806 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2807 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
4d4df193 2808 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
47f5e069
AV
2809 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2810 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
c3a2f0df 2811 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
5433383e
AV
2812 { 0 },
2813};
2814MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2815
fca29703 2816static struct pci_driver qla2xxx_pci_driver = {
cb63067a 2817 .name = QLA2XXX_DRIVER_NAME,
0a21ef1e
JB
2818 .driver = {
2819 .owner = THIS_MODULE,
2820 },
fca29703 2821 .id_table = qla2xxx_pci_tbl,
7ee61397 2822 .probe = qla2x00_probe_one,
4c993f76 2823 .remove = qla2x00_remove_one,
14e660e6 2824 .err_handler = &qla2xxx_err_handler,
fca29703
AV
2825};
2826
1da177e4
LT
2827/**
2828 * qla2x00_module_init - Module initialization.
2829 **/
2830static int __init
2831qla2x00_module_init(void)
2832{
fca29703
AV
2833 int ret = 0;
2834
1da177e4 2835 /* Allocate cache for SRBs. */
354d6b21 2836 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
20c2df83 2837 SLAB_HWCACHE_ALIGN, NULL);
1da177e4
LT
2838 if (srb_cachep == NULL) {
2839 printk(KERN_ERR
2840 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2841 return -ENOMEM;
2842 }
2843
2844 /* Derive version string. */
2845 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
11010fec 2846 if (ql2xextended_error_logging)
0181944f
AV
2847 strcat(qla2x00_version_str, "-debug");
2848
1c97a12a
AV
2849 qla2xxx_transport_template =
2850 fc_attach_transport(&qla2xxx_transport_functions);
2c3dfe3f
SJ
2851 if (!qla2xxx_transport_template) {
2852 kmem_cache_destroy(srb_cachep);
1da177e4 2853 return -ENODEV;
2c3dfe3f
SJ
2854 }
2855 qla2xxx_transport_vport_template =
2856 fc_attach_transport(&qla2xxx_transport_vport_functions);
2857 if (!qla2xxx_transport_vport_template) {
2858 kmem_cache_destroy(srb_cachep);
2859 fc_release_transport(qla2xxx_transport_template);
1da177e4 2860 return -ENODEV;
2c3dfe3f 2861 }
1da177e4
LT
2862
2863 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
7ee61397 2864 ret = pci_register_driver(&qla2xxx_pci_driver);
fca29703
AV
2865 if (ret) {
2866 kmem_cache_destroy(srb_cachep);
2867 fc_release_transport(qla2xxx_transport_template);
2c3dfe3f 2868 fc_release_transport(qla2xxx_transport_vport_template);
fca29703
AV
2869 }
2870 return ret;
1da177e4
LT
2871}
2872
2873/**
2874 * qla2x00_module_exit - Module cleanup.
2875 **/
2876static void __exit
2877qla2x00_module_exit(void)
2878{
7ee61397 2879 pci_unregister_driver(&qla2xxx_pci_driver);
5433383e 2880 qla2x00_release_firmware();
354d6b21 2881 kmem_cache_destroy(srb_cachep);
1da177e4 2882 fc_release_transport(qla2xxx_transport_template);
2c3dfe3f 2883 fc_release_transport(qla2xxx_transport_vport_template);
1da177e4
LT
2884}
2885
2886module_init(qla2x00_module_init);
2887module_exit(qla2x00_module_exit);
2888
2889MODULE_AUTHOR("QLogic Corporation");
2890MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2891MODULE_LICENSE("GPL");
2892MODULE_VERSION(QLA2XXX_VERSION);
bb8ee499
AV
2893MODULE_FIRMWARE(FW_FILE_ISP21XX);
2894MODULE_FIRMWARE(FW_FILE_ISP22XX);
2895MODULE_FIRMWARE(FW_FILE_ISP2300);
2896MODULE_FIRMWARE(FW_FILE_ISP2322);
2897MODULE_FIRMWARE(FW_FILE_ISP24XX);
61623fc3 2898MODULE_FIRMWARE(FW_FILE_ISP25XX);