[SCSI] qla2xxx: Double check for command completion if abort mailbox command fails.
[pandora-kernel.git] / drivers / scsi / qla2xxx / qla_os.c
1 /*
2  * QLogic Fibre Channel HBA Driver
3  * Copyright (c)  2003-2011 QLogic Corporation
4  *
5  * See LICENSE.qla2xxx for copyright and licensing details.
6  */
7 #include "qla_def.h"
8
9 #include <linux/moduleparam.h>
10 #include <linux/vmalloc.h>
11 #include <linux/delay.h>
12 #include <linux/kthread.h>
13 #include <linux/mutex.h>
14 #include <linux/kobject.h>
15 #include <linux/slab.h>
16
17 #include <scsi/scsi_tcq.h>
18 #include <scsi/scsicam.h>
19 #include <scsi/scsi_transport.h>
20 #include <scsi/scsi_transport_fc.h>
21
22 /*
23  * Driver version
24  */
25 char qla2x00_version_str[40];
26
27 static int apidev_major;
28
29 /*
30  * SRB allocation cache
31  */
32 static struct kmem_cache *srb_cachep;
33
34 /*
35  * CT6 CTX allocation cache
36  */
37 static struct kmem_cache *ctx_cachep;
38 /*
39  * error level for logging
40  */
41 int ql_errlev = ql_log_all;
42
43 int ql2xlogintimeout = 20;
44 module_param(ql2xlogintimeout, int, S_IRUGO);
45 MODULE_PARM_DESC(ql2xlogintimeout,
46                 "Login timeout value in seconds.");
47
48 int qlport_down_retry;
49 module_param(qlport_down_retry, int, S_IRUGO);
50 MODULE_PARM_DESC(qlport_down_retry,
51                 "Maximum number of command retries to a port that returns "
52                 "a PORT-DOWN status.");
53
54 int ql2xplogiabsentdevice;
55 module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
56 MODULE_PARM_DESC(ql2xplogiabsentdevice,
57                 "Option to enable PLOGI to devices that are not present after "
58                 "a Fabric scan.  This is needed for several broken switches. "
59                 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
60
61 int ql2xloginretrycount = 0;
62 module_param(ql2xloginretrycount, int, S_IRUGO);
63 MODULE_PARM_DESC(ql2xloginretrycount,
64                 "Specify an alternate value for the NVRAM login retry count.");
65
66 int ql2xallocfwdump = 1;
67 module_param(ql2xallocfwdump, int, S_IRUGO);
68 MODULE_PARM_DESC(ql2xallocfwdump,
69                 "Option to enable allocation of memory for a firmware dump "
70                 "during HBA initialization.  Memory allocation requirements "
71                 "vary by ISP type.  Default is 1 - allocate memory.");
72
73 int ql2xextended_error_logging;
74 module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
75 MODULE_PARM_DESC(ql2xextended_error_logging,
76                 "Option to enable extended error logging,\n"
77                 "\t\tDefault is 0 - no logging.  0x40000000 - Module Init & Probe.\n"
78                 "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n"
79                 "\t\t0x08000000 - IO tracing.    0x04000000 - DPC Thread.\n"
80                 "\t\t0x02000000 - Async events.  0x01000000 - Timer routines.\n"
81                 "\t\t0x00800000 - User space.    0x00400000 - Task Management.\n"
82                 "\t\t0x00200000 - AER/EEH.       0x00100000 - Multi Q.\n"
83                 "\t\t0x00080000 - P3P Specific.  0x00040000 - Virtual Port.\n"
84                 "\t\t0x00020000 - Buffer Dump.   0x00010000 - Misc.\n"
85                 "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n"
86                 "\t\tDo LOGICAL OR of the value to enable more than one level");
87
88 int ql2xshiftctondsd = 6;
89 module_param(ql2xshiftctondsd, int, S_IRUGO);
90 MODULE_PARM_DESC(ql2xshiftctondsd,
91                 "Set to control shifting of command type processing "
92                 "based on total number of SG elements.");
93
94 static void qla2x00_free_device(scsi_qla_host_t *);
95
96 int ql2xfdmienable=1;
97 module_param(ql2xfdmienable, int, S_IRUGO);
98 MODULE_PARM_DESC(ql2xfdmienable,
99                 "Enables FDMI registrations. "
100                 "0 - no FDMI. Default is 1 - perform FDMI.");
101
102 #define MAX_Q_DEPTH    32
103 static int ql2xmaxqdepth = MAX_Q_DEPTH;
104 module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
105 MODULE_PARM_DESC(ql2xmaxqdepth,
106                 "Maximum queue depth to report for target devices.");
107
108 /* Do not change the value of this after module load */
109 int ql2xenabledif = 0;
110 module_param(ql2xenabledif, int, S_IRUGO|S_IWUSR);
111 MODULE_PARM_DESC(ql2xenabledif,
112                 " Enable T10-CRC-DIF "
113                 " Default is 0 - No DIF Support. 1 - Enable it"
114                 ", 2 - Enable DIF for all types, except Type 0.");
115
116 int ql2xenablehba_err_chk = 2;
117 module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR);
118 MODULE_PARM_DESC(ql2xenablehba_err_chk,
119                 " Enable T10-CRC-DIF Error isolation by HBA:\n"
120                 " Default is 1.\n"
121                 "  0 -- Error isolation disabled\n"
122                 "  1 -- Error isolation enabled only for DIX Type 0\n"
123                 "  2 -- Error isolation enabled for all Types\n");
124
125 int ql2xiidmaenable=1;
126 module_param(ql2xiidmaenable, int, S_IRUGO);
127 MODULE_PARM_DESC(ql2xiidmaenable,
128                 "Enables iIDMA settings "
129                 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
130
131 int ql2xmaxqueues = 1;
132 module_param(ql2xmaxqueues, int, S_IRUGO);
133 MODULE_PARM_DESC(ql2xmaxqueues,
134                 "Enables MQ settings "
135                 "Default is 1 for single queue. Set it to number "
136                 "of queues in MQ mode.");
137
138 int ql2xmultique_tag;
139 module_param(ql2xmultique_tag, int, S_IRUGO);
140 MODULE_PARM_DESC(ql2xmultique_tag,
141                 "Enables CPU affinity settings for the driver "
142                 "Default is 0 for no affinity of request and response IO. "
143                 "Set it to 1 to turn on the cpu affinity.");
144
145 int ql2xfwloadbin;
146 module_param(ql2xfwloadbin, int, S_IRUGO);
147 MODULE_PARM_DESC(ql2xfwloadbin,
148                 "Option to specify location from which to load ISP firmware:.\n"
149                 " 2 -- load firmware via the request_firmware() (hotplug).\n"
150                 "      interface.\n"
151                 " 1 -- load firmware from flash.\n"
152                 " 0 -- use default semantics.\n");
153
154 int ql2xetsenable;
155 module_param(ql2xetsenable, int, S_IRUGO);
156 MODULE_PARM_DESC(ql2xetsenable,
157                 "Enables firmware ETS burst."
158                 "Default is 0 - skip ETS enablement.");
159
160 int ql2xdbwr = 1;
161 module_param(ql2xdbwr, int, S_IRUGO);
162 MODULE_PARM_DESC(ql2xdbwr,
163         "Option to specify scheme for request queue posting.\n"
164         " 0 -- Regular doorbell.\n"
165         " 1 -- CAMRAM doorbell (faster).\n");
166
167 int ql2xtargetreset = 1;
168 module_param(ql2xtargetreset, int, S_IRUGO);
169 MODULE_PARM_DESC(ql2xtargetreset,
170                  "Enable target reset."
171                  "Default is 1 - use hw defaults.");
172
173 int ql2xgffidenable;
174 module_param(ql2xgffidenable, int, S_IRUGO);
175 MODULE_PARM_DESC(ql2xgffidenable,
176                 "Enables GFF_ID checks of port type. "
177                 "Default is 0 - Do not use GFF_ID information.");
178
179 int ql2xasynctmfenable;
180 module_param(ql2xasynctmfenable, int, S_IRUGO);
181 MODULE_PARM_DESC(ql2xasynctmfenable,
182                 "Enables issue of TM IOCBs asynchronously via IOCB mechanism"
183                 "Default is 0 - Issue TM IOCBs via mailbox mechanism.");
184
185 int ql2xdontresethba;
186 module_param(ql2xdontresethba, int, S_IRUGO);
187 MODULE_PARM_DESC(ql2xdontresethba,
188         "Option to specify reset behaviour.\n"
189         " 0 (Default) -- Reset on failure.\n"
190         " 1 -- Do not reset on failure.\n");
191
192 uint ql2xmaxlun = MAX_LUNS;
193 module_param(ql2xmaxlun, uint, S_IRUGO);
194 MODULE_PARM_DESC(ql2xmaxlun,
195                 "Defines the maximum LU number to register with the SCSI "
196                 "midlayer. Default is 65535.");
197
198 /*
199  * SCSI host template entry points
200  */
201 static int qla2xxx_slave_configure(struct scsi_device * device);
202 static int qla2xxx_slave_alloc(struct scsi_device *);
203 static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
204 static void qla2xxx_scan_start(struct Scsi_Host *);
205 static void qla2xxx_slave_destroy(struct scsi_device *);
206 static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd);
207 static int qla2xxx_eh_abort(struct scsi_cmnd *);
208 static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
209 static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
210 static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
211 static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
212
213 static int qla2x00_change_queue_depth(struct scsi_device *, int, int);
214 static int qla2x00_change_queue_type(struct scsi_device *, int);
215
216 struct scsi_host_template qla2xxx_driver_template = {
217         .module                 = THIS_MODULE,
218         .name                   = QLA2XXX_DRIVER_NAME,
219         .queuecommand           = qla2xxx_queuecommand,
220
221         .eh_abort_handler       = qla2xxx_eh_abort,
222         .eh_device_reset_handler = qla2xxx_eh_device_reset,
223         .eh_target_reset_handler = qla2xxx_eh_target_reset,
224         .eh_bus_reset_handler   = qla2xxx_eh_bus_reset,
225         .eh_host_reset_handler  = qla2xxx_eh_host_reset,
226
227         .slave_configure        = qla2xxx_slave_configure,
228
229         .slave_alloc            = qla2xxx_slave_alloc,
230         .slave_destroy          = qla2xxx_slave_destroy,
231         .scan_finished          = qla2xxx_scan_finished,
232         .scan_start             = qla2xxx_scan_start,
233         .change_queue_depth     = qla2x00_change_queue_depth,
234         .change_queue_type      = qla2x00_change_queue_type,
235         .this_id                = -1,
236         .cmd_per_lun            = 3,
237         .use_clustering         = ENABLE_CLUSTERING,
238         .sg_tablesize           = SG_ALL,
239
240         .max_sectors            = 0xFFFF,
241         .shost_attrs            = qla2x00_host_attrs,
242 };
243
244 static struct scsi_transport_template *qla2xxx_transport_template = NULL;
245 struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
246
247 /* TODO Convert to inlines
248  *
249  * Timer routines
250  */
251
252 __inline__ void
253 qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval)
254 {
255         init_timer(&vha->timer);
256         vha->timer.expires = jiffies + interval * HZ;
257         vha->timer.data = (unsigned long)vha;
258         vha->timer.function = (void (*)(unsigned long))func;
259         add_timer(&vha->timer);
260         vha->timer_active = 1;
261 }
262
263 static inline void
264 qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
265 {
266         /* Currently used for 82XX only. */
267         if (vha->device_flags & DFLG_DEV_FAILED) {
268                 ql_dbg(ql_dbg_timer, vha, 0x600d,
269                     "Device in a failed state, returning.\n");
270                 return;
271         }
272
273         mod_timer(&vha->timer, jiffies + interval * HZ);
274 }
275
276 static __inline__ void
277 qla2x00_stop_timer(scsi_qla_host_t *vha)
278 {
279         del_timer_sync(&vha->timer);
280         vha->timer_active = 0;
281 }
282
283 static int qla2x00_do_dpc(void *data);
284
285 static void qla2x00_rst_aen(scsi_qla_host_t *);
286
287 static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
288         struct req_que **, struct rsp_que **);
289 static void qla2x00_free_fw_dump(struct qla_hw_data *);
290 static void qla2x00_mem_free(struct qla_hw_data *);
291 static void qla2x00_sp_free_dma(srb_t *);
292
293 /* -------------------------------------------------------------------------- */
294 static int qla2x00_alloc_queues(struct qla_hw_data *ha)
295 {
296         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
297         ha->req_q_map = kzalloc(sizeof(struct req_que *) * ha->max_req_queues,
298                                 GFP_KERNEL);
299         if (!ha->req_q_map) {
300                 ql_log(ql_log_fatal, vha, 0x003b,
301                     "Unable to allocate memory for request queue ptrs.\n");
302                 goto fail_req_map;
303         }
304
305         ha->rsp_q_map = kzalloc(sizeof(struct rsp_que *) * ha->max_rsp_queues,
306                                 GFP_KERNEL);
307         if (!ha->rsp_q_map) {
308                 ql_log(ql_log_fatal, vha, 0x003c,
309                     "Unable to allocate memory for response queue ptrs.\n");
310                 goto fail_rsp_map;
311         }
312         set_bit(0, ha->rsp_qid_map);
313         set_bit(0, ha->req_qid_map);
314         return 1;
315
316 fail_rsp_map:
317         kfree(ha->req_q_map);
318         ha->req_q_map = NULL;
319 fail_req_map:
320         return -ENOMEM;
321 }
322
323 static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
324 {
325         if (req && req->ring)
326                 dma_free_coherent(&ha->pdev->dev,
327                 (req->length + 1) * sizeof(request_t),
328                 req->ring, req->dma);
329
330         kfree(req);
331         req = NULL;
332 }
333
334 static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
335 {
336         if (rsp && rsp->ring)
337                 dma_free_coherent(&ha->pdev->dev,
338                 (rsp->length + 1) * sizeof(response_t),
339                 rsp->ring, rsp->dma);
340
341         kfree(rsp);
342         rsp = NULL;
343 }
344
345 static void qla2x00_free_queues(struct qla_hw_data *ha)
346 {
347         struct req_que *req;
348         struct rsp_que *rsp;
349         int cnt;
350
351         for (cnt = 0; cnt < ha->max_req_queues; cnt++) {
352                 req = ha->req_q_map[cnt];
353                 qla2x00_free_req_que(ha, req);
354         }
355         kfree(ha->req_q_map);
356         ha->req_q_map = NULL;
357
358         for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) {
359                 rsp = ha->rsp_q_map[cnt];
360                 qla2x00_free_rsp_que(ha, rsp);
361         }
362         kfree(ha->rsp_q_map);
363         ha->rsp_q_map = NULL;
364 }
365
366 static int qla25xx_setup_mode(struct scsi_qla_host *vha)
367 {
368         uint16_t options = 0;
369         int ques, req, ret;
370         struct qla_hw_data *ha = vha->hw;
371
372         if (!(ha->fw_attributes & BIT_6)) {
373                 ql_log(ql_log_warn, vha, 0x00d8,
374                     "Firmware is not multi-queue capable.\n");
375                 goto fail;
376         }
377         if (ql2xmultique_tag) {
378                 /* create a request queue for IO */
379                 options |= BIT_7;
380                 req = qla25xx_create_req_que(ha, options, 0, 0, -1,
381                         QLA_DEFAULT_QUE_QOS);
382                 if (!req) {
383                         ql_log(ql_log_warn, vha, 0x00e0,
384                             "Failed to create request queue.\n");
385                         goto fail;
386                 }
387                 ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 1);
388                 vha->req = ha->req_q_map[req];
389                 options |= BIT_1;
390                 for (ques = 1; ques < ha->max_rsp_queues; ques++) {
391                         ret = qla25xx_create_rsp_que(ha, options, 0, 0, req);
392                         if (!ret) {
393                                 ql_log(ql_log_warn, vha, 0x00e8,
394                                     "Failed to create response queue.\n");
395                                 goto fail2;
396                         }
397                 }
398                 ha->flags.cpu_affinity_enabled = 1;
399                 ql_dbg(ql_dbg_multiq, vha, 0xc007,
400                     "CPU affinity mode enalbed, "
401                     "no. of response queues:%d no. of request queues:%d.\n",
402                     ha->max_rsp_queues, ha->max_req_queues);
403                 ql_dbg(ql_dbg_init, vha, 0x00e9,
404                     "CPU affinity mode enalbed, "
405                     "no. of response queues:%d no. of request queues:%d.\n",
406                     ha->max_rsp_queues, ha->max_req_queues);
407         }
408         return 0;
409 fail2:
410         qla25xx_delete_queues(vha);
411         destroy_workqueue(ha->wq);
412         ha->wq = NULL;
413 fail:
414         ha->mqenable = 0;
415         kfree(ha->req_q_map);
416         kfree(ha->rsp_q_map);
417         ha->max_req_queues = ha->max_rsp_queues = 1;
418         return 1;
419 }
420
421 static char *
422 qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str)
423 {
424         struct qla_hw_data *ha = vha->hw;
425         static char *pci_bus_modes[] = {
426                 "33", "66", "100", "133",
427         };
428         uint16_t pci_bus;
429
430         strcpy(str, "PCI");
431         pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
432         if (pci_bus) {
433                 strcat(str, "-X (");
434                 strcat(str, pci_bus_modes[pci_bus]);
435         } else {
436                 pci_bus = (ha->pci_attr & BIT_8) >> 8;
437                 strcat(str, " (");
438                 strcat(str, pci_bus_modes[pci_bus]);
439         }
440         strcat(str, " MHz)");
441
442         return (str);
443 }
444
445 static char *
446 qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str)
447 {
448         static char *pci_bus_modes[] = { "33", "66", "100", "133", };
449         struct qla_hw_data *ha = vha->hw;
450         uint32_t pci_bus;
451         int pcie_reg;
452
453         pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
454         if (pcie_reg) {
455                 char lwstr[6];
456                 uint16_t pcie_lstat, lspeed, lwidth;
457
458                 pcie_reg += 0x12;
459                 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
460                 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
461                 lwidth = (pcie_lstat &
462                     (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
463
464                 strcpy(str, "PCIe (");
465                 if (lspeed == 1)
466                         strcat(str, "2.5GT/s ");
467                 else if (lspeed == 2)
468                         strcat(str, "5.0GT/s ");
469                 else
470                         strcat(str, "<unknown> ");
471                 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
472                 strcat(str, lwstr);
473
474                 return str;
475         }
476
477         strcpy(str, "PCI");
478         pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
479         if (pci_bus == 0 || pci_bus == 8) {
480                 strcat(str, " (");
481                 strcat(str, pci_bus_modes[pci_bus >> 3]);
482         } else {
483                 strcat(str, "-X ");
484                 if (pci_bus & BIT_2)
485                         strcat(str, "Mode 2");
486                 else
487                         strcat(str, "Mode 1");
488                 strcat(str, " (");
489                 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
490         }
491         strcat(str, " MHz)");
492
493         return str;
494 }
495
496 static char *
497 qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str)
498 {
499         char un_str[10];
500         struct qla_hw_data *ha = vha->hw;
501
502         sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
503             ha->fw_minor_version,
504             ha->fw_subminor_version);
505
506         if (ha->fw_attributes & BIT_9) {
507                 strcat(str, "FLX");
508                 return (str);
509         }
510
511         switch (ha->fw_attributes & 0xFF) {
512         case 0x7:
513                 strcat(str, "EF");
514                 break;
515         case 0x17:
516                 strcat(str, "TP");
517                 break;
518         case 0x37:
519                 strcat(str, "IP");
520                 break;
521         case 0x77:
522                 strcat(str, "VI");
523                 break;
524         default:
525                 sprintf(un_str, "(%x)", ha->fw_attributes);
526                 strcat(str, un_str);
527                 break;
528         }
529         if (ha->fw_attributes & 0x100)
530                 strcat(str, "X");
531
532         return (str);
533 }
534
535 static char *
536 qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str)
537 {
538         struct qla_hw_data *ha = vha->hw;
539
540         sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version,
541             ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes);
542         return str;
543 }
544
545 static inline srb_t *
546 qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport,
547         struct scsi_cmnd *cmd)
548 {
549         srb_t *sp;
550         struct qla_hw_data *ha = vha->hw;
551
552         sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
553         if (!sp) {
554                 ql_log(ql_log_warn, vha, 0x3006,
555                     "Memory allocation failed for sp.\n");
556                 return sp;
557         }
558
559         atomic_set(&sp->ref_count, 1);
560         sp->fcport = fcport;
561         sp->cmd = cmd;
562         sp->flags = 0;
563         CMD_SP(cmd) = (void *)sp;
564         sp->ctx = NULL;
565
566         return sp;
567 }
568
569 static int
570 qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
571 {
572         scsi_qla_host_t *vha = shost_priv(host);
573         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
574         struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
575         struct qla_hw_data *ha = vha->hw;
576         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
577         srb_t *sp;
578         int rval;
579
580         if (ha->flags.eeh_busy) {
581                 if (ha->flags.pci_channel_io_perm_failure) {
582                         ql_dbg(ql_dbg_io, vha, 0x3001,
583                             "PCI Channel IO permanent failure, exiting "
584                             "cmd=%p.\n", cmd);
585                         cmd->result = DID_NO_CONNECT << 16;
586                 } else {
587                         ql_dbg(ql_dbg_io, vha, 0x3002,
588                             "EEH_Busy, Requeuing the cmd=%p.\n", cmd);
589                         cmd->result = DID_REQUEUE << 16;
590                 }
591                 goto qc24_fail_command;
592         }
593
594         rval = fc_remote_port_chkready(rport);
595         if (rval) {
596                 cmd->result = rval;
597                 ql_dbg(ql_dbg_io, vha, 0x3003,
598                     "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
599                     cmd, rval);
600                 goto qc24_fail_command;
601         }
602
603         if (!vha->flags.difdix_supported &&
604                 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
605                         ql_dbg(ql_dbg_io, vha, 0x3004,
606                             "DIF Cap not reg, fail DIF capable cmd's:%p.\n",
607                             cmd);
608                         cmd->result = DID_NO_CONNECT << 16;
609                         goto qc24_fail_command;
610         }
611         if (atomic_read(&fcport->state) != FCS_ONLINE) {
612                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
613                         atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
614                         ql_dbg(ql_dbg_io, vha, 0x3005,
615                             "Returning DNC, fcport_state=%d loop_state=%d.\n",
616                             atomic_read(&fcport->state),
617                             atomic_read(&base_vha->loop_state));
618                         cmd->result = DID_NO_CONNECT << 16;
619                         goto qc24_fail_command;
620                 }
621                 goto qc24_target_busy;
622         }
623
624         sp = qla2x00_get_new_sp(base_vha, fcport, cmd);
625         if (!sp)
626                 goto qc24_host_busy;
627
628         rval = ha->isp_ops->start_scsi(sp);
629         if (rval != QLA_SUCCESS) {
630                 ql_dbg(ql_dbg_io, vha, 0x3013,
631                     "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
632                 goto qc24_host_busy_free_sp;
633         }
634
635         return 0;
636
637 qc24_host_busy_free_sp:
638         qla2x00_sp_free_dma(sp);
639         mempool_free(sp, ha->srb_mempool);
640
641 qc24_host_busy:
642         return SCSI_MLQUEUE_HOST_BUSY;
643
644 qc24_target_busy:
645         return SCSI_MLQUEUE_TARGET_BUSY;
646
647 qc24_fail_command:
648         cmd->scsi_done(cmd);
649
650         return 0;
651 }
652
653 /*
654  * qla2x00_eh_wait_on_command
655  *    Waits for the command to be returned by the Firmware for some
656  *    max time.
657  *
658  * Input:
659  *    cmd = Scsi Command to wait on.
660  *
661  * Return:
662  *    Not Found : 0
663  *    Found : 1
664  */
665 static int
666 qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
667 {
668 #define ABORT_POLLING_PERIOD    1000
669 #define ABORT_WAIT_ITER         ((10 * 1000) / (ABORT_POLLING_PERIOD))
670         unsigned long wait_iter = ABORT_WAIT_ITER;
671         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
672         struct qla_hw_data *ha = vha->hw;
673         int ret = QLA_SUCCESS;
674
675         if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) {
676                 ql_dbg(ql_dbg_taskm, vha, 0x8005,
677                     "Return:eh_wait.\n");
678                 return ret;
679         }
680
681         while (CMD_SP(cmd) && wait_iter--) {
682                 msleep(ABORT_POLLING_PERIOD);
683         }
684         if (CMD_SP(cmd))
685                 ret = QLA_FUNCTION_FAILED;
686
687         return ret;
688 }
689
690 /*
691  * qla2x00_wait_for_hba_online
692  *    Wait till the HBA is online after going through
693  *    <= MAX_RETRIES_OF_ISP_ABORT  or
694  *    finally HBA is disabled ie marked offline
695  *
696  * Input:
697  *     ha - pointer to host adapter structure
698  *
699  * Note:
700  *    Does context switching-Release SPIN_LOCK
701  *    (if any) before calling this routine.
702  *
703  * Return:
704  *    Success (Adapter is online) : 0
705  *    Failed  (Adapter is offline/disabled) : 1
706  */
707 int
708 qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
709 {
710         int             return_status;
711         unsigned long   wait_online;
712         struct qla_hw_data *ha = vha->hw;
713         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
714
715         wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
716         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
717             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
718             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
719             ha->dpc_active) && time_before(jiffies, wait_online)) {
720
721                 msleep(1000);
722         }
723         if (base_vha->flags.online)
724                 return_status = QLA_SUCCESS;
725         else
726                 return_status = QLA_FUNCTION_FAILED;
727
728         return (return_status);
729 }
730
731 /*
732  * qla2x00_wait_for_reset_ready
733  *    Wait till the HBA is online after going through
734  *    <= MAX_RETRIES_OF_ISP_ABORT  or
735  *    finally HBA is disabled ie marked offline or flash
736  *    operations are in progress.
737  *
738  * Input:
739  *     ha - pointer to host adapter structure
740  *
741  * Note:
742  *    Does context switching-Release SPIN_LOCK
743  *    (if any) before calling this routine.
744  *
745  * Return:
746  *    Success (Adapter is online/no flash ops) : 0
747  *    Failed  (Adapter is offline/disabled/flash ops in progress) : 1
748  */
749 static int
750 qla2x00_wait_for_reset_ready(scsi_qla_host_t *vha)
751 {
752         int             return_status;
753         unsigned long   wait_online;
754         struct qla_hw_data *ha = vha->hw;
755         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
756
757         wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
758         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
759             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
760             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
761             ha->optrom_state != QLA_SWAITING ||
762             ha->dpc_active) && time_before(jiffies, wait_online))
763                 msleep(1000);
764
765         if (base_vha->flags.online &&  ha->optrom_state == QLA_SWAITING)
766                 return_status = QLA_SUCCESS;
767         else
768                 return_status = QLA_FUNCTION_FAILED;
769
770         ql_dbg(ql_dbg_taskm, vha, 0x8019,
771             "%s return status=%d.\n", __func__, return_status);
772
773         return return_status;
774 }
775
776 int
777 qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
778 {
779         int             return_status;
780         unsigned long   wait_reset;
781         struct qla_hw_data *ha = vha->hw;
782         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
783
784         wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
785         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
786             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
787             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
788             ha->dpc_active) && time_before(jiffies, wait_reset)) {
789
790                 msleep(1000);
791
792                 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
793                     ha->flags.chip_reset_done)
794                         break;
795         }
796         if (ha->flags.chip_reset_done)
797                 return_status = QLA_SUCCESS;
798         else
799                 return_status = QLA_FUNCTION_FAILED;
800
801         return return_status;
802 }
803
804 /*
805  * qla2x00_wait_for_loop_ready
806  *    Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
807  *    to be in LOOP_READY state.
808  * Input:
809  *     ha - pointer to host adapter structure
810  *
811  * Note:
812  *    Does context switching-Release SPIN_LOCK
813  *    (if any) before calling this routine.
814  *
815  *
816  * Return:
817  *    Success (LOOP_READY) : 0
818  *    Failed  (LOOP_NOT_READY) : 1
819  */
820 static inline int
821 qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha)
822 {
823         int      return_status = QLA_SUCCESS;
824         unsigned long loop_timeout ;
825         struct qla_hw_data *ha = vha->hw;
826         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
827
828         /* wait for 5 min at the max for loop to be ready */
829         loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
830
831         while ((!atomic_read(&base_vha->loop_down_timer) &&
832             atomic_read(&base_vha->loop_state) == LOOP_DOWN) ||
833             atomic_read(&base_vha->loop_state) != LOOP_READY) {
834                 if (atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
835                         return_status = QLA_FUNCTION_FAILED;
836                         break;
837                 }
838                 msleep(1000);
839                 if (time_after_eq(jiffies, loop_timeout)) {
840                         return_status = QLA_FUNCTION_FAILED;
841                         break;
842                 }
843         }
844         return (return_status);
845 }
846
847 static void
848 sp_get(struct srb *sp)
849 {
850         atomic_inc(&sp->ref_count);
851 }
852
853 /**************************************************************************
854 * qla2xxx_eh_abort
855 *
856 * Description:
857 *    The abort function will abort the specified command.
858 *
859 * Input:
860 *    cmd = Linux SCSI command packet to be aborted.
861 *
862 * Returns:
863 *    Either SUCCESS or FAILED.
864 *
865 * Note:
866 *    Only return FAILED if command not returned by firmware.
867 **************************************************************************/
868 static int
869 qla2xxx_eh_abort(struct scsi_cmnd *cmd)
870 {
871         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
872         srb_t *sp;
873         int ret;
874         unsigned int id, lun;
875         unsigned long flags;
876         int wait = 0;
877         struct qla_hw_data *ha = vha->hw;
878
879         ql_dbg(ql_dbg_taskm, vha, 0x8000,
880             "Entered %s for cmd=%p.\n", __func__, cmd);
881         if (!CMD_SP(cmd))
882                 return SUCCESS;
883
884         ret = fc_block_scsi_eh(cmd);
885         ql_dbg(ql_dbg_taskm, vha, 0x8001,
886             "Return value of fc_block_scsi_eh=%d.\n", ret);
887         if (ret != 0)
888                 return ret;
889         ret = SUCCESS;
890
891         id = cmd->device->id;
892         lun = cmd->device->lun;
893
894         spin_lock_irqsave(&ha->hardware_lock, flags);
895         sp = (srb_t *) CMD_SP(cmd);
896         if (!sp) {
897                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
898                 return SUCCESS;
899         }
900
901         ql_dbg(ql_dbg_taskm, vha, 0x8002,
902             "Aborting sp=%p cmd=%p from RISC ", sp, cmd);
903
904         /* Get a reference to the sp and drop the lock.*/
905         sp_get(sp);
906
907         spin_unlock_irqrestore(&ha->hardware_lock, flags);
908         if (ha->isp_ops->abort_command(sp)) {
909                 ql_dbg(ql_dbg_taskm, vha, 0x8003,
910                     "Abort command mbx failed for cmd=%p.\n", cmd);
911         } else {
912                 ql_dbg(ql_dbg_taskm, vha, 0x8004,
913                     "Abort command mbx success.\n");
914                 wait = 1;
915         }
916
917         spin_lock_irqsave(&ha->hardware_lock, flags);
918         qla2x00_sp_compl(ha, sp);
919         spin_unlock_irqrestore(&ha->hardware_lock, flags);
920
921         /* Did the command return during mailbox execution? */
922         if (ret == FAILED && !CMD_SP(cmd))
923                 ret = SUCCESS;
924
925         /* Wait for the command to be returned. */
926         if (wait) {
927                 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
928                         ql_log(ql_log_warn, vha, 0x8006,
929                             "Abort handler timed out for cmd=%p.\n", cmd);
930                         ret = FAILED;
931                 }
932         }
933
934         ql_log(ql_log_info, vha, 0x801c,
935             "Abort command issued --  %d %x.\n", wait, ret);
936
937         return ret;
938 }
939
940 int
941 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
942         unsigned int l, enum nexus_wait_type type)
943 {
944         int cnt, match, status;
945         unsigned long flags;
946         struct qla_hw_data *ha = vha->hw;
947         struct req_que *req;
948         srb_t *sp;
949
950         status = QLA_SUCCESS;
951
952         spin_lock_irqsave(&ha->hardware_lock, flags);
953         req = vha->req;
954         for (cnt = 1; status == QLA_SUCCESS &&
955                 cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
956                 sp = req->outstanding_cmds[cnt];
957                 if (!sp)
958                         continue;
959                 if ((sp->ctx) && !IS_PROT_IO(sp))
960                         continue;
961                 if (vha->vp_idx != sp->fcport->vha->vp_idx)
962                         continue;
963                 match = 0;
964                 switch (type) {
965                 case WAIT_HOST:
966                         match = 1;
967                         break;
968                 case WAIT_TARGET:
969                         match = sp->cmd->device->id == t;
970                         break;
971                 case WAIT_LUN:
972                         match = (sp->cmd->device->id == t &&
973                                 sp->cmd->device->lun == l);
974                         break;
975                 }
976                 if (!match)
977                         continue;
978
979                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
980                 status = qla2x00_eh_wait_on_command(sp->cmd);
981                 spin_lock_irqsave(&ha->hardware_lock, flags);
982         }
983         spin_unlock_irqrestore(&ha->hardware_lock, flags);
984
985         return status;
986 }
987
988 static char *reset_errors[] = {
989         "HBA not online",
990         "HBA not ready",
991         "Task management failed",
992         "Waiting for command completions",
993 };
994
995 static int
996 __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
997     struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int, int))
998 {
999         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1000         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1001         int err;
1002
1003         if (!fcport) {
1004                 ql_log(ql_log_warn, vha, 0x8007,
1005                     "fcport is NULL.\n");
1006                 return FAILED;
1007         }
1008
1009         err = fc_block_scsi_eh(cmd);
1010         ql_dbg(ql_dbg_taskm, vha, 0x8008,
1011             "fc_block_scsi_eh ret=%d.\n", err);
1012         if (err != 0)
1013                 return err;
1014
1015         ql_log(ql_log_info, vha, 0x8009,
1016             "%s RESET ISSUED for id %d lun %d cmd=%p.\n", name,
1017             cmd->device->id, cmd->device->lun, cmd);
1018
1019         err = 0;
1020         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1021                 ql_log(ql_log_warn, vha, 0x800a,
1022                     "Wait for hba online failed for cmd=%p.\n", cmd);
1023                 goto eh_reset_failed;
1024         }
1025         err = 1;
1026         if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS) {
1027                 ql_log(ql_log_warn, vha, 0x800b,
1028                     "Wait for loop ready failed for cmd=%p.\n", cmd);
1029                 goto eh_reset_failed;
1030         }
1031         err = 2;
1032         if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1)
1033                 != QLA_SUCCESS) {
1034                 ql_log(ql_log_warn, vha, 0x800c,
1035                     "do_reset failed for cmd=%p.\n", cmd);
1036                 goto eh_reset_failed;
1037         }
1038         err = 3;
1039         if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
1040             cmd->device->lun, type) != QLA_SUCCESS) {
1041                 ql_log(ql_log_warn, vha, 0x800d,
1042                     "wait for peding cmds failed for cmd=%p.\n", cmd);
1043                 goto eh_reset_failed;
1044         }
1045
1046         ql_log(ql_log_info, vha, 0x800e,
1047             "%s RESET SUCCEEDED for id %d lun %d cmd=%p.\n", name,
1048             cmd->device->id, cmd->device->lun, cmd);
1049
1050         return SUCCESS;
1051
1052 eh_reset_failed:
1053         ql_log(ql_log_info, vha, 0x800f,
1054             "%s RESET FAILED: %s for id %d lun %d cmd=%p.\n", name,
1055             reset_errors[err], cmd->device->id, cmd->device->lun);
1056         return FAILED;
1057 }
1058
1059 static int
1060 qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
1061 {
1062         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1063         struct qla_hw_data *ha = vha->hw;
1064
1065         return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
1066             ha->isp_ops->lun_reset);
1067 }
1068
1069 static int
1070 qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
1071 {
1072         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1073         struct qla_hw_data *ha = vha->hw;
1074
1075         return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
1076             ha->isp_ops->target_reset);
1077 }
1078
1079 /**************************************************************************
1080 * qla2xxx_eh_bus_reset
1081 *
1082 * Description:
1083 *    The bus reset function will reset the bus and abort any executing
1084 *    commands.
1085 *
1086 * Input:
1087 *    cmd = Linux SCSI command packet of the command that cause the
1088 *          bus reset.
1089 *
1090 * Returns:
1091 *    SUCCESS/FAILURE (defined as macro in scsi.h).
1092 *
1093 **************************************************************************/
1094 static int
1095 qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1096 {
1097         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1098         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1099         int ret = FAILED;
1100         unsigned int id, lun;
1101
1102         id = cmd->device->id;
1103         lun = cmd->device->lun;
1104
1105         if (!fcport) {
1106                 ql_log(ql_log_warn, vha, 0x8010,
1107                     "fcport is NULL.\n");
1108                 return ret;
1109         }
1110
1111         ret = fc_block_scsi_eh(cmd);
1112         ql_dbg(ql_dbg_taskm, vha, 0x8011,
1113             "fc_block_scsi_eh ret=%d.\n", ret);
1114         if (ret != 0)
1115                 return ret;
1116         ret = FAILED;
1117
1118         ql_log(ql_log_info, vha, 0x8012,
1119             "BUS RESET ISSUED for id %d lun %d.\n", id, lun);
1120
1121         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1122                 ql_log(ql_log_fatal, vha, 0x8013,
1123                     "Wait for hba online failed board disabled.\n");
1124                 goto eh_bus_reset_done;
1125         }
1126
1127         if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) {
1128                 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
1129                         ret = SUCCESS;
1130         }
1131         if (ret == FAILED)
1132                 goto eh_bus_reset_done;
1133
1134         /* Flush outstanding commands. */
1135         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
1136             QLA_SUCCESS) {
1137                 ql_log(ql_log_warn, vha, 0x8014,
1138                     "Wait for pending commands failed.\n");
1139                 ret = FAILED;
1140         }
1141
1142 eh_bus_reset_done:
1143         ql_log(ql_log_warn, vha, 0x802b,
1144             "BUS RESET %s.\n", (ret == FAILED) ? "FAILED" : "SUCCEDED");
1145
1146         return ret;
1147 }
1148
1149 /**************************************************************************
1150 * qla2xxx_eh_host_reset
1151 *
1152 * Description:
1153 *    The reset function will reset the Adapter.
1154 *
1155 * Input:
1156 *      cmd = Linux SCSI command packet of the command that cause the
1157 *            adapter reset.
1158 *
1159 * Returns:
1160 *      Either SUCCESS or FAILED.
1161 *
1162 * Note:
1163 **************************************************************************/
1164 static int
1165 qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1166 {
1167         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1168         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1169         struct qla_hw_data *ha = vha->hw;
1170         int ret = FAILED;
1171         unsigned int id, lun;
1172         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1173
1174         id = cmd->device->id;
1175         lun = cmd->device->lun;
1176
1177         if (!fcport) {
1178                 ql_log(ql_log_warn, vha, 0x8016,
1179                     "fcport is NULL.\n");
1180                 return ret;
1181         }
1182
1183         ret = fc_block_scsi_eh(cmd);
1184         ql_dbg(ql_dbg_taskm, vha, 0x8017,
1185             "fc_block_scsi_eh ret=%d.\n", ret);
1186         if (ret != 0)
1187                 return ret;
1188         ret = FAILED;
1189
1190         ql_log(ql_log_info, vha, 0x8018,
1191             "ADAPTER RESET ISSUED for id %d lun %d.\n", id, lun);
1192
1193         if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS)
1194                 goto eh_host_reset_lock;
1195
1196         /*
1197          * Fixme-may be dpc thread is active and processing
1198          * loop_resync,so wait a while for it to
1199          * be completed and then issue big hammer.Otherwise
1200          * it may cause I/O failure as big hammer marks the
1201          * devices as lost kicking of the port_down_timer
1202          * while dpc is stuck for the mailbox to complete.
1203          */
1204         qla2x00_wait_for_loop_ready(vha);
1205         if (vha != base_vha) {
1206                 if (qla2x00_vp_abort_isp(vha))
1207                         goto eh_host_reset_lock;
1208         } else {
1209                 if (IS_QLA82XX(vha->hw)) {
1210                         if (!qla82xx_fcoe_ctx_reset(vha)) {
1211                                 /* Ctx reset success */
1212                                 ret = SUCCESS;
1213                                 goto eh_host_reset_lock;
1214                         }
1215                         /* fall thru if ctx reset failed */
1216                 }
1217                 if (ha->wq)
1218                         flush_workqueue(ha->wq);
1219
1220                 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1221                 if (ha->isp_ops->abort_isp(base_vha)) {
1222                         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1223                         /* failed. schedule dpc to try */
1224                         set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1225
1226                         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1227                                 ql_log(ql_log_warn, vha, 0x802a,
1228                                     "wait for hba online failed.\n");
1229                                 goto eh_host_reset_lock;
1230                         }
1231                 }
1232                 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1233         }
1234
1235         /* Waiting for command to be returned to OS.*/
1236         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1237                 QLA_SUCCESS)
1238                 ret = SUCCESS;
1239
1240 eh_host_reset_lock:
1241         qla_printk(KERN_INFO, ha, "%s: reset %s.\n", __func__,
1242             (ret == FAILED) ? "failed" : "succeeded");
1243
1244         return ret;
1245 }
1246
1247 /*
1248 * qla2x00_loop_reset
1249 *      Issue loop reset.
1250 *
1251 * Input:
1252 *      ha = adapter block pointer.
1253 *
1254 * Returns:
1255 *      0 = success
1256 */
1257 int
1258 qla2x00_loop_reset(scsi_qla_host_t *vha)
1259 {
1260         int ret;
1261         struct fc_port *fcport;
1262         struct qla_hw_data *ha = vha->hw;
1263
1264         if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) {
1265                 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1266                         if (fcport->port_type != FCT_TARGET)
1267                                 continue;
1268
1269                         ret = ha->isp_ops->target_reset(fcport, 0, 0);
1270                         if (ret != QLA_SUCCESS) {
1271                                 ql_dbg(ql_dbg_taskm, vha, 0x802c,
1272                                     "Bus Reset failed: Target Reset=%d "
1273                                     "d_id=%x.\n", ret, fcport->d_id.b24);
1274                         }
1275                 }
1276         }
1277
1278         if (ha->flags.enable_lip_full_login && !IS_QLA8XXX_TYPE(ha)) {
1279                 ret = qla2x00_full_login_lip(vha);
1280                 if (ret != QLA_SUCCESS) {
1281                         ql_dbg(ql_dbg_taskm, vha, 0x802d,
1282                             "full_login_lip=%d.\n", ret);
1283                 }
1284                 atomic_set(&vha->loop_state, LOOP_DOWN);
1285                 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1286                 qla2x00_mark_all_devices_lost(vha, 0);
1287                 qla2x00_wait_for_loop_ready(vha);
1288         }
1289
1290         if (ha->flags.enable_lip_reset) {
1291                 ret = qla2x00_lip_reset(vha);
1292                 if (ret != QLA_SUCCESS) {
1293                         ql_dbg(ql_dbg_taskm, vha, 0x802e,
1294                             "lip_reset failed (%d).\n", ret);
1295                 } else
1296                         qla2x00_wait_for_loop_ready(vha);
1297         }
1298
1299         /* Issue marker command only when we are going to start the I/O */
1300         vha->marker_needed = 1;
1301
1302         return QLA_SUCCESS;
1303 }
1304
1305 void
1306 qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
1307 {
1308         int que, cnt;
1309         unsigned long flags;
1310         srb_t *sp;
1311         struct srb_ctx *ctx;
1312         struct qla_hw_data *ha = vha->hw;
1313         struct req_que *req;
1314
1315         spin_lock_irqsave(&ha->hardware_lock, flags);
1316         for (que = 0; que < ha->max_req_queues; que++) {
1317                 req = ha->req_q_map[que];
1318                 if (!req)
1319                         continue;
1320                 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1321                         sp = req->outstanding_cmds[cnt];
1322                         if (sp) {
1323                                 req->outstanding_cmds[cnt] = NULL;
1324                                 if (!sp->ctx ||
1325                                         (sp->flags & SRB_FCP_CMND_DMA_VALID) ||
1326                                         IS_PROT_IO(sp)) {
1327                                         sp->cmd->result = res;
1328                                         qla2x00_sp_compl(ha, sp);
1329                                 } else {
1330                                         ctx = sp->ctx;
1331                                         if (ctx->type == SRB_LOGIN_CMD ||
1332                                             ctx->type == SRB_LOGOUT_CMD) {
1333                                                 ctx->u.iocb_cmd->free(sp);
1334                                         } else {
1335                                                 struct fc_bsg_job *bsg_job =
1336                                                     ctx->u.bsg_job;
1337                                                 if (bsg_job->request->msgcode
1338                                                     == FC_BSG_HST_CT)
1339                                                         kfree(sp->fcport);
1340                                                 bsg_job->req->errors = 0;
1341                                                 bsg_job->reply->result = res;
1342                                                 bsg_job->job_done(bsg_job);
1343                                                 kfree(sp->ctx);
1344                                                 mempool_free(sp,
1345                                                         ha->srb_mempool);
1346                                         }
1347                                 }
1348                         }
1349                 }
1350         }
1351         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1352 }
1353
1354 static int
1355 qla2xxx_slave_alloc(struct scsi_device *sdev)
1356 {
1357         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1358
1359         if (!rport || fc_remote_port_chkready(rport))
1360                 return -ENXIO;
1361
1362         sdev->hostdata = *(fc_port_t **)rport->dd_data;
1363
1364         return 0;
1365 }
1366
1367 static int
1368 qla2xxx_slave_configure(struct scsi_device *sdev)
1369 {
1370         scsi_qla_host_t *vha = shost_priv(sdev->host);
1371         struct req_que *req = vha->req;
1372
1373         if (sdev->tagged_supported)
1374                 scsi_activate_tcq(sdev, req->max_q_depth);
1375         else
1376                 scsi_deactivate_tcq(sdev, req->max_q_depth);
1377         return 0;
1378 }
1379
1380 static void
1381 qla2xxx_slave_destroy(struct scsi_device *sdev)
1382 {
1383         sdev->hostdata = NULL;
1384 }
1385
1386 static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth)
1387 {
1388         fc_port_t *fcport = (struct fc_port *) sdev->hostdata;
1389
1390         if (!scsi_track_queue_full(sdev, qdepth))
1391                 return;
1392
1393         ql_dbg(ql_dbg_io, fcport->vha, 0x3029,
1394             "Queue depth adjusted-down "
1395             "to %d for scsi(%ld:%d:%d:%d).\n",
1396             sdev->queue_depth, fcport->vha->host_no,
1397             sdev->channel, sdev->id, sdev->lun);
1398 }
1399
1400 static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth)
1401 {
1402         fc_port_t *fcport = sdev->hostdata;
1403         struct scsi_qla_host *vha = fcport->vha;
1404         struct req_que *req = NULL;
1405
1406         req = vha->req;
1407         if (!req)
1408                 return;
1409
1410         if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth)
1411                 return;
1412
1413         if (sdev->ordered_tags)
1414                 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth);
1415         else
1416                 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth);
1417
1418         ql_dbg(ql_dbg_io, vha, 0x302a,
1419             "Queue depth adjusted-up to %d for "
1420             "scsi(%ld:%d:%d:%d).\n",
1421             sdev->queue_depth, fcport->vha->host_no,
1422             sdev->channel, sdev->id, sdev->lun);
1423 }
1424
1425 static int
1426 qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
1427 {
1428         switch (reason) {
1429         case SCSI_QDEPTH_DEFAULT:
1430                 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1431                 break;
1432         case SCSI_QDEPTH_QFULL:
1433                 qla2x00_handle_queue_full(sdev, qdepth);
1434                 break;
1435         case SCSI_QDEPTH_RAMP_UP:
1436                 qla2x00_adjust_sdev_qdepth_up(sdev, qdepth);
1437                 break;
1438         default:
1439                 return -EOPNOTSUPP;
1440         }
1441
1442         return sdev->queue_depth;
1443 }
1444
1445 static int
1446 qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1447 {
1448         if (sdev->tagged_supported) {
1449                 scsi_set_tag_type(sdev, tag_type);
1450                 if (tag_type)
1451                         scsi_activate_tcq(sdev, sdev->queue_depth);
1452                 else
1453                         scsi_deactivate_tcq(sdev, sdev->queue_depth);
1454         } else
1455                 tag_type = 0;
1456
1457         return tag_type;
1458 }
1459
1460 /**
1461  * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1462  * @ha: HA context
1463  *
1464  * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1465  * supported addressing method.
1466  */
1467 static void
1468 qla2x00_config_dma_addressing(struct qla_hw_data *ha)
1469 {
1470         /* Assume a 32bit DMA mask. */
1471         ha->flags.enable_64bit_addressing = 0;
1472
1473         if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1474                 /* Any upper-dword bits set? */
1475                 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1476                     !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
1477                         /* Ok, a 64bit DMA mask is applicable. */
1478                         ha->flags.enable_64bit_addressing = 1;
1479                         ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1480                         ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
1481                         return;
1482                 }
1483         }
1484
1485         dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1486         pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32));
1487 }
1488
1489 static void
1490 qla2x00_enable_intrs(struct qla_hw_data *ha)
1491 {
1492         unsigned long flags = 0;
1493         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1494
1495         spin_lock_irqsave(&ha->hardware_lock, flags);
1496         ha->interrupts_on = 1;
1497         /* enable risc and host interrupts */
1498         WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1499         RD_REG_WORD(&reg->ictrl);
1500         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1501
1502 }
1503
1504 static void
1505 qla2x00_disable_intrs(struct qla_hw_data *ha)
1506 {
1507         unsigned long flags = 0;
1508         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1509
1510         spin_lock_irqsave(&ha->hardware_lock, flags);
1511         ha->interrupts_on = 0;
1512         /* disable risc and host interrupts */
1513         WRT_REG_WORD(&reg->ictrl, 0);
1514         RD_REG_WORD(&reg->ictrl);
1515         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1516 }
1517
1518 static void
1519 qla24xx_enable_intrs(struct qla_hw_data *ha)
1520 {
1521         unsigned long flags = 0;
1522         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1523
1524         spin_lock_irqsave(&ha->hardware_lock, flags);
1525         ha->interrupts_on = 1;
1526         WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1527         RD_REG_DWORD(&reg->ictrl);
1528         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1529 }
1530
1531 static void
1532 qla24xx_disable_intrs(struct qla_hw_data *ha)
1533 {
1534         unsigned long flags = 0;
1535         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1536
1537         if (IS_NOPOLLING_TYPE(ha))
1538                 return;
1539         spin_lock_irqsave(&ha->hardware_lock, flags);
1540         ha->interrupts_on = 0;
1541         WRT_REG_DWORD(&reg->ictrl, 0);
1542         RD_REG_DWORD(&reg->ictrl);
1543         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1544 }
1545
1546 static struct isp_operations qla2100_isp_ops = {
1547         .pci_config             = qla2100_pci_config,
1548         .reset_chip             = qla2x00_reset_chip,
1549         .chip_diag              = qla2x00_chip_diag,
1550         .config_rings           = qla2x00_config_rings,
1551         .reset_adapter          = qla2x00_reset_adapter,
1552         .nvram_config           = qla2x00_nvram_config,
1553         .update_fw_options      = qla2x00_update_fw_options,
1554         .load_risc              = qla2x00_load_risc,
1555         .pci_info_str           = qla2x00_pci_info_str,
1556         .fw_version_str         = qla2x00_fw_version_str,
1557         .intr_handler           = qla2100_intr_handler,
1558         .enable_intrs           = qla2x00_enable_intrs,
1559         .disable_intrs          = qla2x00_disable_intrs,
1560         .abort_command          = qla2x00_abort_command,
1561         .target_reset           = qla2x00_abort_target,
1562         .lun_reset              = qla2x00_lun_reset,
1563         .fabric_login           = qla2x00_login_fabric,
1564         .fabric_logout          = qla2x00_fabric_logout,
1565         .calc_req_entries       = qla2x00_calc_iocbs_32,
1566         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
1567         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
1568         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
1569         .read_nvram             = qla2x00_read_nvram_data,
1570         .write_nvram            = qla2x00_write_nvram_data,
1571         .fw_dump                = qla2100_fw_dump,
1572         .beacon_on              = NULL,
1573         .beacon_off             = NULL,
1574         .beacon_blink           = NULL,
1575         .read_optrom            = qla2x00_read_optrom_data,
1576         .write_optrom           = qla2x00_write_optrom_data,
1577         .get_flash_version      = qla2x00_get_flash_version,
1578         .start_scsi             = qla2x00_start_scsi,
1579         .abort_isp              = qla2x00_abort_isp,
1580 };
1581
1582 static struct isp_operations qla2300_isp_ops = {
1583         .pci_config             = qla2300_pci_config,
1584         .reset_chip             = qla2x00_reset_chip,
1585         .chip_diag              = qla2x00_chip_diag,
1586         .config_rings           = qla2x00_config_rings,
1587         .reset_adapter          = qla2x00_reset_adapter,
1588         .nvram_config           = qla2x00_nvram_config,
1589         .update_fw_options      = qla2x00_update_fw_options,
1590         .load_risc              = qla2x00_load_risc,
1591         .pci_info_str           = qla2x00_pci_info_str,
1592         .fw_version_str         = qla2x00_fw_version_str,
1593         .intr_handler           = qla2300_intr_handler,
1594         .enable_intrs           = qla2x00_enable_intrs,
1595         .disable_intrs          = qla2x00_disable_intrs,
1596         .abort_command          = qla2x00_abort_command,
1597         .target_reset           = qla2x00_abort_target,
1598         .lun_reset              = qla2x00_lun_reset,
1599         .fabric_login           = qla2x00_login_fabric,
1600         .fabric_logout          = qla2x00_fabric_logout,
1601         .calc_req_entries       = qla2x00_calc_iocbs_32,
1602         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
1603         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
1604         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
1605         .read_nvram             = qla2x00_read_nvram_data,
1606         .write_nvram            = qla2x00_write_nvram_data,
1607         .fw_dump                = qla2300_fw_dump,
1608         .beacon_on              = qla2x00_beacon_on,
1609         .beacon_off             = qla2x00_beacon_off,
1610         .beacon_blink           = qla2x00_beacon_blink,
1611         .read_optrom            = qla2x00_read_optrom_data,
1612         .write_optrom           = qla2x00_write_optrom_data,
1613         .get_flash_version      = qla2x00_get_flash_version,
1614         .start_scsi             = qla2x00_start_scsi,
1615         .abort_isp              = qla2x00_abort_isp,
1616 };
1617
1618 static struct isp_operations qla24xx_isp_ops = {
1619         .pci_config             = qla24xx_pci_config,
1620         .reset_chip             = qla24xx_reset_chip,
1621         .chip_diag              = qla24xx_chip_diag,
1622         .config_rings           = qla24xx_config_rings,
1623         .reset_adapter          = qla24xx_reset_adapter,
1624         .nvram_config           = qla24xx_nvram_config,
1625         .update_fw_options      = qla24xx_update_fw_options,
1626         .load_risc              = qla24xx_load_risc,
1627         .pci_info_str           = qla24xx_pci_info_str,
1628         .fw_version_str         = qla24xx_fw_version_str,
1629         .intr_handler           = qla24xx_intr_handler,
1630         .enable_intrs           = qla24xx_enable_intrs,
1631         .disable_intrs          = qla24xx_disable_intrs,
1632         .abort_command          = qla24xx_abort_command,
1633         .target_reset           = qla24xx_abort_target,
1634         .lun_reset              = qla24xx_lun_reset,
1635         .fabric_login           = qla24xx_login_fabric,
1636         .fabric_logout          = qla24xx_fabric_logout,
1637         .calc_req_entries       = NULL,
1638         .build_iocbs            = NULL,
1639         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1640         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1641         .read_nvram             = qla24xx_read_nvram_data,
1642         .write_nvram            = qla24xx_write_nvram_data,
1643         .fw_dump                = qla24xx_fw_dump,
1644         .beacon_on              = qla24xx_beacon_on,
1645         .beacon_off             = qla24xx_beacon_off,
1646         .beacon_blink           = qla24xx_beacon_blink,
1647         .read_optrom            = qla24xx_read_optrom_data,
1648         .write_optrom           = qla24xx_write_optrom_data,
1649         .get_flash_version      = qla24xx_get_flash_version,
1650         .start_scsi             = qla24xx_start_scsi,
1651         .abort_isp              = qla2x00_abort_isp,
1652 };
1653
1654 static struct isp_operations qla25xx_isp_ops = {
1655         .pci_config             = qla25xx_pci_config,
1656         .reset_chip             = qla24xx_reset_chip,
1657         .chip_diag              = qla24xx_chip_diag,
1658         .config_rings           = qla24xx_config_rings,
1659         .reset_adapter          = qla24xx_reset_adapter,
1660         .nvram_config           = qla24xx_nvram_config,
1661         .update_fw_options      = qla24xx_update_fw_options,
1662         .load_risc              = qla24xx_load_risc,
1663         .pci_info_str           = qla24xx_pci_info_str,
1664         .fw_version_str         = qla24xx_fw_version_str,
1665         .intr_handler           = qla24xx_intr_handler,
1666         .enable_intrs           = qla24xx_enable_intrs,
1667         .disable_intrs          = qla24xx_disable_intrs,
1668         .abort_command          = qla24xx_abort_command,
1669         .target_reset           = qla24xx_abort_target,
1670         .lun_reset              = qla24xx_lun_reset,
1671         .fabric_login           = qla24xx_login_fabric,
1672         .fabric_logout          = qla24xx_fabric_logout,
1673         .calc_req_entries       = NULL,
1674         .build_iocbs            = NULL,
1675         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1676         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1677         .read_nvram             = qla25xx_read_nvram_data,
1678         .write_nvram            = qla25xx_write_nvram_data,
1679         .fw_dump                = qla25xx_fw_dump,
1680         .beacon_on              = qla24xx_beacon_on,
1681         .beacon_off             = qla24xx_beacon_off,
1682         .beacon_blink           = qla24xx_beacon_blink,
1683         .read_optrom            = qla25xx_read_optrom_data,
1684         .write_optrom           = qla24xx_write_optrom_data,
1685         .get_flash_version      = qla24xx_get_flash_version,
1686         .start_scsi             = qla24xx_dif_start_scsi,
1687         .abort_isp              = qla2x00_abort_isp,
1688 };
1689
1690 static struct isp_operations qla81xx_isp_ops = {
1691         .pci_config             = qla25xx_pci_config,
1692         .reset_chip             = qla24xx_reset_chip,
1693         .chip_diag              = qla24xx_chip_diag,
1694         .config_rings           = qla24xx_config_rings,
1695         .reset_adapter          = qla24xx_reset_adapter,
1696         .nvram_config           = qla81xx_nvram_config,
1697         .update_fw_options      = qla81xx_update_fw_options,
1698         .load_risc              = qla81xx_load_risc,
1699         .pci_info_str           = qla24xx_pci_info_str,
1700         .fw_version_str         = qla24xx_fw_version_str,
1701         .intr_handler           = qla24xx_intr_handler,
1702         .enable_intrs           = qla24xx_enable_intrs,
1703         .disable_intrs          = qla24xx_disable_intrs,
1704         .abort_command          = qla24xx_abort_command,
1705         .target_reset           = qla24xx_abort_target,
1706         .lun_reset              = qla24xx_lun_reset,
1707         .fabric_login           = qla24xx_login_fabric,
1708         .fabric_logout          = qla24xx_fabric_logout,
1709         .calc_req_entries       = NULL,
1710         .build_iocbs            = NULL,
1711         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1712         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1713         .read_nvram             = NULL,
1714         .write_nvram            = NULL,
1715         .fw_dump                = qla81xx_fw_dump,
1716         .beacon_on              = qla24xx_beacon_on,
1717         .beacon_off             = qla24xx_beacon_off,
1718         .beacon_blink           = qla24xx_beacon_blink,
1719         .read_optrom            = qla25xx_read_optrom_data,
1720         .write_optrom           = qla24xx_write_optrom_data,
1721         .get_flash_version      = qla24xx_get_flash_version,
1722         .start_scsi             = qla24xx_dif_start_scsi,
1723         .abort_isp              = qla2x00_abort_isp,
1724 };
1725
1726 static struct isp_operations qla82xx_isp_ops = {
1727         .pci_config             = qla82xx_pci_config,
1728         .reset_chip             = qla82xx_reset_chip,
1729         .chip_diag              = qla24xx_chip_diag,
1730         .config_rings           = qla82xx_config_rings,
1731         .reset_adapter          = qla24xx_reset_adapter,
1732         .nvram_config           = qla81xx_nvram_config,
1733         .update_fw_options      = qla24xx_update_fw_options,
1734         .load_risc              = qla82xx_load_risc,
1735         .pci_info_str           = qla82xx_pci_info_str,
1736         .fw_version_str         = qla24xx_fw_version_str,
1737         .intr_handler           = qla82xx_intr_handler,
1738         .enable_intrs           = qla82xx_enable_intrs,
1739         .disable_intrs          = qla82xx_disable_intrs,
1740         .abort_command          = qla24xx_abort_command,
1741         .target_reset           = qla24xx_abort_target,
1742         .lun_reset              = qla24xx_lun_reset,
1743         .fabric_login           = qla24xx_login_fabric,
1744         .fabric_logout          = qla24xx_fabric_logout,
1745         .calc_req_entries       = NULL,
1746         .build_iocbs            = NULL,
1747         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1748         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1749         .read_nvram             = qla24xx_read_nvram_data,
1750         .write_nvram            = qla24xx_write_nvram_data,
1751         .fw_dump                = qla24xx_fw_dump,
1752         .beacon_on              = qla24xx_beacon_on,
1753         .beacon_off             = qla24xx_beacon_off,
1754         .beacon_blink           = qla24xx_beacon_blink,
1755         .read_optrom            = qla82xx_read_optrom_data,
1756         .write_optrom           = qla82xx_write_optrom_data,
1757         .get_flash_version      = qla24xx_get_flash_version,
1758         .start_scsi             = qla82xx_start_scsi,
1759         .abort_isp              = qla82xx_abort_isp,
1760 };
1761
1762 static inline void
1763 qla2x00_set_isp_flags(struct qla_hw_data *ha)
1764 {
1765         ha->device_type = DT_EXTENDED_IDS;
1766         switch (ha->pdev->device) {
1767         case PCI_DEVICE_ID_QLOGIC_ISP2100:
1768                 ha->device_type |= DT_ISP2100;
1769                 ha->device_type &= ~DT_EXTENDED_IDS;
1770                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
1771                 break;
1772         case PCI_DEVICE_ID_QLOGIC_ISP2200:
1773                 ha->device_type |= DT_ISP2200;
1774                 ha->device_type &= ~DT_EXTENDED_IDS;
1775                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
1776                 break;
1777         case PCI_DEVICE_ID_QLOGIC_ISP2300:
1778                 ha->device_type |= DT_ISP2300;
1779                 ha->device_type |= DT_ZIO_SUPPORTED;
1780                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1781                 break;
1782         case PCI_DEVICE_ID_QLOGIC_ISP2312:
1783                 ha->device_type |= DT_ISP2312;
1784                 ha->device_type |= DT_ZIO_SUPPORTED;
1785                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1786                 break;
1787         case PCI_DEVICE_ID_QLOGIC_ISP2322:
1788                 ha->device_type |= DT_ISP2322;
1789                 ha->device_type |= DT_ZIO_SUPPORTED;
1790                 if (ha->pdev->subsystem_vendor == 0x1028 &&
1791                     ha->pdev->subsystem_device == 0x0170)
1792                         ha->device_type |= DT_OEM_001;
1793                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1794                 break;
1795         case PCI_DEVICE_ID_QLOGIC_ISP6312:
1796                 ha->device_type |= DT_ISP6312;
1797                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1798                 break;
1799         case PCI_DEVICE_ID_QLOGIC_ISP6322:
1800                 ha->device_type |= DT_ISP6322;
1801                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1802                 break;
1803         case PCI_DEVICE_ID_QLOGIC_ISP2422:
1804                 ha->device_type |= DT_ISP2422;
1805                 ha->device_type |= DT_ZIO_SUPPORTED;
1806                 ha->device_type |= DT_FWI2;
1807                 ha->device_type |= DT_IIDMA;
1808                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1809                 break;
1810         case PCI_DEVICE_ID_QLOGIC_ISP2432:
1811                 ha->device_type |= DT_ISP2432;
1812                 ha->device_type |= DT_ZIO_SUPPORTED;
1813                 ha->device_type |= DT_FWI2;
1814                 ha->device_type |= DT_IIDMA;
1815                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1816                 break;
1817         case PCI_DEVICE_ID_QLOGIC_ISP8432:
1818                 ha->device_type |= DT_ISP8432;
1819                 ha->device_type |= DT_ZIO_SUPPORTED;
1820                 ha->device_type |= DT_FWI2;
1821                 ha->device_type |= DT_IIDMA;
1822                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1823                 break;
1824         case PCI_DEVICE_ID_QLOGIC_ISP5422:
1825                 ha->device_type |= DT_ISP5422;
1826                 ha->device_type |= DT_FWI2;
1827                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1828                 break;
1829         case PCI_DEVICE_ID_QLOGIC_ISP5432:
1830                 ha->device_type |= DT_ISP5432;
1831                 ha->device_type |= DT_FWI2;
1832                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1833                 break;
1834         case PCI_DEVICE_ID_QLOGIC_ISP2532:
1835                 ha->device_type |= DT_ISP2532;
1836                 ha->device_type |= DT_ZIO_SUPPORTED;
1837                 ha->device_type |= DT_FWI2;
1838                 ha->device_type |= DT_IIDMA;
1839                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1840                 break;
1841         case PCI_DEVICE_ID_QLOGIC_ISP8001:
1842                 ha->device_type |= DT_ISP8001;
1843                 ha->device_type |= DT_ZIO_SUPPORTED;
1844                 ha->device_type |= DT_FWI2;
1845                 ha->device_type |= DT_IIDMA;
1846                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1847                 break;
1848         case PCI_DEVICE_ID_QLOGIC_ISP8021:
1849                 ha->device_type |= DT_ISP8021;
1850                 ha->device_type |= DT_ZIO_SUPPORTED;
1851                 ha->device_type |= DT_FWI2;
1852                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1853                 /* Initialize 82XX ISP flags */
1854                 qla82xx_init_flags(ha);
1855                 break;
1856         }
1857
1858         if (IS_QLA82XX(ha))
1859                 ha->port_no = !(ha->portnum & 1);
1860         else
1861                 /* Get adapter physical port no from interrupt pin register. */
1862                 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
1863
1864         if (ha->port_no & 1)
1865                 ha->flags.port0 = 1;
1866         else
1867                 ha->flags.port0 = 0;
1868         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b,
1869             "device_type=0x%x port=%d fw_srisc_address=%p.\n",
1870             ha->device_type, ha->flags.port0, ha->fw_srisc_address);
1871 }
1872
1873 static int
1874 qla2x00_iospace_config(struct qla_hw_data *ha)
1875 {
1876         resource_size_t pio;
1877         uint16_t msix;
1878         int cpus;
1879
1880         if (IS_QLA82XX(ha))
1881                 return qla82xx_iospace_config(ha);
1882
1883         if (pci_request_selected_regions(ha->pdev, ha->bars,
1884             QLA2XXX_DRIVER_NAME)) {
1885                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0011,
1886                     "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
1887                     pci_name(ha->pdev));
1888                 goto iospace_error_exit;
1889         }
1890         if (!(ha->bars & 1))
1891                 goto skip_pio;
1892
1893         /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1894         pio = pci_resource_start(ha->pdev, 0);
1895         if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1896                 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
1897                         ql_log_pci(ql_log_warn, ha->pdev, 0x0012,
1898                             "Invalid pci I/O region size (%s).\n",
1899                             pci_name(ha->pdev));
1900                         pio = 0;
1901                 }
1902         } else {
1903                 ql_log_pci(ql_log_warn, ha->pdev, 0x0013,
1904                     "Region #0 no a PIO resource (%s).\n",
1905                     pci_name(ha->pdev));
1906                 pio = 0;
1907         }
1908         ha->pio_address = pio;
1909         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014,
1910             "PIO address=%p.\n",
1911             ha->pio_address);
1912
1913 skip_pio:
1914         /* Use MMIO operations for all accesses. */
1915         if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
1916                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0015,
1917                     "Region #1 not an MMIO resource (%s), aborting.\n",
1918                     pci_name(ha->pdev));
1919                 goto iospace_error_exit;
1920         }
1921         if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
1922                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0016,
1923                     "Invalid PCI mem region size (%s), aborting.\n",
1924                     pci_name(ha->pdev));
1925                 goto iospace_error_exit;
1926         }
1927
1928         ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
1929         if (!ha->iobase) {
1930                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0017,
1931                     "Cannot remap MMIO (%s), aborting.\n",
1932                     pci_name(ha->pdev));
1933                 goto iospace_error_exit;
1934         }
1935
1936         /* Determine queue resources */
1937         ha->max_req_queues = ha->max_rsp_queues = 1;
1938         if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) ||
1939                 (ql2xmaxqueues > 1 && ql2xmultique_tag) ||
1940                 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
1941                 goto mqiobase_exit;
1942
1943         ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
1944                         pci_resource_len(ha->pdev, 3));
1945         if (ha->mqiobase) {
1946                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018,
1947                     "MQIO Base=%p.\n", ha->mqiobase);
1948                 /* Read MSIX vector size of the board */
1949                 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
1950                 ha->msix_count = msix;
1951                 /* Max queues are bounded by available msix vectors */
1952                 /* queue 0 uses two msix vectors */
1953                 if (ql2xmultique_tag) {
1954                         cpus = num_online_cpus();
1955                         ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ?
1956                                 (cpus + 1) : (ha->msix_count - 1);
1957                         ha->max_req_queues = 2;
1958                 } else if (ql2xmaxqueues > 1) {
1959                         ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ?
1960                             QLA_MQ_SIZE : ql2xmaxqueues;
1961                         ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc008,
1962                             "QoS mode set, max no of request queues:%d.\n",
1963                             ha->max_req_queues);
1964                         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0019,
1965                             "QoS mode set, max no of request queues:%d.\n",
1966                             ha->max_req_queues);
1967                 }
1968                 ql_log_pci(ql_log_info, ha->pdev, 0x001a,
1969                     "MSI-X vector count: %d.\n", msix);
1970         } else
1971                 ql_log_pci(ql_log_info, ha->pdev, 0x001b,
1972                     "BAR 3 not enabled.\n");
1973
1974 mqiobase_exit:
1975         ha->msix_count = ha->max_rsp_queues + 1;
1976         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c,
1977             "MSIX Count:%d.\n", ha->msix_count);
1978         return (0);
1979
1980 iospace_error_exit:
1981         return (-ENOMEM);
1982 }
1983
1984 static void
1985 qla2xxx_scan_start(struct Scsi_Host *shost)
1986 {
1987         scsi_qla_host_t *vha = shost_priv(shost);
1988
1989         if (vha->hw->flags.running_gold_fw)
1990                 return;
1991
1992         set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1993         set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1994         set_bit(RSCN_UPDATE, &vha->dpc_flags);
1995         set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
1996 }
1997
1998 static int
1999 qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
2000 {
2001         scsi_qla_host_t *vha = shost_priv(shost);
2002
2003         if (!vha->host)
2004                 return 1;
2005         if (time > vha->hw->loop_reset_delay * HZ)
2006                 return 1;
2007
2008         return atomic_read(&vha->loop_state) == LOOP_READY;
2009 }
2010
2011 /*
2012  * PCI driver interface
2013  */
2014 static int __devinit
2015 qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2016 {
2017         int     ret = -ENODEV;
2018         struct Scsi_Host *host;
2019         scsi_qla_host_t *base_vha = NULL;
2020         struct qla_hw_data *ha;
2021         char pci_info[30];
2022         char fw_str[30];
2023         struct scsi_host_template *sht;
2024         int bars, max_id, mem_only = 0;
2025         uint16_t req_length = 0, rsp_length = 0;
2026         struct req_que *req = NULL;
2027         struct rsp_que *rsp = NULL;
2028
2029         bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
2030         sht = &qla2xxx_driver_template;
2031         if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
2032             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
2033             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
2034             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
2035             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
2036             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
2037             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
2038             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021) {
2039                 bars = pci_select_bars(pdev, IORESOURCE_MEM);
2040                 mem_only = 1;
2041                 ql_dbg_pci(ql_dbg_init, pdev, 0x0007,
2042                     "Mem only adapter.\n");
2043         }
2044         ql_dbg_pci(ql_dbg_init, pdev, 0x0008,
2045             "Bars=%d.\n", bars);
2046
2047         if (mem_only) {
2048                 if (pci_enable_device_mem(pdev))
2049                         goto probe_out;
2050         } else {
2051                 if (pci_enable_device(pdev))
2052                         goto probe_out;
2053         }
2054
2055         /* This may fail but that's ok */
2056         pci_enable_pcie_error_reporting(pdev);
2057
2058         ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
2059         if (!ha) {
2060                 ql_log_pci(ql_log_fatal, pdev, 0x0009,
2061                     "Unable to allocate memory for ha.\n");
2062                 goto probe_out;
2063         }
2064         ql_dbg_pci(ql_dbg_init, pdev, 0x000a,
2065             "Memory allocated for ha=%p.\n", ha);
2066         ha->pdev = pdev;
2067
2068         /* Clear our data area */
2069         ha->bars = bars;
2070         ha->mem_only = mem_only;
2071         spin_lock_init(&ha->hardware_lock);
2072         spin_lock_init(&ha->vport_slock);
2073
2074         /* Set ISP-type information. */
2075         qla2x00_set_isp_flags(ha);
2076
2077         /* Set EEH reset type to fundamental if required by hba */
2078         if ( IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) {
2079                 pdev->needs_freset = 1;
2080         }
2081
2082         /* Configure PCI I/O space */
2083         ret = qla2x00_iospace_config(ha);
2084         if (ret)
2085                 goto probe_hw_failed;
2086
2087         ql_log_pci(ql_log_info, pdev, 0x001d,
2088             "Found an ISP%04X irq %d iobase 0x%p.\n",
2089             pdev->device, pdev->irq, ha->iobase);
2090         ha->prev_topology = 0;
2091         ha->init_cb_size = sizeof(init_cb_t);
2092         ha->link_data_rate = PORT_SPEED_UNKNOWN;
2093         ha->optrom_size = OPTROM_SIZE_2300;
2094
2095         /* Assign ISP specific operations. */
2096         max_id = MAX_TARGETS_2200;
2097         if (IS_QLA2100(ha)) {
2098                 max_id = MAX_TARGETS_2100;
2099                 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
2100                 req_length = REQUEST_ENTRY_CNT_2100;
2101                 rsp_length = RESPONSE_ENTRY_CNT_2100;
2102                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2103                 ha->gid_list_info_size = 4;
2104                 ha->flash_conf_off = ~0;
2105                 ha->flash_data_off = ~0;
2106                 ha->nvram_conf_off = ~0;
2107                 ha->nvram_data_off = ~0;
2108                 ha->isp_ops = &qla2100_isp_ops;
2109         } else if (IS_QLA2200(ha)) {
2110                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2111                 req_length = REQUEST_ENTRY_CNT_2200;
2112                 rsp_length = RESPONSE_ENTRY_CNT_2100;
2113                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2114                 ha->gid_list_info_size = 4;
2115                 ha->flash_conf_off = ~0;
2116                 ha->flash_data_off = ~0;
2117                 ha->nvram_conf_off = ~0;
2118                 ha->nvram_data_off = ~0;
2119                 ha->isp_ops = &qla2100_isp_ops;
2120         } else if (IS_QLA23XX(ha)) {
2121                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2122                 req_length = REQUEST_ENTRY_CNT_2200;
2123                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2124                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2125                 ha->gid_list_info_size = 6;
2126                 if (IS_QLA2322(ha) || IS_QLA6322(ha))
2127                         ha->optrom_size = OPTROM_SIZE_2322;
2128                 ha->flash_conf_off = ~0;
2129                 ha->flash_data_off = ~0;
2130                 ha->nvram_conf_off = ~0;
2131                 ha->nvram_data_off = ~0;
2132                 ha->isp_ops = &qla2300_isp_ops;
2133         } else if (IS_QLA24XX_TYPE(ha)) {
2134                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2135                 req_length = REQUEST_ENTRY_CNT_24XX;
2136                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2137                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2138                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2139                 ha->gid_list_info_size = 8;
2140                 ha->optrom_size = OPTROM_SIZE_24XX;
2141                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
2142                 ha->isp_ops = &qla24xx_isp_ops;
2143                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2144                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2145                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2146                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2147         } else if (IS_QLA25XX(ha)) {
2148                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2149                 req_length = REQUEST_ENTRY_CNT_24XX;
2150                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2151                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2152                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2153                 ha->gid_list_info_size = 8;
2154                 ha->optrom_size = OPTROM_SIZE_25XX;
2155                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2156                 ha->isp_ops = &qla25xx_isp_ops;
2157                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2158                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2159                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2160                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2161         } else if (IS_QLA81XX(ha)) {
2162                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2163                 req_length = REQUEST_ENTRY_CNT_24XX;
2164                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2165                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2166                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2167                 ha->gid_list_info_size = 8;
2168                 ha->optrom_size = OPTROM_SIZE_81XX;
2169                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2170                 ha->isp_ops = &qla81xx_isp_ops;
2171                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2172                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2173                 ha->nvram_conf_off = ~0;
2174                 ha->nvram_data_off = ~0;
2175         } else if (IS_QLA82XX(ha)) {
2176                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2177                 req_length = REQUEST_ENTRY_CNT_82XX;
2178                 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2179                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2180                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2181                 ha->gid_list_info_size = 8;
2182                 ha->optrom_size = OPTROM_SIZE_82XX;
2183                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2184                 ha->isp_ops = &qla82xx_isp_ops;
2185                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2186                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2187                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2188                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2189         }
2190         ql_dbg_pci(ql_dbg_init, pdev, 0x001e,
2191             "mbx_count=%d, req_length=%d, "
2192             "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, "
2193             "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, .\n",
2194             ha->mbx_count, req_length, rsp_length, ha->max_loop_id,
2195             ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size,
2196             ha->nvram_npiv_size);
2197         ql_dbg_pci(ql_dbg_init, pdev, 0x001f,
2198             "isp_ops=%p, flash_conf_off=%d, "
2199             "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n",
2200             ha->isp_ops, ha->flash_conf_off, ha->flash_data_off,
2201             ha->nvram_conf_off, ha->nvram_data_off);
2202         mutex_init(&ha->vport_lock);
2203         init_completion(&ha->mbx_cmd_comp);
2204         complete(&ha->mbx_cmd_comp);
2205         init_completion(&ha->mbx_intr_comp);
2206         init_completion(&ha->dcbx_comp);
2207
2208         set_bit(0, (unsigned long *) ha->vp_idx_map);
2209
2210         qla2x00_config_dma_addressing(ha);
2211         ql_dbg_pci(ql_dbg_init, pdev, 0x0020,
2212             "64 Bit addressing is %s.\n",
2213             ha->flags.enable_64bit_addressing ? "enable" :
2214             "disable");
2215         ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
2216         if (!ret) {
2217                 ql_log_pci(ql_log_fatal, pdev, 0x0031,
2218                     "Failed to allocate memory for adapter, aborting.\n");
2219
2220                 goto probe_hw_failed;
2221         }
2222
2223         req->max_q_depth = MAX_Q_DEPTH;
2224         if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
2225                 req->max_q_depth = ql2xmaxqdepth;
2226
2227
2228         base_vha = qla2x00_create_host(sht, ha);
2229         if (!base_vha) {
2230                 ret = -ENOMEM;
2231                 qla2x00_mem_free(ha);
2232                 qla2x00_free_req_que(ha, req);
2233                 qla2x00_free_rsp_que(ha, rsp);
2234                 goto probe_hw_failed;
2235         }
2236
2237         pci_set_drvdata(pdev, base_vha);
2238
2239         host = base_vha->host;
2240         base_vha->req = req;
2241         host->can_queue = req->length + 128;
2242         if (IS_QLA2XXX_MIDTYPE(ha))
2243                 base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx;
2244         else
2245                 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
2246                                                 base_vha->vp_idx;
2247
2248         /* Set the SG table size based on ISP type */
2249         if (!IS_FWI2_CAPABLE(ha)) {
2250                 if (IS_QLA2100(ha))
2251                         host->sg_tablesize = 32;
2252         } else {
2253                 if (!IS_QLA82XX(ha))
2254                         host->sg_tablesize = QLA_SG_ALL;
2255         }
2256         ql_dbg(ql_dbg_init, base_vha, 0x0032,
2257             "can_queue=%d, req=%p, "
2258             "mgmt_svr_loop_id=%d, sg_tablesize=%d.\n",
2259             host->can_queue, base_vha->req,
2260             base_vha->mgmt_svr_loop_id, host->sg_tablesize);
2261         host->max_id = max_id;
2262         host->this_id = 255;
2263         host->cmd_per_lun = 3;
2264         host->unique_id = host->host_no;
2265         if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
2266                 host->max_cmd_len = 32;
2267         else
2268                 host->max_cmd_len = MAX_CMDSZ;
2269         host->max_channel = MAX_BUSES - 1;
2270         host->max_lun = ql2xmaxlun;
2271         host->transportt = qla2xxx_transport_template;
2272         sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
2273
2274         ql_dbg(ql_dbg_init, base_vha, 0x0033,
2275             "max_id=%d this_id=%d "
2276             "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d "
2277             "max_lun=%d transportt=%p, vendor_id=%d.\n", host->max_id,
2278             host->this_id, host->cmd_per_lun, host->unique_id,
2279             host->max_cmd_len, host->max_channel, host->max_lun,
2280             host->transportt, sht->vendor_id);
2281
2282         /* Set up the irqs */
2283         ret = qla2x00_request_irqs(ha, rsp);
2284         if (ret)
2285                 goto probe_init_failed;
2286
2287         pci_save_state(pdev);
2288
2289         /* Alloc arrays of request and response ring ptrs */
2290 que_init:
2291         if (!qla2x00_alloc_queues(ha)) {
2292                 ql_log(ql_log_fatal, base_vha, 0x003d,
2293                     "Failed to allocate memory for queue pointers.. aborting.\n");
2294                 goto probe_init_failed;
2295         }
2296
2297         ha->rsp_q_map[0] = rsp;
2298         ha->req_q_map[0] = req;
2299         rsp->req = req;
2300         req->rsp = rsp;
2301         set_bit(0, ha->req_qid_map);
2302         set_bit(0, ha->rsp_qid_map);
2303         /* FWI2-capable only. */
2304         req->req_q_in = &ha->iobase->isp24.req_q_in;
2305         req->req_q_out = &ha->iobase->isp24.req_q_out;
2306         rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
2307         rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
2308         if (ha->mqenable) {
2309                 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
2310                 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
2311                 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
2312                 rsp->rsp_q_out =  &ha->mqiobase->isp25mq.rsp_q_out;
2313         }
2314
2315         if (IS_QLA82XX(ha)) {
2316                 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
2317                 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
2318                 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
2319         }
2320
2321         ql_dbg(ql_dbg_multiq, base_vha, 0xc009,
2322             "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
2323             ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
2324         ql_dbg(ql_dbg_multiq, base_vha, 0xc00a,
2325             "req->req_q_in=%p req->req_q_out=%p "
2326             "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
2327             req->req_q_in, req->req_q_out,
2328             rsp->rsp_q_in, rsp->rsp_q_out);
2329         ql_dbg(ql_dbg_init, base_vha, 0x003e,
2330             "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
2331             ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
2332         ql_dbg(ql_dbg_init, base_vha, 0x003f,
2333             "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
2334             req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
2335
2336         if (qla2x00_initialize_adapter(base_vha)) {
2337                 ql_log(ql_log_fatal, base_vha, 0x00d6,
2338                     "Failed to initialize adapter - Adapter flags %x.\n",
2339                     base_vha->device_flags);
2340
2341                 if (IS_QLA82XX(ha)) {
2342                         qla82xx_idc_lock(ha);
2343                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
2344                                 QLA82XX_DEV_FAILED);
2345                         qla82xx_idc_unlock(ha);
2346                         ql_log(ql_log_fatal, base_vha, 0x00d7,
2347                             "HW State: FAILED.\n");
2348                 }
2349
2350                 ret = -ENODEV;
2351                 goto probe_failed;
2352         }
2353
2354         if (ha->mqenable) {
2355                 if (qla25xx_setup_mode(base_vha)) {
2356                         ql_log(ql_log_warn, base_vha, 0x00ec,
2357                             "Failed to create queues, falling back to single queue mode.\n");
2358                         goto que_init;
2359                 }
2360         }
2361
2362         if (ha->flags.running_gold_fw)
2363                 goto skip_dpc;
2364
2365         /*
2366          * Startup the kernel thread for this host adapter
2367          */
2368         ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
2369             "%s_dpc", base_vha->host_str);
2370         if (IS_ERR(ha->dpc_thread)) {
2371                 ql_log(ql_log_fatal, base_vha, 0x00ed,
2372                     "Failed to start DPC thread.\n");
2373                 ret = PTR_ERR(ha->dpc_thread);
2374                 goto probe_failed;
2375         }
2376         ql_dbg(ql_dbg_init, base_vha, 0x00ee,
2377             "DPC thread started successfully.\n");
2378
2379 skip_dpc:
2380         list_add_tail(&base_vha->list, &ha->vp_list);
2381         base_vha->host->irq = ha->pdev->irq;
2382
2383         /* Initialized the timer */
2384         qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL);
2385         ql_dbg(ql_dbg_init, base_vha, 0x00ef,
2386             "Started qla2x00_timer with "
2387             "interval=%d.\n", WATCH_INTERVAL);
2388         ql_dbg(ql_dbg_init, base_vha, 0x00f0,
2389             "Detected hba at address=%p.\n",
2390             ha);
2391
2392         if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
2393                 if (ha->fw_attributes & BIT_4) {
2394                         int prot = 0;
2395                         base_vha->flags.difdix_supported = 1;
2396                         ql_dbg(ql_dbg_init, base_vha, 0x00f1,
2397                             "Registering for DIF/DIX type 1 and 3 protection.\n");
2398                         if (ql2xenabledif == 1)
2399                                 prot = SHOST_DIX_TYPE0_PROTECTION;
2400                         scsi_host_set_prot(host,
2401                             prot | SHOST_DIF_TYPE1_PROTECTION
2402                             | SHOST_DIF_TYPE2_PROTECTION
2403                             | SHOST_DIF_TYPE3_PROTECTION
2404                             | SHOST_DIX_TYPE1_PROTECTION
2405                             | SHOST_DIX_TYPE2_PROTECTION
2406                             | SHOST_DIX_TYPE3_PROTECTION);
2407                         scsi_host_set_guard(host, SHOST_DIX_GUARD_CRC);
2408                 } else
2409                         base_vha->flags.difdix_supported = 0;
2410         }
2411
2412         ha->isp_ops->enable_intrs(ha);
2413
2414         ret = scsi_add_host(host, &pdev->dev);
2415         if (ret)
2416                 goto probe_failed;
2417
2418         base_vha->flags.init_done = 1;
2419         base_vha->flags.online = 1;
2420
2421         ql_dbg(ql_dbg_init, base_vha, 0x00f2,
2422             "Init done and hba is online.\n");
2423
2424         scsi_scan_host(host);
2425
2426         qla2x00_alloc_sysfs_attr(base_vha);
2427
2428         qla2x00_init_host_attr(base_vha);
2429
2430         qla2x00_dfs_setup(base_vha);
2431
2432         ql_log(ql_log_info, base_vha, 0x00fa,
2433             "QLogic Fibre Channed HBA Driver: %s.\n",
2434             qla2x00_version_str);
2435         ql_log(ql_log_info, base_vha, 0x00fb,
2436             "QLogic %s - %s.\n",
2437             ha->model_number, ha->model_desc ? ha->model_desc : "");
2438         ql_log(ql_log_info, base_vha, 0x00fc,
2439             "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n",
2440             pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info),
2441             pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-',
2442             base_vha->host_no,
2443             ha->isp_ops->fw_version_str(base_vha, fw_str));
2444
2445         return 0;
2446
2447 probe_init_failed:
2448         qla2x00_free_req_que(ha, req);
2449         qla2x00_free_rsp_que(ha, rsp);
2450         ha->max_req_queues = ha->max_rsp_queues = 0;
2451
2452 probe_failed:
2453         if (base_vha->timer_active)
2454                 qla2x00_stop_timer(base_vha);
2455         base_vha->flags.online = 0;
2456         if (ha->dpc_thread) {
2457                 struct task_struct *t = ha->dpc_thread;
2458
2459                 ha->dpc_thread = NULL;
2460                 kthread_stop(t);
2461         }
2462
2463         qla2x00_free_device(base_vha);
2464
2465         scsi_host_put(base_vha->host);
2466
2467 probe_hw_failed:
2468         if (IS_QLA82XX(ha)) {
2469                 qla82xx_idc_lock(ha);
2470                 qla82xx_clear_drv_active(ha);
2471                 qla82xx_idc_unlock(ha);
2472                 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2473                 if (!ql2xdbwr)
2474                         iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2475         } else {
2476                 if (ha->iobase)
2477                         iounmap(ha->iobase);
2478         }
2479         pci_release_selected_regions(ha->pdev, ha->bars);
2480         kfree(ha);
2481         ha = NULL;
2482
2483 probe_out:
2484         pci_disable_device(pdev);
2485         return ret;
2486 }
2487
2488 static void
2489 qla2x00_shutdown(struct pci_dev *pdev)
2490 {
2491         scsi_qla_host_t *vha;
2492         struct qla_hw_data  *ha;
2493
2494         vha = pci_get_drvdata(pdev);
2495         ha = vha->hw;
2496
2497         /* Turn-off FCE trace */
2498         if (ha->flags.fce_enabled) {
2499                 qla2x00_disable_fce_trace(vha, NULL, NULL);
2500                 ha->flags.fce_enabled = 0;
2501         }
2502
2503         /* Turn-off EFT trace */
2504         if (ha->eft)
2505                 qla2x00_disable_eft_trace(vha);
2506
2507         /* Stop currently executing firmware. */
2508         qla2x00_try_to_stop_firmware(vha);
2509
2510         /* Turn adapter off line */
2511         vha->flags.online = 0;
2512
2513         /* turn-off interrupts on the card */
2514         if (ha->interrupts_on) {
2515                 vha->flags.init_done = 0;
2516                 ha->isp_ops->disable_intrs(ha);
2517         }
2518
2519         qla2x00_free_irqs(vha);
2520
2521         qla2x00_free_fw_dump(ha);
2522 }
2523
2524 static void
2525 qla2x00_remove_one(struct pci_dev *pdev)
2526 {
2527         scsi_qla_host_t *base_vha, *vha;
2528         struct qla_hw_data  *ha;
2529         unsigned long flags;
2530
2531         base_vha = pci_get_drvdata(pdev);
2532         ha = base_vha->hw;
2533
2534         mutex_lock(&ha->vport_lock);
2535         while (ha->cur_vport_count) {
2536                 struct Scsi_Host *scsi_host;
2537
2538                 spin_lock_irqsave(&ha->vport_slock, flags);
2539
2540                 BUG_ON(base_vha->list.next == &ha->vp_list);
2541                 /* This assumes first entry in ha->vp_list is always base vha */
2542                 vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list);
2543                 scsi_host = scsi_host_get(vha->host);
2544
2545                 spin_unlock_irqrestore(&ha->vport_slock, flags);
2546                 mutex_unlock(&ha->vport_lock);
2547
2548                 fc_vport_terminate(vha->fc_vport);
2549                 scsi_host_put(vha->host);
2550
2551                 mutex_lock(&ha->vport_lock);
2552         }
2553         mutex_unlock(&ha->vport_lock);
2554
2555         set_bit(UNLOADING, &base_vha->dpc_flags);
2556
2557         qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
2558
2559         qla2x00_dfs_remove(base_vha);
2560
2561         qla84xx_put_chip(base_vha);
2562
2563         /* Disable timer */
2564         if (base_vha->timer_active)
2565                 qla2x00_stop_timer(base_vha);
2566
2567         base_vha->flags.online = 0;
2568
2569         /* Flush the work queue and remove it */
2570         if (ha->wq) {
2571                 flush_workqueue(ha->wq);
2572                 destroy_workqueue(ha->wq);
2573                 ha->wq = NULL;
2574         }
2575
2576         /* Kill the kernel thread for this host */
2577         if (ha->dpc_thread) {
2578                 struct task_struct *t = ha->dpc_thread;
2579
2580                 /*
2581                  * qla2xxx_wake_dpc checks for ->dpc_thread
2582                  * so we need to zero it out.
2583                  */
2584                 ha->dpc_thread = NULL;
2585                 kthread_stop(t);
2586         }
2587
2588         qla2x00_free_sysfs_attr(base_vha);
2589
2590         fc_remove_host(base_vha->host);
2591
2592         scsi_remove_host(base_vha->host);
2593
2594         qla2x00_free_device(base_vha);
2595
2596         scsi_host_put(base_vha->host);
2597
2598         if (IS_QLA82XX(ha)) {
2599                 qla82xx_idc_lock(ha);
2600                 qla82xx_clear_drv_active(ha);
2601                 qla82xx_idc_unlock(ha);
2602
2603                 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2604                 if (!ql2xdbwr)
2605                         iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2606         } else {
2607                 if (ha->iobase)
2608                         iounmap(ha->iobase);
2609
2610                 if (ha->mqiobase)
2611                         iounmap(ha->mqiobase);
2612         }
2613
2614         pci_release_selected_regions(ha->pdev, ha->bars);
2615         kfree(ha);
2616         ha = NULL;
2617
2618         pci_disable_pcie_error_reporting(pdev);
2619
2620         pci_disable_device(pdev);
2621         pci_set_drvdata(pdev, NULL);
2622 }
2623
2624 static void
2625 qla2x00_free_device(scsi_qla_host_t *vha)
2626 {
2627         struct qla_hw_data *ha = vha->hw;
2628
2629         qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
2630
2631         /* Disable timer */
2632         if (vha->timer_active)
2633                 qla2x00_stop_timer(vha);
2634
2635         /* Kill the kernel thread for this host */
2636         if (ha->dpc_thread) {
2637                 struct task_struct *t = ha->dpc_thread;
2638
2639                 /*
2640                  * qla2xxx_wake_dpc checks for ->dpc_thread
2641                  * so we need to zero it out.
2642                  */
2643                 ha->dpc_thread = NULL;
2644                 kthread_stop(t);
2645         }
2646
2647         qla25xx_delete_queues(vha);
2648
2649         if (ha->flags.fce_enabled)
2650                 qla2x00_disable_fce_trace(vha, NULL, NULL);
2651
2652         if (ha->eft)
2653                 qla2x00_disable_eft_trace(vha);
2654
2655         /* Stop currently executing firmware. */
2656         qla2x00_try_to_stop_firmware(vha);
2657
2658         vha->flags.online = 0;
2659
2660         /* turn-off interrupts on the card */
2661         if (ha->interrupts_on) {
2662                 vha->flags.init_done = 0;
2663                 ha->isp_ops->disable_intrs(ha);
2664         }
2665
2666         qla2x00_free_irqs(vha);
2667
2668         qla2x00_free_fcports(vha);
2669
2670         qla2x00_mem_free(ha);
2671
2672         qla2x00_free_queues(ha);
2673 }
2674
2675 void qla2x00_free_fcports(struct scsi_qla_host *vha)
2676 {
2677         fc_port_t *fcport, *tfcport;
2678
2679         list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
2680                 list_del(&fcport->list);
2681                 kfree(fcport);
2682                 fcport = NULL;
2683         }
2684 }
2685
2686 static inline void
2687 qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
2688     int defer)
2689 {
2690         struct fc_rport *rport;
2691         scsi_qla_host_t *base_vha;
2692         unsigned long flags;
2693
2694         if (!fcport->rport)
2695                 return;
2696
2697         rport = fcport->rport;
2698         if (defer) {
2699                 base_vha = pci_get_drvdata(vha->hw->pdev);
2700                 spin_lock_irqsave(vha->host->host_lock, flags);
2701                 fcport->drport = rport;
2702                 spin_unlock_irqrestore(vha->host->host_lock, flags);
2703                 set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
2704                 qla2xxx_wake_dpc(base_vha);
2705         } else
2706                 fc_remote_port_delete(rport);
2707 }
2708
2709 /*
2710  * qla2x00_mark_device_lost Updates fcport state when device goes offline.
2711  *
2712  * Input: ha = adapter block pointer.  fcport = port structure pointer.
2713  *
2714  * Return: None.
2715  *
2716  * Context:
2717  */
2718 void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
2719     int do_login, int defer)
2720 {
2721         if (atomic_read(&fcport->state) == FCS_ONLINE &&
2722             vha->vp_idx == fcport->vp_idx) {
2723                 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
2724                 qla2x00_schedule_rport_del(vha, fcport, defer);
2725         }
2726         /*
2727          * We may need to retry the login, so don't change the state of the
2728          * port but do the retries.
2729          */
2730         if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
2731                 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
2732
2733         if (!do_login)
2734                 return;
2735
2736         if (fcport->login_retry == 0) {
2737                 fcport->login_retry = vha->hw->login_retry_count;
2738                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
2739
2740                 ql_dbg(ql_dbg_disc, vha, 0x2067,
2741                     "Port login retry "
2742                     "%02x%02x%02x%02x%02x%02x%02x%02x, "
2743                     "id = 0x%04x retry cnt=%d.\n",
2744                     fcport->port_name[0], fcport->port_name[1],
2745                     fcport->port_name[2], fcport->port_name[3],
2746                     fcport->port_name[4], fcport->port_name[5],
2747                     fcport->port_name[6], fcport->port_name[7],
2748                     fcport->loop_id, fcport->login_retry);
2749         }
2750 }
2751
2752 /*
2753  * qla2x00_mark_all_devices_lost
2754  *      Updates fcport state when device goes offline.
2755  *
2756  * Input:
2757  *      ha = adapter block pointer.
2758  *      fcport = port structure pointer.
2759  *
2760  * Return:
2761  *      None.
2762  *
2763  * Context:
2764  */
2765 void
2766 qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
2767 {
2768         fc_port_t *fcport;
2769
2770         list_for_each_entry(fcport, &vha->vp_fcports, list) {
2771                 if (vha->vp_idx != 0 && vha->vp_idx != fcport->vp_idx)
2772                         continue;
2773
2774                 /*
2775                  * No point in marking the device as lost, if the device is
2776                  * already DEAD.
2777                  */
2778                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
2779                         continue;
2780                 if (atomic_read(&fcport->state) == FCS_ONLINE) {
2781                         qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
2782                         if (defer)
2783                                 qla2x00_schedule_rport_del(vha, fcport, defer);
2784                         else if (vha->vp_idx == fcport->vp_idx)
2785                                 qla2x00_schedule_rport_del(vha, fcport, defer);
2786                 }
2787         }
2788 }
2789
2790 /*
2791 * qla2x00_mem_alloc
2792 *      Allocates adapter memory.
2793 *
2794 * Returns:
2795 *      0  = success.
2796 *      !0  = failure.
2797 */
2798 static int
2799 qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
2800         struct req_que **req, struct rsp_que **rsp)
2801 {
2802         char    name[16];
2803
2804         ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
2805                 &ha->init_cb_dma, GFP_KERNEL);
2806         if (!ha->init_cb)
2807                 goto fail;
2808
2809         ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2810                 &ha->gid_list_dma, GFP_KERNEL);
2811         if (!ha->gid_list)
2812                 goto fail_free_init_cb;
2813
2814         ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2815         if (!ha->srb_mempool)
2816                 goto fail_free_gid_list;
2817
2818         if (IS_QLA82XX(ha)) {
2819                 /* Allocate cache for CT6 Ctx. */
2820                 if (!ctx_cachep) {
2821                         ctx_cachep = kmem_cache_create("qla2xxx_ctx",
2822                                 sizeof(struct ct6_dsd), 0,
2823                                 SLAB_HWCACHE_ALIGN, NULL);
2824                         if (!ctx_cachep)
2825                                 goto fail_free_gid_list;
2826                 }
2827                 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
2828                         ctx_cachep);
2829                 if (!ha->ctx_mempool)
2830                         goto fail_free_srb_mempool;
2831                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021,
2832                     "ctx_cachep=%p ctx_mempool=%p.\n",
2833                     ctx_cachep, ha->ctx_mempool);
2834         }
2835
2836         /* Get memory for cached NVRAM */
2837         ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2838         if (!ha->nvram)
2839                 goto fail_free_ctx_mempool;
2840
2841         snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
2842                 ha->pdev->device);
2843         ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2844                 DMA_POOL_SIZE, 8, 0);
2845         if (!ha->s_dma_pool)
2846                 goto fail_free_nvram;
2847
2848         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022,
2849             "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n",
2850             ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool);
2851
2852         if (IS_QLA82XX(ha) || ql2xenabledif) {
2853                 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2854                         DSD_LIST_DMA_POOL_SIZE, 8, 0);
2855                 if (!ha->dl_dma_pool) {
2856                         ql_log_pci(ql_log_fatal, ha->pdev, 0x0023,
2857                             "Failed to allocate memory for dl_dma_pool.\n");
2858                         goto fail_s_dma_pool;
2859                 }
2860
2861                 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2862                         FCP_CMND_DMA_POOL_SIZE, 8, 0);
2863                 if (!ha->fcp_cmnd_dma_pool) {
2864                         ql_log_pci(ql_log_fatal, ha->pdev, 0x0024,
2865                             "Failed to allocate memory for fcp_cmnd_dma_pool.\n");
2866                         goto fail_dl_dma_pool;
2867                 }
2868                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025,
2869                     "dl_dma_pool=%p fcp_cmnd_dma_pool=%p.\n",
2870                     ha->dl_dma_pool, ha->fcp_cmnd_dma_pool);
2871         }
2872
2873         /* Allocate memory for SNS commands */
2874         if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2875         /* Get consistent memory allocated for SNS commands */
2876                 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
2877                 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
2878                 if (!ha->sns_cmd)
2879                         goto fail_dma_pool;
2880                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026,
2881                     "sns_cmd.\n", ha->sns_cmd);
2882         } else {
2883         /* Get consistent memory allocated for MS IOCB */
2884                 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2885                         &ha->ms_iocb_dma);
2886                 if (!ha->ms_iocb)
2887                         goto fail_dma_pool;
2888         /* Get consistent memory allocated for CT SNS commands */
2889                 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
2890                         sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
2891                 if (!ha->ct_sns)
2892                         goto fail_free_ms_iocb;
2893                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027,
2894                     "ms_iocb=%p ct_sns=%p.\n",
2895                     ha->ms_iocb, ha->ct_sns);
2896         }
2897
2898         /* Allocate memory for request ring */
2899         *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
2900         if (!*req) {
2901                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0028,
2902                     "Failed to allocate memory for req.\n");
2903                 goto fail_req;
2904         }
2905         (*req)->length = req_len;
2906         (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
2907                 ((*req)->length + 1) * sizeof(request_t),
2908                 &(*req)->dma, GFP_KERNEL);
2909         if (!(*req)->ring) {
2910                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0029,
2911                     "Failed to allocate memory for req_ring.\n");
2912                 goto fail_req_ring;
2913         }
2914         /* Allocate memory for response ring */
2915         *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
2916         if (!*rsp) {
2917                 ql_log_pci(ql_log_fatal, ha->pdev, 0x002a,
2918                     "Failed to allocate memory for rsp.\n");
2919                 goto fail_rsp;
2920         }
2921         (*rsp)->hw = ha;
2922         (*rsp)->length = rsp_len;
2923         (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
2924                 ((*rsp)->length + 1) * sizeof(response_t),
2925                 &(*rsp)->dma, GFP_KERNEL);
2926         if (!(*rsp)->ring) {
2927                 ql_log_pci(ql_log_fatal, ha->pdev, 0x002b,
2928                     "Failed to allocate memory for rsp_ring.\n");
2929                 goto fail_rsp_ring;
2930         }
2931         (*req)->rsp = *rsp;
2932         (*rsp)->req = *req;
2933         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c,
2934             "req=%p req->length=%d req->ring=%p rsp=%p "
2935             "rsp->length=%d rsp->ring=%p.\n",
2936             *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length,
2937             (*rsp)->ring);
2938         /* Allocate memory for NVRAM data for vports */
2939         if (ha->nvram_npiv_size) {
2940                 ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) *
2941                     ha->nvram_npiv_size, GFP_KERNEL);
2942                 if (!ha->npiv_info) {
2943                         ql_log_pci(ql_log_fatal, ha->pdev, 0x002d,
2944                             "Failed to allocate memory for npiv_info.\n");
2945                         goto fail_npiv_info;
2946                 }
2947         } else
2948                 ha->npiv_info = NULL;
2949
2950         /* Get consistent memory allocated for EX-INIT-CB. */
2951         if (IS_QLA8XXX_TYPE(ha)) {
2952                 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2953                     &ha->ex_init_cb_dma);
2954                 if (!ha->ex_init_cb)
2955                         goto fail_ex_init_cb;
2956                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e,
2957                     "ex_init_cb=%p.\n", ha->ex_init_cb);
2958         }
2959
2960         INIT_LIST_HEAD(&ha->gbl_dsd_list);
2961
2962         /* Get consistent memory allocated for Async Port-Database. */
2963         if (!IS_FWI2_CAPABLE(ha)) {
2964                 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2965                         &ha->async_pd_dma);
2966                 if (!ha->async_pd)
2967                         goto fail_async_pd;
2968                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f,
2969                     "async_pd=%p.\n", ha->async_pd);
2970         }
2971
2972         INIT_LIST_HEAD(&ha->vp_list);
2973         return 1;
2974
2975 fail_async_pd:
2976         dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
2977 fail_ex_init_cb:
2978         kfree(ha->npiv_info);
2979 fail_npiv_info:
2980         dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
2981                 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
2982         (*rsp)->ring = NULL;
2983         (*rsp)->dma = 0;
2984 fail_rsp_ring:
2985         kfree(*rsp);
2986 fail_rsp:
2987         dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
2988                 sizeof(request_t), (*req)->ring, (*req)->dma);
2989         (*req)->ring = NULL;
2990         (*req)->dma = 0;
2991 fail_req_ring:
2992         kfree(*req);
2993 fail_req:
2994         dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2995                 ha->ct_sns, ha->ct_sns_dma);
2996         ha->ct_sns = NULL;
2997         ha->ct_sns_dma = 0;
2998 fail_free_ms_iocb:
2999         dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
3000         ha->ms_iocb = NULL;
3001         ha->ms_iocb_dma = 0;
3002 fail_dma_pool:
3003         if (IS_QLA82XX(ha) || ql2xenabledif) {
3004                 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
3005                 ha->fcp_cmnd_dma_pool = NULL;
3006         }
3007 fail_dl_dma_pool:
3008         if (IS_QLA82XX(ha) || ql2xenabledif) {
3009                 dma_pool_destroy(ha->dl_dma_pool);
3010                 ha->dl_dma_pool = NULL;
3011         }
3012 fail_s_dma_pool:
3013         dma_pool_destroy(ha->s_dma_pool);
3014         ha->s_dma_pool = NULL;
3015 fail_free_nvram:
3016         kfree(ha->nvram);
3017         ha->nvram = NULL;
3018 fail_free_ctx_mempool:
3019         mempool_destroy(ha->ctx_mempool);
3020         ha->ctx_mempool = NULL;
3021 fail_free_srb_mempool:
3022         mempool_destroy(ha->srb_mempool);
3023         ha->srb_mempool = NULL;
3024 fail_free_gid_list:
3025         dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
3026         ha->gid_list_dma);
3027         ha->gid_list = NULL;
3028         ha->gid_list_dma = 0;
3029 fail_free_init_cb:
3030         dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
3031         ha->init_cb_dma);
3032         ha->init_cb = NULL;
3033         ha->init_cb_dma = 0;
3034 fail:
3035         ql_log(ql_log_fatal, NULL, 0x0030,
3036             "Memory allocation failure.\n");
3037         return -ENOMEM;
3038 }
3039
3040 /*
3041 * qla2x00_free_fw_dump
3042 *       Frees fw dump stuff.
3043 *
3044 * Input:
3045 *       ha = adapter block pointer.
3046 */
3047 static void
3048 qla2x00_free_fw_dump(struct qla_hw_data *ha)
3049 {
3050         if (ha->fce)
3051                 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
3052                     ha->fce_dma);
3053
3054         if (ha->fw_dump) {
3055                 if (ha->eft)
3056                         dma_free_coherent(&ha->pdev->dev,
3057                             ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
3058                 vfree(ha->fw_dump);
3059         }
3060         ha->fce = NULL;
3061         ha->fce_dma = 0;
3062         ha->eft = NULL;
3063         ha->eft_dma = 0;
3064         ha->fw_dump = NULL;
3065         ha->fw_dumped = 0;
3066         ha->fw_dump_reading = 0;
3067 }
3068
3069 /*
3070 * qla2x00_mem_free
3071 *      Frees all adapter allocated memory.
3072 *
3073 * Input:
3074 *      ha = adapter block pointer.
3075 */
3076 static void
3077 qla2x00_mem_free(struct qla_hw_data *ha)
3078 {
3079         qla2x00_free_fw_dump(ha);
3080
3081         if (ha->srb_mempool)
3082                 mempool_destroy(ha->srb_mempool);
3083
3084         if (ha->dcbx_tlv)
3085                 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
3086                     ha->dcbx_tlv, ha->dcbx_tlv_dma);
3087
3088         if (ha->xgmac_data)
3089                 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
3090                     ha->xgmac_data, ha->xgmac_data_dma);
3091
3092         if (ha->sns_cmd)
3093                 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
3094                 ha->sns_cmd, ha->sns_cmd_dma);
3095
3096         if (ha->ct_sns)
3097                 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
3098                 ha->ct_sns, ha->ct_sns_dma);
3099
3100         if (ha->sfp_data)
3101                 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
3102
3103         if (ha->edc_data)
3104                 dma_pool_free(ha->s_dma_pool, ha->edc_data, ha->edc_data_dma);
3105
3106         if (ha->ms_iocb)
3107                 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
3108
3109         if (ha->ex_init_cb)
3110                 dma_pool_free(ha->s_dma_pool,
3111                         ha->ex_init_cb, ha->ex_init_cb_dma);
3112
3113         if (ha->async_pd)
3114                 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
3115
3116         if (ha->s_dma_pool)
3117                 dma_pool_destroy(ha->s_dma_pool);
3118
3119         if (ha->gid_list)
3120                 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
3121                 ha->gid_list_dma);
3122
3123         if (IS_QLA82XX(ha)) {
3124                 if (!list_empty(&ha->gbl_dsd_list)) {
3125                         struct dsd_dma *dsd_ptr, *tdsd_ptr;
3126
3127                         /* clean up allocated prev pool */
3128                         list_for_each_entry_safe(dsd_ptr,
3129                                 tdsd_ptr, &ha->gbl_dsd_list, list) {
3130                                 dma_pool_free(ha->dl_dma_pool,
3131                                 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma);
3132                                 list_del(&dsd_ptr->list);
3133                                 kfree(dsd_ptr);
3134                         }
3135                 }
3136         }
3137
3138         if (ha->dl_dma_pool)
3139                 dma_pool_destroy(ha->dl_dma_pool);
3140
3141         if (ha->fcp_cmnd_dma_pool)
3142                 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
3143
3144         if (ha->ctx_mempool)
3145                 mempool_destroy(ha->ctx_mempool);
3146
3147         if (ha->init_cb)
3148                 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
3149                         ha->init_cb, ha->init_cb_dma);
3150         vfree(ha->optrom_buffer);
3151         kfree(ha->nvram);
3152         kfree(ha->npiv_info);
3153
3154         ha->srb_mempool = NULL;
3155         ha->ctx_mempool = NULL;
3156         ha->sns_cmd = NULL;
3157         ha->sns_cmd_dma = 0;
3158         ha->ct_sns = NULL;
3159         ha->ct_sns_dma = 0;
3160         ha->ms_iocb = NULL;
3161         ha->ms_iocb_dma = 0;
3162         ha->init_cb = NULL;
3163         ha->init_cb_dma = 0;
3164         ha->ex_init_cb = NULL;
3165         ha->ex_init_cb_dma = 0;
3166         ha->async_pd = NULL;
3167         ha->async_pd_dma = 0;
3168
3169         ha->s_dma_pool = NULL;
3170         ha->dl_dma_pool = NULL;
3171         ha->fcp_cmnd_dma_pool = NULL;
3172
3173         ha->gid_list = NULL;
3174         ha->gid_list_dma = 0;
3175 }
3176
3177 struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
3178                                                 struct qla_hw_data *ha)
3179 {
3180         struct Scsi_Host *host;
3181         struct scsi_qla_host *vha = NULL;
3182
3183         host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
3184         if (host == NULL) {
3185                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0107,
3186                     "Failed to allocate host from the scsi layer, aborting.\n");
3187                 goto fail;
3188         }
3189
3190         /* Clear our data area */
3191         vha = shost_priv(host);
3192         memset(vha, 0, sizeof(scsi_qla_host_t));
3193
3194         vha->host = host;
3195         vha->host_no = host->host_no;
3196         vha->hw = ha;
3197
3198         INIT_LIST_HEAD(&vha->vp_fcports);
3199         INIT_LIST_HEAD(&vha->work_list);
3200         INIT_LIST_HEAD(&vha->list);
3201
3202         spin_lock_init(&vha->work_lock);
3203
3204         sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
3205         ql_dbg(ql_dbg_init, vha, 0x0041,
3206             "Allocated the host=%p hw=%p vha=%p dev_name=%s",
3207             vha->host, vha->hw, vha,
3208             dev_name(&(ha->pdev->dev)));
3209
3210         return vha;
3211
3212 fail:
3213         return vha;
3214 }
3215
3216 static struct qla_work_evt *
3217 qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
3218 {
3219         struct qla_work_evt *e;
3220         uint8_t bail;
3221
3222         QLA_VHA_MARK_BUSY(vha, bail);
3223         if (bail)
3224                 return NULL;
3225
3226         e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
3227         if (!e) {
3228                 QLA_VHA_MARK_NOT_BUSY(vha);
3229                 return NULL;
3230         }
3231
3232         INIT_LIST_HEAD(&e->list);
3233         e->type = type;
3234         e->flags = QLA_EVT_FLAG_FREE;
3235         return e;
3236 }
3237
3238 static int
3239 qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
3240 {
3241         unsigned long flags;
3242
3243         spin_lock_irqsave(&vha->work_lock, flags);
3244         list_add_tail(&e->list, &vha->work_list);
3245         spin_unlock_irqrestore(&vha->work_lock, flags);
3246         qla2xxx_wake_dpc(vha);
3247
3248         return QLA_SUCCESS;
3249 }
3250
3251 int
3252 qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
3253     u32 data)
3254 {
3255         struct qla_work_evt *e;
3256
3257         e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
3258         if (!e)
3259                 return QLA_FUNCTION_FAILED;
3260
3261         e->u.aen.code = code;
3262         e->u.aen.data = data;
3263         return qla2x00_post_work(vha, e);
3264 }
3265
3266 int
3267 qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
3268 {
3269         struct qla_work_evt *e;
3270
3271         e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
3272         if (!e)
3273                 return QLA_FUNCTION_FAILED;
3274
3275         memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
3276         return qla2x00_post_work(vha, e);
3277 }
3278
3279 #define qla2x00_post_async_work(name, type)     \
3280 int qla2x00_post_async_##name##_work(           \
3281     struct scsi_qla_host *vha,                  \
3282     fc_port_t *fcport, uint16_t *data)          \
3283 {                                               \
3284         struct qla_work_evt *e;                 \
3285                                                 \
3286         e = qla2x00_alloc_work(vha, type);      \
3287         if (!e)                                 \
3288                 return QLA_FUNCTION_FAILED;     \
3289                                                 \
3290         e->u.logio.fcport = fcport;             \
3291         if (data) {                             \
3292                 e->u.logio.data[0] = data[0];   \
3293                 e->u.logio.data[1] = data[1];   \
3294         }                                       \
3295         return qla2x00_post_work(vha, e);       \
3296 }
3297
3298 qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
3299 qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE);
3300 qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
3301 qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE);
3302 qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
3303 qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE);
3304
3305 int
3306 qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
3307 {
3308         struct qla_work_evt *e;
3309
3310         e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
3311         if (!e)
3312                 return QLA_FUNCTION_FAILED;
3313
3314         e->u.uevent.code = code;
3315         return qla2x00_post_work(vha, e);
3316 }
3317
3318 static void
3319 qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
3320 {
3321         char event_string[40];
3322         char *envp[] = { event_string, NULL };
3323
3324         switch (code) {
3325         case QLA_UEVENT_CODE_FW_DUMP:
3326                 snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld",
3327                     vha->host_no);
3328                 break;
3329         default:
3330                 /* do nothing */
3331                 break;
3332         }
3333         kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
3334 }
3335
3336 void
3337 qla2x00_do_work(struct scsi_qla_host *vha)
3338 {
3339         struct qla_work_evt *e, *tmp;
3340         unsigned long flags;
3341         LIST_HEAD(work);
3342
3343         spin_lock_irqsave(&vha->work_lock, flags);
3344         list_splice_init(&vha->work_list, &work);
3345         spin_unlock_irqrestore(&vha->work_lock, flags);
3346
3347         list_for_each_entry_safe(e, tmp, &work, list) {
3348                 list_del_init(&e->list);
3349
3350                 switch (e->type) {
3351                 case QLA_EVT_AEN:
3352                         fc_host_post_event(vha->host, fc_get_event_number(),
3353                             e->u.aen.code, e->u.aen.data);
3354                         break;
3355                 case QLA_EVT_IDC_ACK:
3356                         qla81xx_idc_ack(vha, e->u.idc_ack.mb);
3357                         break;
3358                 case QLA_EVT_ASYNC_LOGIN:
3359                         qla2x00_async_login(vha, e->u.logio.fcport,
3360                             e->u.logio.data);
3361                         break;
3362                 case QLA_EVT_ASYNC_LOGIN_DONE:
3363                         qla2x00_async_login_done(vha, e->u.logio.fcport,
3364                             e->u.logio.data);
3365                         break;
3366                 case QLA_EVT_ASYNC_LOGOUT:
3367                         qla2x00_async_logout(vha, e->u.logio.fcport);
3368                         break;
3369                 case QLA_EVT_ASYNC_LOGOUT_DONE:
3370                         qla2x00_async_logout_done(vha, e->u.logio.fcport,
3371                             e->u.logio.data);
3372                         break;
3373                 case QLA_EVT_ASYNC_ADISC:
3374                         qla2x00_async_adisc(vha, e->u.logio.fcport,
3375                             e->u.logio.data);
3376                         break;
3377                 case QLA_EVT_ASYNC_ADISC_DONE:
3378                         qla2x00_async_adisc_done(vha, e->u.logio.fcport,
3379                             e->u.logio.data);
3380                         break;
3381                 case QLA_EVT_UEVENT:
3382                         qla2x00_uevent_emit(vha, e->u.uevent.code);
3383                         break;
3384                 }
3385                 if (e->flags & QLA_EVT_FLAG_FREE)
3386                         kfree(e);
3387
3388                 /* For each work completed decrement vha ref count */
3389                 QLA_VHA_MARK_NOT_BUSY(vha);
3390         }
3391 }
3392
3393 /* Relogins all the fcports of a vport
3394  * Context: dpc thread
3395  */
3396 void qla2x00_relogin(struct scsi_qla_host *vha)
3397 {
3398         fc_port_t       *fcport;
3399         int status;
3400         uint16_t        next_loopid = 0;
3401         struct qla_hw_data *ha = vha->hw;
3402         uint16_t data[2];
3403
3404         list_for_each_entry(fcport, &vha->vp_fcports, list) {
3405         /*
3406          * If the port is not ONLINE then try to login
3407          * to it if we haven't run out of retries.
3408          */
3409                 if (atomic_read(&fcport->state) != FCS_ONLINE &&
3410                     fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) {
3411                         fcport->login_retry--;
3412                         if (fcport->flags & FCF_FABRIC_DEVICE) {
3413                                 if (fcport->flags & FCF_FCP2_DEVICE)
3414                                         ha->isp_ops->fabric_logout(vha,
3415                                                         fcport->loop_id,
3416                                                         fcport->d_id.b.domain,
3417                                                         fcport->d_id.b.area,
3418                                                         fcport->d_id.b.al_pa);
3419
3420                                 if (fcport->loop_id == FC_NO_LOOP_ID) {
3421                                         fcport->loop_id = next_loopid =
3422                                             ha->min_external_loopid;
3423                                         status = qla2x00_find_new_loop_id(
3424                                             vha, fcport);
3425                                         if (status != QLA_SUCCESS) {
3426                                                 /* Ran out of IDs to use */
3427                                                 break;
3428                                         }
3429                                 }
3430
3431                                 if (IS_ALOGIO_CAPABLE(ha)) {
3432                                         fcport->flags |= FCF_ASYNC_SENT;
3433                                         data[0] = 0;
3434                                         data[1] = QLA_LOGIO_LOGIN_RETRIED;
3435                                         status = qla2x00_post_async_login_work(
3436                                             vha, fcport, data);
3437                                         if (status == QLA_SUCCESS)
3438                                                 continue;
3439                                         /* Attempt a retry. */
3440                                         status = 1;
3441                                 } else
3442                                         status = qla2x00_fabric_login(vha,
3443                                             fcport, &next_loopid);
3444                         } else
3445                                 status = qla2x00_local_device_login(vha,
3446                                                                 fcport);
3447
3448                         if (status == QLA_SUCCESS) {
3449                                 fcport->old_loop_id = fcport->loop_id;
3450
3451                                 ql_dbg(ql_dbg_disc, vha, 0x2003,
3452                                     "Port login OK: logged in ID 0x%x.\n",
3453                                     fcport->loop_id);
3454
3455                                 qla2x00_update_fcport(vha, fcport);
3456
3457                         } else if (status == 1) {
3458                                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
3459                                 /* retry the login again */
3460                                 ql_dbg(ql_dbg_disc, vha, 0x2007,
3461                                     "Retrying %d login again loop_id 0x%x.\n",
3462                                     fcport->login_retry, fcport->loop_id);
3463                         } else {
3464                                 fcport->login_retry = 0;
3465                         }
3466
3467                         if (fcport->login_retry == 0 && status != QLA_SUCCESS)
3468                                 fcport->loop_id = FC_NO_LOOP_ID;
3469                 }
3470                 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3471                         break;
3472         }
3473 }
3474
3475 /**************************************************************************
3476 * qla2x00_do_dpc
3477 *   This kernel thread is a task that is schedule by the interrupt handler
3478 *   to perform the background processing for interrupts.
3479 *
3480 * Notes:
3481 * This task always run in the context of a kernel thread.  It
3482 * is kick-off by the driver's detect code and starts up
3483 * up one per adapter. It immediately goes to sleep and waits for
3484 * some fibre event.  When either the interrupt handler or
3485 * the timer routine detects a event it will one of the task
3486 * bits then wake us up.
3487 **************************************************************************/
3488 static int
3489 qla2x00_do_dpc(void *data)
3490 {
3491         int             rval;
3492         scsi_qla_host_t *base_vha;
3493         struct qla_hw_data *ha;
3494
3495         ha = (struct qla_hw_data *)data;
3496         base_vha = pci_get_drvdata(ha->pdev);
3497
3498         set_user_nice(current, -20);
3499
3500         set_current_state(TASK_INTERRUPTIBLE);
3501         while (!kthread_should_stop()) {
3502                 ql_dbg(ql_dbg_dpc, base_vha, 0x4000,
3503                     "DPC handler sleeping.\n");
3504
3505                 schedule();
3506                 __set_current_state(TASK_RUNNING);
3507
3508                 ql_dbg(ql_dbg_dpc, base_vha, 0x4001,
3509                     "DPC handler waking up.\n");
3510                 ql_dbg(ql_dbg_dpc, base_vha, 0x4002,
3511                     "dpc_flags=0x%lx.\n", base_vha->dpc_flags);
3512
3513                 /* Initialization not yet finished. Don't do anything yet. */
3514                 if (!base_vha->flags.init_done)
3515                         continue;
3516
3517                 if (ha->flags.eeh_busy) {
3518                         ql_dbg(ql_dbg_dpc, base_vha, 0x4003,
3519                             "eeh_busy=%d.\n", ha->flags.eeh_busy);
3520                         continue;
3521                 }
3522
3523                 ha->dpc_active = 1;
3524
3525                 if (ha->flags.mbox_busy) {
3526                         ha->dpc_active = 0;
3527                         continue;
3528                 }
3529
3530                 qla2x00_do_work(base_vha);
3531
3532                 if (IS_QLA82XX(ha)) {
3533                         if (test_and_clear_bit(ISP_UNRECOVERABLE,
3534                                 &base_vha->dpc_flags)) {
3535                                 qla82xx_idc_lock(ha);
3536                                 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3537                                         QLA82XX_DEV_FAILED);
3538                                 qla82xx_idc_unlock(ha);
3539                                 ql_log(ql_log_info, base_vha, 0x4004,
3540                                     "HW State: FAILED.\n");
3541                                 qla82xx_device_state_handler(base_vha);
3542                                 continue;
3543                         }
3544
3545                         if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
3546                                 &base_vha->dpc_flags)) {
3547
3548                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4005,
3549                                     "FCoE context reset scheduled.\n");
3550                                 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
3551                                         &base_vha->dpc_flags))) {
3552                                         if (qla82xx_fcoe_ctx_reset(base_vha)) {
3553                                                 /* FCoE-ctx reset failed.
3554                                                  * Escalate to chip-reset
3555                                                  */
3556                                                 set_bit(ISP_ABORT_NEEDED,
3557                                                         &base_vha->dpc_flags);
3558                                         }
3559                                         clear_bit(ABORT_ISP_ACTIVE,
3560                                                 &base_vha->dpc_flags);
3561                                 }
3562
3563                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4006,
3564                                     "FCoE context reset end.\n");
3565                         }
3566                 }
3567
3568                 if (test_and_clear_bit(ISP_ABORT_NEEDED,
3569                                                 &base_vha->dpc_flags)) {
3570
3571                         ql_dbg(ql_dbg_dpc, base_vha, 0x4007,
3572                             "ISP abort scheduled.\n");
3573                         if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
3574                             &base_vha->dpc_flags))) {
3575
3576                                 if (ha->isp_ops->abort_isp(base_vha)) {
3577                                         /* failed. retry later */
3578                                         set_bit(ISP_ABORT_NEEDED,
3579                                             &base_vha->dpc_flags);
3580                                 }
3581                                 clear_bit(ABORT_ISP_ACTIVE,
3582                                                 &base_vha->dpc_flags);
3583                         }
3584
3585                         ql_dbg(ql_dbg_dpc, base_vha, 0x4008,
3586                             "ISP abort end.\n");
3587                 }
3588
3589                 if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) {
3590                         qla2x00_update_fcports(base_vha);
3591                         clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
3592                 }
3593
3594                 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) {
3595                         ql_dbg(ql_dbg_dpc, base_vha, 0x4009,
3596                             "Quiescence mode scheduled.\n");
3597                         qla82xx_device_state_handler(base_vha);
3598                         clear_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags);
3599                         if (!ha->flags.quiesce_owner) {
3600                                 qla2x00_perform_loop_resync(base_vha);
3601
3602                                 qla82xx_idc_lock(ha);
3603                                 qla82xx_clear_qsnt_ready(base_vha);
3604                                 qla82xx_idc_unlock(ha);
3605                         }
3606                         ql_dbg(ql_dbg_dpc, base_vha, 0x400a,
3607                             "Quiescence mode end.\n");
3608                 }
3609
3610                 if (test_and_clear_bit(RESET_MARKER_NEEDED,
3611                                                         &base_vha->dpc_flags) &&
3612                     (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
3613
3614                         ql_dbg(ql_dbg_dpc, base_vha, 0x400b,
3615                             "Reset marker scheduled.\n");
3616                         qla2x00_rst_aen(base_vha);
3617                         clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
3618                         ql_dbg(ql_dbg_dpc, base_vha, 0x400c,
3619                             "Reset marker end.\n");
3620                 }
3621
3622                 /* Retry each device up to login retry count */
3623                 if ((test_and_clear_bit(RELOGIN_NEEDED,
3624                                                 &base_vha->dpc_flags)) &&
3625                     !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
3626                     atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
3627
3628                         ql_dbg(ql_dbg_dpc, base_vha, 0x400d,
3629                             "Relogin scheduled.\n");
3630                         qla2x00_relogin(base_vha);
3631                         ql_dbg(ql_dbg_dpc, base_vha, 0x400e,
3632                             "Relogin end.\n");
3633                 }
3634
3635                 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
3636                                                         &base_vha->dpc_flags)) {
3637
3638                         ql_dbg(ql_dbg_dpc, base_vha, 0x400f,
3639                             "Loop resync scheduled.\n");
3640
3641                         if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
3642                             &base_vha->dpc_flags))) {
3643
3644                                 rval = qla2x00_loop_resync(base_vha);
3645
3646                                 clear_bit(LOOP_RESYNC_ACTIVE,
3647                                                 &base_vha->dpc_flags);
3648                         }
3649
3650                         ql_dbg(ql_dbg_dpc, base_vha, 0x4010,
3651                             "Loop resync end.\n");
3652                 }
3653
3654                 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
3655                     atomic_read(&base_vha->loop_state) == LOOP_READY) {
3656                         clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
3657                         qla2xxx_flash_npiv_conf(base_vha);
3658                 }
3659
3660                 if (!ha->interrupts_on)
3661                         ha->isp_ops->enable_intrs(ha);
3662
3663                 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
3664                                         &base_vha->dpc_flags))
3665                         ha->isp_ops->beacon_blink(base_vha);
3666
3667                 qla2x00_do_dpc_all_vps(base_vha);
3668
3669                 ha->dpc_active = 0;
3670                 set_current_state(TASK_INTERRUPTIBLE);
3671         } /* End of while(1) */
3672         __set_current_state(TASK_RUNNING);
3673
3674         ql_dbg(ql_dbg_dpc, base_vha, 0x4011,
3675             "DPC handler exiting.\n");
3676
3677         /*
3678          * Make sure that nobody tries to wake us up again.
3679          */
3680         ha->dpc_active = 0;
3681
3682         /* Cleanup any residual CTX SRBs. */
3683         qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
3684
3685         return 0;
3686 }
3687
3688 void
3689 qla2xxx_wake_dpc(struct scsi_qla_host *vha)
3690 {
3691         struct qla_hw_data *ha = vha->hw;
3692         struct task_struct *t = ha->dpc_thread;
3693
3694         if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
3695                 wake_up_process(t);
3696 }
3697
3698 /*
3699 *  qla2x00_rst_aen
3700 *      Processes asynchronous reset.
3701 *
3702 * Input:
3703 *      ha  = adapter block pointer.
3704 */
3705 static void
3706 qla2x00_rst_aen(scsi_qla_host_t *vha)
3707 {
3708         if (vha->flags.online && !vha->flags.reset_active &&
3709             !atomic_read(&vha->loop_down_timer) &&
3710             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
3711                 do {
3712                         clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
3713
3714                         /*
3715                          * Issue marker command only when we are going to start
3716                          * the I/O.
3717                          */
3718                         vha->marker_needed = 1;
3719                 } while (!atomic_read(&vha->loop_down_timer) &&
3720                     (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
3721         }
3722 }
3723
3724 static void
3725 qla2x00_sp_free_dma(srb_t *sp)
3726 {
3727         struct scsi_cmnd *cmd = sp->cmd;
3728         struct qla_hw_data *ha = sp->fcport->vha->hw;
3729
3730         if (sp->flags & SRB_DMA_VALID) {
3731                 scsi_dma_unmap(cmd);
3732                 sp->flags &= ~SRB_DMA_VALID;
3733         }
3734
3735         if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
3736                 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
3737                     scsi_prot_sg_count(cmd), cmd->sc_data_direction);
3738                 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
3739         }
3740
3741         if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
3742                 /* List assured to be having elements */
3743                 qla2x00_clean_dsd_pool(ha, sp);
3744                 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
3745         }
3746
3747         if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
3748                 dma_pool_free(ha->dl_dma_pool, sp->ctx,
3749                     ((struct crc_context *)sp->ctx)->crc_ctx_dma);
3750                 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
3751         }
3752
3753         CMD_SP(cmd) = NULL;
3754 }
3755
3756 static void
3757 qla2x00_sp_final_compl(struct qla_hw_data *ha, srb_t *sp)
3758 {
3759         struct scsi_cmnd *cmd = sp->cmd;
3760
3761         qla2x00_sp_free_dma(sp);
3762
3763         if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
3764                 struct ct6_dsd *ctx = sp->ctx;
3765                 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx->fcp_cmnd,
3766                         ctx->fcp_cmnd_dma);
3767                 list_splice(&ctx->dsd_list, &ha->gbl_dsd_list);
3768                 ha->gbl_dsd_inuse -= ctx->dsd_use_cnt;
3769                 ha->gbl_dsd_avail += ctx->dsd_use_cnt;
3770                 mempool_free(sp->ctx, ha->ctx_mempool);
3771                 sp->ctx = NULL;
3772         }
3773
3774         mempool_free(sp, ha->srb_mempool);
3775         cmd->scsi_done(cmd);
3776 }
3777
3778 void
3779 qla2x00_sp_compl(struct qla_hw_data *ha, srb_t *sp)
3780 {
3781         if (atomic_read(&sp->ref_count) == 0) {
3782                 ql_dbg(ql_dbg_io, sp->fcport->vha, 0x3015,
3783                     "SP reference-count to ZERO -- sp=%p cmd=%p.\n",
3784                     sp, sp->cmd);
3785                 if (ql2xextended_error_logging & ql_dbg_io)
3786                         BUG();
3787                 return;
3788         }
3789         if (!atomic_dec_and_test(&sp->ref_count))
3790                 return;
3791         qla2x00_sp_final_compl(ha, sp);
3792 }
3793
3794 /**************************************************************************
3795 *   qla2x00_timer
3796 *
3797 * Description:
3798 *   One second timer
3799 *
3800 * Context: Interrupt
3801 ***************************************************************************/
3802 void
3803 qla2x00_timer(scsi_qla_host_t *vha)
3804 {
3805         unsigned long   cpu_flags = 0;
3806         int             start_dpc = 0;
3807         int             index;
3808         srb_t           *sp;
3809         uint16_t        w;
3810         struct qla_hw_data *ha = vha->hw;
3811         struct req_que *req;
3812
3813         if (ha->flags.eeh_busy) {
3814                 ql_dbg(ql_dbg_timer, vha, 0x6000,
3815                     "EEH = %d, restarting timer.\n",
3816                     ha->flags.eeh_busy);
3817                 qla2x00_restart_timer(vha, WATCH_INTERVAL);
3818                 return;
3819         }
3820
3821         /* Hardware read to raise pending EEH errors during mailbox waits. */
3822         if (!pci_channel_offline(ha->pdev))
3823                 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
3824
3825         /* Make sure qla82xx_watchdog is run only for physical port */
3826         if (!vha->vp_idx && IS_QLA82XX(ha)) {
3827                 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags))
3828                         start_dpc++;
3829                 qla82xx_watchdog(vha);
3830         }
3831
3832         /* Loop down handler. */
3833         if (atomic_read(&vha->loop_down_timer) > 0 &&
3834             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) &&
3835             !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags))
3836                 && vha->flags.online) {
3837
3838                 if (atomic_read(&vha->loop_down_timer) ==
3839                     vha->loop_down_abort_time) {
3840
3841                         ql_log(ql_log_info, vha, 0x6008,
3842                             "Loop down - aborting the queues before time expires.\n");
3843
3844                         if (!IS_QLA2100(ha) && vha->link_down_timeout)
3845                                 atomic_set(&vha->loop_state, LOOP_DEAD);
3846
3847                         /*
3848                          * Schedule an ISP abort to return any FCP2-device
3849                          * commands.
3850                          */
3851                         /* NPIV - scan physical port only */
3852                         if (!vha->vp_idx) {
3853                                 spin_lock_irqsave(&ha->hardware_lock,
3854                                     cpu_flags);
3855                                 req = ha->req_q_map[0];
3856                                 for (index = 1;
3857                                     index < MAX_OUTSTANDING_COMMANDS;
3858                                     index++) {
3859                                         fc_port_t *sfcp;
3860
3861                                         sp = req->outstanding_cmds[index];
3862                                         if (!sp)
3863                                                 continue;
3864                                         if (sp->ctx && !IS_PROT_IO(sp))
3865                                                 continue;
3866                                         sfcp = sp->fcport;
3867                                         if (!(sfcp->flags & FCF_FCP2_DEVICE))
3868                                                 continue;
3869
3870                                         if (IS_QLA82XX(ha))
3871                                                 set_bit(FCOE_CTX_RESET_NEEDED,
3872                                                         &vha->dpc_flags);
3873                                         else
3874                                                 set_bit(ISP_ABORT_NEEDED,
3875                                                         &vha->dpc_flags);
3876                                         break;
3877                                 }
3878                                 spin_unlock_irqrestore(&ha->hardware_lock,
3879                                                                 cpu_flags);
3880                         }
3881                         start_dpc++;
3882                 }
3883
3884                 /* if the loop has been down for 4 minutes, reinit adapter */
3885                 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
3886                         if (!(vha->device_flags & DFLG_NO_CABLE)) {
3887                                 ql_log(ql_log_warn, vha, 0x6009,
3888                                     "Loop down - aborting ISP.\n");
3889
3890                                 if (IS_QLA82XX(ha))
3891                                         set_bit(FCOE_CTX_RESET_NEEDED,
3892                                                 &vha->dpc_flags);
3893                                 else
3894                                         set_bit(ISP_ABORT_NEEDED,
3895                                                 &vha->dpc_flags);
3896                         }
3897                 }
3898                 ql_dbg(ql_dbg_timer, vha, 0x600a,
3899                     "Loop down - seconds remaining %d.\n",
3900                     atomic_read(&vha->loop_down_timer));
3901         }
3902
3903         /* Check if beacon LED needs to be blinked for physical host only */
3904         if (!vha->vp_idx && (ha->beacon_blink_led == 1)) {
3905                 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
3906                 start_dpc++;
3907         }
3908
3909         /* Process any deferred work. */
3910         if (!list_empty(&vha->work_list))
3911                 start_dpc++;
3912
3913         /* Schedule the DPC routine if needed */
3914         if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
3915             test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
3916             test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
3917             start_dpc ||
3918             test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
3919             test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
3920             test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
3921             test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
3922             test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
3923             test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) {
3924                 ql_dbg(ql_dbg_timer, vha, 0x600b,
3925                     "isp_abort_needed=%d loop_resync_needed=%d "
3926                     "fcport_update_needed=%d start_dpc=%d "
3927                     "reset_marker_needed=%d",
3928                     test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags),
3929                     test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags),
3930                     test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags),
3931                     start_dpc,
3932                     test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags));
3933                 ql_dbg(ql_dbg_timer, vha, 0x600c,
3934                     "beacon_blink_needed=%d isp_unrecoverable=%d "
3935                     "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d "
3936                     "relogin_needed=%d.\n",
3937                     test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags),
3938                     test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags),
3939                     test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags),
3940                     test_bit(VP_DPC_NEEDED, &vha->dpc_flags),
3941                     test_bit(RELOGIN_NEEDED, &vha->dpc_flags));
3942                 qla2xxx_wake_dpc(vha);
3943         }
3944
3945         qla2x00_restart_timer(vha, WATCH_INTERVAL);
3946 }
3947
3948 /* Firmware interface routines. */
3949
3950 #define FW_BLOBS        8
3951 #define FW_ISP21XX      0
3952 #define FW_ISP22XX      1
3953 #define FW_ISP2300      2
3954 #define FW_ISP2322      3
3955 #define FW_ISP24XX      4
3956 #define FW_ISP25XX      5
3957 #define FW_ISP81XX      6
3958 #define FW_ISP82XX      7
3959
3960 #define FW_FILE_ISP21XX "ql2100_fw.bin"
3961 #define FW_FILE_ISP22XX "ql2200_fw.bin"
3962 #define FW_FILE_ISP2300 "ql2300_fw.bin"
3963 #define FW_FILE_ISP2322 "ql2322_fw.bin"
3964 #define FW_FILE_ISP24XX "ql2400_fw.bin"
3965 #define FW_FILE_ISP25XX "ql2500_fw.bin"
3966 #define FW_FILE_ISP81XX "ql8100_fw.bin"
3967 #define FW_FILE_ISP82XX "ql8200_fw.bin"
3968
3969 static DEFINE_MUTEX(qla_fw_lock);
3970
3971 static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
3972         { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
3973         { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
3974         { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
3975         { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
3976         { .name = FW_FILE_ISP24XX, },
3977         { .name = FW_FILE_ISP25XX, },
3978         { .name = FW_FILE_ISP81XX, },
3979         { .name = FW_FILE_ISP82XX, },
3980 };
3981
3982 struct fw_blob *
3983 qla2x00_request_firmware(scsi_qla_host_t *vha)
3984 {
3985         struct qla_hw_data *ha = vha->hw;
3986         struct fw_blob *blob;
3987
3988         blob = NULL;
3989         if (IS_QLA2100(ha)) {
3990                 blob = &qla_fw_blobs[FW_ISP21XX];
3991         } else if (IS_QLA2200(ha)) {
3992                 blob = &qla_fw_blobs[FW_ISP22XX];
3993         } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
3994                 blob = &qla_fw_blobs[FW_ISP2300];
3995         } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
3996                 blob = &qla_fw_blobs[FW_ISP2322];
3997         } else if (IS_QLA24XX_TYPE(ha)) {
3998                 blob = &qla_fw_blobs[FW_ISP24XX];
3999         } else if (IS_QLA25XX(ha)) {
4000                 blob = &qla_fw_blobs[FW_ISP25XX];
4001         } else if (IS_QLA81XX(ha)) {
4002                 blob = &qla_fw_blobs[FW_ISP81XX];
4003         } else if (IS_QLA82XX(ha)) {
4004                 blob = &qla_fw_blobs[FW_ISP82XX];
4005         }
4006
4007         mutex_lock(&qla_fw_lock);
4008         if (blob->fw)
4009                 goto out;
4010
4011         if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
4012                 ql_log(ql_log_warn, vha, 0x0063,
4013                     "Failed to load firmware image (%s).\n", blob->name);
4014                 blob->fw = NULL;
4015                 blob = NULL;
4016                 goto out;
4017         }
4018
4019 out:
4020         mutex_unlock(&qla_fw_lock);
4021         return blob;
4022 }
4023
4024 static void
4025 qla2x00_release_firmware(void)
4026 {
4027         int idx;
4028
4029         mutex_lock(&qla_fw_lock);
4030         for (idx = 0; idx < FW_BLOBS; idx++)
4031                 if (qla_fw_blobs[idx].fw)
4032                         release_firmware(qla_fw_blobs[idx].fw);
4033         mutex_unlock(&qla_fw_lock);
4034 }
4035
4036 static pci_ers_result_t
4037 qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
4038 {
4039         scsi_qla_host_t *vha = pci_get_drvdata(pdev);
4040         struct qla_hw_data *ha = vha->hw;
4041
4042         ql_dbg(ql_dbg_aer, vha, 0x9000,
4043             "PCI error detected, state %x.\n", state);
4044
4045         switch (state) {
4046         case pci_channel_io_normal:
4047                 ha->flags.eeh_busy = 0;
4048                 return PCI_ERS_RESULT_CAN_RECOVER;
4049         case pci_channel_io_frozen:
4050                 ha->flags.eeh_busy = 1;
4051                 /* For ISP82XX complete any pending mailbox cmd */
4052                 if (IS_QLA82XX(ha)) {
4053                         ha->flags.isp82xx_fw_hung = 1;
4054                         if (ha->flags.mbox_busy) {
4055                                 ha->flags.mbox_int = 1;
4056                                 ql_dbg(ql_dbg_aer, vha, 0x9001,
4057                                     "Due to pci channel io frozen, doing premature "
4058                                     "completion of mbx command.\n");
4059                                 complete(&ha->mbx_intr_comp);
4060                         }
4061                 }
4062                 qla2x00_free_irqs(vha);
4063                 pci_disable_device(pdev);
4064                 /* Return back all IOs */
4065                 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
4066                 return PCI_ERS_RESULT_NEED_RESET;
4067         case pci_channel_io_perm_failure:
4068                 ha->flags.pci_channel_io_perm_failure = 1;
4069                 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
4070                 return PCI_ERS_RESULT_DISCONNECT;
4071         }
4072         return PCI_ERS_RESULT_NEED_RESET;
4073 }
4074
4075 static pci_ers_result_t
4076 qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
4077 {
4078         int risc_paused = 0;
4079         uint32_t stat;
4080         unsigned long flags;
4081         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
4082         struct qla_hw_data *ha = base_vha->hw;
4083         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
4084         struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
4085
4086         if (IS_QLA82XX(ha))
4087                 return PCI_ERS_RESULT_RECOVERED;
4088
4089         spin_lock_irqsave(&ha->hardware_lock, flags);
4090         if (IS_QLA2100(ha) || IS_QLA2200(ha)){
4091                 stat = RD_REG_DWORD(&reg->hccr);
4092                 if (stat & HCCR_RISC_PAUSE)
4093                         risc_paused = 1;
4094         } else if (IS_QLA23XX(ha)) {
4095                 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
4096                 if (stat & HSR_RISC_PAUSED)
4097                         risc_paused = 1;
4098         } else if (IS_FWI2_CAPABLE(ha)) {
4099                 stat = RD_REG_DWORD(&reg24->host_status);
4100                 if (stat & HSRX_RISC_PAUSED)
4101                         risc_paused = 1;
4102         }
4103         spin_unlock_irqrestore(&ha->hardware_lock, flags);
4104
4105         if (risc_paused) {
4106                 ql_log(ql_log_info, base_vha, 0x9003,
4107                     "RISC paused -- mmio_enabled, Dumping firmware.\n");
4108                 ha->isp_ops->fw_dump(base_vha, 0);
4109
4110                 return PCI_ERS_RESULT_NEED_RESET;
4111         } else
4112                 return PCI_ERS_RESULT_RECOVERED;
4113 }
4114
4115 uint32_t qla82xx_error_recovery(scsi_qla_host_t *base_vha)
4116 {
4117         uint32_t rval = QLA_FUNCTION_FAILED;
4118         uint32_t drv_active = 0;
4119         struct qla_hw_data *ha = base_vha->hw;
4120         int fn;
4121         struct pci_dev *other_pdev = NULL;
4122
4123         ql_dbg(ql_dbg_aer, base_vha, 0x9006,
4124             "Entered %s.\n", __func__);
4125
4126         set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
4127
4128         if (base_vha->flags.online) {
4129                 /* Abort all outstanding commands,
4130                  * so as to be requeued later */
4131                 qla2x00_abort_isp_cleanup(base_vha);
4132         }
4133
4134
4135         fn = PCI_FUNC(ha->pdev->devfn);
4136         while (fn > 0) {
4137                 fn--;
4138                 ql_dbg(ql_dbg_aer, base_vha, 0x9007,
4139                     "Finding pci device at function = 0x%x.\n", fn);
4140                 other_pdev =
4141                     pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
4142                     ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
4143                     fn));
4144
4145                 if (!other_pdev)
4146                         continue;
4147                 if (atomic_read(&other_pdev->enable_cnt)) {
4148                         ql_dbg(ql_dbg_aer, base_vha, 0x9008,
4149                             "Found PCI func available and enable at 0x%x.\n",
4150                             fn);
4151                         pci_dev_put(other_pdev);
4152                         break;
4153                 }
4154                 pci_dev_put(other_pdev);
4155         }
4156
4157         if (!fn) {
4158                 /* Reset owner */
4159                 ql_dbg(ql_dbg_aer, base_vha, 0x9009,
4160                     "This devfn is reset owner = 0x%x.\n",
4161                     ha->pdev->devfn);
4162                 qla82xx_idc_lock(ha);
4163
4164                 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
4165                     QLA82XX_DEV_INITIALIZING);
4166
4167                 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
4168                     QLA82XX_IDC_VERSION);
4169
4170                 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
4171                 ql_dbg(ql_dbg_aer, base_vha, 0x900a,
4172                     "drv_active = 0x%x.\n", drv_active);
4173
4174                 qla82xx_idc_unlock(ha);
4175                 /* Reset if device is not already reset
4176                  * drv_active would be 0 if a reset has already been done
4177                  */
4178                 if (drv_active)
4179                         rval = qla82xx_start_firmware(base_vha);
4180                 else
4181                         rval = QLA_SUCCESS;
4182                 qla82xx_idc_lock(ha);
4183
4184                 if (rval != QLA_SUCCESS) {
4185                         ql_log(ql_log_info, base_vha, 0x900b,
4186                             "HW State: FAILED.\n");
4187                         qla82xx_clear_drv_active(ha);
4188                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
4189                             QLA82XX_DEV_FAILED);
4190                 } else {
4191                         ql_log(ql_log_info, base_vha, 0x900c,
4192                             "HW State: READY.\n");
4193                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
4194                             QLA82XX_DEV_READY);
4195                         qla82xx_idc_unlock(ha);
4196                         ha->flags.isp82xx_fw_hung = 0;
4197                         rval = qla82xx_restart_isp(base_vha);
4198                         qla82xx_idc_lock(ha);
4199                         /* Clear driver state register */
4200                         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0);
4201                         qla82xx_set_drv_active(base_vha);
4202                 }
4203                 qla82xx_idc_unlock(ha);
4204         } else {
4205                 ql_dbg(ql_dbg_aer, base_vha, 0x900d,
4206                     "This devfn is not reset owner = 0x%x.\n",
4207                     ha->pdev->devfn);
4208                 if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) ==
4209                     QLA82XX_DEV_READY)) {
4210                         ha->flags.isp82xx_fw_hung = 0;
4211                         rval = qla82xx_restart_isp(base_vha);
4212                         qla82xx_idc_lock(ha);
4213                         qla82xx_set_drv_active(base_vha);
4214                         qla82xx_idc_unlock(ha);
4215                 }
4216         }
4217         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
4218
4219         return rval;
4220 }
4221
4222 static pci_ers_result_t
4223 qla2xxx_pci_slot_reset(struct pci_dev *pdev)
4224 {
4225         pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
4226         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
4227         struct qla_hw_data *ha = base_vha->hw;
4228         struct rsp_que *rsp;
4229         int rc, retries = 10;
4230
4231         ql_dbg(ql_dbg_aer, base_vha, 0x9004,
4232             "Slot Reset.\n");
4233
4234         /* Workaround: qla2xxx driver which access hardware earlier
4235          * needs error state to be pci_channel_io_online.
4236          * Otherwise mailbox command timesout.
4237          */
4238         pdev->error_state = pci_channel_io_normal;
4239
4240         pci_restore_state(pdev);
4241
4242         /* pci_restore_state() clears the saved_state flag of the device
4243          * save restored state which resets saved_state flag
4244          */
4245         pci_save_state(pdev);
4246
4247         if (ha->mem_only)
4248                 rc = pci_enable_device_mem(pdev);
4249         else
4250                 rc = pci_enable_device(pdev);
4251
4252         if (rc) {
4253                 ql_log(ql_log_warn, base_vha, 0x9005,
4254                     "Can't re-enable PCI device after reset.\n");
4255                 goto exit_slot_reset;
4256         }
4257
4258         rsp = ha->rsp_q_map[0];
4259         if (qla2x00_request_irqs(ha, rsp))
4260                 goto exit_slot_reset;
4261
4262         if (ha->isp_ops->pci_config(base_vha))
4263                 goto exit_slot_reset;
4264
4265         if (IS_QLA82XX(ha)) {
4266                 if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) {
4267                         ret = PCI_ERS_RESULT_RECOVERED;
4268                         goto exit_slot_reset;
4269                 } else
4270                         goto exit_slot_reset;
4271         }
4272
4273         while (ha->flags.mbox_busy && retries--)
4274                 msleep(1000);
4275
4276         set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
4277         if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS)
4278                 ret =  PCI_ERS_RESULT_RECOVERED;
4279         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
4280
4281
4282 exit_slot_reset:
4283         ql_dbg(ql_dbg_aer, base_vha, 0x900e,
4284             "slot_reset return %x.\n", ret);
4285
4286         return ret;
4287 }
4288
4289 static void
4290 qla2xxx_pci_resume(struct pci_dev *pdev)
4291 {
4292         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
4293         struct qla_hw_data *ha = base_vha->hw;
4294         int ret;
4295
4296         ql_dbg(ql_dbg_aer, base_vha, 0x900f,
4297             "pci_resume.\n");
4298
4299         ret = qla2x00_wait_for_hba_online(base_vha);
4300         if (ret != QLA_SUCCESS) {
4301                 ql_log(ql_log_fatal, base_vha, 0x9002,
4302                     "The device failed to resume I/O from slot/link_reset.\n");
4303         }
4304
4305         pci_cleanup_aer_uncorrect_error_status(pdev);
4306
4307         ha->flags.eeh_busy = 0;
4308 }
4309
4310 static struct pci_error_handlers qla2xxx_err_handler = {
4311         .error_detected = qla2xxx_pci_error_detected,
4312         .mmio_enabled = qla2xxx_pci_mmio_enabled,
4313         .slot_reset = qla2xxx_pci_slot_reset,
4314         .resume = qla2xxx_pci_resume,
4315 };
4316
4317 static struct pci_device_id qla2xxx_pci_tbl[] = {
4318         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
4319         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
4320         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
4321         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
4322         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
4323         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
4324         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
4325         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
4326         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
4327         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
4328         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
4329         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
4330         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
4331         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
4332         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
4333         { 0 },
4334 };
4335 MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
4336
4337 static struct pci_driver qla2xxx_pci_driver = {
4338         .name           = QLA2XXX_DRIVER_NAME,
4339         .driver         = {
4340                 .owner          = THIS_MODULE,
4341         },
4342         .id_table       = qla2xxx_pci_tbl,
4343         .probe          = qla2x00_probe_one,
4344         .remove         = qla2x00_remove_one,
4345         .shutdown       = qla2x00_shutdown,
4346         .err_handler    = &qla2xxx_err_handler,
4347 };
4348
4349 static struct file_operations apidev_fops = {
4350         .owner = THIS_MODULE,
4351         .llseek = noop_llseek,
4352 };
4353
4354 /**
4355  * qla2x00_module_init - Module initialization.
4356  **/
4357 static int __init
4358 qla2x00_module_init(void)
4359 {
4360         int ret = 0;
4361
4362         /* Allocate cache for SRBs. */
4363         srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
4364             SLAB_HWCACHE_ALIGN, NULL);
4365         if (srb_cachep == NULL) {
4366                 ql_log(ql_log_fatal, NULL, 0x0001,
4367                     "Unable to allocate SRB cache...Failing load!.\n");
4368                 return -ENOMEM;
4369         }
4370
4371         /* Derive version string. */
4372         strcpy(qla2x00_version_str, QLA2XXX_VERSION);
4373         if (ql2xextended_error_logging)
4374                 strcat(qla2x00_version_str, "-debug");
4375
4376         qla2xxx_transport_template =
4377             fc_attach_transport(&qla2xxx_transport_functions);
4378         if (!qla2xxx_transport_template) {
4379                 kmem_cache_destroy(srb_cachep);
4380                 ql_log(ql_log_fatal, NULL, 0x0002,
4381                     "fc_attach_transport failed...Failing load!.\n");
4382                 return -ENODEV;
4383         }
4384
4385         apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
4386         if (apidev_major < 0) {
4387                 ql_log(ql_log_fatal, NULL, 0x0003,
4388                     "Unable to register char device %s.\n", QLA2XXX_APIDEV);
4389         }
4390
4391         qla2xxx_transport_vport_template =
4392             fc_attach_transport(&qla2xxx_transport_vport_functions);
4393         if (!qla2xxx_transport_vport_template) {
4394                 kmem_cache_destroy(srb_cachep);
4395                 fc_release_transport(qla2xxx_transport_template);
4396                 ql_log(ql_log_fatal, NULL, 0x0004,
4397                     "fc_attach_transport vport failed...Failing load!.\n");
4398                 return -ENODEV;
4399         }
4400         ql_log(ql_log_info, NULL, 0x0005,
4401             "QLogic Fibre Channel HBA Driver: %s.\n",
4402             qla2x00_version_str);
4403         ret = pci_register_driver(&qla2xxx_pci_driver);
4404         if (ret) {
4405                 kmem_cache_destroy(srb_cachep);
4406                 fc_release_transport(qla2xxx_transport_template);
4407                 fc_release_transport(qla2xxx_transport_vport_template);
4408                 ql_log(ql_log_fatal, NULL, 0x0006,
4409                     "pci_register_driver failed...ret=%d Failing load!.\n",
4410                     ret);
4411         }
4412         return ret;
4413 }
4414
4415 /**
4416  * qla2x00_module_exit - Module cleanup.
4417  **/
4418 static void __exit
4419 qla2x00_module_exit(void)
4420 {
4421         unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
4422         pci_unregister_driver(&qla2xxx_pci_driver);
4423         qla2x00_release_firmware();
4424         kmem_cache_destroy(srb_cachep);
4425         if (ctx_cachep)
4426                 kmem_cache_destroy(ctx_cachep);
4427         fc_release_transport(qla2xxx_transport_template);
4428         fc_release_transport(qla2xxx_transport_vport_template);
4429 }
4430
4431 module_init(qla2x00_module_init);
4432 module_exit(qla2x00_module_exit);
4433
4434 MODULE_AUTHOR("QLogic Corporation");
4435 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
4436 MODULE_LICENSE("GPL");
4437 MODULE_VERSION(QLA2XXX_VERSION);
4438 MODULE_FIRMWARE(FW_FILE_ISP21XX);
4439 MODULE_FIRMWARE(FW_FILE_ISP22XX);
4440 MODULE_FIRMWARE(FW_FILE_ISP2300);
4441 MODULE_FIRMWARE(FW_FILE_ISP2322);
4442 MODULE_FIRMWARE(FW_FILE_ISP24XX);
4443 MODULE_FIRMWARE(FW_FILE_ISP25XX);