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