scsi: qla2xxx: edif: Add extraction of auth_els from the wire
[linux-2.6-microblaze.git] / drivers / scsi / qla2xxx / qla_os.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * QLogic Fibre Channel HBA Driver
4  * Copyright (c)  2003-2014 QLogic Corporation
5  */
6 #include "qla_def.h"
7
8 #include <linux/moduleparam.h>
9 #include <linux/vmalloc.h>
10 #include <linux/delay.h>
11 #include <linux/kthread.h>
12 #include <linux/mutex.h>
13 #include <linux/kobject.h>
14 #include <linux/slab.h>
15 #include <linux/blk-mq-pci.h>
16 #include <linux/refcount.h>
17
18 #include <scsi/scsi_tcq.h>
19 #include <scsi/scsicam.h>
20 #include <scsi/scsi_transport.h>
21 #include <scsi/scsi_transport_fc.h>
22
23 #include "qla_target.h"
24
25 /*
26  * Driver version
27  */
28 char qla2x00_version_str[40];
29
30 static int apidev_major;
31
32 /*
33  * SRB allocation cache
34  */
35 struct kmem_cache *srb_cachep;
36
37 int ql2xfulldump_on_mpifail;
38 module_param(ql2xfulldump_on_mpifail, int, S_IRUGO | S_IWUSR);
39 MODULE_PARM_DESC(ql2xfulldump_on_mpifail,
40                  "Set this to take full dump on MPI hang.");
41
42 int ql2xenforce_iocb_limit = 1;
43 module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR);
44 MODULE_PARM_DESC(ql2xenforce_iocb_limit,
45                  "Enforce IOCB throttling, to avoid FW congestion. (default: 1)");
46
47 /*
48  * CT6 CTX allocation cache
49  */
50 static struct kmem_cache *ctx_cachep;
51 /*
52  * error level for logging
53  */
54 uint ql_errlev = 0x8001;
55
56 static int ql2xenableclass2;
57 module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR);
58 MODULE_PARM_DESC(ql2xenableclass2,
59                 "Specify if Class 2 operations are supported from the very "
60                 "beginning. Default is 0 - class 2 not supported.");
61
62
63 int ql2xlogintimeout = 20;
64 module_param(ql2xlogintimeout, int, S_IRUGO);
65 MODULE_PARM_DESC(ql2xlogintimeout,
66                 "Login timeout value in seconds.");
67
68 int qlport_down_retry;
69 module_param(qlport_down_retry, int, S_IRUGO);
70 MODULE_PARM_DESC(qlport_down_retry,
71                 "Maximum number of command retries to a port that returns "
72                 "a PORT-DOWN status.");
73
74 int ql2xplogiabsentdevice;
75 module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
76 MODULE_PARM_DESC(ql2xplogiabsentdevice,
77                 "Option to enable PLOGI to devices that are not present after "
78                 "a Fabric scan.  This is needed for several broken switches. "
79                 "Default is 0 - no PLOGI. 1 - perform PLOGI.");
80
81 int ql2xloginretrycount;
82 module_param(ql2xloginretrycount, int, S_IRUGO);
83 MODULE_PARM_DESC(ql2xloginretrycount,
84                 "Specify an alternate value for the NVRAM login retry count.");
85
86 int ql2xallocfwdump = 1;
87 module_param(ql2xallocfwdump, int, S_IRUGO);
88 MODULE_PARM_DESC(ql2xallocfwdump,
89                 "Option to enable allocation of memory for a firmware dump "
90                 "during HBA initialization.  Memory allocation requirements "
91                 "vary by ISP type.  Default is 1 - allocate memory.");
92
93 int ql2xextended_error_logging;
94 module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
95 module_param_named(logging, ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
96 MODULE_PARM_DESC(ql2xextended_error_logging,
97                 "Option to enable extended error logging,\n"
98                 "\t\tDefault is 0 - no logging.  0x40000000 - Module Init & Probe.\n"
99                 "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n"
100                 "\t\t0x08000000 - IO tracing.    0x04000000 - DPC Thread.\n"
101                 "\t\t0x02000000 - Async events.  0x01000000 - Timer routines.\n"
102                 "\t\t0x00800000 - User space.    0x00400000 - Task Management.\n"
103                 "\t\t0x00200000 - AER/EEH.       0x00100000 - Multi Q.\n"
104                 "\t\t0x00080000 - P3P Specific.  0x00040000 - Virtual Port.\n"
105                 "\t\t0x00020000 - Buffer Dump.   0x00010000 - Misc.\n"
106                 "\t\t0x00008000 - Verbose.       0x00004000 - Target.\n"
107                 "\t\t0x00002000 - Target Mgmt.   0x00001000 - Target TMF.\n"
108                 "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n"
109                 "\t\t0x1e400000 - Preferred value for capturing essential "
110                 "debug information (equivalent to old "
111                 "ql2xextended_error_logging=1).\n"
112                 "\t\tDo LOGICAL OR of the value to enable more than one level");
113
114 int ql2xshiftctondsd = 6;
115 module_param(ql2xshiftctondsd, int, S_IRUGO);
116 MODULE_PARM_DESC(ql2xshiftctondsd,
117                 "Set to control shifting of command type processing "
118                 "based on total number of SG elements.");
119
120 int ql2xfdmienable = 1;
121 module_param(ql2xfdmienable, int, S_IRUGO|S_IWUSR);
122 module_param_named(fdmi, ql2xfdmienable, int, S_IRUGO|S_IWUSR);
123 MODULE_PARM_DESC(ql2xfdmienable,
124                 "Enables FDMI registrations. "
125                 "0 - no FDMI registrations. "
126                 "1 - provide FDMI registrations (default).");
127
128 #define MAX_Q_DEPTH     64
129 static int ql2xmaxqdepth = MAX_Q_DEPTH;
130 module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
131 MODULE_PARM_DESC(ql2xmaxqdepth,
132                 "Maximum queue depth to set for each LUN. "
133                 "Default is 64.");
134
135 int ql2xenabledif = 2;
136 module_param(ql2xenabledif, int, S_IRUGO);
137 MODULE_PARM_DESC(ql2xenabledif,
138                 " Enable T10-CRC-DIF:\n"
139                 " Default is 2.\n"
140                 "  0 -- No DIF Support\n"
141                 "  1 -- Enable DIF for all types\n"
142                 "  2 -- Enable DIF for all types, except Type 0.\n");
143
144 #if (IS_ENABLED(CONFIG_NVME_FC))
145 int ql2xnvmeenable = 1;
146 #else
147 int ql2xnvmeenable;
148 #endif
149 module_param(ql2xnvmeenable, int, 0644);
150 MODULE_PARM_DESC(ql2xnvmeenable,
151     "Enables NVME support. "
152     "0 - no NVMe.  Default is Y");
153
154 int ql2xenablehba_err_chk = 2;
155 module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR);
156 MODULE_PARM_DESC(ql2xenablehba_err_chk,
157                 " Enable T10-CRC-DIF Error isolation by HBA:\n"
158                 " Default is 2.\n"
159                 "  0 -- Error isolation disabled\n"
160                 "  1 -- Error isolation enabled only for DIX Type 0\n"
161                 "  2 -- Error isolation enabled for all Types\n");
162
163 int ql2xiidmaenable = 1;
164 module_param(ql2xiidmaenable, int, S_IRUGO);
165 MODULE_PARM_DESC(ql2xiidmaenable,
166                 "Enables iIDMA settings "
167                 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
168
169 int ql2xmqsupport = 1;
170 module_param(ql2xmqsupport, int, S_IRUGO);
171 MODULE_PARM_DESC(ql2xmqsupport,
172                 "Enable on demand multiple queue pairs support "
173                 "Default is 1 for supported. "
174                 "Set it to 0 to turn off mq qpair support.");
175
176 int ql2xfwloadbin;
177 module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
178 module_param_named(fwload, ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
179 MODULE_PARM_DESC(ql2xfwloadbin,
180                 "Option to specify location from which to load ISP firmware:.\n"
181                 " 2 -- load firmware via the request_firmware() (hotplug).\n"
182                 "      interface.\n"
183                 " 1 -- load firmware from flash.\n"
184                 " 0 -- use default semantics.\n");
185
186 int ql2xetsenable;
187 module_param(ql2xetsenable, int, S_IRUGO);
188 MODULE_PARM_DESC(ql2xetsenable,
189                 "Enables firmware ETS burst."
190                 "Default is 0 - skip ETS enablement.");
191
192 int ql2xdbwr = 1;
193 module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR);
194 MODULE_PARM_DESC(ql2xdbwr,
195                 "Option to specify scheme for request queue posting.\n"
196                 " 0 -- Regular doorbell.\n"
197                 " 1 -- CAMRAM doorbell (faster).\n");
198
199 int ql2xtargetreset = 1;
200 module_param(ql2xtargetreset, int, S_IRUGO);
201 MODULE_PARM_DESC(ql2xtargetreset,
202                  "Enable target reset."
203                  "Default is 1 - use hw defaults.");
204
205 int ql2xgffidenable;
206 module_param(ql2xgffidenable, int, S_IRUGO);
207 MODULE_PARM_DESC(ql2xgffidenable,
208                 "Enables GFF_ID checks of port type. "
209                 "Default is 0 - Do not use GFF_ID information.");
210
211 int ql2xasynctmfenable = 1;
212 module_param(ql2xasynctmfenable, int, S_IRUGO);
213 MODULE_PARM_DESC(ql2xasynctmfenable,
214                 "Enables issue of TM IOCBs asynchronously via IOCB mechanism"
215                 "Default is 1 - Issue TM IOCBs via mailbox mechanism.");
216
217 int ql2xdontresethba;
218 module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR);
219 MODULE_PARM_DESC(ql2xdontresethba,
220                 "Option to specify reset behaviour.\n"
221                 " 0 (Default) -- Reset on failure.\n"
222                 " 1 -- Do not reset on failure.\n");
223
224 uint64_t ql2xmaxlun = MAX_LUNS;
225 module_param(ql2xmaxlun, ullong, S_IRUGO);
226 MODULE_PARM_DESC(ql2xmaxlun,
227                 "Defines the maximum LU number to register with the SCSI "
228                 "midlayer. Default is 65535.");
229
230 int ql2xmdcapmask = 0x1F;
231 module_param(ql2xmdcapmask, int, S_IRUGO);
232 MODULE_PARM_DESC(ql2xmdcapmask,
233                 "Set the Minidump driver capture mask level. "
234                 "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F.");
235
236 int ql2xmdenable = 1;
237 module_param(ql2xmdenable, int, S_IRUGO);
238 MODULE_PARM_DESC(ql2xmdenable,
239                 "Enable/disable MiniDump. "
240                 "0 - MiniDump disabled. "
241                 "1 (Default) - MiniDump enabled.");
242
243 int ql2xexlogins;
244 module_param(ql2xexlogins, uint, S_IRUGO|S_IWUSR);
245 MODULE_PARM_DESC(ql2xexlogins,
246                  "Number of extended Logins. "
247                  "0 (Default)- Disabled.");
248
249 int ql2xexchoffld = 1024;
250 module_param(ql2xexchoffld, uint, 0644);
251 MODULE_PARM_DESC(ql2xexchoffld,
252         "Number of target exchanges.");
253
254 int ql2xiniexchg = 1024;
255 module_param(ql2xiniexchg, uint, 0644);
256 MODULE_PARM_DESC(ql2xiniexchg,
257         "Number of initiator exchanges.");
258
259 int ql2xfwholdabts;
260 module_param(ql2xfwholdabts, int, S_IRUGO);
261 MODULE_PARM_DESC(ql2xfwholdabts,
262                 "Allow FW to hold status IOCB until ABTS rsp received. "
263                 "0 (Default) Do not set fw option. "
264                 "1 - Set fw option to hold ABTS.");
265
266 int ql2xmvasynctoatio = 1;
267 module_param(ql2xmvasynctoatio, int, S_IRUGO|S_IWUSR);
268 MODULE_PARM_DESC(ql2xmvasynctoatio,
269                 "Move PUREX, ABTS RX and RIDA IOCBs to ATIOQ"
270                 "0 (Default). Do not move IOCBs"
271                 "1 - Move IOCBs.");
272
273 int ql2xautodetectsfp = 1;
274 module_param(ql2xautodetectsfp, int, 0444);
275 MODULE_PARM_DESC(ql2xautodetectsfp,
276                  "Detect SFP range and set appropriate distance.\n"
277                  "1 (Default): Enable\n");
278
279 int ql2xenablemsix = 1;
280 module_param(ql2xenablemsix, int, 0444);
281 MODULE_PARM_DESC(ql2xenablemsix,
282                  "Set to enable MSI or MSI-X interrupt mechanism.\n"
283                  " Default is 1, enable MSI-X interrupt mechanism.\n"
284                  " 0 -- enable traditional pin-based mechanism.\n"
285                  " 1 -- enable MSI-X interrupt mechanism.\n"
286                  " 2 -- enable MSI interrupt mechanism.\n");
287
288 int qla2xuseresexchforels;
289 module_param(qla2xuseresexchforels, int, 0444);
290 MODULE_PARM_DESC(qla2xuseresexchforels,
291                  "Reserve 1/2 of emergency exchanges for ELS.\n"
292                  " 0 (default): disabled");
293
294 static int ql2xprotmask;
295 module_param(ql2xprotmask, int, 0644);
296 MODULE_PARM_DESC(ql2xprotmask,
297                  "Override DIF/DIX protection capabilities mask\n"
298                  "Default is 0 which sets protection mask based on "
299                  "capabilities reported by HBA firmware.\n");
300
301 static int ql2xprotguard;
302 module_param(ql2xprotguard, int, 0644);
303 MODULE_PARM_DESC(ql2xprotguard, "Override choice of DIX checksum\n"
304                  "  0 -- Let HBA firmware decide\n"
305                  "  1 -- Force T10 CRC\n"
306                  "  2 -- Force IP checksum\n");
307
308 int ql2xdifbundlinginternalbuffers;
309 module_param(ql2xdifbundlinginternalbuffers, int, 0644);
310 MODULE_PARM_DESC(ql2xdifbundlinginternalbuffers,
311     "Force using internal buffers for DIF information\n"
312     "0 (Default). Based on check.\n"
313     "1 Force using internal buffers\n");
314
315 int ql2xsmartsan;
316 module_param(ql2xsmartsan, int, 0444);
317 module_param_named(smartsan, ql2xsmartsan, int, 0444);
318 MODULE_PARM_DESC(ql2xsmartsan,
319                 "Send SmartSAN Management Attributes for FDMI Registration."
320                 " Default is 0 - No SmartSAN registration,"
321                 " 1 - Register SmartSAN Management Attributes.");
322
323 int ql2xrdpenable;
324 module_param(ql2xrdpenable, int, 0444);
325 module_param_named(rdpenable, ql2xrdpenable, int, 0444);
326 MODULE_PARM_DESC(ql2xrdpenable,
327                 "Enables RDP responses. "
328                 "0 - no RDP responses (default). "
329                 "1 - provide RDP responses.");
330 int ql2xabts_wait_nvme = 1;
331 module_param(ql2xabts_wait_nvme, int, 0444);
332 MODULE_PARM_DESC(ql2xabts_wait_nvme,
333                  "To wait for ABTS response on I/O timeouts for NVMe. (default: 1)");
334
335
336 static void qla2x00_clear_drv_active(struct qla_hw_data *);
337 static void qla2x00_free_device(scsi_qla_host_t *);
338 static int qla2xxx_map_queues(struct Scsi_Host *shost);
339 static void qla2x00_destroy_deferred_work(struct qla_hw_data *);
340
341
342 static struct scsi_transport_template *qla2xxx_transport_template = NULL;
343 struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
344
345 /* TODO Convert to inlines
346  *
347  * Timer routines
348  */
349
350 __inline__ void
351 qla2x00_start_timer(scsi_qla_host_t *vha, unsigned long interval)
352 {
353         timer_setup(&vha->timer, qla2x00_timer, 0);
354         vha->timer.expires = jiffies + interval * HZ;
355         add_timer(&vha->timer);
356         vha->timer_active = 1;
357 }
358
359 static inline void
360 qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
361 {
362         /* Currently used for 82XX only. */
363         if (vha->device_flags & DFLG_DEV_FAILED) {
364                 ql_dbg(ql_dbg_timer, vha, 0x600d,
365                     "Device in a failed state, returning.\n");
366                 return;
367         }
368
369         mod_timer(&vha->timer, jiffies + interval * HZ);
370 }
371
372 static __inline__ void
373 qla2x00_stop_timer(scsi_qla_host_t *vha)
374 {
375         del_timer_sync(&vha->timer);
376         vha->timer_active = 0;
377 }
378
379 static int qla2x00_do_dpc(void *data);
380
381 static void qla2x00_rst_aen(scsi_qla_host_t *);
382
383 static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
384         struct req_que **, struct rsp_que **);
385 static void qla2x00_free_fw_dump(struct qla_hw_data *);
386 static void qla2x00_mem_free(struct qla_hw_data *);
387 int qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
388         struct qla_qpair *qpair);
389
390 /* -------------------------------------------------------------------------- */
391 static void qla_init_base_qpair(struct scsi_qla_host *vha, struct req_que *req,
392     struct rsp_que *rsp)
393 {
394         struct qla_hw_data *ha = vha->hw;
395
396         rsp->qpair = ha->base_qpair;
397         rsp->req = req;
398         ha->base_qpair->hw = ha;
399         ha->base_qpair->req = req;
400         ha->base_qpair->rsp = rsp;
401         ha->base_qpair->vha = vha;
402         ha->base_qpair->qp_lock_ptr = &ha->hardware_lock;
403         ha->base_qpair->use_shadow_reg = IS_SHADOW_REG_CAPABLE(ha) ? 1 : 0;
404         ha->base_qpair->msix = &ha->msix_entries[QLA_MSIX_RSP_Q];
405         ha->base_qpair->srb_mempool = ha->srb_mempool;
406         INIT_LIST_HEAD(&ha->base_qpair->hints_list);
407         ha->base_qpair->enable_class_2 = ql2xenableclass2;
408         /* init qpair to this cpu. Will adjust at run time. */
409         qla_cpu_update(rsp->qpair, raw_smp_processor_id());
410         ha->base_qpair->pdev = ha->pdev;
411
412         if (IS_QLA27XX(ha) || IS_QLA83XX(ha) || IS_QLA28XX(ha))
413                 ha->base_qpair->reqq_start_iocbs = qla_83xx_start_iocbs;
414 }
415
416 static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req,
417                                 struct rsp_que *rsp)
418 {
419         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
420
421         ha->req_q_map = kcalloc(ha->max_req_queues, sizeof(struct req_que *),
422                                 GFP_KERNEL);
423         if (!ha->req_q_map) {
424                 ql_log(ql_log_fatal, vha, 0x003b,
425                     "Unable to allocate memory for request queue ptrs.\n");
426                 goto fail_req_map;
427         }
428
429         ha->rsp_q_map = kcalloc(ha->max_rsp_queues, sizeof(struct rsp_que *),
430                                 GFP_KERNEL);
431         if (!ha->rsp_q_map) {
432                 ql_log(ql_log_fatal, vha, 0x003c,
433                     "Unable to allocate memory for response queue ptrs.\n");
434                 goto fail_rsp_map;
435         }
436
437         ha->base_qpair = kzalloc(sizeof(struct qla_qpair), GFP_KERNEL);
438         if (ha->base_qpair == NULL) {
439                 ql_log(ql_log_warn, vha, 0x00e0,
440                     "Failed to allocate base queue pair memory.\n");
441                 goto fail_base_qpair;
442         }
443
444         qla_init_base_qpair(vha, req, rsp);
445
446         if ((ql2xmqsupport || ql2xnvmeenable) && ha->max_qpairs) {
447                 ha->queue_pair_map = kcalloc(ha->max_qpairs, sizeof(struct qla_qpair *),
448                         GFP_KERNEL);
449                 if (!ha->queue_pair_map) {
450                         ql_log(ql_log_fatal, vha, 0x0180,
451                             "Unable to allocate memory for queue pair ptrs.\n");
452                         goto fail_qpair_map;
453                 }
454         }
455
456         /*
457          * Make sure we record at least the request and response queue zero in
458          * case we need to free them if part of the probe fails.
459          */
460         ha->rsp_q_map[0] = rsp;
461         ha->req_q_map[0] = req;
462         set_bit(0, ha->rsp_qid_map);
463         set_bit(0, ha->req_qid_map);
464         return 0;
465
466 fail_qpair_map:
467         kfree(ha->base_qpair);
468         ha->base_qpair = NULL;
469 fail_base_qpair:
470         kfree(ha->rsp_q_map);
471         ha->rsp_q_map = NULL;
472 fail_rsp_map:
473         kfree(ha->req_q_map);
474         ha->req_q_map = NULL;
475 fail_req_map:
476         return -ENOMEM;
477 }
478
479 static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
480 {
481         if (IS_QLAFX00(ha)) {
482                 if (req && req->ring_fx00)
483                         dma_free_coherent(&ha->pdev->dev,
484                             (req->length_fx00 + 1) * sizeof(request_t),
485                             req->ring_fx00, req->dma_fx00);
486         } else if (req && req->ring)
487                 dma_free_coherent(&ha->pdev->dev,
488                 (req->length + 1) * sizeof(request_t),
489                 req->ring, req->dma);
490
491         if (req)
492                 kfree(req->outstanding_cmds);
493
494         kfree(req);
495 }
496
497 static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
498 {
499         if (IS_QLAFX00(ha)) {
500                 if (rsp && rsp->ring_fx00)
501                         dma_free_coherent(&ha->pdev->dev,
502                             (rsp->length_fx00 + 1) * sizeof(request_t),
503                             rsp->ring_fx00, rsp->dma_fx00);
504         } else if (rsp && rsp->ring) {
505                 dma_free_coherent(&ha->pdev->dev,
506                 (rsp->length + 1) * sizeof(response_t),
507                 rsp->ring, rsp->dma);
508         }
509         kfree(rsp);
510 }
511
512 static void qla2x00_free_queues(struct qla_hw_data *ha)
513 {
514         struct req_que *req;
515         struct rsp_que *rsp;
516         int cnt;
517         unsigned long flags;
518
519         if (ha->queue_pair_map) {
520                 kfree(ha->queue_pair_map);
521                 ha->queue_pair_map = NULL;
522         }
523         if (ha->base_qpair) {
524                 kfree(ha->base_qpair);
525                 ha->base_qpair = NULL;
526         }
527
528         spin_lock_irqsave(&ha->hardware_lock, flags);
529         for (cnt = 0; cnt < ha->max_req_queues; cnt++) {
530                 if (!test_bit(cnt, ha->req_qid_map))
531                         continue;
532
533                 req = ha->req_q_map[cnt];
534                 clear_bit(cnt, ha->req_qid_map);
535                 ha->req_q_map[cnt] = NULL;
536
537                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
538                 qla2x00_free_req_que(ha, req);
539                 spin_lock_irqsave(&ha->hardware_lock, flags);
540         }
541         spin_unlock_irqrestore(&ha->hardware_lock, flags);
542
543         kfree(ha->req_q_map);
544         ha->req_q_map = NULL;
545
546
547         spin_lock_irqsave(&ha->hardware_lock, flags);
548         for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) {
549                 if (!test_bit(cnt, ha->rsp_qid_map))
550                         continue;
551
552                 rsp = ha->rsp_q_map[cnt];
553                 clear_bit(cnt, ha->rsp_qid_map);
554                 ha->rsp_q_map[cnt] =  NULL;
555                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
556                 qla2x00_free_rsp_que(ha, rsp);
557                 spin_lock_irqsave(&ha->hardware_lock, flags);
558         }
559         spin_unlock_irqrestore(&ha->hardware_lock, flags);
560
561         kfree(ha->rsp_q_map);
562         ha->rsp_q_map = NULL;
563 }
564
565 static char *
566 qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str, size_t str_len)
567 {
568         struct qla_hw_data *ha = vha->hw;
569         static const char *const pci_bus_modes[] = {
570                 "33", "66", "100", "133",
571         };
572         uint16_t pci_bus;
573
574         pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
575         if (pci_bus) {
576                 snprintf(str, str_len, "PCI-X (%s MHz)",
577                          pci_bus_modes[pci_bus]);
578         } else {
579                 pci_bus = (ha->pci_attr & BIT_8) >> 8;
580                 snprintf(str, str_len, "PCI (%s MHz)", pci_bus_modes[pci_bus]);
581         }
582
583         return str;
584 }
585
586 static char *
587 qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str, size_t str_len)
588 {
589         static const char *const pci_bus_modes[] = {
590                 "33", "66", "100", "133",
591         };
592         struct qla_hw_data *ha = vha->hw;
593         uint32_t pci_bus;
594
595         if (pci_is_pcie(ha->pdev)) {
596                 uint32_t lstat, lspeed, lwidth;
597                 const char *speed_str;
598
599                 pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat);
600                 lspeed = lstat & PCI_EXP_LNKCAP_SLS;
601                 lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4;
602
603                 switch (lspeed) {
604                 case 1:
605                         speed_str = "2.5GT/s";
606                         break;
607                 case 2:
608                         speed_str = "5.0GT/s";
609                         break;
610                 case 3:
611                         speed_str = "8.0GT/s";
612                         break;
613                 case 4:
614                         speed_str = "16.0GT/s";
615                         break;
616                 default:
617                         speed_str = "<unknown>";
618                         break;
619                 }
620                 snprintf(str, str_len, "PCIe (%s x%d)", speed_str, lwidth);
621
622                 return str;
623         }
624
625         pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
626         if (pci_bus == 0 || pci_bus == 8)
627                 snprintf(str, str_len, "PCI (%s MHz)",
628                          pci_bus_modes[pci_bus >> 3]);
629         else
630                 snprintf(str, str_len, "PCI-X Mode %d (%s MHz)",
631                          pci_bus & 4 ? 2 : 1,
632                          pci_bus_modes[pci_bus & 3]);
633
634         return str;
635 }
636
637 static char *
638 qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
639 {
640         char un_str[10];
641         struct qla_hw_data *ha = vha->hw;
642
643         snprintf(str, size, "%d.%02d.%02d ", ha->fw_major_version,
644             ha->fw_minor_version, ha->fw_subminor_version);
645
646         if (ha->fw_attributes & BIT_9) {
647                 strcat(str, "FLX");
648                 return (str);
649         }
650
651         switch (ha->fw_attributes & 0xFF) {
652         case 0x7:
653                 strcat(str, "EF");
654                 break;
655         case 0x17:
656                 strcat(str, "TP");
657                 break;
658         case 0x37:
659                 strcat(str, "IP");
660                 break;
661         case 0x77:
662                 strcat(str, "VI");
663                 break;
664         default:
665                 sprintf(un_str, "(%x)", ha->fw_attributes);
666                 strcat(str, un_str);
667                 break;
668         }
669         if (ha->fw_attributes & 0x100)
670                 strcat(str, "X");
671
672         return (str);
673 }
674
675 static char *
676 qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
677 {
678         struct qla_hw_data *ha = vha->hw;
679
680         snprintf(str, size, "%d.%02d.%02d (%x)", ha->fw_major_version,
681             ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes);
682         return str;
683 }
684
685 void qla2x00_sp_free_dma(srb_t *sp)
686 {
687         struct qla_hw_data *ha = sp->vha->hw;
688         struct scsi_cmnd *cmd = GET_CMD_SP(sp);
689
690         if (sp->flags & SRB_DMA_VALID) {
691                 scsi_dma_unmap(cmd);
692                 sp->flags &= ~SRB_DMA_VALID;
693         }
694
695         if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
696                 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
697                     scsi_prot_sg_count(cmd), cmd->sc_data_direction);
698                 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
699         }
700
701         if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
702                 /* List assured to be having elements */
703                 qla2x00_clean_dsd_pool(ha, sp->u.scmd.crc_ctx);
704                 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
705         }
706
707         if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
708                 struct crc_context *ctx0 = sp->u.scmd.crc_ctx;
709
710                 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma);
711                 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
712         }
713
714         if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
715                 struct ct6_dsd *ctx1 = sp->u.scmd.ct6_ctx;
716
717                 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
718                     ctx1->fcp_cmnd_dma);
719                 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list);
720                 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt;
721                 ha->gbl_dsd_avail += ctx1->dsd_use_cnt;
722                 mempool_free(ctx1, ha->ctx_mempool);
723         }
724 }
725
726 void qla2x00_sp_compl(srb_t *sp, int res)
727 {
728         struct scsi_cmnd *cmd = GET_CMD_SP(sp);
729         struct completion *comp = sp->comp;
730
731         sp->free(sp);
732         cmd->result = res;
733         CMD_SP(cmd) = NULL;
734         cmd->scsi_done(cmd);
735         if (comp)
736                 complete(comp);
737 }
738
739 void qla2xxx_qpair_sp_free_dma(srb_t *sp)
740 {
741         struct scsi_cmnd *cmd = GET_CMD_SP(sp);
742         struct qla_hw_data *ha = sp->fcport->vha->hw;
743
744         if (sp->flags & SRB_DMA_VALID) {
745                 scsi_dma_unmap(cmd);
746                 sp->flags &= ~SRB_DMA_VALID;
747         }
748
749         if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
750                 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
751                     scsi_prot_sg_count(cmd), cmd->sc_data_direction);
752                 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
753         }
754
755         if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
756                 /* List assured to be having elements */
757                 qla2x00_clean_dsd_pool(ha, sp->u.scmd.crc_ctx);
758                 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
759         }
760
761         if (sp->flags & SRB_DIF_BUNDL_DMA_VALID) {
762                 struct crc_context *difctx = sp->u.scmd.crc_ctx;
763                 struct dsd_dma *dif_dsd, *nxt_dsd;
764
765                 list_for_each_entry_safe(dif_dsd, nxt_dsd,
766                     &difctx->ldif_dma_hndl_list, list) {
767                         list_del(&dif_dsd->list);
768                         dma_pool_free(ha->dif_bundl_pool, dif_dsd->dsd_addr,
769                             dif_dsd->dsd_list_dma);
770                         kfree(dif_dsd);
771                         difctx->no_dif_bundl--;
772                 }
773
774                 list_for_each_entry_safe(dif_dsd, nxt_dsd,
775                     &difctx->ldif_dsd_list, list) {
776                         list_del(&dif_dsd->list);
777                         dma_pool_free(ha->dl_dma_pool, dif_dsd->dsd_addr,
778                             dif_dsd->dsd_list_dma);
779                         kfree(dif_dsd);
780                         difctx->no_ldif_dsd--;
781                 }
782
783                 if (difctx->no_ldif_dsd) {
784                         ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022,
785                             "%s: difctx->no_ldif_dsd=%x\n",
786                             __func__, difctx->no_ldif_dsd);
787                 }
788
789                 if (difctx->no_dif_bundl) {
790                         ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022,
791                             "%s: difctx->no_dif_bundl=%x\n",
792                             __func__, difctx->no_dif_bundl);
793                 }
794                 sp->flags &= ~SRB_DIF_BUNDL_DMA_VALID;
795         }
796
797         if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
798                 struct ct6_dsd *ctx1 = sp->u.scmd.ct6_ctx;
799
800                 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
801                     ctx1->fcp_cmnd_dma);
802                 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list);
803                 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt;
804                 ha->gbl_dsd_avail += ctx1->dsd_use_cnt;
805                 mempool_free(ctx1, ha->ctx_mempool);
806                 sp->flags &= ~SRB_FCP_CMND_DMA_VALID;
807         }
808
809         if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
810                 struct crc_context *ctx0 = sp->u.scmd.crc_ctx;
811
812                 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma);
813                 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
814         }
815 }
816
817 void qla2xxx_qpair_sp_compl(srb_t *sp, int res)
818 {
819         struct scsi_cmnd *cmd = GET_CMD_SP(sp);
820         struct completion *comp = sp->comp;
821
822         sp->free(sp);
823         cmd->result = res;
824         CMD_SP(cmd) = NULL;
825         cmd->scsi_done(cmd);
826         if (comp)
827                 complete(comp);
828 }
829
830 static int
831 qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
832 {
833         scsi_qla_host_t *vha = shost_priv(host);
834         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
835         struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
836         struct qla_hw_data *ha = vha->hw;
837         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
838         srb_t *sp;
839         int rval;
840
841         if (unlikely(test_bit(UNLOADING, &base_vha->dpc_flags)) ||
842             WARN_ON_ONCE(!rport)) {
843                 cmd->result = DID_NO_CONNECT << 16;
844                 goto qc24_fail_command;
845         }
846
847         if (ha->mqenable) {
848                 uint32_t tag;
849                 uint16_t hwq;
850                 struct qla_qpair *qpair = NULL;
851
852                 tag = blk_mq_unique_tag(cmd->request);
853                 hwq = blk_mq_unique_tag_to_hwq(tag);
854                 qpair = ha->queue_pair_map[hwq];
855
856                 if (qpair)
857                         return qla2xxx_mqueuecommand(host, cmd, qpair);
858         }
859
860         if (ha->flags.eeh_busy) {
861                 if (ha->flags.pci_channel_io_perm_failure) {
862                         ql_dbg(ql_dbg_aer, vha, 0x9010,
863                             "PCI Channel IO permanent failure, exiting "
864                             "cmd=%p.\n", cmd);
865                         cmd->result = DID_NO_CONNECT << 16;
866                 } else {
867                         ql_dbg(ql_dbg_aer, vha, 0x9011,
868                             "EEH_Busy, Requeuing the cmd=%p.\n", cmd);
869                         cmd->result = DID_REQUEUE << 16;
870                 }
871                 goto qc24_fail_command;
872         }
873
874         rval = fc_remote_port_chkready(rport);
875         if (rval) {
876                 cmd->result = rval;
877                 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003,
878                     "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
879                     cmd, rval);
880                 goto qc24_fail_command;
881         }
882
883         if (!vha->flags.difdix_supported &&
884                 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
885                         ql_dbg(ql_dbg_io, vha, 0x3004,
886                             "DIF Cap not reg, fail DIF capable cmd's:%p.\n",
887                             cmd);
888                         cmd->result = DID_NO_CONNECT << 16;
889                         goto qc24_fail_command;
890         }
891
892         if (!fcport || fcport->deleted) {
893                 cmd->result = DID_IMM_RETRY << 16;
894                 goto qc24_fail_command;
895         }
896
897         if (atomic_read(&fcport->state) != FCS_ONLINE || fcport->deleted) {
898                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
899                         atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
900                         ql_dbg(ql_dbg_io, vha, 0x3005,
901                             "Returning DNC, fcport_state=%d loop_state=%d.\n",
902                             atomic_read(&fcport->state),
903                             atomic_read(&base_vha->loop_state));
904                         cmd->result = DID_NO_CONNECT << 16;
905                         goto qc24_fail_command;
906                 }
907                 goto qc24_target_busy;
908         }
909
910         /*
911          * Return target busy if we've received a non-zero retry_delay_timer
912          * in a FCP_RSP.
913          */
914         if (fcport->retry_delay_timestamp == 0) {
915                 /* retry delay not set */
916         } else if (time_after(jiffies, fcport->retry_delay_timestamp))
917                 fcport->retry_delay_timestamp = 0;
918         else
919                 goto qc24_target_busy;
920
921         sp = scsi_cmd_priv(cmd);
922         qla2xxx_init_sp(sp, vha, vha->hw->base_qpair, fcport);
923
924         sp->u.scmd.cmd = cmd;
925         sp->type = SRB_SCSI_CMD;
926
927         CMD_SP(cmd) = (void *)sp;
928         sp->free = qla2x00_sp_free_dma;
929         sp->done = qla2x00_sp_compl;
930
931         rval = ha->isp_ops->start_scsi(sp);
932         if (rval != QLA_SUCCESS) {
933                 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013,
934                     "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
935                 goto qc24_host_busy_free_sp;
936         }
937
938         return 0;
939
940 qc24_host_busy_free_sp:
941         sp->free(sp);
942
943 qc24_target_busy:
944         return SCSI_MLQUEUE_TARGET_BUSY;
945
946 qc24_fail_command:
947         cmd->scsi_done(cmd);
948
949         return 0;
950 }
951
952 /* For MQ supported I/O */
953 int
954 qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
955     struct qla_qpair *qpair)
956 {
957         scsi_qla_host_t *vha = shost_priv(host);
958         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
959         struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
960         struct qla_hw_data *ha = vha->hw;
961         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
962         srb_t *sp;
963         int rval;
964
965         rval = rport ? fc_remote_port_chkready(rport) : (DID_NO_CONNECT << 16);
966         if (rval) {
967                 cmd->result = rval;
968                 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3076,
969                     "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
970                     cmd, rval);
971                 goto qc24_fail_command;
972         }
973
974         if (!qpair->online) {
975                 ql_dbg(ql_dbg_io, vha, 0x3077,
976                        "qpair not online. eeh_busy=%d.\n", ha->flags.eeh_busy);
977                 cmd->result = DID_NO_CONNECT << 16;
978                 goto qc24_fail_command;
979         }
980
981         if (!fcport || fcport->deleted) {
982                 cmd->result = DID_IMM_RETRY << 16;
983                 goto qc24_fail_command;
984         }
985
986         if (atomic_read(&fcport->state) != FCS_ONLINE || fcport->deleted) {
987                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
988                         atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
989                         ql_dbg(ql_dbg_io, vha, 0x3077,
990                             "Returning DNC, fcport_state=%d loop_state=%d.\n",
991                             atomic_read(&fcport->state),
992                             atomic_read(&base_vha->loop_state));
993                         cmd->result = DID_NO_CONNECT << 16;
994                         goto qc24_fail_command;
995                 }
996                 goto qc24_target_busy;
997         }
998
999         /*
1000          * Return target busy if we've received a non-zero retry_delay_timer
1001          * in a FCP_RSP.
1002          */
1003         if (fcport->retry_delay_timestamp == 0) {
1004                 /* retry delay not set */
1005         } else if (time_after(jiffies, fcport->retry_delay_timestamp))
1006                 fcport->retry_delay_timestamp = 0;
1007         else
1008                 goto qc24_target_busy;
1009
1010         sp = scsi_cmd_priv(cmd);
1011         qla2xxx_init_sp(sp, vha, qpair, fcport);
1012
1013         sp->u.scmd.cmd = cmd;
1014         sp->type = SRB_SCSI_CMD;
1015         CMD_SP(cmd) = (void *)sp;
1016         sp->free = qla2xxx_qpair_sp_free_dma;
1017         sp->done = qla2xxx_qpair_sp_compl;
1018
1019         rval = ha->isp_ops->start_scsi_mq(sp);
1020         if (rval != QLA_SUCCESS) {
1021                 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3078,
1022                     "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
1023                 goto qc24_host_busy_free_sp;
1024         }
1025
1026         return 0;
1027
1028 qc24_host_busy_free_sp:
1029         sp->free(sp);
1030
1031 qc24_target_busy:
1032         return SCSI_MLQUEUE_TARGET_BUSY;
1033
1034 qc24_fail_command:
1035         cmd->scsi_done(cmd);
1036
1037         return 0;
1038 }
1039
1040 /*
1041  * qla2x00_eh_wait_on_command
1042  *    Waits for the command to be returned by the Firmware for some
1043  *    max time.
1044  *
1045  * Input:
1046  *    cmd = Scsi Command to wait on.
1047  *
1048  * Return:
1049  *    Completed in time : QLA_SUCCESS
1050  *    Did not complete in time : QLA_FUNCTION_FAILED
1051  */
1052 static int
1053 qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
1054 {
1055 #define ABORT_POLLING_PERIOD    1000
1056 #define ABORT_WAIT_ITER         ((2 * 1000) / (ABORT_POLLING_PERIOD))
1057         unsigned long wait_iter = ABORT_WAIT_ITER;
1058         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1059         struct qla_hw_data *ha = vha->hw;
1060         int ret = QLA_SUCCESS;
1061
1062         if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) {
1063                 ql_dbg(ql_dbg_taskm, vha, 0x8005,
1064                     "Return:eh_wait.\n");
1065                 return ret;
1066         }
1067
1068         while (CMD_SP(cmd) && wait_iter--) {
1069                 msleep(ABORT_POLLING_PERIOD);
1070         }
1071         if (CMD_SP(cmd))
1072                 ret = QLA_FUNCTION_FAILED;
1073
1074         return ret;
1075 }
1076
1077 /*
1078  * qla2x00_wait_for_hba_online
1079  *    Wait till the HBA is online after going through
1080  *    <= MAX_RETRIES_OF_ISP_ABORT  or
1081  *    finally HBA is disabled ie marked offline
1082  *
1083  * Input:
1084  *     ha - pointer to host adapter structure
1085  *
1086  * Note:
1087  *    Does context switching-Release SPIN_LOCK
1088  *    (if any) before calling this routine.
1089  *
1090  * Return:
1091  *    Success (Adapter is online) : 0
1092  *    Failed  (Adapter is offline/disabled) : 1
1093  */
1094 int
1095 qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
1096 {
1097         int             return_status;
1098         unsigned long   wait_online;
1099         struct qla_hw_data *ha = vha->hw;
1100         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1101
1102         wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1103         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1104             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1105             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1106             ha->dpc_active) && time_before(jiffies, wait_online)) {
1107
1108                 msleep(1000);
1109         }
1110         if (base_vha->flags.online)
1111                 return_status = QLA_SUCCESS;
1112         else
1113                 return_status = QLA_FUNCTION_FAILED;
1114
1115         return (return_status);
1116 }
1117
1118 static inline int test_fcport_count(scsi_qla_host_t *vha)
1119 {
1120         struct qla_hw_data *ha = vha->hw;
1121         unsigned long flags;
1122         int res;
1123
1124         spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1125         ql_dbg(ql_dbg_init, vha, 0x00ec,
1126             "tgt %p, fcport_count=%d\n",
1127             vha, vha->fcport_count);
1128         res = (vha->fcport_count == 0);
1129         spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
1130
1131         return res;
1132 }
1133
1134 /*
1135  * qla2x00_wait_for_sess_deletion can only be called from remove_one.
1136  * it has dependency on UNLOADING flag to stop device discovery
1137  */
1138 void
1139 qla2x00_wait_for_sess_deletion(scsi_qla_host_t *vha)
1140 {
1141         u8 i;
1142
1143         qla2x00_mark_all_devices_lost(vha);
1144
1145         for (i = 0; i < 10; i++) {
1146                 if (wait_event_timeout(vha->fcport_waitQ,
1147                     test_fcport_count(vha), HZ) > 0)
1148                         break;
1149         }
1150
1151         flush_workqueue(vha->hw->wq);
1152 }
1153
1154 /*
1155  * qla2x00_wait_for_hba_ready
1156  * Wait till the HBA is ready before doing driver unload
1157  *
1158  * Input:
1159  *     ha - pointer to host adapter structure
1160  *
1161  * Note:
1162  *    Does context switching-Release SPIN_LOCK
1163  *    (if any) before calling this routine.
1164  *
1165  */
1166 static void
1167 qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha)
1168 {
1169         struct qla_hw_data *ha = vha->hw;
1170         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1171
1172         while ((qla2x00_reset_active(vha) || ha->dpc_active ||
1173                 ha->flags.mbox_busy) ||
1174                test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags) ||
1175                test_bit(FX00_TARGET_SCAN, &vha->dpc_flags)) {
1176                 if (test_bit(UNLOADING, &base_vha->dpc_flags))
1177                         break;
1178                 msleep(1000);
1179         }
1180 }
1181
1182 int
1183 qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
1184 {
1185         int             return_status;
1186         unsigned long   wait_reset;
1187         struct qla_hw_data *ha = vha->hw;
1188         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1189
1190         wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1191         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1192             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1193             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1194             ha->dpc_active) && time_before(jiffies, wait_reset)) {
1195
1196                 msleep(1000);
1197
1198                 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
1199                     ha->flags.chip_reset_done)
1200                         break;
1201         }
1202         if (ha->flags.chip_reset_done)
1203                 return_status = QLA_SUCCESS;
1204         else
1205                 return_status = QLA_FUNCTION_FAILED;
1206
1207         return return_status;
1208 }
1209
1210 /**************************************************************************
1211 * qla2xxx_eh_abort
1212 *
1213 * Description:
1214 *    The abort function will abort the specified command.
1215 *
1216 * Input:
1217 *    cmd = Linux SCSI command packet to be aborted.
1218 *
1219 * Returns:
1220 *    Either SUCCESS or FAILED.
1221 *
1222 * Note:
1223 *    Only return FAILED if command not returned by firmware.
1224 **************************************************************************/
1225 static int
1226 qla2xxx_eh_abort(struct scsi_cmnd *cmd)
1227 {
1228         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1229         DECLARE_COMPLETION_ONSTACK(comp);
1230         srb_t *sp;
1231         int ret;
1232         unsigned int id;
1233         uint64_t lun;
1234         int rval;
1235         struct qla_hw_data *ha = vha->hw;
1236         uint32_t ratov_j;
1237         struct qla_qpair *qpair;
1238         unsigned long flags;
1239
1240         if (qla2x00_isp_reg_stat(ha)) {
1241                 ql_log(ql_log_info, vha, 0x8042,
1242                     "PCI/Register disconnect, exiting.\n");
1243                 qla_pci_set_eeh_busy(vha);
1244                 return FAILED;
1245         }
1246
1247         ret = fc_block_scsi_eh(cmd);
1248         if (ret != 0)
1249                 return ret;
1250
1251         sp = scsi_cmd_priv(cmd);
1252         qpair = sp->qpair;
1253
1254         vha->cmd_timeout_cnt++;
1255
1256         if ((sp->fcport && sp->fcport->deleted) || !qpair)
1257                 return SUCCESS;
1258
1259         spin_lock_irqsave(qpair->qp_lock_ptr, flags);
1260         sp->comp = &comp;
1261         spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
1262
1263
1264         id = cmd->device->id;
1265         lun = cmd->device->lun;
1266
1267         ql_dbg(ql_dbg_taskm, vha, 0x8002,
1268             "Aborting from RISC nexus=%ld:%d:%llu sp=%p cmd=%p handle=%x\n",
1269             vha->host_no, id, lun, sp, cmd, sp->handle);
1270
1271         /*
1272          * Abort will release the original Command/sp from FW. Let the
1273          * original command call scsi_done. In return, he will wakeup
1274          * this sleeping thread.
1275          */
1276         rval = ha->isp_ops->abort_command(sp);
1277
1278         ql_dbg(ql_dbg_taskm, vha, 0x8003,
1279                "Abort command mbx cmd=%p, rval=%x.\n", cmd, rval);
1280
1281         /* Wait for the command completion. */
1282         ratov_j = ha->r_a_tov/10 * 4 * 1000;
1283         ratov_j = msecs_to_jiffies(ratov_j);
1284         switch (rval) {
1285         case QLA_SUCCESS:
1286                 if (!wait_for_completion_timeout(&comp, ratov_j)) {
1287                         ql_dbg(ql_dbg_taskm, vha, 0xffff,
1288                             "%s: Abort wait timer (4 * R_A_TOV[%d]) expired\n",
1289                             __func__, ha->r_a_tov/10);
1290                         ret = FAILED;
1291                 } else {
1292                         ret = SUCCESS;
1293                 }
1294                 break;
1295         default:
1296                 ret = FAILED;
1297                 break;
1298         }
1299
1300         sp->comp = NULL;
1301
1302         ql_log(ql_log_info, vha, 0x801c,
1303             "Abort command issued nexus=%ld:%d:%llu -- %x.\n",
1304             vha->host_no, id, lun, ret);
1305
1306         return ret;
1307 }
1308
1309 /*
1310  * Returns: QLA_SUCCESS or QLA_FUNCTION_FAILED.
1311  */
1312 int
1313 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
1314         uint64_t l, enum nexus_wait_type type)
1315 {
1316         int cnt, match, status;
1317         unsigned long flags;
1318         struct qla_hw_data *ha = vha->hw;
1319         struct req_que *req;
1320         srb_t *sp;
1321         struct scsi_cmnd *cmd;
1322
1323         status = QLA_SUCCESS;
1324
1325         spin_lock_irqsave(&ha->hardware_lock, flags);
1326         req = vha->req;
1327         for (cnt = 1; status == QLA_SUCCESS &&
1328                 cnt < req->num_outstanding_cmds; cnt++) {
1329                 sp = req->outstanding_cmds[cnt];
1330                 if (!sp)
1331                         continue;
1332                 if (sp->type != SRB_SCSI_CMD)
1333                         continue;
1334                 if (vha->vp_idx != sp->vha->vp_idx)
1335                         continue;
1336                 match = 0;
1337                 cmd = GET_CMD_SP(sp);
1338                 switch (type) {
1339                 case WAIT_HOST:
1340                         match = 1;
1341                         break;
1342                 case WAIT_TARGET:
1343                         match = cmd->device->id == t;
1344                         break;
1345                 case WAIT_LUN:
1346                         match = (cmd->device->id == t &&
1347                                 cmd->device->lun == l);
1348                         break;
1349                 }
1350                 if (!match)
1351                         continue;
1352
1353                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1354                 status = qla2x00_eh_wait_on_command(cmd);
1355                 spin_lock_irqsave(&ha->hardware_lock, flags);
1356         }
1357         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1358
1359         return status;
1360 }
1361
1362 static char *reset_errors[] = {
1363         "HBA not online",
1364         "HBA not ready",
1365         "Task management failed",
1366         "Waiting for command completions",
1367 };
1368
1369 static int
1370 __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
1371     struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, uint64_t, int))
1372 {
1373         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1374         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1375         int err;
1376
1377         if (!fcport) {
1378                 return FAILED;
1379         }
1380
1381         err = fc_block_scsi_eh(cmd);
1382         if (err != 0)
1383                 return err;
1384
1385         if (fcport->deleted)
1386                 return SUCCESS;
1387
1388         ql_log(ql_log_info, vha, 0x8009,
1389             "%s RESET ISSUED nexus=%ld:%d:%llu cmd=%p.\n", name, vha->host_no,
1390             cmd->device->id, cmd->device->lun, cmd);
1391
1392         err = 0;
1393         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1394                 ql_log(ql_log_warn, vha, 0x800a,
1395                     "Wait for hba online failed for cmd=%p.\n", cmd);
1396                 goto eh_reset_failed;
1397         }
1398         err = 2;
1399         if (do_reset(fcport, cmd->device->lun, 1)
1400                 != QLA_SUCCESS) {
1401                 ql_log(ql_log_warn, vha, 0x800c,
1402                     "do_reset failed for cmd=%p.\n", cmd);
1403                 goto eh_reset_failed;
1404         }
1405         err = 3;
1406         if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
1407             cmd->device->lun, type) != QLA_SUCCESS) {
1408                 ql_log(ql_log_warn, vha, 0x800d,
1409                     "wait for pending cmds failed for cmd=%p.\n", cmd);
1410                 goto eh_reset_failed;
1411         }
1412
1413         ql_log(ql_log_info, vha, 0x800e,
1414             "%s RESET SUCCEEDED nexus:%ld:%d:%llu cmd=%p.\n", name,
1415             vha->host_no, cmd->device->id, cmd->device->lun, cmd);
1416
1417         return SUCCESS;
1418
1419 eh_reset_failed:
1420         ql_log(ql_log_info, vha, 0x800f,
1421             "%s RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n", name,
1422             reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun,
1423             cmd);
1424         vha->reset_cmd_err_cnt++;
1425         return FAILED;
1426 }
1427
1428 static int
1429 qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
1430 {
1431         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1432         struct qla_hw_data *ha = vha->hw;
1433
1434         if (qla2x00_isp_reg_stat(ha)) {
1435                 ql_log(ql_log_info, vha, 0x803e,
1436                     "PCI/Register disconnect, exiting.\n");
1437                 qla_pci_set_eeh_busy(vha);
1438                 return FAILED;
1439         }
1440
1441         return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
1442             ha->isp_ops->lun_reset);
1443 }
1444
1445 static int
1446 qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
1447 {
1448         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1449         struct qla_hw_data *ha = vha->hw;
1450
1451         if (qla2x00_isp_reg_stat(ha)) {
1452                 ql_log(ql_log_info, vha, 0x803f,
1453                     "PCI/Register disconnect, exiting.\n");
1454                 qla_pci_set_eeh_busy(vha);
1455                 return FAILED;
1456         }
1457
1458         return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
1459             ha->isp_ops->target_reset);
1460 }
1461
1462 /**************************************************************************
1463 * qla2xxx_eh_bus_reset
1464 *
1465 * Description:
1466 *    The bus reset function will reset the bus and abort any executing
1467 *    commands.
1468 *
1469 * Input:
1470 *    cmd = Linux SCSI command packet of the command that cause the
1471 *          bus reset.
1472 *
1473 * Returns:
1474 *    SUCCESS/FAILURE (defined as macro in scsi.h).
1475 *
1476 **************************************************************************/
1477 static int
1478 qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1479 {
1480         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1481         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1482         int ret = FAILED;
1483         unsigned int id;
1484         uint64_t lun;
1485         struct qla_hw_data *ha = vha->hw;
1486
1487         if (qla2x00_isp_reg_stat(ha)) {
1488                 ql_log(ql_log_info, vha, 0x8040,
1489                     "PCI/Register disconnect, exiting.\n");
1490                 qla_pci_set_eeh_busy(vha);
1491                 return FAILED;
1492         }
1493
1494         id = cmd->device->id;
1495         lun = cmd->device->lun;
1496
1497         if (!fcport) {
1498                 return ret;
1499         }
1500
1501         ret = fc_block_scsi_eh(cmd);
1502         if (ret != 0)
1503                 return ret;
1504         ret = FAILED;
1505
1506         if (qla2x00_chip_is_down(vha))
1507                 return ret;
1508
1509         ql_log(ql_log_info, vha, 0x8012,
1510             "BUS RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1511
1512         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1513                 ql_log(ql_log_fatal, vha, 0x8013,
1514                     "Wait for hba online failed board disabled.\n");
1515                 goto eh_bus_reset_done;
1516         }
1517
1518         if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
1519                 ret = SUCCESS;
1520
1521         if (ret == FAILED)
1522                 goto eh_bus_reset_done;
1523
1524         /* Flush outstanding commands. */
1525         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
1526             QLA_SUCCESS) {
1527                 ql_log(ql_log_warn, vha, 0x8014,
1528                     "Wait for pending commands failed.\n");
1529                 ret = FAILED;
1530         }
1531
1532 eh_bus_reset_done:
1533         ql_log(ql_log_warn, vha, 0x802b,
1534             "BUS RESET %s nexus=%ld:%d:%llu.\n",
1535             (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1536
1537         return ret;
1538 }
1539
1540 /**************************************************************************
1541 * qla2xxx_eh_host_reset
1542 *
1543 * Description:
1544 *    The reset function will reset the Adapter.
1545 *
1546 * Input:
1547 *      cmd = Linux SCSI command packet of the command that cause the
1548 *            adapter reset.
1549 *
1550 * Returns:
1551 *      Either SUCCESS or FAILED.
1552 *
1553 * Note:
1554 **************************************************************************/
1555 static int
1556 qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1557 {
1558         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1559         struct qla_hw_data *ha = vha->hw;
1560         int ret = FAILED;
1561         unsigned int id;
1562         uint64_t lun;
1563         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1564
1565         if (qla2x00_isp_reg_stat(ha)) {
1566                 ql_log(ql_log_info, vha, 0x8041,
1567                     "PCI/Register disconnect, exiting.\n");
1568                 qla_pci_set_eeh_busy(vha);
1569                 return SUCCESS;
1570         }
1571
1572         id = cmd->device->id;
1573         lun = cmd->device->lun;
1574
1575         ql_log(ql_log_info, vha, 0x8018,
1576             "ADAPTER RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1577
1578         /*
1579          * No point in issuing another reset if one is active.  Also do not
1580          * attempt a reset if we are updating flash.
1581          */
1582         if (qla2x00_reset_active(vha) || ha->optrom_state != QLA_SWAITING)
1583                 goto eh_host_reset_lock;
1584
1585         if (vha != base_vha) {
1586                 if (qla2x00_vp_abort_isp(vha))
1587                         goto eh_host_reset_lock;
1588         } else {
1589                 if (IS_P3P_TYPE(vha->hw)) {
1590                         if (!qla82xx_fcoe_ctx_reset(vha)) {
1591                                 /* Ctx reset success */
1592                                 ret = SUCCESS;
1593                                 goto eh_host_reset_lock;
1594                         }
1595                         /* fall thru if ctx reset failed */
1596                 }
1597                 if (ha->wq)
1598                         flush_workqueue(ha->wq);
1599
1600                 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1601                 if (ha->isp_ops->abort_isp(base_vha)) {
1602                         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1603                         /* failed. schedule dpc to try */
1604                         set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1605
1606                         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1607                                 ql_log(ql_log_warn, vha, 0x802a,
1608                                     "wait for hba online failed.\n");
1609                                 goto eh_host_reset_lock;
1610                         }
1611                 }
1612                 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1613         }
1614
1615         /* Waiting for command to be returned to OS.*/
1616         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1617                 QLA_SUCCESS)
1618                 ret = SUCCESS;
1619
1620 eh_host_reset_lock:
1621         ql_log(ql_log_info, vha, 0x8017,
1622             "ADAPTER RESET %s nexus=%ld:%d:%llu.\n",
1623             (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1624
1625         return ret;
1626 }
1627
1628 /*
1629 * qla2x00_loop_reset
1630 *      Issue loop reset.
1631 *
1632 * Input:
1633 *      ha = adapter block pointer.
1634 *
1635 * Returns:
1636 *      0 = success
1637 */
1638 int
1639 qla2x00_loop_reset(scsi_qla_host_t *vha)
1640 {
1641         int ret;
1642         struct fc_port *fcport;
1643         struct qla_hw_data *ha = vha->hw;
1644
1645         if (IS_QLAFX00(ha)) {
1646                 return qlafx00_loop_reset(vha);
1647         }
1648
1649         if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) {
1650                 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1651                         if (fcport->port_type != FCT_TARGET)
1652                                 continue;
1653
1654                         ret = ha->isp_ops->target_reset(fcport, 0, 0);
1655                         if (ret != QLA_SUCCESS) {
1656                                 ql_dbg(ql_dbg_taskm, vha, 0x802c,
1657                                     "Bus Reset failed: Reset=%d "
1658                                     "d_id=%x.\n", ret, fcport->d_id.b24);
1659                         }
1660                 }
1661         }
1662
1663
1664         if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) {
1665                 atomic_set(&vha->loop_state, LOOP_DOWN);
1666                 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1667                 qla2x00_mark_all_devices_lost(vha);
1668                 ret = qla2x00_full_login_lip(vha);
1669                 if (ret != QLA_SUCCESS) {
1670                         ql_dbg(ql_dbg_taskm, vha, 0x802d,
1671                             "full_login_lip=%d.\n", ret);
1672                 }
1673         }
1674
1675         if (ha->flags.enable_lip_reset) {
1676                 ret = qla2x00_lip_reset(vha);
1677                 if (ret != QLA_SUCCESS)
1678                         ql_dbg(ql_dbg_taskm, vha, 0x802e,
1679                             "lip_reset failed (%d).\n", ret);
1680         }
1681
1682         /* Issue marker command only when we are going to start the I/O */
1683         vha->marker_needed = 1;
1684
1685         return QLA_SUCCESS;
1686 }
1687
1688 /*
1689  * The caller must ensure that no completion interrupts will happen
1690  * while this function is in progress.
1691  */
1692 static void qla2x00_abort_srb(struct qla_qpair *qp, srb_t *sp, const int res,
1693                               unsigned long *flags)
1694         __releases(qp->qp_lock_ptr)
1695         __acquires(qp->qp_lock_ptr)
1696 {
1697         DECLARE_COMPLETION_ONSTACK(comp);
1698         scsi_qla_host_t *vha = qp->vha;
1699         struct qla_hw_data *ha = vha->hw;
1700         struct scsi_cmnd *cmd = GET_CMD_SP(sp);
1701         int rval;
1702         bool ret_cmd;
1703         uint32_t ratov_j;
1704
1705         lockdep_assert_held(qp->qp_lock_ptr);
1706
1707         if (qla2x00_chip_is_down(vha)) {
1708                 sp->done(sp, res);
1709                 return;
1710         }
1711
1712         if (sp->type == SRB_NVME_CMD || sp->type == SRB_NVME_LS ||
1713             (sp->type == SRB_SCSI_CMD && !ha->flags.eeh_busy &&
1714              !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) &&
1715              !qla2x00_isp_reg_stat(ha))) {
1716                 if (sp->comp) {
1717                         sp->done(sp, res);
1718                         return;
1719                 }
1720
1721                 sp->comp = &comp;
1722                 spin_unlock_irqrestore(qp->qp_lock_ptr, *flags);
1723
1724                 rval = ha->isp_ops->abort_command(sp);
1725                 /* Wait for command completion. */
1726                 ret_cmd = false;
1727                 ratov_j = ha->r_a_tov/10 * 4 * 1000;
1728                 ratov_j = msecs_to_jiffies(ratov_j);
1729                 switch (rval) {
1730                 case QLA_SUCCESS:
1731                         if (wait_for_completion_timeout(&comp, ratov_j)) {
1732                                 ql_dbg(ql_dbg_taskm, vha, 0xffff,
1733                                     "%s: Abort wait timer (4 * R_A_TOV[%d]) expired\n",
1734                                     __func__, ha->r_a_tov/10);
1735                                 ret_cmd = true;
1736                         }
1737                         /* else FW return SP to driver */
1738                         break;
1739                 default:
1740                         ret_cmd = true;
1741                         break;
1742                 }
1743
1744                 spin_lock_irqsave(qp->qp_lock_ptr, *flags);
1745                 if (ret_cmd && blk_mq_request_started(cmd->request))
1746                         sp->done(sp, res);
1747         } else {
1748                 sp->done(sp, res);
1749         }
1750 }
1751
1752 /*
1753  * The caller must ensure that no completion interrupts will happen
1754  * while this function is in progress.
1755  */
1756 static void
1757 __qla2x00_abort_all_cmds(struct qla_qpair *qp, int res)
1758 {
1759         int cnt;
1760         unsigned long flags;
1761         srb_t *sp;
1762         scsi_qla_host_t *vha = qp->vha;
1763         struct qla_hw_data *ha = vha->hw;
1764         struct req_que *req;
1765         struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
1766         struct qla_tgt_cmd *cmd;
1767
1768         if (!ha->req_q_map)
1769                 return;
1770         spin_lock_irqsave(qp->qp_lock_ptr, flags);
1771         req = qp->req;
1772         for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) {
1773                 sp = req->outstanding_cmds[cnt];
1774                 if (sp) {
1775                         switch (sp->cmd_type) {
1776                         case TYPE_SRB:
1777                                 qla2x00_abort_srb(qp, sp, res, &flags);
1778                                 break;
1779                         case TYPE_TGT_CMD:
1780                                 if (!vha->hw->tgt.tgt_ops || !tgt ||
1781                                     qla_ini_mode_enabled(vha)) {
1782                                         ql_dbg(ql_dbg_tgt_mgt, vha, 0xf003,
1783                                             "HOST-ABORT-HNDLR: dpc_flags=%lx. Target mode disabled\n",
1784                                             vha->dpc_flags);
1785                                         continue;
1786                                 }
1787                                 cmd = (struct qla_tgt_cmd *)sp;
1788                                 cmd->aborted = 1;
1789                                 break;
1790                         case TYPE_TGT_TMCMD:
1791                                 /* Skip task management functions. */
1792                                 break;
1793                         default:
1794                                 break;
1795                         }
1796                         req->outstanding_cmds[cnt] = NULL;
1797                 }
1798         }
1799         spin_unlock_irqrestore(qp->qp_lock_ptr, flags);
1800 }
1801
1802 /*
1803  * The caller must ensure that no completion interrupts will happen
1804  * while this function is in progress.
1805  */
1806 void
1807 qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
1808 {
1809         int que;
1810         struct qla_hw_data *ha = vha->hw;
1811
1812         /* Continue only if initialization complete. */
1813         if (!ha->base_qpair)
1814                 return;
1815         __qla2x00_abort_all_cmds(ha->base_qpair, res);
1816
1817         if (!ha->queue_pair_map)
1818                 return;
1819         for (que = 0; que < ha->max_qpairs; que++) {
1820                 if (!ha->queue_pair_map[que])
1821                         continue;
1822
1823                 __qla2x00_abort_all_cmds(ha->queue_pair_map[que], res);
1824         }
1825 }
1826
1827 static int
1828 qla2xxx_slave_alloc(struct scsi_device *sdev)
1829 {
1830         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1831
1832         if (!rport || fc_remote_port_chkready(rport))
1833                 return -ENXIO;
1834
1835         sdev->hostdata = *(fc_port_t **)rport->dd_data;
1836
1837         return 0;
1838 }
1839
1840 static int
1841 qla2xxx_slave_configure(struct scsi_device *sdev)
1842 {
1843         scsi_qla_host_t *vha = shost_priv(sdev->host);
1844         struct req_que *req = vha->req;
1845
1846         if (IS_T10_PI_CAPABLE(vha->hw))
1847                 blk_queue_update_dma_alignment(sdev->request_queue, 0x7);
1848
1849         scsi_change_queue_depth(sdev, req->max_q_depth);
1850         return 0;
1851 }
1852
1853 static void
1854 qla2xxx_slave_destroy(struct scsi_device *sdev)
1855 {
1856         sdev->hostdata = NULL;
1857 }
1858
1859 /**
1860  * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1861  * @ha: HA context
1862  *
1863  * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1864  * supported addressing method.
1865  */
1866 static void
1867 qla2x00_config_dma_addressing(struct qla_hw_data *ha)
1868 {
1869         /* Assume a 32bit DMA mask. */
1870         ha->flags.enable_64bit_addressing = 0;
1871
1872         if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1873                 /* Any upper-dword bits set? */
1874                 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1875                     !dma_set_coherent_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1876                         /* Ok, a 64bit DMA mask is applicable. */
1877                         ha->flags.enable_64bit_addressing = 1;
1878                         ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1879                         ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
1880                         return;
1881                 }
1882         }
1883
1884         dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1885         dma_set_coherent_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1886 }
1887
1888 static void
1889 qla2x00_enable_intrs(struct qla_hw_data *ha)
1890 {
1891         unsigned long flags = 0;
1892         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1893
1894         spin_lock_irqsave(&ha->hardware_lock, flags);
1895         ha->interrupts_on = 1;
1896         /* enable risc and host interrupts */
1897         wrt_reg_word(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1898         rd_reg_word(&reg->ictrl);
1899         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1900
1901 }
1902
1903 static void
1904 qla2x00_disable_intrs(struct qla_hw_data *ha)
1905 {
1906         unsigned long flags = 0;
1907         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1908
1909         spin_lock_irqsave(&ha->hardware_lock, flags);
1910         ha->interrupts_on = 0;
1911         /* disable risc and host interrupts */
1912         wrt_reg_word(&reg->ictrl, 0);
1913         rd_reg_word(&reg->ictrl);
1914         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1915 }
1916
1917 static void
1918 qla24xx_enable_intrs(struct qla_hw_data *ha)
1919 {
1920         unsigned long flags = 0;
1921         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1922
1923         spin_lock_irqsave(&ha->hardware_lock, flags);
1924         ha->interrupts_on = 1;
1925         wrt_reg_dword(&reg->ictrl, ICRX_EN_RISC_INT);
1926         rd_reg_dword(&reg->ictrl);
1927         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1928 }
1929
1930 static void
1931 qla24xx_disable_intrs(struct qla_hw_data *ha)
1932 {
1933         unsigned long flags = 0;
1934         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1935
1936         if (IS_NOPOLLING_TYPE(ha))
1937                 return;
1938         spin_lock_irqsave(&ha->hardware_lock, flags);
1939         ha->interrupts_on = 0;
1940         wrt_reg_dword(&reg->ictrl, 0);
1941         rd_reg_dword(&reg->ictrl);
1942         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1943 }
1944
1945 static int
1946 qla2x00_iospace_config(struct qla_hw_data *ha)
1947 {
1948         resource_size_t pio;
1949         uint16_t msix;
1950
1951         if (pci_request_selected_regions(ha->pdev, ha->bars,
1952             QLA2XXX_DRIVER_NAME)) {
1953                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0011,
1954                     "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
1955                     pci_name(ha->pdev));
1956                 goto iospace_error_exit;
1957         }
1958         if (!(ha->bars & 1))
1959                 goto skip_pio;
1960
1961         /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1962         pio = pci_resource_start(ha->pdev, 0);
1963         if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1964                 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
1965                         ql_log_pci(ql_log_warn, ha->pdev, 0x0012,
1966                             "Invalid pci I/O region size (%s).\n",
1967                             pci_name(ha->pdev));
1968                         pio = 0;
1969                 }
1970         } else {
1971                 ql_log_pci(ql_log_warn, ha->pdev, 0x0013,
1972                     "Region #0 no a PIO resource (%s).\n",
1973                     pci_name(ha->pdev));
1974                 pio = 0;
1975         }
1976         ha->pio_address = pio;
1977         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014,
1978             "PIO address=%llu.\n",
1979             (unsigned long long)ha->pio_address);
1980
1981 skip_pio:
1982         /* Use MMIO operations for all accesses. */
1983         if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
1984                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0015,
1985                     "Region #1 not an MMIO resource (%s), aborting.\n",
1986                     pci_name(ha->pdev));
1987                 goto iospace_error_exit;
1988         }
1989         if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
1990                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0016,
1991                     "Invalid PCI mem region size (%s), aborting.\n",
1992                     pci_name(ha->pdev));
1993                 goto iospace_error_exit;
1994         }
1995
1996         ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
1997         if (!ha->iobase) {
1998                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0017,
1999                     "Cannot remap MMIO (%s), aborting.\n",
2000                     pci_name(ha->pdev));
2001                 goto iospace_error_exit;
2002         }
2003
2004         /* Determine queue resources */
2005         ha->max_req_queues = ha->max_rsp_queues = 1;
2006         ha->msix_count = QLA_BASE_VECTORS;
2007
2008         /* Check if FW supports MQ or not */
2009         if (!(ha->fw_attributes & BIT_6))
2010                 goto mqiobase_exit;
2011
2012         if (!ql2xmqsupport || !ql2xnvmeenable ||
2013             (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
2014                 goto mqiobase_exit;
2015
2016         ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
2017                         pci_resource_len(ha->pdev, 3));
2018         if (ha->mqiobase) {
2019                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018,
2020                     "MQIO Base=%p.\n", ha->mqiobase);
2021                 /* Read MSIX vector size of the board */
2022                 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
2023                 ha->msix_count = msix + 1;
2024                 /* Max queues are bounded by available msix vectors */
2025                 /* MB interrupt uses 1 vector */
2026                 ha->max_req_queues = ha->msix_count - 1;
2027                 ha->max_rsp_queues = ha->max_req_queues;
2028                 /* Queue pairs is the max value minus the base queue pair */
2029                 ha->max_qpairs = ha->max_rsp_queues - 1;
2030                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0188,
2031                     "Max no of queues pairs: %d.\n", ha->max_qpairs);
2032
2033                 ql_log_pci(ql_log_info, ha->pdev, 0x001a,
2034                     "MSI-X vector count: %d.\n", ha->msix_count);
2035         } else
2036                 ql_log_pci(ql_log_info, ha->pdev, 0x001b,
2037                     "BAR 3 not enabled.\n");
2038
2039 mqiobase_exit:
2040         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c,
2041             "MSIX Count: %d.\n", ha->msix_count);
2042         return (0);
2043
2044 iospace_error_exit:
2045         return (-ENOMEM);
2046 }
2047
2048
2049 static int
2050 qla83xx_iospace_config(struct qla_hw_data *ha)
2051 {
2052         uint16_t msix;
2053
2054         if (pci_request_selected_regions(ha->pdev, ha->bars,
2055             QLA2XXX_DRIVER_NAME)) {
2056                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0117,
2057                     "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
2058                     pci_name(ha->pdev));
2059
2060                 goto iospace_error_exit;
2061         }
2062
2063         /* Use MMIO operations for all accesses. */
2064         if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) {
2065                 ql_log_pci(ql_log_warn, ha->pdev, 0x0118,
2066                     "Invalid pci I/O region size (%s).\n",
2067                     pci_name(ha->pdev));
2068                 goto iospace_error_exit;
2069         }
2070         if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
2071                 ql_log_pci(ql_log_warn, ha->pdev, 0x0119,
2072                     "Invalid PCI mem region size (%s), aborting\n",
2073                         pci_name(ha->pdev));
2074                 goto iospace_error_exit;
2075         }
2076
2077         ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN);
2078         if (!ha->iobase) {
2079                 ql_log_pci(ql_log_fatal, ha->pdev, 0x011a,
2080                     "Cannot remap MMIO (%s), aborting.\n",
2081                     pci_name(ha->pdev));
2082                 goto iospace_error_exit;
2083         }
2084
2085         /* 64bit PCI BAR - BAR2 will correspoond to region 4 */
2086         /* 83XX 26XX always use MQ type access for queues
2087          * - mbar 2, a.k.a region 4 */
2088         ha->max_req_queues = ha->max_rsp_queues = 1;
2089         ha->msix_count = QLA_BASE_VECTORS;
2090         ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4),
2091                         pci_resource_len(ha->pdev, 4));
2092
2093         if (!ha->mqiobase) {
2094                 ql_log_pci(ql_log_fatal, ha->pdev, 0x011d,
2095                     "BAR2/region4 not enabled\n");
2096                 goto mqiobase_exit;
2097         }
2098
2099         ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2),
2100                         pci_resource_len(ha->pdev, 2));
2101         if (ha->msixbase) {
2102                 /* Read MSIX vector size of the board */
2103                 pci_read_config_word(ha->pdev,
2104                     QLA_83XX_PCI_MSIX_CONTROL, &msix);
2105                 ha->msix_count = (msix & PCI_MSIX_FLAGS_QSIZE)  + 1;
2106                 /*
2107                  * By default, driver uses at least two msix vectors
2108                  * (default & rspq)
2109                  */
2110                 if (ql2xmqsupport || ql2xnvmeenable) {
2111                         /* MB interrupt uses 1 vector */
2112                         ha->max_req_queues = ha->msix_count - 1;
2113
2114                         /* ATIOQ needs 1 vector. That's 1 less QPair */
2115                         if (QLA_TGT_MODE_ENABLED())
2116                                 ha->max_req_queues--;
2117
2118                         ha->max_rsp_queues = ha->max_req_queues;
2119
2120                         /* Queue pairs is the max value minus
2121                          * the base queue pair */
2122                         ha->max_qpairs = ha->max_req_queues - 1;
2123                         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x00e3,
2124                             "Max no of queues pairs: %d.\n", ha->max_qpairs);
2125                 }
2126                 ql_log_pci(ql_log_info, ha->pdev, 0x011c,
2127                     "MSI-X vector count: %d.\n", ha->msix_count);
2128         } else
2129                 ql_log_pci(ql_log_info, ha->pdev, 0x011e,
2130                     "BAR 1 not enabled.\n");
2131
2132 mqiobase_exit:
2133         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f,
2134             "MSIX Count: %d.\n", ha->msix_count);
2135         return 0;
2136
2137 iospace_error_exit:
2138         return -ENOMEM;
2139 }
2140
2141 static struct isp_operations qla2100_isp_ops = {
2142         .pci_config             = qla2100_pci_config,
2143         .reset_chip             = qla2x00_reset_chip,
2144         .chip_diag              = qla2x00_chip_diag,
2145         .config_rings           = qla2x00_config_rings,
2146         .reset_adapter          = qla2x00_reset_adapter,
2147         .nvram_config           = qla2x00_nvram_config,
2148         .update_fw_options      = qla2x00_update_fw_options,
2149         .load_risc              = qla2x00_load_risc,
2150         .pci_info_str           = qla2x00_pci_info_str,
2151         .fw_version_str         = qla2x00_fw_version_str,
2152         .intr_handler           = qla2100_intr_handler,
2153         .enable_intrs           = qla2x00_enable_intrs,
2154         .disable_intrs          = qla2x00_disable_intrs,
2155         .abort_command          = qla2x00_abort_command,
2156         .target_reset           = qla2x00_abort_target,
2157         .lun_reset              = qla2x00_lun_reset,
2158         .fabric_login           = qla2x00_login_fabric,
2159         .fabric_logout          = qla2x00_fabric_logout,
2160         .calc_req_entries       = qla2x00_calc_iocbs_32,
2161         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
2162         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
2163         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
2164         .read_nvram             = qla2x00_read_nvram_data,
2165         .write_nvram            = qla2x00_write_nvram_data,
2166         .fw_dump                = qla2100_fw_dump,
2167         .beacon_on              = NULL,
2168         .beacon_off             = NULL,
2169         .beacon_blink           = NULL,
2170         .read_optrom            = qla2x00_read_optrom_data,
2171         .write_optrom           = qla2x00_write_optrom_data,
2172         .get_flash_version      = qla2x00_get_flash_version,
2173         .start_scsi             = qla2x00_start_scsi,
2174         .start_scsi_mq          = NULL,
2175         .abort_isp              = qla2x00_abort_isp,
2176         .iospace_config         = qla2x00_iospace_config,
2177         .initialize_adapter     = qla2x00_initialize_adapter,
2178 };
2179
2180 static struct isp_operations qla2300_isp_ops = {
2181         .pci_config             = qla2300_pci_config,
2182         .reset_chip             = qla2x00_reset_chip,
2183         .chip_diag              = qla2x00_chip_diag,
2184         .config_rings           = qla2x00_config_rings,
2185         .reset_adapter          = qla2x00_reset_adapter,
2186         .nvram_config           = qla2x00_nvram_config,
2187         .update_fw_options      = qla2x00_update_fw_options,
2188         .load_risc              = qla2x00_load_risc,
2189         .pci_info_str           = qla2x00_pci_info_str,
2190         .fw_version_str         = qla2x00_fw_version_str,
2191         .intr_handler           = qla2300_intr_handler,
2192         .enable_intrs           = qla2x00_enable_intrs,
2193         .disable_intrs          = qla2x00_disable_intrs,
2194         .abort_command          = qla2x00_abort_command,
2195         .target_reset           = qla2x00_abort_target,
2196         .lun_reset              = qla2x00_lun_reset,
2197         .fabric_login           = qla2x00_login_fabric,
2198         .fabric_logout          = qla2x00_fabric_logout,
2199         .calc_req_entries       = qla2x00_calc_iocbs_32,
2200         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
2201         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
2202         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
2203         .read_nvram             = qla2x00_read_nvram_data,
2204         .write_nvram            = qla2x00_write_nvram_data,
2205         .fw_dump                = qla2300_fw_dump,
2206         .beacon_on              = qla2x00_beacon_on,
2207         .beacon_off             = qla2x00_beacon_off,
2208         .beacon_blink           = qla2x00_beacon_blink,
2209         .read_optrom            = qla2x00_read_optrom_data,
2210         .write_optrom           = qla2x00_write_optrom_data,
2211         .get_flash_version      = qla2x00_get_flash_version,
2212         .start_scsi             = qla2x00_start_scsi,
2213         .start_scsi_mq          = NULL,
2214         .abort_isp              = qla2x00_abort_isp,
2215         .iospace_config         = qla2x00_iospace_config,
2216         .initialize_adapter     = qla2x00_initialize_adapter,
2217 };
2218
2219 static struct isp_operations qla24xx_isp_ops = {
2220         .pci_config             = qla24xx_pci_config,
2221         .reset_chip             = qla24xx_reset_chip,
2222         .chip_diag              = qla24xx_chip_diag,
2223         .config_rings           = qla24xx_config_rings,
2224         .reset_adapter          = qla24xx_reset_adapter,
2225         .nvram_config           = qla24xx_nvram_config,
2226         .update_fw_options      = qla24xx_update_fw_options,
2227         .load_risc              = qla24xx_load_risc,
2228         .pci_info_str           = qla24xx_pci_info_str,
2229         .fw_version_str         = qla24xx_fw_version_str,
2230         .intr_handler           = qla24xx_intr_handler,
2231         .enable_intrs           = qla24xx_enable_intrs,
2232         .disable_intrs          = qla24xx_disable_intrs,
2233         .abort_command          = qla24xx_abort_command,
2234         .target_reset           = qla24xx_abort_target,
2235         .lun_reset              = qla24xx_lun_reset,
2236         .fabric_login           = qla24xx_login_fabric,
2237         .fabric_logout          = qla24xx_fabric_logout,
2238         .calc_req_entries       = NULL,
2239         .build_iocbs            = NULL,
2240         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2241         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2242         .read_nvram             = qla24xx_read_nvram_data,
2243         .write_nvram            = qla24xx_write_nvram_data,
2244         .fw_dump                = qla24xx_fw_dump,
2245         .beacon_on              = qla24xx_beacon_on,
2246         .beacon_off             = qla24xx_beacon_off,
2247         .beacon_blink           = qla24xx_beacon_blink,
2248         .read_optrom            = qla24xx_read_optrom_data,
2249         .write_optrom           = qla24xx_write_optrom_data,
2250         .get_flash_version      = qla24xx_get_flash_version,
2251         .start_scsi             = qla24xx_start_scsi,
2252         .start_scsi_mq          = NULL,
2253         .abort_isp              = qla2x00_abort_isp,
2254         .iospace_config         = qla2x00_iospace_config,
2255         .initialize_adapter     = qla2x00_initialize_adapter,
2256 };
2257
2258 static struct isp_operations qla25xx_isp_ops = {
2259         .pci_config             = qla25xx_pci_config,
2260         .reset_chip             = qla24xx_reset_chip,
2261         .chip_diag              = qla24xx_chip_diag,
2262         .config_rings           = qla24xx_config_rings,
2263         .reset_adapter          = qla24xx_reset_adapter,
2264         .nvram_config           = qla24xx_nvram_config,
2265         .update_fw_options      = qla24xx_update_fw_options,
2266         .load_risc              = qla24xx_load_risc,
2267         .pci_info_str           = qla24xx_pci_info_str,
2268         .fw_version_str         = qla24xx_fw_version_str,
2269         .intr_handler           = qla24xx_intr_handler,
2270         .enable_intrs           = qla24xx_enable_intrs,
2271         .disable_intrs          = qla24xx_disable_intrs,
2272         .abort_command          = qla24xx_abort_command,
2273         .target_reset           = qla24xx_abort_target,
2274         .lun_reset              = qla24xx_lun_reset,
2275         .fabric_login           = qla24xx_login_fabric,
2276         .fabric_logout          = qla24xx_fabric_logout,
2277         .calc_req_entries       = NULL,
2278         .build_iocbs            = NULL,
2279         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2280         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2281         .read_nvram             = qla25xx_read_nvram_data,
2282         .write_nvram            = qla25xx_write_nvram_data,
2283         .fw_dump                = qla25xx_fw_dump,
2284         .beacon_on              = qla24xx_beacon_on,
2285         .beacon_off             = qla24xx_beacon_off,
2286         .beacon_blink           = qla24xx_beacon_blink,
2287         .read_optrom            = qla25xx_read_optrom_data,
2288         .write_optrom           = qla24xx_write_optrom_data,
2289         .get_flash_version      = qla24xx_get_flash_version,
2290         .start_scsi             = qla24xx_dif_start_scsi,
2291         .start_scsi_mq          = qla2xxx_dif_start_scsi_mq,
2292         .abort_isp              = qla2x00_abort_isp,
2293         .iospace_config         = qla2x00_iospace_config,
2294         .initialize_adapter     = qla2x00_initialize_adapter,
2295 };
2296
2297 static struct isp_operations qla81xx_isp_ops = {
2298         .pci_config             = qla25xx_pci_config,
2299         .reset_chip             = qla24xx_reset_chip,
2300         .chip_diag              = qla24xx_chip_diag,
2301         .config_rings           = qla24xx_config_rings,
2302         .reset_adapter          = qla24xx_reset_adapter,
2303         .nvram_config           = qla81xx_nvram_config,
2304         .update_fw_options      = qla24xx_update_fw_options,
2305         .load_risc              = qla81xx_load_risc,
2306         .pci_info_str           = qla24xx_pci_info_str,
2307         .fw_version_str         = qla24xx_fw_version_str,
2308         .intr_handler           = qla24xx_intr_handler,
2309         .enable_intrs           = qla24xx_enable_intrs,
2310         .disable_intrs          = qla24xx_disable_intrs,
2311         .abort_command          = qla24xx_abort_command,
2312         .target_reset           = qla24xx_abort_target,
2313         .lun_reset              = qla24xx_lun_reset,
2314         .fabric_login           = qla24xx_login_fabric,
2315         .fabric_logout          = qla24xx_fabric_logout,
2316         .calc_req_entries       = NULL,
2317         .build_iocbs            = NULL,
2318         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2319         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2320         .read_nvram             = NULL,
2321         .write_nvram            = NULL,
2322         .fw_dump                = qla81xx_fw_dump,
2323         .beacon_on              = qla24xx_beacon_on,
2324         .beacon_off             = qla24xx_beacon_off,
2325         .beacon_blink           = qla83xx_beacon_blink,
2326         .read_optrom            = qla25xx_read_optrom_data,
2327         .write_optrom           = qla24xx_write_optrom_data,
2328         .get_flash_version      = qla24xx_get_flash_version,
2329         .start_scsi             = qla24xx_dif_start_scsi,
2330         .start_scsi_mq          = qla2xxx_dif_start_scsi_mq,
2331         .abort_isp              = qla2x00_abort_isp,
2332         .iospace_config         = qla2x00_iospace_config,
2333         .initialize_adapter     = qla2x00_initialize_adapter,
2334 };
2335
2336 static struct isp_operations qla82xx_isp_ops = {
2337         .pci_config             = qla82xx_pci_config,
2338         .reset_chip             = qla82xx_reset_chip,
2339         .chip_diag              = qla24xx_chip_diag,
2340         .config_rings           = qla82xx_config_rings,
2341         .reset_adapter          = qla24xx_reset_adapter,
2342         .nvram_config           = qla81xx_nvram_config,
2343         .update_fw_options      = qla24xx_update_fw_options,
2344         .load_risc              = qla82xx_load_risc,
2345         .pci_info_str           = qla24xx_pci_info_str,
2346         .fw_version_str         = qla24xx_fw_version_str,
2347         .intr_handler           = qla82xx_intr_handler,
2348         .enable_intrs           = qla82xx_enable_intrs,
2349         .disable_intrs          = qla82xx_disable_intrs,
2350         .abort_command          = qla24xx_abort_command,
2351         .target_reset           = qla24xx_abort_target,
2352         .lun_reset              = qla24xx_lun_reset,
2353         .fabric_login           = qla24xx_login_fabric,
2354         .fabric_logout          = qla24xx_fabric_logout,
2355         .calc_req_entries       = NULL,
2356         .build_iocbs            = NULL,
2357         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2358         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2359         .read_nvram             = qla24xx_read_nvram_data,
2360         .write_nvram            = qla24xx_write_nvram_data,
2361         .fw_dump                = qla82xx_fw_dump,
2362         .beacon_on              = qla82xx_beacon_on,
2363         .beacon_off             = qla82xx_beacon_off,
2364         .beacon_blink           = NULL,
2365         .read_optrom            = qla82xx_read_optrom_data,
2366         .write_optrom           = qla82xx_write_optrom_data,
2367         .get_flash_version      = qla82xx_get_flash_version,
2368         .start_scsi             = qla82xx_start_scsi,
2369         .start_scsi_mq          = NULL,
2370         .abort_isp              = qla82xx_abort_isp,
2371         .iospace_config         = qla82xx_iospace_config,
2372         .initialize_adapter     = qla2x00_initialize_adapter,
2373 };
2374
2375 static struct isp_operations qla8044_isp_ops = {
2376         .pci_config             = qla82xx_pci_config,
2377         .reset_chip             = qla82xx_reset_chip,
2378         .chip_diag              = qla24xx_chip_diag,
2379         .config_rings           = qla82xx_config_rings,
2380         .reset_adapter          = qla24xx_reset_adapter,
2381         .nvram_config           = qla81xx_nvram_config,
2382         .update_fw_options      = qla24xx_update_fw_options,
2383         .load_risc              = qla82xx_load_risc,
2384         .pci_info_str           = qla24xx_pci_info_str,
2385         .fw_version_str         = qla24xx_fw_version_str,
2386         .intr_handler           = qla8044_intr_handler,
2387         .enable_intrs           = qla82xx_enable_intrs,
2388         .disable_intrs          = qla82xx_disable_intrs,
2389         .abort_command          = qla24xx_abort_command,
2390         .target_reset           = qla24xx_abort_target,
2391         .lun_reset              = qla24xx_lun_reset,
2392         .fabric_login           = qla24xx_login_fabric,
2393         .fabric_logout          = qla24xx_fabric_logout,
2394         .calc_req_entries       = NULL,
2395         .build_iocbs            = NULL,
2396         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2397         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2398         .read_nvram             = NULL,
2399         .write_nvram            = NULL,
2400         .fw_dump                = qla8044_fw_dump,
2401         .beacon_on              = qla82xx_beacon_on,
2402         .beacon_off             = qla82xx_beacon_off,
2403         .beacon_blink           = NULL,
2404         .read_optrom            = qla8044_read_optrom_data,
2405         .write_optrom           = qla8044_write_optrom_data,
2406         .get_flash_version      = qla82xx_get_flash_version,
2407         .start_scsi             = qla82xx_start_scsi,
2408         .start_scsi_mq          = NULL,
2409         .abort_isp              = qla8044_abort_isp,
2410         .iospace_config         = qla82xx_iospace_config,
2411         .initialize_adapter     = qla2x00_initialize_adapter,
2412 };
2413
2414 static struct isp_operations qla83xx_isp_ops = {
2415         .pci_config             = qla25xx_pci_config,
2416         .reset_chip             = qla24xx_reset_chip,
2417         .chip_diag              = qla24xx_chip_diag,
2418         .config_rings           = qla24xx_config_rings,
2419         .reset_adapter          = qla24xx_reset_adapter,
2420         .nvram_config           = qla81xx_nvram_config,
2421         .update_fw_options      = qla24xx_update_fw_options,
2422         .load_risc              = qla81xx_load_risc,
2423         .pci_info_str           = qla24xx_pci_info_str,
2424         .fw_version_str         = qla24xx_fw_version_str,
2425         .intr_handler           = qla24xx_intr_handler,
2426         .enable_intrs           = qla24xx_enable_intrs,
2427         .disable_intrs          = qla24xx_disable_intrs,
2428         .abort_command          = qla24xx_abort_command,
2429         .target_reset           = qla24xx_abort_target,
2430         .lun_reset              = qla24xx_lun_reset,
2431         .fabric_login           = qla24xx_login_fabric,
2432         .fabric_logout          = qla24xx_fabric_logout,
2433         .calc_req_entries       = NULL,
2434         .build_iocbs            = NULL,
2435         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2436         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2437         .read_nvram             = NULL,
2438         .write_nvram            = NULL,
2439         .fw_dump                = qla83xx_fw_dump,
2440         .beacon_on              = qla24xx_beacon_on,
2441         .beacon_off             = qla24xx_beacon_off,
2442         .beacon_blink           = qla83xx_beacon_blink,
2443         .read_optrom            = qla25xx_read_optrom_data,
2444         .write_optrom           = qla24xx_write_optrom_data,
2445         .get_flash_version      = qla24xx_get_flash_version,
2446         .start_scsi             = qla24xx_dif_start_scsi,
2447         .start_scsi_mq          = qla2xxx_dif_start_scsi_mq,
2448         .abort_isp              = qla2x00_abort_isp,
2449         .iospace_config         = qla83xx_iospace_config,
2450         .initialize_adapter     = qla2x00_initialize_adapter,
2451 };
2452
2453 static struct isp_operations qlafx00_isp_ops = {
2454         .pci_config             = qlafx00_pci_config,
2455         .reset_chip             = qlafx00_soft_reset,
2456         .chip_diag              = qlafx00_chip_diag,
2457         .config_rings           = qlafx00_config_rings,
2458         .reset_adapter          = qlafx00_soft_reset,
2459         .nvram_config           = NULL,
2460         .update_fw_options      = NULL,
2461         .load_risc              = NULL,
2462         .pci_info_str           = qlafx00_pci_info_str,
2463         .fw_version_str         = qlafx00_fw_version_str,
2464         .intr_handler           = qlafx00_intr_handler,
2465         .enable_intrs           = qlafx00_enable_intrs,
2466         .disable_intrs          = qlafx00_disable_intrs,
2467         .abort_command          = qla24xx_async_abort_command,
2468         .target_reset           = qlafx00_abort_target,
2469         .lun_reset              = qlafx00_lun_reset,
2470         .fabric_login           = NULL,
2471         .fabric_logout          = NULL,
2472         .calc_req_entries       = NULL,
2473         .build_iocbs            = NULL,
2474         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2475         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2476         .read_nvram             = qla24xx_read_nvram_data,
2477         .write_nvram            = qla24xx_write_nvram_data,
2478         .fw_dump                = NULL,
2479         .beacon_on              = qla24xx_beacon_on,
2480         .beacon_off             = qla24xx_beacon_off,
2481         .beacon_blink           = NULL,
2482         .read_optrom            = qla24xx_read_optrom_data,
2483         .write_optrom           = qla24xx_write_optrom_data,
2484         .get_flash_version      = qla24xx_get_flash_version,
2485         .start_scsi             = qlafx00_start_scsi,
2486         .start_scsi_mq          = NULL,
2487         .abort_isp              = qlafx00_abort_isp,
2488         .iospace_config         = qlafx00_iospace_config,
2489         .initialize_adapter     = qlafx00_initialize_adapter,
2490 };
2491
2492 static struct isp_operations qla27xx_isp_ops = {
2493         .pci_config             = qla25xx_pci_config,
2494         .reset_chip             = qla24xx_reset_chip,
2495         .chip_diag              = qla24xx_chip_diag,
2496         .config_rings           = qla24xx_config_rings,
2497         .reset_adapter          = qla24xx_reset_adapter,
2498         .nvram_config           = qla81xx_nvram_config,
2499         .update_fw_options      = qla24xx_update_fw_options,
2500         .load_risc              = qla81xx_load_risc,
2501         .pci_info_str           = qla24xx_pci_info_str,
2502         .fw_version_str         = qla24xx_fw_version_str,
2503         .intr_handler           = qla24xx_intr_handler,
2504         .enable_intrs           = qla24xx_enable_intrs,
2505         .disable_intrs          = qla24xx_disable_intrs,
2506         .abort_command          = qla24xx_abort_command,
2507         .target_reset           = qla24xx_abort_target,
2508         .lun_reset              = qla24xx_lun_reset,
2509         .fabric_login           = qla24xx_login_fabric,
2510         .fabric_logout          = qla24xx_fabric_logout,
2511         .calc_req_entries       = NULL,
2512         .build_iocbs            = NULL,
2513         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
2514         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
2515         .read_nvram             = NULL,
2516         .write_nvram            = NULL,
2517         .fw_dump                = qla27xx_fwdump,
2518         .mpi_fw_dump            = qla27xx_mpi_fwdump,
2519         .beacon_on              = qla24xx_beacon_on,
2520         .beacon_off             = qla24xx_beacon_off,
2521         .beacon_blink           = qla83xx_beacon_blink,
2522         .read_optrom            = qla25xx_read_optrom_data,
2523         .write_optrom           = qla24xx_write_optrom_data,
2524         .get_flash_version      = qla24xx_get_flash_version,
2525         .start_scsi             = qla24xx_dif_start_scsi,
2526         .start_scsi_mq          = qla2xxx_dif_start_scsi_mq,
2527         .abort_isp              = qla2x00_abort_isp,
2528         .iospace_config         = qla83xx_iospace_config,
2529         .initialize_adapter     = qla2x00_initialize_adapter,
2530 };
2531
2532 static inline void
2533 qla2x00_set_isp_flags(struct qla_hw_data *ha)
2534 {
2535         ha->device_type = DT_EXTENDED_IDS;
2536         switch (ha->pdev->device) {
2537         case PCI_DEVICE_ID_QLOGIC_ISP2100:
2538                 ha->isp_type |= DT_ISP2100;
2539                 ha->device_type &= ~DT_EXTENDED_IDS;
2540                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2541                 break;
2542         case PCI_DEVICE_ID_QLOGIC_ISP2200:
2543                 ha->isp_type |= DT_ISP2200;
2544                 ha->device_type &= ~DT_EXTENDED_IDS;
2545                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2546                 break;
2547         case PCI_DEVICE_ID_QLOGIC_ISP2300:
2548                 ha->isp_type |= DT_ISP2300;
2549                 ha->device_type |= DT_ZIO_SUPPORTED;
2550                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2551                 break;
2552         case PCI_DEVICE_ID_QLOGIC_ISP2312:
2553                 ha->isp_type |= DT_ISP2312;
2554                 ha->device_type |= DT_ZIO_SUPPORTED;
2555                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2556                 break;
2557         case PCI_DEVICE_ID_QLOGIC_ISP2322:
2558                 ha->isp_type |= DT_ISP2322;
2559                 ha->device_type |= DT_ZIO_SUPPORTED;
2560                 if (ha->pdev->subsystem_vendor == 0x1028 &&
2561                     ha->pdev->subsystem_device == 0x0170)
2562                         ha->device_type |= DT_OEM_001;
2563                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2564                 break;
2565         case PCI_DEVICE_ID_QLOGIC_ISP6312:
2566                 ha->isp_type |= DT_ISP6312;
2567                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2568                 break;
2569         case PCI_DEVICE_ID_QLOGIC_ISP6322:
2570                 ha->isp_type |= DT_ISP6322;
2571                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2572                 break;
2573         case PCI_DEVICE_ID_QLOGIC_ISP2422:
2574                 ha->isp_type |= DT_ISP2422;
2575                 ha->device_type |= DT_ZIO_SUPPORTED;
2576                 ha->device_type |= DT_FWI2;
2577                 ha->device_type |= DT_IIDMA;
2578                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2579                 break;
2580         case PCI_DEVICE_ID_QLOGIC_ISP2432:
2581                 ha->isp_type |= DT_ISP2432;
2582                 ha->device_type |= DT_ZIO_SUPPORTED;
2583                 ha->device_type |= DT_FWI2;
2584                 ha->device_type |= DT_IIDMA;
2585                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2586                 break;
2587         case PCI_DEVICE_ID_QLOGIC_ISP8432:
2588                 ha->isp_type |= DT_ISP8432;
2589                 ha->device_type |= DT_ZIO_SUPPORTED;
2590                 ha->device_type |= DT_FWI2;
2591                 ha->device_type |= DT_IIDMA;
2592                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2593                 break;
2594         case PCI_DEVICE_ID_QLOGIC_ISP5422:
2595                 ha->isp_type |= DT_ISP5422;
2596                 ha->device_type |= DT_FWI2;
2597                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2598                 break;
2599         case PCI_DEVICE_ID_QLOGIC_ISP5432:
2600                 ha->isp_type |= DT_ISP5432;
2601                 ha->device_type |= DT_FWI2;
2602                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2603                 break;
2604         case PCI_DEVICE_ID_QLOGIC_ISP2532:
2605                 ha->isp_type |= DT_ISP2532;
2606                 ha->device_type |= DT_ZIO_SUPPORTED;
2607                 ha->device_type |= DT_FWI2;
2608                 ha->device_type |= DT_IIDMA;
2609                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2610                 break;
2611         case PCI_DEVICE_ID_QLOGIC_ISP8001:
2612                 ha->isp_type |= DT_ISP8001;
2613                 ha->device_type |= DT_ZIO_SUPPORTED;
2614                 ha->device_type |= DT_FWI2;
2615                 ha->device_type |= DT_IIDMA;
2616                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2617                 break;
2618         case PCI_DEVICE_ID_QLOGIC_ISP8021:
2619                 ha->isp_type |= DT_ISP8021;
2620                 ha->device_type |= DT_ZIO_SUPPORTED;
2621                 ha->device_type |= DT_FWI2;
2622                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2623                 /* Initialize 82XX ISP flags */
2624                 qla82xx_init_flags(ha);
2625                 break;
2626          case PCI_DEVICE_ID_QLOGIC_ISP8044:
2627                 ha->isp_type |= DT_ISP8044;
2628                 ha->device_type |= DT_ZIO_SUPPORTED;
2629                 ha->device_type |= DT_FWI2;
2630                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2631                 /* Initialize 82XX ISP flags */
2632                 qla82xx_init_flags(ha);
2633                 break;
2634         case PCI_DEVICE_ID_QLOGIC_ISP2031:
2635                 ha->isp_type |= DT_ISP2031;
2636                 ha->device_type |= DT_ZIO_SUPPORTED;
2637                 ha->device_type |= DT_FWI2;
2638                 ha->device_type |= DT_IIDMA;
2639                 ha->device_type |= DT_T10_PI;
2640                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2641                 break;
2642         case PCI_DEVICE_ID_QLOGIC_ISP8031:
2643                 ha->isp_type |= DT_ISP8031;
2644                 ha->device_type |= DT_ZIO_SUPPORTED;
2645                 ha->device_type |= DT_FWI2;
2646                 ha->device_type |= DT_IIDMA;
2647                 ha->device_type |= DT_T10_PI;
2648                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2649                 break;
2650         case PCI_DEVICE_ID_QLOGIC_ISPF001:
2651                 ha->isp_type |= DT_ISPFX00;
2652                 break;
2653         case PCI_DEVICE_ID_QLOGIC_ISP2071:
2654                 ha->isp_type |= DT_ISP2071;
2655                 ha->device_type |= DT_ZIO_SUPPORTED;
2656                 ha->device_type |= DT_FWI2;
2657                 ha->device_type |= DT_IIDMA;
2658                 ha->device_type |= DT_T10_PI;
2659                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2660                 break;
2661         case PCI_DEVICE_ID_QLOGIC_ISP2271:
2662                 ha->isp_type |= DT_ISP2271;
2663                 ha->device_type |= DT_ZIO_SUPPORTED;
2664                 ha->device_type |= DT_FWI2;
2665                 ha->device_type |= DT_IIDMA;
2666                 ha->device_type |= DT_T10_PI;
2667                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2668                 break;
2669         case PCI_DEVICE_ID_QLOGIC_ISP2261:
2670                 ha->isp_type |= DT_ISP2261;
2671                 ha->device_type |= DT_ZIO_SUPPORTED;
2672                 ha->device_type |= DT_FWI2;
2673                 ha->device_type |= DT_IIDMA;
2674                 ha->device_type |= DT_T10_PI;
2675                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2676                 break;
2677         case PCI_DEVICE_ID_QLOGIC_ISP2081:
2678         case PCI_DEVICE_ID_QLOGIC_ISP2089:
2679                 ha->isp_type |= DT_ISP2081;
2680                 ha->device_type |= DT_ZIO_SUPPORTED;
2681                 ha->device_type |= DT_FWI2;
2682                 ha->device_type |= DT_IIDMA;
2683                 ha->device_type |= DT_T10_PI;
2684                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2685                 break;
2686         case PCI_DEVICE_ID_QLOGIC_ISP2281:
2687         case PCI_DEVICE_ID_QLOGIC_ISP2289:
2688                 ha->isp_type |= DT_ISP2281;
2689                 ha->device_type |= DT_ZIO_SUPPORTED;
2690                 ha->device_type |= DT_FWI2;
2691                 ha->device_type |= DT_IIDMA;
2692                 ha->device_type |= DT_T10_PI;
2693                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2694                 break;
2695         }
2696
2697         if (IS_QLA82XX(ha))
2698                 ha->port_no = ha->portnum & 1;
2699         else {
2700                 /* Get adapter physical port no from interrupt pin register. */
2701                 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
2702                 if (IS_QLA25XX(ha) || IS_QLA2031(ha) ||
2703                     IS_QLA27XX(ha) || IS_QLA28XX(ha))
2704                         ha->port_no--;
2705                 else
2706                         ha->port_no = !(ha->port_no & 1);
2707         }
2708
2709         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b,
2710             "device_type=0x%x port=%d fw_srisc_address=0x%x.\n",
2711             ha->device_type, ha->port_no, ha->fw_srisc_address);
2712 }
2713
2714 static void
2715 qla2xxx_scan_start(struct Scsi_Host *shost)
2716 {
2717         scsi_qla_host_t *vha = shost_priv(shost);
2718
2719         if (vha->hw->flags.running_gold_fw)
2720                 return;
2721
2722         set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
2723         set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2724         set_bit(RSCN_UPDATE, &vha->dpc_flags);
2725         set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
2726 }
2727
2728 static int
2729 qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
2730 {
2731         scsi_qla_host_t *vha = shost_priv(shost);
2732
2733         if (test_bit(UNLOADING, &vha->dpc_flags))
2734                 return 1;
2735         if (!vha->host)
2736                 return 1;
2737         if (time > vha->hw->loop_reset_delay * HZ)
2738                 return 1;
2739
2740         return atomic_read(&vha->loop_state) == LOOP_READY;
2741 }
2742
2743 static void qla2x00_iocb_work_fn(struct work_struct *work)
2744 {
2745         struct scsi_qla_host *vha = container_of(work,
2746                 struct scsi_qla_host, iocb_work);
2747         struct qla_hw_data *ha = vha->hw;
2748         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
2749         int i = 2;
2750         unsigned long flags;
2751
2752         if (test_bit(UNLOADING, &base_vha->dpc_flags))
2753                 return;
2754
2755         while (!list_empty(&vha->work_list) && i > 0) {
2756                 qla2x00_do_work(vha);
2757                 i--;
2758         }
2759
2760         spin_lock_irqsave(&vha->work_lock, flags);
2761         clear_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags);
2762         spin_unlock_irqrestore(&vha->work_lock, flags);
2763 }
2764
2765 /*
2766  * PCI driver interface
2767  */
2768 static int
2769 qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2770 {
2771         int     ret = -ENODEV;
2772         struct Scsi_Host *host;
2773         scsi_qla_host_t *base_vha = NULL;
2774         struct qla_hw_data *ha;
2775         char pci_info[30];
2776         char fw_str[30], wq_name[30];
2777         struct scsi_host_template *sht;
2778         int bars, mem_only = 0;
2779         uint16_t req_length = 0, rsp_length = 0;
2780         struct req_que *req = NULL;
2781         struct rsp_que *rsp = NULL;
2782         int i;
2783
2784         bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
2785         sht = &qla2xxx_driver_template;
2786         if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
2787             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
2788             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
2789             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
2790             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
2791             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
2792             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
2793             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 ||
2794             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 ||
2795             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 ||
2796             pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 ||
2797             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 ||
2798             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 ||
2799             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271 ||
2800             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2261 ||
2801             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2081 ||
2802             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2281 ||
2803             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2089 ||
2804             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2289) {
2805                 bars = pci_select_bars(pdev, IORESOURCE_MEM);
2806                 mem_only = 1;
2807                 ql_dbg_pci(ql_dbg_init, pdev, 0x0007,
2808                     "Mem only adapter.\n");
2809         }
2810         ql_dbg_pci(ql_dbg_init, pdev, 0x0008,
2811             "Bars=%d.\n", bars);
2812
2813         if (mem_only) {
2814                 if (pci_enable_device_mem(pdev))
2815                         return ret;
2816         } else {
2817                 if (pci_enable_device(pdev))
2818                         return ret;
2819         }
2820
2821         /* This may fail but that's ok */
2822         pci_enable_pcie_error_reporting(pdev);
2823
2824         ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
2825         if (!ha) {
2826                 ql_log_pci(ql_log_fatal, pdev, 0x0009,
2827                     "Unable to allocate memory for ha.\n");
2828                 goto disable_device;
2829         }
2830         ql_dbg_pci(ql_dbg_init, pdev, 0x000a,
2831             "Memory allocated for ha=%p.\n", ha);
2832         ha->pdev = pdev;
2833         INIT_LIST_HEAD(&ha->tgt.q_full_list);
2834         spin_lock_init(&ha->tgt.q_full_lock);
2835         spin_lock_init(&ha->tgt.sess_lock);
2836         spin_lock_init(&ha->tgt.atio_lock);
2837
2838         atomic_set(&ha->nvme_active_aen_cnt, 0);
2839
2840         /* Clear our data area */
2841         ha->bars = bars;
2842         ha->mem_only = mem_only;
2843         spin_lock_init(&ha->hardware_lock);
2844         spin_lock_init(&ha->vport_slock);
2845         mutex_init(&ha->selflogin_lock);
2846         mutex_init(&ha->optrom_mutex);
2847
2848         /* Set ISP-type information. */
2849         qla2x00_set_isp_flags(ha);
2850
2851         /* Set EEH reset type to fundamental if required by hba */
2852         if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) ||
2853             IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha))
2854                 pdev->needs_freset = 1;
2855
2856         ha->prev_topology = 0;
2857         ha->init_cb_size = sizeof(init_cb_t);
2858         ha->link_data_rate = PORT_SPEED_UNKNOWN;
2859         ha->optrom_size = OPTROM_SIZE_2300;
2860         ha->max_exchg = FW_MAX_EXCHANGES_CNT;
2861         atomic_set(&ha->num_pend_mbx_stage1, 0);
2862         atomic_set(&ha->num_pend_mbx_stage2, 0);
2863         atomic_set(&ha->num_pend_mbx_stage3, 0);
2864         atomic_set(&ha->zio_threshold, DEFAULT_ZIO_THRESHOLD);
2865         ha->last_zio_threshold = DEFAULT_ZIO_THRESHOLD;
2866
2867         /* Assign ISP specific operations. */
2868         if (IS_QLA2100(ha)) {
2869                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2870                 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
2871                 req_length = REQUEST_ENTRY_CNT_2100;
2872                 rsp_length = RESPONSE_ENTRY_CNT_2100;
2873                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2874                 ha->gid_list_info_size = 4;
2875                 ha->flash_conf_off = ~0;
2876                 ha->flash_data_off = ~0;
2877                 ha->nvram_conf_off = ~0;
2878                 ha->nvram_data_off = ~0;
2879                 ha->isp_ops = &qla2100_isp_ops;
2880         } else if (IS_QLA2200(ha)) {
2881                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2882                 ha->mbx_count = MAILBOX_REGISTER_COUNT_2200;
2883                 req_length = REQUEST_ENTRY_CNT_2200;
2884                 rsp_length = RESPONSE_ENTRY_CNT_2100;
2885                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2886                 ha->gid_list_info_size = 4;
2887                 ha->flash_conf_off = ~0;
2888                 ha->flash_data_off = ~0;
2889                 ha->nvram_conf_off = ~0;
2890                 ha->nvram_data_off = ~0;
2891                 ha->isp_ops = &qla2100_isp_ops;
2892         } else if (IS_QLA23XX(ha)) {
2893                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2894                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2895                 req_length = REQUEST_ENTRY_CNT_2200;
2896                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2897                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2898                 ha->gid_list_info_size = 6;
2899                 if (IS_QLA2322(ha) || IS_QLA6322(ha))
2900                         ha->optrom_size = OPTROM_SIZE_2322;
2901                 ha->flash_conf_off = ~0;
2902                 ha->flash_data_off = ~0;
2903                 ha->nvram_conf_off = ~0;
2904                 ha->nvram_data_off = ~0;
2905                 ha->isp_ops = &qla2300_isp_ops;
2906         } else if (IS_QLA24XX_TYPE(ha)) {
2907                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2908                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2909                 req_length = REQUEST_ENTRY_CNT_24XX;
2910                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2911                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2912                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2913                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2914                 ha->gid_list_info_size = 8;
2915                 ha->optrom_size = OPTROM_SIZE_24XX;
2916                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
2917                 ha->isp_ops = &qla24xx_isp_ops;
2918                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2919                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2920                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2921                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2922         } else if (IS_QLA25XX(ha)) {
2923                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2924                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2925                 req_length = REQUEST_ENTRY_CNT_24XX;
2926                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2927                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2928                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2929                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2930                 ha->gid_list_info_size = 8;
2931                 ha->optrom_size = OPTROM_SIZE_25XX;
2932                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2933                 ha->isp_ops = &qla25xx_isp_ops;
2934                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2935                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2936                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2937                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2938         } else if (IS_QLA81XX(ha)) {
2939                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2940                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2941                 req_length = REQUEST_ENTRY_CNT_24XX;
2942                 rsp_length = RESPONSE_ENTRY_CNT_2300;
2943                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2944                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2945                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2946                 ha->gid_list_info_size = 8;
2947                 ha->optrom_size = OPTROM_SIZE_81XX;
2948                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2949                 ha->isp_ops = &qla81xx_isp_ops;
2950                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2951                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2952                 ha->nvram_conf_off = ~0;
2953                 ha->nvram_data_off = ~0;
2954         } else if (IS_QLA82XX(ha)) {
2955                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2956                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2957                 req_length = REQUEST_ENTRY_CNT_82XX;
2958                 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2959                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2960                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2961                 ha->gid_list_info_size = 8;
2962                 ha->optrom_size = OPTROM_SIZE_82XX;
2963                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2964                 ha->isp_ops = &qla82xx_isp_ops;
2965                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2966                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2967                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2968                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2969         } else if (IS_QLA8044(ha)) {
2970                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2971                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2972                 req_length = REQUEST_ENTRY_CNT_82XX;
2973                 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2974                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2975                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2976                 ha->gid_list_info_size = 8;
2977                 ha->optrom_size = OPTROM_SIZE_83XX;
2978                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2979                 ha->isp_ops = &qla8044_isp_ops;
2980                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2981                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2982                 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2983                 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2984         } else if (IS_QLA83XX(ha)) {
2985                 ha->portnum = PCI_FUNC(ha->pdev->devfn);
2986                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2987                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2988                 req_length = REQUEST_ENTRY_CNT_83XX;
2989                 rsp_length = RESPONSE_ENTRY_CNT_83XX;
2990                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2991                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2992                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2993                 ha->gid_list_info_size = 8;
2994                 ha->optrom_size = OPTROM_SIZE_83XX;
2995                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2996                 ha->isp_ops = &qla83xx_isp_ops;
2997                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2998                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2999                 ha->nvram_conf_off = ~0;
3000                 ha->nvram_data_off = ~0;
3001         }  else if (IS_QLAFX00(ha)) {
3002                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00;
3003                 ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00;
3004                 ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00;
3005                 req_length = REQUEST_ENTRY_CNT_FX00;
3006                 rsp_length = RESPONSE_ENTRY_CNT_FX00;
3007                 ha->isp_ops = &qlafx00_isp_ops;
3008                 ha->port_down_retry_count = 30; /* default value */
3009                 ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL;
3010                 ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
3011                 ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL;
3012                 ha->mr.fw_hbt_en = 1;
3013                 ha->mr.host_info_resend = false;
3014                 ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL;
3015         } else if (IS_QLA27XX(ha)) {
3016                 ha->portnum = PCI_FUNC(ha->pdev->devfn);
3017                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3018                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3019                 req_length = REQUEST_ENTRY_CNT_83XX;
3020                 rsp_length = RESPONSE_ENTRY_CNT_83XX;
3021                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3022                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3023                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3024                 ha->gid_list_info_size = 8;
3025                 ha->optrom_size = OPTROM_SIZE_83XX;
3026                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3027                 ha->isp_ops = &qla27xx_isp_ops;
3028                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
3029                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
3030                 ha->nvram_conf_off = ~0;
3031                 ha->nvram_data_off = ~0;
3032         } else if (IS_QLA28XX(ha)) {
3033                 ha->portnum = PCI_FUNC(ha->pdev->devfn);
3034                 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3035                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3036                 req_length = REQUEST_ENTRY_CNT_24XX;
3037                 rsp_length = RESPONSE_ENTRY_CNT_2300;
3038                 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3039                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3040                 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3041                 ha->gid_list_info_size = 8;
3042                 ha->optrom_size = OPTROM_SIZE_28XX;
3043                 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3044                 ha->isp_ops = &qla27xx_isp_ops;
3045                 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_28XX;
3046                 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_28XX;
3047                 ha->nvram_conf_off = ~0;
3048                 ha->nvram_data_off = ~0;
3049         }
3050
3051         ql_dbg_pci(ql_dbg_init, pdev, 0x001e,
3052             "mbx_count=%d, req_length=%d, "
3053             "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, "
3054             "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, "
3055             "max_fibre_devices=%d.\n",
3056             ha->mbx_count, req_length, rsp_length, ha->max_loop_id,
3057             ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size,
3058             ha->nvram_npiv_size, ha->max_fibre_devices);
3059         ql_dbg_pci(ql_dbg_init, pdev, 0x001f,
3060             "isp_ops=%p, flash_conf_off=%d, "
3061             "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n",
3062             ha->isp_ops, ha->flash_conf_off, ha->flash_data_off,
3063             ha->nvram_conf_off, ha->nvram_data_off);
3064
3065         /* Configure PCI I/O space */
3066         ret = ha->isp_ops->iospace_config(ha);
3067         if (ret)
3068                 goto iospace_config_failed;
3069
3070         ql_log_pci(ql_log_info, pdev, 0x001d,
3071             "Found an ISP%04X irq %d iobase 0x%p.\n",
3072             pdev->device, pdev->irq, ha->iobase);
3073         mutex_init(&ha->vport_lock);
3074         mutex_init(&ha->mq_lock);
3075         init_completion(&ha->mbx_cmd_comp);
3076         complete(&ha->mbx_cmd_comp);
3077         init_completion(&ha->mbx_intr_comp);
3078         init_completion(&ha->dcbx_comp);
3079         init_completion(&ha->lb_portup_comp);
3080
3081         set_bit(0, (unsigned long *) ha->vp_idx_map);
3082
3083         qla2x00_config_dma_addressing(ha);
3084         ql_dbg_pci(ql_dbg_init, pdev, 0x0020,
3085             "64 Bit addressing is %s.\n",
3086             ha->flags.enable_64bit_addressing ? "enable" :
3087             "disable");
3088         ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
3089         if (ret) {
3090                 ql_log_pci(ql_log_fatal, pdev, 0x0031,
3091                     "Failed to allocate memory for adapter, aborting.\n");
3092
3093                 goto probe_hw_failed;
3094         }
3095
3096         req->max_q_depth = MAX_Q_DEPTH;
3097         if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
3098                 req->max_q_depth = ql2xmaxqdepth;
3099
3100
3101         base_vha = qla2x00_create_host(sht, ha);
3102         if (!base_vha) {
3103                 ret = -ENOMEM;
3104                 goto probe_hw_failed;
3105         }
3106
3107         pci_set_drvdata(pdev, base_vha);
3108         set_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3109
3110         host = base_vha->host;
3111         base_vha->req = req;
3112         if (IS_QLA2XXX_MIDTYPE(ha))
3113                 base_vha->mgmt_svr_loop_id =
3114                         qla2x00_reserve_mgmt_server_loop_id(base_vha);
3115         else
3116                 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
3117                                                 base_vha->vp_idx;
3118
3119         /* Setup fcport template structure. */
3120         ha->mr.fcport.vha = base_vha;
3121         ha->mr.fcport.port_type = FCT_UNKNOWN;
3122         ha->mr.fcport.loop_id = FC_NO_LOOP_ID;
3123         qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED);
3124         ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED;
3125         ha->mr.fcport.scan_state = 1;
3126
3127         qla2xxx_reset_stats(host, QLA2XX_HW_ERROR | QLA2XX_SHT_LNK_DWN |
3128                             QLA2XX_INT_ERR | QLA2XX_CMD_TIMEOUT |
3129                             QLA2XX_RESET_CMD_ERR | QLA2XX_TGT_SHT_LNK_DOWN);
3130
3131         /* Set the SG table size based on ISP type */
3132         if (!IS_FWI2_CAPABLE(ha)) {
3133                 if (IS_QLA2100(ha))
3134                         host->sg_tablesize = 32;
3135         } else {
3136                 if (!IS_QLA82XX(ha))
3137                         host->sg_tablesize = QLA_SG_ALL;
3138         }
3139         host->max_id = ha->max_fibre_devices;
3140         host->cmd_per_lun = 3;
3141         host->unique_id = host->host_no;
3142         if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
3143                 host->max_cmd_len = 32;
3144         else
3145                 host->max_cmd_len = MAX_CMDSZ;
3146         host->max_channel = MAX_BUSES - 1;
3147         /* Older HBAs support only 16-bit LUNs */
3148         if (!IS_QLAFX00(ha) && !IS_FWI2_CAPABLE(ha) &&
3149             ql2xmaxlun > 0xffff)
3150                 host->max_lun = 0xffff;
3151         else
3152                 host->max_lun = ql2xmaxlun;
3153         host->transportt = qla2xxx_transport_template;
3154         sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
3155
3156         ql_dbg(ql_dbg_init, base_vha, 0x0033,
3157             "max_id=%d this_id=%d "
3158             "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d "
3159             "max_lun=%llu transportt=%p, vendor_id=%llu.\n", host->max_id,
3160             host->this_id, host->cmd_per_lun, host->unique_id,
3161             host->max_cmd_len, host->max_channel, host->max_lun,
3162             host->transportt, sht->vendor_id);
3163
3164         INIT_WORK(&base_vha->iocb_work, qla2x00_iocb_work_fn);
3165
3166         /* Set up the irqs */
3167         ret = qla2x00_request_irqs(ha, rsp);
3168         if (ret)
3169                 goto probe_failed;
3170
3171         /* Alloc arrays of request and response ring ptrs */
3172         ret = qla2x00_alloc_queues(ha, req, rsp);
3173         if (ret) {
3174                 ql_log(ql_log_fatal, base_vha, 0x003d,
3175                     "Failed to allocate memory for queue pointers..."
3176                     "aborting.\n");
3177                 ret = -ENODEV;
3178                 goto probe_failed;
3179         }
3180
3181         if (ha->mqenable) {
3182                 /* number of hardware queues supported by blk/scsi-mq*/
3183                 host->nr_hw_queues = ha->max_qpairs;
3184
3185                 ql_dbg(ql_dbg_init, base_vha, 0x0192,
3186                         "blk/scsi-mq enabled, HW queues = %d.\n", host->nr_hw_queues);
3187         } else {
3188                 if (ql2xnvmeenable) {
3189                         host->nr_hw_queues = ha->max_qpairs;
3190                         ql_dbg(ql_dbg_init, base_vha, 0x0194,
3191                             "FC-NVMe support is enabled, HW queues=%d\n",
3192                             host->nr_hw_queues);
3193                 } else {
3194                         ql_dbg(ql_dbg_init, base_vha, 0x0193,
3195                             "blk/scsi-mq disabled.\n");
3196                 }
3197         }
3198
3199         qlt_probe_one_stage1(base_vha, ha);
3200
3201         pci_save_state(pdev);
3202
3203         /* Assign back pointers */
3204         rsp->req = req;
3205         req->rsp = rsp;
3206
3207         if (IS_QLAFX00(ha)) {
3208                 ha->rsp_q_map[0] = rsp;
3209                 ha->req_q_map[0] = req;
3210                 set_bit(0, ha->req_qid_map);
3211                 set_bit(0, ha->rsp_qid_map);
3212         }
3213
3214         /* FWI2-capable only. */
3215         req->req_q_in = &ha->iobase->isp24.req_q_in;
3216         req->req_q_out = &ha->iobase->isp24.req_q_out;
3217         rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
3218         rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
3219         if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha) ||
3220             IS_QLA28XX(ha)) {
3221                 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
3222                 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
3223                 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
3224                 rsp->rsp_q_out =  &ha->mqiobase->isp25mq.rsp_q_out;
3225         }
3226
3227         if (IS_QLAFX00(ha)) {
3228                 req->req_q_in = &ha->iobase->ispfx00.req_q_in;
3229                 req->req_q_out = &ha->iobase->ispfx00.req_q_out;
3230                 rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in;
3231                 rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out;
3232         }
3233
3234         if (IS_P3P_TYPE(ha)) {
3235                 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
3236                 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
3237                 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
3238         }
3239
3240         ql_dbg(ql_dbg_multiq, base_vha, 0xc009,
3241             "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3242             ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3243         ql_dbg(ql_dbg_multiq, base_vha, 0xc00a,
3244             "req->req_q_in=%p req->req_q_out=%p "
3245             "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3246             req->req_q_in, req->req_q_out,
3247             rsp->rsp_q_in, rsp->rsp_q_out);
3248         ql_dbg(ql_dbg_init, base_vha, 0x003e,
3249             "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3250             ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3251         ql_dbg(ql_dbg_init, base_vha, 0x003f,
3252             "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3253             req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
3254
3255         ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 0);
3256         if (unlikely(!ha->wq)) {
3257                 ret = -ENOMEM;
3258                 goto probe_failed;
3259         }
3260
3261         if (ha->isp_ops->initialize_adapter(base_vha)) {
3262                 ql_log(ql_log_fatal, base_vha, 0x00d6,
3263                     "Failed to initialize adapter - Adapter flags %x.\n",
3264                     base_vha->device_flags);
3265
3266                 if (IS_QLA82XX(ha)) {
3267                         qla82xx_idc_lock(ha);
3268                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3269                                 QLA8XXX_DEV_FAILED);
3270                         qla82xx_idc_unlock(ha);
3271                         ql_log(ql_log_fatal, base_vha, 0x00d7,
3272                             "HW State: FAILED.\n");
3273                 } else if (IS_QLA8044(ha)) {
3274                         qla8044_idc_lock(ha);
3275                         qla8044_wr_direct(base_vha,
3276                                 QLA8044_CRB_DEV_STATE_INDEX,
3277                                 QLA8XXX_DEV_FAILED);
3278                         qla8044_idc_unlock(ha);
3279                         ql_log(ql_log_fatal, base_vha, 0x0150,
3280                             "HW State: FAILED.\n");
3281                 }
3282
3283                 ret = -ENODEV;
3284                 goto probe_failed;
3285         }
3286
3287         if (IS_QLAFX00(ha))
3288                 host->can_queue = QLAFX00_MAX_CANQUEUE;
3289         else
3290                 host->can_queue = req->num_outstanding_cmds - 10;
3291
3292         ql_dbg(ql_dbg_init, base_vha, 0x0032,
3293             "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n",
3294             host->can_queue, base_vha->req,
3295             base_vha->mgmt_svr_loop_id, host->sg_tablesize);
3296
3297         if (ha->mqenable) {
3298                 bool startit = false;
3299
3300                 if (QLA_TGT_MODE_ENABLED())
3301                         startit = false;
3302
3303                 if (ql2x_ini_mode == QLA2XXX_INI_MODE_ENABLED)
3304                         startit = true;
3305
3306                 /* Create start of day qpairs for Block MQ */
3307                 for (i = 0; i < ha->max_qpairs; i++)
3308                         qla2xxx_create_qpair(base_vha, 5, 0, startit);
3309         }
3310         qla_init_iocb_limit(base_vha);
3311
3312         if (ha->flags.running_gold_fw)
3313                 goto skip_dpc;
3314
3315         /*
3316          * Startup the kernel thread for this host adapter
3317          */
3318         ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
3319             "%s_dpc", base_vha->host_str);
3320         if (IS_ERR(ha->dpc_thread)) {
3321                 ql_log(ql_log_fatal, base_vha, 0x00ed,
3322                     "Failed to start DPC thread.\n");
3323                 ret = PTR_ERR(ha->dpc_thread);
3324                 ha->dpc_thread = NULL;
3325                 goto probe_failed;
3326         }
3327         ql_dbg(ql_dbg_init, base_vha, 0x00ee,
3328             "DPC thread started successfully.\n");
3329
3330         /*
3331          * If we're not coming up in initiator mode, we might sit for
3332          * a while without waking up the dpc thread, which leads to a
3333          * stuck process warning.  So just kick the dpc once here and
3334          * let the kthread start (and go back to sleep in qla2x00_do_dpc).
3335          */
3336         qla2xxx_wake_dpc(base_vha);
3337
3338         INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error);
3339
3340         if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) {
3341                 sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no);
3342                 ha->dpc_lp_wq = create_singlethread_workqueue(wq_name);
3343                 INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen);
3344
3345                 sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no);
3346                 ha->dpc_hp_wq = create_singlethread_workqueue(wq_name);
3347                 INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work);
3348                 INIT_WORK(&ha->idc_state_handler,
3349                     qla83xx_idc_state_handler_work);
3350                 INIT_WORK(&ha->nic_core_unrecoverable,
3351                     qla83xx_nic_core_unrecoverable_work);
3352         }
3353
3354 skip_dpc:
3355         list_add_tail(&base_vha->list, &ha->vp_list);
3356         base_vha->host->irq = ha->pdev->irq;
3357
3358         /* Initialized the timer */
3359         qla2x00_start_timer(base_vha, WATCH_INTERVAL);
3360         ql_dbg(ql_dbg_init, base_vha, 0x00ef,
3361             "Started qla2x00_timer with "
3362             "interval=%d.\n", WATCH_INTERVAL);
3363         ql_dbg(ql_dbg_init, base_vha, 0x00f0,
3364             "Detected hba at address=%p.\n",
3365             ha);
3366
3367         if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
3368                 if (ha->fw_attributes & BIT_4) {
3369                         int prot = 0, guard;
3370
3371                         base_vha->flags.difdix_supported = 1;
3372                         ql_dbg(ql_dbg_init, base_vha, 0x00f1,
3373                             "Registering for DIF/DIX type 1 and 3 protection.\n");
3374                         if (ql2xenabledif == 1)
3375                                 prot = SHOST_DIX_TYPE0_PROTECTION;
3376                         if (ql2xprotmask)
3377                                 scsi_host_set_prot(host, ql2xprotmask);
3378                         else
3379                                 scsi_host_set_prot(host,
3380                                     prot | SHOST_DIF_TYPE1_PROTECTION
3381                                     | SHOST_DIF_TYPE2_PROTECTION
3382                                     | SHOST_DIF_TYPE3_PROTECTION
3383                                     | SHOST_DIX_TYPE1_PROTECTION
3384                                     | SHOST_DIX_TYPE2_PROTECTION
3385                                     | SHOST_DIX_TYPE3_PROTECTION);
3386
3387                         guard = SHOST_DIX_GUARD_CRC;
3388
3389                         if (IS_PI_IPGUARD_CAPABLE(ha) &&
3390                             (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha)))
3391                                 guard |= SHOST_DIX_GUARD_IP;
3392
3393                         if (ql2xprotguard)
3394                                 scsi_host_set_guard(host, ql2xprotguard);
3395                         else
3396                                 scsi_host_set_guard(host, guard);
3397                 } else
3398                         base_vha->flags.difdix_supported = 0;
3399         }
3400
3401         ha->isp_ops->enable_intrs(ha);
3402
3403         if (IS_QLAFX00(ha)) {
3404                 ret = qlafx00_fx_disc(base_vha,
3405                         &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO);
3406                 host->sg_tablesize = (ha->mr.extended_io_enabled) ?
3407                     QLA_SG_ALL : 128;
3408         }
3409
3410         ret = scsi_add_host(host, &pdev->dev);
3411         if (ret)
3412                 goto probe_failed;
3413
3414         base_vha->flags.init_done = 1;
3415         base_vha->flags.online = 1;
3416         ha->prev_minidump_failed = 0;
3417
3418         ql_dbg(ql_dbg_init, base_vha, 0x00f2,
3419             "Init done and hba is online.\n");
3420
3421         if (qla_ini_mode_enabled(base_vha) ||
3422                 qla_dual_mode_enabled(base_vha))
3423                 scsi_scan_host(host);
3424         else
3425                 ql_dbg(ql_dbg_init, base_vha, 0x0122,
3426                         "skipping scsi_scan_host() for non-initiator port\n");
3427
3428         qla2x00_alloc_sysfs_attr(base_vha);
3429
3430         if (IS_QLAFX00(ha)) {
3431                 ret = qlafx00_fx_disc(base_vha,
3432                         &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO);
3433
3434                 /* Register system information */
3435                 ret =  qlafx00_fx_disc(base_vha,
3436                         &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO);
3437         }
3438
3439         qla2x00_init_host_attr(base_vha);
3440
3441         qla2x00_dfs_setup(base_vha);
3442
3443         ql_log(ql_log_info, base_vha, 0x00fb,
3444             "QLogic %s - %s.\n", ha->model_number, ha->model_desc);
3445         ql_log(ql_log_info, base_vha, 0x00fc,
3446             "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n",
3447             pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info,
3448                                                        sizeof(pci_info)),
3449             pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-',
3450             base_vha->host_no,
3451             ha->isp_ops->fw_version_str(base_vha, fw_str, sizeof(fw_str)));
3452
3453         qlt_add_target(ha, base_vha);
3454
3455         clear_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3456
3457         if (test_bit(UNLOADING, &base_vha->dpc_flags))
3458                 return -ENODEV;
3459
3460         return 0;
3461
3462 probe_failed:
3463         qla_enode_stop(base_vha);
3464         if (base_vha->gnl.l) {
3465                 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size,
3466                                 base_vha->gnl.l, base_vha->gnl.ldma);
3467                 base_vha->gnl.l = NULL;
3468         }
3469
3470         if (base_vha->timer_active)
3471                 qla2x00_stop_timer(base_vha);
3472         base_vha->flags.online = 0;
3473         if (ha->dpc_thread) {
3474                 struct task_struct *t = ha->dpc_thread;
3475
3476                 ha->dpc_thread = NULL;
3477                 kthread_stop(t);
3478         }
3479
3480         qla2x00_free_device(base_vha);
3481         scsi_host_put(base_vha->host);
3482         /*
3483          * Need to NULL out local req/rsp after
3484          * qla2x00_free_device => qla2x00_free_queues frees
3485          * what these are pointing to. Or else we'll
3486          * fall over below in qla2x00_free_req/rsp_que.
3487          */
3488         req = NULL;
3489         rsp = NULL;
3490
3491 probe_hw_failed:
3492         qla2x00_mem_free(ha);
3493         qla2x00_free_req_que(ha, req);
3494         qla2x00_free_rsp_que(ha, rsp);
3495         qla2x00_clear_drv_active(ha);
3496
3497 iospace_config_failed:
3498         if (IS_P3P_TYPE(ha)) {
3499                 if (!ha->nx_pcibase)
3500                         iounmap((device_reg_t *)ha->nx_pcibase);
3501                 if (!ql2xdbwr)
3502                         iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3503         } else {
3504                 if (ha->iobase)
3505                         iounmap(ha->iobase);
3506                 if (ha->cregbase)
3507                         iounmap(ha->cregbase);
3508         }
3509         pci_release_selected_regions(ha->pdev, ha->bars);
3510         kfree(ha);
3511
3512 disable_device:
3513         pci_disable_device(pdev);
3514         return ret;
3515 }
3516
3517 static void __qla_set_remove_flag(scsi_qla_host_t *base_vha)
3518 {
3519         scsi_qla_host_t *vp;
3520         unsigned long flags;
3521         struct qla_hw_data *ha;
3522
3523         if (!base_vha)
3524                 return;
3525
3526         ha = base_vha->hw;
3527
3528         spin_lock_irqsave(&ha->vport_slock, flags);
3529         list_for_each_entry(vp, &ha->vp_list, list)
3530                 set_bit(PFLG_DRIVER_REMOVING, &vp->pci_flags);
3531
3532         /*
3533          * Indicate device removal to prevent future board_disable
3534          * and wait until any pending board_disable has completed.
3535          */
3536         set_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags);
3537         spin_unlock_irqrestore(&ha->vport_slock, flags);
3538 }
3539
3540 static void
3541 qla2x00_shutdown(struct pci_dev *pdev)
3542 {
3543         scsi_qla_host_t *vha;
3544         struct qla_hw_data  *ha;
3545
3546         vha = pci_get_drvdata(pdev);
3547         ha = vha->hw;
3548
3549         ql_log(ql_log_info, vha, 0xfffa,
3550                 "Adapter shutdown\n");
3551
3552         /*
3553          * Prevent future board_disable and wait
3554          * until any pending board_disable has completed.
3555          */
3556         __qla_set_remove_flag(vha);
3557         cancel_work_sync(&ha->board_disable);
3558
3559         if (!atomic_read(&pdev->enable_cnt))
3560                 return;
3561
3562         /* Notify ISPFX00 firmware */
3563         if (IS_QLAFX00(ha))
3564                 qlafx00_driver_shutdown(vha, 20);
3565
3566         /* Turn-off FCE trace */
3567         if (ha->flags.fce_enabled) {
3568                 qla2x00_disable_fce_trace(vha, NULL, NULL);
3569                 ha->flags.fce_enabled = 0;
3570         }
3571
3572         /* Turn-off EFT trace */
3573         if (ha->eft)
3574                 qla2x00_disable_eft_trace(vha);
3575
3576         if (IS_QLA25XX(ha) ||  IS_QLA2031(ha) || IS_QLA27XX(ha) ||
3577             IS_QLA28XX(ha)) {
3578                 if (ha->flags.fw_started)
3579                         qla2x00_abort_isp_cleanup(vha);
3580         } else {
3581                 /* Stop currently executing firmware. */
3582                 qla2x00_try_to_stop_firmware(vha);
3583         }
3584
3585         /* Disable timer */
3586         if (vha->timer_active)
3587                 qla2x00_stop_timer(vha);
3588
3589         /* Turn adapter off line */
3590         vha->flags.online = 0;
3591
3592         /* turn-off interrupts on the card */
3593         if (ha->interrupts_on) {
3594                 vha->flags.init_done = 0;
3595                 ha->isp_ops->disable_intrs(ha);
3596         }
3597
3598         qla2x00_free_irqs(vha);
3599
3600         qla2x00_free_fw_dump(ha);
3601
3602         pci_disable_device(pdev);
3603         ql_log(ql_log_info, vha, 0xfffe,
3604                 "Adapter shutdown successfully.\n");
3605 }
3606
3607 /* Deletes all the virtual ports for a given ha */
3608 static void
3609 qla2x00_delete_all_vps(struct qla_hw_data *ha, scsi_qla_host_t *base_vha)
3610 {
3611         scsi_qla_host_t *vha;
3612         unsigned long flags;
3613
3614         mutex_lock(&ha->vport_lock);
3615         while (ha->cur_vport_count) {
3616                 spin_lock_irqsave(&ha->vport_slock, flags);
3617
3618                 BUG_ON(base_vha->list.next == &ha->vp_list);
3619                 /* This assumes first entry in ha->vp_list is always base vha */
3620                 vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list);
3621                 scsi_host_get(vha->host);
3622
3623                 spin_unlock_irqrestore(&ha->vport_slock, flags);
3624                 mutex_unlock(&ha->vport_lock);
3625
3626                 qla_nvme_delete(vha);
3627
3628                 fc_vport_terminate(vha->fc_vport);
3629                 scsi_host_put(vha->host);
3630
3631                 mutex_lock(&ha->vport_lock);
3632         }
3633         mutex_unlock(&ha->vport_lock);
3634 }
3635
3636 /* Stops all deferred work threads */
3637 static void
3638 qla2x00_destroy_deferred_work(struct qla_hw_data *ha)
3639 {
3640         /* Cancel all work and destroy DPC workqueues */
3641         if (ha->dpc_lp_wq) {
3642                 cancel_work_sync(&ha->idc_aen);
3643                 destroy_workqueue(ha->dpc_lp_wq);
3644                 ha->dpc_lp_wq = NULL;
3645         }
3646
3647         if (ha->dpc_hp_wq) {
3648                 cancel_work_sync(&ha->nic_core_reset);
3649                 cancel_work_sync(&ha->idc_state_handler);
3650                 cancel_work_sync(&ha->nic_core_unrecoverable);
3651                 destroy_workqueue(ha->dpc_hp_wq);
3652                 ha->dpc_hp_wq = NULL;
3653         }
3654
3655         /* Kill the kernel thread for this host */
3656         if (ha->dpc_thread) {
3657                 struct task_struct *t = ha->dpc_thread;
3658
3659                 /*
3660                  * qla2xxx_wake_dpc checks for ->dpc_thread
3661                  * so we need to zero it out.
3662                  */
3663                 ha->dpc_thread = NULL;
3664                 kthread_stop(t);
3665         }
3666 }
3667
3668 static void
3669 qla2x00_unmap_iobases(struct qla_hw_data *ha)
3670 {
3671         if (IS_QLA82XX(ha)) {
3672
3673                 iounmap((device_reg_t *)ha->nx_pcibase);
3674                 if (!ql2xdbwr)
3675                         iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3676         } else {
3677                 if (ha->iobase)
3678                         iounmap(ha->iobase);
3679
3680                 if (ha->cregbase)
3681                         iounmap(ha->cregbase);
3682
3683                 if (ha->mqiobase)
3684                         iounmap(ha->mqiobase);
3685
3686                 if ((IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) &&
3687                     ha->msixbase)
3688                         iounmap(ha->msixbase);
3689         }
3690 }
3691
3692 static void
3693 qla2x00_clear_drv_active(struct qla_hw_data *ha)
3694 {
3695         if (IS_QLA8044(ha)) {
3696                 qla8044_idc_lock(ha);
3697                 qla8044_clear_drv_active(ha);
3698                 qla8044_idc_unlock(ha);
3699         } else if (IS_QLA82XX(ha)) {
3700                 qla82xx_idc_lock(ha);
3701                 qla82xx_clear_drv_active(ha);
3702                 qla82xx_idc_unlock(ha);
3703         }
3704 }
3705
3706 static void
3707 qla2x00_remove_one(struct pci_dev *pdev)
3708 {
3709         scsi_qla_host_t *base_vha;
3710         struct qla_hw_data  *ha;
3711
3712         base_vha = pci_get_drvdata(pdev);
3713         ha = base_vha->hw;
3714         ql_log(ql_log_info, base_vha, 0xb079,
3715             "Removing driver\n");
3716         __qla_set_remove_flag(base_vha);
3717         cancel_work_sync(&ha->board_disable);
3718
3719         /*
3720          * If the PCI device is disabled then there was a PCI-disconnect and
3721          * qla2x00_disable_board_on_pci_error has taken care of most of the
3722          * resources.
3723          */
3724         if (!atomic_read(&pdev->enable_cnt)) {
3725                 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size,
3726                     base_vha->gnl.l, base_vha->gnl.ldma);
3727                 base_vha->gnl.l = NULL;
3728                 scsi_host_put(base_vha->host);
3729                 kfree(ha);
3730                 pci_set_drvdata(pdev, NULL);
3731                 return;
3732         }
3733         qla2x00_wait_for_hba_ready(base_vha);
3734
3735         /*
3736          * if UNLOADING flag is already set, then continue unload,
3737          * where it was set first.
3738          */
3739         if (test_and_set_bit(UNLOADING, &base_vha->dpc_flags))
3740                 return;
3741
3742         if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) ||
3743             IS_QLA28XX(ha)) {
3744                 if (ha->flags.fw_started)
3745                         qla2x00_abort_isp_cleanup(base_vha);
3746         } else if (!IS_QLAFX00(ha)) {
3747                 if (IS_QLA8031(ha)) {
3748                         ql_dbg(ql_dbg_p3p, base_vha, 0xb07e,
3749                             "Clearing fcoe driver presence.\n");
3750                         if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS)
3751                                 ql_dbg(ql_dbg_p3p, base_vha, 0xb079,
3752                                     "Error while clearing DRV-Presence.\n");
3753                 }
3754
3755                 qla2x00_try_to_stop_firmware(base_vha);
3756         }
3757
3758         qla2x00_wait_for_sess_deletion(base_vha);
3759
3760         qla_nvme_delete(base_vha);
3761
3762         dma_free_coherent(&ha->pdev->dev,
3763                 base_vha->gnl.size, base_vha->gnl.l, base_vha->gnl.ldma);
3764
3765         base_vha->gnl.l = NULL;
3766         qla_enode_stop(base_vha);
3767
3768         vfree(base_vha->scan.l);
3769
3770         if (IS_QLAFX00(ha))
3771                 qlafx00_driver_shutdown(base_vha, 20);
3772
3773         qla2x00_delete_all_vps(ha, base_vha);
3774
3775         qla2x00_dfs_remove(base_vha);
3776
3777         qla84xx_put_chip(base_vha);
3778
3779         /* Disable timer */
3780         if (base_vha->timer_active)
3781                 qla2x00_stop_timer(base_vha);
3782
3783         base_vha->flags.online = 0;
3784
3785         /* free DMA memory */
3786         if (ha->exlogin_buf)
3787                 qla2x00_free_exlogin_buffer(ha);
3788
3789         /* free DMA memory */
3790         if (ha->exchoffld_buf)
3791                 qla2x00_free_exchoffld_buffer(ha);
3792
3793         qla2x00_destroy_deferred_work(ha);
3794
3795         qlt_remove_target(ha, base_vha);
3796
3797         qla2x00_free_sysfs_attr(base_vha, true);
3798
3799         fc_remove_host(base_vha->host);
3800
3801         scsi_remove_host(base_vha->host);
3802
3803         qla2x00_free_device(base_vha);
3804
3805         qla2x00_clear_drv_active(ha);
3806
3807         scsi_host_put(base_vha->host);
3808
3809         qla2x00_unmap_iobases(ha);
3810
3811         pci_release_selected_regions(ha->pdev, ha->bars);
3812         kfree(ha);
3813
3814         pci_disable_pcie_error_reporting(pdev);
3815
3816         pci_disable_device(pdev);
3817 }
3818
3819 static inline void
3820 qla24xx_free_purex_list(struct purex_list *list)
3821 {
3822         struct list_head *item, *next;
3823         ulong flags;
3824
3825         spin_lock_irqsave(&list->lock, flags);
3826         list_for_each_safe(item, next, &list->head) {
3827                 list_del(item);
3828                 kfree(list_entry(item, struct purex_item, list));
3829         }
3830         spin_unlock_irqrestore(&list->lock, flags);
3831 }
3832
3833 static void
3834 qla2x00_free_device(scsi_qla_host_t *vha)
3835 {
3836         struct qla_hw_data *ha = vha->hw;
3837
3838         qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
3839
3840         /* Disable timer */
3841         if (vha->timer_active)
3842                 qla2x00_stop_timer(vha);
3843
3844         qla25xx_delete_queues(vha);
3845         vha->flags.online = 0;
3846
3847         /* turn-off interrupts on the card */
3848         if (ha->interrupts_on) {
3849                 vha->flags.init_done = 0;
3850                 ha->isp_ops->disable_intrs(ha);
3851         }
3852
3853         qla2x00_free_fcports(vha);
3854
3855         qla2x00_free_irqs(vha);
3856
3857         /* Flush the work queue and remove it */
3858         if (ha->wq) {
3859                 flush_workqueue(ha->wq);
3860                 destroy_workqueue(ha->wq);
3861                 ha->wq = NULL;
3862         }
3863
3864
3865         qla24xx_free_purex_list(&vha->purex_list);
3866
3867         qla2x00_mem_free(ha);
3868
3869         qla82xx_md_free(vha);
3870
3871         qla2x00_free_queues(ha);
3872 }
3873
3874 void qla2x00_free_fcports(struct scsi_qla_host *vha)
3875 {
3876         fc_port_t *fcport, *tfcport;
3877
3878         list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list)
3879                 qla2x00_free_fcport(fcport);
3880 }
3881
3882 static inline void
3883 qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport)
3884 {
3885         int now;
3886
3887         if (!fcport->rport)
3888                 return;
3889
3890         if (fcport->rport) {
3891                 ql_dbg(ql_dbg_disc, fcport->vha, 0x2109,
3892                     "%s %8phN. rport %p roles %x\n",
3893                     __func__, fcport->port_name, fcport->rport,
3894                     fcport->rport->roles);
3895                 fc_remote_port_delete(fcport->rport);
3896         }
3897         qlt_do_generation_tick(vha, &now);
3898 }
3899
3900 /*
3901  * qla2x00_mark_device_lost Updates fcport state when device goes offline.
3902  *
3903  * Input: ha = adapter block pointer.  fcport = port structure pointer.
3904  *
3905  * Return: None.
3906  *
3907  * Context:
3908  */
3909 void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
3910     int do_login)
3911 {
3912         if (IS_QLAFX00(vha->hw)) {
3913                 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3914                 qla2x00_schedule_rport_del(vha, fcport);
3915                 return;
3916         }
3917
3918         if (atomic_read(&fcport->state) == FCS_ONLINE &&
3919             vha->vp_idx == fcport->vha->vp_idx) {
3920                 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3921                 qla2x00_schedule_rport_del(vha, fcport);
3922         }
3923         /*
3924          * We may need to retry the login, so don't change the state of the
3925          * port but do the retries.
3926          */
3927         if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
3928                 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3929
3930         if (!do_login)
3931                 return;
3932
3933         set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
3934 }
3935
3936 void
3937 qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha)
3938 {
3939         fc_port_t *fcport;
3940
3941         ql_dbg(ql_dbg_disc, vha, 0x20f1,
3942             "Mark all dev lost\n");
3943
3944         list_for_each_entry(fcport, &vha->vp_fcports, list) {
3945                 fcport->scan_state = 0;
3946                 qlt_schedule_sess_for_deletion(fcport);
3947         }
3948 }
3949
3950 static void qla2x00_set_reserved_loop_ids(struct qla_hw_data *ha)
3951 {
3952         int i;
3953
3954         if (IS_FWI2_CAPABLE(ha))
3955                 return;
3956
3957         for (i = 0; i < SNS_FIRST_LOOP_ID; i++)
3958                 set_bit(i, ha->loop_id_map);
3959         set_bit(MANAGEMENT_SERVER, ha->loop_id_map);
3960         set_bit(BROADCAST, ha->loop_id_map);
3961 }
3962
3963 /*
3964 * qla2x00_mem_alloc
3965 *      Allocates adapter memory.
3966 *
3967 * Returns:
3968 *      0  = success.
3969 *      !0  = failure.
3970 */
3971 static int
3972 qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
3973         struct req_que **req, struct rsp_que **rsp)
3974 {
3975         char    name[16];
3976         int rc;
3977
3978         ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
3979                 &ha->init_cb_dma, GFP_KERNEL);
3980         if (!ha->init_cb)
3981                 goto fail;
3982
3983         rc = btree_init32(&ha->host_map);
3984         if (rc)
3985                 goto fail_free_init_cb;
3986
3987         if (qlt_mem_alloc(ha) < 0)
3988                 goto fail_free_btree;
3989
3990         ha->gid_list = dma_alloc_coherent(&ha->pdev->dev,
3991                 qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL);
3992         if (!ha->gid_list)
3993                 goto fail_free_tgt_mem;
3994
3995         ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
3996         if (!ha->srb_mempool)
3997                 goto fail_free_gid_list;
3998
3999         if (IS_P3P_TYPE(ha)) {
4000                 /* Allocate cache for CT6 Ctx. */
4001                 if (!ctx_cachep) {
4002                         ctx_cachep = kmem_cache_create("qla2xxx_ctx",
4003                                 sizeof(struct ct6_dsd), 0,
4004                                 SLAB_HWCACHE_ALIGN, NULL);
4005                         if (!ctx_cachep)
4006                                 goto fail_free_srb_mempool;
4007                 }
4008                 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
4009                         ctx_cachep);
4010                 if (!ha->ctx_mempool)
4011                         goto fail_free_srb_mempool;
4012                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021,
4013                     "ctx_cachep=%p ctx_mempool=%p.\n",
4014                     ctx_cachep, ha->ctx_mempool);
4015         }
4016
4017         /* Get memory for cached NVRAM */
4018         ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
4019         if (!ha->nvram)
4020                 goto fail_free_ctx_mempool;
4021
4022         snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
4023                 ha->pdev->device);
4024         ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4025                 DMA_POOL_SIZE, 8, 0);
4026         if (!ha->s_dma_pool)
4027                 goto fail_free_nvram;
4028
4029         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022,
4030             "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n",
4031             ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool);
4032
4033         if (IS_P3P_TYPE(ha) || ql2xenabledif) {
4034                 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4035                         DSD_LIST_DMA_POOL_SIZE, 8, 0);
4036                 if (!ha->dl_dma_pool) {
4037                         ql_log_pci(ql_log_fatal, ha->pdev, 0x0023,
4038                             "Failed to allocate memory for dl_dma_pool.\n");
4039                         goto fail_s_dma_pool;
4040                 }
4041
4042                 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4043                         FCP_CMND_DMA_POOL_SIZE, 8, 0);
4044                 if (!ha->fcp_cmnd_dma_pool) {
4045                         ql_log_pci(ql_log_fatal, ha->pdev, 0x0024,
4046                             "Failed to allocate memory for fcp_cmnd_dma_pool.\n");
4047                         goto fail_dl_dma_pool;
4048                 }
4049
4050                 if (ql2xenabledif) {
4051                         u64 bufsize = DIF_BUNDLING_DMA_POOL_SIZE;
4052                         struct dsd_dma *dsd, *nxt;
4053                         uint i;
4054                         /* Creata a DMA pool of buffers for DIF bundling */
4055                         ha->dif_bundl_pool = dma_pool_create(name,
4056                             &ha->pdev->dev, DIF_BUNDLING_DMA_POOL_SIZE, 8, 0);
4057                         if (!ha->dif_bundl_pool) {
4058                                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024,
4059                                     "%s: failed create dif_bundl_pool\n",
4060                                     __func__);
4061                                 goto fail_dif_bundl_dma_pool;
4062                         }
4063
4064                         INIT_LIST_HEAD(&ha->pool.good.head);
4065                         INIT_LIST_HEAD(&ha->pool.unusable.head);
4066                         ha->pool.good.count = 0;
4067                         ha->pool.unusable.count = 0;
4068                         for (i = 0; i < 128; i++) {
4069                                 dsd = kzalloc(sizeof(*dsd), GFP_ATOMIC);
4070                                 if (!dsd) {
4071                                         ql_dbg_pci(ql_dbg_init, ha->pdev,
4072                                             0xe0ee, "%s: failed alloc dsd\n",
4073                                             __func__);
4074                                         return 1;
4075                                 }
4076                                 ha->dif_bundle_kallocs++;
4077
4078                                 dsd->dsd_addr = dma_pool_alloc(
4079                                     ha->dif_bundl_pool, GFP_ATOMIC,
4080                                     &dsd->dsd_list_dma);
4081                                 if (!dsd->dsd_addr) {
4082                                         ql_dbg_pci(ql_dbg_init, ha->pdev,
4083                                             0xe0ee,
4084                                             "%s: failed alloc ->dsd_addr\n",
4085                                             __func__);
4086                                         kfree(dsd);
4087                                         ha->dif_bundle_kallocs--;
4088                                         continue;
4089                                 }
4090                                 ha->dif_bundle_dma_allocs++;
4091
4092                                 /*
4093                                  * if DMA buffer crosses 4G boundary,
4094                                  * put it on bad list
4095                                  */
4096                                 if (MSD(dsd->dsd_list_dma) ^
4097                                     MSD(dsd->dsd_list_dma + bufsize)) {
4098                                         list_add_tail(&dsd->list,
4099                                             &ha->pool.unusable.head);
4100                                         ha->pool.unusable.count++;
4101                                 } else {
4102                                         list_add_tail(&dsd->list,
4103                                             &ha->pool.good.head);
4104                                         ha->pool.good.count++;
4105                                 }
4106                         }
4107
4108                         /* return the good ones back to the pool */
4109                         list_for_each_entry_safe(dsd, nxt,
4110                             &ha->pool.good.head, list) {
4111                                 list_del(&dsd->list);
4112                                 dma_pool_free(ha->dif_bundl_pool,
4113                                     dsd->dsd_addr, dsd->dsd_list_dma);
4114                                 ha->dif_bundle_dma_allocs--;
4115                                 kfree(dsd);
4116                                 ha->dif_bundle_kallocs--;
4117                         }
4118
4119                         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024,
4120                             "%s: dif dma pool (good=%u unusable=%u)\n",
4121                             __func__, ha->pool.good.count,
4122                             ha->pool.unusable.count);
4123                 }
4124
4125                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025,
4126                     "dl_dma_pool=%p fcp_cmnd_dma_pool=%p dif_bundl_pool=%p.\n",
4127                     ha->dl_dma_pool, ha->fcp_cmnd_dma_pool,
4128                     ha->dif_bundl_pool);
4129         }
4130
4131         /* Allocate memory for SNS commands */
4132         if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
4133         /* Get consistent memory allocated for SNS commands */
4134                 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
4135                 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
4136                 if (!ha->sns_cmd)
4137                         goto fail_dma_pool;
4138                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026,
4139                     "sns_cmd: %p.\n", ha->sns_cmd);
4140         } else {
4141         /* Get consistent memory allocated for MS IOCB */
4142                 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4143                         &ha->ms_iocb_dma);
4144                 if (!ha->ms_iocb)
4145                         goto fail_dma_pool;
4146         /* Get consistent memory allocated for CT SNS commands */
4147                 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
4148                         sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
4149                 if (!ha->ct_sns)
4150                         goto fail_free_ms_iocb;
4151                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027,
4152                     "ms_iocb=%p ct_sns=%p.\n",
4153                     ha->ms_iocb, ha->ct_sns);
4154         }
4155
4156         /* Allocate memory for request ring */
4157         *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
4158         if (!*req) {
4159                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0028,
4160                     "Failed to allocate memory for req.\n");
4161                 goto fail_req;
4162         }
4163         (*req)->length = req_len;
4164         (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
4165                 ((*req)->length + 1) * sizeof(request_t),
4166                 &(*req)->dma, GFP_KERNEL);
4167         if (!(*req)->ring) {
4168                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0029,
4169                     "Failed to allocate memory for req_ring.\n");
4170                 goto fail_req_ring;
4171         }
4172         /* Allocate memory for response ring */
4173         *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
4174         if (!*rsp) {
4175                 ql_log_pci(ql_log_fatal, ha->pdev, 0x002a,
4176                     "Failed to allocate memory for rsp.\n");
4177                 goto fail_rsp;
4178         }
4179         (*rsp)->hw = ha;
4180         (*rsp)->length = rsp_len;
4181         (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
4182                 ((*rsp)->length + 1) * sizeof(response_t),
4183                 &(*rsp)->dma, GFP_KERNEL);
4184         if (!(*rsp)->ring) {
4185                 ql_log_pci(ql_log_fatal, ha->pdev, 0x002b,
4186                     "Failed to allocate memory for rsp_ring.\n");
4187                 goto fail_rsp_ring;
4188         }
4189         (*req)->rsp = *rsp;
4190         (*rsp)->req = *req;
4191         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c,
4192             "req=%p req->length=%d req->ring=%p rsp=%p "
4193             "rsp->length=%d rsp->ring=%p.\n",
4194             *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length,
4195             (*rsp)->ring);
4196         /* Allocate memory for NVRAM data for vports */
4197         if (ha->nvram_npiv_size) {
4198                 ha->npiv_info = kcalloc(ha->nvram_npiv_size,
4199                                         sizeof(struct qla_npiv_entry),
4200                                         GFP_KERNEL);
4201                 if (!ha->npiv_info) {
4202                         ql_log_pci(ql_log_fatal, ha->pdev, 0x002d,
4203                             "Failed to allocate memory for npiv_info.\n");
4204                         goto fail_npiv_info;
4205                 }
4206         } else
4207                 ha->npiv_info = NULL;
4208
4209         /* Get consistent memory allocated for EX-INIT-CB. */
4210         if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) ||
4211             IS_QLA28XX(ha)) {
4212                 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4213                     &ha->ex_init_cb_dma);
4214                 if (!ha->ex_init_cb)
4215                         goto fail_ex_init_cb;
4216                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e,
4217                     "ex_init_cb=%p.\n", ha->ex_init_cb);
4218         }
4219
4220         /* Get consistent memory allocated for Special Features-CB. */
4221         if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
4222                 ha->sf_init_cb = dma_pool_zalloc(ha->s_dma_pool, GFP_KERNEL,
4223                                                 &ha->sf_init_cb_dma);
4224                 if (!ha->sf_init_cb)
4225                         goto fail_sf_init_cb;
4226                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0199,
4227                            "sf_init_cb=%p.\n", ha->sf_init_cb);
4228         }
4229
4230         INIT_LIST_HEAD(&ha->gbl_dsd_list);
4231
4232         /* Get consistent memory allocated for Async Port-Database. */
4233         if (!IS_FWI2_CAPABLE(ha)) {
4234                 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4235                         &ha->async_pd_dma);
4236                 if (!ha->async_pd)
4237                         goto fail_async_pd;
4238                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f,
4239                     "async_pd=%p.\n", ha->async_pd);
4240         }
4241
4242         INIT_LIST_HEAD(&ha->vp_list);
4243
4244         /* Allocate memory for our loop_id bitmap */
4245         ha->loop_id_map = kcalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE),
4246                                   sizeof(long),
4247                                   GFP_KERNEL);
4248         if (!ha->loop_id_map)
4249                 goto fail_loop_id_map;
4250         else {
4251                 qla2x00_set_reserved_loop_ids(ha);
4252                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123,
4253                     "loop_id_map=%p.\n", ha->loop_id_map);
4254         }
4255
4256         ha->sfp_data = dma_alloc_coherent(&ha->pdev->dev,
4257             SFP_DEV_SIZE, &ha->sfp_data_dma, GFP_KERNEL);
4258         if (!ha->sfp_data) {
4259                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4260                     "Unable to allocate memory for SFP read-data.\n");
4261                 goto fail_sfp_data;
4262         }
4263
4264         ha->flt = dma_alloc_coherent(&ha->pdev->dev,
4265             sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE, &ha->flt_dma,
4266             GFP_KERNEL);
4267         if (!ha->flt) {
4268                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4269                     "Unable to allocate memory for FLT.\n");
4270                 goto fail_flt_buffer;
4271         }
4272
4273         /* allocate the purex dma pool */
4274         ha->purex_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4275             MAX_PAYLOAD, 8, 0);
4276
4277         if (!ha->purex_dma_pool) {
4278                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4279                     "Unable to allocate purex_dma_pool.\n");
4280                 goto fail_flt;
4281         }
4282
4283         ha->elsrej.size = sizeof(struct fc_els_ls_rjt) + 16;
4284         ha->elsrej.c = dma_alloc_coherent(&ha->pdev->dev,
4285             ha->elsrej.size, &ha->elsrej.cdma, GFP_KERNEL);
4286
4287         if (!ha->elsrej.c) {
4288                 ql_dbg_pci(ql_dbg_init, ha->pdev, 0xffff,
4289                     "Alloc failed for els reject cmd.\n");
4290                 goto fail_elsrej;
4291         }
4292         ha->elsrej.c->er_cmd = ELS_LS_RJT;
4293         ha->elsrej.c->er_reason = ELS_RJT_BUSY;
4294         ha->elsrej.c->er_explan = ELS_EXPL_UNAB_DATA;
4295         return 0;
4296
4297 fail_elsrej:
4298         dma_pool_destroy(ha->purex_dma_pool);
4299 fail_flt:
4300         dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE,
4301             ha->flt, ha->flt_dma);
4302
4303 fail_flt_buffer:
4304         dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE,
4305             ha->sfp_data, ha->sfp_data_dma);
4306 fail_sfp_data:
4307         kfree(ha->loop_id_map);
4308 fail_loop_id_map:
4309         dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4310 fail_async_pd:
4311         dma_pool_free(ha->s_dma_pool, ha->sf_init_cb, ha->sf_init_cb_dma);
4312 fail_sf_init_cb:
4313         dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
4314 fail_ex_init_cb:
4315         kfree(ha->npiv_info);
4316 fail_npiv_info:
4317         dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
4318                 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
4319         (*rsp)->ring = NULL;
4320         (*rsp)->dma = 0;
4321 fail_rsp_ring:
4322         kfree(*rsp);
4323         *rsp = NULL;
4324 fail_rsp:
4325         dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
4326                 sizeof(request_t), (*req)->ring, (*req)->dma);
4327         (*req)->ring = NULL;
4328         (*req)->dma = 0;
4329 fail_req_ring:
4330         kfree(*req);
4331         *req = NULL;
4332 fail_req:
4333         dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4334                 ha->ct_sns, ha->ct_sns_dma);
4335         ha->ct_sns = NULL;
4336         ha->ct_sns_dma = 0;
4337 fail_free_ms_iocb:
4338         dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4339         ha->ms_iocb = NULL;
4340         ha->ms_iocb_dma = 0;
4341
4342         if (ha->sns_cmd)
4343                 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4344                     ha->sns_cmd, ha->sns_cmd_dma);
4345 fail_dma_pool:
4346         if (ql2xenabledif) {
4347                 struct dsd_dma *dsd, *nxt;
4348
4349                 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head,
4350                     list) {
4351                         list_del(&dsd->list);
4352                         dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
4353                             dsd->dsd_list_dma);
4354                         ha->dif_bundle_dma_allocs--;
4355                         kfree(dsd);
4356                         ha->dif_bundle_kallocs--;
4357                         ha->pool.unusable.count--;
4358                 }
4359                 dma_pool_destroy(ha->dif_bundl_pool);
4360                 ha->dif_bundl_pool = NULL;
4361         }
4362
4363 fail_dif_bundl_dma_pool:
4364         if (IS_QLA82XX(ha) || ql2xenabledif) {
4365                 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4366                 ha->fcp_cmnd_dma_pool = NULL;
4367         }
4368 fail_dl_dma_pool:
4369         if (IS_QLA82XX(ha) || ql2xenabledif) {
4370                 dma_pool_destroy(ha->dl_dma_pool);
4371                 ha->dl_dma_pool = NULL;
4372         }
4373 fail_s_dma_pool:
4374         dma_pool_destroy(ha->s_dma_pool);
4375         ha->s_dma_pool = NULL;
4376 fail_free_nvram:
4377         kfree(ha->nvram);
4378         ha->nvram = NULL;
4379 fail_free_ctx_mempool:
4380         mempool_destroy(ha->ctx_mempool);
4381         ha->ctx_mempool = NULL;
4382 fail_free_srb_mempool:
4383         mempool_destroy(ha->srb_mempool);
4384         ha->srb_mempool = NULL;
4385 fail_free_gid_list:
4386         dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4387         ha->gid_list,
4388         ha->gid_list_dma);
4389         ha->gid_list = NULL;
4390         ha->gid_list_dma = 0;
4391 fail_free_tgt_mem:
4392         qlt_mem_free(ha);
4393 fail_free_btree:
4394         btree_destroy32(&ha->host_map);
4395 fail_free_init_cb:
4396         dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
4397         ha->init_cb_dma);
4398         ha->init_cb = NULL;
4399         ha->init_cb_dma = 0;
4400 fail:
4401         ql_log(ql_log_fatal, NULL, 0x0030,
4402             "Memory allocation failure.\n");
4403         return -ENOMEM;
4404 }
4405
4406 int
4407 qla2x00_set_exlogins_buffer(scsi_qla_host_t *vha)
4408 {
4409         int rval;
4410         uint16_t        size, max_cnt;
4411         uint32_t temp;
4412         struct qla_hw_data *ha = vha->hw;
4413
4414         /* Return if we don't need to alloacate any extended logins */
4415         if (ql2xexlogins <= MAX_FIBRE_DEVICES_2400)
4416                 return QLA_SUCCESS;
4417
4418         if (!IS_EXLOGIN_OFFLD_CAPABLE(ha))
4419                 return QLA_SUCCESS;
4420
4421         ql_log(ql_log_info, vha, 0xd021, "EXLOGIN count: %d.\n", ql2xexlogins);
4422         max_cnt = 0;
4423         rval = qla_get_exlogin_status(vha, &size, &max_cnt);
4424         if (rval != QLA_SUCCESS) {
4425                 ql_log_pci(ql_log_fatal, ha->pdev, 0xd029,
4426                     "Failed to get exlogin status.\n");
4427                 return rval;
4428         }
4429
4430         temp = (ql2xexlogins > max_cnt) ? max_cnt : ql2xexlogins;
4431         temp *= size;
4432
4433         if (temp != ha->exlogin_size) {
4434                 qla2x00_free_exlogin_buffer(ha);
4435                 ha->exlogin_size = temp;
4436
4437                 ql_log(ql_log_info, vha, 0xd024,
4438                     "EXLOGIN: max_logins=%d, portdb=0x%x, total=%d.\n",
4439                     max_cnt, size, temp);
4440
4441                 ql_log(ql_log_info, vha, 0xd025,
4442                     "EXLOGIN: requested size=0x%x\n", ha->exlogin_size);
4443
4444                 /* Get consistent memory for extended logins */
4445                 ha->exlogin_buf = dma_alloc_coherent(&ha->pdev->dev,
4446                         ha->exlogin_size, &ha->exlogin_buf_dma, GFP_KERNEL);
4447                 if (!ha->exlogin_buf) {
4448                         ql_log_pci(ql_log_fatal, ha->pdev, 0xd02a,
4449                     "Failed to allocate memory for exlogin_buf_dma.\n");
4450                         return -ENOMEM;
4451                 }
4452         }
4453
4454         /* Now configure the dma buffer */
4455         rval = qla_set_exlogin_mem_cfg(vha, ha->exlogin_buf_dma);
4456         if (rval) {
4457                 ql_log(ql_log_fatal, vha, 0xd033,
4458                     "Setup extended login buffer  ****FAILED****.\n");
4459                 qla2x00_free_exlogin_buffer(ha);
4460         }
4461
4462         return rval;
4463 }
4464
4465 /*
4466 * qla2x00_free_exlogin_buffer
4467 *
4468 * Input:
4469 *       ha = adapter block pointer
4470 */
4471 void
4472 qla2x00_free_exlogin_buffer(struct qla_hw_data *ha)
4473 {
4474         if (ha->exlogin_buf) {
4475                 dma_free_coherent(&ha->pdev->dev, ha->exlogin_size,
4476                     ha->exlogin_buf, ha->exlogin_buf_dma);
4477                 ha->exlogin_buf = NULL;
4478                 ha->exlogin_size = 0;
4479         }
4480 }
4481
4482 static void
4483 qla2x00_number_of_exch(scsi_qla_host_t *vha, u32 *ret_cnt, u16 max_cnt)
4484 {
4485         u32 temp;
4486         struct init_cb_81xx *icb = (struct init_cb_81xx *)&vha->hw->init_cb;
4487         *ret_cnt = FW_DEF_EXCHANGES_CNT;
4488
4489         if (max_cnt > vha->hw->max_exchg)
4490                 max_cnt = vha->hw->max_exchg;
4491
4492         if (qla_ini_mode_enabled(vha)) {
4493                 if (vha->ql2xiniexchg > max_cnt)
4494                         vha->ql2xiniexchg = max_cnt;
4495
4496                 if (vha->ql2xiniexchg > FW_DEF_EXCHANGES_CNT)
4497                         *ret_cnt = vha->ql2xiniexchg;
4498
4499         } else if (qla_tgt_mode_enabled(vha)) {
4500                 if (vha->ql2xexchoffld > max_cnt) {
4501                         vha->ql2xexchoffld = max_cnt;
4502                         icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4503                 }
4504
4505                 if (vha->ql2xexchoffld > FW_DEF_EXCHANGES_CNT)
4506                         *ret_cnt = vha->ql2xexchoffld;
4507         } else if (qla_dual_mode_enabled(vha)) {
4508                 temp = vha->ql2xiniexchg + vha->ql2xexchoffld;
4509                 if (temp > max_cnt) {
4510                         vha->ql2xiniexchg -= (temp - max_cnt)/2;
4511                         vha->ql2xexchoffld -= (((temp - max_cnt)/2) + 1);
4512                         temp = max_cnt;
4513                         icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4514                 }
4515
4516                 if (temp > FW_DEF_EXCHANGES_CNT)
4517                         *ret_cnt = temp;
4518         }
4519 }
4520
4521 int
4522 qla2x00_set_exchoffld_buffer(scsi_qla_host_t *vha)
4523 {
4524         int rval;
4525         u16     size, max_cnt;
4526         u32 actual_cnt, totsz;
4527         struct qla_hw_data *ha = vha->hw;
4528
4529         if (!ha->flags.exchoffld_enabled)
4530                 return QLA_SUCCESS;
4531
4532         if (!IS_EXCHG_OFFLD_CAPABLE(ha))
4533                 return QLA_SUCCESS;
4534
4535         max_cnt = 0;
4536         rval = qla_get_exchoffld_status(vha, &size, &max_cnt);
4537         if (rval != QLA_SUCCESS) {
4538                 ql_log_pci(ql_log_fatal, ha->pdev, 0xd012,
4539                     "Failed to get exlogin status.\n");
4540                 return rval;
4541         }
4542
4543         qla2x00_number_of_exch(vha, &actual_cnt, max_cnt);
4544         ql_log(ql_log_info, vha, 0xd014,
4545             "Actual exchange offload count: %d.\n", actual_cnt);
4546
4547         totsz = actual_cnt * size;
4548
4549         if (totsz != ha->exchoffld_size) {
4550                 qla2x00_free_exchoffld_buffer(ha);
4551                 if (actual_cnt <= FW_DEF_EXCHANGES_CNT) {
4552                         ha->exchoffld_size = 0;
4553                         ha->flags.exchoffld_enabled = 0;
4554                         return QLA_SUCCESS;
4555                 }
4556
4557                 ha->exchoffld_size = totsz;
4558
4559                 ql_log(ql_log_info, vha, 0xd016,
4560                     "Exchange offload: max_count=%d, actual count=%d entry sz=0x%x, total sz=0x%x\n",
4561                     max_cnt, actual_cnt, size, totsz);
4562
4563                 ql_log(ql_log_info, vha, 0xd017,
4564                     "Exchange Buffers requested size = 0x%x\n",
4565                     ha->exchoffld_size);
4566
4567                 /* Get consistent memory for extended logins */
4568                 ha->exchoffld_buf = dma_alloc_coherent(&ha->pdev->dev,
4569                         ha->exchoffld_size, &ha->exchoffld_buf_dma, GFP_KERNEL);
4570                 if (!ha->exchoffld_buf) {
4571                         ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4572                         "Failed to allocate memory for Exchange Offload.\n");
4573
4574                         if (ha->max_exchg >
4575                             (FW_DEF_EXCHANGES_CNT + REDUCE_EXCHANGES_CNT)) {
4576                                 ha->max_exchg -= REDUCE_EXCHANGES_CNT;
4577                         } else if (ha->max_exchg >
4578                             (FW_DEF_EXCHANGES_CNT + 512)) {
4579                                 ha->max_exchg -= 512;
4580                         } else {
4581                                 ha->flags.exchoffld_enabled = 0;
4582                                 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4583                                     "Disabling Exchange offload due to lack of memory\n");
4584                         }
4585                         ha->exchoffld_size = 0;
4586
4587                         return -ENOMEM;
4588                 }
4589         } else if (!ha->exchoffld_buf || (actual_cnt <= FW_DEF_EXCHANGES_CNT)) {
4590                 /* pathological case */
4591                 qla2x00_free_exchoffld_buffer(ha);
4592                 ha->exchoffld_size = 0;
4593                 ha->flags.exchoffld_enabled = 0;
4594                 ql_log(ql_log_info, vha, 0xd016,
4595                     "Exchange offload not enable: offld size=%d, actual count=%d entry sz=0x%x, total sz=0x%x.\n",
4596                     ha->exchoffld_size, actual_cnt, size, totsz);
4597                 return 0;
4598         }
4599
4600         /* Now configure the dma buffer */
4601         rval = qla_set_exchoffld_mem_cfg(vha);
4602         if (rval) {
4603                 ql_log(ql_log_fatal, vha, 0xd02e,
4604                     "Setup exchange offload buffer ****FAILED****.\n");
4605                 qla2x00_free_exchoffld_buffer(ha);
4606         } else {
4607                 /* re-adjust number of target exchange */
4608                 struct init_cb_81xx *icb = (struct init_cb_81xx *)ha->init_cb;
4609
4610                 if (qla_ini_mode_enabled(vha))
4611                         icb->exchange_count = 0;
4612                 else
4613                         icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4614         }
4615
4616         return rval;
4617 }
4618
4619 /*
4620 * qla2x00_free_exchoffld_buffer
4621 *
4622 * Input:
4623 *       ha = adapter block pointer
4624 */
4625 void
4626 qla2x00_free_exchoffld_buffer(struct qla_hw_data *ha)
4627 {
4628         if (ha->exchoffld_buf) {
4629                 dma_free_coherent(&ha->pdev->dev, ha->exchoffld_size,
4630                     ha->exchoffld_buf, ha->exchoffld_buf_dma);
4631                 ha->exchoffld_buf = NULL;
4632                 ha->exchoffld_size = 0;
4633         }
4634 }
4635
4636 /*
4637 * qla2x00_free_fw_dump
4638 *       Frees fw dump stuff.
4639 *
4640 * Input:
4641 *       ha = adapter block pointer
4642 */
4643 static void
4644 qla2x00_free_fw_dump(struct qla_hw_data *ha)
4645 {
4646         struct fwdt *fwdt = ha->fwdt;
4647         uint j;
4648
4649         if (ha->fce)
4650                 dma_free_coherent(&ha->pdev->dev,
4651                     FCE_SIZE, ha->fce, ha->fce_dma);
4652
4653         if (ha->eft)
4654                 dma_free_coherent(&ha->pdev->dev,
4655                     EFT_SIZE, ha->eft, ha->eft_dma);
4656
4657         vfree(ha->fw_dump);
4658
4659         ha->fce = NULL;
4660         ha->fce_dma = 0;
4661         ha->flags.fce_enabled = 0;
4662         ha->eft = NULL;
4663         ha->eft_dma = 0;
4664         ha->fw_dumped = false;
4665         ha->fw_dump_cap_flags = 0;
4666         ha->fw_dump_reading = 0;
4667         ha->fw_dump = NULL;
4668         ha->fw_dump_len = 0;
4669
4670         for (j = 0; j < 2; j++, fwdt++) {
4671                 vfree(fwdt->template);
4672                 fwdt->template = NULL;
4673                 fwdt->length = 0;
4674         }
4675 }
4676
4677 /*
4678 * qla2x00_mem_free
4679 *      Frees all adapter allocated memory.
4680 *
4681 * Input:
4682 *      ha = adapter block pointer.
4683 */
4684 static void
4685 qla2x00_mem_free(struct qla_hw_data *ha)
4686 {
4687         qla2x00_free_fw_dump(ha);
4688
4689         if (ha->mctp_dump)
4690                 dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump,
4691                     ha->mctp_dump_dma);
4692         ha->mctp_dump = NULL;
4693
4694         mempool_destroy(ha->srb_mempool);
4695         ha->srb_mempool = NULL;
4696
4697         if (ha->dcbx_tlv)
4698                 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
4699                     ha->dcbx_tlv, ha->dcbx_tlv_dma);
4700         ha->dcbx_tlv = NULL;
4701
4702         if (ha->xgmac_data)
4703                 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
4704                     ha->xgmac_data, ha->xgmac_data_dma);
4705         ha->xgmac_data = NULL;
4706
4707         if (ha->sns_cmd)
4708                 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4709                 ha->sns_cmd, ha->sns_cmd_dma);
4710         ha->sns_cmd = NULL;
4711         ha->sns_cmd_dma = 0;
4712
4713         if (ha->ct_sns)
4714                 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4715                 ha->ct_sns, ha->ct_sns_dma);
4716         ha->ct_sns = NULL;
4717         ha->ct_sns_dma = 0;
4718
4719         if (ha->sfp_data)
4720                 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, ha->sfp_data,
4721                     ha->sfp_data_dma);
4722         ha->sfp_data = NULL;
4723
4724         if (ha->flt)
4725                 dma_free_coherent(&ha->pdev->dev,
4726                     sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE,
4727                     ha->flt, ha->flt_dma);
4728         ha->flt = NULL;
4729         ha->flt_dma = 0;
4730
4731         if (ha->ms_iocb)
4732                 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4733         ha->ms_iocb = NULL;
4734         ha->ms_iocb_dma = 0;
4735
4736         if (ha->sf_init_cb)
4737                 dma_pool_free(ha->s_dma_pool,
4738                               ha->sf_init_cb, ha->sf_init_cb_dma);
4739
4740         if (ha->ex_init_cb)
4741                 dma_pool_free(ha->s_dma_pool,
4742                         ha->ex_init_cb, ha->ex_init_cb_dma);
4743         ha->ex_init_cb = NULL;
4744         ha->ex_init_cb_dma = 0;
4745
4746         if (ha->async_pd)
4747                 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4748         ha->async_pd = NULL;
4749         ha->async_pd_dma = 0;
4750
4751         dma_pool_destroy(ha->s_dma_pool);
4752         ha->s_dma_pool = NULL;
4753
4754         if (ha->gid_list)
4755                 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4756                 ha->gid_list, ha->gid_list_dma);
4757         ha->gid_list = NULL;
4758         ha->gid_list_dma = 0;
4759
4760         if (IS_QLA82XX(ha)) {
4761                 if (!list_empty(&ha->gbl_dsd_list)) {
4762                         struct dsd_dma *dsd_ptr, *tdsd_ptr;
4763
4764                         /* clean up allocated prev pool */
4765                         list_for_each_entry_safe(dsd_ptr,
4766                                 tdsd_ptr, &ha->gbl_dsd_list, list) {
4767                                 dma_pool_free(ha->dl_dma_pool,
4768                                 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma);
4769                                 list_del(&dsd_ptr->list);
4770                                 kfree(dsd_ptr);
4771                         }
4772                 }
4773         }
4774
4775         dma_pool_destroy(ha->dl_dma_pool);
4776         ha->dl_dma_pool = NULL;
4777
4778         dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4779         ha->fcp_cmnd_dma_pool = NULL;
4780
4781         mempool_destroy(ha->ctx_mempool);
4782         ha->ctx_mempool = NULL;
4783
4784         if (ql2xenabledif && ha->dif_bundl_pool) {
4785                 struct dsd_dma *dsd, *nxt;
4786
4787                 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head,
4788                                          list) {
4789                         list_del(&dsd->list);
4790                         dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
4791                                       dsd->dsd_list_dma);
4792                         ha->dif_bundle_dma_allocs--;
4793                         kfree(dsd);
4794                         ha->dif_bundle_kallocs--;
4795                         ha->pool.unusable.count--;
4796                 }
4797                 list_for_each_entry_safe(dsd, nxt, &ha->pool.good.head, list) {
4798                         list_del(&dsd->list);
4799                         dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
4800                                       dsd->dsd_list_dma);
4801                         ha->dif_bundle_dma_allocs--;
4802                         kfree(dsd);
4803                         ha->dif_bundle_kallocs--;
4804                 }
4805         }
4806
4807         dma_pool_destroy(ha->dif_bundl_pool);
4808         ha->dif_bundl_pool = NULL;
4809
4810         qlt_mem_free(ha);
4811         qla_remove_hostmap(ha);
4812
4813         if (ha->init_cb)
4814                 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
4815                         ha->init_cb, ha->init_cb_dma);
4816
4817         dma_pool_destroy(ha->purex_dma_pool);
4818         ha->purex_dma_pool = NULL;
4819
4820         if (ha->elsrej.c) {
4821                 dma_free_coherent(&ha->pdev->dev, ha->elsrej.size,
4822                     ha->elsrej.c, ha->elsrej.cdma);
4823                 ha->elsrej.c = NULL;
4824         }
4825
4826         ha->init_cb = NULL;
4827         ha->init_cb_dma = 0;
4828
4829         vfree(ha->optrom_buffer);
4830         ha->optrom_buffer = NULL;
4831         kfree(ha->nvram);
4832         ha->nvram = NULL;
4833         kfree(ha->npiv_info);
4834         ha->npiv_info = NULL;
4835         kfree(ha->swl);
4836         ha->swl = NULL;
4837         kfree(ha->loop_id_map);
4838         ha->sf_init_cb = NULL;
4839         ha->sf_init_cb_dma = 0;
4840         ha->loop_id_map = NULL;
4841 }
4842
4843 struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
4844                                                 struct qla_hw_data *ha)
4845 {
4846         struct Scsi_Host *host;
4847         struct scsi_qla_host *vha = NULL;
4848
4849         host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
4850         if (!host) {
4851                 ql_log_pci(ql_log_fatal, ha->pdev, 0x0107,
4852                     "Failed to allocate host from the scsi layer, aborting.\n");
4853                 return NULL;
4854         }
4855
4856         /* Clear our data area */
4857         vha = shost_priv(host);
4858         memset(vha, 0, sizeof(scsi_qla_host_t));
4859
4860         vha->host = host;
4861         vha->host_no = host->host_no;
4862         vha->hw = ha;
4863
4864         vha->qlini_mode = ql2x_ini_mode;
4865         vha->ql2xexchoffld = ql2xexchoffld;
4866         vha->ql2xiniexchg = ql2xiniexchg;
4867
4868         INIT_LIST_HEAD(&vha->vp_fcports);
4869         INIT_LIST_HEAD(&vha->work_list);
4870         INIT_LIST_HEAD(&vha->list);
4871         INIT_LIST_HEAD(&vha->qla_cmd_list);
4872         INIT_LIST_HEAD(&vha->qla_sess_op_cmd_list);
4873         INIT_LIST_HEAD(&vha->logo_list);
4874         INIT_LIST_HEAD(&vha->plogi_ack_list);
4875         INIT_LIST_HEAD(&vha->qp_list);
4876         INIT_LIST_HEAD(&vha->gnl.fcports);
4877         INIT_LIST_HEAD(&vha->gpnid_list);
4878         INIT_WORK(&vha->iocb_work, qla2x00_iocb_work_fn);
4879
4880         INIT_LIST_HEAD(&vha->purex_list.head);
4881         spin_lock_init(&vha->purex_list.lock);
4882
4883         spin_lock_init(&vha->work_lock);
4884         spin_lock_init(&vha->cmd_list_lock);
4885         init_waitqueue_head(&vha->fcport_waitQ);
4886         init_waitqueue_head(&vha->vref_waitq);
4887         qla_enode_init(vha);
4888
4889         vha->gnl.size = sizeof(struct get_name_list_extended) *
4890                         (ha->max_loop_id + 1);
4891         vha->gnl.l = dma_alloc_coherent(&ha->pdev->dev,
4892             vha->gnl.size, &vha->gnl.ldma, GFP_KERNEL);
4893         if (!vha->gnl.l) {
4894                 ql_log(ql_log_fatal, vha, 0xd04a,
4895                     "Alloc failed for name list.\n");
4896                 scsi_host_put(vha->host);
4897                 return NULL;
4898         }
4899
4900         /* todo: what about ext login? */
4901         vha->scan.size = ha->max_fibre_devices * sizeof(struct fab_scan_rp);
4902         vha->scan.l = vmalloc(vha->scan.size);
4903         if (!vha->scan.l) {
4904                 ql_log(ql_log_fatal, vha, 0xd04a,
4905                     "Alloc failed for scan database.\n");
4906                 dma_free_coherent(&ha->pdev->dev, vha->gnl.size,
4907                     vha->gnl.l, vha->gnl.ldma);
4908                 vha->gnl.l = NULL;
4909                 scsi_host_put(vha->host);
4910                 return NULL;
4911         }
4912         INIT_DELAYED_WORK(&vha->scan.scan_work, qla_scan_work_fn);
4913
4914         sprintf(vha->host_str, "%s_%lu", QLA2XXX_DRIVER_NAME, vha->host_no);
4915         ql_dbg(ql_dbg_init, vha, 0x0041,
4916             "Allocated the host=%p hw=%p vha=%p dev_name=%s",
4917             vha->host, vha->hw, vha,
4918             dev_name(&(ha->pdev->dev)));
4919
4920         return vha;
4921 }
4922
4923 struct qla_work_evt *
4924 qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
4925 {
4926         struct qla_work_evt *e;
4927         uint8_t bail;
4928
4929         if (test_bit(UNLOADING, &vha->dpc_flags))
4930                 return NULL;
4931
4932         QLA_VHA_MARK_BUSY(vha, bail);
4933         if (bail)
4934                 return NULL;
4935
4936         e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
4937         if (!e) {
4938                 QLA_VHA_MARK_NOT_BUSY(vha);
4939                 return NULL;
4940         }
4941
4942         INIT_LIST_HEAD(&e->list);
4943         e->type = type;
4944         e->flags = QLA_EVT_FLAG_FREE;
4945         return e;
4946 }
4947
4948 int
4949 qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
4950 {
4951         unsigned long flags;
4952         bool q = false;
4953
4954         spin_lock_irqsave(&vha->work_lock, flags);
4955         list_add_tail(&e->list, &vha->work_list);
4956
4957         if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
4958                 q = true;
4959
4960         spin_unlock_irqrestore(&vha->work_lock, flags);
4961
4962         if (q)
4963                 queue_work(vha->hw->wq, &vha->iocb_work);
4964
4965         return QLA_SUCCESS;
4966 }
4967
4968 int
4969 qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
4970     u32 data)
4971 {
4972         struct qla_work_evt *e;
4973
4974         e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
4975         if (!e)
4976                 return QLA_FUNCTION_FAILED;
4977
4978         e->u.aen.code = code;
4979         e->u.aen.data = data;
4980         return qla2x00_post_work(vha, e);
4981 }
4982
4983 int
4984 qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
4985 {
4986         struct qla_work_evt *e;
4987
4988         e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
4989         if (!e)
4990                 return QLA_FUNCTION_FAILED;
4991
4992         memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
4993         return qla2x00_post_work(vha, e);
4994 }
4995
4996 #define qla2x00_post_async_work(name, type)     \
4997 int qla2x00_post_async_##name##_work(           \
4998     struct scsi_qla_host *vha,                  \
4999     fc_port_t *fcport, uint16_t *data)          \
5000 {                                               \
5001         struct qla_work_evt *e;                 \
5002                                                 \
5003         e = qla2x00_alloc_work(vha, type);      \
5004         if (!e)                                 \
5005                 return QLA_FUNCTION_FAILED;     \
5006                                                 \
5007         e->u.logio.fcport = fcport;             \
5008         if (data) {                             \
5009                 e->u.logio.data[0] = data[0];   \
5010                 e->u.logio.data[1] = data[1];   \
5011         }                                       \
5012         fcport->flags |= FCF_ASYNC_ACTIVE;      \
5013         return qla2x00_post_work(vha, e);       \
5014 }
5015
5016 qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
5017 qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
5018 qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
5019 qla2x00_post_async_work(prlo, QLA_EVT_ASYNC_PRLO);
5020 qla2x00_post_async_work(prlo_done, QLA_EVT_ASYNC_PRLO_DONE);
5021
5022 int
5023 qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
5024 {
5025         struct qla_work_evt *e;
5026
5027         e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
5028         if (!e)
5029                 return QLA_FUNCTION_FAILED;
5030
5031         e->u.uevent.code = code;
5032         return qla2x00_post_work(vha, e);
5033 }
5034
5035 static void
5036 qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
5037 {
5038         char event_string[40];
5039         char *envp[] = { event_string, NULL };
5040
5041         switch (code) {
5042         case QLA_UEVENT_CODE_FW_DUMP:
5043                 snprintf(event_string, sizeof(event_string), "FW_DUMP=%lu",
5044                     vha->host_no);
5045                 break;
5046         default:
5047                 /* do nothing */
5048                 break;
5049         }
5050         kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
5051 }
5052
5053 int
5054 qlafx00_post_aenfx_work(struct scsi_qla_host *vha,  uint32_t evtcode,
5055                         uint32_t *data, int cnt)
5056 {
5057         struct qla_work_evt *e;
5058
5059         e = qla2x00_alloc_work(vha, QLA_EVT_AENFX);
5060         if (!e)
5061                 return QLA_FUNCTION_FAILED;
5062
5063         e->u.aenfx.evtcode = evtcode;
5064         e->u.aenfx.count = cnt;
5065         memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt);
5066         return qla2x00_post_work(vha, e);
5067 }
5068
5069 void qla24xx_sched_upd_fcport(fc_port_t *fcport)
5070 {
5071         unsigned long flags;
5072
5073         if (IS_SW_RESV_ADDR(fcport->d_id))
5074                 return;
5075
5076         spin_lock_irqsave(&fcport->vha->work_lock, flags);
5077         if (fcport->disc_state == DSC_UPD_FCPORT) {
5078                 spin_unlock_irqrestore(&fcport->vha->work_lock, flags);
5079                 return;
5080         }
5081         fcport->jiffies_at_registration = jiffies;
5082         fcport->sec_since_registration = 0;
5083         fcport->next_disc_state = DSC_DELETED;
5084         qla2x00_set_fcport_disc_state(fcport, DSC_UPD_FCPORT);
5085         spin_unlock_irqrestore(&fcport->vha->work_lock, flags);
5086
5087         queue_work(system_unbound_wq, &fcport->reg_work);
5088 }
5089
5090 static
5091 void qla24xx_create_new_sess(struct scsi_qla_host *vha, struct qla_work_evt *e)
5092 {
5093         unsigned long flags;
5094         fc_port_t *fcport =  NULL, *tfcp;
5095         struct qlt_plogi_ack_t *pla =
5096             (struct qlt_plogi_ack_t *)e->u.new_sess.pla;
5097         uint8_t free_fcport = 0;
5098
5099         ql_dbg(ql_dbg_disc, vha, 0xffff,
5100             "%s %d %8phC enter\n",
5101             __func__, __LINE__, e->u.new_sess.port_name);
5102
5103         spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5104         fcport = qla2x00_find_fcport_by_wwpn(vha, e->u.new_sess.port_name, 1);
5105         if (fcport) {
5106                 fcport->d_id = e->u.new_sess.id;
5107                 if (pla) {
5108                         fcport->fw_login_state = DSC_LS_PLOGI_PEND;
5109                         memcpy(fcport->node_name,
5110                             pla->iocb.u.isp24.u.plogi.node_name,
5111                             WWN_SIZE);
5112                         qlt_plogi_ack_link(vha, pla, fcport, QLT_PLOGI_LINK_SAME_WWN);
5113                         /* we took an extra ref_count to prevent PLOGI ACK when
5114                          * fcport/sess has not been created.
5115                          */
5116                         pla->ref_count--;
5117                 }
5118         } else {
5119                 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5120                 fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
5121                 if (fcport) {
5122                         fcport->d_id = e->u.new_sess.id;
5123                         fcport->flags |= FCF_FABRIC_DEVICE;
5124                         fcport->fw_login_state = DSC_LS_PLOGI_PEND;
5125                         fcport->tgt_short_link_down_cnt = 0;
5126
5127                         memcpy(fcport->port_name, e->u.new_sess.port_name,
5128                             WWN_SIZE);
5129
5130                         fcport->fc4_type = e->u.new_sess.fc4_type;
5131                         if (e->u.new_sess.fc4_type & FS_FCP_IS_N2N) {
5132                                 fcport->dm_login_expire = jiffies +
5133                                         QLA_N2N_WAIT_TIME * HZ;
5134                                 fcport->fc4_type = FS_FC4TYPE_FCP;
5135                                 fcport->n2n_flag = 1;
5136                                 if (vha->flags.nvme_enabled)
5137                                         fcport->fc4_type |= FS_FC4TYPE_NVME;
5138                         }
5139
5140                 } else {
5141                         ql_dbg(ql_dbg_disc, vha, 0xffff,
5142                                    "%s %8phC mem alloc fail.\n",
5143                                    __func__, e->u.new_sess.port_name);
5144
5145                         if (pla) {
5146                                 list_del(&pla->list);
5147                                 kmem_cache_free(qla_tgt_plogi_cachep, pla);
5148                         }
5149                         return;
5150                 }
5151
5152                 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5153                 /* search again to make sure no one else got ahead */
5154                 tfcp = qla2x00_find_fcport_by_wwpn(vha,
5155                     e->u.new_sess.port_name, 1);
5156                 if (tfcp) {
5157                         /* should rarily happen */
5158                         ql_dbg(ql_dbg_disc, vha, 0xffff,
5159                             "%s %8phC found existing fcport b4 add. DS %d LS %d\n",
5160                             __func__, tfcp->port_name, tfcp->disc_state,
5161                             tfcp->fw_login_state);
5162
5163                         free_fcport = 1;
5164                 } else {
5165                         list_add_tail(&fcport->list, &vha->vp_fcports);
5166
5167                 }
5168                 if (pla) {
5169                         qlt_plogi_ack_link(vha, pla, fcport,
5170                             QLT_PLOGI_LINK_SAME_WWN);
5171                         pla->ref_count--;
5172                 }
5173         }
5174         spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5175
5176         if (fcport) {
5177                 fcport->id_changed = 1;
5178                 fcport->scan_state = QLA_FCPORT_FOUND;
5179                 fcport->chip_reset = vha->hw->base_qpair->chip_reset;
5180                 memcpy(fcport->node_name, e->u.new_sess.node_name, WWN_SIZE);
5181
5182                 if (pla) {
5183                         if (pla->iocb.u.isp24.status_subcode == ELS_PRLI) {
5184                                 u16 wd3_lo;
5185
5186                                 fcport->fw_login_state = DSC_LS_PRLI_PEND;
5187                                 fcport->local = 0;
5188                                 fcport->loop_id =
5189                                         le16_to_cpu(
5190                                             pla->iocb.u.isp24.nport_handle);
5191                                 fcport->fw_login_state = DSC_LS_PRLI_PEND;
5192                                 wd3_lo =
5193                                     le16_to_cpu(
5194                                         pla->iocb.u.isp24.u.prli.wd3_lo);
5195
5196                                 if (wd3_lo & BIT_7)
5197                                         fcport->conf_compl_supported = 1;
5198
5199                                 if ((wd3_lo & BIT_4) == 0)
5200                                         fcport->port_type = FCT_INITIATOR;
5201                                 else
5202                                         fcport->port_type = FCT_TARGET;
5203                         }
5204                         qlt_plogi_ack_unref(vha, pla);
5205                 } else {
5206                         fc_port_t *dfcp = NULL;
5207
5208                         spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5209                         tfcp = qla2x00_find_fcport_by_nportid(vha,
5210                             &e->u.new_sess.id, 1);
5211                         if (tfcp && (tfcp != fcport)) {
5212                                 /*
5213                                  * We have a conflict fcport with same NportID.
5214                                  */
5215                                 ql_dbg(ql_dbg_disc, vha, 0xffff,
5216                                     "%s %8phC found conflict b4 add. DS %d LS %d\n",
5217                                     __func__, tfcp->port_name, tfcp->disc_state,
5218                                     tfcp->fw_login_state);
5219
5220                                 switch (tfcp->disc_state) {
5221                                 case DSC_DELETED:
5222                                         break;
5223                                 case DSC_DELETE_PEND:
5224                                         fcport->login_pause = 1;
5225                                         tfcp->conflict = fcport;
5226                                         break;
5227                                 default:
5228                                         fcport->login_pause = 1;
5229                                         tfcp->conflict = fcport;
5230                                         dfcp = tfcp;
5231                                         break;
5232                                 }
5233                         }
5234                         spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5235                         if (dfcp)
5236                                 qlt_schedule_sess_for_deletion(tfcp);
5237
5238                         if (N2N_TOPO(vha->hw)) {
5239                                 fcport->flags &= ~FCF_FABRIC_DEVICE;
5240                                 fcport->keep_nport_handle = 1;
5241                                 if (vha->flags.nvme_enabled) {
5242                                         fcport->fc4_type =
5243                                             (FS_FC4TYPE_NVME | FS_FC4TYPE_FCP);
5244                                         fcport->n2n_flag = 1;
5245                                 }
5246                                 fcport->fw_login_state = 0;
5247
5248                                 schedule_delayed_work(&vha->scan.scan_work, 5);
5249                         } else {
5250                                 qla24xx_fcport_handle_login(vha, fcport);
5251                         }
5252                 }
5253         }
5254
5255         if (free_fcport) {
5256                 qla2x00_free_fcport(fcport);
5257                 if (pla) {
5258                         list_del(&pla->list);
5259                         kmem_cache_free(qla_tgt_plogi_cachep, pla);
5260                 }
5261         }
5262 }
5263
5264 static void qla_sp_retry(struct scsi_qla_host *vha, struct qla_work_evt *e)
5265 {
5266         struct srb *sp = e->u.iosb.sp;
5267         int rval;
5268
5269         rval = qla2x00_start_sp(sp);
5270         if (rval != QLA_SUCCESS) {
5271                 ql_dbg(ql_dbg_disc, vha, 0x2043,
5272                     "%s: %s: Re-issue IOCB failed (%d).\n",
5273                     __func__, sp->name, rval);
5274                 qla24xx_sp_unmap(vha, sp);
5275         }
5276 }
5277
5278 void
5279 qla2x00_do_work(struct scsi_qla_host *vha)
5280 {
5281         struct qla_work_evt *e, *tmp;
5282         unsigned long flags;
5283         LIST_HEAD(work);
5284         int rc;
5285
5286         spin_lock_irqsave(&vha->work_lock, flags);
5287         list_splice_init(&vha->work_list, &work);
5288         spin_unlock_irqrestore(&vha->work_lock, flags);
5289
5290         list_for_each_entry_safe(e, tmp, &work, list) {
5291                 rc = QLA_SUCCESS;
5292                 switch (e->type) {
5293                 case QLA_EVT_AEN:
5294                         fc_host_post_event(vha->host, fc_get_event_number(),
5295                             e->u.aen.code, e->u.aen.data);
5296                         break;
5297                 case QLA_EVT_IDC_ACK:
5298                         qla81xx_idc_ack(vha, e->u.idc_ack.mb);
5299                         break;
5300                 case QLA_EVT_ASYNC_LOGIN:
5301                         qla2x00_async_login(vha, e->u.logio.fcport,
5302                             e->u.logio.data);
5303                         break;
5304                 case QLA_EVT_ASYNC_LOGOUT:
5305                         rc = qla2x00_async_logout(vha, e->u.logio.fcport);
5306                         break;
5307                 case QLA_EVT_ASYNC_ADISC:
5308                         qla2x00_async_adisc(vha, e->u.logio.fcport,
5309                             e->u.logio.data);
5310                         break;
5311                 case QLA_EVT_UEVENT:
5312                         qla2x00_uevent_emit(vha, e->u.uevent.code);
5313                         break;
5314                 case QLA_EVT_AENFX:
5315                         qlafx00_process_aen(vha, e);
5316                         break;
5317                 case QLA_EVT_GPNID:
5318                         qla24xx_async_gpnid(vha, &e->u.gpnid.id);
5319                         break;
5320                 case QLA_EVT_UNMAP:
5321                         qla24xx_sp_unmap(vha, e->u.iosb.sp);
5322                         break;
5323                 case QLA_EVT_RELOGIN:
5324                         qla2x00_relogin(vha);
5325                         break;
5326                 case QLA_EVT_NEW_SESS:
5327                         qla24xx_create_new_sess(vha, e);
5328                         break;
5329                 case QLA_EVT_GPDB:
5330                         qla24xx_async_gpdb(vha, e->u.fcport.fcport,
5331                             e->u.fcport.opt);
5332                         break;
5333                 case QLA_EVT_PRLI:
5334                         qla24xx_async_prli(vha, e->u.fcport.fcport);
5335                         break;
5336                 case QLA_EVT_GPSC:
5337                         qla24xx_async_gpsc(vha, e->u.fcport.fcport);
5338                         break;
5339                 case QLA_EVT_GNL:
5340                         qla24xx_async_gnl(vha, e->u.fcport.fcport);
5341                         break;
5342                 case QLA_EVT_NACK:
5343                         qla24xx_do_nack_work(vha, e);
5344                         break;
5345                 case QLA_EVT_ASYNC_PRLO:
5346                         rc = qla2x00_async_prlo(vha, e->u.logio.fcport);
5347                         break;
5348                 case QLA_EVT_ASYNC_PRLO_DONE:
5349                         qla2x00_async_prlo_done(vha, e->u.logio.fcport,
5350                             e->u.logio.data);
5351                         break;
5352                 case QLA_EVT_GPNFT:
5353                         qla24xx_async_gpnft(vha, e->u.gpnft.fc4_type,
5354                             e->u.gpnft.sp);
5355                         break;
5356                 case QLA_EVT_GPNFT_DONE:
5357                         qla24xx_async_gpnft_done(vha, e->u.iosb.sp);
5358                         break;
5359                 case QLA_EVT_GNNFT_DONE:
5360                         qla24xx_async_gnnft_done(vha, e->u.iosb.sp);
5361                         break;
5362                 case QLA_EVT_GNNID:
5363                         qla24xx_async_gnnid(vha, e->u.fcport.fcport);
5364                         break;
5365                 case QLA_EVT_GFPNID:
5366                         qla24xx_async_gfpnid(vha, e->u.fcport.fcport);
5367                         break;
5368                 case QLA_EVT_SP_RETRY:
5369                         qla_sp_retry(vha, e);
5370                         break;
5371                 case QLA_EVT_IIDMA:
5372                         qla_do_iidma_work(vha, e->u.fcport.fcport);
5373                         break;
5374                 case QLA_EVT_ELS_PLOGI:
5375                         qla24xx_els_dcmd2_iocb(vha, ELS_DCMD_PLOGI,
5376                             e->u.fcport.fcport, false);
5377                         break;
5378                 }
5379
5380                 if (rc == EAGAIN) {
5381                         /* put 'work' at head of 'vha->work_list' */
5382                         spin_lock_irqsave(&vha->work_lock, flags);
5383                         list_splice(&work, &vha->work_list);
5384                         spin_unlock_irqrestore(&vha->work_lock, flags);
5385                         break;
5386                 }
5387                 list_del_init(&e->list);
5388                 if (e->flags & QLA_EVT_FLAG_FREE)
5389                         kfree(e);
5390
5391                 /* For each work completed decrement vha ref count */
5392                 QLA_VHA_MARK_NOT_BUSY(vha);
5393         }
5394 }
5395
5396 int qla24xx_post_relogin_work(struct scsi_qla_host *vha)
5397 {
5398         struct qla_work_evt *e;
5399
5400         e = qla2x00_alloc_work(vha, QLA_EVT_RELOGIN);
5401
5402         if (!e) {
5403                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5404                 return QLA_FUNCTION_FAILED;
5405         }
5406
5407         return qla2x00_post_work(vha, e);
5408 }
5409
5410 /* Relogins all the fcports of a vport
5411  * Context: dpc thread
5412  */
5413 void qla2x00_relogin(struct scsi_qla_host *vha)
5414 {
5415         fc_port_t       *fcport;
5416         int status, relogin_needed = 0;
5417         struct event_arg ea;
5418
5419         list_for_each_entry(fcport, &vha->vp_fcports, list) {
5420                 /*
5421                  * If the port is not ONLINE then try to login
5422                  * to it if we haven't run out of retries.
5423                  */
5424                 if (atomic_read(&fcport->state) != FCS_ONLINE &&
5425                     fcport->login_retry) {
5426                         if (fcport->scan_state != QLA_FCPORT_FOUND ||
5427                             fcport->disc_state == DSC_LOGIN_COMPLETE)
5428                                 continue;
5429
5430                         if (fcport->flags & (FCF_ASYNC_SENT|FCF_ASYNC_ACTIVE) ||
5431                                 fcport->disc_state == DSC_DELETE_PEND) {
5432                                 relogin_needed = 1;
5433                         } else {
5434                                 if (vha->hw->current_topology != ISP_CFG_NL) {
5435                                         memset(&ea, 0, sizeof(ea));
5436                                         ea.fcport = fcport;
5437                                         qla24xx_handle_relogin_event(vha, &ea);
5438                                 } else if (vha->hw->current_topology ==
5439                                     ISP_CFG_NL) {
5440                                         fcport->login_retry--;
5441                                         status =
5442                                             qla2x00_local_device_login(vha,
5443                                                 fcport);
5444                                         if (status == QLA_SUCCESS) {
5445                                                 fcport->old_loop_id =
5446                                                     fcport->loop_id;
5447                                                 ql_dbg(ql_dbg_disc, vha, 0x2003,
5448                                                     "Port login OK: logged in ID 0x%x.\n",
5449                                                     fcport->loop_id);
5450                                                 qla2x00_update_fcport
5451                                                         (vha, fcport);
5452                                         } else if (status == 1) {
5453                                                 set_bit(RELOGIN_NEEDED,
5454                                                     &vha->dpc_flags);
5455                                                 /* retry the login again */
5456                                                 ql_dbg(ql_dbg_disc, vha, 0x2007,
5457                                                     "Retrying %d login again loop_id 0x%x.\n",
5458                                                     fcport->login_retry,
5459                                                     fcport->loop_id);
5460                                         } else {
5461                                                 fcport->login_retry = 0;
5462                                         }
5463
5464                                         if (fcport->login_retry == 0 &&
5465                                             status != QLA_SUCCESS)
5466                                                 qla2x00_clear_loop_id(fcport);
5467                                 }
5468                         }
5469                 }
5470                 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
5471                         break;
5472         }
5473
5474         if (relogin_needed)
5475                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5476
5477         ql_dbg(ql_dbg_disc, vha, 0x400e,
5478             "Relogin end.\n");
5479 }
5480
5481 /* Schedule work on any of the dpc-workqueues */
5482 void
5483 qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code)
5484 {
5485         struct qla_hw_data *ha = base_vha->hw;
5486
5487         switch (work_code) {
5488         case MBA_IDC_AEN: /* 0x8200 */
5489                 if (ha->dpc_lp_wq)
5490                         queue_work(ha->dpc_lp_wq, &ha->idc_aen);
5491                 break;
5492
5493         case QLA83XX_NIC_CORE_RESET: /* 0x1 */
5494                 if (!ha->flags.nic_core_reset_hdlr_active) {
5495                         if (ha->dpc_hp_wq)
5496                                 queue_work(ha->dpc_hp_wq, &ha->nic_core_reset);
5497                 } else
5498                         ql_dbg(ql_dbg_p3p, base_vha, 0xb05e,
5499                             "NIC Core reset is already active. Skip "
5500                             "scheduling it again.\n");
5501                 break;
5502         case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */
5503                 if (ha->dpc_hp_wq)
5504                         queue_work(ha->dpc_hp_wq, &ha->idc_state_handler);
5505                 break;
5506         case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */
5507                 if (ha->dpc_hp_wq)
5508                         queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable);
5509                 break;
5510         default:
5511                 ql_log(ql_log_warn, base_vha, 0xb05f,
5512                     "Unknown work-code=0x%x.\n", work_code);
5513         }
5514
5515         return;
5516 }
5517
5518 /* Work: Perform NIC Core Unrecoverable state handling */
5519 void
5520 qla83xx_nic_core_unrecoverable_work(struct work_struct *work)
5521 {
5522         struct qla_hw_data *ha =
5523                 container_of(work, struct qla_hw_data, nic_core_unrecoverable);
5524         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5525         uint32_t dev_state = 0;
5526
5527         qla83xx_idc_lock(base_vha, 0);
5528         qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5529         qla83xx_reset_ownership(base_vha);
5530         if (ha->flags.nic_core_reset_owner) {
5531                 ha->flags.nic_core_reset_owner = 0;
5532                 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5533                     QLA8XXX_DEV_FAILED);
5534                 ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n");
5535                 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5536         }
5537         qla83xx_idc_unlock(base_vha, 0);
5538 }
5539
5540 /* Work: Execute IDC state handler */
5541 void
5542 qla83xx_idc_state_handler_work(struct work_struct *work)
5543 {
5544         struct qla_hw_data *ha =
5545                 container_of(work, struct qla_hw_data, idc_state_handler);
5546         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5547         uint32_t dev_state = 0;
5548
5549         qla83xx_idc_lock(base_vha, 0);
5550         qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5551         if (dev_state == QLA8XXX_DEV_FAILED ||
5552                         dev_state == QLA8XXX_DEV_NEED_QUIESCENT)
5553                 qla83xx_idc_state_handler(base_vha);
5554         qla83xx_idc_unlock(base_vha, 0);
5555 }
5556
5557 static int
5558 qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha)
5559 {
5560         int rval = QLA_SUCCESS;
5561         unsigned long heart_beat_wait = jiffies + (1 * HZ);
5562         uint32_t heart_beat_counter1, heart_beat_counter2;
5563
5564         do {
5565                 if (time_after(jiffies, heart_beat_wait)) {
5566                         ql_dbg(ql_dbg_p3p, base_vha, 0xb07c,
5567                             "Nic Core f/w is not alive.\n");
5568                         rval = QLA_FUNCTION_FAILED;
5569                         break;
5570                 }
5571
5572                 qla83xx_idc_lock(base_vha, 0);
5573                 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5574                     &heart_beat_counter1);
5575                 qla83xx_idc_unlock(base_vha, 0);
5576                 msleep(100);
5577                 qla83xx_idc_lock(base_vha, 0);
5578                 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5579                     &heart_beat_counter2);
5580                 qla83xx_idc_unlock(base_vha, 0);
5581         } while (heart_beat_counter1 == heart_beat_counter2);
5582
5583         return rval;
5584 }
5585
5586 /* Work: Perform NIC Core Reset handling */
5587 void
5588 qla83xx_nic_core_reset_work(struct work_struct *work)
5589 {
5590         struct qla_hw_data *ha =
5591                 container_of(work, struct qla_hw_data, nic_core_reset);
5592         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5593         uint32_t dev_state = 0;
5594
5595         if (IS_QLA2031(ha)) {
5596                 if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS)
5597                         ql_log(ql_log_warn, base_vha, 0xb081,
5598                             "Failed to dump mctp\n");
5599                 return;
5600         }
5601
5602         if (!ha->flags.nic_core_reset_hdlr_active) {
5603                 if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) {
5604                         qla83xx_idc_lock(base_vha, 0);
5605                         qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5606                             &dev_state);
5607                         qla83xx_idc_unlock(base_vha, 0);
5608                         if (dev_state != QLA8XXX_DEV_NEED_RESET) {
5609                                 ql_dbg(ql_dbg_p3p, base_vha, 0xb07a,
5610                                     "Nic Core f/w is alive.\n");
5611                                 return;
5612                         }
5613                 }
5614
5615                 ha->flags.nic_core_reset_hdlr_active = 1;
5616                 if (qla83xx_nic_core_reset(base_vha)) {
5617                         /* NIC Core reset failed. */
5618                         ql_dbg(ql_dbg_p3p, base_vha, 0xb061,
5619                             "NIC Core reset failed.\n");
5620                 }
5621                 ha->flags.nic_core_reset_hdlr_active = 0;
5622         }
5623 }
5624
5625 /* Work: Handle 8200 IDC aens */
5626 void
5627 qla83xx_service_idc_aen(struct work_struct *work)
5628 {
5629         struct qla_hw_data *ha =
5630                 container_of(work, struct qla_hw_data, idc_aen);
5631         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5632         uint32_t dev_state, idc_control;
5633
5634         qla83xx_idc_lock(base_vha, 0);
5635         qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5636         qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control);
5637         qla83xx_idc_unlock(base_vha, 0);
5638         if (dev_state == QLA8XXX_DEV_NEED_RESET) {
5639                 if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) {
5640                         ql_dbg(ql_dbg_p3p, base_vha, 0xb062,
5641                             "Application requested NIC Core Reset.\n");
5642                         qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5643                 } else if (qla83xx_check_nic_core_fw_alive(base_vha) ==
5644                     QLA_SUCCESS) {
5645                         ql_dbg(ql_dbg_p3p, base_vha, 0xb07b,
5646                             "Other protocol driver requested NIC Core Reset.\n");
5647                         qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5648                 }
5649         } else if (dev_state == QLA8XXX_DEV_FAILED ||
5650                         dev_state == QLA8XXX_DEV_NEED_QUIESCENT) {
5651                 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5652         }
5653 }
5654
5655 /*
5656  * Control the frequency of IDC lock retries
5657  */
5658 #define QLA83XX_WAIT_LOGIC_MS   100
5659
5660 static int
5661 qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha)
5662 {
5663         int rval;
5664         uint32_t data;
5665         uint32_t idc_lck_rcvry_stage_mask = 0x3;
5666         uint32_t idc_lck_rcvry_owner_mask = 0x3c;
5667         struct qla_hw_data *ha = base_vha->hw;
5668
5669         ql_dbg(ql_dbg_p3p, base_vha, 0xb086,
5670             "Trying force recovery of the IDC lock.\n");
5671
5672         rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data);
5673         if (rval)
5674                 return rval;
5675
5676         if ((data & idc_lck_rcvry_stage_mask) > 0) {
5677                 return QLA_SUCCESS;
5678         } else {
5679                 data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2);
5680                 rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5681                     data);
5682                 if (rval)
5683                         return rval;
5684
5685                 msleep(200);
5686
5687                 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5688                     &data);
5689                 if (rval)
5690                         return rval;
5691
5692                 if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) {
5693                         data &= (IDC_LOCK_RECOVERY_STAGE2 |
5694                                         ~(idc_lck_rcvry_stage_mask));
5695                         rval = qla83xx_wr_reg(base_vha,
5696                             QLA83XX_IDC_LOCK_RECOVERY, data);
5697                         if (rval)
5698                                 return rval;
5699
5700                         /* Forcefully perform IDC UnLock */
5701                         rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK,
5702                             &data);
5703                         if (rval)
5704                                 return rval;
5705                         /* Clear lock-id by setting 0xff */
5706                         rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5707                             0xff);
5708                         if (rval)
5709                                 return rval;
5710                         /* Clear lock-recovery by setting 0x0 */
5711                         rval = qla83xx_wr_reg(base_vha,
5712                             QLA83XX_IDC_LOCK_RECOVERY, 0x0);
5713                         if (rval)
5714                                 return rval;
5715                 } else
5716                         return QLA_SUCCESS;
5717         }
5718
5719         return rval;
5720 }
5721
5722 static int
5723 qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha)
5724 {
5725         int rval = QLA_SUCCESS;
5726         uint32_t o_drv_lockid, n_drv_lockid;
5727         unsigned long lock_recovery_timeout;
5728
5729         lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT;
5730 retry_lockid:
5731         rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid);
5732         if (rval)
5733                 goto exit;
5734
5735         /* MAX wait time before forcing IDC Lock recovery = 2 secs */
5736         if (time_after_eq(jiffies, lock_recovery_timeout)) {
5737                 if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS)
5738                         return QLA_SUCCESS;
5739                 else
5740                         return QLA_FUNCTION_FAILED;
5741         }
5742
5743         rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid);
5744         if (rval)
5745                 goto exit;
5746
5747         if (o_drv_lockid == n_drv_lockid) {
5748                 msleep(QLA83XX_WAIT_LOGIC_MS);
5749                 goto retry_lockid;
5750         } else
5751                 return QLA_SUCCESS;
5752
5753 exit:
5754         return rval;
5755 }
5756
5757 /*
5758  * Context: task, can sleep
5759  */
5760 void
5761 qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id)
5762 {
5763         uint32_t data;
5764         uint32_t lock_owner;
5765         struct qla_hw_data *ha = base_vha->hw;
5766
5767         might_sleep();
5768
5769         /* IDC-lock implementation using driver-lock/lock-id remote registers */
5770 retry_lock:
5771         if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data)
5772             == QLA_SUCCESS) {
5773                 if (data) {
5774                         /* Setting lock-id to our function-number */
5775                         qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5776                             ha->portnum);
5777                 } else {
5778                         qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5779                             &lock_owner);
5780                         ql_dbg(ql_dbg_p3p, base_vha, 0xb063,
5781                             "Failed to acquire IDC lock, acquired by %d, "
5782                             "retrying...\n", lock_owner);
5783
5784                         /* Retry/Perform IDC-Lock recovery */
5785                         if (qla83xx_idc_lock_recovery(base_vha)
5786                             == QLA_SUCCESS) {
5787                                 msleep(QLA83XX_WAIT_LOGIC_MS);
5788                                 goto retry_lock;
5789                         } else
5790                                 ql_log(ql_log_warn, base_vha, 0xb075,
5791                                     "IDC Lock recovery FAILED.\n");
5792                 }
5793
5794         }
5795
5796         return;
5797 }
5798
5799 static bool
5800 qla25xx_rdp_rsp_reduce_size(struct scsi_qla_host *vha,
5801         struct purex_entry_24xx *purex)
5802 {
5803         char fwstr[16];
5804         u32 sid = purex->s_id[2] << 16 | purex->s_id[1] << 8 | purex->s_id[0];
5805         struct port_database_24xx *pdb;
5806
5807         /* Domain Controller is always logged-out. */
5808         /* if RDP request is not from Domain Controller: */
5809         if (sid != 0xfffc01)
5810                 return false;
5811
5812         ql_dbg(ql_dbg_init, vha, 0x0181, "%s: s_id=%#x\n", __func__, sid);
5813
5814         pdb = kzalloc(sizeof(*pdb), GFP_KERNEL);
5815         if (!pdb) {
5816                 ql_dbg(ql_dbg_init, vha, 0x0181,
5817                     "%s: Failed allocate pdb\n", __func__);
5818         } else if (qla24xx_get_port_database(vha,
5819                                 le16_to_cpu(purex->nport_handle), pdb)) {
5820                 ql_dbg(ql_dbg_init, vha, 0x0181,
5821                     "%s: Failed get pdb sid=%x\n", __func__, sid);
5822         } else if (pdb->current_login_state != PDS_PLOGI_COMPLETE &&
5823             pdb->current_login_state != PDS_PRLI_COMPLETE) {
5824                 ql_dbg(ql_dbg_init, vha, 0x0181,
5825                     "%s: Port not logged in sid=%#x\n", __func__, sid);
5826         } else {
5827                 /* RDP request is from logged in port */
5828                 kfree(pdb);
5829                 return false;
5830         }
5831         kfree(pdb);
5832
5833         vha->hw->isp_ops->fw_version_str(vha, fwstr, sizeof(fwstr));
5834         fwstr[strcspn(fwstr, " ")] = 0;
5835         /* if FW version allows RDP response length upto 2048 bytes: */
5836         if (strcmp(fwstr, "8.09.00") > 0 || strcmp(fwstr, "8.05.65") == 0)
5837                 return false;
5838
5839         ql_dbg(ql_dbg_init, vha, 0x0181, "%s: fw=%s\n", __func__, fwstr);
5840
5841         /* RDP response length is to be reduced to maximum 256 bytes */
5842         return true;
5843 }
5844
5845 /*
5846  * Function Name: qla24xx_process_purex_iocb
5847  *
5848  * Description:
5849  * Prepare a RDP response and send to Fabric switch
5850  *
5851  * PARAMETERS:
5852  * vha: SCSI qla host
5853  * purex: RDP request received by HBA
5854  */
5855 void qla24xx_process_purex_rdp(struct scsi_qla_host *vha,
5856                                struct purex_item *item)
5857 {
5858         struct qla_hw_data *ha = vha->hw;
5859         struct purex_entry_24xx *purex =
5860             (struct purex_entry_24xx *)&item->iocb;
5861         dma_addr_t rsp_els_dma;
5862         dma_addr_t rsp_payload_dma;
5863         dma_addr_t stat_dma;
5864         dma_addr_t sfp_dma;
5865         struct els_entry_24xx *rsp_els = NULL;
5866         struct rdp_rsp_payload *rsp_payload = NULL;
5867         struct link_statistics *stat = NULL;
5868         uint8_t *sfp = NULL;
5869         uint16_t sfp_flags = 0;
5870         uint rsp_payload_length = sizeof(*rsp_payload);
5871         int rval;
5872
5873         ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0180,
5874             "%s: Enter\n", __func__);
5875
5876         ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0181,
5877             "-------- ELS REQ -------\n");
5878         ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0182,
5879             purex, sizeof(*purex));
5880
5881         if (qla25xx_rdp_rsp_reduce_size(vha, purex)) {
5882                 rsp_payload_length =
5883                     offsetof(typeof(*rsp_payload), optical_elmt_desc);
5884                 ql_dbg(ql_dbg_init, vha, 0x0181,
5885                     "Reducing RSP payload length to %u bytes...\n",
5886                     rsp_payload_length);
5887         }
5888
5889         rsp_els = dma_alloc_coherent(&ha->pdev->dev, sizeof(*rsp_els),
5890             &rsp_els_dma, GFP_KERNEL);
5891         if (!rsp_els) {
5892                 ql_log(ql_log_warn, vha, 0x0183,
5893                     "Failed allocate dma buffer ELS RSP.\n");
5894                 goto dealloc;
5895         }
5896
5897         rsp_payload = dma_alloc_coherent(&ha->pdev->dev, sizeof(*rsp_payload),
5898             &rsp_payload_dma, GFP_KERNEL);
5899         if (!rsp_payload) {
5900                 ql_log(ql_log_warn, vha, 0x0184,
5901                     "Failed allocate dma buffer ELS RSP payload.\n");
5902                 goto dealloc;
5903         }
5904
5905         sfp = dma_alloc_coherent(&ha->pdev->dev, SFP_RTDI_LEN,
5906             &sfp_dma, GFP_KERNEL);
5907
5908         stat = dma_alloc_coherent(&ha->pdev->dev, sizeof(*stat),
5909             &stat_dma, GFP_KERNEL);
5910
5911         /* Prepare Response IOCB */
5912         rsp_els->entry_type = ELS_IOCB_TYPE;
5913         rsp_els->entry_count = 1;
5914         rsp_els->sys_define = 0;
5915         rsp_els->entry_status = 0;
5916         rsp_els->handle = 0;
5917         rsp_els->nport_handle = purex->nport_handle;
5918         rsp_els->tx_dsd_count = cpu_to_le16(1);
5919         rsp_els->vp_index = purex->vp_idx;
5920         rsp_els->sof_type = EST_SOFI3;
5921         rsp_els->rx_xchg_address = purex->rx_xchg_addr;
5922         rsp_els->rx_dsd_count = 0;
5923         rsp_els->opcode = purex->els_frame_payload[0];
5924
5925         rsp_els->d_id[0] = purex->s_id[0];
5926         rsp_els->d_id[1] = purex->s_id[1];
5927         rsp_els->d_id[2] = purex->s_id[2];
5928
5929         rsp_els->control_flags = cpu_to_le16(EPD_ELS_ACC);
5930         rsp_els->rx_byte_count = 0;
5931         rsp_els->tx_byte_count = cpu_to_le32(rsp_payload_length);
5932
5933         put_unaligned_le64(rsp_payload_dma, &rsp_els->tx_address);
5934         rsp_els->tx_len = rsp_els->tx_byte_count;
5935
5936         rsp_els->rx_address = 0;
5937         rsp_els->rx_len = 0;
5938
5939         /* Prepare Response Payload */
5940         rsp_payload->hdr.cmd = cpu_to_be32(0x2 << 24); /* LS_ACC */
5941         rsp_payload->hdr.len = cpu_to_be32(le32_to_cpu(rsp_els->tx_byte_count) -
5942                                            sizeof(rsp_payload->hdr));
5943
5944         /* Link service Request Info Descriptor */
5945         rsp_payload->ls_req_info_desc.desc_tag = cpu_to_be32(0x1);
5946         rsp_payload->ls_req_info_desc.desc_len =
5947             cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_req_info_desc));
5948         rsp_payload->ls_req_info_desc.req_payload_word_0 =
5949             cpu_to_be32p((uint32_t *)purex->els_frame_payload);
5950
5951         /* Link service Request Info Descriptor 2 */
5952         rsp_payload->ls_req_info_desc2.desc_tag = cpu_to_be32(0x1);
5953         rsp_payload->ls_req_info_desc2.desc_len =
5954             cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_req_info_desc2));
5955         rsp_payload->ls_req_info_desc2.req_payload_word_0 =
5956             cpu_to_be32p((uint32_t *)purex->els_frame_payload);
5957
5958
5959         rsp_payload->sfp_diag_desc.desc_tag = cpu_to_be32(0x10000);
5960         rsp_payload->sfp_diag_desc.desc_len =
5961                 cpu_to_be32(RDP_DESC_LEN(rsp_payload->sfp_diag_desc));
5962
5963         if (sfp) {
5964                 /* SFP Flags */
5965                 memset(sfp, 0, SFP_RTDI_LEN);
5966                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 0x7, 2, 0);
5967                 if (!rval) {
5968                         /* SFP Flags bits 3-0: Port Tx Laser Type */
5969                         if (sfp[0] & BIT_2 || sfp[1] & (BIT_6|BIT_5))
5970                                 sfp_flags |= BIT_0; /* short wave */
5971                         else if (sfp[0] & BIT_1)
5972                                 sfp_flags |= BIT_1; /* long wave 1310nm */
5973                         else if (sfp[1] & BIT_4)
5974                                 sfp_flags |= BIT_1|BIT_0; /* long wave 1550nm */
5975                 }
5976
5977                 /* SFP Type */
5978                 memset(sfp, 0, SFP_RTDI_LEN);
5979                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 0x0, 1, 0);
5980                 if (!rval) {
5981                         sfp_flags |= BIT_4; /* optical */
5982                         if (sfp[0] == 0x3)
5983                                 sfp_flags |= BIT_6; /* sfp+ */
5984                 }
5985
5986                 rsp_payload->sfp_diag_desc.sfp_flags = cpu_to_be16(sfp_flags);
5987
5988                 /* SFP Diagnostics */
5989                 memset(sfp, 0, SFP_RTDI_LEN);
5990                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 0x60, 10, 0);
5991                 if (!rval) {
5992                         __be16 *trx = (__force __be16 *)sfp; /* already be16 */
5993                         rsp_payload->sfp_diag_desc.temperature = trx[0];
5994                         rsp_payload->sfp_diag_desc.vcc = trx[1];
5995                         rsp_payload->sfp_diag_desc.tx_bias = trx[2];
5996                         rsp_payload->sfp_diag_desc.tx_power = trx[3];
5997                         rsp_payload->sfp_diag_desc.rx_power = trx[4];
5998                 }
5999         }
6000
6001         /* Port Speed Descriptor */
6002         rsp_payload->port_speed_desc.desc_tag = cpu_to_be32(0x10001);
6003         rsp_payload->port_speed_desc.desc_len =
6004             cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_speed_desc));
6005         rsp_payload->port_speed_desc.speed_capab = cpu_to_be16(
6006             qla25xx_fdmi_port_speed_capability(ha));
6007         rsp_payload->port_speed_desc.operating_speed = cpu_to_be16(
6008             qla25xx_fdmi_port_speed_currently(ha));
6009
6010         /* Link Error Status Descriptor */
6011         rsp_payload->ls_err_desc.desc_tag = cpu_to_be32(0x10002);
6012         rsp_payload->ls_err_desc.desc_len =
6013                 cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_err_desc));
6014
6015         if (stat) {
6016                 rval = qla24xx_get_isp_stats(vha, stat, stat_dma, 0);
6017                 if (!rval) {
6018                         rsp_payload->ls_err_desc.link_fail_cnt =
6019                             cpu_to_be32(le32_to_cpu(stat->link_fail_cnt));
6020                         rsp_payload->ls_err_desc.loss_sync_cnt =
6021                             cpu_to_be32(le32_to_cpu(stat->loss_sync_cnt));
6022                         rsp_payload->ls_err_desc.loss_sig_cnt =
6023                             cpu_to_be32(le32_to_cpu(stat->loss_sig_cnt));
6024                         rsp_payload->ls_err_desc.prim_seq_err_cnt =
6025                             cpu_to_be32(le32_to_cpu(stat->prim_seq_err_cnt));
6026                         rsp_payload->ls_err_desc.inval_xmit_word_cnt =
6027                             cpu_to_be32(le32_to_cpu(stat->inval_xmit_word_cnt));
6028                         rsp_payload->ls_err_desc.inval_crc_cnt =
6029                             cpu_to_be32(le32_to_cpu(stat->inval_crc_cnt));
6030                         rsp_payload->ls_err_desc.pn_port_phy_type |= BIT_6;
6031                 }
6032         }
6033
6034         /* Portname Descriptor */
6035         rsp_payload->port_name_diag_desc.desc_tag = cpu_to_be32(0x10003);
6036         rsp_payload->port_name_diag_desc.desc_len =
6037             cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_name_diag_desc));
6038         memcpy(rsp_payload->port_name_diag_desc.WWNN,
6039             vha->node_name,
6040             sizeof(rsp_payload->port_name_diag_desc.WWNN));
6041         memcpy(rsp_payload->port_name_diag_desc.WWPN,
6042             vha->port_name,
6043             sizeof(rsp_payload->port_name_diag_desc.WWPN));
6044
6045         /* F-Port Portname Descriptor */
6046         rsp_payload->port_name_direct_desc.desc_tag = cpu_to_be32(0x10003);
6047         rsp_payload->port_name_direct_desc.desc_len =
6048             cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_name_direct_desc));
6049         memcpy(rsp_payload->port_name_direct_desc.WWNN,
6050             vha->fabric_node_name,
6051             sizeof(rsp_payload->port_name_direct_desc.WWNN));
6052         memcpy(rsp_payload->port_name_direct_desc.WWPN,
6053             vha->fabric_port_name,
6054             sizeof(rsp_payload->port_name_direct_desc.WWPN));
6055
6056         /* Bufer Credit Descriptor */
6057         rsp_payload->buffer_credit_desc.desc_tag = cpu_to_be32(0x10006);
6058         rsp_payload->buffer_credit_desc.desc_len =
6059                 cpu_to_be32(RDP_DESC_LEN(rsp_payload->buffer_credit_desc));
6060         rsp_payload->buffer_credit_desc.fcport_b2b = 0;
6061         rsp_payload->buffer_credit_desc.attached_fcport_b2b = cpu_to_be32(0);
6062         rsp_payload->buffer_credit_desc.fcport_rtt = cpu_to_be32(0);
6063
6064         if (ha->flags.plogi_template_valid) {
6065                 uint32_t tmp =
6066                 be16_to_cpu(ha->plogi_els_payld.fl_csp.sp_bb_cred);
6067                 rsp_payload->buffer_credit_desc.fcport_b2b = cpu_to_be32(tmp);
6068         }
6069
6070         if (rsp_payload_length < sizeof(*rsp_payload))
6071                 goto send;
6072
6073         /* Optical Element Descriptor, Temperature */
6074         rsp_payload->optical_elmt_desc[0].desc_tag = cpu_to_be32(0x10007);
6075         rsp_payload->optical_elmt_desc[0].desc_len =
6076                 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6077         /* Optical Element Descriptor, Voltage */
6078         rsp_payload->optical_elmt_desc[1].desc_tag = cpu_to_be32(0x10007);
6079         rsp_payload->optical_elmt_desc[1].desc_len =
6080                 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6081         /* Optical Element Descriptor, Tx Bias Current */
6082         rsp_payload->optical_elmt_desc[2].desc_tag = cpu_to_be32(0x10007);
6083         rsp_payload->optical_elmt_desc[2].desc_len =
6084                 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6085         /* Optical Element Descriptor, Tx Power */
6086         rsp_payload->optical_elmt_desc[3].desc_tag = cpu_to_be32(0x10007);
6087         rsp_payload->optical_elmt_desc[3].desc_len =
6088                 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6089         /* Optical Element Descriptor, Rx Power */
6090         rsp_payload->optical_elmt_desc[4].desc_tag = cpu_to_be32(0x10007);
6091         rsp_payload->optical_elmt_desc[4].desc_len =
6092                 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6093
6094         if (sfp) {
6095                 memset(sfp, 0, SFP_RTDI_LEN);
6096                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 0, 64, 0);
6097                 if (!rval) {
6098                         __be16 *trx = (__force __be16 *)sfp; /* already be16 */
6099
6100                         /* Optical Element Descriptor, Temperature */
6101                         rsp_payload->optical_elmt_desc[0].high_alarm = trx[0];
6102                         rsp_payload->optical_elmt_desc[0].low_alarm = trx[1];
6103                         rsp_payload->optical_elmt_desc[0].high_warn = trx[2];
6104                         rsp_payload->optical_elmt_desc[0].low_warn = trx[3];
6105                         rsp_payload->optical_elmt_desc[0].element_flags =
6106                             cpu_to_be32(1 << 28);
6107
6108                         /* Optical Element Descriptor, Voltage */
6109                         rsp_payload->optical_elmt_desc[1].high_alarm = trx[4];
6110                         rsp_payload->optical_elmt_desc[1].low_alarm = trx[5];
6111                         rsp_payload->optical_elmt_desc[1].high_warn = trx[6];
6112                         rsp_payload->optical_elmt_desc[1].low_warn = trx[7];
6113                         rsp_payload->optical_elmt_desc[1].element_flags =
6114                             cpu_to_be32(2 << 28);
6115
6116                         /* Optical Element Descriptor, Tx Bias Current */
6117                         rsp_payload->optical_elmt_desc[2].high_alarm = trx[8];
6118                         rsp_payload->optical_elmt_desc[2].low_alarm = trx[9];
6119                         rsp_payload->optical_elmt_desc[2].high_warn = trx[10];
6120                         rsp_payload->optical_elmt_desc[2].low_warn = trx[11];
6121                         rsp_payload->optical_elmt_desc[2].element_flags =
6122                             cpu_to_be32(3 << 28);
6123
6124                         /* Optical Element Descriptor, Tx Power */
6125                         rsp_payload->optical_elmt_desc[3].high_alarm = trx[12];
6126                         rsp_payload->optical_elmt_desc[3].low_alarm = trx[13];
6127                         rsp_payload->optical_elmt_desc[3].high_warn = trx[14];
6128                         rsp_payload->optical_elmt_desc[3].low_warn = trx[15];
6129                         rsp_payload->optical_elmt_desc[3].element_flags =
6130                             cpu_to_be32(4 << 28);
6131
6132                         /* Optical Element Descriptor, Rx Power */
6133                         rsp_payload->optical_elmt_desc[4].high_alarm = trx[16];
6134                         rsp_payload->optical_elmt_desc[4].low_alarm = trx[17];
6135                         rsp_payload->optical_elmt_desc[4].high_warn = trx[18];
6136                         rsp_payload->optical_elmt_desc[4].low_warn = trx[19];
6137                         rsp_payload->optical_elmt_desc[4].element_flags =
6138                             cpu_to_be32(5 << 28);
6139                 }
6140
6141                 memset(sfp, 0, SFP_RTDI_LEN);
6142                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 112, 64, 0);
6143                 if (!rval) {
6144                         /* Temperature high/low alarm/warning */
6145                         rsp_payload->optical_elmt_desc[0].element_flags |=
6146                             cpu_to_be32(
6147                                 (sfp[0] >> 7 & 1) << 3 |
6148                                 (sfp[0] >> 6 & 1) << 2 |
6149                                 (sfp[4] >> 7 & 1) << 1 |
6150                                 (sfp[4] >> 6 & 1) << 0);
6151
6152                         /* Voltage high/low alarm/warning */
6153                         rsp_payload->optical_elmt_desc[1].element_flags |=
6154                             cpu_to_be32(
6155                                 (sfp[0] >> 5 & 1) << 3 |
6156                                 (sfp[0] >> 4 & 1) << 2 |
6157                                 (sfp[4] >> 5 & 1) << 1 |
6158                                 (sfp[4] >> 4 & 1) << 0);
6159
6160                         /* Tx Bias Current high/low alarm/warning */
6161                         rsp_payload->optical_elmt_desc[2].element_flags |=
6162                             cpu_to_be32(
6163                                 (sfp[0] >> 3 & 1) << 3 |
6164                                 (sfp[0] >> 2 & 1) << 2 |
6165                                 (sfp[4] >> 3 & 1) << 1 |
6166                                 (sfp[4] >> 2 & 1) << 0);
6167
6168                         /* Tx Power high/low alarm/warning */
6169                         rsp_payload->optical_elmt_desc[3].element_flags |=
6170                             cpu_to_be32(
6171                                 (sfp[0] >> 1 & 1) << 3 |
6172                                 (sfp[0] >> 0 & 1) << 2 |
6173                                 (sfp[4] >> 1 & 1) << 1 |
6174                                 (sfp[4] >> 0 & 1) << 0);
6175
6176                         /* Rx Power high/low alarm/warning */
6177                         rsp_payload->optical_elmt_desc[4].element_flags |=
6178                             cpu_to_be32(
6179                                 (sfp[1] >> 7 & 1) << 3 |
6180                                 (sfp[1] >> 6 & 1) << 2 |
6181                                 (sfp[5] >> 7 & 1) << 1 |
6182                                 (sfp[5] >> 6 & 1) << 0);
6183                 }
6184         }
6185
6186         /* Optical Product Data Descriptor */
6187         rsp_payload->optical_prod_desc.desc_tag = cpu_to_be32(0x10008);
6188         rsp_payload->optical_prod_desc.desc_len =
6189                 cpu_to_be32(RDP_DESC_LEN(rsp_payload->optical_prod_desc));
6190
6191         if (sfp) {
6192                 memset(sfp, 0, SFP_RTDI_LEN);
6193                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 20, 64, 0);
6194                 if (!rval) {
6195                         memcpy(rsp_payload->optical_prod_desc.vendor_name,
6196                             sfp + 0,
6197                             sizeof(rsp_payload->optical_prod_desc.vendor_name));
6198                         memcpy(rsp_payload->optical_prod_desc.part_number,
6199                             sfp + 20,
6200                             sizeof(rsp_payload->optical_prod_desc.part_number));
6201                         memcpy(rsp_payload->optical_prod_desc.revision,
6202                             sfp + 36,
6203                             sizeof(rsp_payload->optical_prod_desc.revision));
6204                         memcpy(rsp_payload->optical_prod_desc.serial_number,
6205                             sfp + 48,
6206                             sizeof(rsp_payload->optical_prod_desc.serial_number));
6207                 }
6208
6209                 memset(sfp, 0, SFP_RTDI_LEN);
6210                 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 84, 8, 0);
6211                 if (!rval) {
6212                         memcpy(rsp_payload->optical_prod_desc.date,
6213                             sfp + 0,
6214                             sizeof(rsp_payload->optical_prod_desc.date));
6215                 }
6216         }
6217
6218 send:
6219         ql_dbg(ql_dbg_init, vha, 0x0183,
6220             "Sending ELS Response to RDP Request...\n");
6221         ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0184,
6222             "-------- ELS RSP -------\n");
6223         ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0185,
6224             rsp_els, sizeof(*rsp_els));
6225         ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0186,
6226             "-------- ELS RSP PAYLOAD -------\n");
6227         ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0187,
6228             rsp_payload, rsp_payload_length);
6229
6230         rval = qla2x00_issue_iocb(vha, rsp_els, rsp_els_dma, 0);
6231
6232         if (rval) {
6233                 ql_log(ql_log_warn, vha, 0x0188,
6234                     "%s: iocb failed to execute -> %x\n", __func__, rval);
6235         } else if (rsp_els->comp_status) {
6236                 ql_log(ql_log_warn, vha, 0x0189,
6237                     "%s: iocb failed to complete -> completion=%#x subcode=(%#x,%#x)\n",
6238                     __func__, rsp_els->comp_status,
6239                     rsp_els->error_subcode_1, rsp_els->error_subcode_2);
6240         } else {
6241                 ql_dbg(ql_dbg_init, vha, 0x018a, "%s: done.\n", __func__);
6242         }
6243
6244 dealloc:
6245         if (stat)
6246                 dma_free_coherent(&ha->pdev->dev, sizeof(*stat),
6247                     stat, stat_dma);
6248         if (sfp)
6249                 dma_free_coherent(&ha->pdev->dev, SFP_RTDI_LEN,
6250                     sfp, sfp_dma);
6251         if (rsp_payload)
6252                 dma_free_coherent(&ha->pdev->dev, sizeof(*rsp_payload),
6253                     rsp_payload, rsp_payload_dma);
6254         if (rsp_els)
6255                 dma_free_coherent(&ha->pdev->dev, sizeof(*rsp_els),
6256                     rsp_els, rsp_els_dma);
6257 }
6258
6259 void
6260 qla24xx_free_purex_item(struct purex_item *item)
6261 {
6262         if (item == &item->vha->default_item)
6263                 memset(&item->vha->default_item, 0, sizeof(struct purex_item));
6264         else
6265                 kfree(item);
6266 }
6267
6268 void qla24xx_process_purex_list(struct purex_list *list)
6269 {
6270         struct list_head head = LIST_HEAD_INIT(head);
6271         struct purex_item *item, *next;
6272         ulong flags;
6273
6274         spin_lock_irqsave(&list->lock, flags);
6275         list_splice_init(&list->head, &head);
6276         spin_unlock_irqrestore(&list->lock, flags);
6277
6278         list_for_each_entry_safe(item, next, &head, list) {
6279                 list_del(&item->list);
6280                 item->process_item(item->vha, item);
6281                 qla24xx_free_purex_item(item);
6282         }
6283 }
6284
6285 /*
6286  * Context: task, can sleep
6287  */
6288 void
6289 qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id)
6290 {
6291 #if 0
6292         uint16_t options = (requester_id << 15) | BIT_7;
6293 #endif
6294         uint16_t retry;
6295         uint32_t data;
6296         struct qla_hw_data *ha = base_vha->hw;
6297
6298         might_sleep();
6299
6300         /* IDC-unlock implementation using driver-unlock/lock-id
6301          * remote registers
6302          */
6303         retry = 0;
6304 retry_unlock:
6305         if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data)
6306             == QLA_SUCCESS) {
6307                 if (data == ha->portnum) {
6308                         qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data);
6309                         /* Clearing lock-id by setting 0xff */
6310                         qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff);
6311                 } else if (retry < 10) {
6312                         /* SV: XXX: IDC unlock retrying needed here? */
6313
6314                         /* Retry for IDC-unlock */
6315                         msleep(QLA83XX_WAIT_LOGIC_MS);
6316                         retry++;
6317                         ql_dbg(ql_dbg_p3p, base_vha, 0xb064,
6318                             "Failed to release IDC lock, retrying=%d\n", retry);
6319                         goto retry_unlock;
6320                 }
6321         } else if (retry < 10) {
6322                 /* Retry for IDC-unlock */
6323                 msleep(QLA83XX_WAIT_LOGIC_MS);
6324                 retry++;
6325                 ql_dbg(ql_dbg_p3p, base_vha, 0xb065,
6326                     "Failed to read drv-lockid, retrying=%d\n", retry);
6327                 goto retry_unlock;
6328         }
6329
6330         return;
6331
6332 #if 0
6333         /* XXX: IDC-unlock implementation using access-control mbx */
6334         retry = 0;
6335 retry_unlock2:
6336         if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) {
6337                 if (retry < 10) {
6338                         /* Retry for IDC-unlock */
6339                         msleep(QLA83XX_WAIT_LOGIC_MS);
6340                         retry++;
6341                         ql_dbg(ql_dbg_p3p, base_vha, 0xb066,
6342                             "Failed to release IDC lock, retrying=%d\n", retry);
6343                         goto retry_unlock2;
6344                 }
6345         }
6346
6347         return;
6348 #endif
6349 }
6350
6351 int
6352 __qla83xx_set_drv_presence(scsi_qla_host_t *vha)
6353 {
6354         int rval = QLA_SUCCESS;
6355         struct qla_hw_data *ha = vha->hw;
6356         uint32_t drv_presence;
6357
6358         rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6359         if (rval == QLA_SUCCESS) {
6360                 drv_presence |= (1 << ha->portnum);
6361                 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6362                     drv_presence);
6363         }
6364
6365         return rval;
6366 }
6367
6368 int
6369 qla83xx_set_drv_presence(scsi_qla_host_t *vha)
6370 {
6371         int rval = QLA_SUCCESS;
6372
6373         qla83xx_idc_lock(vha, 0);
6374         rval = __qla83xx_set_drv_presence(vha);
6375         qla83xx_idc_unlock(vha, 0);
6376
6377         return rval;
6378 }
6379
6380 int
6381 __qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
6382 {
6383         int rval = QLA_SUCCESS;
6384         struct qla_hw_data *ha = vha->hw;
6385         uint32_t drv_presence;
6386
6387         rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6388         if (rval == QLA_SUCCESS) {
6389                 drv_presence &= ~(1 << ha->portnum);
6390                 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6391                     drv_presence);
6392         }
6393
6394         return rval;
6395 }
6396
6397 int
6398 qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
6399 {
6400         int rval = QLA_SUCCESS;
6401
6402         qla83xx_idc_lock(vha, 0);
6403         rval = __qla83xx_clear_drv_presence(vha);
6404         qla83xx_idc_unlock(vha, 0);
6405
6406         return rval;
6407 }
6408
6409 static void
6410 qla83xx_need_reset_handler(scsi_qla_host_t *vha)
6411 {
6412         struct qla_hw_data *ha = vha->hw;
6413         uint32_t drv_ack, drv_presence;
6414         unsigned long ack_timeout;
6415
6416         /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */
6417         ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ);
6418         while (1) {
6419                 qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
6420                 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6421                 if ((drv_ack & drv_presence) == drv_presence)
6422                         break;
6423
6424                 if (time_after_eq(jiffies, ack_timeout)) {
6425                         ql_log(ql_log_warn, vha, 0xb067,
6426                             "RESET ACK TIMEOUT! drv_presence=0x%x "
6427                             "drv_ack=0x%x\n", drv_presence, drv_ack);
6428                         /*
6429                          * The function(s) which did not ack in time are forced
6430                          * to withdraw any further participation in the IDC
6431                          * reset.
6432                          */
6433                         if (drv_ack != drv_presence)
6434                                 qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6435                                     drv_ack);
6436                         break;
6437                 }
6438
6439                 qla83xx_idc_unlock(vha, 0);
6440                 msleep(1000);
6441                 qla83xx_idc_lock(vha, 0);
6442         }
6443
6444         qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD);
6445         ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n");
6446 }
6447
6448 static int
6449 qla83xx_device_bootstrap(scsi_qla_host_t *vha)
6450 {
6451         int rval = QLA_SUCCESS;
6452         uint32_t idc_control;
6453
6454         qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING);
6455         ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n");
6456
6457         /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */
6458         __qla83xx_get_idc_control(vha, &idc_control);
6459         idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET;
6460         __qla83xx_set_idc_control(vha, 0);
6461
6462         qla83xx_idc_unlock(vha, 0);
6463         rval = qla83xx_restart_nic_firmware(vha);
6464         qla83xx_idc_lock(vha, 0);
6465
6466         if (rval != QLA_SUCCESS) {
6467                 ql_log(ql_log_fatal, vha, 0xb06a,
6468                     "Failed to restart NIC f/w.\n");
6469                 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED);
6470                 ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n");
6471         } else {
6472                 ql_dbg(ql_dbg_p3p, vha, 0xb06c,
6473                     "Success in restarting nic f/w.\n");
6474                 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY);
6475                 ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n");
6476         }
6477
6478         return rval;
6479 }
6480
6481 /* Assumes idc_lock always held on entry */
6482 int
6483 qla83xx_idc_state_handler(scsi_qla_host_t *base_vha)
6484 {
6485         struct qla_hw_data *ha = base_vha->hw;
6486         int rval = QLA_SUCCESS;
6487         unsigned long dev_init_timeout;
6488         uint32_t dev_state;
6489
6490         /* Wait for MAX-INIT-TIMEOUT for the device to go ready */
6491         dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ);
6492
6493         while (1) {
6494
6495                 if (time_after_eq(jiffies, dev_init_timeout)) {
6496                         ql_log(ql_log_warn, base_vha, 0xb06e,
6497                             "Initialization TIMEOUT!\n");
6498                         /* Init timeout. Disable further NIC Core
6499                          * communication.
6500                          */
6501                         qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
6502                                 QLA8XXX_DEV_FAILED);
6503                         ql_log(ql_log_info, base_vha, 0xb06f,
6504                             "HW State: FAILED.\n");
6505                 }
6506
6507                 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
6508                 switch (dev_state) {
6509                 case QLA8XXX_DEV_READY:
6510                         if (ha->flags.nic_core_reset_owner)
6511                                 qla83xx_idc_audit(base_vha,
6512                                     IDC_AUDIT_COMPLETION);
6513                         ha->flags.nic_core_reset_owner = 0;
6514                         ql_dbg(ql_dbg_p3p, base_vha, 0xb070,
6515                             "Reset_owner reset by 0x%x.\n",
6516                             ha->portnum);
6517                         goto exit;
6518                 case QLA8XXX_DEV_COLD:
6519                         if (ha->flags.nic_core_reset_owner)
6520                                 rval = qla83xx_device_bootstrap(base_vha);
6521                         else {
6522                         /* Wait for AEN to change device-state */
6523                                 qla83xx_idc_unlock(base_vha, 0);
6524                                 msleep(1000);
6525                                 qla83xx_idc_lock(base_vha, 0);
6526                         }
6527                         break;
6528                 case QLA8XXX_DEV_INITIALIZING:
6529                         /* Wait for AEN to change device-state */
6530                         qla83xx_idc_unlock(base_vha, 0);
6531                         msleep(1000);
6532                         qla83xx_idc_lock(base_vha, 0);
6533                         break;
6534                 case QLA8XXX_DEV_NEED_RESET:
6535                         if (!ql2xdontresethba && ha->flags.nic_core_reset_owner)
6536                                 qla83xx_need_reset_handler(base_vha);
6537                         else {
6538                                 /* Wait for AEN to change device-state */
6539                                 qla83xx_idc_unlock(base_vha, 0);
6540                                 msleep(1000);
6541                                 qla83xx_idc_lock(base_vha, 0);
6542                         }
6543                         /* reset timeout value after need reset handler */
6544                         dev_init_timeout = jiffies +
6545                             (ha->fcoe_dev_init_timeout * HZ);
6546                         break;
6547                 case QLA8XXX_DEV_NEED_QUIESCENT:
6548                         /* XXX: DEBUG for now */
6549                         qla83xx_idc_unlock(base_vha, 0);
6550                         msleep(1000);
6551                         qla83xx_idc_lock(base_vha, 0);
6552                         break;
6553                 case QLA8XXX_DEV_QUIESCENT:
6554                         /* XXX: DEBUG for now */
6555                         if (ha->flags.quiesce_owner)
6556                                 goto exit;
6557
6558                         qla83xx_idc_unlock(base_vha, 0);
6559                         msleep(1000);
6560                         qla83xx_idc_lock(base_vha, 0);
6561                         dev_init_timeout = jiffies +
6562                             (ha->fcoe_dev_init_timeout * HZ);
6563                         break;
6564                 case QLA8XXX_DEV_FAILED:
6565                         if (ha->flags.nic_core_reset_owner)
6566                                 qla83xx_idc_audit(base_vha,
6567                                     IDC_AUDIT_COMPLETION);
6568                         ha->flags.nic_core_reset_owner = 0;
6569                         __qla83xx_clear_drv_presence(base_vha);
6570                         qla83xx_idc_unlock(base_vha, 0);
6571                         qla8xxx_dev_failed_handler(base_vha);
6572                         rval = QLA_FUNCTION_FAILED;
6573                         qla83xx_idc_lock(base_vha, 0);
6574                         goto exit;
6575                 case QLA8XXX_BAD_VALUE:
6576                         qla83xx_idc_unlock(base_vha, 0);
6577                         msleep(1000);
6578                         qla83xx_idc_lock(base_vha, 0);
6579                         break;
6580                 default:
6581                         ql_log(ql_log_warn, base_vha, 0xb071,
6582                             "Unknown Device State: %x.\n", dev_state);
6583                         qla83xx_idc_unlock(base_vha, 0);
6584                         qla8xxx_dev_failed_handler(base_vha);
6585                         rval = QLA_FUNCTION_FAILED;
6586                         qla83xx_idc_lock(base_vha, 0);
6587                         goto exit;
6588                 }
6589         }
6590
6591 exit:
6592         return rval;
6593 }
6594
6595 void
6596 qla2x00_disable_board_on_pci_error(struct work_struct *work)
6597 {
6598         struct qla_hw_data *ha = container_of(work, struct qla_hw_data,
6599             board_disable);
6600         struct pci_dev *pdev = ha->pdev;
6601         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
6602
6603         ql_log(ql_log_warn, base_vha, 0x015b,
6604             "Disabling adapter.\n");
6605
6606         if (!atomic_read(&pdev->enable_cnt)) {
6607                 ql_log(ql_log_info, base_vha, 0xfffc,
6608                     "PCI device disabled, no action req for PCI error=%lx\n",
6609                     base_vha->pci_flags);
6610                 return;
6611         }
6612
6613         /*
6614          * if UNLOADING flag is already set, then continue unload,
6615          * where it was set first.
6616          */
6617         if (test_and_set_bit(UNLOADING, &base_vha->dpc_flags))
6618                 return;
6619
6620         qla2x00_wait_for_sess_deletion(base_vha);
6621
6622         qla2x00_delete_all_vps(ha, base_vha);
6623
6624         qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
6625
6626         qla2x00_dfs_remove(base_vha);
6627
6628         qla84xx_put_chip(base_vha);
6629
6630         if (base_vha->timer_active)
6631                 qla2x00_stop_timer(base_vha);
6632
6633         base_vha->flags.online = 0;
6634
6635         qla2x00_destroy_deferred_work(ha);
6636
6637         /*
6638          * Do not try to stop beacon blink as it will issue a mailbox
6639          * command.
6640          */
6641         qla2x00_free_sysfs_attr(base_vha, false);
6642
6643         fc_remove_host(base_vha->host);
6644
6645         scsi_remove_host(base_vha->host);
6646
6647         base_vha->flags.init_done = 0;
6648         qla25xx_delete_queues(base_vha);
6649         qla2x00_free_fcports(base_vha);
6650         qla2x00_free_irqs(base_vha);
6651         qla2x00_mem_free(ha);
6652         qla82xx_md_free(base_vha);
6653         qla2x00_free_queues(ha);
6654
6655         qla2x00_unmap_iobases(ha);
6656
6657         pci_release_selected_regions(ha->pdev, ha->bars);
6658         pci_disable_pcie_error_reporting(pdev);
6659         pci_disable_device(pdev);
6660
6661         /*
6662          * Let qla2x00_remove_one cleanup qla_hw_data on device removal.
6663          */
6664 }
6665
6666 /**************************************************************************
6667 * qla2x00_do_dpc
6668 *   This kernel thread is a task that is schedule by the interrupt handler
6669 *   to perform the background processing for interrupts.
6670 *
6671 * Notes:
6672 * This task always run in the context of a kernel thread.  It
6673 * is kick-off by the driver's detect code and starts up
6674 * up one per adapter. It immediately goes to sleep and waits for
6675 * some fibre event.  When either the interrupt handler or
6676 * the timer routine detects a event it will one of the task
6677 * bits then wake us up.
6678 **************************************************************************/
6679 static int
6680 qla2x00_do_dpc(void *data)
6681 {
6682         scsi_qla_host_t *base_vha;
6683         struct qla_hw_data *ha;
6684         uint32_t online;
6685         struct qla_qpair *qpair;
6686
6687         ha = (struct qla_hw_data *)data;
6688         base_vha = pci_get_drvdata(ha->pdev);
6689
6690         set_user_nice(current, MIN_NICE);
6691
6692         set_current_state(TASK_INTERRUPTIBLE);
6693         while (!kthread_should_stop()) {
6694                 ql_dbg(ql_dbg_dpc, base_vha, 0x4000,
6695                     "DPC handler sleeping.\n");
6696
6697                 schedule();
6698
6699                 if (test_and_clear_bit(DO_EEH_RECOVERY, &base_vha->dpc_flags))
6700                         qla_pci_set_eeh_busy(base_vha);
6701
6702                 if (!base_vha->flags.init_done || ha->flags.mbox_busy)
6703                         goto end_loop;
6704
6705                 if (ha->flags.eeh_busy) {
6706                         ql_dbg(ql_dbg_dpc, base_vha, 0x4003,
6707                             "eeh_busy=%d.\n", ha->flags.eeh_busy);
6708                         goto end_loop;
6709                 }
6710
6711                 ha->dpc_active = 1;
6712
6713                 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001,
6714                     "DPC handler waking up, dpc_flags=0x%lx.\n",
6715                     base_vha->dpc_flags);
6716
6717                 if (test_bit(UNLOADING, &base_vha->dpc_flags))
6718                         break;
6719
6720                 if (IS_P3P_TYPE(ha)) {
6721                         if (IS_QLA8044(ha)) {
6722                                 if (test_and_clear_bit(ISP_UNRECOVERABLE,
6723                                         &base_vha->dpc_flags)) {
6724                                         qla8044_idc_lock(ha);
6725                                         qla8044_wr_direct(base_vha,
6726                                                 QLA8044_CRB_DEV_STATE_INDEX,
6727                                                 QLA8XXX_DEV_FAILED);
6728                                         qla8044_idc_unlock(ha);
6729                                         ql_log(ql_log_info, base_vha, 0x4004,
6730                                                 "HW State: FAILED.\n");
6731                                         qla8044_device_state_handler(base_vha);
6732                                         continue;
6733                                 }
6734
6735                         } else {
6736                                 if (test_and_clear_bit(ISP_UNRECOVERABLE,
6737                                         &base_vha->dpc_flags)) {
6738                                         qla82xx_idc_lock(ha);
6739                                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
6740                                                 QLA8XXX_DEV_FAILED);
6741                                         qla82xx_idc_unlock(ha);
6742                                         ql_log(ql_log_info, base_vha, 0x0151,
6743                                                 "HW State: FAILED.\n");
6744                                         qla82xx_device_state_handler(base_vha);
6745                                         continue;
6746                                 }
6747                         }
6748
6749                         if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
6750                                 &base_vha->dpc_flags)) {
6751
6752                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4005,
6753                                     "FCoE context reset scheduled.\n");
6754                                 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
6755                                         &base_vha->dpc_flags))) {
6756                                         if (qla82xx_fcoe_ctx_reset(base_vha)) {
6757                                                 /* FCoE-ctx reset failed.
6758                                                  * Escalate to chip-reset
6759                                                  */
6760                                                 set_bit(ISP_ABORT_NEEDED,
6761                                                         &base_vha->dpc_flags);
6762                                         }
6763                                         clear_bit(ABORT_ISP_ACTIVE,
6764                                                 &base_vha->dpc_flags);
6765                                 }
6766
6767                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4006,
6768                                     "FCoE context reset end.\n");
6769                         }
6770                 } else if (IS_QLAFX00(ha)) {
6771                         if (test_and_clear_bit(ISP_UNRECOVERABLE,
6772                                 &base_vha->dpc_flags)) {
6773                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4020,
6774                                     "Firmware Reset Recovery\n");
6775                                 if (qlafx00_reset_initialize(base_vha)) {
6776                                         /* Failed. Abort isp later. */
6777                                         if (!test_bit(UNLOADING,
6778                                             &base_vha->dpc_flags)) {
6779                                                 set_bit(ISP_UNRECOVERABLE,
6780                                                     &base_vha->dpc_flags);
6781                                                 ql_dbg(ql_dbg_dpc, base_vha,
6782                                                     0x4021,
6783                                                     "Reset Recovery Failed\n");
6784                                         }
6785                                 }
6786                         }
6787
6788                         if (test_and_clear_bit(FX00_TARGET_SCAN,
6789                                 &base_vha->dpc_flags)) {
6790                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4022,
6791                                     "ISPFx00 Target Scan scheduled\n");
6792                                 if (qlafx00_rescan_isp(base_vha)) {
6793                                         if (!test_bit(UNLOADING,
6794                                             &base_vha->dpc_flags))
6795                                                 set_bit(ISP_UNRECOVERABLE,
6796                                                     &base_vha->dpc_flags);
6797                                         ql_dbg(ql_dbg_dpc, base_vha, 0x401e,
6798                                             "ISPFx00 Target Scan Failed\n");
6799                                 }
6800                                 ql_dbg(ql_dbg_dpc, base_vha, 0x401f,
6801                                     "ISPFx00 Target Scan End\n");
6802                         }
6803                         if (test_and_clear_bit(FX00_HOST_INFO_RESEND,
6804                                 &base_vha->dpc_flags)) {
6805                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4023,
6806                                     "ISPFx00 Host Info resend scheduled\n");
6807                                 qlafx00_fx_disc(base_vha,
6808                                     &base_vha->hw->mr.fcport,
6809                                     FXDISC_REG_HOST_INFO);
6810                         }
6811                 }
6812
6813                 if (test_and_clear_bit(DETECT_SFP_CHANGE,
6814                     &base_vha->dpc_flags)) {
6815                         /* Semantic:
6816                          *  - NO-OP -- await next ISP-ABORT. Preferred method
6817                          *             to minimize disruptions that will occur
6818                          *             when a forced chip-reset occurs.
6819                          *  - Force -- ISP-ABORT scheduled.
6820                          */
6821                         /* set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); */
6822                 }
6823
6824                 if (test_and_clear_bit
6825                     (ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
6826                     !test_bit(UNLOADING, &base_vha->dpc_flags)) {
6827                         bool do_reset = true;
6828
6829                         switch (base_vha->qlini_mode) {
6830                         case QLA2XXX_INI_MODE_ENABLED:
6831                                 break;
6832                         case QLA2XXX_INI_MODE_DISABLED:
6833                                 if (!qla_tgt_mode_enabled(base_vha) &&
6834                                     !ha->flags.fw_started)
6835                                         do_reset = false;
6836                                 break;
6837                         case QLA2XXX_INI_MODE_DUAL:
6838                                 if (!qla_dual_mode_enabled(base_vha) &&
6839                                     !ha->flags.fw_started)
6840                                         do_reset = false;
6841                                 break;
6842                         default:
6843                                 break;
6844                         }
6845
6846                         if (do_reset && !(test_and_set_bit(ABORT_ISP_ACTIVE,
6847                             &base_vha->dpc_flags))) {
6848                                 base_vha->flags.online = 1;
6849                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4007,
6850                                     "ISP abort scheduled.\n");
6851                                 if (ha->isp_ops->abort_isp(base_vha)) {
6852                                         /* failed. retry later */
6853                                         set_bit(ISP_ABORT_NEEDED,
6854                                             &base_vha->dpc_flags);
6855                                 }
6856                                 clear_bit(ABORT_ISP_ACTIVE,
6857                                                 &base_vha->dpc_flags);
6858                                 ql_dbg(ql_dbg_dpc, base_vha, 0x4008,
6859                                     "ISP abort end.\n");
6860                         }
6861                 }
6862
6863                 if (test_bit(PROCESS_PUREX_IOCB, &base_vha->dpc_flags)) {
6864                         if (atomic_read(&base_vha->loop_state) == LOOP_READY) {
6865                                 qla24xx_process_purex_list
6866                                         (&base_vha->purex_list);
6867                                 clear_bit(PROCESS_PUREX_IOCB,
6868                                     &base_vha->dpc_flags);
6869                         }
6870                 }
6871
6872                 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED,
6873                     &base_vha->dpc_flags)) {
6874                         qla2x00_update_fcports(base_vha);
6875                 }
6876
6877                 if (IS_QLAFX00(ha))
6878                         goto loop_resync_check;
6879
6880                 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) {
6881                         ql_dbg(ql_dbg_dpc, base_vha, 0x4009,
6882                             "Quiescence mode scheduled.\n");
6883                         if (IS_P3P_TYPE(ha)) {
6884                                 if (IS_QLA82XX(ha))
6885                                         qla82xx_device_state_handler(base_vha);
6886                                 if (IS_QLA8044(ha))
6887                                         qla8044_device_state_handler(base_vha);
6888                                 clear_bit(ISP_QUIESCE_NEEDED,
6889                                     &base_vha->dpc_flags);
6890                                 if (!ha->flags.quiesce_owner) {
6891                                         qla2x00_perform_loop_resync(base_vha);
6892                                         if (IS_QLA82XX(ha)) {
6893                                                 qla82xx_idc_lock(ha);
6894                                                 qla82xx_clear_qsnt_ready(
6895                                                     base_vha);
6896                                                 qla82xx_idc_unlock(ha);
6897                                         } else if (IS_QLA8044(ha)) {
6898                                                 qla8044_idc_lock(ha);
6899                                                 qla8044_clear_qsnt_ready(
6900                                                     base_vha);
6901                                                 qla8044_idc_unlock(ha);
6902                                         }
6903                                 }
6904                         } else {
6905                                 clear_bit(ISP_QUIESCE_NEEDED,
6906                                     &base_vha->dpc_flags);
6907                                 qla2x00_quiesce_io(base_vha);
6908                         }
6909                         ql_dbg(ql_dbg_dpc, base_vha, 0x400a,
6910                             "Quiescence mode end.\n");
6911                 }
6912
6913                 if (test_and_clear_bit(RESET_MARKER_NEEDED,
6914                                 &base_vha->dpc_flags) &&
6915                     (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
6916
6917                         ql_dbg(ql_dbg_dpc, base_vha, 0x400b,
6918                             "Reset marker scheduled.\n");
6919                         qla2x00_rst_aen(base_vha);
6920                         clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
6921                         ql_dbg(ql_dbg_dpc, base_vha, 0x400c,
6922                             "Reset marker end.\n");
6923                 }
6924
6925                 /* Retry each device up to login retry count */
6926                 if (test_bit(RELOGIN_NEEDED, &base_vha->dpc_flags) &&
6927                     !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
6928                     atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
6929
6930                         if (!base_vha->relogin_jif ||
6931                             time_after_eq(jiffies, base_vha->relogin_jif)) {
6932                                 base_vha->relogin_jif = jiffies + HZ;
6933                                 clear_bit(RELOGIN_NEEDED, &base_vha->dpc_flags);
6934
6935                                 ql_dbg(ql_dbg_disc, base_vha, 0x400d,
6936                                     "Relogin scheduled.\n");
6937                                 qla24xx_post_relogin_work(base_vha);
6938                         }
6939                 }
6940 loop_resync_check:
6941                 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
6942                     &base_vha->dpc_flags)) {
6943
6944                         ql_dbg(ql_dbg_dpc, base_vha, 0x400f,
6945                             "Loop resync scheduled.\n");
6946
6947                         if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
6948                             &base_vha->dpc_flags))) {
6949
6950                                 qla2x00_loop_resync(base_vha);
6951
6952                                 clear_bit(LOOP_RESYNC_ACTIVE,
6953                                                 &base_vha->dpc_flags);
6954                         }
6955
6956                         ql_dbg(ql_dbg_dpc, base_vha, 0x4010,
6957                             "Loop resync end.\n");
6958                 }
6959
6960                 if (IS_QLAFX00(ha))
6961                         goto intr_on_check;
6962
6963                 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
6964                     atomic_read(&base_vha->loop_state) == LOOP_READY) {
6965                         clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
6966                         qla2xxx_flash_npiv_conf(base_vha);
6967                 }
6968
6969 intr_on_check:
6970                 if (!ha->interrupts_on)
6971                         ha->isp_ops->enable_intrs(ha);
6972
6973                 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
6974                                         &base_vha->dpc_flags)) {
6975                         if (ha->beacon_blink_led == 1)
6976                                 ha->isp_ops->beacon_blink(base_vha);
6977                 }
6978
6979                 /* qpair online check */
6980                 if (test_and_clear_bit(QPAIR_ONLINE_CHECK_NEEDED,
6981                     &base_vha->dpc_flags)) {
6982                         if (ha->flags.eeh_busy ||
6983                             ha->flags.pci_channel_io_perm_failure)
6984                                 online = 0;
6985                         else
6986                                 online = 1;
6987
6988                         mutex_lock(&ha->mq_lock);
6989                         list_for_each_entry(qpair, &base_vha->qp_list,
6990                             qp_list_elem)
6991                         qpair->online = online;
6992                         mutex_unlock(&ha->mq_lock);
6993                 }
6994
6995                 if (test_and_clear_bit(SET_ZIO_THRESHOLD_NEEDED,
6996                                        &base_vha->dpc_flags)) {
6997                         u16 threshold = ha->nvme_last_rptd_aen + ha->last_zio_threshold;
6998
6999                         if (threshold > ha->orig_fw_xcb_count)
7000                                 threshold = ha->orig_fw_xcb_count;
7001
7002                         ql_log(ql_log_info, base_vha, 0xffffff,
7003                                "SET ZIO Activity exchange threshold to %d.\n",
7004                                threshold);
7005                         if (qla27xx_set_zio_threshold(base_vha, threshold)) {
7006                                 ql_log(ql_log_info, base_vha, 0xffffff,
7007                                        "Unable to SET ZIO Activity exchange threshold to %d.\n",
7008                                        threshold);
7009                         }
7010                 }
7011
7012                 if (!IS_QLAFX00(ha))
7013                         qla2x00_do_dpc_all_vps(base_vha);
7014
7015                 if (test_and_clear_bit(N2N_LINK_RESET,
7016                         &base_vha->dpc_flags)) {
7017                         qla2x00_lip_reset(base_vha);
7018                 }
7019
7020                 if (test_bit(HEARTBEAT_CHK, &base_vha->dpc_flags)) {
7021                         /*
7022                          * if there is a mb in progress then that's
7023                          * enough of a check to see if fw is still ticking.
7024                          */
7025                         if (!ha->flags.mbox_busy && base_vha->flags.init_done)
7026                                 qla_no_op_mb(base_vha);
7027
7028                         clear_bit(HEARTBEAT_CHK, &base_vha->dpc_flags);
7029                 }
7030
7031                 ha->dpc_active = 0;
7032 end_loop:
7033                 set_current_state(TASK_INTERRUPTIBLE);
7034         } /* End of while(1) */
7035         __set_current_state(TASK_RUNNING);
7036
7037         ql_dbg(ql_dbg_dpc, base_vha, 0x4011,
7038             "DPC handler exiting.\n");
7039
7040         /*
7041          * Make sure that nobody tries to wake us up again.
7042          */
7043         ha->dpc_active = 0;
7044
7045         /* Cleanup any residual CTX SRBs. */
7046         qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
7047
7048         return 0;
7049 }
7050
7051 void
7052 qla2xxx_wake_dpc(struct scsi_qla_host *vha)
7053 {
7054         struct qla_hw_data *ha = vha->hw;
7055         struct task_struct *t = ha->dpc_thread;
7056
7057         if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
7058                 wake_up_process(t);
7059 }
7060
7061 /*
7062 *  qla2x00_rst_aen
7063 *      Processes asynchronous reset.
7064 *
7065 * Input:
7066 *      ha  = adapter block pointer.
7067 */
7068 static void
7069 qla2x00_rst_aen(scsi_qla_host_t *vha)
7070 {
7071         if (vha->flags.online && !vha->flags.reset_active &&
7072             !atomic_read(&vha->loop_down_timer) &&
7073             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
7074                 do {
7075                         clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
7076
7077                         /*
7078                          * Issue marker command only when we are going to start
7079                          * the I/O.
7080                          */
7081                         vha->marker_needed = 1;
7082                 } while (!atomic_read(&vha->loop_down_timer) &&
7083                     (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
7084         }
7085 }
7086
7087 static bool qla_do_heartbeat(struct scsi_qla_host *vha)
7088 {
7089         u64 cmd_cnt, prev_cmd_cnt;
7090         bool do_hb = false;
7091         struct qla_hw_data *ha = vha->hw;
7092         int i;
7093
7094         /* if cmds are still pending down in fw, then do hb */
7095         if (ha->base_qpair->cmd_cnt != ha->base_qpair->cmd_completion_cnt) {
7096                 do_hb = true;
7097                 goto skip;
7098         }
7099
7100         for (i = 0; i < ha->max_qpairs; i++) {
7101                 if (ha->queue_pair_map[i] &&
7102                     ha->queue_pair_map[i]->cmd_cnt !=
7103                     ha->queue_pair_map[i]->cmd_completion_cnt) {
7104                         do_hb = true;
7105                         break;
7106                 }
7107         }
7108
7109 skip:
7110         prev_cmd_cnt = ha->prev_cmd_cnt;
7111         cmd_cnt = ha->base_qpair->cmd_cnt;
7112         for (i = 0; i < ha->max_qpairs; i++) {
7113                 if (ha->queue_pair_map[i])
7114                         cmd_cnt += ha->queue_pair_map[i]->cmd_cnt;
7115         }
7116         ha->prev_cmd_cnt = cmd_cnt;
7117
7118         if (!do_hb && ((cmd_cnt - prev_cmd_cnt) > 50))
7119                 /*
7120                  * IOs are completing before periodic hb check.
7121                  * IOs seems to be running, do hb for sanity check.
7122                  */
7123                 do_hb = true;
7124
7125         return do_hb;
7126 }
7127
7128 static void qla_heart_beat(struct scsi_qla_host *vha)
7129 {
7130         if (vha->vp_idx)
7131                 return;
7132
7133         if (vha->hw->flags.eeh_busy || qla2x00_chip_is_down(vha))
7134                 return;
7135
7136         if (qla_do_heartbeat(vha)) {
7137                 set_bit(HEARTBEAT_CHK, &vha->dpc_flags);
7138                 qla2xxx_wake_dpc(vha);
7139         }
7140 }
7141
7142 /**************************************************************************
7143 *   qla2x00_timer
7144 *
7145 * Description:
7146 *   One second timer
7147 *
7148 * Context: Interrupt
7149 ***************************************************************************/
7150 void
7151 qla2x00_timer(struct timer_list *t)
7152 {
7153         scsi_qla_host_t *vha = from_timer(vha, t, timer);
7154         unsigned long   cpu_flags = 0;
7155         int             start_dpc = 0;
7156         int             index;
7157         srb_t           *sp;
7158         uint16_t        w;
7159         struct qla_hw_data *ha = vha->hw;
7160         struct req_que *req;
7161         unsigned long flags;
7162         fc_port_t *fcport = NULL;
7163
7164         if (ha->flags.eeh_busy) {
7165                 ql_dbg(ql_dbg_timer, vha, 0x6000,
7166                     "EEH = %d, restarting timer.\n",
7167                     ha->flags.eeh_busy);
7168                 qla2x00_restart_timer(vha, WATCH_INTERVAL);
7169                 return;
7170         }
7171
7172         /*
7173          * Hardware read to raise pending EEH errors during mailbox waits. If
7174          * the read returns -1 then disable the board.
7175          */
7176         if (!pci_channel_offline(ha->pdev)) {
7177                 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
7178                 qla2x00_check_reg16_for_disconnect(vha, w);
7179         }
7180
7181         /* Make sure qla82xx_watchdog is run only for physical port */
7182         if (!vha->vp_idx && IS_P3P_TYPE(ha)) {
7183                 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags))
7184                         start_dpc++;
7185                 if (IS_QLA82XX(ha))
7186                         qla82xx_watchdog(vha);
7187                 else if (IS_QLA8044(ha))
7188                         qla8044_watchdog(vha);
7189         }
7190
7191         if (!vha->vp_idx && IS_QLAFX00(ha))
7192                 qlafx00_timer_routine(vha);
7193
7194         if (vha->link_down_time < QLA2XX_MAX_LINK_DOWN_TIME)
7195                 vha->link_down_time++;
7196
7197         spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
7198         list_for_each_entry(fcport, &vha->vp_fcports, list) {
7199                 if (fcport->tgt_link_down_time < QLA2XX_MAX_LINK_DOWN_TIME)
7200                         fcport->tgt_link_down_time++;
7201         }
7202         spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
7203
7204         /* Loop down handler. */
7205         if (atomic_read(&vha->loop_down_timer) > 0 &&
7206             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) &&
7207             !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags))
7208                 && vha->flags.online) {
7209
7210                 if (atomic_read(&vha->loop_down_timer) ==
7211                     vha->loop_down_abort_time) {
7212
7213                         ql_log(ql_log_info, vha, 0x6008,
7214                             "Loop down - aborting the queues before time expires.\n");
7215
7216                         if (!IS_QLA2100(ha) && vha->link_down_timeout)
7217                                 atomic_set(&vha->loop_state, LOOP_DEAD);
7218
7219                         /*
7220                          * Schedule an ISP abort to return any FCP2-device
7221                          * commands.
7222                          */
7223                         /* NPIV - scan physical port only */
7224                         if (!vha->vp_idx) {
7225                                 spin_lock_irqsave(&ha->hardware_lock,
7226                                     cpu_flags);
7227                                 req = ha->req_q_map[0];
7228                                 for (index = 1;
7229                                     index < req->num_outstanding_cmds;
7230                                     index++) {
7231                                         fc_port_t *sfcp;
7232
7233                                         sp = req->outstanding_cmds[index];
7234                                         if (!sp)
7235                                                 continue;
7236                                         if (sp->cmd_type != TYPE_SRB)
7237                                                 continue;
7238                                         if (sp->type != SRB_SCSI_CMD)
7239                                                 continue;
7240                                         sfcp = sp->fcport;
7241                                         if (!(sfcp->flags & FCF_FCP2_DEVICE))
7242                                                 continue;
7243
7244                                         if (IS_QLA82XX(ha))
7245                                                 set_bit(FCOE_CTX_RESET_NEEDED,
7246                                                         &vha->dpc_flags);
7247                                         else
7248                                                 set_bit(ISP_ABORT_NEEDED,
7249                                                         &vha->dpc_flags);
7250                                         break;
7251                                 }
7252                                 spin_unlock_irqrestore(&ha->hardware_lock,
7253                                                                 cpu_flags);
7254                         }
7255                         start_dpc++;
7256                 }
7257
7258                 /* if the loop has been down for 4 minutes, reinit adapter */
7259                 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
7260                         if (!(vha->device_flags & DFLG_NO_CABLE)) {
7261                                 ql_log(ql_log_warn, vha, 0x6009,
7262                                     "Loop down - aborting ISP.\n");
7263
7264                                 if (IS_QLA82XX(ha))
7265                                         set_bit(FCOE_CTX_RESET_NEEDED,
7266                                                 &vha->dpc_flags);
7267                                 else
7268                                         set_bit(ISP_ABORT_NEEDED,
7269                                                 &vha->dpc_flags);
7270                         }
7271                 }
7272                 ql_dbg(ql_dbg_timer, vha, 0x600a,
7273                     "Loop down - seconds remaining %d.\n",
7274                     atomic_read(&vha->loop_down_timer));
7275         }
7276         /* Check if beacon LED needs to be blinked for physical host only */
7277         if (!vha->vp_idx && (ha->beacon_blink_led == 1)) {
7278                 /* There is no beacon_blink function for ISP82xx */
7279                 if (!IS_P3P_TYPE(ha)) {
7280                         set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
7281                         start_dpc++;
7282                 }
7283         }
7284
7285         /* Process any deferred work. */
7286         if (!list_empty(&vha->work_list)) {
7287                 unsigned long flags;
7288                 bool q = false;
7289
7290                 spin_lock_irqsave(&vha->work_lock, flags);
7291                 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
7292                         q = true;
7293                 spin_unlock_irqrestore(&vha->work_lock, flags);
7294                 if (q)
7295                         queue_work(vha->hw->wq, &vha->iocb_work);
7296         }
7297
7298         /*
7299          * FC-NVME
7300          * see if the active AEN count has changed from what was last reported.
7301          */
7302         index = atomic_read(&ha->nvme_active_aen_cnt);
7303         if (!vha->vp_idx &&
7304             (index != ha->nvme_last_rptd_aen) &&
7305             ha->zio_mode == QLA_ZIO_MODE_6 &&
7306             !ha->flags.host_shutting_down) {
7307                 ha->nvme_last_rptd_aen = atomic_read(&ha->nvme_active_aen_cnt);
7308                 ql_log(ql_log_info, vha, 0x3002,
7309                     "nvme: Sched: Set ZIO exchange threshold to %d.\n",
7310                     ha->nvme_last_rptd_aen);
7311                 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags);
7312                 start_dpc++;
7313         }
7314
7315         if (!vha->vp_idx &&
7316             atomic_read(&ha->zio_threshold) != ha->last_zio_threshold &&
7317             IS_ZIO_THRESHOLD_CAPABLE(ha)) {
7318                 ql_log(ql_log_info, vha, 0x3002,
7319                     "Sched: Set ZIO exchange threshold to %d.\n",
7320                     ha->last_zio_threshold);
7321                 ha->last_zio_threshold = atomic_read(&ha->zio_threshold);
7322                 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags);
7323                 start_dpc++;
7324         }
7325
7326         /* Schedule the DPC routine if needed */
7327         if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
7328             test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
7329             test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
7330             start_dpc ||
7331             test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
7332             test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
7333             test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
7334             test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
7335             test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
7336             test_bit(RELOGIN_NEEDED, &vha->dpc_flags) ||
7337             test_bit(PROCESS_PUREX_IOCB, &vha->dpc_flags))) {
7338                 ql_dbg(ql_dbg_timer, vha, 0x600b,
7339                     "isp_abort_needed=%d loop_resync_needed=%d "
7340                     "fcport_update_needed=%d start_dpc=%d "
7341                     "reset_marker_needed=%d",
7342                     test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags),
7343                     test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags),
7344                     test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags),
7345                     start_dpc,
7346                     test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags));
7347                 ql_dbg(ql_dbg_timer, vha, 0x600c,
7348                     "beacon_blink_needed=%d isp_unrecoverable=%d "
7349                     "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d "
7350                     "relogin_needed=%d, Process_purex_iocb=%d.\n",
7351                     test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags),
7352                     test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags),
7353                     test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags),
7354                     test_bit(VP_DPC_NEEDED, &vha->dpc_flags),
7355                     test_bit(RELOGIN_NEEDED, &vha->dpc_flags),
7356                     test_bit(PROCESS_PUREX_IOCB, &vha->dpc_flags));
7357                 qla2xxx_wake_dpc(vha);
7358         }
7359
7360         qla_heart_beat(vha);
7361
7362         qla2x00_restart_timer(vha, WATCH_INTERVAL);
7363 }
7364
7365 /* Firmware interface routines. */
7366
7367 #define FW_ISP21XX      0
7368 #define FW_ISP22XX      1
7369 #define FW_ISP2300      2
7370 #define FW_ISP2322      3
7371 #define FW_ISP24XX      4
7372 #define FW_ISP25XX      5
7373 #define FW_ISP81XX      6
7374 #define FW_ISP82XX      7
7375 #define FW_ISP2031      8
7376 #define FW_ISP8031      9
7377 #define FW_ISP27XX      10
7378 #define FW_ISP28XX      11
7379
7380 #define FW_FILE_ISP21XX "ql2100_fw.bin"
7381 #define FW_FILE_ISP22XX "ql2200_fw.bin"
7382 #define FW_FILE_ISP2300 "ql2300_fw.bin"
7383 #define FW_FILE_ISP2322 "ql2322_fw.bin"
7384 #define FW_FILE_ISP24XX "ql2400_fw.bin"
7385 #define FW_FILE_ISP25XX "ql2500_fw.bin"
7386 #define FW_FILE_ISP81XX "ql8100_fw.bin"
7387 #define FW_FILE_ISP82XX "ql8200_fw.bin"
7388 #define FW_FILE_ISP2031 "ql2600_fw.bin"
7389 #define FW_FILE_ISP8031 "ql8300_fw.bin"
7390 #define FW_FILE_ISP27XX "ql2700_fw.bin"
7391 #define FW_FILE_ISP28XX "ql2800_fw.bin"
7392
7393
7394 static DEFINE_MUTEX(qla_fw_lock);
7395
7396 static struct fw_blob qla_fw_blobs[] = {
7397         { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
7398         { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
7399         { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
7400         { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
7401         { .name = FW_FILE_ISP24XX, },
7402         { .name = FW_FILE_ISP25XX, },
7403         { .name = FW_FILE_ISP81XX, },
7404         { .name = FW_FILE_ISP82XX, },
7405         { .name = FW_FILE_ISP2031, },
7406         { .name = FW_FILE_ISP8031, },
7407         { .name = FW_FILE_ISP27XX, },
7408         { .name = FW_FILE_ISP28XX, },
7409         { .name = NULL, },
7410 };
7411
7412 struct fw_blob *
7413 qla2x00_request_firmware(scsi_qla_host_t *vha)
7414 {
7415         struct qla_hw_data *ha = vha->hw;
7416         struct fw_blob *blob;
7417
7418         if (IS_QLA2100(ha)) {
7419                 blob = &qla_fw_blobs[FW_ISP21XX];
7420         } else if (IS_QLA2200(ha)) {
7421                 blob = &qla_fw_blobs[FW_ISP22XX];
7422         } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
7423                 blob = &qla_fw_blobs[FW_ISP2300];
7424         } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
7425                 blob = &qla_fw_blobs[FW_ISP2322];
7426         } else if (IS_QLA24XX_TYPE(ha)) {
7427                 blob = &qla_fw_blobs[FW_ISP24XX];
7428         } else if (IS_QLA25XX(ha)) {
7429                 blob = &qla_fw_blobs[FW_ISP25XX];
7430         } else if (IS_QLA81XX(ha)) {
7431                 blob = &qla_fw_blobs[FW_ISP81XX];
7432         } else if (IS_QLA82XX(ha)) {
7433                 blob = &qla_fw_blobs[FW_ISP82XX];
7434         } else if (IS_QLA2031(ha)) {
7435                 blob = &qla_fw_blobs[FW_ISP2031];
7436         } else if (IS_QLA8031(ha)) {
7437                 blob = &qla_fw_blobs[FW_ISP8031];
7438         } else if (IS_QLA27XX(ha)) {
7439                 blob = &qla_fw_blobs[FW_ISP27XX];
7440         } else if (IS_QLA28XX(ha)) {
7441                 blob = &qla_fw_blobs[FW_ISP28XX];
7442         } else {
7443                 return NULL;
7444         }
7445
7446         if (!blob->name)
7447                 return NULL;
7448
7449         mutex_lock(&qla_fw_lock);
7450         if (blob->fw)
7451                 goto out;
7452
7453         if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
7454                 ql_log(ql_log_warn, vha, 0x0063,
7455                     "Failed to load firmware image (%s).\n", blob->name);
7456                 blob->fw = NULL;
7457                 blob = NULL;
7458         }
7459
7460 out:
7461         mutex_unlock(&qla_fw_lock);
7462         return blob;
7463 }
7464
7465 static void
7466 qla2x00_release_firmware(void)
7467 {
7468         struct fw_blob *blob;
7469
7470         mutex_lock(&qla_fw_lock);
7471         for (blob = qla_fw_blobs; blob->name; blob++)
7472                 release_firmware(blob->fw);
7473         mutex_unlock(&qla_fw_lock);
7474 }
7475
7476 static void qla_pci_error_cleanup(scsi_qla_host_t *vha)
7477 {
7478         struct qla_hw_data *ha = vha->hw;
7479         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
7480         struct qla_qpair *qpair = NULL;
7481         struct scsi_qla_host *vp;
7482         fc_port_t *fcport;
7483         int i;
7484         unsigned long flags;
7485
7486         ql_dbg(ql_dbg_aer, vha, 0x9000,
7487                "%s\n", __func__);
7488         ha->chip_reset++;
7489
7490         ha->base_qpair->chip_reset = ha->chip_reset;
7491         for (i = 0; i < ha->max_qpairs; i++) {
7492                 if (ha->queue_pair_map[i])
7493                         ha->queue_pair_map[i]->chip_reset =
7494                             ha->base_qpair->chip_reset;
7495         }
7496
7497         /*
7498          * purge mailbox might take a while. Slot Reset/chip reset
7499          * will take care of the purge
7500          */
7501
7502         mutex_lock(&ha->mq_lock);
7503         ha->base_qpair->online = 0;
7504         list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7505                 qpair->online = 0;
7506         wmb();
7507         mutex_unlock(&ha->mq_lock);
7508
7509         qla2x00_mark_all_devices_lost(vha);
7510
7511         spin_lock_irqsave(&ha->vport_slock, flags);
7512         list_for_each_entry(vp, &ha->vp_list, list) {
7513                 atomic_inc(&vp->vref_count);
7514                 spin_unlock_irqrestore(&ha->vport_slock, flags);
7515                 qla2x00_mark_all_devices_lost(vp);
7516                 spin_lock_irqsave(&ha->vport_slock, flags);
7517                 atomic_dec(&vp->vref_count);
7518         }
7519         spin_unlock_irqrestore(&ha->vport_slock, flags);
7520
7521         /* Clear all async request states across all VPs. */
7522         list_for_each_entry(fcport, &vha->vp_fcports, list)
7523                 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
7524
7525         spin_lock_irqsave(&ha->vport_slock, flags);
7526         list_for_each_entry(vp, &ha->vp_list, list) {
7527                 atomic_inc(&vp->vref_count);
7528                 spin_unlock_irqrestore(&ha->vport_slock, flags);
7529                 list_for_each_entry(fcport, &vp->vp_fcports, list)
7530                         fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
7531                 spin_lock_irqsave(&ha->vport_slock, flags);
7532                 atomic_dec(&vp->vref_count);
7533         }
7534         spin_unlock_irqrestore(&ha->vport_slock, flags);
7535 }
7536
7537
7538 static pci_ers_result_t
7539 qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
7540 {
7541         scsi_qla_host_t *vha = pci_get_drvdata(pdev);
7542         struct qla_hw_data *ha = vha->hw;
7543         pci_ers_result_t ret = PCI_ERS_RESULT_NEED_RESET;
7544
7545         ql_log(ql_log_warn, vha, 0x9000,
7546                "PCI error detected, state %x.\n", state);
7547         ha->pci_error_state = QLA_PCI_ERR_DETECTED;
7548
7549         if (!atomic_read(&pdev->enable_cnt)) {
7550                 ql_log(ql_log_info, vha, 0xffff,
7551                         "PCI device is disabled,state %x\n", state);
7552                 ret = PCI_ERS_RESULT_NEED_RESET;
7553                 goto out;
7554         }
7555
7556         switch (state) {
7557         case pci_channel_io_normal:
7558                 ha->flags.eeh_busy = 0;
7559                 if (ql2xmqsupport || ql2xnvmeenable) {
7560                         set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
7561                         qla2xxx_wake_dpc(vha);
7562                 }
7563                 ret = PCI_ERS_RESULT_CAN_RECOVER;
7564                 break;
7565         case pci_channel_io_frozen:
7566                 qla_pci_set_eeh_busy(vha);
7567                 ret = PCI_ERS_RESULT_NEED_RESET;
7568                 break;
7569         case pci_channel_io_perm_failure:
7570                 ha->flags.pci_channel_io_perm_failure = 1;
7571                 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
7572                 if (ql2xmqsupport || ql2xnvmeenable) {
7573                         set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
7574                         qla2xxx_wake_dpc(vha);
7575                 }
7576                 ret = PCI_ERS_RESULT_DISCONNECT;
7577         }
7578 out:
7579         ql_dbg(ql_dbg_aer, vha, 0x600d,
7580                "PCI error detected returning [%x].\n", ret);
7581         return ret;
7582 }
7583
7584 static pci_ers_result_t
7585 qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
7586 {
7587         int risc_paused = 0;
7588         uint32_t stat;
7589         unsigned long flags;
7590         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7591         struct qla_hw_data *ha = base_vha->hw;
7592         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
7593         struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
7594
7595         ql_log(ql_log_warn, base_vha, 0x9000,
7596                "mmio enabled\n");
7597
7598         ha->pci_error_state = QLA_PCI_MMIO_ENABLED;
7599         if (IS_QLA82XX(ha))
7600                 return PCI_ERS_RESULT_RECOVERED;
7601
7602         spin_lock_irqsave(&ha->hardware_lock, flags);
7603         if (IS_QLA2100(ha) || IS_QLA2200(ha)){
7604                 stat = rd_reg_word(&reg->hccr);
7605                 if (stat & HCCR_RISC_PAUSE)
7606                         risc_paused = 1;
7607         } else if (IS_QLA23XX(ha)) {
7608                 stat = rd_reg_dword(&reg->u.isp2300.host_status);
7609                 if (stat & HSR_RISC_PAUSED)
7610                         risc_paused = 1;
7611         } else if (IS_FWI2_CAPABLE(ha)) {
7612                 stat = rd_reg_dword(&reg24->host_status);
7613                 if (stat & HSRX_RISC_PAUSED)
7614                         risc_paused = 1;
7615         }
7616         spin_unlock_irqrestore(&ha->hardware_lock, flags);
7617
7618         if (risc_paused) {
7619                 ql_log(ql_log_info, base_vha, 0x9003,
7620                     "RISC paused -- mmio_enabled, Dumping firmware.\n");
7621                 qla2xxx_dump_fw(base_vha);
7622         }
7623         /* set PCI_ERS_RESULT_NEED_RESET to trigger call to qla2xxx_pci_slot_reset */
7624         ql_dbg(ql_dbg_aer, base_vha, 0x600d,
7625                "mmio enabled returning.\n");
7626         return PCI_ERS_RESULT_NEED_RESET;
7627 }
7628
7629 static pci_ers_result_t
7630 qla2xxx_pci_slot_reset(struct pci_dev *pdev)
7631 {
7632         pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
7633         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7634         struct qla_hw_data *ha = base_vha->hw;
7635         int rc;
7636         struct qla_qpair *qpair = NULL;
7637
7638         ql_log(ql_log_warn, base_vha, 0x9004,
7639                "Slot Reset.\n");
7640
7641         ha->pci_error_state = QLA_PCI_SLOT_RESET;
7642         /* Workaround: qla2xxx driver which access hardware earlier
7643          * needs error state to be pci_channel_io_online.
7644          * Otherwise mailbox command timesout.
7645          */
7646         pdev->error_state = pci_channel_io_normal;
7647
7648         pci_restore_state(pdev);
7649
7650         /* pci_restore_state() clears the saved_state flag of the device
7651          * save restored state which resets saved_state flag
7652          */
7653         pci_save_state(pdev);
7654
7655         if (ha->mem_only)
7656                 rc = pci_enable_device_mem(pdev);
7657         else
7658                 rc = pci_enable_device(pdev);
7659
7660         if (rc) {
7661                 ql_log(ql_log_warn, base_vha, 0x9005,
7662                     "Can't re-enable PCI device after reset.\n");
7663                 goto exit_slot_reset;
7664         }
7665
7666
7667         if (ha->isp_ops->pci_config(base_vha))
7668                 goto exit_slot_reset;
7669
7670         mutex_lock(&ha->mq_lock);
7671         list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7672                 qpair->online = 1;
7673         mutex_unlock(&ha->mq_lock);
7674
7675         ha->flags.eeh_busy = 0;
7676         base_vha->flags.online = 1;
7677         set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7678         ha->isp_ops->abort_isp(base_vha);
7679         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7680
7681         if (qla2x00_isp_reg_stat(ha)) {
7682                 ha->flags.eeh_busy = 1;
7683                 qla_pci_error_cleanup(base_vha);
7684                 ql_log(ql_log_warn, base_vha, 0x9005,
7685                        "Device unable to recover from PCI error.\n");
7686         } else {
7687                 ret =  PCI_ERS_RESULT_RECOVERED;
7688         }
7689
7690 exit_slot_reset:
7691         ql_dbg(ql_dbg_aer, base_vha, 0x900e,
7692             "Slot Reset returning %x.\n", ret);
7693
7694         return ret;
7695 }
7696
7697 static void
7698 qla2xxx_pci_resume(struct pci_dev *pdev)
7699 {
7700         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7701         struct qla_hw_data *ha = base_vha->hw;
7702         int ret;
7703
7704         ql_log(ql_log_warn, base_vha, 0x900f,
7705                "Pci Resume.\n");
7706
7707
7708         ret = qla2x00_wait_for_hba_online(base_vha);
7709         if (ret != QLA_SUCCESS) {
7710                 ql_log(ql_log_fatal, base_vha, 0x9002,
7711                     "The device failed to resume I/O from slot/link_reset.\n");
7712         }
7713         ha->pci_error_state = QLA_PCI_RESUME;
7714         ql_dbg(ql_dbg_aer, base_vha, 0x600d,
7715                "Pci Resume returning.\n");
7716 }
7717
7718 void qla_pci_set_eeh_busy(struct scsi_qla_host *vha)
7719 {
7720         struct qla_hw_data *ha = vha->hw;
7721         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
7722         bool do_cleanup = false;
7723         unsigned long flags;
7724
7725         if (ha->flags.eeh_busy)
7726                 return;
7727
7728         spin_lock_irqsave(&base_vha->work_lock, flags);
7729         if (!ha->flags.eeh_busy) {
7730                 ha->flags.eeh_busy = 1;
7731                 do_cleanup = true;
7732         }
7733         spin_unlock_irqrestore(&base_vha->work_lock, flags);
7734
7735         if (do_cleanup)
7736                 qla_pci_error_cleanup(base_vha);
7737 }
7738
7739 /*
7740  * this routine will schedule a task to pause IO from interrupt context
7741  * if caller sees a PCIE error event (register read = 0xf's)
7742  */
7743 void qla_schedule_eeh_work(struct scsi_qla_host *vha)
7744 {
7745         struct qla_hw_data *ha = vha->hw;
7746         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
7747
7748         if (ha->flags.eeh_busy)
7749                 return;
7750
7751         set_bit(DO_EEH_RECOVERY, &base_vha->dpc_flags);
7752         qla2xxx_wake_dpc(base_vha);
7753 }
7754
7755 static void
7756 qla_pci_reset_prepare(struct pci_dev *pdev)
7757 {
7758         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7759         struct qla_hw_data *ha = base_vha->hw;
7760         struct qla_qpair *qpair;
7761
7762         ql_log(ql_log_warn, base_vha, 0xffff,
7763             "%s.\n", __func__);
7764
7765         /*
7766          * PCI FLR/function reset is about to reset the
7767          * slot. Stop the chip to stop all DMA access.
7768          * It is assumed that pci_reset_done will be called
7769          * after FLR to resume Chip operation.
7770          */
7771         ha->flags.eeh_busy = 1;
7772         mutex_lock(&ha->mq_lock);
7773         list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7774                 qpair->online = 0;
7775         mutex_unlock(&ha->mq_lock);
7776
7777         set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7778         qla2x00_abort_isp_cleanup(base_vha);
7779         qla2x00_abort_all_cmds(base_vha, DID_RESET << 16);
7780 }
7781
7782 static void
7783 qla_pci_reset_done(struct pci_dev *pdev)
7784 {
7785         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7786         struct qla_hw_data *ha = base_vha->hw;
7787         struct qla_qpair *qpair;
7788
7789         ql_log(ql_log_warn, base_vha, 0xffff,
7790             "%s.\n", __func__);
7791
7792         /*
7793          * FLR just completed by PCI layer. Resume adapter
7794          */
7795         ha->flags.eeh_busy = 0;
7796         mutex_lock(&ha->mq_lock);
7797         list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7798                 qpair->online = 1;
7799         mutex_unlock(&ha->mq_lock);
7800
7801         base_vha->flags.online = 1;
7802         ha->isp_ops->abort_isp(base_vha);
7803         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7804 }
7805
7806 static int qla2xxx_map_queues(struct Scsi_Host *shost)
7807 {
7808         int rc;
7809         scsi_qla_host_t *vha = (scsi_qla_host_t *)shost->hostdata;
7810         struct blk_mq_queue_map *qmap = &shost->tag_set.map[HCTX_TYPE_DEFAULT];
7811
7812         if (USER_CTRL_IRQ(vha->hw) || !vha->hw->mqiobase)
7813                 rc = blk_mq_map_queues(qmap);
7814         else
7815                 rc = blk_mq_pci_map_queues(qmap, vha->hw->pdev, vha->irq_offset);
7816         return rc;
7817 }
7818
7819 struct scsi_host_template qla2xxx_driver_template = {
7820         .module                 = THIS_MODULE,
7821         .name                   = QLA2XXX_DRIVER_NAME,
7822         .queuecommand           = qla2xxx_queuecommand,
7823
7824         .eh_timed_out           = fc_eh_timed_out,
7825         .eh_abort_handler       = qla2xxx_eh_abort,
7826         .eh_should_retry_cmd    = fc_eh_should_retry_cmd,
7827         .eh_device_reset_handler = qla2xxx_eh_device_reset,
7828         .eh_target_reset_handler = qla2xxx_eh_target_reset,
7829         .eh_bus_reset_handler   = qla2xxx_eh_bus_reset,
7830         .eh_host_reset_handler  = qla2xxx_eh_host_reset,
7831
7832         .slave_configure        = qla2xxx_slave_configure,
7833
7834         .slave_alloc            = qla2xxx_slave_alloc,
7835         .slave_destroy          = qla2xxx_slave_destroy,
7836         .scan_finished          = qla2xxx_scan_finished,
7837         .scan_start             = qla2xxx_scan_start,
7838         .change_queue_depth     = scsi_change_queue_depth,
7839         .map_queues             = qla2xxx_map_queues,
7840         .this_id                = -1,
7841         .cmd_per_lun            = 3,
7842         .sg_tablesize           = SG_ALL,
7843
7844         .max_sectors            = 0xFFFF,
7845         .shost_attrs            = qla2x00_host_attrs,
7846
7847         .supported_mode         = MODE_INITIATOR,
7848         .track_queue_depth      = 1,
7849         .cmd_size               = sizeof(srb_t),
7850 };
7851
7852 static const struct pci_error_handlers qla2xxx_err_handler = {
7853         .error_detected = qla2xxx_pci_error_detected,
7854         .mmio_enabled = qla2xxx_pci_mmio_enabled,
7855         .slot_reset = qla2xxx_pci_slot_reset,
7856         .resume = qla2xxx_pci_resume,
7857         .reset_prepare = qla_pci_reset_prepare,
7858         .reset_done = qla_pci_reset_done,
7859 };
7860
7861 static struct pci_device_id qla2xxx_pci_tbl[] = {
7862         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
7863         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
7864         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
7865         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
7866         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
7867         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
7868         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
7869         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
7870         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
7871         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
7872         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
7873         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
7874         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
7875         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) },
7876         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
7877         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
7878         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) },
7879         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) },
7880         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) },
7881         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) },
7882         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) },
7883         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2261) },
7884         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2061) },
7885         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2081) },
7886         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2281) },
7887         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2089) },
7888         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2289) },
7889         { 0 },
7890 };
7891 MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
7892
7893 static struct pci_driver qla2xxx_pci_driver = {
7894         .name           = QLA2XXX_DRIVER_NAME,
7895         .driver         = {
7896                 .owner          = THIS_MODULE,
7897         },
7898         .id_table       = qla2xxx_pci_tbl,
7899         .probe          = qla2x00_probe_one,
7900         .remove         = qla2x00_remove_one,
7901         .shutdown       = qla2x00_shutdown,
7902         .err_handler    = &qla2xxx_err_handler,
7903 };
7904
7905 static const struct file_operations apidev_fops = {
7906         .owner = THIS_MODULE,
7907         .llseek = noop_llseek,
7908 };
7909
7910 /**
7911  * qla2x00_module_init - Module initialization.
7912  **/
7913 static int __init
7914 qla2x00_module_init(void)
7915 {
7916         int ret = 0;
7917
7918         BUILD_BUG_ON(sizeof(cmd_a64_entry_t) != 64);
7919         BUILD_BUG_ON(sizeof(cmd_entry_t) != 64);
7920         BUILD_BUG_ON(sizeof(cont_a64_entry_t) != 64);
7921         BUILD_BUG_ON(sizeof(cont_entry_t) != 64);
7922         BUILD_BUG_ON(sizeof(init_cb_t) != 96);
7923         BUILD_BUG_ON(sizeof(mrk_entry_t) != 64);
7924         BUILD_BUG_ON(sizeof(ms_iocb_entry_t) != 64);
7925         BUILD_BUG_ON(sizeof(request_t) != 64);
7926         BUILD_BUG_ON(sizeof(struct abort_entry_24xx) != 64);
7927         BUILD_BUG_ON(sizeof(struct abort_iocb_entry_fx00) != 64);
7928         BUILD_BUG_ON(sizeof(struct abts_entry_24xx) != 64);
7929         BUILD_BUG_ON(sizeof(struct access_chip_84xx) != 64);
7930         BUILD_BUG_ON(sizeof(struct access_chip_rsp_84xx) != 64);
7931         BUILD_BUG_ON(sizeof(struct cmd_bidir) != 64);
7932         BUILD_BUG_ON(sizeof(struct cmd_nvme) != 64);
7933         BUILD_BUG_ON(sizeof(struct cmd_type_6) != 64);
7934         BUILD_BUG_ON(sizeof(struct cmd_type_7) != 64);
7935         BUILD_BUG_ON(sizeof(struct cmd_type_7_fx00) != 64);
7936         BUILD_BUG_ON(sizeof(struct cmd_type_crc_2) != 64);
7937         BUILD_BUG_ON(sizeof(struct ct_entry_24xx) != 64);
7938         BUILD_BUG_ON(sizeof(struct ct_fdmi1_hba_attributes) != 2344);
7939         BUILD_BUG_ON(sizeof(struct ct_fdmi2_hba_attributes) != 4424);
7940         BUILD_BUG_ON(sizeof(struct ct_fdmi2_port_attributes) != 4164);
7941         BUILD_BUG_ON(sizeof(struct ct_fdmi_hba_attr) != 260);
7942         BUILD_BUG_ON(sizeof(struct ct_fdmi_port_attr) != 260);
7943         BUILD_BUG_ON(sizeof(struct ct_rsp_hdr) != 16);
7944         BUILD_BUG_ON(sizeof(struct ctio_crc2_to_fw) != 64);
7945         BUILD_BUG_ON(sizeof(struct device_reg_24xx) != 256);
7946         BUILD_BUG_ON(sizeof(struct device_reg_25xxmq) != 24);
7947         BUILD_BUG_ON(sizeof(struct device_reg_2xxx) != 256);
7948         BUILD_BUG_ON(sizeof(struct device_reg_82xx) != 1288);
7949         BUILD_BUG_ON(sizeof(struct device_reg_fx00) != 216);
7950         BUILD_BUG_ON(sizeof(struct els_entry_24xx) != 64);
7951         BUILD_BUG_ON(sizeof(struct els_sts_entry_24xx) != 64);
7952         BUILD_BUG_ON(sizeof(struct fxdisc_entry_fx00) != 64);
7953         BUILD_BUG_ON(sizeof(struct imm_ntfy_from_isp) != 64);
7954         BUILD_BUG_ON(sizeof(struct init_cb_24xx) != 128);
7955         BUILD_BUG_ON(sizeof(struct init_cb_81xx) != 128);
7956         BUILD_BUG_ON(sizeof(struct logio_entry_24xx) != 64);
7957         BUILD_BUG_ON(sizeof(struct mbx_entry) != 64);
7958         BUILD_BUG_ON(sizeof(struct mid_init_cb_24xx) != 5252);
7959         BUILD_BUG_ON(sizeof(struct mrk_entry_24xx) != 64);
7960         BUILD_BUG_ON(sizeof(struct nvram_24xx) != 512);
7961         BUILD_BUG_ON(sizeof(struct nvram_81xx) != 512);
7962         BUILD_BUG_ON(sizeof(struct pt_ls4_request) != 64);
7963         BUILD_BUG_ON(sizeof(struct pt_ls4_rx_unsol) != 64);
7964         BUILD_BUG_ON(sizeof(struct purex_entry_24xx) != 64);
7965         BUILD_BUG_ON(sizeof(struct qla2100_fw_dump) != 123634);
7966         BUILD_BUG_ON(sizeof(struct qla2300_fw_dump) != 136100);
7967         BUILD_BUG_ON(sizeof(struct qla24xx_fw_dump) != 37976);
7968         BUILD_BUG_ON(sizeof(struct qla25xx_fw_dump) != 39228);
7969         BUILD_BUG_ON(sizeof(struct qla2xxx_fce_chain) != 52);
7970         BUILD_BUG_ON(sizeof(struct qla2xxx_fw_dump) != 136172);
7971         BUILD_BUG_ON(sizeof(struct qla2xxx_mq_chain) != 524);
7972         BUILD_BUG_ON(sizeof(struct qla2xxx_mqueue_chain) != 8);
7973         BUILD_BUG_ON(sizeof(struct qla2xxx_mqueue_header) != 12);
7974         BUILD_BUG_ON(sizeof(struct qla2xxx_offld_chain) != 24);
7975         BUILD_BUG_ON(sizeof(struct qla81xx_fw_dump) != 39420);
7976         BUILD_BUG_ON(sizeof(struct qla82xx_uri_data_desc) != 28);
7977         BUILD_BUG_ON(sizeof(struct qla82xx_uri_table_desc) != 32);
7978         BUILD_BUG_ON(sizeof(struct qla83xx_fw_dump) != 51196);
7979         BUILD_BUG_ON(sizeof(struct qla_fcp_prio_cfg) != FCP_PRIO_CFG_SIZE);
7980         BUILD_BUG_ON(sizeof(struct qla_fdt_layout) != 128);
7981         BUILD_BUG_ON(sizeof(struct qla_flt_header) != 8);
7982         BUILD_BUG_ON(sizeof(struct qla_flt_region) != 16);
7983         BUILD_BUG_ON(sizeof(struct qla_npiv_entry) != 24);
7984         BUILD_BUG_ON(sizeof(struct qla_npiv_header) != 16);
7985         BUILD_BUG_ON(sizeof(struct rdp_rsp_payload) != 336);
7986         BUILD_BUG_ON(sizeof(struct sns_cmd_pkt) != 2064);
7987         BUILD_BUG_ON(sizeof(struct sts_entry_24xx) != 64);
7988         BUILD_BUG_ON(sizeof(struct tsk_mgmt_entry) != 64);
7989         BUILD_BUG_ON(sizeof(struct tsk_mgmt_entry_fx00) != 64);
7990         BUILD_BUG_ON(sizeof(struct verify_chip_entry_84xx) != 64);
7991         BUILD_BUG_ON(sizeof(struct verify_chip_rsp_84xx) != 52);
7992         BUILD_BUG_ON(sizeof(struct vf_evfp_entry_24xx) != 56);
7993         BUILD_BUG_ON(sizeof(struct vp_config_entry_24xx) != 64);
7994         BUILD_BUG_ON(sizeof(struct vp_ctrl_entry_24xx) != 64);
7995         BUILD_BUG_ON(sizeof(struct vp_rpt_id_entry_24xx) != 64);
7996         BUILD_BUG_ON(sizeof(sts21_entry_t) != 64);
7997         BUILD_BUG_ON(sizeof(sts22_entry_t) != 64);
7998         BUILD_BUG_ON(sizeof(sts_cont_entry_t) != 64);
7999         BUILD_BUG_ON(sizeof(sts_entry_t) != 64);
8000         BUILD_BUG_ON(sizeof(sw_info_t) != 32);
8001         BUILD_BUG_ON(sizeof(target_id_t) != 2);
8002
8003         /* Allocate cache for SRBs. */
8004         srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
8005             SLAB_HWCACHE_ALIGN, NULL);
8006         if (srb_cachep == NULL) {
8007                 ql_log(ql_log_fatal, NULL, 0x0001,
8008                     "Unable to allocate SRB cache...Failing load!.\n");
8009                 return -ENOMEM;
8010         }
8011
8012         /* Initialize target kmem_cache and mem_pools */
8013         ret = qlt_init();
8014         if (ret < 0) {
8015                 goto destroy_cache;
8016         } else if (ret > 0) {
8017                 /*
8018                  * If initiator mode is explictly disabled by qlt_init(),
8019                  * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from
8020                  * performing scsi_scan_target() during LOOP UP event.
8021                  */
8022                 qla2xxx_transport_functions.disable_target_scan = 1;
8023                 qla2xxx_transport_vport_functions.disable_target_scan = 1;
8024         }
8025
8026         /* Derive version string. */
8027         strcpy(qla2x00_version_str, QLA2XXX_VERSION);
8028         if (ql2xextended_error_logging)
8029                 strcat(qla2x00_version_str, "-debug");
8030         if (ql2xextended_error_logging == 1)
8031                 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
8032
8033         if (ql2x_ini_mode == QLA2XXX_INI_MODE_DUAL)
8034                 qla_insert_tgt_attrs();
8035
8036         qla2xxx_transport_template =
8037             fc_attach_transport(&qla2xxx_transport_functions);
8038         if (!qla2xxx_transport_template) {
8039                 ql_log(ql_log_fatal, NULL, 0x0002,
8040                     "fc_attach_transport failed...Failing load!.\n");
8041                 ret = -ENODEV;
8042                 goto qlt_exit;
8043         }
8044
8045         apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
8046         if (apidev_major < 0) {
8047                 ql_log(ql_log_fatal, NULL, 0x0003,
8048                     "Unable to register char device %s.\n", QLA2XXX_APIDEV);
8049         }
8050
8051         qla2xxx_transport_vport_template =
8052             fc_attach_transport(&qla2xxx_transport_vport_functions);
8053         if (!qla2xxx_transport_vport_template) {
8054                 ql_log(ql_log_fatal, NULL, 0x0004,
8055                     "fc_attach_transport vport failed...Failing load!.\n");
8056                 ret = -ENODEV;
8057                 goto unreg_chrdev;
8058         }
8059         ql_log(ql_log_info, NULL, 0x0005,
8060             "QLogic Fibre Channel HBA Driver: %s.\n",
8061             qla2x00_version_str);
8062         ret = pci_register_driver(&qla2xxx_pci_driver);
8063         if (ret) {
8064                 ql_log(ql_log_fatal, NULL, 0x0006,
8065                     "pci_register_driver failed...ret=%d Failing load!.\n",
8066                     ret);
8067                 goto release_vport_transport;
8068         }
8069         return ret;
8070
8071 release_vport_transport:
8072         fc_release_transport(qla2xxx_transport_vport_template);
8073
8074 unreg_chrdev:
8075         if (apidev_major >= 0)
8076                 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
8077         fc_release_transport(qla2xxx_transport_template);
8078
8079 qlt_exit:
8080         qlt_exit();
8081
8082 destroy_cache:
8083         kmem_cache_destroy(srb_cachep);
8084         return ret;
8085 }
8086
8087 /**
8088  * qla2x00_module_exit - Module cleanup.
8089  **/
8090 static void __exit
8091 qla2x00_module_exit(void)
8092 {
8093         pci_unregister_driver(&qla2xxx_pci_driver);
8094         qla2x00_release_firmware();
8095         kmem_cache_destroy(ctx_cachep);
8096         fc_release_transport(qla2xxx_transport_vport_template);
8097         if (apidev_major >= 0)
8098                 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
8099         fc_release_transport(qla2xxx_transport_template);
8100         qlt_exit();
8101         kmem_cache_destroy(srb_cachep);
8102 }
8103
8104 module_init(qla2x00_module_init);
8105 module_exit(qla2x00_module_exit);
8106
8107 MODULE_AUTHOR("QLogic Corporation");
8108 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
8109 MODULE_LICENSE("GPL");
8110 MODULE_FIRMWARE(FW_FILE_ISP21XX);
8111 MODULE_FIRMWARE(FW_FILE_ISP22XX);
8112 MODULE_FIRMWARE(FW_FILE_ISP2300);
8113 MODULE_FIRMWARE(FW_FILE_ISP2322);
8114 MODULE_FIRMWARE(FW_FILE_ISP24XX);
8115 MODULE_FIRMWARE(FW_FILE_ISP25XX);