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