Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * QLogic Fibre Channel HBA Driver
4 * Copyright (c) 2003-2014 QLogic Corporation
5 */
6#include "qla_def.h"
7
8#include <linux/bitfield.h>
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
11#include <linux/delay.h>
12#include <linux/kthread.h>
13#include <linux/mutex.h>
14#include <linux/kobject.h>
15#include <linux/slab.h>
16#include <linux/blk-mq-pci.h>
17#include <linux/refcount.h>
18#include <linux/crash_dump.h>
19#include <linux/trace_events.h>
20#include <linux/trace.h>
21
22#include <scsi/scsi_tcq.h>
23#include <scsi/scsicam.h>
24#include <scsi/scsi_transport.h>
25#include <scsi/scsi_transport_fc.h>
26
27#include "qla_target.h"
28
29/*
30 * Driver version
31 */
32char qla2x00_version_str[40];
33
34static int apidev_major;
35
36/*
37 * SRB allocation cache
38 */
39struct kmem_cache *srb_cachep;
40
41static struct trace_array *qla_trc_array;
42
43int ql2xfulldump_on_mpifail;
44module_param(ql2xfulldump_on_mpifail, int, S_IRUGO | S_IWUSR);
45MODULE_PARM_DESC(ql2xfulldump_on_mpifail,
46 "Set this to take full dump on MPI hang.");
47
48int ql2xenforce_iocb_limit = 2;
49module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR);
50MODULE_PARM_DESC(ql2xenforce_iocb_limit,
51 "Enforce IOCB throttling, to avoid FW congestion. (default: 2) "
52 "1: track usage per queue, 2: track usage per adapter");
53
54/*
55 * CT6 CTX allocation cache
56 */
57static struct kmem_cache *ctx_cachep;
58/*
59 * error level for logging
60 */
61uint ql_errlev = 0x8001;
62
63int ql2xsecenable;
64module_param(ql2xsecenable, int, S_IRUGO);
65MODULE_PARM_DESC(ql2xsecenable,
66 "Enable/disable security. 0(Default) - Security disabled. 1 - Security enabled.");
67
68static int ql2xenableclass2;
69module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR);
70MODULE_PARM_DESC(ql2xenableclass2,
71 "Specify if Class 2 operations are supported from the very "
72 "beginning. Default is 0 - class 2 not supported.");
73
74
75int ql2xlogintimeout = 20;
76module_param(ql2xlogintimeout, int, S_IRUGO);
77MODULE_PARM_DESC(ql2xlogintimeout,
78 "Login timeout value in seconds.");
79
80int qlport_down_retry;
81module_param(qlport_down_retry, int, S_IRUGO);
82MODULE_PARM_DESC(qlport_down_retry,
83 "Maximum number of command retries to a port that returns "
84 "a PORT-DOWN status.");
85
86int ql2xplogiabsentdevice;
87module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(ql2xplogiabsentdevice,
89 "Option to enable PLOGI to devices that are not present after "
90 "a Fabric scan. This is needed for several broken switches. "
91 "Default is 0 - no PLOGI. 1 - perform PLOGI.");
92
93int ql2xloginretrycount;
94module_param(ql2xloginretrycount, int, S_IRUGO);
95MODULE_PARM_DESC(ql2xloginretrycount,
96 "Specify an alternate value for the NVRAM login retry count.");
97
98int ql2xallocfwdump = 1;
99module_param(ql2xallocfwdump, int, S_IRUGO);
100MODULE_PARM_DESC(ql2xallocfwdump,
101 "Option to enable allocation of memory for a firmware dump "
102 "during HBA initialization. Memory allocation requirements "
103 "vary by ISP type. Default is 1 - allocate memory.");
104
105int ql2xextended_error_logging;
106module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
107module_param_named(logging, ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
108MODULE_PARM_DESC(ql2xextended_error_logging,
109 "Option to enable extended error logging,\n"
110 "\t\tDefault is 0 - no logging. 0x40000000 - Module Init & Probe.\n"
111 "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n"
112 "\t\t0x08000000 - IO tracing. 0x04000000 - DPC Thread.\n"
113 "\t\t0x02000000 - Async events. 0x01000000 - Timer routines.\n"
114 "\t\t0x00800000 - User space. 0x00400000 - Task Management.\n"
115 "\t\t0x00200000 - AER/EEH. 0x00100000 - Multi Q.\n"
116 "\t\t0x00080000 - P3P Specific. 0x00040000 - Virtual Port.\n"
117 "\t\t0x00020000 - Buffer Dump. 0x00010000 - Misc.\n"
118 "\t\t0x00008000 - Verbose. 0x00004000 - Target.\n"
119 "\t\t0x00002000 - Target Mgmt. 0x00001000 - Target TMF.\n"
120 "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n"
121 "\t\t0x1e400000 - Preferred value for capturing essential "
122 "debug information (equivalent to old "
123 "ql2xextended_error_logging=1).\n"
124 "\t\tDo LOGICAL OR of the value to enable more than one level");
125
126int ql2xextended_error_logging_ktrace = 1;
127module_param(ql2xextended_error_logging_ktrace, int, S_IRUGO|S_IWUSR);
128MODULE_PARM_DESC(ql2xextended_error_logging_ktrace,
129 "Same BIT definition as ql2xextended_error_logging, but used to control logging to kernel trace buffer (default=1).\n");
130
131int ql2xshiftctondsd = 6;
132module_param(ql2xshiftctondsd, int, S_IRUGO);
133MODULE_PARM_DESC(ql2xshiftctondsd,
134 "Set to control shifting of command type processing "
135 "based on total number of SG elements.");
136
137int ql2xfdmienable = 1;
138module_param(ql2xfdmienable, int, S_IRUGO|S_IWUSR);
139module_param_named(fdmi, ql2xfdmienable, int, S_IRUGO|S_IWUSR);
140MODULE_PARM_DESC(ql2xfdmienable,
141 "Enables FDMI registrations. "
142 "0 - no FDMI registrations. "
143 "1 - provide FDMI registrations (default).");
144
145#define MAX_Q_DEPTH 64
146static int ql2xmaxqdepth = MAX_Q_DEPTH;
147module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
148MODULE_PARM_DESC(ql2xmaxqdepth,
149 "Maximum queue depth to set for each LUN. "
150 "Default is 64.");
151
152int ql2xenabledif = 2;
153module_param(ql2xenabledif, int, S_IRUGO);
154MODULE_PARM_DESC(ql2xenabledif,
155 " Enable T10-CRC-DIF:\n"
156 " Default is 2.\n"
157 " 0 -- No DIF Support\n"
158 " 1 -- Enable DIF for all types\n"
159 " 2 -- Enable DIF for all types, except Type 0.\n");
160
161#if (IS_ENABLED(CONFIG_NVME_FC))
162int ql2xnvmeenable = 1;
163#else
164int ql2xnvmeenable;
165#endif
166module_param(ql2xnvmeenable, int, 0644);
167MODULE_PARM_DESC(ql2xnvmeenable,
168 "Enables NVME support. "
169 "0 - no NVMe. Default is Y");
170
171int ql2xenablehba_err_chk = 2;
172module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR);
173MODULE_PARM_DESC(ql2xenablehba_err_chk,
174 " Enable T10-CRC-DIF Error isolation by HBA:\n"
175 " Default is 2.\n"
176 " 0 -- Error isolation disabled\n"
177 " 1 -- Error isolation enabled only for DIX Type 0\n"
178 " 2 -- Error isolation enabled for all Types\n");
179
180int ql2xiidmaenable = 1;
181module_param(ql2xiidmaenable, int, S_IRUGO);
182MODULE_PARM_DESC(ql2xiidmaenable,
183 "Enables iIDMA settings "
184 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
185
186int ql2xmqsupport = 1;
187module_param(ql2xmqsupport, int, S_IRUGO);
188MODULE_PARM_DESC(ql2xmqsupport,
189 "Enable on demand multiple queue pairs support "
190 "Default is 1 for supported. "
191 "Set it to 0 to turn off mq qpair support.");
192
193int ql2xfwloadbin;
194module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
195module_param_named(fwload, ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
196MODULE_PARM_DESC(ql2xfwloadbin,
197 "Option to specify location from which to load ISP firmware:.\n"
198 " 2 -- load firmware via the request_firmware() (hotplug).\n"
199 " interface.\n"
200 " 1 -- load firmware from flash.\n"
201 " 0 -- use default semantics.\n");
202
203int ql2xetsenable;
204module_param(ql2xetsenable, int, S_IRUGO);
205MODULE_PARM_DESC(ql2xetsenable,
206 "Enables firmware ETS burst."
207 "Default is 0 - skip ETS enablement.");
208
209int ql2xdbwr = 1;
210module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR);
211MODULE_PARM_DESC(ql2xdbwr,
212 "Option to specify scheme for request queue posting.\n"
213 " 0 -- Regular doorbell.\n"
214 " 1 -- CAMRAM doorbell (faster).\n");
215
216int ql2xgffidenable;
217module_param(ql2xgffidenable, int, S_IRUGO);
218MODULE_PARM_DESC(ql2xgffidenable,
219 "Enables GFF_ID checks of port type. "
220 "Default is 0 - Do not use GFF_ID information.");
221
222int ql2xasynctmfenable = 1;
223module_param(ql2xasynctmfenable, int, S_IRUGO);
224MODULE_PARM_DESC(ql2xasynctmfenable,
225 "Enables issue of TM IOCBs asynchronously via IOCB mechanism"
226 "Default is 1 - Issue TM IOCBs via mailbox mechanism.");
227
228int ql2xdontresethba;
229module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR);
230MODULE_PARM_DESC(ql2xdontresethba,
231 "Option to specify reset behaviour.\n"
232 " 0 (Default) -- Reset on failure.\n"
233 " 1 -- Do not reset on failure.\n");
234
235uint64_t ql2xmaxlun = MAX_LUNS;
236module_param(ql2xmaxlun, ullong, S_IRUGO);
237MODULE_PARM_DESC(ql2xmaxlun,
238 "Defines the maximum LU number to register with the SCSI "
239 "midlayer. Default is 65535.");
240
241int ql2xmdcapmask = 0x1F;
242module_param(ql2xmdcapmask, int, S_IRUGO);
243MODULE_PARM_DESC(ql2xmdcapmask,
244 "Set the Minidump driver capture mask level. "
245 "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F.");
246
247int ql2xmdenable = 1;
248module_param(ql2xmdenable, int, S_IRUGO);
249MODULE_PARM_DESC(ql2xmdenable,
250 "Enable/disable MiniDump. "
251 "0 - MiniDump disabled. "
252 "1 (Default) - MiniDump enabled.");
253
254int ql2xexlogins;
255module_param(ql2xexlogins, uint, S_IRUGO|S_IWUSR);
256MODULE_PARM_DESC(ql2xexlogins,
257 "Number of extended Logins. "
258 "0 (Default)- Disabled.");
259
260int ql2xexchoffld = 1024;
261module_param(ql2xexchoffld, uint, 0644);
262MODULE_PARM_DESC(ql2xexchoffld,
263 "Number of target exchanges.");
264
265int ql2xiniexchg = 1024;
266module_param(ql2xiniexchg, uint, 0644);
267MODULE_PARM_DESC(ql2xiniexchg,
268 "Number of initiator exchanges.");
269
270int ql2xfwholdabts;
271module_param(ql2xfwholdabts, int, S_IRUGO);
272MODULE_PARM_DESC(ql2xfwholdabts,
273 "Allow FW to hold status IOCB until ABTS rsp received. "
274 "0 (Default) Do not set fw option. "
275 "1 - Set fw option to hold ABTS.");
276
277int ql2xmvasynctoatio = 1;
278module_param(ql2xmvasynctoatio, int, S_IRUGO|S_IWUSR);
279MODULE_PARM_DESC(ql2xmvasynctoatio,
280 "Move PUREX, ABTS RX and RIDA IOCBs to ATIOQ"
281 "0 (Default). Do not move IOCBs"
282 "1 - Move IOCBs.");
283
284int ql2xautodetectsfp = 1;
285module_param(ql2xautodetectsfp, int, 0444);
286MODULE_PARM_DESC(ql2xautodetectsfp,
287 "Detect SFP range and set appropriate distance.\n"
288 "1 (Default): Enable\n");
289
290int ql2xenablemsix = 1;
291module_param(ql2xenablemsix, int, 0444);
292MODULE_PARM_DESC(ql2xenablemsix,
293 "Set to enable MSI or MSI-X interrupt mechanism.\n"
294 " Default is 1, enable MSI-X interrupt mechanism.\n"
295 " 0 -- enable traditional pin-based mechanism.\n"
296 " 1 -- enable MSI-X interrupt mechanism.\n"
297 " 2 -- enable MSI interrupt mechanism.\n");
298
299int qla2xuseresexchforels;
300module_param(qla2xuseresexchforels, int, 0444);
301MODULE_PARM_DESC(qla2xuseresexchforels,
302 "Reserve 1/2 of emergency exchanges for ELS.\n"
303 " 0 (default): disabled");
304
305static int ql2xprotmask;
306module_param(ql2xprotmask, int, 0644);
307MODULE_PARM_DESC(ql2xprotmask,
308 "Override DIF/DIX protection capabilities mask\n"
309 "Default is 0 which sets protection mask based on "
310 "capabilities reported by HBA firmware.\n");
311
312static int ql2xprotguard;
313module_param(ql2xprotguard, int, 0644);
314MODULE_PARM_DESC(ql2xprotguard, "Override choice of DIX checksum\n"
315 " 0 -- Let HBA firmware decide\n"
316 " 1 -- Force T10 CRC\n"
317 " 2 -- Force IP checksum\n");
318
319int ql2xdifbundlinginternalbuffers;
320module_param(ql2xdifbundlinginternalbuffers, int, 0644);
321MODULE_PARM_DESC(ql2xdifbundlinginternalbuffers,
322 "Force using internal buffers for DIF information\n"
323 "0 (Default). Based on check.\n"
324 "1 Force using internal buffers\n");
325
326int ql2xsmartsan;
327module_param(ql2xsmartsan, int, 0444);
328module_param_named(smartsan, ql2xsmartsan, int, 0444);
329MODULE_PARM_DESC(ql2xsmartsan,
330 "Send SmartSAN Management Attributes for FDMI Registration."
331 " Default is 0 - No SmartSAN registration,"
332 " 1 - Register SmartSAN Management Attributes.");
333
334int ql2xrdpenable;
335module_param(ql2xrdpenable, int, 0444);
336module_param_named(rdpenable, ql2xrdpenable, int, 0444);
337MODULE_PARM_DESC(ql2xrdpenable,
338 "Enables RDP responses. "
339 "0 - no RDP responses (default). "
340 "1 - provide RDP responses.");
341int ql2xabts_wait_nvme = 1;
342module_param(ql2xabts_wait_nvme, int, 0444);
343MODULE_PARM_DESC(ql2xabts_wait_nvme,
344 "To wait for ABTS response on I/O timeouts for NVMe. (default: 1)");
345
346
347static u32 ql2xdelay_before_pci_error_handling = 5;
348module_param(ql2xdelay_before_pci_error_handling, uint, 0644);
349MODULE_PARM_DESC(ql2xdelay_before_pci_error_handling,
350 "Number of seconds delayed before qla begin PCI error self-handling (default: 5).\n");
351
352static void qla2x00_clear_drv_active(struct qla_hw_data *);
353static void qla2x00_free_device(scsi_qla_host_t *);
354static void qla2xxx_map_queues(struct Scsi_Host *shost);
355static void qla2x00_destroy_deferred_work(struct qla_hw_data *);
356
357u32 ql2xnvme_queues = DEF_NVME_HW_QUEUES;
358module_param(ql2xnvme_queues, uint, S_IRUGO);
359MODULE_PARM_DESC(ql2xnvme_queues,
360 "Number of NVMe Queues that can be configured.\n"
361 "Final value will be min(ql2xnvme_queues, num_cpus,num_chip_queues)\n"
362 "1 - Minimum number of queues supported\n"
363 "8 - Default value");
364
365int ql2xfc2target = 1;
366module_param(ql2xfc2target, int, 0444);
367MODULE_PARM_DESC(qla2xfc2target,
368 "Enables FC2 Target support. "
369 "0 - FC2 Target support is disabled. "
370 "1 - FC2 Target support is enabled (default).");
371
372static struct scsi_transport_template *qla2xxx_transport_template = NULL;
373struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
374
375/* TODO Convert to inlines
376 *
377 * Timer routines
378 */
379
380__inline__ void
381qla2x00_start_timer(scsi_qla_host_t *vha, unsigned long interval)
382{
383 timer_setup(&vha->timer, qla2x00_timer, 0);
384 vha->timer.expires = jiffies + interval * HZ;
385 add_timer(&vha->timer);
386 vha->timer_active = 1;
387}
388
389static inline void
390qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
391{
392 /* Currently used for 82XX only. */
393 if (vha->device_flags & DFLG_DEV_FAILED) {
394 ql_dbg(ql_dbg_timer, vha, 0x600d,
395 "Device in a failed state, returning.\n");
396 return;
397 }
398
399 mod_timer(&vha->timer, jiffies + interval * HZ);
400}
401
402static __inline__ void
403qla2x00_stop_timer(scsi_qla_host_t *vha)
404{
405 del_timer_sync(&vha->timer);
406 vha->timer_active = 0;
407}
408
409static int qla2x00_do_dpc(void *data);
410
411static void qla2x00_rst_aen(scsi_qla_host_t *);
412
413static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
414 struct req_que **, struct rsp_que **);
415static void qla2x00_free_fw_dump(struct qla_hw_data *);
416static void qla2x00_mem_free(struct qla_hw_data *);
417int qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
418 struct qla_qpair *qpair);
419
420/* -------------------------------------------------------------------------- */
421static void qla_init_base_qpair(struct scsi_qla_host *vha, struct req_que *req,
422 struct rsp_que *rsp)
423{
424 struct qla_hw_data *ha = vha->hw;
425
426 rsp->qpair = ha->base_qpair;
427 rsp->req = req;
428 ha->base_qpair->hw = ha;
429 ha->base_qpair->req = req;
430 ha->base_qpair->rsp = rsp;
431 ha->base_qpair->vha = vha;
432 ha->base_qpair->qp_lock_ptr = &ha->hardware_lock;
433 ha->base_qpair->use_shadow_reg = IS_SHADOW_REG_CAPABLE(ha) ? 1 : 0;
434 ha->base_qpair->msix = &ha->msix_entries[QLA_MSIX_RSP_Q];
435 ha->base_qpair->srb_mempool = ha->srb_mempool;
436 INIT_LIST_HEAD(&ha->base_qpair->hints_list);
437 INIT_LIST_HEAD(&ha->base_qpair->dsd_list);
438 ha->base_qpair->enable_class_2 = ql2xenableclass2;
439 /* init qpair to this cpu. Will adjust at run time. */
440 qla_cpu_update(rsp->qpair, raw_smp_processor_id());
441 ha->base_qpair->pdev = ha->pdev;
442
443 if (IS_QLA27XX(ha) || IS_QLA83XX(ha) || IS_QLA28XX(ha))
444 ha->base_qpair->reqq_start_iocbs = qla_83xx_start_iocbs;
445}
446
447static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req,
448 struct rsp_que *rsp)
449{
450 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
451
452 ha->req_q_map = kcalloc(ha->max_req_queues, sizeof(struct req_que *),
453 GFP_KERNEL);
454 if (!ha->req_q_map) {
455 ql_log(ql_log_fatal, vha, 0x003b,
456 "Unable to allocate memory for request queue ptrs.\n");
457 goto fail_req_map;
458 }
459
460 ha->rsp_q_map = kcalloc(ha->max_rsp_queues, sizeof(struct rsp_que *),
461 GFP_KERNEL);
462 if (!ha->rsp_q_map) {
463 ql_log(ql_log_fatal, vha, 0x003c,
464 "Unable to allocate memory for response queue ptrs.\n");
465 goto fail_rsp_map;
466 }
467
468 ha->base_qpair = kzalloc(sizeof(struct qla_qpair), GFP_KERNEL);
469 if (ha->base_qpair == NULL) {
470 ql_log(ql_log_warn, vha, 0x00e0,
471 "Failed to allocate base queue pair memory.\n");
472 goto fail_base_qpair;
473 }
474
475 qla_init_base_qpair(vha, req, rsp);
476
477 if ((ql2xmqsupport || ql2xnvmeenable) && ha->max_qpairs) {
478 ha->queue_pair_map = kcalloc(ha->max_qpairs, sizeof(struct qla_qpair *),
479 GFP_KERNEL);
480 if (!ha->queue_pair_map) {
481 ql_log(ql_log_fatal, vha, 0x0180,
482 "Unable to allocate memory for queue pair ptrs.\n");
483 goto fail_qpair_map;
484 }
485 if (qla_mapq_alloc_qp_cpu_map(ha) != 0) {
486 kfree(ha->queue_pair_map);
487 ha->queue_pair_map = NULL;
488 goto fail_qpair_map;
489 }
490 }
491
492 /*
493 * Make sure we record at least the request and response queue zero in
494 * case we need to free them if part of the probe fails.
495 */
496 ha->rsp_q_map[0] = rsp;
497 ha->req_q_map[0] = req;
498 set_bit(0, ha->rsp_qid_map);
499 set_bit(0, ha->req_qid_map);
500 return 0;
501
502fail_qpair_map:
503 kfree(ha->base_qpair);
504 ha->base_qpair = NULL;
505fail_base_qpair:
506 kfree(ha->rsp_q_map);
507 ha->rsp_q_map = NULL;
508fail_rsp_map:
509 kfree(ha->req_q_map);
510 ha->req_q_map = NULL;
511fail_req_map:
512 return -ENOMEM;
513}
514
515static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
516{
517 if (IS_QLAFX00(ha)) {
518 if (req && req->ring_fx00)
519 dma_free_coherent(&ha->pdev->dev,
520 (req->length_fx00 + 1) * sizeof(request_t),
521 req->ring_fx00, req->dma_fx00);
522 } else if (req && req->ring)
523 dma_free_coherent(&ha->pdev->dev,
524 (req->length + 1) * sizeof(request_t),
525 req->ring, req->dma);
526
527 if (req)
528 kfree(req->outstanding_cmds);
529
530 kfree(req);
531}
532
533static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
534{
535 if (IS_QLAFX00(ha)) {
536 if (rsp && rsp->ring_fx00)
537 dma_free_coherent(&ha->pdev->dev,
538 (rsp->length_fx00 + 1) * sizeof(request_t),
539 rsp->ring_fx00, rsp->dma_fx00);
540 } else if (rsp && rsp->ring) {
541 dma_free_coherent(&ha->pdev->dev,
542 (rsp->length + 1) * sizeof(response_t),
543 rsp->ring, rsp->dma);
544 }
545 kfree(rsp);
546}
547
548static void qla2x00_free_queues(struct qla_hw_data *ha)
549{
550 struct req_que *req;
551 struct rsp_que *rsp;
552 int cnt;
553 unsigned long flags;
554
555 if (ha->queue_pair_map) {
556 kfree(ha->queue_pair_map);
557 ha->queue_pair_map = NULL;
558 }
559 if (ha->base_qpair) {
560 kfree(ha->base_qpair);
561 ha->base_qpair = NULL;
562 }
563
564 qla_mapq_free_qp_cpu_map(ha);
565 spin_lock_irqsave(&ha->hardware_lock, flags);
566 for (cnt = 0; cnt < ha->max_req_queues; cnt++) {
567 if (!test_bit(cnt, ha->req_qid_map))
568 continue;
569
570 req = ha->req_q_map[cnt];
571 clear_bit(cnt, ha->req_qid_map);
572 ha->req_q_map[cnt] = NULL;
573
574 spin_unlock_irqrestore(&ha->hardware_lock, flags);
575 qla2x00_free_req_que(ha, req);
576 spin_lock_irqsave(&ha->hardware_lock, flags);
577 }
578 spin_unlock_irqrestore(&ha->hardware_lock, flags);
579
580 kfree(ha->req_q_map);
581 ha->req_q_map = NULL;
582
583
584 spin_lock_irqsave(&ha->hardware_lock, flags);
585 for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) {
586 if (!test_bit(cnt, ha->rsp_qid_map))
587 continue;
588
589 rsp = ha->rsp_q_map[cnt];
590 clear_bit(cnt, ha->rsp_qid_map);
591 ha->rsp_q_map[cnt] = NULL;
592 spin_unlock_irqrestore(&ha->hardware_lock, flags);
593 qla2x00_free_rsp_que(ha, rsp);
594 spin_lock_irqsave(&ha->hardware_lock, flags);
595 }
596 spin_unlock_irqrestore(&ha->hardware_lock, flags);
597
598 kfree(ha->rsp_q_map);
599 ha->rsp_q_map = NULL;
600}
601
602static char *
603qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str, size_t str_len)
604{
605 struct qla_hw_data *ha = vha->hw;
606 static const char *const pci_bus_modes[] = {
607 "33", "66", "100", "133",
608 };
609 uint16_t pci_bus;
610
611 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
612 if (pci_bus) {
613 snprintf(str, str_len, "PCI-X (%s MHz)",
614 pci_bus_modes[pci_bus]);
615 } else {
616 pci_bus = (ha->pci_attr & BIT_8) >> 8;
617 snprintf(str, str_len, "PCI (%s MHz)", pci_bus_modes[pci_bus]);
618 }
619
620 return str;
621}
622
623static char *
624qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str, size_t str_len)
625{
626 static const char *const pci_bus_modes[] = {
627 "33", "66", "100", "133",
628 };
629 struct qla_hw_data *ha = vha->hw;
630 uint32_t pci_bus;
631
632 if (pci_is_pcie(ha->pdev)) {
633 uint32_t lstat, lspeed, lwidth;
634 const char *speed_str;
635
636 pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat);
637 lspeed = FIELD_GET(PCI_EXP_LNKCAP_SLS, lstat);
638 lwidth = FIELD_GET(PCI_EXP_LNKCAP_MLW, lstat);
639
640 switch (lspeed) {
641 case 1:
642 speed_str = "2.5GT/s";
643 break;
644 case 2:
645 speed_str = "5.0GT/s";
646 break;
647 case 3:
648 speed_str = "8.0GT/s";
649 break;
650 case 4:
651 speed_str = "16.0GT/s";
652 break;
653 default:
654 speed_str = "<unknown>";
655 break;
656 }
657 snprintf(str, str_len, "PCIe (%s x%d)", speed_str, lwidth);
658
659 return str;
660 }
661
662 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
663 if (pci_bus == 0 || pci_bus == 8)
664 snprintf(str, str_len, "PCI (%s MHz)",
665 pci_bus_modes[pci_bus >> 3]);
666 else
667 snprintf(str, str_len, "PCI-X Mode %d (%s MHz)",
668 pci_bus & 4 ? 2 : 1,
669 pci_bus_modes[pci_bus & 3]);
670
671 return str;
672}
673
674static char *
675qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
676{
677 char un_str[10];
678 struct qla_hw_data *ha = vha->hw;
679
680 snprintf(str, size, "%d.%02d.%02d ", ha->fw_major_version,
681 ha->fw_minor_version, ha->fw_subminor_version);
682
683 if (ha->fw_attributes & BIT_9) {
684 strcat(str, "FLX");
685 return (str);
686 }
687
688 switch (ha->fw_attributes & 0xFF) {
689 case 0x7:
690 strcat(str, "EF");
691 break;
692 case 0x17:
693 strcat(str, "TP");
694 break;
695 case 0x37:
696 strcat(str, "IP");
697 break;
698 case 0x77:
699 strcat(str, "VI");
700 break;
701 default:
702 sprintf(un_str, "(%x)", ha->fw_attributes);
703 strcat(str, un_str);
704 break;
705 }
706 if (ha->fw_attributes & 0x100)
707 strcat(str, "X");
708
709 return (str);
710}
711
712static char *
713qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
714{
715 struct qla_hw_data *ha = vha->hw;
716
717 snprintf(str, size, "%d.%02d.%02d (%x)", ha->fw_major_version,
718 ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes);
719 return str;
720}
721
722void qla2x00_sp_free_dma(srb_t *sp)
723{
724 struct qla_hw_data *ha = sp->vha->hw;
725 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
726
727 if (sp->flags & SRB_DMA_VALID) {
728 scsi_dma_unmap(cmd);
729 sp->flags &= ~SRB_DMA_VALID;
730 }
731
732 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
733 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
734 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
735 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
736 }
737
738 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
739 /* List assured to be having elements */
740 qla2x00_clean_dsd_pool(ha, sp->u.scmd.crc_ctx);
741 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
742 }
743
744 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
745 struct crc_context *ctx0 = sp->u.scmd.crc_ctx;
746
747 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma);
748 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
749 }
750
751 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
752 struct ct6_dsd *ctx1 = &sp->u.scmd.ct6_ctx;
753
754 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
755 ctx1->fcp_cmnd_dma);
756 list_splice(&ctx1->dsd_list, &sp->qpair->dsd_list);
757 sp->qpair->dsd_inuse -= ctx1->dsd_use_cnt;
758 sp->qpair->dsd_avail += ctx1->dsd_use_cnt;
759 }
760
761 if (sp->flags & SRB_GOT_BUF)
762 qla_put_buf(sp->qpair, &sp->u.scmd.buf_dsc);
763}
764
765void qla2x00_sp_compl(srb_t *sp, int res)
766{
767 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
768 struct completion *comp = sp->comp;
769
770 /* kref: INIT */
771 kref_put(&sp->cmd_kref, qla2x00_sp_release);
772 cmd->result = res;
773 sp->type = 0;
774 scsi_done(cmd);
775 if (comp)
776 complete(comp);
777}
778
779void qla2xxx_qpair_sp_free_dma(srb_t *sp)
780{
781 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
782 struct qla_hw_data *ha = sp->fcport->vha->hw;
783
784 if (sp->flags & SRB_DMA_VALID) {
785 scsi_dma_unmap(cmd);
786 sp->flags &= ~SRB_DMA_VALID;
787 }
788
789 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
790 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
791 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
792 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
793 }
794
795 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
796 /* List assured to be having elements */
797 qla2x00_clean_dsd_pool(ha, sp->u.scmd.crc_ctx);
798 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
799 }
800
801 if (sp->flags & SRB_DIF_BUNDL_DMA_VALID) {
802 struct crc_context *difctx = sp->u.scmd.crc_ctx;
803 struct dsd_dma *dif_dsd, *nxt_dsd;
804
805 list_for_each_entry_safe(dif_dsd, nxt_dsd,
806 &difctx->ldif_dma_hndl_list, list) {
807 list_del(&dif_dsd->list);
808 dma_pool_free(ha->dif_bundl_pool, dif_dsd->dsd_addr,
809 dif_dsd->dsd_list_dma);
810 kfree(dif_dsd);
811 difctx->no_dif_bundl--;
812 }
813
814 list_for_each_entry_safe(dif_dsd, nxt_dsd,
815 &difctx->ldif_dsd_list, list) {
816 list_del(&dif_dsd->list);
817 dma_pool_free(ha->dl_dma_pool, dif_dsd->dsd_addr,
818 dif_dsd->dsd_list_dma);
819 kfree(dif_dsd);
820 difctx->no_ldif_dsd--;
821 }
822
823 if (difctx->no_ldif_dsd) {
824 ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022,
825 "%s: difctx->no_ldif_dsd=%x\n",
826 __func__, difctx->no_ldif_dsd);
827 }
828
829 if (difctx->no_dif_bundl) {
830 ql_dbg(ql_dbg_tgt+ql_dbg_verbose, sp->vha, 0xe022,
831 "%s: difctx->no_dif_bundl=%x\n",
832 __func__, difctx->no_dif_bundl);
833 }
834 sp->flags &= ~SRB_DIF_BUNDL_DMA_VALID;
835 }
836
837 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
838 struct ct6_dsd *ctx1 = &sp->u.scmd.ct6_ctx;
839
840 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
841 ctx1->fcp_cmnd_dma);
842 list_splice(&ctx1->dsd_list, &sp->qpair->dsd_list);
843 sp->qpair->dsd_inuse -= ctx1->dsd_use_cnt;
844 sp->qpair->dsd_avail += ctx1->dsd_use_cnt;
845 sp->flags &= ~SRB_FCP_CMND_DMA_VALID;
846 }
847
848 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
849 struct crc_context *ctx0 = sp->u.scmd.crc_ctx;
850
851 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma);
852 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
853 }
854
855 if (sp->flags & SRB_GOT_BUF)
856 qla_put_buf(sp->qpair, &sp->u.scmd.buf_dsc);
857}
858
859void qla2xxx_qpair_sp_compl(srb_t *sp, int res)
860{
861 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
862 struct completion *comp = sp->comp;
863
864 /* ref: INIT */
865 kref_put(&sp->cmd_kref, qla2x00_sp_release);
866 cmd->result = res;
867 sp->type = 0;
868 scsi_done(cmd);
869 if (comp)
870 complete(comp);
871}
872
873static int
874qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
875{
876 scsi_qla_host_t *vha = shost_priv(host);
877 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
878 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
879 struct qla_hw_data *ha = vha->hw;
880 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
881 srb_t *sp;
882 int rval;
883
884 if (unlikely(test_bit(UNLOADING, &base_vha->dpc_flags)) ||
885 WARN_ON_ONCE(!rport)) {
886 cmd->result = DID_NO_CONNECT << 16;
887 goto qc24_fail_command;
888 }
889
890 if (ha->mqenable) {
891 uint32_t tag;
892 uint16_t hwq;
893 struct qla_qpair *qpair = NULL;
894
895 tag = blk_mq_unique_tag(scsi_cmd_to_rq(cmd));
896 hwq = blk_mq_unique_tag_to_hwq(tag);
897 qpair = ha->queue_pair_map[hwq];
898
899 if (qpair)
900 return qla2xxx_mqueuecommand(host, cmd, qpair);
901 }
902
903 if (ha->flags.eeh_busy) {
904 if (ha->flags.pci_channel_io_perm_failure) {
905 ql_dbg(ql_dbg_aer, vha, 0x9010,
906 "PCI Channel IO permanent failure, exiting "
907 "cmd=%p.\n", cmd);
908 cmd->result = DID_NO_CONNECT << 16;
909 } else {
910 ql_dbg(ql_dbg_aer, vha, 0x9011,
911 "EEH_Busy, Requeuing the cmd=%p.\n", cmd);
912 cmd->result = DID_REQUEUE << 16;
913 }
914 goto qc24_fail_command;
915 }
916
917 rval = fc_remote_port_chkready(rport);
918 if (rval) {
919 cmd->result = rval;
920 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003,
921 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
922 cmd, rval);
923 goto qc24_fail_command;
924 }
925
926 if (!vha->flags.difdix_supported &&
927 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
928 ql_dbg(ql_dbg_io, vha, 0x3004,
929 "DIF Cap not reg, fail DIF capable cmd's:%p.\n",
930 cmd);
931 cmd->result = DID_NO_CONNECT << 16;
932 goto qc24_fail_command;
933 }
934
935 if (!fcport || fcport->deleted) {
936 cmd->result = DID_IMM_RETRY << 16;
937 goto qc24_fail_command;
938 }
939
940 if (atomic_read(&fcport->state) != FCS_ONLINE || fcport->deleted) {
941 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
942 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
943 ql_dbg(ql_dbg_io, vha, 0x3005,
944 "Returning DNC, fcport_state=%d loop_state=%d.\n",
945 atomic_read(&fcport->state),
946 atomic_read(&base_vha->loop_state));
947 cmd->result = DID_NO_CONNECT << 16;
948 goto qc24_fail_command;
949 }
950 goto qc24_target_busy;
951 }
952
953 /*
954 * Return target busy if we've received a non-zero retry_delay_timer
955 * in a FCP_RSP.
956 */
957 if (fcport->retry_delay_timestamp == 0) {
958 /* retry delay not set */
959 } else if (time_after(jiffies, fcport->retry_delay_timestamp))
960 fcport->retry_delay_timestamp = 0;
961 else
962 goto qc24_target_busy;
963
964 sp = scsi_cmd_priv(cmd);
965 /* ref: INIT */
966 qla2xxx_init_sp(sp, vha, vha->hw->base_qpair, fcport);
967
968 sp->u.scmd.cmd = cmd;
969 sp->type = SRB_SCSI_CMD;
970 sp->free = qla2x00_sp_free_dma;
971 sp->done = qla2x00_sp_compl;
972
973 rval = ha->isp_ops->start_scsi(sp);
974 if (rval != QLA_SUCCESS) {
975 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013,
976 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
977 goto qc24_host_busy_free_sp;
978 }
979
980 return 0;
981
982qc24_host_busy_free_sp:
983 /* ref: INIT */
984 kref_put(&sp->cmd_kref, qla2x00_sp_release);
985
986qc24_target_busy:
987 return SCSI_MLQUEUE_TARGET_BUSY;
988
989qc24_fail_command:
990 scsi_done(cmd);
991
992 return 0;
993}
994
995/* For MQ supported I/O */
996int
997qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
998 struct qla_qpair *qpair)
999{
1000 scsi_qla_host_t *vha = shost_priv(host);
1001 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1002 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
1003 struct qla_hw_data *ha = vha->hw;
1004 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
1005 srb_t *sp;
1006 int rval;
1007
1008 rval = rport ? fc_remote_port_chkready(rport) : (DID_NO_CONNECT << 16);
1009 if (rval) {
1010 cmd->result = rval;
1011 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3076,
1012 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
1013 cmd, rval);
1014 goto qc24_fail_command;
1015 }
1016
1017 if (!qpair->online) {
1018 ql_dbg(ql_dbg_io, vha, 0x3077,
1019 "qpair not online. eeh_busy=%d.\n", ha->flags.eeh_busy);
1020 cmd->result = DID_NO_CONNECT << 16;
1021 goto qc24_fail_command;
1022 }
1023
1024 if (!fcport || fcport->deleted) {
1025 cmd->result = DID_IMM_RETRY << 16;
1026 goto qc24_fail_command;
1027 }
1028
1029 if (atomic_read(&fcport->state) != FCS_ONLINE || fcport->deleted) {
1030 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
1031 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
1032 ql_dbg(ql_dbg_io, vha, 0x3077,
1033 "Returning DNC, fcport_state=%d loop_state=%d.\n",
1034 atomic_read(&fcport->state),
1035 atomic_read(&base_vha->loop_state));
1036 cmd->result = DID_NO_CONNECT << 16;
1037 goto qc24_fail_command;
1038 }
1039 goto qc24_target_busy;
1040 }
1041
1042 /*
1043 * Return target busy if we've received a non-zero retry_delay_timer
1044 * in a FCP_RSP.
1045 */
1046 if (fcport->retry_delay_timestamp == 0) {
1047 /* retry delay not set */
1048 } else if (time_after(jiffies, fcport->retry_delay_timestamp))
1049 fcport->retry_delay_timestamp = 0;
1050 else
1051 goto qc24_target_busy;
1052
1053 sp = scsi_cmd_priv(cmd);
1054 /* ref: INIT */
1055 qla2xxx_init_sp(sp, vha, qpair, fcport);
1056
1057 sp->u.scmd.cmd = cmd;
1058 sp->type = SRB_SCSI_CMD;
1059 sp->free = qla2xxx_qpair_sp_free_dma;
1060 sp->done = qla2xxx_qpair_sp_compl;
1061
1062 rval = ha->isp_ops->start_scsi_mq(sp);
1063 if (rval != QLA_SUCCESS) {
1064 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3078,
1065 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
1066 goto qc24_host_busy_free_sp;
1067 }
1068
1069 return 0;
1070
1071qc24_host_busy_free_sp:
1072 /* ref: INIT */
1073 kref_put(&sp->cmd_kref, qla2x00_sp_release);
1074
1075qc24_target_busy:
1076 return SCSI_MLQUEUE_TARGET_BUSY;
1077
1078qc24_fail_command:
1079 scsi_done(cmd);
1080
1081 return 0;
1082}
1083
1084/*
1085 * qla2x00_wait_for_hba_online
1086 * Wait till the HBA is online after going through
1087 * <= MAX_RETRIES_OF_ISP_ABORT or
1088 * finally HBA is disabled ie marked offline
1089 *
1090 * Input:
1091 * ha - pointer to host adapter structure
1092 *
1093 * Note:
1094 * Does context switching-Release SPIN_LOCK
1095 * (if any) before calling this routine.
1096 *
1097 * Return:
1098 * Success (Adapter is online) : 0
1099 * Failed (Adapter is offline/disabled) : 1
1100 */
1101int
1102qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
1103{
1104 int return_status;
1105 unsigned long wait_online;
1106 struct qla_hw_data *ha = vha->hw;
1107 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1108
1109 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1110 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1111 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1112 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1113 ha->dpc_active) && time_before(jiffies, wait_online)) {
1114
1115 msleep(1000);
1116 }
1117 if (base_vha->flags.online)
1118 return_status = QLA_SUCCESS;
1119 else
1120 return_status = QLA_FUNCTION_FAILED;
1121
1122 return (return_status);
1123}
1124
1125static inline int test_fcport_count(scsi_qla_host_t *vha)
1126{
1127 struct qla_hw_data *ha = vha->hw;
1128 unsigned long flags;
1129 int res;
1130 /* Return 0 = sleep, x=wake */
1131
1132 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1133 ql_dbg(ql_dbg_init, vha, 0x00ec,
1134 "tgt %p, fcport_count=%d\n",
1135 vha, vha->fcport_count);
1136 res = (vha->fcport_count == 0);
1137 if (res) {
1138 struct fc_port *fcport;
1139
1140 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1141 if (fcport->deleted != QLA_SESS_DELETED) {
1142 /* session(s) may not be fully logged in
1143 * (ie fcport_count=0), but session
1144 * deletion thread(s) may be inflight.
1145 */
1146
1147 res = 0;
1148 break;
1149 }
1150 }
1151 }
1152 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
1153
1154 return res;
1155}
1156
1157/*
1158 * qla2x00_wait_for_sess_deletion can only be called from remove_one.
1159 * it has dependency on UNLOADING flag to stop device discovery
1160 */
1161void
1162qla2x00_wait_for_sess_deletion(scsi_qla_host_t *vha)
1163{
1164 u8 i;
1165
1166 qla2x00_mark_all_devices_lost(vha);
1167
1168 for (i = 0; i < 10; i++) {
1169 if (wait_event_timeout(vha->fcport_waitQ,
1170 test_fcport_count(vha), HZ) > 0)
1171 break;
1172 }
1173
1174 flush_workqueue(vha->hw->wq);
1175}
1176
1177/*
1178 * qla2x00_wait_for_hba_ready
1179 * Wait till the HBA is ready before doing driver unload
1180 *
1181 * Input:
1182 * ha - pointer to host adapter structure
1183 *
1184 * Note:
1185 * Does context switching-Release SPIN_LOCK
1186 * (if any) before calling this routine.
1187 *
1188 */
1189static void
1190qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha)
1191{
1192 struct qla_hw_data *ha = vha->hw;
1193 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1194
1195 while ((qla2x00_reset_active(vha) || ha->dpc_active ||
1196 ha->flags.mbox_busy) ||
1197 test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags) ||
1198 test_bit(FX00_TARGET_SCAN, &vha->dpc_flags)) {
1199 if (test_bit(UNLOADING, &base_vha->dpc_flags))
1200 break;
1201 msleep(1000);
1202 }
1203}
1204
1205int
1206qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
1207{
1208 int return_status;
1209 unsigned long wait_reset;
1210 struct qla_hw_data *ha = vha->hw;
1211 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1212
1213 wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1214 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1215 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1216 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1217 ha->dpc_active) && time_before(jiffies, wait_reset)) {
1218
1219 msleep(1000);
1220
1221 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
1222 ha->flags.chip_reset_done)
1223 break;
1224 }
1225 if (ha->flags.chip_reset_done)
1226 return_status = QLA_SUCCESS;
1227 else
1228 return_status = QLA_FUNCTION_FAILED;
1229
1230 return return_status;
1231}
1232
1233/**************************************************************************
1234* qla2xxx_eh_abort
1235*
1236* Description:
1237* The abort function will abort the specified command.
1238*
1239* Input:
1240* cmd = Linux SCSI command packet to be aborted.
1241*
1242* Returns:
1243* Either SUCCESS or FAILED.
1244*
1245* Note:
1246* Only return FAILED if command not returned by firmware.
1247**************************************************************************/
1248static int
1249qla2xxx_eh_abort(struct scsi_cmnd *cmd)
1250{
1251 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1252 DECLARE_COMPLETION_ONSTACK(comp);
1253 srb_t *sp;
1254 int ret;
1255 unsigned int id;
1256 uint64_t lun;
1257 int rval;
1258 struct qla_hw_data *ha = vha->hw;
1259 uint32_t ratov_j;
1260 struct qla_qpair *qpair;
1261 unsigned long flags;
1262 int fast_fail_status = SUCCESS;
1263
1264 if (qla2x00_isp_reg_stat(ha)) {
1265 ql_log(ql_log_info, vha, 0x8042,
1266 "PCI/Register disconnect, exiting.\n");
1267 qla_pci_set_eeh_busy(vha);
1268 return FAILED;
1269 }
1270
1271 /* Save any FAST_IO_FAIL value to return later if abort succeeds */
1272 ret = fc_block_scsi_eh(cmd);
1273 if (ret != 0)
1274 fast_fail_status = ret;
1275
1276 sp = scsi_cmd_priv(cmd);
1277 qpair = sp->qpair;
1278
1279 vha->cmd_timeout_cnt++;
1280
1281 if ((sp->fcport && sp->fcport->deleted) || !qpair)
1282 return fast_fail_status != SUCCESS ? fast_fail_status : FAILED;
1283
1284 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
1285 sp->comp = ∁
1286 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
1287
1288
1289 id = cmd->device->id;
1290 lun = cmd->device->lun;
1291
1292 ql_dbg(ql_dbg_taskm, vha, 0x8002,
1293 "Aborting from RISC nexus=%ld:%d:%llu sp=%p cmd=%p handle=%x\n",
1294 vha->host_no, id, lun, sp, cmd, sp->handle);
1295
1296 /*
1297 * Abort will release the original Command/sp from FW. Let the
1298 * original command call scsi_done. In return, he will wakeup
1299 * this sleeping thread.
1300 */
1301 rval = ha->isp_ops->abort_command(sp);
1302
1303 ql_dbg(ql_dbg_taskm, vha, 0x8003,
1304 "Abort command mbx cmd=%p, rval=%x.\n", cmd, rval);
1305
1306 /* Wait for the command completion. */
1307 ratov_j = ha->r_a_tov/10 * 4 * 1000;
1308 ratov_j = msecs_to_jiffies(ratov_j);
1309 switch (rval) {
1310 case QLA_SUCCESS:
1311 if (!wait_for_completion_timeout(&comp, ratov_j)) {
1312 ql_dbg(ql_dbg_taskm, vha, 0xffff,
1313 "%s: Abort wait timer (4 * R_A_TOV[%d]) expired\n",
1314 __func__, ha->r_a_tov/10);
1315 ret = FAILED;
1316 } else {
1317 ret = fast_fail_status;
1318 }
1319 break;
1320 default:
1321 ret = FAILED;
1322 break;
1323 }
1324
1325 sp->comp = NULL;
1326
1327 ql_log(ql_log_info, vha, 0x801c,
1328 "Abort command issued nexus=%ld:%d:%llu -- %x.\n",
1329 vha->host_no, id, lun, ret);
1330
1331 return ret;
1332}
1333
1334#define ABORT_POLLING_PERIOD 1000
1335#define ABORT_WAIT_ITER ((2 * 1000) / (ABORT_POLLING_PERIOD))
1336
1337/*
1338 * Returns: QLA_SUCCESS or QLA_FUNCTION_FAILED.
1339 */
1340static int
1341__qla2x00_eh_wait_for_pending_commands(struct qla_qpair *qpair, unsigned int t,
1342 uint64_t l, enum nexus_wait_type type)
1343{
1344 int cnt, match, status;
1345 unsigned long flags;
1346 scsi_qla_host_t *vha = qpair->vha;
1347 struct req_que *req = qpair->req;
1348 srb_t *sp;
1349 struct scsi_cmnd *cmd;
1350 unsigned long wait_iter = ABORT_WAIT_ITER;
1351 bool found;
1352 struct qla_hw_data *ha = vha->hw;
1353
1354 status = QLA_SUCCESS;
1355
1356 while (wait_iter--) {
1357 found = false;
1358
1359 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
1360 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) {
1361 sp = req->outstanding_cmds[cnt];
1362 if (!sp)
1363 continue;
1364 if (sp->type != SRB_SCSI_CMD)
1365 continue;
1366 if (vha->vp_idx != sp->vha->vp_idx)
1367 continue;
1368 match = 0;
1369 cmd = GET_CMD_SP(sp);
1370 switch (type) {
1371 case WAIT_HOST:
1372 match = 1;
1373 break;
1374 case WAIT_TARGET:
1375 if (sp->fcport)
1376 match = sp->fcport->d_id.b24 == t;
1377 else
1378 match = 0;
1379 break;
1380 case WAIT_LUN:
1381 if (sp->fcport)
1382 match = (sp->fcport->d_id.b24 == t &&
1383 cmd->device->lun == l);
1384 else
1385 match = 0;
1386 break;
1387 }
1388 if (!match)
1389 continue;
1390
1391 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
1392
1393 if (unlikely(pci_channel_offline(ha->pdev)) ||
1394 ha->flags.eeh_busy) {
1395 ql_dbg(ql_dbg_taskm, vha, 0x8005,
1396 "Return:eh_wait.\n");
1397 return status;
1398 }
1399
1400 /*
1401 * SRB_SCSI_CMD is still in the outstanding_cmds array.
1402 * it means scsi_done has not called. Wait for it to
1403 * clear from outstanding_cmds.
1404 */
1405 msleep(ABORT_POLLING_PERIOD);
1406 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
1407 found = true;
1408 }
1409 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
1410
1411 if (!found)
1412 break;
1413 }
1414
1415 if (wait_iter == -1)
1416 status = QLA_FUNCTION_FAILED;
1417
1418 return status;
1419}
1420
1421int
1422qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
1423 uint64_t l, enum nexus_wait_type type)
1424{
1425 struct qla_qpair *qpair;
1426 struct qla_hw_data *ha = vha->hw;
1427 int i, status = QLA_SUCCESS;
1428
1429 status = __qla2x00_eh_wait_for_pending_commands(ha->base_qpair, t, l,
1430 type);
1431 for (i = 0; status == QLA_SUCCESS && i < ha->max_qpairs; i++) {
1432 qpair = ha->queue_pair_map[i];
1433 if (!qpair)
1434 continue;
1435 status = __qla2x00_eh_wait_for_pending_commands(qpair, t, l,
1436 type);
1437 }
1438 return status;
1439}
1440
1441static char *reset_errors[] = {
1442 "HBA not online",
1443 "HBA not ready",
1444 "Task management failed",
1445 "Waiting for command completions",
1446};
1447
1448static int
1449qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
1450{
1451 struct scsi_device *sdev = cmd->device;
1452 scsi_qla_host_t *vha = shost_priv(sdev->host);
1453 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1454 fc_port_t *fcport = (struct fc_port *) sdev->hostdata;
1455 struct qla_hw_data *ha = vha->hw;
1456 int err;
1457
1458 if (qla2x00_isp_reg_stat(ha)) {
1459 ql_log(ql_log_info, vha, 0x803e,
1460 "PCI/Register disconnect, exiting.\n");
1461 qla_pci_set_eeh_busy(vha);
1462 return FAILED;
1463 }
1464
1465 if (!fcport) {
1466 return FAILED;
1467 }
1468
1469 err = fc_block_rport(rport);
1470 if (err != 0)
1471 return err;
1472
1473 if (fcport->deleted)
1474 return FAILED;
1475
1476 ql_log(ql_log_info, vha, 0x8009,
1477 "DEVICE RESET ISSUED nexus=%ld:%d:%llu cmd=%p.\n", vha->host_no,
1478 sdev->id, sdev->lun, cmd);
1479
1480 err = 0;
1481 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1482 ql_log(ql_log_warn, vha, 0x800a,
1483 "Wait for hba online failed for cmd=%p.\n", cmd);
1484 goto eh_reset_failed;
1485 }
1486 err = 2;
1487 if (ha->isp_ops->lun_reset(fcport, sdev->lun, 1)
1488 != QLA_SUCCESS) {
1489 ql_log(ql_log_warn, vha, 0x800c,
1490 "do_reset failed for cmd=%p.\n", cmd);
1491 goto eh_reset_failed;
1492 }
1493 err = 3;
1494 if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24,
1495 cmd->device->lun,
1496 WAIT_LUN) != QLA_SUCCESS) {
1497 ql_log(ql_log_warn, vha, 0x800d,
1498 "wait for pending cmds failed for cmd=%p.\n", cmd);
1499 goto eh_reset_failed;
1500 }
1501
1502 ql_log(ql_log_info, vha, 0x800e,
1503 "DEVICE RESET SUCCEEDED nexus:%ld:%d:%llu cmd=%p.\n",
1504 vha->host_no, sdev->id, sdev->lun, cmd);
1505
1506 return SUCCESS;
1507
1508eh_reset_failed:
1509 ql_log(ql_log_info, vha, 0x800f,
1510 "DEVICE RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n",
1511 reset_errors[err], vha->host_no, sdev->id, sdev->lun,
1512 cmd);
1513 vha->reset_cmd_err_cnt++;
1514 return FAILED;
1515}
1516
1517static int
1518qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
1519{
1520 struct scsi_device *sdev = cmd->device;
1521 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1522 scsi_qla_host_t *vha = shost_priv(rport_to_shost(rport));
1523 struct qla_hw_data *ha = vha->hw;
1524 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1525 int err;
1526
1527 if (qla2x00_isp_reg_stat(ha)) {
1528 ql_log(ql_log_info, vha, 0x803f,
1529 "PCI/Register disconnect, exiting.\n");
1530 qla_pci_set_eeh_busy(vha);
1531 return FAILED;
1532 }
1533
1534 if (!fcport) {
1535 return FAILED;
1536 }
1537
1538 err = fc_block_rport(rport);
1539 if (err != 0)
1540 return err;
1541
1542 if (fcport->deleted)
1543 return FAILED;
1544
1545 ql_log(ql_log_info, vha, 0x8009,
1546 "TARGET RESET ISSUED nexus=%ld:%d cmd=%p.\n", vha->host_no,
1547 sdev->id, cmd);
1548
1549 err = 0;
1550 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1551 ql_log(ql_log_warn, vha, 0x800a,
1552 "Wait for hba online failed for cmd=%p.\n", cmd);
1553 goto eh_reset_failed;
1554 }
1555 err = 2;
1556 if (ha->isp_ops->target_reset(fcport, 0, 0) != QLA_SUCCESS) {
1557 ql_log(ql_log_warn, vha, 0x800c,
1558 "target_reset failed for cmd=%p.\n", cmd);
1559 goto eh_reset_failed;
1560 }
1561 err = 3;
1562 if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24, 0,
1563 WAIT_TARGET) != QLA_SUCCESS) {
1564 ql_log(ql_log_warn, vha, 0x800d,
1565 "wait for pending cmds failed for cmd=%p.\n", cmd);
1566 goto eh_reset_failed;
1567 }
1568
1569 ql_log(ql_log_info, vha, 0x800e,
1570 "TARGET RESET SUCCEEDED nexus:%ld:%d cmd=%p.\n",
1571 vha->host_no, sdev->id, cmd);
1572
1573 return SUCCESS;
1574
1575eh_reset_failed:
1576 ql_log(ql_log_info, vha, 0x800f,
1577 "TARGET RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n",
1578 reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun,
1579 cmd);
1580 vha->reset_cmd_err_cnt++;
1581 return FAILED;
1582}
1583
1584/**************************************************************************
1585* qla2xxx_eh_bus_reset
1586*
1587* Description:
1588* The bus reset function will reset the bus and abort any executing
1589* commands.
1590*
1591* Input:
1592* cmd = Linux SCSI command packet of the command that cause the
1593* bus reset.
1594*
1595* Returns:
1596* SUCCESS/FAILURE (defined as macro in scsi.h).
1597*
1598**************************************************************************/
1599static int
1600qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1601{
1602 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1603 int ret = FAILED;
1604 unsigned int id;
1605 uint64_t lun;
1606 struct qla_hw_data *ha = vha->hw;
1607
1608 if (qla2x00_isp_reg_stat(ha)) {
1609 ql_log(ql_log_info, vha, 0x8040,
1610 "PCI/Register disconnect, exiting.\n");
1611 qla_pci_set_eeh_busy(vha);
1612 return FAILED;
1613 }
1614
1615 id = cmd->device->id;
1616 lun = cmd->device->lun;
1617
1618 if (qla2x00_chip_is_down(vha))
1619 return ret;
1620
1621 ql_log(ql_log_info, vha, 0x8012,
1622 "BUS RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1623
1624 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1625 ql_log(ql_log_fatal, vha, 0x8013,
1626 "Wait for hba online failed board disabled.\n");
1627 goto eh_bus_reset_done;
1628 }
1629
1630 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
1631 ret = SUCCESS;
1632
1633 if (ret == FAILED)
1634 goto eh_bus_reset_done;
1635
1636 /* Flush outstanding commands. */
1637 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
1638 QLA_SUCCESS) {
1639 ql_log(ql_log_warn, vha, 0x8014,
1640 "Wait for pending commands failed.\n");
1641 ret = FAILED;
1642 }
1643
1644eh_bus_reset_done:
1645 ql_log(ql_log_warn, vha, 0x802b,
1646 "BUS RESET %s nexus=%ld:%d:%llu.\n",
1647 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1648
1649 return ret;
1650}
1651
1652/**************************************************************************
1653* qla2xxx_eh_host_reset
1654*
1655* Description:
1656* The reset function will reset the Adapter.
1657*
1658* Input:
1659* cmd = Linux SCSI command packet of the command that cause the
1660* adapter reset.
1661*
1662* Returns:
1663* Either SUCCESS or FAILED.
1664*
1665* Note:
1666**************************************************************************/
1667static int
1668qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1669{
1670 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1671 struct qla_hw_data *ha = vha->hw;
1672 int ret = FAILED;
1673 unsigned int id;
1674 uint64_t lun;
1675 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1676
1677 if (qla2x00_isp_reg_stat(ha)) {
1678 ql_log(ql_log_info, vha, 0x8041,
1679 "PCI/Register disconnect, exiting.\n");
1680 qla_pci_set_eeh_busy(vha);
1681 return SUCCESS;
1682 }
1683
1684 id = cmd->device->id;
1685 lun = cmd->device->lun;
1686
1687 ql_log(ql_log_info, vha, 0x8018,
1688 "ADAPTER RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1689
1690 /*
1691 * No point in issuing another reset if one is active. Also do not
1692 * attempt a reset if we are updating flash.
1693 */
1694 if (qla2x00_reset_active(vha) || ha->optrom_state != QLA_SWAITING)
1695 goto eh_host_reset_lock;
1696
1697 if (vha != base_vha) {
1698 if (qla2x00_vp_abort_isp(vha))
1699 goto eh_host_reset_lock;
1700 } else {
1701 if (IS_P3P_TYPE(vha->hw)) {
1702 if (!qla82xx_fcoe_ctx_reset(vha)) {
1703 /* Ctx reset success */
1704 ret = SUCCESS;
1705 goto eh_host_reset_lock;
1706 }
1707 /* fall thru if ctx reset failed */
1708 }
1709 if (ha->wq)
1710 flush_workqueue(ha->wq);
1711
1712 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1713 if (ha->isp_ops->abort_isp(base_vha)) {
1714 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1715 /* failed. schedule dpc to try */
1716 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1717
1718 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1719 ql_log(ql_log_warn, vha, 0x802a,
1720 "wait for hba online failed.\n");
1721 goto eh_host_reset_lock;
1722 }
1723 }
1724 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1725 }
1726
1727 /* Waiting for command to be returned to OS.*/
1728 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1729 QLA_SUCCESS)
1730 ret = SUCCESS;
1731
1732eh_host_reset_lock:
1733 ql_log(ql_log_info, vha, 0x8017,
1734 "ADAPTER RESET %s nexus=%ld:%d:%llu.\n",
1735 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1736
1737 return ret;
1738}
1739
1740/*
1741* qla2x00_loop_reset
1742* Issue loop reset.
1743*
1744* Input:
1745* ha = adapter block pointer.
1746*
1747* Returns:
1748* 0 = success
1749*/
1750int
1751qla2x00_loop_reset(scsi_qla_host_t *vha)
1752{
1753 int ret;
1754 struct qla_hw_data *ha = vha->hw;
1755
1756 if (IS_QLAFX00(ha))
1757 return QLA_SUCCESS;
1758
1759 if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) {
1760 atomic_set(&vha->loop_state, LOOP_DOWN);
1761 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1762 qla2x00_mark_all_devices_lost(vha);
1763 ret = qla2x00_full_login_lip(vha);
1764 if (ret != QLA_SUCCESS) {
1765 ql_dbg(ql_dbg_taskm, vha, 0x802d,
1766 "full_login_lip=%d.\n", ret);
1767 }
1768 }
1769
1770 if (ha->flags.enable_lip_reset) {
1771 ret = qla2x00_lip_reset(vha);
1772 if (ret != QLA_SUCCESS)
1773 ql_dbg(ql_dbg_taskm, vha, 0x802e,
1774 "lip_reset failed (%d).\n", ret);
1775 }
1776
1777 /* Issue marker command only when we are going to start the I/O */
1778 vha->marker_needed = 1;
1779
1780 return QLA_SUCCESS;
1781}
1782
1783/*
1784 * The caller must ensure that no completion interrupts will happen
1785 * while this function is in progress.
1786 */
1787static void qla2x00_abort_srb(struct qla_qpair *qp, srb_t *sp, const int res,
1788 unsigned long *flags)
1789 __releases(qp->qp_lock_ptr)
1790 __acquires(qp->qp_lock_ptr)
1791{
1792 DECLARE_COMPLETION_ONSTACK(comp);
1793 scsi_qla_host_t *vha = qp->vha;
1794 struct qla_hw_data *ha = vha->hw;
1795 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
1796 int rval;
1797 bool ret_cmd;
1798 uint32_t ratov_j;
1799
1800 lockdep_assert_held(qp->qp_lock_ptr);
1801
1802 if (qla2x00_chip_is_down(vha)) {
1803 sp->done(sp, res);
1804 return;
1805 }
1806
1807 if (sp->type == SRB_NVME_CMD || sp->type == SRB_NVME_LS ||
1808 (sp->type == SRB_SCSI_CMD && !ha->flags.eeh_busy &&
1809 !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) &&
1810 !qla2x00_isp_reg_stat(ha))) {
1811 if (sp->comp) {
1812 sp->done(sp, res);
1813 return;
1814 }
1815
1816 sp->comp = ∁
1817 spin_unlock_irqrestore(qp->qp_lock_ptr, *flags);
1818
1819 rval = ha->isp_ops->abort_command(sp);
1820 /* Wait for command completion. */
1821 ret_cmd = false;
1822 ratov_j = ha->r_a_tov/10 * 4 * 1000;
1823 ratov_j = msecs_to_jiffies(ratov_j);
1824 switch (rval) {
1825 case QLA_SUCCESS:
1826 if (wait_for_completion_timeout(&comp, ratov_j)) {
1827 ql_dbg(ql_dbg_taskm, vha, 0xffff,
1828 "%s: Abort wait timer (4 * R_A_TOV[%d]) expired\n",
1829 __func__, ha->r_a_tov/10);
1830 ret_cmd = true;
1831 }
1832 /* else FW return SP to driver */
1833 break;
1834 default:
1835 ret_cmd = true;
1836 break;
1837 }
1838
1839 spin_lock_irqsave(qp->qp_lock_ptr, *flags);
1840 switch (sp->type) {
1841 case SRB_SCSI_CMD:
1842 if (ret_cmd && blk_mq_request_started(scsi_cmd_to_rq(cmd)))
1843 sp->done(sp, res);
1844 break;
1845 default:
1846 if (ret_cmd)
1847 sp->done(sp, res);
1848 break;
1849 }
1850 } else {
1851 sp->done(sp, res);
1852 }
1853}
1854
1855/*
1856 * The caller must ensure that no completion interrupts will happen
1857 * while this function is in progress.
1858 */
1859static void
1860__qla2x00_abort_all_cmds(struct qla_qpair *qp, int res)
1861{
1862 int cnt;
1863 unsigned long flags;
1864 srb_t *sp;
1865 scsi_qla_host_t *vha = qp->vha;
1866 struct qla_hw_data *ha = vha->hw;
1867 struct req_que *req;
1868 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
1869 struct qla_tgt_cmd *cmd;
1870
1871 if (!ha->req_q_map)
1872 return;
1873 spin_lock_irqsave(qp->qp_lock_ptr, flags);
1874 req = qp->req;
1875 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) {
1876 sp = req->outstanding_cmds[cnt];
1877 if (sp) {
1878 /*
1879 * perform lockless completion during driver unload
1880 */
1881 if (qla2x00_chip_is_down(vha)) {
1882 req->outstanding_cmds[cnt] = NULL;
1883 spin_unlock_irqrestore(qp->qp_lock_ptr, flags);
1884 sp->done(sp, res);
1885 spin_lock_irqsave(qp->qp_lock_ptr, flags);
1886 continue;
1887 }
1888
1889 switch (sp->cmd_type) {
1890 case TYPE_SRB:
1891 qla2x00_abort_srb(qp, sp, res, &flags);
1892 break;
1893 case TYPE_TGT_CMD:
1894 if (!vha->hw->tgt.tgt_ops || !tgt ||
1895 qla_ini_mode_enabled(vha)) {
1896 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf003,
1897 "HOST-ABORT-HNDLR: dpc_flags=%lx. Target mode disabled\n",
1898 vha->dpc_flags);
1899 continue;
1900 }
1901 cmd = (struct qla_tgt_cmd *)sp;
1902 cmd->aborted = 1;
1903 break;
1904 case TYPE_TGT_TMCMD:
1905 /* Skip task management functions. */
1906 break;
1907 default:
1908 break;
1909 }
1910 req->outstanding_cmds[cnt] = NULL;
1911 }
1912 }
1913 spin_unlock_irqrestore(qp->qp_lock_ptr, flags);
1914}
1915
1916/*
1917 * The caller must ensure that no completion interrupts will happen
1918 * while this function is in progress.
1919 */
1920void
1921qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
1922{
1923 int que;
1924 struct qla_hw_data *ha = vha->hw;
1925
1926 /* Continue only if initialization complete. */
1927 if (!ha->base_qpair)
1928 return;
1929 __qla2x00_abort_all_cmds(ha->base_qpair, res);
1930
1931 if (!ha->queue_pair_map)
1932 return;
1933 for (que = 0; que < ha->max_qpairs; que++) {
1934 if (!ha->queue_pair_map[que])
1935 continue;
1936
1937 __qla2x00_abort_all_cmds(ha->queue_pair_map[que], res);
1938 }
1939}
1940
1941static int
1942qla2xxx_slave_alloc(struct scsi_device *sdev)
1943{
1944 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1945
1946 if (!rport || fc_remote_port_chkready(rport))
1947 return -ENXIO;
1948
1949 sdev->hostdata = *(fc_port_t **)rport->dd_data;
1950
1951 return 0;
1952}
1953
1954static int
1955qla2xxx_slave_configure(struct scsi_device *sdev)
1956{
1957 scsi_qla_host_t *vha = shost_priv(sdev->host);
1958 struct req_que *req = vha->req;
1959
1960 if (IS_T10_PI_CAPABLE(vha->hw))
1961 blk_queue_update_dma_alignment(sdev->request_queue, 0x7);
1962
1963 scsi_change_queue_depth(sdev, req->max_q_depth);
1964 return 0;
1965}
1966
1967static void
1968qla2xxx_slave_destroy(struct scsi_device *sdev)
1969{
1970 sdev->hostdata = NULL;
1971}
1972
1973/**
1974 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1975 * @ha: HA context
1976 *
1977 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1978 * supported addressing method.
1979 */
1980static void
1981qla2x00_config_dma_addressing(struct qla_hw_data *ha)
1982{
1983 /* Assume a 32bit DMA mask. */
1984 ha->flags.enable_64bit_addressing = 0;
1985
1986 if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1987 /* Any upper-dword bits set? */
1988 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1989 !dma_set_coherent_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1990 /* Ok, a 64bit DMA mask is applicable. */
1991 ha->flags.enable_64bit_addressing = 1;
1992 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1993 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
1994 return;
1995 }
1996 }
1997
1998 dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1999 dma_set_coherent_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
2000}
2001
2002static void
2003qla2x00_enable_intrs(struct qla_hw_data *ha)
2004{
2005 unsigned long flags = 0;
2006 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2007
2008 spin_lock_irqsave(&ha->hardware_lock, flags);
2009 ha->interrupts_on = 1;
2010 /* enable risc and host interrupts */
2011 wrt_reg_word(®->ictrl, ICR_EN_INT | ICR_EN_RISC);
2012 rd_reg_word(®->ictrl);
2013 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2014
2015}
2016
2017static void
2018qla2x00_disable_intrs(struct qla_hw_data *ha)
2019{
2020 unsigned long flags = 0;
2021 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2022
2023 spin_lock_irqsave(&ha->hardware_lock, flags);
2024 ha->interrupts_on = 0;
2025 /* disable risc and host interrupts */
2026 wrt_reg_word(®->ictrl, 0);
2027 rd_reg_word(®->ictrl);
2028 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2029}
2030
2031static void
2032qla24xx_enable_intrs(struct qla_hw_data *ha)
2033{
2034 unsigned long flags = 0;
2035 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
2036
2037 spin_lock_irqsave(&ha->hardware_lock, flags);
2038 ha->interrupts_on = 1;
2039 wrt_reg_dword(®->ictrl, ICRX_EN_RISC_INT);
2040 rd_reg_dword(®->ictrl);
2041 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2042}
2043
2044static void
2045qla24xx_disable_intrs(struct qla_hw_data *ha)
2046{
2047 unsigned long flags = 0;
2048 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
2049
2050 if (IS_NOPOLLING_TYPE(ha))
2051 return;
2052 spin_lock_irqsave(&ha->hardware_lock, flags);
2053 ha->interrupts_on = 0;
2054 wrt_reg_dword(®->ictrl, 0);
2055 rd_reg_dword(®->ictrl);
2056 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2057}
2058
2059static int
2060qla2x00_iospace_config(struct qla_hw_data *ha)
2061{
2062 resource_size_t pio;
2063 uint16_t msix;
2064
2065 if (pci_request_selected_regions(ha->pdev, ha->bars,
2066 QLA2XXX_DRIVER_NAME)) {
2067 ql_log_pci(ql_log_fatal, ha->pdev, 0x0011,
2068 "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
2069 pci_name(ha->pdev));
2070 goto iospace_error_exit;
2071 }
2072 if (!(ha->bars & 1))
2073 goto skip_pio;
2074
2075 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
2076 pio = pci_resource_start(ha->pdev, 0);
2077 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
2078 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
2079 ql_log_pci(ql_log_warn, ha->pdev, 0x0012,
2080 "Invalid pci I/O region size (%s).\n",
2081 pci_name(ha->pdev));
2082 pio = 0;
2083 }
2084 } else {
2085 ql_log_pci(ql_log_warn, ha->pdev, 0x0013,
2086 "Region #0 no a PIO resource (%s).\n",
2087 pci_name(ha->pdev));
2088 pio = 0;
2089 }
2090 ha->pio_address = pio;
2091 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014,
2092 "PIO address=%llu.\n",
2093 (unsigned long long)ha->pio_address);
2094
2095skip_pio:
2096 /* Use MMIO operations for all accesses. */
2097 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
2098 ql_log_pci(ql_log_fatal, ha->pdev, 0x0015,
2099 "Region #1 not an MMIO resource (%s), aborting.\n",
2100 pci_name(ha->pdev));
2101 goto iospace_error_exit;
2102 }
2103 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
2104 ql_log_pci(ql_log_fatal, ha->pdev, 0x0016,
2105 "Invalid PCI mem region size (%s), aborting.\n",
2106 pci_name(ha->pdev));
2107 goto iospace_error_exit;
2108 }
2109
2110 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
2111 if (!ha->iobase) {
2112 ql_log_pci(ql_log_fatal, ha->pdev, 0x0017,
2113 "Cannot remap MMIO (%s), aborting.\n",
2114 pci_name(ha->pdev));
2115 goto iospace_error_exit;
2116 }
2117
2118 /* Determine queue resources */
2119 ha->max_req_queues = ha->max_rsp_queues = 1;
2120 ha->msix_count = QLA_BASE_VECTORS;
2121
2122 /* Check if FW supports MQ or not */
2123 if (!(ha->fw_attributes & BIT_6))
2124 goto mqiobase_exit;
2125
2126 if (!ql2xmqsupport || !ql2xnvmeenable ||
2127 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
2128 goto mqiobase_exit;
2129
2130 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
2131 pci_resource_len(ha->pdev, 3));
2132 if (ha->mqiobase) {
2133 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018,
2134 "MQIO Base=%p.\n", ha->mqiobase);
2135 /* Read MSIX vector size of the board */
2136 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
2137 ha->msix_count = msix + 1;
2138 /* Max queues are bounded by available msix vectors */
2139 /* MB interrupt uses 1 vector */
2140 ha->max_req_queues = ha->msix_count - 1;
2141 ha->max_rsp_queues = ha->max_req_queues;
2142 /* Queue pairs is the max value minus the base queue pair */
2143 ha->max_qpairs = ha->max_rsp_queues - 1;
2144 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0188,
2145 "Max no of queues pairs: %d.\n", ha->max_qpairs);
2146
2147 ql_log_pci(ql_log_info, ha->pdev, 0x001a,
2148 "MSI-X vector count: %d.\n", ha->msix_count);
2149 } else
2150 ql_log_pci(ql_log_info, ha->pdev, 0x001b,
2151 "BAR 3 not enabled.\n");
2152
2153mqiobase_exit:
2154 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c,
2155 "MSIX Count: %d.\n", ha->msix_count);
2156 return (0);
2157
2158iospace_error_exit:
2159 return (-ENOMEM);
2160}
2161
2162
2163static int
2164qla83xx_iospace_config(struct qla_hw_data *ha)
2165{
2166 uint16_t msix;
2167
2168 if (pci_request_selected_regions(ha->pdev, ha->bars,
2169 QLA2XXX_DRIVER_NAME)) {
2170 ql_log_pci(ql_log_fatal, ha->pdev, 0x0117,
2171 "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
2172 pci_name(ha->pdev));
2173
2174 goto iospace_error_exit;
2175 }
2176
2177 /* Use MMIO operations for all accesses. */
2178 if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) {
2179 ql_log_pci(ql_log_warn, ha->pdev, 0x0118,
2180 "Invalid pci I/O region size (%s).\n",
2181 pci_name(ha->pdev));
2182 goto iospace_error_exit;
2183 }
2184 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
2185 ql_log_pci(ql_log_warn, ha->pdev, 0x0119,
2186 "Invalid PCI mem region size (%s), aborting\n",
2187 pci_name(ha->pdev));
2188 goto iospace_error_exit;
2189 }
2190
2191 ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN);
2192 if (!ha->iobase) {
2193 ql_log_pci(ql_log_fatal, ha->pdev, 0x011a,
2194 "Cannot remap MMIO (%s), aborting.\n",
2195 pci_name(ha->pdev));
2196 goto iospace_error_exit;
2197 }
2198
2199 /* 64bit PCI BAR - BAR2 will correspoond to region 4 */
2200 /* 83XX 26XX always use MQ type access for queues
2201 * - mbar 2, a.k.a region 4 */
2202 ha->max_req_queues = ha->max_rsp_queues = 1;
2203 ha->msix_count = QLA_BASE_VECTORS;
2204 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4),
2205 pci_resource_len(ha->pdev, 4));
2206
2207 if (!ha->mqiobase) {
2208 ql_log_pci(ql_log_fatal, ha->pdev, 0x011d,
2209 "BAR2/region4 not enabled\n");
2210 goto mqiobase_exit;
2211 }
2212
2213 ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2),
2214 pci_resource_len(ha->pdev, 2));
2215 if (ha->msixbase) {
2216 /* Read MSIX vector size of the board */
2217 pci_read_config_word(ha->pdev,
2218 QLA_83XX_PCI_MSIX_CONTROL, &msix);
2219 ha->msix_count = (msix & PCI_MSIX_FLAGS_QSIZE) + 1;
2220 /*
2221 * By default, driver uses at least two msix vectors
2222 * (default & rspq)
2223 */
2224 if (ql2xmqsupport || ql2xnvmeenable) {
2225 /* MB interrupt uses 1 vector */
2226 ha->max_req_queues = ha->msix_count - 1;
2227
2228 /* ATIOQ needs 1 vector. That's 1 less QPair */
2229 if (QLA_TGT_MODE_ENABLED())
2230 ha->max_req_queues--;
2231
2232 ha->max_rsp_queues = ha->max_req_queues;
2233
2234 /* Queue pairs is the max value minus
2235 * the base queue pair */
2236 ha->max_qpairs = ha->max_req_queues - 1;
2237 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x00e3,
2238 "Max no of queues pairs: %d.\n", ha->max_qpairs);
2239 }
2240 ql_log_pci(ql_log_info, ha->pdev, 0x011c,
2241 "MSI-X vector count: %d.\n", ha->msix_count);
2242 } else
2243 ql_log_pci(ql_log_info, ha->pdev, 0x011e,
2244 "BAR 1 not enabled.\n");
2245
2246mqiobase_exit:
2247 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f,
2248 "MSIX Count: %d.\n", ha->msix_count);
2249 return 0;
2250
2251iospace_error_exit:
2252 return -ENOMEM;
2253}
2254
2255static struct isp_operations qla2100_isp_ops = {
2256 .pci_config = qla2100_pci_config,
2257 .reset_chip = qla2x00_reset_chip,
2258 .chip_diag = qla2x00_chip_diag,
2259 .config_rings = qla2x00_config_rings,
2260 .reset_adapter = qla2x00_reset_adapter,
2261 .nvram_config = qla2x00_nvram_config,
2262 .update_fw_options = qla2x00_update_fw_options,
2263 .load_risc = qla2x00_load_risc,
2264 .pci_info_str = qla2x00_pci_info_str,
2265 .fw_version_str = qla2x00_fw_version_str,
2266 .intr_handler = qla2100_intr_handler,
2267 .enable_intrs = qla2x00_enable_intrs,
2268 .disable_intrs = qla2x00_disable_intrs,
2269 .abort_command = qla2x00_abort_command,
2270 .target_reset = qla2x00_abort_target,
2271 .lun_reset = qla2x00_lun_reset,
2272 .fabric_login = qla2x00_login_fabric,
2273 .fabric_logout = qla2x00_fabric_logout,
2274 .calc_req_entries = qla2x00_calc_iocbs_32,
2275 .build_iocbs = qla2x00_build_scsi_iocbs_32,
2276 .prep_ms_iocb = qla2x00_prep_ms_iocb,
2277 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
2278 .read_nvram = qla2x00_read_nvram_data,
2279 .write_nvram = qla2x00_write_nvram_data,
2280 .fw_dump = qla2100_fw_dump,
2281 .beacon_on = NULL,
2282 .beacon_off = NULL,
2283 .beacon_blink = NULL,
2284 .read_optrom = qla2x00_read_optrom_data,
2285 .write_optrom = qla2x00_write_optrom_data,
2286 .get_flash_version = qla2x00_get_flash_version,
2287 .start_scsi = qla2x00_start_scsi,
2288 .start_scsi_mq = NULL,
2289 .abort_isp = qla2x00_abort_isp,
2290 .iospace_config = qla2x00_iospace_config,
2291 .initialize_adapter = qla2x00_initialize_adapter,
2292};
2293
2294static struct isp_operations qla2300_isp_ops = {
2295 .pci_config = qla2300_pci_config,
2296 .reset_chip = qla2x00_reset_chip,
2297 .chip_diag = qla2x00_chip_diag,
2298 .config_rings = qla2x00_config_rings,
2299 .reset_adapter = qla2x00_reset_adapter,
2300 .nvram_config = qla2x00_nvram_config,
2301 .update_fw_options = qla2x00_update_fw_options,
2302 .load_risc = qla2x00_load_risc,
2303 .pci_info_str = qla2x00_pci_info_str,
2304 .fw_version_str = qla2x00_fw_version_str,
2305 .intr_handler = qla2300_intr_handler,
2306 .enable_intrs = qla2x00_enable_intrs,
2307 .disable_intrs = qla2x00_disable_intrs,
2308 .abort_command = qla2x00_abort_command,
2309 .target_reset = qla2x00_abort_target,
2310 .lun_reset = qla2x00_lun_reset,
2311 .fabric_login = qla2x00_login_fabric,
2312 .fabric_logout = qla2x00_fabric_logout,
2313 .calc_req_entries = qla2x00_calc_iocbs_32,
2314 .build_iocbs = qla2x00_build_scsi_iocbs_32,
2315 .prep_ms_iocb = qla2x00_prep_ms_iocb,
2316 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
2317 .read_nvram = qla2x00_read_nvram_data,
2318 .write_nvram = qla2x00_write_nvram_data,
2319 .fw_dump = qla2300_fw_dump,
2320 .beacon_on = qla2x00_beacon_on,
2321 .beacon_off = qla2x00_beacon_off,
2322 .beacon_blink = qla2x00_beacon_blink,
2323 .read_optrom = qla2x00_read_optrom_data,
2324 .write_optrom = qla2x00_write_optrom_data,
2325 .get_flash_version = qla2x00_get_flash_version,
2326 .start_scsi = qla2x00_start_scsi,
2327 .start_scsi_mq = NULL,
2328 .abort_isp = qla2x00_abort_isp,
2329 .iospace_config = qla2x00_iospace_config,
2330 .initialize_adapter = qla2x00_initialize_adapter,
2331};
2332
2333static struct isp_operations qla24xx_isp_ops = {
2334 .pci_config = qla24xx_pci_config,
2335 .reset_chip = qla24xx_reset_chip,
2336 .chip_diag = qla24xx_chip_diag,
2337 .config_rings = qla24xx_config_rings,
2338 .reset_adapter = qla24xx_reset_adapter,
2339 .nvram_config = qla24xx_nvram_config,
2340 .update_fw_options = qla24xx_update_fw_options,
2341 .load_risc = qla24xx_load_risc,
2342 .pci_info_str = qla24xx_pci_info_str,
2343 .fw_version_str = qla24xx_fw_version_str,
2344 .intr_handler = qla24xx_intr_handler,
2345 .enable_intrs = qla24xx_enable_intrs,
2346 .disable_intrs = qla24xx_disable_intrs,
2347 .abort_command = qla24xx_abort_command,
2348 .target_reset = qla24xx_abort_target,
2349 .lun_reset = qla24xx_lun_reset,
2350 .fabric_login = qla24xx_login_fabric,
2351 .fabric_logout = qla24xx_fabric_logout,
2352 .calc_req_entries = NULL,
2353 .build_iocbs = NULL,
2354 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2355 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2356 .read_nvram = qla24xx_read_nvram_data,
2357 .write_nvram = qla24xx_write_nvram_data,
2358 .fw_dump = qla24xx_fw_dump,
2359 .beacon_on = qla24xx_beacon_on,
2360 .beacon_off = qla24xx_beacon_off,
2361 .beacon_blink = qla24xx_beacon_blink,
2362 .read_optrom = qla24xx_read_optrom_data,
2363 .write_optrom = qla24xx_write_optrom_data,
2364 .get_flash_version = qla24xx_get_flash_version,
2365 .start_scsi = qla24xx_start_scsi,
2366 .start_scsi_mq = NULL,
2367 .abort_isp = qla2x00_abort_isp,
2368 .iospace_config = qla2x00_iospace_config,
2369 .initialize_adapter = qla2x00_initialize_adapter,
2370};
2371
2372static struct isp_operations qla25xx_isp_ops = {
2373 .pci_config = qla25xx_pci_config,
2374 .reset_chip = qla24xx_reset_chip,
2375 .chip_diag = qla24xx_chip_diag,
2376 .config_rings = qla24xx_config_rings,
2377 .reset_adapter = qla24xx_reset_adapter,
2378 .nvram_config = qla24xx_nvram_config,
2379 .update_fw_options = qla24xx_update_fw_options,
2380 .load_risc = qla24xx_load_risc,
2381 .pci_info_str = qla24xx_pci_info_str,
2382 .fw_version_str = qla24xx_fw_version_str,
2383 .intr_handler = qla24xx_intr_handler,
2384 .enable_intrs = qla24xx_enable_intrs,
2385 .disable_intrs = qla24xx_disable_intrs,
2386 .abort_command = qla24xx_abort_command,
2387 .target_reset = qla24xx_abort_target,
2388 .lun_reset = qla24xx_lun_reset,
2389 .fabric_login = qla24xx_login_fabric,
2390 .fabric_logout = qla24xx_fabric_logout,
2391 .calc_req_entries = NULL,
2392 .build_iocbs = NULL,
2393 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2394 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2395 .read_nvram = qla25xx_read_nvram_data,
2396 .write_nvram = qla25xx_write_nvram_data,
2397 .fw_dump = qla25xx_fw_dump,
2398 .beacon_on = qla24xx_beacon_on,
2399 .beacon_off = qla24xx_beacon_off,
2400 .beacon_blink = qla24xx_beacon_blink,
2401 .read_optrom = qla25xx_read_optrom_data,
2402 .write_optrom = qla24xx_write_optrom_data,
2403 .get_flash_version = qla24xx_get_flash_version,
2404 .start_scsi = qla24xx_dif_start_scsi,
2405 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2406 .abort_isp = qla2x00_abort_isp,
2407 .iospace_config = qla2x00_iospace_config,
2408 .initialize_adapter = qla2x00_initialize_adapter,
2409};
2410
2411static struct isp_operations qla81xx_isp_ops = {
2412 .pci_config = qla25xx_pci_config,
2413 .reset_chip = qla24xx_reset_chip,
2414 .chip_diag = qla24xx_chip_diag,
2415 .config_rings = qla24xx_config_rings,
2416 .reset_adapter = qla24xx_reset_adapter,
2417 .nvram_config = qla81xx_nvram_config,
2418 .update_fw_options = qla24xx_update_fw_options,
2419 .load_risc = qla81xx_load_risc,
2420 .pci_info_str = qla24xx_pci_info_str,
2421 .fw_version_str = qla24xx_fw_version_str,
2422 .intr_handler = qla24xx_intr_handler,
2423 .enable_intrs = qla24xx_enable_intrs,
2424 .disable_intrs = qla24xx_disable_intrs,
2425 .abort_command = qla24xx_abort_command,
2426 .target_reset = qla24xx_abort_target,
2427 .lun_reset = qla24xx_lun_reset,
2428 .fabric_login = qla24xx_login_fabric,
2429 .fabric_logout = qla24xx_fabric_logout,
2430 .calc_req_entries = NULL,
2431 .build_iocbs = NULL,
2432 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2433 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2434 .read_nvram = NULL,
2435 .write_nvram = NULL,
2436 .fw_dump = qla81xx_fw_dump,
2437 .beacon_on = qla24xx_beacon_on,
2438 .beacon_off = qla24xx_beacon_off,
2439 .beacon_blink = qla83xx_beacon_blink,
2440 .read_optrom = qla25xx_read_optrom_data,
2441 .write_optrom = qla24xx_write_optrom_data,
2442 .get_flash_version = qla24xx_get_flash_version,
2443 .start_scsi = qla24xx_dif_start_scsi,
2444 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2445 .abort_isp = qla2x00_abort_isp,
2446 .iospace_config = qla2x00_iospace_config,
2447 .initialize_adapter = qla2x00_initialize_adapter,
2448};
2449
2450static struct isp_operations qla82xx_isp_ops = {
2451 .pci_config = qla82xx_pci_config,
2452 .reset_chip = qla82xx_reset_chip,
2453 .chip_diag = qla24xx_chip_diag,
2454 .config_rings = qla82xx_config_rings,
2455 .reset_adapter = qla24xx_reset_adapter,
2456 .nvram_config = qla81xx_nvram_config,
2457 .update_fw_options = qla24xx_update_fw_options,
2458 .load_risc = qla82xx_load_risc,
2459 .pci_info_str = qla24xx_pci_info_str,
2460 .fw_version_str = qla24xx_fw_version_str,
2461 .intr_handler = qla82xx_intr_handler,
2462 .enable_intrs = qla82xx_enable_intrs,
2463 .disable_intrs = qla82xx_disable_intrs,
2464 .abort_command = qla24xx_abort_command,
2465 .target_reset = qla24xx_abort_target,
2466 .lun_reset = qla24xx_lun_reset,
2467 .fabric_login = qla24xx_login_fabric,
2468 .fabric_logout = qla24xx_fabric_logout,
2469 .calc_req_entries = NULL,
2470 .build_iocbs = NULL,
2471 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2472 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2473 .read_nvram = qla24xx_read_nvram_data,
2474 .write_nvram = qla24xx_write_nvram_data,
2475 .fw_dump = qla82xx_fw_dump,
2476 .beacon_on = qla82xx_beacon_on,
2477 .beacon_off = qla82xx_beacon_off,
2478 .beacon_blink = NULL,
2479 .read_optrom = qla82xx_read_optrom_data,
2480 .write_optrom = qla82xx_write_optrom_data,
2481 .get_flash_version = qla82xx_get_flash_version,
2482 .start_scsi = qla82xx_start_scsi,
2483 .start_scsi_mq = NULL,
2484 .abort_isp = qla82xx_abort_isp,
2485 .iospace_config = qla82xx_iospace_config,
2486 .initialize_adapter = qla2x00_initialize_adapter,
2487};
2488
2489static struct isp_operations qla8044_isp_ops = {
2490 .pci_config = qla82xx_pci_config,
2491 .reset_chip = qla82xx_reset_chip,
2492 .chip_diag = qla24xx_chip_diag,
2493 .config_rings = qla82xx_config_rings,
2494 .reset_adapter = qla24xx_reset_adapter,
2495 .nvram_config = qla81xx_nvram_config,
2496 .update_fw_options = qla24xx_update_fw_options,
2497 .load_risc = qla82xx_load_risc,
2498 .pci_info_str = qla24xx_pci_info_str,
2499 .fw_version_str = qla24xx_fw_version_str,
2500 .intr_handler = qla8044_intr_handler,
2501 .enable_intrs = qla82xx_enable_intrs,
2502 .disable_intrs = qla82xx_disable_intrs,
2503 .abort_command = qla24xx_abort_command,
2504 .target_reset = qla24xx_abort_target,
2505 .lun_reset = qla24xx_lun_reset,
2506 .fabric_login = qla24xx_login_fabric,
2507 .fabric_logout = qla24xx_fabric_logout,
2508 .calc_req_entries = NULL,
2509 .build_iocbs = NULL,
2510 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2511 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2512 .read_nvram = NULL,
2513 .write_nvram = NULL,
2514 .fw_dump = qla8044_fw_dump,
2515 .beacon_on = qla82xx_beacon_on,
2516 .beacon_off = qla82xx_beacon_off,
2517 .beacon_blink = NULL,
2518 .read_optrom = qla8044_read_optrom_data,
2519 .write_optrom = qla8044_write_optrom_data,
2520 .get_flash_version = qla82xx_get_flash_version,
2521 .start_scsi = qla82xx_start_scsi,
2522 .start_scsi_mq = NULL,
2523 .abort_isp = qla8044_abort_isp,
2524 .iospace_config = qla82xx_iospace_config,
2525 .initialize_adapter = qla2x00_initialize_adapter,
2526};
2527
2528static struct isp_operations qla83xx_isp_ops = {
2529 .pci_config = qla25xx_pci_config,
2530 .reset_chip = qla24xx_reset_chip,
2531 .chip_diag = qla24xx_chip_diag,
2532 .config_rings = qla24xx_config_rings,
2533 .reset_adapter = qla24xx_reset_adapter,
2534 .nvram_config = qla81xx_nvram_config,
2535 .update_fw_options = qla24xx_update_fw_options,
2536 .load_risc = qla81xx_load_risc,
2537 .pci_info_str = qla24xx_pci_info_str,
2538 .fw_version_str = qla24xx_fw_version_str,
2539 .intr_handler = qla24xx_intr_handler,
2540 .enable_intrs = qla24xx_enable_intrs,
2541 .disable_intrs = qla24xx_disable_intrs,
2542 .abort_command = qla24xx_abort_command,
2543 .target_reset = qla24xx_abort_target,
2544 .lun_reset = qla24xx_lun_reset,
2545 .fabric_login = qla24xx_login_fabric,
2546 .fabric_logout = qla24xx_fabric_logout,
2547 .calc_req_entries = NULL,
2548 .build_iocbs = NULL,
2549 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2550 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2551 .read_nvram = NULL,
2552 .write_nvram = NULL,
2553 .fw_dump = qla83xx_fw_dump,
2554 .beacon_on = qla24xx_beacon_on,
2555 .beacon_off = qla24xx_beacon_off,
2556 .beacon_blink = qla83xx_beacon_blink,
2557 .read_optrom = qla25xx_read_optrom_data,
2558 .write_optrom = qla24xx_write_optrom_data,
2559 .get_flash_version = qla24xx_get_flash_version,
2560 .start_scsi = qla24xx_dif_start_scsi,
2561 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2562 .abort_isp = qla2x00_abort_isp,
2563 .iospace_config = qla83xx_iospace_config,
2564 .initialize_adapter = qla2x00_initialize_adapter,
2565};
2566
2567static struct isp_operations qlafx00_isp_ops = {
2568 .pci_config = qlafx00_pci_config,
2569 .reset_chip = qlafx00_soft_reset,
2570 .chip_diag = qlafx00_chip_diag,
2571 .config_rings = qlafx00_config_rings,
2572 .reset_adapter = qlafx00_soft_reset,
2573 .nvram_config = NULL,
2574 .update_fw_options = NULL,
2575 .load_risc = NULL,
2576 .pci_info_str = qlafx00_pci_info_str,
2577 .fw_version_str = qlafx00_fw_version_str,
2578 .intr_handler = qlafx00_intr_handler,
2579 .enable_intrs = qlafx00_enable_intrs,
2580 .disable_intrs = qlafx00_disable_intrs,
2581 .abort_command = qla24xx_async_abort_command,
2582 .target_reset = qlafx00_abort_target,
2583 .lun_reset = qlafx00_lun_reset,
2584 .fabric_login = NULL,
2585 .fabric_logout = NULL,
2586 .calc_req_entries = NULL,
2587 .build_iocbs = NULL,
2588 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2589 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2590 .read_nvram = qla24xx_read_nvram_data,
2591 .write_nvram = qla24xx_write_nvram_data,
2592 .fw_dump = NULL,
2593 .beacon_on = qla24xx_beacon_on,
2594 .beacon_off = qla24xx_beacon_off,
2595 .beacon_blink = NULL,
2596 .read_optrom = qla24xx_read_optrom_data,
2597 .write_optrom = qla24xx_write_optrom_data,
2598 .get_flash_version = qla24xx_get_flash_version,
2599 .start_scsi = qlafx00_start_scsi,
2600 .start_scsi_mq = NULL,
2601 .abort_isp = qlafx00_abort_isp,
2602 .iospace_config = qlafx00_iospace_config,
2603 .initialize_adapter = qlafx00_initialize_adapter,
2604};
2605
2606static struct isp_operations qla27xx_isp_ops = {
2607 .pci_config = qla25xx_pci_config,
2608 .reset_chip = qla24xx_reset_chip,
2609 .chip_diag = qla24xx_chip_diag,
2610 .config_rings = qla24xx_config_rings,
2611 .reset_adapter = qla24xx_reset_adapter,
2612 .nvram_config = qla81xx_nvram_config,
2613 .update_fw_options = qla24xx_update_fw_options,
2614 .load_risc = qla81xx_load_risc,
2615 .pci_info_str = qla24xx_pci_info_str,
2616 .fw_version_str = qla24xx_fw_version_str,
2617 .intr_handler = qla24xx_intr_handler,
2618 .enable_intrs = qla24xx_enable_intrs,
2619 .disable_intrs = qla24xx_disable_intrs,
2620 .abort_command = qla24xx_abort_command,
2621 .target_reset = qla24xx_abort_target,
2622 .lun_reset = qla24xx_lun_reset,
2623 .fabric_login = qla24xx_login_fabric,
2624 .fabric_logout = qla24xx_fabric_logout,
2625 .calc_req_entries = NULL,
2626 .build_iocbs = NULL,
2627 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2628 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2629 .read_nvram = NULL,
2630 .write_nvram = NULL,
2631 .fw_dump = qla27xx_fwdump,
2632 .mpi_fw_dump = qla27xx_mpi_fwdump,
2633 .beacon_on = qla24xx_beacon_on,
2634 .beacon_off = qla24xx_beacon_off,
2635 .beacon_blink = qla83xx_beacon_blink,
2636 .read_optrom = qla25xx_read_optrom_data,
2637 .write_optrom = qla24xx_write_optrom_data,
2638 .get_flash_version = qla24xx_get_flash_version,
2639 .start_scsi = qla24xx_dif_start_scsi,
2640 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2641 .abort_isp = qla2x00_abort_isp,
2642 .iospace_config = qla83xx_iospace_config,
2643 .initialize_adapter = qla2x00_initialize_adapter,
2644};
2645
2646static inline void
2647qla2x00_set_isp_flags(struct qla_hw_data *ha)
2648{
2649 ha->device_type = DT_EXTENDED_IDS;
2650 switch (ha->pdev->device) {
2651 case PCI_DEVICE_ID_QLOGIC_ISP2100:
2652 ha->isp_type |= DT_ISP2100;
2653 ha->device_type &= ~DT_EXTENDED_IDS;
2654 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2655 break;
2656 case PCI_DEVICE_ID_QLOGIC_ISP2200:
2657 ha->isp_type |= DT_ISP2200;
2658 ha->device_type &= ~DT_EXTENDED_IDS;
2659 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2660 break;
2661 case PCI_DEVICE_ID_QLOGIC_ISP2300:
2662 ha->isp_type |= DT_ISP2300;
2663 ha->device_type |= DT_ZIO_SUPPORTED;
2664 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2665 break;
2666 case PCI_DEVICE_ID_QLOGIC_ISP2312:
2667 ha->isp_type |= DT_ISP2312;
2668 ha->device_type |= DT_ZIO_SUPPORTED;
2669 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2670 break;
2671 case PCI_DEVICE_ID_QLOGIC_ISP2322:
2672 ha->isp_type |= DT_ISP2322;
2673 ha->device_type |= DT_ZIO_SUPPORTED;
2674 if (ha->pdev->subsystem_vendor == 0x1028 &&
2675 ha->pdev->subsystem_device == 0x0170)
2676 ha->device_type |= DT_OEM_001;
2677 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2678 break;
2679 case PCI_DEVICE_ID_QLOGIC_ISP6312:
2680 ha->isp_type |= DT_ISP6312;
2681 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2682 break;
2683 case PCI_DEVICE_ID_QLOGIC_ISP6322:
2684 ha->isp_type |= DT_ISP6322;
2685 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2686 break;
2687 case PCI_DEVICE_ID_QLOGIC_ISP2422:
2688 ha->isp_type |= DT_ISP2422;
2689 ha->device_type |= DT_ZIO_SUPPORTED;
2690 ha->device_type |= DT_FWI2;
2691 ha->device_type |= DT_IIDMA;
2692 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2693 break;
2694 case PCI_DEVICE_ID_QLOGIC_ISP2432:
2695 ha->isp_type |= DT_ISP2432;
2696 ha->device_type |= DT_ZIO_SUPPORTED;
2697 ha->device_type |= DT_FWI2;
2698 ha->device_type |= DT_IIDMA;
2699 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2700 break;
2701 case PCI_DEVICE_ID_QLOGIC_ISP8432:
2702 ha->isp_type |= DT_ISP8432;
2703 ha->device_type |= DT_ZIO_SUPPORTED;
2704 ha->device_type |= DT_FWI2;
2705 ha->device_type |= DT_IIDMA;
2706 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2707 break;
2708 case PCI_DEVICE_ID_QLOGIC_ISP5422:
2709 ha->isp_type |= DT_ISP5422;
2710 ha->device_type |= DT_FWI2;
2711 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2712 break;
2713 case PCI_DEVICE_ID_QLOGIC_ISP5432:
2714 ha->isp_type |= DT_ISP5432;
2715 ha->device_type |= DT_FWI2;
2716 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2717 break;
2718 case PCI_DEVICE_ID_QLOGIC_ISP2532:
2719 ha->isp_type |= DT_ISP2532;
2720 ha->device_type |= DT_ZIO_SUPPORTED;
2721 ha->device_type |= DT_FWI2;
2722 ha->device_type |= DT_IIDMA;
2723 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2724 break;
2725 case PCI_DEVICE_ID_QLOGIC_ISP8001:
2726 ha->isp_type |= DT_ISP8001;
2727 ha->device_type |= DT_ZIO_SUPPORTED;
2728 ha->device_type |= DT_FWI2;
2729 ha->device_type |= DT_IIDMA;
2730 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2731 break;
2732 case PCI_DEVICE_ID_QLOGIC_ISP8021:
2733 ha->isp_type |= DT_ISP8021;
2734 ha->device_type |= DT_ZIO_SUPPORTED;
2735 ha->device_type |= DT_FWI2;
2736 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2737 /* Initialize 82XX ISP flags */
2738 qla82xx_init_flags(ha);
2739 break;
2740 case PCI_DEVICE_ID_QLOGIC_ISP8044:
2741 ha->isp_type |= DT_ISP8044;
2742 ha->device_type |= DT_ZIO_SUPPORTED;
2743 ha->device_type |= DT_FWI2;
2744 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2745 /* Initialize 82XX ISP flags */
2746 qla82xx_init_flags(ha);
2747 break;
2748 case PCI_DEVICE_ID_QLOGIC_ISP2031:
2749 ha->isp_type |= DT_ISP2031;
2750 ha->device_type |= DT_ZIO_SUPPORTED;
2751 ha->device_type |= DT_FWI2;
2752 ha->device_type |= DT_IIDMA;
2753 ha->device_type |= DT_T10_PI;
2754 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2755 break;
2756 case PCI_DEVICE_ID_QLOGIC_ISP8031:
2757 ha->isp_type |= DT_ISP8031;
2758 ha->device_type |= DT_ZIO_SUPPORTED;
2759 ha->device_type |= DT_FWI2;
2760 ha->device_type |= DT_IIDMA;
2761 ha->device_type |= DT_T10_PI;
2762 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2763 break;
2764 case PCI_DEVICE_ID_QLOGIC_ISPF001:
2765 ha->isp_type |= DT_ISPFX00;
2766 break;
2767 case PCI_DEVICE_ID_QLOGIC_ISP2071:
2768 ha->isp_type |= DT_ISP2071;
2769 ha->device_type |= DT_ZIO_SUPPORTED;
2770 ha->device_type |= DT_FWI2;
2771 ha->device_type |= DT_IIDMA;
2772 ha->device_type |= DT_T10_PI;
2773 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2774 break;
2775 case PCI_DEVICE_ID_QLOGIC_ISP2271:
2776 ha->isp_type |= DT_ISP2271;
2777 ha->device_type |= DT_ZIO_SUPPORTED;
2778 ha->device_type |= DT_FWI2;
2779 ha->device_type |= DT_IIDMA;
2780 ha->device_type |= DT_T10_PI;
2781 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2782 break;
2783 case PCI_DEVICE_ID_QLOGIC_ISP2261:
2784 ha->isp_type |= DT_ISP2261;
2785 ha->device_type |= DT_ZIO_SUPPORTED;
2786 ha->device_type |= DT_FWI2;
2787 ha->device_type |= DT_IIDMA;
2788 ha->device_type |= DT_T10_PI;
2789 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2790 break;
2791 case PCI_DEVICE_ID_QLOGIC_ISP2081:
2792 case PCI_DEVICE_ID_QLOGIC_ISP2089:
2793 ha->isp_type |= DT_ISP2081;
2794 ha->device_type |= DT_ZIO_SUPPORTED;
2795 ha->device_type |= DT_FWI2;
2796 ha->device_type |= DT_IIDMA;
2797 ha->device_type |= DT_T10_PI;
2798 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2799 break;
2800 case PCI_DEVICE_ID_QLOGIC_ISP2281:
2801 case PCI_DEVICE_ID_QLOGIC_ISP2289:
2802 ha->isp_type |= DT_ISP2281;
2803 ha->device_type |= DT_ZIO_SUPPORTED;
2804 ha->device_type |= DT_FWI2;
2805 ha->device_type |= DT_IIDMA;
2806 ha->device_type |= DT_T10_PI;
2807 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2808 break;
2809 }
2810
2811 if (IS_QLA82XX(ha))
2812 ha->port_no = ha->portnum & 1;
2813 else {
2814 /* Get adapter physical port no from interrupt pin register. */
2815 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
2816 if (IS_QLA25XX(ha) || IS_QLA2031(ha) ||
2817 IS_QLA27XX(ha) || IS_QLA28XX(ha))
2818 ha->port_no--;
2819 else
2820 ha->port_no = !(ha->port_no & 1);
2821 }
2822
2823 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b,
2824 "device_type=0x%x port=%d fw_srisc_address=0x%x.\n",
2825 ha->device_type, ha->port_no, ha->fw_srisc_address);
2826}
2827
2828static void
2829qla2xxx_scan_start(struct Scsi_Host *shost)
2830{
2831 scsi_qla_host_t *vha = shost_priv(shost);
2832
2833 if (vha->hw->flags.running_gold_fw)
2834 return;
2835
2836 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
2837 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2838 set_bit(RSCN_UPDATE, &vha->dpc_flags);
2839 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
2840}
2841
2842static int
2843qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
2844{
2845 scsi_qla_host_t *vha = shost_priv(shost);
2846
2847 if (test_bit(UNLOADING, &vha->dpc_flags))
2848 return 1;
2849 if (!vha->host)
2850 return 1;
2851 if (time > vha->hw->loop_reset_delay * HZ)
2852 return 1;
2853
2854 return atomic_read(&vha->loop_state) == LOOP_READY;
2855}
2856
2857static void qla_heartbeat_work_fn(struct work_struct *work)
2858{
2859 struct qla_hw_data *ha = container_of(work,
2860 struct qla_hw_data, heartbeat_work);
2861 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
2862
2863 if (!ha->flags.mbox_busy && base_vha->flags.init_done)
2864 qla_no_op_mb(base_vha);
2865}
2866
2867static void qla2x00_iocb_work_fn(struct work_struct *work)
2868{
2869 struct scsi_qla_host *vha = container_of(work,
2870 struct scsi_qla_host, iocb_work);
2871 struct qla_hw_data *ha = vha->hw;
2872 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
2873 int i = 2;
2874 unsigned long flags;
2875
2876 if (test_bit(UNLOADING, &base_vha->dpc_flags))
2877 return;
2878
2879 while (!list_empty(&vha->work_list) && i > 0) {
2880 qla2x00_do_work(vha);
2881 i--;
2882 }
2883
2884 spin_lock_irqsave(&vha->work_lock, flags);
2885 clear_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags);
2886 spin_unlock_irqrestore(&vha->work_lock, flags);
2887}
2888
2889static void
2890qla_trace_init(void)
2891{
2892 qla_trc_array = trace_array_get_by_name("qla2xxx", NULL);
2893 if (!qla_trc_array) {
2894 ql_log(ql_log_fatal, NULL, 0x0001,
2895 "Unable to create qla2xxx trace instance, instance logging will be disabled.\n");
2896 return;
2897 }
2898
2899 QLA_TRACE_ENABLE(qla_trc_array);
2900}
2901
2902static void
2903qla_trace_uninit(void)
2904{
2905 if (!qla_trc_array)
2906 return;
2907 trace_array_put(qla_trc_array);
2908}
2909
2910/*
2911 * PCI driver interface
2912 */
2913static int
2914qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2915{
2916 int ret = -ENODEV;
2917 struct Scsi_Host *host;
2918 scsi_qla_host_t *base_vha = NULL;
2919 struct qla_hw_data *ha;
2920 char pci_info[30];
2921 char fw_str[30], wq_name[30];
2922 struct scsi_host_template *sht;
2923 int bars, mem_only = 0;
2924 uint16_t req_length = 0, rsp_length = 0;
2925 struct req_que *req = NULL;
2926 struct rsp_que *rsp = NULL;
2927 int i;
2928
2929 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
2930 sht = &qla2xxx_driver_template;
2931 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
2932 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
2933 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
2934 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
2935 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
2936 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
2937 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
2938 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 ||
2939 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 ||
2940 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 ||
2941 pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 ||
2942 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 ||
2943 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 ||
2944 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271 ||
2945 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2261 ||
2946 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2081 ||
2947 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2281 ||
2948 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2089 ||
2949 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2289) {
2950 bars = pci_select_bars(pdev, IORESOURCE_MEM);
2951 mem_only = 1;
2952 ql_dbg_pci(ql_dbg_init, pdev, 0x0007,
2953 "Mem only adapter.\n");
2954 }
2955 ql_dbg_pci(ql_dbg_init, pdev, 0x0008,
2956 "Bars=%d.\n", bars);
2957
2958 if (mem_only) {
2959 if (pci_enable_device_mem(pdev))
2960 return ret;
2961 } else {
2962 if (pci_enable_device(pdev))
2963 return ret;
2964 }
2965
2966 if (is_kdump_kernel()) {
2967 ql2xmqsupport = 0;
2968 ql2xallocfwdump = 0;
2969 }
2970
2971 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
2972 if (!ha) {
2973 ql_log_pci(ql_log_fatal, pdev, 0x0009,
2974 "Unable to allocate memory for ha.\n");
2975 goto disable_device;
2976 }
2977 ql_dbg_pci(ql_dbg_init, pdev, 0x000a,
2978 "Memory allocated for ha=%p.\n", ha);
2979 ha->pdev = pdev;
2980 INIT_LIST_HEAD(&ha->tgt.q_full_list);
2981 spin_lock_init(&ha->tgt.q_full_lock);
2982 spin_lock_init(&ha->tgt.sess_lock);
2983 spin_lock_init(&ha->tgt.atio_lock);
2984
2985 spin_lock_init(&ha->sadb_lock);
2986 INIT_LIST_HEAD(&ha->sadb_tx_index_list);
2987 INIT_LIST_HEAD(&ha->sadb_rx_index_list);
2988
2989 spin_lock_init(&ha->sadb_fp_lock);
2990
2991 if (qla_edif_sadb_build_free_pool(ha)) {
2992 kfree(ha);
2993 goto disable_device;
2994 }
2995
2996 atomic_set(&ha->nvme_active_aen_cnt, 0);
2997
2998 /* Clear our data area */
2999 ha->bars = bars;
3000 ha->mem_only = mem_only;
3001 spin_lock_init(&ha->hardware_lock);
3002 spin_lock_init(&ha->vport_slock);
3003 mutex_init(&ha->selflogin_lock);
3004 mutex_init(&ha->optrom_mutex);
3005
3006 /* Set ISP-type information. */
3007 qla2x00_set_isp_flags(ha);
3008
3009 /* Set EEH reset type to fundamental if required by hba */
3010 if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) ||
3011 IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha))
3012 pdev->needs_freset = 1;
3013
3014 ha->prev_topology = 0;
3015 ha->init_cb_size = sizeof(init_cb_t);
3016 ha->link_data_rate = PORT_SPEED_UNKNOWN;
3017 ha->optrom_size = OPTROM_SIZE_2300;
3018 ha->max_exchg = FW_MAX_EXCHANGES_CNT;
3019 atomic_set(&ha->num_pend_mbx_stage1, 0);
3020 atomic_set(&ha->num_pend_mbx_stage2, 0);
3021 atomic_set(&ha->zio_threshold, DEFAULT_ZIO_THRESHOLD);
3022 ha->last_zio_threshold = DEFAULT_ZIO_THRESHOLD;
3023 INIT_LIST_HEAD(&ha->tmf_pending);
3024 INIT_LIST_HEAD(&ha->tmf_active);
3025
3026 /* Assign ISP specific operations. */
3027 if (IS_QLA2100(ha)) {
3028 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
3029 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
3030 req_length = REQUEST_ENTRY_CNT_2100;
3031 rsp_length = RESPONSE_ENTRY_CNT_2100;
3032 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
3033 ha->gid_list_info_size = 4;
3034 ha->flash_conf_off = ~0;
3035 ha->flash_data_off = ~0;
3036 ha->nvram_conf_off = ~0;
3037 ha->nvram_data_off = ~0;
3038 ha->isp_ops = &qla2100_isp_ops;
3039 } else if (IS_QLA2200(ha)) {
3040 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
3041 ha->mbx_count = MAILBOX_REGISTER_COUNT_2200;
3042 req_length = REQUEST_ENTRY_CNT_2200;
3043 rsp_length = RESPONSE_ENTRY_CNT_2100;
3044 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
3045 ha->gid_list_info_size = 4;
3046 ha->flash_conf_off = ~0;
3047 ha->flash_data_off = ~0;
3048 ha->nvram_conf_off = ~0;
3049 ha->nvram_data_off = ~0;
3050 ha->isp_ops = &qla2100_isp_ops;
3051 } else if (IS_QLA23XX(ha)) {
3052 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
3053 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3054 req_length = REQUEST_ENTRY_CNT_2200;
3055 rsp_length = RESPONSE_ENTRY_CNT_2300;
3056 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3057 ha->gid_list_info_size = 6;
3058 if (IS_QLA2322(ha) || IS_QLA6322(ha))
3059 ha->optrom_size = OPTROM_SIZE_2322;
3060 ha->flash_conf_off = ~0;
3061 ha->flash_data_off = ~0;
3062 ha->nvram_conf_off = ~0;
3063 ha->nvram_data_off = ~0;
3064 ha->isp_ops = &qla2300_isp_ops;
3065 } else if (IS_QLA24XX_TYPE(ha)) {
3066 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3067 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3068 req_length = REQUEST_ENTRY_CNT_24XX;
3069 rsp_length = RESPONSE_ENTRY_CNT_2300;
3070 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3071 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3072 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
3073 ha->gid_list_info_size = 8;
3074 ha->optrom_size = OPTROM_SIZE_24XX;
3075 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
3076 ha->isp_ops = &qla24xx_isp_ops;
3077 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
3078 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
3079 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
3080 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
3081 } else if (IS_QLA25XX(ha)) {
3082 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3083 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3084 req_length = REQUEST_ENTRY_CNT_24XX;
3085 rsp_length = RESPONSE_ENTRY_CNT_2300;
3086 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3087 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3088 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
3089 ha->gid_list_info_size = 8;
3090 ha->optrom_size = OPTROM_SIZE_25XX;
3091 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3092 ha->isp_ops = &qla25xx_isp_ops;
3093 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
3094 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
3095 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
3096 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
3097 } else if (IS_QLA81XX(ha)) {
3098 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3099 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3100 req_length = REQUEST_ENTRY_CNT_24XX;
3101 rsp_length = RESPONSE_ENTRY_CNT_2300;
3102 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3103 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3104 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3105 ha->gid_list_info_size = 8;
3106 ha->optrom_size = OPTROM_SIZE_81XX;
3107 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3108 ha->isp_ops = &qla81xx_isp_ops;
3109 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
3110 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
3111 ha->nvram_conf_off = ~0;
3112 ha->nvram_data_off = ~0;
3113 } else if (IS_QLA82XX(ha)) {
3114 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3115 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3116 req_length = REQUEST_ENTRY_CNT_82XX;
3117 rsp_length = RESPONSE_ENTRY_CNT_82XX;
3118 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3119 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3120 ha->gid_list_info_size = 8;
3121 ha->optrom_size = OPTROM_SIZE_82XX;
3122 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3123 ha->isp_ops = &qla82xx_isp_ops;
3124 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
3125 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
3126 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
3127 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
3128 } else if (IS_QLA8044(ha)) {
3129 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3130 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3131 req_length = REQUEST_ENTRY_CNT_82XX;
3132 rsp_length = RESPONSE_ENTRY_CNT_82XX;
3133 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3134 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3135 ha->gid_list_info_size = 8;
3136 ha->optrom_size = OPTROM_SIZE_83XX;
3137 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3138 ha->isp_ops = &qla8044_isp_ops;
3139 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
3140 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
3141 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
3142 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
3143 } else if (IS_QLA83XX(ha)) {
3144 ha->portnum = PCI_FUNC(ha->pdev->devfn);
3145 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3146 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3147 req_length = REQUEST_ENTRY_CNT_83XX;
3148 rsp_length = RESPONSE_ENTRY_CNT_83XX;
3149 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3150 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3151 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3152 ha->gid_list_info_size = 8;
3153 ha->optrom_size = OPTROM_SIZE_83XX;
3154 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3155 ha->isp_ops = &qla83xx_isp_ops;
3156 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
3157 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
3158 ha->nvram_conf_off = ~0;
3159 ha->nvram_data_off = ~0;
3160 } else if (IS_QLAFX00(ha)) {
3161 ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00;
3162 ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00;
3163 ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00;
3164 req_length = REQUEST_ENTRY_CNT_FX00;
3165 rsp_length = RESPONSE_ENTRY_CNT_FX00;
3166 ha->isp_ops = &qlafx00_isp_ops;
3167 ha->port_down_retry_count = 30; /* default value */
3168 ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL;
3169 ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
3170 ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL;
3171 ha->mr.fw_hbt_en = 1;
3172 ha->mr.host_info_resend = false;
3173 ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL;
3174 } else if (IS_QLA27XX(ha)) {
3175 ha->portnum = PCI_FUNC(ha->pdev->devfn);
3176 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3177 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3178 req_length = REQUEST_ENTRY_CNT_83XX;
3179 rsp_length = RESPONSE_ENTRY_CNT_83XX;
3180 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3181 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3182 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3183 ha->gid_list_info_size = 8;
3184 ha->optrom_size = OPTROM_SIZE_83XX;
3185 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3186 ha->isp_ops = &qla27xx_isp_ops;
3187 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
3188 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
3189 ha->nvram_conf_off = ~0;
3190 ha->nvram_data_off = ~0;
3191 } else if (IS_QLA28XX(ha)) {
3192 ha->portnum = PCI_FUNC(ha->pdev->devfn);
3193 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
3194 ha->mbx_count = MAILBOX_REGISTER_COUNT;
3195 req_length = REQUEST_ENTRY_CNT_83XX;
3196 rsp_length = RESPONSE_ENTRY_CNT_83XX;
3197 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
3198 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
3199 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
3200 ha->gid_list_info_size = 8;
3201 ha->optrom_size = OPTROM_SIZE_28XX;
3202 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
3203 ha->isp_ops = &qla27xx_isp_ops;
3204 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_28XX;
3205 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_28XX;
3206 ha->nvram_conf_off = ~0;
3207 ha->nvram_data_off = ~0;
3208 }
3209
3210 ql_dbg_pci(ql_dbg_init, pdev, 0x001e,
3211 "mbx_count=%d, req_length=%d, "
3212 "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, "
3213 "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, "
3214 "max_fibre_devices=%d.\n",
3215 ha->mbx_count, req_length, rsp_length, ha->max_loop_id,
3216 ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size,
3217 ha->nvram_npiv_size, ha->max_fibre_devices);
3218 ql_dbg_pci(ql_dbg_init, pdev, 0x001f,
3219 "isp_ops=%p, flash_conf_off=%d, "
3220 "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n",
3221 ha->isp_ops, ha->flash_conf_off, ha->flash_data_off,
3222 ha->nvram_conf_off, ha->nvram_data_off);
3223
3224 /* Configure PCI I/O space */
3225 ret = ha->isp_ops->iospace_config(ha);
3226 if (ret)
3227 goto iospace_config_failed;
3228
3229 ql_log_pci(ql_log_info, pdev, 0x001d,
3230 "Found an ISP%04X irq %d iobase 0x%p.\n",
3231 pdev->device, pdev->irq, ha->iobase);
3232 mutex_init(&ha->vport_lock);
3233 mutex_init(&ha->mq_lock);
3234 init_completion(&ha->mbx_cmd_comp);
3235 complete(&ha->mbx_cmd_comp);
3236 init_completion(&ha->mbx_intr_comp);
3237 init_completion(&ha->dcbx_comp);
3238 init_completion(&ha->lb_portup_comp);
3239
3240 set_bit(0, (unsigned long *) ha->vp_idx_map);
3241
3242 qla2x00_config_dma_addressing(ha);
3243 ql_dbg_pci(ql_dbg_init, pdev, 0x0020,
3244 "64 Bit addressing is %s.\n",
3245 ha->flags.enable_64bit_addressing ? "enable" :
3246 "disable");
3247 ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
3248 if (ret) {
3249 ql_log_pci(ql_log_fatal, pdev, 0x0031,
3250 "Failed to allocate memory for adapter, aborting.\n");
3251
3252 goto probe_hw_failed;
3253 }
3254
3255 req->max_q_depth = MAX_Q_DEPTH;
3256 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
3257 req->max_q_depth = ql2xmaxqdepth;
3258
3259
3260 base_vha = qla2x00_create_host(sht, ha);
3261 if (!base_vha) {
3262 ret = -ENOMEM;
3263 goto probe_hw_failed;
3264 }
3265
3266 pci_set_drvdata(pdev, base_vha);
3267 set_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3268
3269 host = base_vha->host;
3270 base_vha->req = req;
3271 if (IS_QLA2XXX_MIDTYPE(ha))
3272 base_vha->mgmt_svr_loop_id =
3273 qla2x00_reserve_mgmt_server_loop_id(base_vha);
3274 else
3275 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
3276 base_vha->vp_idx;
3277
3278 /* Setup fcport template structure. */
3279 ha->mr.fcport.vha = base_vha;
3280 ha->mr.fcport.port_type = FCT_UNKNOWN;
3281 ha->mr.fcport.loop_id = FC_NO_LOOP_ID;
3282 qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED);
3283 ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED;
3284 ha->mr.fcport.scan_state = 1;
3285
3286 qla2xxx_reset_stats(host, QLA2XX_HW_ERROR | QLA2XX_SHT_LNK_DWN |
3287 QLA2XX_INT_ERR | QLA2XX_CMD_TIMEOUT |
3288 QLA2XX_RESET_CMD_ERR | QLA2XX_TGT_SHT_LNK_DOWN);
3289
3290 /* Set the SG table size based on ISP type */
3291 if (!IS_FWI2_CAPABLE(ha)) {
3292 if (IS_QLA2100(ha))
3293 host->sg_tablesize = 32;
3294 } else {
3295 if (!IS_QLA82XX(ha))
3296 host->sg_tablesize = QLA_SG_ALL;
3297 }
3298 host->max_id = ha->max_fibre_devices;
3299 host->cmd_per_lun = 3;
3300 host->unique_id = host->host_no;
3301
3302 if (ql2xenabledif && ql2xenabledif != 2) {
3303 ql_log(ql_log_warn, base_vha, 0x302d,
3304 "Invalid value for ql2xenabledif, resetting it to default (2)\n");
3305 ql2xenabledif = 2;
3306 }
3307
3308 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
3309 host->max_cmd_len = 32;
3310 else
3311 host->max_cmd_len = MAX_CMDSZ;
3312 host->max_channel = MAX_BUSES - 1;
3313 /* Older HBAs support only 16-bit LUNs */
3314 if (!IS_QLAFX00(ha) && !IS_FWI2_CAPABLE(ha) &&
3315 ql2xmaxlun > 0xffff)
3316 host->max_lun = 0xffff;
3317 else
3318 host->max_lun = ql2xmaxlun;
3319 host->transportt = qla2xxx_transport_template;
3320 sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
3321
3322 ql_dbg(ql_dbg_init, base_vha, 0x0033,
3323 "max_id=%d this_id=%d "
3324 "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d "
3325 "max_lun=%llu transportt=%p, vendor_id=%llu.\n", host->max_id,
3326 host->this_id, host->cmd_per_lun, host->unique_id,
3327 host->max_cmd_len, host->max_channel, host->max_lun,
3328 host->transportt, sht->vendor_id);
3329
3330 INIT_WORK(&ha->heartbeat_work, qla_heartbeat_work_fn);
3331
3332 /* Set up the irqs */
3333 ret = qla2x00_request_irqs(ha, rsp);
3334 if (ret)
3335 goto probe_failed;
3336
3337 /* Alloc arrays of request and response ring ptrs */
3338 ret = qla2x00_alloc_queues(ha, req, rsp);
3339 if (ret) {
3340 ql_log(ql_log_fatal, base_vha, 0x003d,
3341 "Failed to allocate memory for queue pointers..."
3342 "aborting.\n");
3343 ret = -ENODEV;
3344 goto probe_failed;
3345 }
3346
3347 if (ha->mqenable) {
3348 /* number of hardware queues supported by blk/scsi-mq*/
3349 host->nr_hw_queues = ha->max_qpairs;
3350
3351 ql_dbg(ql_dbg_init, base_vha, 0x0192,
3352 "blk/scsi-mq enabled, HW queues = %d.\n", host->nr_hw_queues);
3353 } else {
3354 if (ql2xnvmeenable) {
3355 host->nr_hw_queues = ha->max_qpairs;
3356 ql_dbg(ql_dbg_init, base_vha, 0x0194,
3357 "FC-NVMe support is enabled, HW queues=%d\n",
3358 host->nr_hw_queues);
3359 } else {
3360 ql_dbg(ql_dbg_init, base_vha, 0x0193,
3361 "blk/scsi-mq disabled.\n");
3362 }
3363 }
3364
3365 qlt_probe_one_stage1(base_vha, ha);
3366
3367 pci_save_state(pdev);
3368
3369 /* Assign back pointers */
3370 rsp->req = req;
3371 req->rsp = rsp;
3372
3373 if (IS_QLAFX00(ha)) {
3374 ha->rsp_q_map[0] = rsp;
3375 ha->req_q_map[0] = req;
3376 set_bit(0, ha->req_qid_map);
3377 set_bit(0, ha->rsp_qid_map);
3378 }
3379
3380 /* FWI2-capable only. */
3381 req->req_q_in = &ha->iobase->isp24.req_q_in;
3382 req->req_q_out = &ha->iobase->isp24.req_q_out;
3383 rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
3384 rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
3385 if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha) ||
3386 IS_QLA28XX(ha)) {
3387 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
3388 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
3389 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
3390 rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out;
3391 }
3392
3393 if (IS_QLAFX00(ha)) {
3394 req->req_q_in = &ha->iobase->ispfx00.req_q_in;
3395 req->req_q_out = &ha->iobase->ispfx00.req_q_out;
3396 rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in;
3397 rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out;
3398 }
3399
3400 if (IS_P3P_TYPE(ha)) {
3401 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
3402 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
3403 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
3404 }
3405
3406 ql_dbg(ql_dbg_multiq, base_vha, 0xc009,
3407 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3408 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3409 ql_dbg(ql_dbg_multiq, base_vha, 0xc00a,
3410 "req->req_q_in=%p req->req_q_out=%p "
3411 "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3412 req->req_q_in, req->req_q_out,
3413 rsp->rsp_q_in, rsp->rsp_q_out);
3414 ql_dbg(ql_dbg_init, base_vha, 0x003e,
3415 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3416 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3417 ql_dbg(ql_dbg_init, base_vha, 0x003f,
3418 "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3419 req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
3420
3421 ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 0);
3422 if (unlikely(!ha->wq)) {
3423 ret = -ENOMEM;
3424 goto probe_failed;
3425 }
3426
3427 if (ha->isp_ops->initialize_adapter(base_vha)) {
3428 ql_log(ql_log_fatal, base_vha, 0x00d6,
3429 "Failed to initialize adapter - Adapter flags %x.\n",
3430 base_vha->device_flags);
3431
3432 if (IS_QLA82XX(ha)) {
3433 qla82xx_idc_lock(ha);
3434 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3435 QLA8XXX_DEV_FAILED);
3436 qla82xx_idc_unlock(ha);
3437 ql_log(ql_log_fatal, base_vha, 0x00d7,
3438 "HW State: FAILED.\n");
3439 } else if (IS_QLA8044(ha)) {
3440 qla8044_idc_lock(ha);
3441 qla8044_wr_direct(base_vha,
3442 QLA8044_CRB_DEV_STATE_INDEX,
3443 QLA8XXX_DEV_FAILED);
3444 qla8044_idc_unlock(ha);
3445 ql_log(ql_log_fatal, base_vha, 0x0150,
3446 "HW State: FAILED.\n");
3447 }
3448
3449 ret = -ENODEV;
3450 goto probe_failed;
3451 }
3452
3453 if (IS_QLAFX00(ha))
3454 host->can_queue = QLAFX00_MAX_CANQUEUE;
3455 else
3456 host->can_queue = req->num_outstanding_cmds - 10;
3457
3458 ql_dbg(ql_dbg_init, base_vha, 0x0032,
3459 "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n",
3460 host->can_queue, base_vha->req,
3461 base_vha->mgmt_svr_loop_id, host->sg_tablesize);
3462
3463 /* Check if FW supports MQ or not for ISP25xx */
3464 if (IS_QLA25XX(ha) && !(ha->fw_attributes & BIT_6))
3465 ha->mqenable = 0;
3466
3467 if (ha->mqenable) {
3468 bool startit = false;
3469
3470 if (QLA_TGT_MODE_ENABLED())
3471 startit = false;
3472
3473 if (ql2x_ini_mode == QLA2XXX_INI_MODE_ENABLED)
3474 startit = true;
3475
3476 /* Create start of day qpairs for Block MQ */
3477 for (i = 0; i < ha->max_qpairs; i++)
3478 qla2xxx_create_qpair(base_vha, 5, 0, startit);
3479 }
3480 qla_init_iocb_limit(base_vha);
3481
3482 if (ha->flags.running_gold_fw)
3483 goto skip_dpc;
3484
3485 /*
3486 * Startup the kernel thread for this host adapter
3487 */
3488 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
3489 "%s_dpc", base_vha->host_str);
3490 if (IS_ERR(ha->dpc_thread)) {
3491 ql_log(ql_log_fatal, base_vha, 0x00ed,
3492 "Failed to start DPC thread.\n");
3493 ret = PTR_ERR(ha->dpc_thread);
3494 ha->dpc_thread = NULL;
3495 goto probe_failed;
3496 }
3497 ql_dbg(ql_dbg_init, base_vha, 0x00ee,
3498 "DPC thread started successfully.\n");
3499
3500 /*
3501 * If we're not coming up in initiator mode, we might sit for
3502 * a while without waking up the dpc thread, which leads to a
3503 * stuck process warning. So just kick the dpc once here and
3504 * let the kthread start (and go back to sleep in qla2x00_do_dpc).
3505 */
3506 qla2xxx_wake_dpc(base_vha);
3507
3508 INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error);
3509
3510 if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) {
3511 sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no);
3512 ha->dpc_lp_wq = create_singlethread_workqueue(wq_name);
3513 INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen);
3514
3515 sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no);
3516 ha->dpc_hp_wq = create_singlethread_workqueue(wq_name);
3517 INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work);
3518 INIT_WORK(&ha->idc_state_handler,
3519 qla83xx_idc_state_handler_work);
3520 INIT_WORK(&ha->nic_core_unrecoverable,
3521 qla83xx_nic_core_unrecoverable_work);
3522 }
3523
3524skip_dpc:
3525 list_add_tail(&base_vha->list, &ha->vp_list);
3526 base_vha->host->irq = ha->pdev->irq;
3527
3528 /* Initialized the timer */
3529 qla2x00_start_timer(base_vha, WATCH_INTERVAL);
3530 ql_dbg(ql_dbg_init, base_vha, 0x00ef,
3531 "Started qla2x00_timer with "
3532 "interval=%d.\n", WATCH_INTERVAL);
3533 ql_dbg(ql_dbg_init, base_vha, 0x00f0,
3534 "Detected hba at address=%p.\n",
3535 ha);
3536
3537 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
3538 if (ha->fw_attributes & BIT_4) {
3539 int prot = 0, guard;
3540
3541 base_vha->flags.difdix_supported = 1;
3542 ql_dbg(ql_dbg_init, base_vha, 0x00f1,
3543 "Registering for DIF/DIX type 1 and 3 protection.\n");
3544 if (ql2xprotmask)
3545 scsi_host_set_prot(host, ql2xprotmask);
3546 else
3547 scsi_host_set_prot(host,
3548 prot | SHOST_DIF_TYPE1_PROTECTION
3549 | SHOST_DIF_TYPE2_PROTECTION
3550 | SHOST_DIF_TYPE3_PROTECTION
3551 | SHOST_DIX_TYPE1_PROTECTION
3552 | SHOST_DIX_TYPE2_PROTECTION
3553 | SHOST_DIX_TYPE3_PROTECTION);
3554
3555 guard = SHOST_DIX_GUARD_CRC;
3556
3557 if (IS_PI_IPGUARD_CAPABLE(ha) &&
3558 (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha)))
3559 guard |= SHOST_DIX_GUARD_IP;
3560
3561 if (ql2xprotguard)
3562 scsi_host_set_guard(host, ql2xprotguard);
3563 else
3564 scsi_host_set_guard(host, guard);
3565 } else
3566 base_vha->flags.difdix_supported = 0;
3567 }
3568
3569 ha->isp_ops->enable_intrs(ha);
3570
3571 if (IS_QLAFX00(ha)) {
3572 ret = qlafx00_fx_disc(base_vha,
3573 &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO);
3574 host->sg_tablesize = (ha->mr.extended_io_enabled) ?
3575 QLA_SG_ALL : 128;
3576 }
3577
3578 ret = scsi_add_host(host, &pdev->dev);
3579 if (ret)
3580 goto probe_failed;
3581
3582 base_vha->flags.init_done = 1;
3583 base_vha->flags.online = 1;
3584 ha->prev_minidump_failed = 0;
3585
3586 ql_dbg(ql_dbg_init, base_vha, 0x00f2,
3587 "Init done and hba is online.\n");
3588
3589 if (qla_ini_mode_enabled(base_vha) ||
3590 qla_dual_mode_enabled(base_vha))
3591 scsi_scan_host(host);
3592 else
3593 ql_log(ql_log_info, base_vha, 0x0122,
3594 "skipping scsi_scan_host() for non-initiator port\n");
3595
3596 qla2x00_alloc_sysfs_attr(base_vha);
3597
3598 if (IS_QLAFX00(ha)) {
3599 ret = qlafx00_fx_disc(base_vha,
3600 &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO);
3601
3602 /* Register system information */
3603 ret = qlafx00_fx_disc(base_vha,
3604 &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO);
3605 }
3606
3607 qla2x00_init_host_attr(base_vha);
3608
3609 qla2x00_dfs_setup(base_vha);
3610
3611 ql_log(ql_log_info, base_vha, 0x00fb,
3612 "QLogic %s - %s.\n", ha->model_number, ha->model_desc);
3613 ql_log(ql_log_info, base_vha, 0x00fc,
3614 "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n",
3615 pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info,
3616 sizeof(pci_info)),
3617 pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-',
3618 base_vha->host_no,
3619 ha->isp_ops->fw_version_str(base_vha, fw_str, sizeof(fw_str)));
3620
3621 qlt_add_target(ha, base_vha);
3622
3623 clear_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3624
3625 if (test_bit(UNLOADING, &base_vha->dpc_flags))
3626 return -ENODEV;
3627
3628 return 0;
3629
3630probe_failed:
3631 qla_enode_stop(base_vha);
3632 qla_edb_stop(base_vha);
3633 vfree(base_vha->scan.l);
3634 if (base_vha->gnl.l) {
3635 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size,
3636 base_vha->gnl.l, base_vha->gnl.ldma);
3637 base_vha->gnl.l = NULL;
3638 }
3639
3640 if (base_vha->timer_active)
3641 qla2x00_stop_timer(base_vha);
3642 base_vha->flags.online = 0;
3643 if (ha->dpc_thread) {
3644 struct task_struct *t = ha->dpc_thread;
3645
3646 ha->dpc_thread = NULL;
3647 kthread_stop(t);
3648 }
3649
3650 qla2x00_free_device(base_vha);
3651 scsi_host_put(base_vha->host);
3652 /*
3653 * Need to NULL out local req/rsp after
3654 * qla2x00_free_device => qla2x00_free_queues frees
3655 * what these are pointing to. Or else we'll
3656 * fall over below in qla2x00_free_req/rsp_que.
3657 */
3658 req = NULL;
3659 rsp = NULL;
3660
3661probe_hw_failed:
3662 qla2x00_mem_free(ha);
3663 qla2x00_free_req_que(ha, req);
3664 qla2x00_free_rsp_que(ha, rsp);
3665 qla2x00_clear_drv_active(ha);
3666
3667iospace_config_failed:
3668 if (IS_P3P_TYPE(ha)) {
3669 if (!ha->nx_pcibase)
3670 iounmap((device_reg_t *)ha->nx_pcibase);
3671 if (!ql2xdbwr)
3672 iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3673 } else {
3674 if (ha->iobase)
3675 iounmap(ha->iobase);
3676 if (ha->cregbase)
3677 iounmap(ha->cregbase);
3678 }
3679 pci_release_selected_regions(ha->pdev, ha->bars);
3680 kfree(ha);
3681
3682disable_device:
3683 pci_disable_device(pdev);
3684 return ret;
3685}
3686
3687static void __qla_set_remove_flag(scsi_qla_host_t *base_vha)
3688{
3689 scsi_qla_host_t *vp;
3690 unsigned long flags;
3691 struct qla_hw_data *ha;
3692
3693 if (!base_vha)
3694 return;
3695
3696 ha = base_vha->hw;
3697
3698 spin_lock_irqsave(&ha->vport_slock, flags);
3699 list_for_each_entry(vp, &ha->vp_list, list)
3700 set_bit(PFLG_DRIVER_REMOVING, &vp->pci_flags);
3701
3702 /*
3703 * Indicate device removal to prevent future board_disable
3704 * and wait until any pending board_disable has completed.
3705 */
3706 set_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags);
3707 spin_unlock_irqrestore(&ha->vport_slock, flags);
3708}
3709
3710static void
3711qla2x00_shutdown(struct pci_dev *pdev)
3712{
3713 scsi_qla_host_t *vha;
3714 struct qla_hw_data *ha;
3715
3716 vha = pci_get_drvdata(pdev);
3717 ha = vha->hw;
3718
3719 ql_log(ql_log_info, vha, 0xfffa,
3720 "Adapter shutdown\n");
3721
3722 /*
3723 * Prevent future board_disable and wait
3724 * until any pending board_disable has completed.
3725 */
3726 __qla_set_remove_flag(vha);
3727 cancel_work_sync(&ha->board_disable);
3728
3729 if (!atomic_read(&pdev->enable_cnt))
3730 return;
3731
3732 /* Notify ISPFX00 firmware */
3733 if (IS_QLAFX00(ha))
3734 qlafx00_driver_shutdown(vha, 20);
3735
3736 /* Turn-off FCE trace */
3737 if (ha->flags.fce_enabled) {
3738 qla2x00_disable_fce_trace(vha, NULL, NULL);
3739 ha->flags.fce_enabled = 0;
3740 }
3741
3742 /* Turn-off EFT trace */
3743 if (ha->eft)
3744 qla2x00_disable_eft_trace(vha);
3745
3746 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) ||
3747 IS_QLA28XX(ha)) {
3748 if (ha->flags.fw_started)
3749 qla2x00_abort_isp_cleanup(vha);
3750 } else {
3751 /* Stop currently executing firmware. */
3752 qla2x00_try_to_stop_firmware(vha);
3753 }
3754
3755 /* Disable timer */
3756 if (vha->timer_active)
3757 qla2x00_stop_timer(vha);
3758
3759 /* Turn adapter off line */
3760 vha->flags.online = 0;
3761
3762 /* turn-off interrupts on the card */
3763 if (ha->interrupts_on) {
3764 vha->flags.init_done = 0;
3765 ha->isp_ops->disable_intrs(ha);
3766 }
3767
3768 qla2x00_free_irqs(vha);
3769
3770 qla2x00_free_fw_dump(ha);
3771
3772 pci_disable_device(pdev);
3773 ql_log(ql_log_info, vha, 0xfffe,
3774 "Adapter shutdown successfully.\n");
3775}
3776
3777/* Deletes all the virtual ports for a given ha */
3778static void
3779qla2x00_delete_all_vps(struct qla_hw_data *ha, scsi_qla_host_t *base_vha)
3780{
3781 scsi_qla_host_t *vha;
3782 unsigned long flags;
3783
3784 mutex_lock(&ha->vport_lock);
3785 while (ha->cur_vport_count) {
3786 spin_lock_irqsave(&ha->vport_slock, flags);
3787
3788 BUG_ON(base_vha->list.next == &ha->vp_list);
3789 /* This assumes first entry in ha->vp_list is always base vha */
3790 vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list);
3791 scsi_host_get(vha->host);
3792
3793 spin_unlock_irqrestore(&ha->vport_slock, flags);
3794 mutex_unlock(&ha->vport_lock);
3795
3796 qla_nvme_delete(vha);
3797
3798 fc_vport_terminate(vha->fc_vport);
3799 scsi_host_put(vha->host);
3800
3801 mutex_lock(&ha->vport_lock);
3802 }
3803 mutex_unlock(&ha->vport_lock);
3804}
3805
3806/* Stops all deferred work threads */
3807static void
3808qla2x00_destroy_deferred_work(struct qla_hw_data *ha)
3809{
3810 /* Cancel all work and destroy DPC workqueues */
3811 if (ha->dpc_lp_wq) {
3812 cancel_work_sync(&ha->idc_aen);
3813 destroy_workqueue(ha->dpc_lp_wq);
3814 ha->dpc_lp_wq = NULL;
3815 }
3816
3817 if (ha->dpc_hp_wq) {
3818 cancel_work_sync(&ha->nic_core_reset);
3819 cancel_work_sync(&ha->idc_state_handler);
3820 cancel_work_sync(&ha->nic_core_unrecoverable);
3821 destroy_workqueue(ha->dpc_hp_wq);
3822 ha->dpc_hp_wq = NULL;
3823 }
3824
3825 /* Kill the kernel thread for this host */
3826 if (ha->dpc_thread) {
3827 struct task_struct *t = ha->dpc_thread;
3828
3829 /*
3830 * qla2xxx_wake_dpc checks for ->dpc_thread
3831 * so we need to zero it out.
3832 */
3833 ha->dpc_thread = NULL;
3834 kthread_stop(t);
3835 }
3836}
3837
3838static void
3839qla2x00_unmap_iobases(struct qla_hw_data *ha)
3840{
3841 if (IS_QLA82XX(ha)) {
3842
3843 iounmap((device_reg_t *)ha->nx_pcibase);
3844 if (!ql2xdbwr)
3845 iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3846 } else {
3847 if (ha->iobase)
3848 iounmap(ha->iobase);
3849
3850 if (ha->cregbase)
3851 iounmap(ha->cregbase);
3852
3853 if (ha->mqiobase)
3854 iounmap(ha->mqiobase);
3855
3856 if (ha->msixbase)
3857 iounmap(ha->msixbase);
3858 }
3859}
3860
3861static void
3862qla2x00_clear_drv_active(struct qla_hw_data *ha)
3863{
3864 if (IS_QLA8044(ha)) {
3865 qla8044_idc_lock(ha);
3866 qla8044_clear_drv_active(ha);
3867 qla8044_idc_unlock(ha);
3868 } else if (IS_QLA82XX(ha)) {
3869 qla82xx_idc_lock(ha);
3870 qla82xx_clear_drv_active(ha);
3871 qla82xx_idc_unlock(ha);
3872 }
3873}
3874
3875static void
3876qla2x00_remove_one(struct pci_dev *pdev)
3877{
3878 scsi_qla_host_t *base_vha;
3879 struct qla_hw_data *ha;
3880
3881 base_vha = pci_get_drvdata(pdev);
3882 ha = base_vha->hw;
3883 ql_log(ql_log_info, base_vha, 0xb079,
3884 "Removing driver\n");
3885 __qla_set_remove_flag(base_vha);
3886 cancel_work_sync(&ha->board_disable);
3887
3888 /*
3889 * If the PCI device is disabled then there was a PCI-disconnect and
3890 * qla2x00_disable_board_on_pci_error has taken care of most of the
3891 * resources.
3892 */
3893 if (!atomic_read(&pdev->enable_cnt)) {
3894 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size,
3895 base_vha->gnl.l, base_vha->gnl.ldma);
3896 base_vha->gnl.l = NULL;
3897 scsi_host_put(base_vha->host);
3898 kfree(ha);
3899 pci_set_drvdata(pdev, NULL);
3900 return;
3901 }
3902 qla2x00_wait_for_hba_ready(base_vha);
3903
3904 /*
3905 * if UNLOADING flag is already set, then continue unload,
3906 * where it was set first.
3907 */
3908 if (test_and_set_bit(UNLOADING, &base_vha->dpc_flags))
3909 return;
3910
3911 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) ||
3912 IS_QLA28XX(ha)) {
3913 if (ha->flags.fw_started)
3914 qla2x00_abort_isp_cleanup(base_vha);
3915 } else if (!IS_QLAFX00(ha)) {
3916 if (IS_QLA8031(ha)) {
3917 ql_dbg(ql_dbg_p3p, base_vha, 0xb07e,
3918 "Clearing fcoe driver presence.\n");
3919 if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS)
3920 ql_dbg(ql_dbg_p3p, base_vha, 0xb079,
3921 "Error while clearing DRV-Presence.\n");
3922 }
3923
3924 qla2x00_try_to_stop_firmware(base_vha);
3925 }
3926
3927 qla2x00_wait_for_sess_deletion(base_vha);
3928
3929 qla_nvme_delete(base_vha);
3930
3931 dma_free_coherent(&ha->pdev->dev,
3932 base_vha->gnl.size, base_vha->gnl.l, base_vha->gnl.ldma);
3933
3934 base_vha->gnl.l = NULL;
3935 qla_enode_stop(base_vha);
3936 qla_edb_stop(base_vha);
3937
3938 vfree(base_vha->scan.l);
3939
3940 if (IS_QLAFX00(ha))
3941 qlafx00_driver_shutdown(base_vha, 20);
3942
3943 qla2x00_delete_all_vps(ha, base_vha);
3944
3945 qla2x00_dfs_remove(base_vha);
3946
3947 qla84xx_put_chip(base_vha);
3948
3949 /* Disable timer */
3950 if (base_vha->timer_active)
3951 qla2x00_stop_timer(base_vha);
3952
3953 base_vha->flags.online = 0;
3954
3955 /* free DMA memory */
3956 if (ha->exlogin_buf)
3957 qla2x00_free_exlogin_buffer(ha);
3958
3959 /* free DMA memory */
3960 if (ha->exchoffld_buf)
3961 qla2x00_free_exchoffld_buffer(ha);
3962
3963 qla2x00_destroy_deferred_work(ha);
3964
3965 qlt_remove_target(ha, base_vha);
3966
3967 qla2x00_free_sysfs_attr(base_vha, true);
3968
3969 fc_remove_host(base_vha->host);
3970
3971 scsi_remove_host(base_vha->host);
3972
3973 qla2x00_free_device(base_vha);
3974
3975 qla2x00_clear_drv_active(ha);
3976
3977 scsi_host_put(base_vha->host);
3978
3979 qla2x00_unmap_iobases(ha);
3980
3981 pci_release_selected_regions(ha->pdev, ha->bars);
3982 kfree(ha);
3983
3984 pci_disable_device(pdev);
3985}
3986
3987static inline void
3988qla24xx_free_purex_list(struct purex_list *list)
3989{
3990 struct purex_item *item, *next;
3991 ulong flags;
3992
3993 spin_lock_irqsave(&list->lock, flags);
3994 list_for_each_entry_safe(item, next, &list->head, list) {
3995 list_del(&item->list);
3996 if (item == &item->vha->default_item)
3997 continue;
3998 kfree(item);
3999 }
4000 spin_unlock_irqrestore(&list->lock, flags);
4001}
4002
4003static void
4004qla2x00_free_device(scsi_qla_host_t *vha)
4005{
4006 struct qla_hw_data *ha = vha->hw;
4007
4008 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
4009
4010 /* Disable timer */
4011 if (vha->timer_active)
4012 qla2x00_stop_timer(vha);
4013
4014 qla25xx_delete_queues(vha);
4015 vha->flags.online = 0;
4016
4017 /* turn-off interrupts on the card */
4018 if (ha->interrupts_on) {
4019 vha->flags.init_done = 0;
4020 ha->isp_ops->disable_intrs(ha);
4021 }
4022
4023 qla2x00_free_fcports(vha);
4024
4025 qla2x00_free_irqs(vha);
4026
4027 /* Flush the work queue and remove it */
4028 if (ha->wq) {
4029 destroy_workqueue(ha->wq);
4030 ha->wq = NULL;
4031 }
4032
4033
4034 qla24xx_free_purex_list(&vha->purex_list);
4035
4036 qla2x00_mem_free(ha);
4037
4038 qla82xx_md_free(vha);
4039
4040 qla_edif_sadb_release_free_pool(ha);
4041 qla_edif_sadb_release(ha);
4042
4043 qla2x00_free_queues(ha);
4044}
4045
4046void qla2x00_free_fcports(struct scsi_qla_host *vha)
4047{
4048 fc_port_t *fcport, *tfcport;
4049
4050 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list)
4051 qla2x00_free_fcport(fcport);
4052}
4053
4054static inline void
4055qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport)
4056{
4057 int now;
4058
4059 if (!fcport->rport)
4060 return;
4061
4062 if (fcport->rport) {
4063 ql_dbg(ql_dbg_disc, fcport->vha, 0x2109,
4064 "%s %8phN. rport %p roles %x\n",
4065 __func__, fcport->port_name, fcport->rport,
4066 fcport->rport->roles);
4067 fc_remote_port_delete(fcport->rport);
4068 }
4069 qlt_do_generation_tick(vha, &now);
4070}
4071
4072/*
4073 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
4074 *
4075 * Input: ha = adapter block pointer. fcport = port structure pointer.
4076 *
4077 * Return: None.
4078 *
4079 * Context:
4080 */
4081void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
4082 int do_login)
4083{
4084 if (IS_QLAFX00(vha->hw)) {
4085 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
4086 qla2x00_schedule_rport_del(vha, fcport);
4087 return;
4088 }
4089
4090 if (atomic_read(&fcport->state) == FCS_ONLINE &&
4091 vha->vp_idx == fcport->vha->vp_idx) {
4092 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
4093 qla2x00_schedule_rport_del(vha, fcport);
4094 }
4095
4096 /*
4097 * We may need to retry the login, so don't change the state of the
4098 * port but do the retries.
4099 */
4100 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
4101 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
4102
4103 if (!do_login)
4104 return;
4105
4106 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
4107}
4108
4109void
4110qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha)
4111{
4112 fc_port_t *fcport;
4113
4114 ql_dbg(ql_dbg_disc, vha, 0x20f1,
4115 "Mark all dev lost\n");
4116
4117 list_for_each_entry(fcport, &vha->vp_fcports, list) {
4118 if (ql2xfc2target &&
4119 fcport->loop_id != FC_NO_LOOP_ID &&
4120 (fcport->flags & FCF_FCP2_DEVICE) &&
4121 fcport->port_type == FCT_TARGET &&
4122 !qla2x00_reset_active(vha)) {
4123 ql_dbg(ql_dbg_disc, vha, 0x211a,
4124 "Delaying session delete for FCP2 flags 0x%x port_type = 0x%x port_id=%06x %phC",
4125 fcport->flags, fcport->port_type,
4126 fcport->d_id.b24, fcport->port_name);
4127 continue;
4128 }
4129 fcport->scan_state = 0;
4130 qlt_schedule_sess_for_deletion(fcport);
4131 }
4132}
4133
4134static void qla2x00_set_reserved_loop_ids(struct qla_hw_data *ha)
4135{
4136 int i;
4137
4138 if (IS_FWI2_CAPABLE(ha))
4139 return;
4140
4141 for (i = 0; i < SNS_FIRST_LOOP_ID; i++)
4142 set_bit(i, ha->loop_id_map);
4143 set_bit(MANAGEMENT_SERVER, ha->loop_id_map);
4144 set_bit(BROADCAST, ha->loop_id_map);
4145}
4146
4147/*
4148* qla2x00_mem_alloc
4149* Allocates adapter memory.
4150*
4151* Returns:
4152* 0 = success.
4153* !0 = failure.
4154*/
4155static int
4156qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
4157 struct req_que **req, struct rsp_que **rsp)
4158{
4159 char name[16];
4160 int rc;
4161
4162 if (QLA_TGT_MODE_ENABLED() || EDIF_CAP(ha)) {
4163 ha->vp_map = kcalloc(MAX_MULTI_ID_FABRIC, sizeof(struct qla_vp_map), GFP_KERNEL);
4164 if (!ha->vp_map)
4165 goto fail;
4166 }
4167
4168 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
4169 &ha->init_cb_dma, GFP_KERNEL);
4170 if (!ha->init_cb)
4171 goto fail_free_vp_map;
4172
4173 rc = btree_init32(&ha->host_map);
4174 if (rc)
4175 goto fail_free_init_cb;
4176
4177 if (qlt_mem_alloc(ha) < 0)
4178 goto fail_free_btree;
4179
4180 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev,
4181 qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL);
4182 if (!ha->gid_list)
4183 goto fail_free_tgt_mem;
4184
4185 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
4186 if (!ha->srb_mempool)
4187 goto fail_free_gid_list;
4188
4189 if (IS_P3P_TYPE(ha) || IS_QLA27XX(ha) || (ql2xsecenable && IS_QLA28XX(ha))) {
4190 /* Allocate cache for CT6 Ctx. */
4191 if (!ctx_cachep) {
4192 ctx_cachep = kmem_cache_create("qla2xxx_ctx",
4193 sizeof(struct ct6_dsd), 0,
4194 SLAB_HWCACHE_ALIGN, NULL);
4195 if (!ctx_cachep)
4196 goto fail_free_srb_mempool;
4197 }
4198 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
4199 ctx_cachep);
4200 if (!ha->ctx_mempool)
4201 goto fail_free_srb_mempool;
4202 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021,
4203 "ctx_cachep=%p ctx_mempool=%p.\n",
4204 ctx_cachep, ha->ctx_mempool);
4205 }
4206
4207 /* Get memory for cached NVRAM */
4208 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
4209 if (!ha->nvram)
4210 goto fail_free_ctx_mempool;
4211
4212 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
4213 ha->pdev->device);
4214 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4215 DMA_POOL_SIZE, 8, 0);
4216 if (!ha->s_dma_pool)
4217 goto fail_free_nvram;
4218
4219 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022,
4220 "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n",
4221 ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool);
4222
4223 if (IS_P3P_TYPE(ha) || ql2xenabledif || (IS_QLA28XX(ha) && ql2xsecenable)) {
4224 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4225 DSD_LIST_DMA_POOL_SIZE, 8, 0);
4226 if (!ha->dl_dma_pool) {
4227 ql_log_pci(ql_log_fatal, ha->pdev, 0x0023,
4228 "Failed to allocate memory for dl_dma_pool.\n");
4229 goto fail_s_dma_pool;
4230 }
4231
4232 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4233 FCP_CMND_DMA_POOL_SIZE, 8, 0);
4234 if (!ha->fcp_cmnd_dma_pool) {
4235 ql_log_pci(ql_log_fatal, ha->pdev, 0x0024,
4236 "Failed to allocate memory for fcp_cmnd_dma_pool.\n");
4237 goto fail_dl_dma_pool;
4238 }
4239
4240 if (ql2xenabledif) {
4241 u64 bufsize = DIF_BUNDLING_DMA_POOL_SIZE;
4242 struct dsd_dma *dsd, *nxt;
4243 uint i;
4244 /* Creata a DMA pool of buffers for DIF bundling */
4245 ha->dif_bundl_pool = dma_pool_create(name,
4246 &ha->pdev->dev, DIF_BUNDLING_DMA_POOL_SIZE, 8, 0);
4247 if (!ha->dif_bundl_pool) {
4248 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024,
4249 "%s: failed create dif_bundl_pool\n",
4250 __func__);
4251 goto fail_dif_bundl_dma_pool;
4252 }
4253
4254 INIT_LIST_HEAD(&ha->pool.good.head);
4255 INIT_LIST_HEAD(&ha->pool.unusable.head);
4256 ha->pool.good.count = 0;
4257 ha->pool.unusable.count = 0;
4258 for (i = 0; i < 128; i++) {
4259 dsd = kzalloc(sizeof(*dsd), GFP_ATOMIC);
4260 if (!dsd) {
4261 ql_dbg_pci(ql_dbg_init, ha->pdev,
4262 0xe0ee, "%s: failed alloc dsd\n",
4263 __func__);
4264 return -ENOMEM;
4265 }
4266 ha->dif_bundle_kallocs++;
4267
4268 dsd->dsd_addr = dma_pool_alloc(
4269 ha->dif_bundl_pool, GFP_ATOMIC,
4270 &dsd->dsd_list_dma);
4271 if (!dsd->dsd_addr) {
4272 ql_dbg_pci(ql_dbg_init, ha->pdev,
4273 0xe0ee,
4274 "%s: failed alloc ->dsd_addr\n",
4275 __func__);
4276 kfree(dsd);
4277 ha->dif_bundle_kallocs--;
4278 continue;
4279 }
4280 ha->dif_bundle_dma_allocs++;
4281
4282 /*
4283 * if DMA buffer crosses 4G boundary,
4284 * put it on bad list
4285 */
4286 if (MSD(dsd->dsd_list_dma) ^
4287 MSD(dsd->dsd_list_dma + bufsize)) {
4288 list_add_tail(&dsd->list,
4289 &ha->pool.unusable.head);
4290 ha->pool.unusable.count++;
4291 } else {
4292 list_add_tail(&dsd->list,
4293 &ha->pool.good.head);
4294 ha->pool.good.count++;
4295 }
4296 }
4297
4298 /* return the good ones back to the pool */
4299 list_for_each_entry_safe(dsd, nxt,
4300 &ha->pool.good.head, list) {
4301 list_del(&dsd->list);
4302 dma_pool_free(ha->dif_bundl_pool,
4303 dsd->dsd_addr, dsd->dsd_list_dma);
4304 ha->dif_bundle_dma_allocs--;
4305 kfree(dsd);
4306 ha->dif_bundle_kallocs--;
4307 }
4308
4309 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0024,
4310 "%s: dif dma pool (good=%u unusable=%u)\n",
4311 __func__, ha->pool.good.count,
4312 ha->pool.unusable.count);
4313 }
4314
4315 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025,
4316 "dl_dma_pool=%p fcp_cmnd_dma_pool=%p dif_bundl_pool=%p.\n",
4317 ha->dl_dma_pool, ha->fcp_cmnd_dma_pool,
4318 ha->dif_bundl_pool);
4319 }
4320
4321 /* Allocate memory for SNS commands */
4322 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
4323 /* Get consistent memory allocated for SNS commands */
4324 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
4325 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
4326 if (!ha->sns_cmd)
4327 goto fail_dma_pool;
4328 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026,
4329 "sns_cmd: %p.\n", ha->sns_cmd);
4330 } else {
4331 /* Get consistent memory allocated for MS IOCB */
4332 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4333 &ha->ms_iocb_dma);
4334 if (!ha->ms_iocb)
4335 goto fail_dma_pool;
4336 /* Get consistent memory allocated for CT SNS commands */
4337 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
4338 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
4339 if (!ha->ct_sns)
4340 goto fail_free_ms_iocb;
4341 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027,
4342 "ms_iocb=%p ct_sns=%p.\n",
4343 ha->ms_iocb, ha->ct_sns);
4344 }
4345
4346 /* Allocate memory for request ring */
4347 *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
4348 if (!*req) {
4349 ql_log_pci(ql_log_fatal, ha->pdev, 0x0028,
4350 "Failed to allocate memory for req.\n");
4351 goto fail_req;
4352 }
4353 (*req)->length = req_len;
4354 (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
4355 ((*req)->length + 1) * sizeof(request_t),
4356 &(*req)->dma, GFP_KERNEL);
4357 if (!(*req)->ring) {
4358 ql_log_pci(ql_log_fatal, ha->pdev, 0x0029,
4359 "Failed to allocate memory for req_ring.\n");
4360 goto fail_req_ring;
4361 }
4362 /* Allocate memory for response ring */
4363 *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
4364 if (!*rsp) {
4365 ql_log_pci(ql_log_fatal, ha->pdev, 0x002a,
4366 "Failed to allocate memory for rsp.\n");
4367 goto fail_rsp;
4368 }
4369 (*rsp)->hw = ha;
4370 (*rsp)->length = rsp_len;
4371 (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
4372 ((*rsp)->length + 1) * sizeof(response_t),
4373 &(*rsp)->dma, GFP_KERNEL);
4374 if (!(*rsp)->ring) {
4375 ql_log_pci(ql_log_fatal, ha->pdev, 0x002b,
4376 "Failed to allocate memory for rsp_ring.\n");
4377 goto fail_rsp_ring;
4378 }
4379 (*req)->rsp = *rsp;
4380 (*rsp)->req = *req;
4381 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c,
4382 "req=%p req->length=%d req->ring=%p rsp=%p "
4383 "rsp->length=%d rsp->ring=%p.\n",
4384 *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length,
4385 (*rsp)->ring);
4386 /* Allocate memory for NVRAM data for vports */
4387 if (ha->nvram_npiv_size) {
4388 ha->npiv_info = kcalloc(ha->nvram_npiv_size,
4389 sizeof(struct qla_npiv_entry),
4390 GFP_KERNEL);
4391 if (!ha->npiv_info) {
4392 ql_log_pci(ql_log_fatal, ha->pdev, 0x002d,
4393 "Failed to allocate memory for npiv_info.\n");
4394 goto fail_npiv_info;
4395 }
4396 } else
4397 ha->npiv_info = NULL;
4398
4399 /* Get consistent memory allocated for EX-INIT-CB. */
4400 if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) ||
4401 IS_QLA28XX(ha)) {
4402 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4403 &ha->ex_init_cb_dma);
4404 if (!ha->ex_init_cb)
4405 goto fail_ex_init_cb;
4406 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e,
4407 "ex_init_cb=%p.\n", ha->ex_init_cb);
4408 }
4409
4410 /* Get consistent memory allocated for Special Features-CB. */
4411 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
4412 ha->sf_init_cb = dma_pool_zalloc(ha->s_dma_pool, GFP_KERNEL,
4413 &ha->sf_init_cb_dma);
4414 if (!ha->sf_init_cb)
4415 goto fail_sf_init_cb;
4416 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0199,
4417 "sf_init_cb=%p.\n", ha->sf_init_cb);
4418 }
4419
4420
4421 /* Get consistent memory allocated for Async Port-Database. */
4422 if (!IS_FWI2_CAPABLE(ha)) {
4423 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4424 &ha->async_pd_dma);
4425 if (!ha->async_pd)
4426 goto fail_async_pd;
4427 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f,
4428 "async_pd=%p.\n", ha->async_pd);
4429 }
4430
4431 INIT_LIST_HEAD(&ha->vp_list);
4432
4433 /* Allocate memory for our loop_id bitmap */
4434 ha->loop_id_map = kcalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE),
4435 sizeof(long),
4436 GFP_KERNEL);
4437 if (!ha->loop_id_map)
4438 goto fail_loop_id_map;
4439 else {
4440 qla2x00_set_reserved_loop_ids(ha);
4441 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123,
4442 "loop_id_map=%p.\n", ha->loop_id_map);
4443 }
4444
4445 ha->sfp_data = dma_alloc_coherent(&ha->pdev->dev,
4446 SFP_DEV_SIZE, &ha->sfp_data_dma, GFP_KERNEL);
4447 if (!ha->sfp_data) {
4448 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4449 "Unable to allocate memory for SFP read-data.\n");
4450 goto fail_sfp_data;
4451 }
4452
4453 ha->flt = dma_alloc_coherent(&ha->pdev->dev,
4454 sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE, &ha->flt_dma,
4455 GFP_KERNEL);
4456 if (!ha->flt) {
4457 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4458 "Unable to allocate memory for FLT.\n");
4459 goto fail_flt_buffer;
4460 }
4461
4462 /* allocate the purex dma pool */
4463 ha->purex_dma_pool = dma_pool_create(name, &ha->pdev->dev,
4464 ELS_MAX_PAYLOAD, 8, 0);
4465
4466 if (!ha->purex_dma_pool) {
4467 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4468 "Unable to allocate purex_dma_pool.\n");
4469 goto fail_flt;
4470 }
4471
4472 ha->elsrej.size = sizeof(struct fc_els_ls_rjt) + 16;
4473 ha->elsrej.c = dma_alloc_coherent(&ha->pdev->dev,
4474 ha->elsrej.size,
4475 &ha->elsrej.cdma,
4476 GFP_KERNEL);
4477 if (!ha->elsrej.c) {
4478 ql_dbg_pci(ql_dbg_init, ha->pdev, 0xffff,
4479 "Alloc failed for els reject cmd.\n");
4480 goto fail_elsrej;
4481 }
4482 ha->elsrej.c->er_cmd = ELS_LS_RJT;
4483 ha->elsrej.c->er_reason = ELS_RJT_LOGIC;
4484 ha->elsrej.c->er_explan = ELS_EXPL_UNAB_DATA;
4485
4486 ha->lsrjt.size = sizeof(struct fcnvme_ls_rjt);
4487 ha->lsrjt.c = dma_alloc_coherent(&ha->pdev->dev, ha->lsrjt.size,
4488 &ha->lsrjt.cdma, GFP_KERNEL);
4489 if (!ha->lsrjt.c) {
4490 ql_dbg_pci(ql_dbg_init, ha->pdev, 0xffff,
4491 "Alloc failed for nvme fc reject cmd.\n");
4492 goto fail_lsrjt;
4493 }
4494
4495 return 0;
4496
4497fail_lsrjt:
4498 dma_free_coherent(&ha->pdev->dev, ha->elsrej.size,
4499 ha->elsrej.c, ha->elsrej.cdma);
4500fail_elsrej:
4501 dma_pool_destroy(ha->purex_dma_pool);
4502fail_flt:
4503 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE,
4504 ha->flt, ha->flt_dma);
4505
4506fail_flt_buffer:
4507 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE,
4508 ha->sfp_data, ha->sfp_data_dma);
4509fail_sfp_data:
4510 kfree(ha->loop_id_map);
4511fail_loop_id_map:
4512 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4513fail_async_pd:
4514 dma_pool_free(ha->s_dma_pool, ha->sf_init_cb, ha->sf_init_cb_dma);
4515fail_sf_init_cb:
4516 dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
4517fail_ex_init_cb:
4518 kfree(ha->npiv_info);
4519fail_npiv_info:
4520 dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
4521 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
4522 (*rsp)->ring = NULL;
4523 (*rsp)->dma = 0;
4524fail_rsp_ring:
4525 kfree(*rsp);
4526 *rsp = NULL;
4527fail_rsp:
4528 dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
4529 sizeof(request_t), (*req)->ring, (*req)->dma);
4530 (*req)->ring = NULL;
4531 (*req)->dma = 0;
4532fail_req_ring:
4533 kfree(*req);
4534 *req = NULL;
4535fail_req:
4536 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4537 ha->ct_sns, ha->ct_sns_dma);
4538 ha->ct_sns = NULL;
4539 ha->ct_sns_dma = 0;
4540fail_free_ms_iocb:
4541 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4542 ha->ms_iocb = NULL;
4543 ha->ms_iocb_dma = 0;
4544
4545 if (ha->sns_cmd)
4546 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4547 ha->sns_cmd, ha->sns_cmd_dma);
4548fail_dma_pool:
4549 if (ql2xenabledif) {
4550 struct dsd_dma *dsd, *nxt;
4551
4552 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head,
4553 list) {
4554 list_del(&dsd->list);
4555 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
4556 dsd->dsd_list_dma);
4557 ha->dif_bundle_dma_allocs--;
4558 kfree(dsd);
4559 ha->dif_bundle_kallocs--;
4560 ha->pool.unusable.count--;
4561 }
4562 dma_pool_destroy(ha->dif_bundl_pool);
4563 ha->dif_bundl_pool = NULL;
4564 }
4565
4566fail_dif_bundl_dma_pool:
4567 if (IS_QLA82XX(ha) || ql2xenabledif) {
4568 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4569 ha->fcp_cmnd_dma_pool = NULL;
4570 }
4571fail_dl_dma_pool:
4572 if (IS_QLA82XX(ha) || ql2xenabledif) {
4573 dma_pool_destroy(ha->dl_dma_pool);
4574 ha->dl_dma_pool = NULL;
4575 }
4576fail_s_dma_pool:
4577 dma_pool_destroy(ha->s_dma_pool);
4578 ha->s_dma_pool = NULL;
4579fail_free_nvram:
4580 kfree(ha->nvram);
4581 ha->nvram = NULL;
4582fail_free_ctx_mempool:
4583 mempool_destroy(ha->ctx_mempool);
4584 ha->ctx_mempool = NULL;
4585fail_free_srb_mempool:
4586 mempool_destroy(ha->srb_mempool);
4587 ha->srb_mempool = NULL;
4588fail_free_gid_list:
4589 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4590 ha->gid_list,
4591 ha->gid_list_dma);
4592 ha->gid_list = NULL;
4593 ha->gid_list_dma = 0;
4594fail_free_tgt_mem:
4595 qlt_mem_free(ha);
4596fail_free_btree:
4597 btree_destroy32(&ha->host_map);
4598fail_free_init_cb:
4599 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
4600 ha->init_cb_dma);
4601 ha->init_cb = NULL;
4602 ha->init_cb_dma = 0;
4603fail_free_vp_map:
4604 kfree(ha->vp_map);
4605 ha->vp_map = NULL;
4606fail:
4607 ql_log(ql_log_fatal, NULL, 0x0030,
4608 "Memory allocation failure.\n");
4609 return -ENOMEM;
4610}
4611
4612int
4613qla2x00_set_exlogins_buffer(scsi_qla_host_t *vha)
4614{
4615 int rval;
4616 uint16_t size, max_cnt;
4617 uint32_t temp;
4618 struct qla_hw_data *ha = vha->hw;
4619
4620 /* Return if we don't need to alloacate any extended logins */
4621 if (ql2xexlogins <= MAX_FIBRE_DEVICES_2400)
4622 return QLA_SUCCESS;
4623
4624 if (!IS_EXLOGIN_OFFLD_CAPABLE(ha))
4625 return QLA_SUCCESS;
4626
4627 ql_log(ql_log_info, vha, 0xd021, "EXLOGIN count: %d.\n", ql2xexlogins);
4628 max_cnt = 0;
4629 rval = qla_get_exlogin_status(vha, &size, &max_cnt);
4630 if (rval != QLA_SUCCESS) {
4631 ql_log_pci(ql_log_fatal, ha->pdev, 0xd029,
4632 "Failed to get exlogin status.\n");
4633 return rval;
4634 }
4635
4636 temp = (ql2xexlogins > max_cnt) ? max_cnt : ql2xexlogins;
4637 temp *= size;
4638
4639 if (temp != ha->exlogin_size) {
4640 qla2x00_free_exlogin_buffer(ha);
4641 ha->exlogin_size = temp;
4642
4643 ql_log(ql_log_info, vha, 0xd024,
4644 "EXLOGIN: max_logins=%d, portdb=0x%x, total=%d.\n",
4645 max_cnt, size, temp);
4646
4647 ql_log(ql_log_info, vha, 0xd025,
4648 "EXLOGIN: requested size=0x%x\n", ha->exlogin_size);
4649
4650 /* Get consistent memory for extended logins */
4651 ha->exlogin_buf = dma_alloc_coherent(&ha->pdev->dev,
4652 ha->exlogin_size, &ha->exlogin_buf_dma, GFP_KERNEL);
4653 if (!ha->exlogin_buf) {
4654 ql_log_pci(ql_log_fatal, ha->pdev, 0xd02a,
4655 "Failed to allocate memory for exlogin_buf_dma.\n");
4656 return -ENOMEM;
4657 }
4658 }
4659
4660 /* Now configure the dma buffer */
4661 rval = qla_set_exlogin_mem_cfg(vha, ha->exlogin_buf_dma);
4662 if (rval) {
4663 ql_log(ql_log_fatal, vha, 0xd033,
4664 "Setup extended login buffer ****FAILED****.\n");
4665 qla2x00_free_exlogin_buffer(ha);
4666 }
4667
4668 return rval;
4669}
4670
4671/*
4672* qla2x00_free_exlogin_buffer
4673*
4674* Input:
4675* ha = adapter block pointer
4676*/
4677void
4678qla2x00_free_exlogin_buffer(struct qla_hw_data *ha)
4679{
4680 if (ha->exlogin_buf) {
4681 dma_free_coherent(&ha->pdev->dev, ha->exlogin_size,
4682 ha->exlogin_buf, ha->exlogin_buf_dma);
4683 ha->exlogin_buf = NULL;
4684 ha->exlogin_size = 0;
4685 }
4686}
4687
4688static void
4689qla2x00_number_of_exch(scsi_qla_host_t *vha, u32 *ret_cnt, u16 max_cnt)
4690{
4691 u32 temp;
4692 struct init_cb_81xx *icb = (struct init_cb_81xx *)&vha->hw->init_cb;
4693 *ret_cnt = FW_DEF_EXCHANGES_CNT;
4694
4695 if (max_cnt > vha->hw->max_exchg)
4696 max_cnt = vha->hw->max_exchg;
4697
4698 if (qla_ini_mode_enabled(vha)) {
4699 if (vha->ql2xiniexchg > max_cnt)
4700 vha->ql2xiniexchg = max_cnt;
4701
4702 if (vha->ql2xiniexchg > FW_DEF_EXCHANGES_CNT)
4703 *ret_cnt = vha->ql2xiniexchg;
4704
4705 } else if (qla_tgt_mode_enabled(vha)) {
4706 if (vha->ql2xexchoffld > max_cnt) {
4707 vha->ql2xexchoffld = max_cnt;
4708 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4709 }
4710
4711 if (vha->ql2xexchoffld > FW_DEF_EXCHANGES_CNT)
4712 *ret_cnt = vha->ql2xexchoffld;
4713 } else if (qla_dual_mode_enabled(vha)) {
4714 temp = vha->ql2xiniexchg + vha->ql2xexchoffld;
4715 if (temp > max_cnt) {
4716 vha->ql2xiniexchg -= (temp - max_cnt)/2;
4717 vha->ql2xexchoffld -= (((temp - max_cnt)/2) + 1);
4718 temp = max_cnt;
4719 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4720 }
4721
4722 if (temp > FW_DEF_EXCHANGES_CNT)
4723 *ret_cnt = temp;
4724 }
4725}
4726
4727int
4728qla2x00_set_exchoffld_buffer(scsi_qla_host_t *vha)
4729{
4730 int rval;
4731 u16 size, max_cnt;
4732 u32 actual_cnt, totsz;
4733 struct qla_hw_data *ha = vha->hw;
4734
4735 if (!ha->flags.exchoffld_enabled)
4736 return QLA_SUCCESS;
4737
4738 if (!IS_EXCHG_OFFLD_CAPABLE(ha))
4739 return QLA_SUCCESS;
4740
4741 max_cnt = 0;
4742 rval = qla_get_exchoffld_status(vha, &size, &max_cnt);
4743 if (rval != QLA_SUCCESS) {
4744 ql_log_pci(ql_log_fatal, ha->pdev, 0xd012,
4745 "Failed to get exlogin status.\n");
4746 return rval;
4747 }
4748
4749 qla2x00_number_of_exch(vha, &actual_cnt, max_cnt);
4750 ql_log(ql_log_info, vha, 0xd014,
4751 "Actual exchange offload count: %d.\n", actual_cnt);
4752
4753 totsz = actual_cnt * size;
4754
4755 if (totsz != ha->exchoffld_size) {
4756 qla2x00_free_exchoffld_buffer(ha);
4757 if (actual_cnt <= FW_DEF_EXCHANGES_CNT) {
4758 ha->exchoffld_size = 0;
4759 ha->flags.exchoffld_enabled = 0;
4760 return QLA_SUCCESS;
4761 }
4762
4763 ha->exchoffld_size = totsz;
4764
4765 ql_log(ql_log_info, vha, 0xd016,
4766 "Exchange offload: max_count=%d, actual count=%d entry sz=0x%x, total sz=0x%x\n",
4767 max_cnt, actual_cnt, size, totsz);
4768
4769 ql_log(ql_log_info, vha, 0xd017,
4770 "Exchange Buffers requested size = 0x%x\n",
4771 ha->exchoffld_size);
4772
4773 /* Get consistent memory for extended logins */
4774 ha->exchoffld_buf = dma_alloc_coherent(&ha->pdev->dev,
4775 ha->exchoffld_size, &ha->exchoffld_buf_dma, GFP_KERNEL);
4776 if (!ha->exchoffld_buf) {
4777 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4778 "Failed to allocate memory for Exchange Offload.\n");
4779
4780 if (ha->max_exchg >
4781 (FW_DEF_EXCHANGES_CNT + REDUCE_EXCHANGES_CNT)) {
4782 ha->max_exchg -= REDUCE_EXCHANGES_CNT;
4783 } else if (ha->max_exchg >
4784 (FW_DEF_EXCHANGES_CNT + 512)) {
4785 ha->max_exchg -= 512;
4786 } else {
4787 ha->flags.exchoffld_enabled = 0;
4788 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4789 "Disabling Exchange offload due to lack of memory\n");
4790 }
4791 ha->exchoffld_size = 0;
4792
4793 return -ENOMEM;
4794 }
4795 } else if (!ha->exchoffld_buf || (actual_cnt <= FW_DEF_EXCHANGES_CNT)) {
4796 /* pathological case */
4797 qla2x00_free_exchoffld_buffer(ha);
4798 ha->exchoffld_size = 0;
4799 ha->flags.exchoffld_enabled = 0;
4800 ql_log(ql_log_info, vha, 0xd016,
4801 "Exchange offload not enable: offld size=%d, actual count=%d entry sz=0x%x, total sz=0x%x.\n",
4802 ha->exchoffld_size, actual_cnt, size, totsz);
4803 return 0;
4804 }
4805
4806 /* Now configure the dma buffer */
4807 rval = qla_set_exchoffld_mem_cfg(vha);
4808 if (rval) {
4809 ql_log(ql_log_fatal, vha, 0xd02e,
4810 "Setup exchange offload buffer ****FAILED****.\n");
4811 qla2x00_free_exchoffld_buffer(ha);
4812 } else {
4813 /* re-adjust number of target exchange */
4814 struct init_cb_81xx *icb = (struct init_cb_81xx *)ha->init_cb;
4815
4816 if (qla_ini_mode_enabled(vha))
4817 icb->exchange_count = 0;
4818 else
4819 icb->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
4820 }
4821
4822 return rval;
4823}
4824
4825/*
4826* qla2x00_free_exchoffld_buffer
4827*
4828* Input:
4829* ha = adapter block pointer
4830*/
4831void
4832qla2x00_free_exchoffld_buffer(struct qla_hw_data *ha)
4833{
4834 if (ha->exchoffld_buf) {
4835 dma_free_coherent(&ha->pdev->dev, ha->exchoffld_size,
4836 ha->exchoffld_buf, ha->exchoffld_buf_dma);
4837 ha->exchoffld_buf = NULL;
4838 ha->exchoffld_size = 0;
4839 }
4840}
4841
4842/*
4843* qla2x00_free_fw_dump
4844* Frees fw dump stuff.
4845*
4846* Input:
4847* ha = adapter block pointer
4848*/
4849static void
4850qla2x00_free_fw_dump(struct qla_hw_data *ha)
4851{
4852 struct fwdt *fwdt = ha->fwdt;
4853 uint j;
4854
4855 if (ha->fce)
4856 dma_free_coherent(&ha->pdev->dev,
4857 FCE_SIZE, ha->fce, ha->fce_dma);
4858
4859 if (ha->eft)
4860 dma_free_coherent(&ha->pdev->dev,
4861 EFT_SIZE, ha->eft, ha->eft_dma);
4862
4863 vfree(ha->fw_dump);
4864
4865 ha->fce = NULL;
4866 ha->fce_dma = 0;
4867 ha->flags.fce_enabled = 0;
4868 ha->eft = NULL;
4869 ha->eft_dma = 0;
4870 ha->fw_dumped = false;
4871 ha->fw_dump_cap_flags = 0;
4872 ha->fw_dump_reading = 0;
4873 ha->fw_dump = NULL;
4874 ha->fw_dump_len = 0;
4875
4876 for (j = 0; j < 2; j++, fwdt++) {
4877 vfree(fwdt->template);
4878 fwdt->template = NULL;
4879 fwdt->length = 0;
4880 }
4881}
4882
4883/*
4884* qla2x00_mem_free
4885* Frees all adapter allocated memory.
4886*
4887* Input:
4888* ha = adapter block pointer.
4889*/
4890static void
4891qla2x00_mem_free(struct qla_hw_data *ha)
4892{
4893 qla2x00_free_fw_dump(ha);
4894
4895 if (ha->mctp_dump)
4896 dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump,
4897 ha->mctp_dump_dma);
4898 ha->mctp_dump = NULL;
4899
4900 mempool_destroy(ha->srb_mempool);
4901 ha->srb_mempool = NULL;
4902
4903 if (ha->dcbx_tlv)
4904 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
4905 ha->dcbx_tlv, ha->dcbx_tlv_dma);
4906 ha->dcbx_tlv = NULL;
4907
4908 if (ha->xgmac_data)
4909 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
4910 ha->xgmac_data, ha->xgmac_data_dma);
4911 ha->xgmac_data = NULL;
4912
4913 if (ha->sns_cmd)
4914 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4915 ha->sns_cmd, ha->sns_cmd_dma);
4916 ha->sns_cmd = NULL;
4917 ha->sns_cmd_dma = 0;
4918
4919 if (ha->ct_sns)
4920 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4921 ha->ct_sns, ha->ct_sns_dma);
4922 ha->ct_sns = NULL;
4923 ha->ct_sns_dma = 0;
4924
4925 if (ha->sfp_data)
4926 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, ha->sfp_data,
4927 ha->sfp_data_dma);
4928 ha->sfp_data = NULL;
4929
4930 if (ha->flt)
4931 dma_free_coherent(&ha->pdev->dev,
4932 sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE,
4933 ha->flt, ha->flt_dma);
4934 ha->flt = NULL;
4935 ha->flt_dma = 0;
4936
4937 if (ha->ms_iocb)
4938 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4939 ha->ms_iocb = NULL;
4940 ha->ms_iocb_dma = 0;
4941
4942 if (ha->sf_init_cb)
4943 dma_pool_free(ha->s_dma_pool,
4944 ha->sf_init_cb, ha->sf_init_cb_dma);
4945
4946 if (ha->ex_init_cb)
4947 dma_pool_free(ha->s_dma_pool,
4948 ha->ex_init_cb, ha->ex_init_cb_dma);
4949 ha->ex_init_cb = NULL;
4950 ha->ex_init_cb_dma = 0;
4951
4952 if (ha->async_pd)
4953 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4954 ha->async_pd = NULL;
4955 ha->async_pd_dma = 0;
4956
4957 dma_pool_destroy(ha->s_dma_pool);
4958 ha->s_dma_pool = NULL;
4959
4960 if (ha->gid_list)
4961 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4962 ha->gid_list, ha->gid_list_dma);
4963 ha->gid_list = NULL;
4964 ha->gid_list_dma = 0;
4965
4966 if (ha->base_qpair && !list_empty(&ha->base_qpair->dsd_list)) {
4967 struct dsd_dma *dsd_ptr, *tdsd_ptr;
4968
4969 /* clean up allocated prev pool */
4970 list_for_each_entry_safe(dsd_ptr, tdsd_ptr,
4971 &ha->base_qpair->dsd_list, list) {
4972 dma_pool_free(ha->dl_dma_pool, dsd_ptr->dsd_addr,
4973 dsd_ptr->dsd_list_dma);
4974 list_del(&dsd_ptr->list);
4975 kfree(dsd_ptr);
4976 }
4977 }
4978
4979 dma_pool_destroy(ha->dl_dma_pool);
4980 ha->dl_dma_pool = NULL;
4981
4982 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4983 ha->fcp_cmnd_dma_pool = NULL;
4984
4985 mempool_destroy(ha->ctx_mempool);
4986 ha->ctx_mempool = NULL;
4987
4988 if (ql2xenabledif && ha->dif_bundl_pool) {
4989 struct dsd_dma *dsd, *nxt;
4990
4991 list_for_each_entry_safe(dsd, nxt, &ha->pool.unusable.head,
4992 list) {
4993 list_del(&dsd->list);
4994 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
4995 dsd->dsd_list_dma);
4996 ha->dif_bundle_dma_allocs--;
4997 kfree(dsd);
4998 ha->dif_bundle_kallocs--;
4999 ha->pool.unusable.count--;
5000 }
5001 list_for_each_entry_safe(dsd, nxt, &ha->pool.good.head, list) {
5002 list_del(&dsd->list);
5003 dma_pool_free(ha->dif_bundl_pool, dsd->dsd_addr,
5004 dsd->dsd_list_dma);
5005 ha->dif_bundle_dma_allocs--;
5006 kfree(dsd);
5007 ha->dif_bundle_kallocs--;
5008 }
5009 }
5010
5011 dma_pool_destroy(ha->dif_bundl_pool);
5012 ha->dif_bundl_pool = NULL;
5013
5014 qlt_mem_free(ha);
5015 qla_remove_hostmap(ha);
5016
5017 if (ha->init_cb)
5018 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
5019 ha->init_cb, ha->init_cb_dma);
5020
5021 dma_pool_destroy(ha->purex_dma_pool);
5022 ha->purex_dma_pool = NULL;
5023
5024 if (ha->elsrej.c) {
5025 dma_free_coherent(&ha->pdev->dev, ha->elsrej.size,
5026 ha->elsrej.c, ha->elsrej.cdma);
5027 ha->elsrej.c = NULL;
5028 }
5029
5030 if (ha->lsrjt.c) {
5031 dma_free_coherent(&ha->pdev->dev, ha->lsrjt.size, ha->lsrjt.c,
5032 ha->lsrjt.cdma);
5033 ha->lsrjt.c = NULL;
5034 }
5035
5036 ha->init_cb = NULL;
5037 ha->init_cb_dma = 0;
5038
5039 vfree(ha->optrom_buffer);
5040 ha->optrom_buffer = NULL;
5041 kfree(ha->nvram);
5042 ha->nvram = NULL;
5043 kfree(ha->npiv_info);
5044 ha->npiv_info = NULL;
5045 kfree(ha->swl);
5046 ha->swl = NULL;
5047 kfree(ha->loop_id_map);
5048 ha->sf_init_cb = NULL;
5049 ha->sf_init_cb_dma = 0;
5050 ha->loop_id_map = NULL;
5051
5052 kfree(ha->vp_map);
5053 ha->vp_map = NULL;
5054}
5055
5056struct scsi_qla_host *qla2x00_create_host(const struct scsi_host_template *sht,
5057 struct qla_hw_data *ha)
5058{
5059 struct Scsi_Host *host;
5060 struct scsi_qla_host *vha = NULL;
5061
5062 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
5063 if (!host) {
5064 ql_log_pci(ql_log_fatal, ha->pdev, 0x0107,
5065 "Failed to allocate host from the scsi layer, aborting.\n");
5066 return NULL;
5067 }
5068
5069 /* Clear our data area */
5070 vha = shost_priv(host);
5071 memset(vha, 0, sizeof(scsi_qla_host_t));
5072
5073 vha->host = host;
5074 vha->host_no = host->host_no;
5075 vha->hw = ha;
5076
5077 vha->qlini_mode = ql2x_ini_mode;
5078 vha->ql2xexchoffld = ql2xexchoffld;
5079 vha->ql2xiniexchg = ql2xiniexchg;
5080
5081 INIT_LIST_HEAD(&vha->vp_fcports);
5082 INIT_LIST_HEAD(&vha->work_list);
5083 INIT_LIST_HEAD(&vha->list);
5084 INIT_LIST_HEAD(&vha->qla_cmd_list);
5085 INIT_LIST_HEAD(&vha->logo_list);
5086 INIT_LIST_HEAD(&vha->plogi_ack_list);
5087 INIT_LIST_HEAD(&vha->qp_list);
5088 INIT_LIST_HEAD(&vha->gnl.fcports);
5089 INIT_WORK(&vha->iocb_work, qla2x00_iocb_work_fn);
5090
5091 INIT_LIST_HEAD(&vha->purex_list.head);
5092 spin_lock_init(&vha->purex_list.lock);
5093
5094 spin_lock_init(&vha->work_lock);
5095 spin_lock_init(&vha->cmd_list_lock);
5096 init_waitqueue_head(&vha->fcport_waitQ);
5097 init_waitqueue_head(&vha->vref_waitq);
5098 qla_enode_init(vha);
5099 qla_edb_init(vha);
5100
5101
5102 vha->gnl.size = sizeof(struct get_name_list_extended) *
5103 (ha->max_loop_id + 1);
5104 vha->gnl.l = dma_alloc_coherent(&ha->pdev->dev,
5105 vha->gnl.size, &vha->gnl.ldma, GFP_KERNEL);
5106 if (!vha->gnl.l) {
5107 ql_log(ql_log_fatal, vha, 0xd04a,
5108 "Alloc failed for name list.\n");
5109 scsi_host_put(vha->host);
5110 return NULL;
5111 }
5112
5113 /* todo: what about ext login? */
5114 vha->scan.size = ha->max_fibre_devices * sizeof(struct fab_scan_rp);
5115 vha->scan.l = vmalloc(vha->scan.size);
5116 if (!vha->scan.l) {
5117 ql_log(ql_log_fatal, vha, 0xd04a,
5118 "Alloc failed for scan database.\n");
5119 dma_free_coherent(&ha->pdev->dev, vha->gnl.size,
5120 vha->gnl.l, vha->gnl.ldma);
5121 vha->gnl.l = NULL;
5122 scsi_host_put(vha->host);
5123 return NULL;
5124 }
5125 INIT_DELAYED_WORK(&vha->scan.scan_work, qla_scan_work_fn);
5126
5127 snprintf(vha->host_str, sizeof(vha->host_str), "%s_%lu",
5128 QLA2XXX_DRIVER_NAME, vha->host_no);
5129 ql_dbg(ql_dbg_init, vha, 0x0041,
5130 "Allocated the host=%p hw=%p vha=%p dev_name=%s",
5131 vha->host, vha->hw, vha,
5132 dev_name(&(ha->pdev->dev)));
5133
5134 return vha;
5135}
5136
5137struct qla_work_evt *
5138qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
5139{
5140 struct qla_work_evt *e;
5141
5142 if (test_bit(UNLOADING, &vha->dpc_flags))
5143 return NULL;
5144
5145 if (qla_vha_mark_busy(vha))
5146 return NULL;
5147
5148 e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
5149 if (!e) {
5150 QLA_VHA_MARK_NOT_BUSY(vha);
5151 return NULL;
5152 }
5153
5154 INIT_LIST_HEAD(&e->list);
5155 e->type = type;
5156 e->flags = QLA_EVT_FLAG_FREE;
5157 return e;
5158}
5159
5160int
5161qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
5162{
5163 unsigned long flags;
5164 bool q = false;
5165
5166 spin_lock_irqsave(&vha->work_lock, flags);
5167 list_add_tail(&e->list, &vha->work_list);
5168
5169 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
5170 q = true;
5171
5172 spin_unlock_irqrestore(&vha->work_lock, flags);
5173
5174 if (q)
5175 queue_work(vha->hw->wq, &vha->iocb_work);
5176
5177 return QLA_SUCCESS;
5178}
5179
5180int
5181qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
5182 u32 data)
5183{
5184 struct qla_work_evt *e;
5185
5186 e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
5187 if (!e)
5188 return QLA_FUNCTION_FAILED;
5189
5190 e->u.aen.code = code;
5191 e->u.aen.data = data;
5192 return qla2x00_post_work(vha, e);
5193}
5194
5195int
5196qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
5197{
5198 struct qla_work_evt *e;
5199
5200 e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
5201 if (!e)
5202 return QLA_FUNCTION_FAILED;
5203
5204 memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
5205 return qla2x00_post_work(vha, e);
5206}
5207
5208#define qla2x00_post_async_work(name, type) \
5209int qla2x00_post_async_##name##_work( \
5210 struct scsi_qla_host *vha, \
5211 fc_port_t *fcport, uint16_t *data) \
5212{ \
5213 struct qla_work_evt *e; \
5214 \
5215 e = qla2x00_alloc_work(vha, type); \
5216 if (!e) \
5217 return QLA_FUNCTION_FAILED; \
5218 \
5219 e->u.logio.fcport = fcport; \
5220 if (data) { \
5221 e->u.logio.data[0] = data[0]; \
5222 e->u.logio.data[1] = data[1]; \
5223 } \
5224 fcport->flags |= FCF_ASYNC_ACTIVE; \
5225 return qla2x00_post_work(vha, e); \
5226}
5227
5228qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
5229qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
5230qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
5231qla2x00_post_async_work(prlo, QLA_EVT_ASYNC_PRLO);
5232qla2x00_post_async_work(prlo_done, QLA_EVT_ASYNC_PRLO_DONE);
5233
5234int
5235qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
5236{
5237 struct qla_work_evt *e;
5238
5239 e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
5240 if (!e)
5241 return QLA_FUNCTION_FAILED;
5242
5243 e->u.uevent.code = code;
5244 return qla2x00_post_work(vha, e);
5245}
5246
5247static void
5248qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
5249{
5250 char event_string[40];
5251 char *envp[] = { event_string, NULL };
5252
5253 switch (code) {
5254 case QLA_UEVENT_CODE_FW_DUMP:
5255 snprintf(event_string, sizeof(event_string), "FW_DUMP=%lu",
5256 vha->host_no);
5257 break;
5258 default:
5259 /* do nothing */
5260 break;
5261 }
5262 kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
5263}
5264
5265int
5266qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode,
5267 uint32_t *data, int cnt)
5268{
5269 struct qla_work_evt *e;
5270
5271 e = qla2x00_alloc_work(vha, QLA_EVT_AENFX);
5272 if (!e)
5273 return QLA_FUNCTION_FAILED;
5274
5275 e->u.aenfx.evtcode = evtcode;
5276 e->u.aenfx.count = cnt;
5277 memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt);
5278 return qla2x00_post_work(vha, e);
5279}
5280
5281void qla24xx_sched_upd_fcport(fc_port_t *fcport)
5282{
5283 unsigned long flags;
5284
5285 if (IS_SW_RESV_ADDR(fcport->d_id))
5286 return;
5287
5288 spin_lock_irqsave(&fcport->vha->work_lock, flags);
5289 if (fcport->disc_state == DSC_UPD_FCPORT) {
5290 spin_unlock_irqrestore(&fcport->vha->work_lock, flags);
5291 return;
5292 }
5293 fcport->jiffies_at_registration = jiffies;
5294 fcport->sec_since_registration = 0;
5295 fcport->next_disc_state = DSC_DELETED;
5296 qla2x00_set_fcport_disc_state(fcport, DSC_UPD_FCPORT);
5297 spin_unlock_irqrestore(&fcport->vha->work_lock, flags);
5298
5299 queue_work(system_unbound_wq, &fcport->reg_work);
5300}
5301
5302static
5303void qla24xx_create_new_sess(struct scsi_qla_host *vha, struct qla_work_evt *e)
5304{
5305 unsigned long flags;
5306 fc_port_t *fcport = NULL, *tfcp;
5307 struct qlt_plogi_ack_t *pla =
5308 (struct qlt_plogi_ack_t *)e->u.new_sess.pla;
5309 uint8_t free_fcport = 0;
5310
5311 ql_dbg(ql_dbg_disc, vha, 0xffff,
5312 "%s %d %8phC enter\n",
5313 __func__, __LINE__, e->u.new_sess.port_name);
5314
5315 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5316 fcport = qla2x00_find_fcport_by_wwpn(vha, e->u.new_sess.port_name, 1);
5317 if (fcport) {
5318 fcport->d_id = e->u.new_sess.id;
5319 if (pla) {
5320 fcport->fw_login_state = DSC_LS_PLOGI_PEND;
5321 memcpy(fcport->node_name,
5322 pla->iocb.u.isp24.u.plogi.node_name,
5323 WWN_SIZE);
5324 qlt_plogi_ack_link(vha, pla, fcport, QLT_PLOGI_LINK_SAME_WWN);
5325 /* we took an extra ref_count to prevent PLOGI ACK when
5326 * fcport/sess has not been created.
5327 */
5328 pla->ref_count--;
5329 }
5330 } else {
5331 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5332 fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
5333 if (fcport) {
5334 fcport->d_id = e->u.new_sess.id;
5335 fcport->flags |= FCF_FABRIC_DEVICE;
5336 fcport->fw_login_state = DSC_LS_PLOGI_PEND;
5337 fcport->tgt_short_link_down_cnt = 0;
5338
5339 memcpy(fcport->port_name, e->u.new_sess.port_name,
5340 WWN_SIZE);
5341
5342 fcport->fc4_type = e->u.new_sess.fc4_type;
5343 if (NVME_PRIORITY(vha->hw, fcport))
5344 fcport->do_prli_nvme = 1;
5345 else
5346 fcport->do_prli_nvme = 0;
5347
5348 if (e->u.new_sess.fc4_type & FS_FCP_IS_N2N) {
5349 fcport->dm_login_expire = jiffies +
5350 QLA_N2N_WAIT_TIME * HZ;
5351 fcport->fc4_type = FS_FC4TYPE_FCP;
5352 fcport->n2n_flag = 1;
5353 if (vha->flags.nvme_enabled)
5354 fcport->fc4_type |= FS_FC4TYPE_NVME;
5355 }
5356
5357 } else {
5358 ql_dbg(ql_dbg_disc, vha, 0xffff,
5359 "%s %8phC mem alloc fail.\n",
5360 __func__, e->u.new_sess.port_name);
5361
5362 if (pla) {
5363 list_del(&pla->list);
5364 kmem_cache_free(qla_tgt_plogi_cachep, pla);
5365 }
5366 return;
5367 }
5368
5369 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5370 /* search again to make sure no one else got ahead */
5371 tfcp = qla2x00_find_fcport_by_wwpn(vha,
5372 e->u.new_sess.port_name, 1);
5373 if (tfcp) {
5374 /* should rarily happen */
5375 ql_dbg(ql_dbg_disc, vha, 0xffff,
5376 "%s %8phC found existing fcport b4 add. DS %d LS %d\n",
5377 __func__, tfcp->port_name, tfcp->disc_state,
5378 tfcp->fw_login_state);
5379
5380 free_fcport = 1;
5381 } else {
5382 list_add_tail(&fcport->list, &vha->vp_fcports);
5383
5384 }
5385 if (pla) {
5386 qlt_plogi_ack_link(vha, pla, fcport,
5387 QLT_PLOGI_LINK_SAME_WWN);
5388 pla->ref_count--;
5389 }
5390 }
5391 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5392
5393 if (fcport) {
5394 fcport->id_changed = 1;
5395 fcport->scan_state = QLA_FCPORT_FOUND;
5396 fcport->chip_reset = vha->hw->base_qpair->chip_reset;
5397 memcpy(fcport->node_name, e->u.new_sess.node_name, WWN_SIZE);
5398
5399 if (pla) {
5400 if (pla->iocb.u.isp24.status_subcode == ELS_PRLI) {
5401 u16 wd3_lo;
5402
5403 fcport->fw_login_state = DSC_LS_PRLI_PEND;
5404 fcport->local = 0;
5405 fcport->loop_id =
5406 le16_to_cpu(
5407 pla->iocb.u.isp24.nport_handle);
5408 fcport->fw_login_state = DSC_LS_PRLI_PEND;
5409 wd3_lo =
5410 le16_to_cpu(
5411 pla->iocb.u.isp24.u.prli.wd3_lo);
5412
5413 if (wd3_lo & BIT_7)
5414 fcport->conf_compl_supported = 1;
5415
5416 if ((wd3_lo & BIT_4) == 0)
5417 fcport->port_type = FCT_INITIATOR;
5418 else
5419 fcport->port_type = FCT_TARGET;
5420 }
5421 qlt_plogi_ack_unref(vha, pla);
5422 } else {
5423 fc_port_t *dfcp = NULL;
5424
5425 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
5426 tfcp = qla2x00_find_fcport_by_nportid(vha,
5427 &e->u.new_sess.id, 1);
5428 if (tfcp && (tfcp != fcport)) {
5429 /*
5430 * We have a conflict fcport with same NportID.
5431 */
5432 ql_dbg(ql_dbg_disc, vha, 0xffff,
5433 "%s %8phC found conflict b4 add. DS %d LS %d\n",
5434 __func__, tfcp->port_name, tfcp->disc_state,
5435 tfcp->fw_login_state);
5436
5437 switch (tfcp->disc_state) {
5438 case DSC_DELETED:
5439 break;
5440 case DSC_DELETE_PEND:
5441 fcport->login_pause = 1;
5442 tfcp->conflict = fcport;
5443 break;
5444 default:
5445 fcport->login_pause = 1;
5446 tfcp->conflict = fcport;
5447 dfcp = tfcp;
5448 break;
5449 }
5450 }
5451 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
5452 if (dfcp)
5453 qlt_schedule_sess_for_deletion(tfcp);
5454
5455 if (N2N_TOPO(vha->hw)) {
5456 fcport->flags &= ~FCF_FABRIC_DEVICE;
5457 fcport->keep_nport_handle = 1;
5458 if (vha->flags.nvme_enabled) {
5459 fcport->fc4_type =
5460 (FS_FC4TYPE_NVME | FS_FC4TYPE_FCP);
5461 fcport->n2n_flag = 1;
5462 }
5463 fcport->fw_login_state = 0;
5464
5465 schedule_delayed_work(&vha->scan.scan_work, 5);
5466 } else {
5467 qla24xx_fcport_handle_login(vha, fcport);
5468 }
5469 }
5470 }
5471
5472 if (free_fcport) {
5473 qla2x00_free_fcport(fcport);
5474 if (pla) {
5475 list_del(&pla->list);
5476 kmem_cache_free(qla_tgt_plogi_cachep, pla);
5477 }
5478 }
5479}
5480
5481static void qla_sp_retry(struct scsi_qla_host *vha, struct qla_work_evt *e)
5482{
5483 struct srb *sp = e->u.iosb.sp;
5484 int rval;
5485
5486 rval = qla2x00_start_sp(sp);
5487 if (rval != QLA_SUCCESS) {
5488 ql_dbg(ql_dbg_disc, vha, 0x2043,
5489 "%s: %s: Re-issue IOCB failed (%d).\n",
5490 __func__, sp->name, rval);
5491 qla24xx_sp_unmap(vha, sp);
5492 }
5493}
5494
5495void
5496qla2x00_do_work(struct scsi_qla_host *vha)
5497{
5498 struct qla_work_evt *e, *tmp;
5499 unsigned long flags;
5500 LIST_HEAD(work);
5501 int rc;
5502
5503 spin_lock_irqsave(&vha->work_lock, flags);
5504 list_splice_init(&vha->work_list, &work);
5505 spin_unlock_irqrestore(&vha->work_lock, flags);
5506
5507 list_for_each_entry_safe(e, tmp, &work, list) {
5508 rc = QLA_SUCCESS;
5509 switch (e->type) {
5510 case QLA_EVT_AEN:
5511 fc_host_post_event(vha->host, fc_get_event_number(),
5512 e->u.aen.code, e->u.aen.data);
5513 break;
5514 case QLA_EVT_IDC_ACK:
5515 qla81xx_idc_ack(vha, e->u.idc_ack.mb);
5516 break;
5517 case QLA_EVT_ASYNC_LOGIN:
5518 qla2x00_async_login(vha, e->u.logio.fcport,
5519 e->u.logio.data);
5520 break;
5521 case QLA_EVT_ASYNC_LOGOUT:
5522 rc = qla2x00_async_logout(vha, e->u.logio.fcport);
5523 break;
5524 case QLA_EVT_ASYNC_ADISC:
5525 qla2x00_async_adisc(vha, e->u.logio.fcport,
5526 e->u.logio.data);
5527 break;
5528 case QLA_EVT_UEVENT:
5529 qla2x00_uevent_emit(vha, e->u.uevent.code);
5530 break;
5531 case QLA_EVT_AENFX:
5532 qlafx00_process_aen(vha, e);
5533 break;
5534 case QLA_EVT_UNMAP:
5535 qla24xx_sp_unmap(vha, e->u.iosb.sp);
5536 break;
5537 case QLA_EVT_RELOGIN:
5538 qla2x00_relogin(vha);
5539 break;
5540 case QLA_EVT_NEW_SESS:
5541 qla24xx_create_new_sess(vha, e);
5542 break;
5543 case QLA_EVT_GPDB:
5544 qla24xx_async_gpdb(vha, e->u.fcport.fcport,
5545 e->u.fcport.opt);
5546 break;
5547 case QLA_EVT_PRLI:
5548 qla24xx_async_prli(vha, e->u.fcport.fcport);
5549 break;
5550 case QLA_EVT_GPSC:
5551 qla24xx_async_gpsc(vha, e->u.fcport.fcport);
5552 break;
5553 case QLA_EVT_GNL:
5554 qla24xx_async_gnl(vha, e->u.fcport.fcport);
5555 break;
5556 case QLA_EVT_NACK:
5557 qla24xx_do_nack_work(vha, e);
5558 break;
5559 case QLA_EVT_ASYNC_PRLO:
5560 rc = qla2x00_async_prlo(vha, e->u.logio.fcport);
5561 break;
5562 case QLA_EVT_ASYNC_PRLO_DONE:
5563 qla2x00_async_prlo_done(vha, e->u.logio.fcport,
5564 e->u.logio.data);
5565 break;
5566 case QLA_EVT_GPNFT:
5567 qla24xx_async_gpnft(vha, e->u.gpnft.fc4_type,
5568 e->u.gpnft.sp);
5569 break;
5570 case QLA_EVT_GPNFT_DONE:
5571 qla24xx_async_gpnft_done(vha, e->u.iosb.sp);
5572 break;
5573 case QLA_EVT_GNNFT_DONE:
5574 qla24xx_async_gnnft_done(vha, e->u.iosb.sp);
5575 break;
5576 case QLA_EVT_GFPNID:
5577 qla24xx_async_gfpnid(vha, e->u.fcport.fcport);
5578 break;
5579 case QLA_EVT_SP_RETRY:
5580 qla_sp_retry(vha, e);
5581 break;
5582 case QLA_EVT_IIDMA:
5583 qla_do_iidma_work(vha, e->u.fcport.fcport);
5584 break;
5585 case QLA_EVT_ELS_PLOGI:
5586 qla24xx_els_dcmd2_iocb(vha, ELS_DCMD_PLOGI,
5587 e->u.fcport.fcport);
5588 break;
5589 case QLA_EVT_SA_REPLACE:
5590 rc = qla24xx_issue_sa_replace_iocb(vha, e);
5591 break;
5592 }
5593
5594 if (rc == EAGAIN) {
5595 /* put 'work' at head of 'vha->work_list' */
5596 spin_lock_irqsave(&vha->work_lock, flags);
5597 list_splice(&work, &vha->work_list);
5598 spin_unlock_irqrestore(&vha->work_lock, flags);
5599 break;
5600 }
5601 list_del_init(&e->list);
5602 if (e->flags & QLA_EVT_FLAG_FREE)
5603 kfree(e);
5604
5605 /* For each work completed decrement vha ref count */
5606 QLA_VHA_MARK_NOT_BUSY(vha);
5607 }
5608}
5609
5610int qla24xx_post_relogin_work(struct scsi_qla_host *vha)
5611{
5612 struct qla_work_evt *e;
5613
5614 e = qla2x00_alloc_work(vha, QLA_EVT_RELOGIN);
5615
5616 if (!e) {
5617 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5618 return QLA_FUNCTION_FAILED;
5619 }
5620
5621 return qla2x00_post_work(vha, e);
5622}
5623
5624/* Relogins all the fcports of a vport
5625 * Context: dpc thread
5626 */
5627void qla2x00_relogin(struct scsi_qla_host *vha)
5628{
5629 fc_port_t *fcport;
5630 int status, relogin_needed = 0;
5631 struct event_arg ea;
5632
5633 list_for_each_entry(fcport, &vha->vp_fcports, list) {
5634 /*
5635 * If the port is not ONLINE then try to login
5636 * to it if we haven't run out of retries.
5637 */
5638 if (atomic_read(&fcport->state) != FCS_ONLINE &&
5639 fcport->login_retry) {
5640 if (fcport->scan_state != QLA_FCPORT_FOUND ||
5641 fcport->disc_state == DSC_LOGIN_AUTH_PEND ||
5642 fcport->disc_state == DSC_LOGIN_COMPLETE)
5643 continue;
5644
5645 if (fcport->flags & (FCF_ASYNC_SENT|FCF_ASYNC_ACTIVE) ||
5646 fcport->disc_state == DSC_DELETE_PEND) {
5647 relogin_needed = 1;
5648 } else {
5649 if (vha->hw->current_topology != ISP_CFG_NL) {
5650 memset(&ea, 0, sizeof(ea));
5651 ea.fcport = fcport;
5652 qla24xx_handle_relogin_event(vha, &ea);
5653 } else if (vha->hw->current_topology ==
5654 ISP_CFG_NL &&
5655 IS_QLA2XXX_MIDTYPE(vha->hw)) {
5656 (void)qla24xx_fcport_handle_login(vha,
5657 fcport);
5658 } else if (vha->hw->current_topology ==
5659 ISP_CFG_NL) {
5660 fcport->login_retry--;
5661 status =
5662 qla2x00_local_device_login(vha,
5663 fcport);
5664 if (status == QLA_SUCCESS) {
5665 fcport->old_loop_id =
5666 fcport->loop_id;
5667 ql_dbg(ql_dbg_disc, vha, 0x2003,
5668 "Port login OK: logged in ID 0x%x.\n",
5669 fcport->loop_id);
5670 qla2x00_update_fcport
5671 (vha, fcport);
5672 } else if (status == 1) {
5673 set_bit(RELOGIN_NEEDED,
5674 &vha->dpc_flags);
5675 /* retry the login again */
5676 ql_dbg(ql_dbg_disc, vha, 0x2007,
5677 "Retrying %d login again loop_id 0x%x.\n",
5678 fcport->login_retry,
5679 fcport->loop_id);
5680 } else {
5681 fcport->login_retry = 0;
5682 }
5683
5684 if (fcport->login_retry == 0 &&
5685 status != QLA_SUCCESS)
5686 qla2x00_clear_loop_id(fcport);
5687 }
5688 }
5689 }
5690 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
5691 break;
5692 }
5693
5694 if (relogin_needed)
5695 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5696
5697 ql_dbg(ql_dbg_disc, vha, 0x400e,
5698 "Relogin end.\n");
5699}
5700
5701/* Schedule work on any of the dpc-workqueues */
5702void
5703qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code)
5704{
5705 struct qla_hw_data *ha = base_vha->hw;
5706
5707 switch (work_code) {
5708 case MBA_IDC_AEN: /* 0x8200 */
5709 if (ha->dpc_lp_wq)
5710 queue_work(ha->dpc_lp_wq, &ha->idc_aen);
5711 break;
5712
5713 case QLA83XX_NIC_CORE_RESET: /* 0x1 */
5714 if (!ha->flags.nic_core_reset_hdlr_active) {
5715 if (ha->dpc_hp_wq)
5716 queue_work(ha->dpc_hp_wq, &ha->nic_core_reset);
5717 } else
5718 ql_dbg(ql_dbg_p3p, base_vha, 0xb05e,
5719 "NIC Core reset is already active. Skip "
5720 "scheduling it again.\n");
5721 break;
5722 case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */
5723 if (ha->dpc_hp_wq)
5724 queue_work(ha->dpc_hp_wq, &ha->idc_state_handler);
5725 break;
5726 case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */
5727 if (ha->dpc_hp_wq)
5728 queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable);
5729 break;
5730 default:
5731 ql_log(ql_log_warn, base_vha, 0xb05f,
5732 "Unknown work-code=0x%x.\n", work_code);
5733 }
5734
5735 return;
5736}
5737
5738/* Work: Perform NIC Core Unrecoverable state handling */
5739void
5740qla83xx_nic_core_unrecoverable_work(struct work_struct *work)
5741{
5742 struct qla_hw_data *ha =
5743 container_of(work, struct qla_hw_data, nic_core_unrecoverable);
5744 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5745 uint32_t dev_state = 0;
5746
5747 qla83xx_idc_lock(base_vha, 0);
5748 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5749 qla83xx_reset_ownership(base_vha);
5750 if (ha->flags.nic_core_reset_owner) {
5751 ha->flags.nic_core_reset_owner = 0;
5752 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5753 QLA8XXX_DEV_FAILED);
5754 ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n");
5755 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5756 }
5757 qla83xx_idc_unlock(base_vha, 0);
5758}
5759
5760/* Work: Execute IDC state handler */
5761void
5762qla83xx_idc_state_handler_work(struct work_struct *work)
5763{
5764 struct qla_hw_data *ha =
5765 container_of(work, struct qla_hw_data, idc_state_handler);
5766 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5767 uint32_t dev_state = 0;
5768
5769 qla83xx_idc_lock(base_vha, 0);
5770 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5771 if (dev_state == QLA8XXX_DEV_FAILED ||
5772 dev_state == QLA8XXX_DEV_NEED_QUIESCENT)
5773 qla83xx_idc_state_handler(base_vha);
5774 qla83xx_idc_unlock(base_vha, 0);
5775}
5776
5777static int
5778qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha)
5779{
5780 int rval = QLA_SUCCESS;
5781 unsigned long heart_beat_wait = jiffies + (1 * HZ);
5782 uint32_t heart_beat_counter1, heart_beat_counter2;
5783
5784 do {
5785 if (time_after(jiffies, heart_beat_wait)) {
5786 ql_dbg(ql_dbg_p3p, base_vha, 0xb07c,
5787 "Nic Core f/w is not alive.\n");
5788 rval = QLA_FUNCTION_FAILED;
5789 break;
5790 }
5791
5792 qla83xx_idc_lock(base_vha, 0);
5793 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5794 &heart_beat_counter1);
5795 qla83xx_idc_unlock(base_vha, 0);
5796 msleep(100);
5797 qla83xx_idc_lock(base_vha, 0);
5798 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5799 &heart_beat_counter2);
5800 qla83xx_idc_unlock(base_vha, 0);
5801 } while (heart_beat_counter1 == heart_beat_counter2);
5802
5803 return rval;
5804}
5805
5806/* Work: Perform NIC Core Reset handling */
5807void
5808qla83xx_nic_core_reset_work(struct work_struct *work)
5809{
5810 struct qla_hw_data *ha =
5811 container_of(work, struct qla_hw_data, nic_core_reset);
5812 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5813 uint32_t dev_state = 0;
5814
5815 if (IS_QLA2031(ha)) {
5816 if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS)
5817 ql_log(ql_log_warn, base_vha, 0xb081,
5818 "Failed to dump mctp\n");
5819 return;
5820 }
5821
5822 if (!ha->flags.nic_core_reset_hdlr_active) {
5823 if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) {
5824 qla83xx_idc_lock(base_vha, 0);
5825 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5826 &dev_state);
5827 qla83xx_idc_unlock(base_vha, 0);
5828 if (dev_state != QLA8XXX_DEV_NEED_RESET) {
5829 ql_dbg(ql_dbg_p3p, base_vha, 0xb07a,
5830 "Nic Core f/w is alive.\n");
5831 return;
5832 }
5833 }
5834
5835 ha->flags.nic_core_reset_hdlr_active = 1;
5836 if (qla83xx_nic_core_reset(base_vha)) {
5837 /* NIC Core reset failed. */
5838 ql_dbg(ql_dbg_p3p, base_vha, 0xb061,
5839 "NIC Core reset failed.\n");
5840 }
5841 ha->flags.nic_core_reset_hdlr_active = 0;
5842 }
5843}
5844
5845/* Work: Handle 8200 IDC aens */
5846void
5847qla83xx_service_idc_aen(struct work_struct *work)
5848{
5849 struct qla_hw_data *ha =
5850 container_of(work, struct qla_hw_data, idc_aen);
5851 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5852 uint32_t dev_state, idc_control;
5853
5854 qla83xx_idc_lock(base_vha, 0);
5855 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5856 qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control);
5857 qla83xx_idc_unlock(base_vha, 0);
5858 if (dev_state == QLA8XXX_DEV_NEED_RESET) {
5859 if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) {
5860 ql_dbg(ql_dbg_p3p, base_vha, 0xb062,
5861 "Application requested NIC Core Reset.\n");
5862 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5863 } else if (qla83xx_check_nic_core_fw_alive(base_vha) ==
5864 QLA_SUCCESS) {
5865 ql_dbg(ql_dbg_p3p, base_vha, 0xb07b,
5866 "Other protocol driver requested NIC Core Reset.\n");
5867 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5868 }
5869 } else if (dev_state == QLA8XXX_DEV_FAILED ||
5870 dev_state == QLA8XXX_DEV_NEED_QUIESCENT) {
5871 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5872 }
5873}
5874
5875/*
5876 * Control the frequency of IDC lock retries
5877 */
5878#define QLA83XX_WAIT_LOGIC_MS 100
5879
5880static int
5881qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha)
5882{
5883 int rval;
5884 uint32_t data;
5885 uint32_t idc_lck_rcvry_stage_mask = 0x3;
5886 uint32_t idc_lck_rcvry_owner_mask = 0x3c;
5887 struct qla_hw_data *ha = base_vha->hw;
5888
5889 ql_dbg(ql_dbg_p3p, base_vha, 0xb086,
5890 "Trying force recovery of the IDC lock.\n");
5891
5892 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data);
5893 if (rval)
5894 return rval;
5895
5896 if ((data & idc_lck_rcvry_stage_mask) > 0) {
5897 return QLA_SUCCESS;
5898 } else {
5899 data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2);
5900 rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5901 data);
5902 if (rval)
5903 return rval;
5904
5905 msleep(200);
5906
5907 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5908 &data);
5909 if (rval)
5910 return rval;
5911
5912 if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) {
5913 data &= (IDC_LOCK_RECOVERY_STAGE2 |
5914 ~(idc_lck_rcvry_stage_mask));
5915 rval = qla83xx_wr_reg(base_vha,
5916 QLA83XX_IDC_LOCK_RECOVERY, data);
5917 if (rval)
5918 return rval;
5919
5920 /* Forcefully perform IDC UnLock */
5921 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK,
5922 &data);
5923 if (rval)
5924 return rval;
5925 /* Clear lock-id by setting 0xff */
5926 rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5927 0xff);
5928 if (rval)
5929 return rval;
5930 /* Clear lock-recovery by setting 0x0 */
5931 rval = qla83xx_wr_reg(base_vha,
5932 QLA83XX_IDC_LOCK_RECOVERY, 0x0);
5933 if (rval)
5934 return rval;
5935 } else
5936 return QLA_SUCCESS;
5937 }
5938
5939 return rval;
5940}
5941
5942static int
5943qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha)
5944{
5945 int rval = QLA_SUCCESS;
5946 uint32_t o_drv_lockid, n_drv_lockid;
5947 unsigned long lock_recovery_timeout;
5948
5949 lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT;
5950retry_lockid:
5951 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid);
5952 if (rval)
5953 goto exit;
5954
5955 /* MAX wait time before forcing IDC Lock recovery = 2 secs */
5956 if (time_after_eq(jiffies, lock_recovery_timeout)) {
5957 if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS)
5958 return QLA_SUCCESS;
5959 else
5960 return QLA_FUNCTION_FAILED;
5961 }
5962
5963 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid);
5964 if (rval)
5965 goto exit;
5966
5967 if (o_drv_lockid == n_drv_lockid) {
5968 msleep(QLA83XX_WAIT_LOGIC_MS);
5969 goto retry_lockid;
5970 } else
5971 return QLA_SUCCESS;
5972
5973exit:
5974 return rval;
5975}
5976
5977/*
5978 * Context: task, can sleep
5979 */
5980void
5981qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id)
5982{
5983 uint32_t data;
5984 uint32_t lock_owner;
5985 struct qla_hw_data *ha = base_vha->hw;
5986
5987 might_sleep();
5988
5989 /* IDC-lock implementation using driver-lock/lock-id remote registers */
5990retry_lock:
5991 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data)
5992 == QLA_SUCCESS) {
5993 if (data) {
5994 /* Setting lock-id to our function-number */
5995 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5996 ha->portnum);
5997 } else {
5998 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5999 &lock_owner);
6000 ql_dbg(ql_dbg_p3p, base_vha, 0xb063,
6001 "Failed to acquire IDC lock, acquired by %d, "
6002 "retrying...\n", lock_owner);
6003
6004 /* Retry/Perform IDC-Lock recovery */
6005 if (qla83xx_idc_lock_recovery(base_vha)
6006 == QLA_SUCCESS) {
6007 msleep(QLA83XX_WAIT_LOGIC_MS);
6008 goto retry_lock;
6009 } else
6010 ql_log(ql_log_warn, base_vha, 0xb075,
6011 "IDC Lock recovery FAILED.\n");
6012 }
6013
6014 }
6015
6016 return;
6017}
6018
6019static bool
6020qla25xx_rdp_rsp_reduce_size(struct scsi_qla_host *vha,
6021 struct purex_entry_24xx *purex)
6022{
6023 char fwstr[16];
6024 u32 sid = purex->s_id[2] << 16 | purex->s_id[1] << 8 | purex->s_id[0];
6025 struct port_database_24xx *pdb;
6026
6027 /* Domain Controller is always logged-out. */
6028 /* if RDP request is not from Domain Controller: */
6029 if (sid != 0xfffc01)
6030 return false;
6031
6032 ql_dbg(ql_dbg_init, vha, 0x0181, "%s: s_id=%#x\n", __func__, sid);
6033
6034 pdb = kzalloc(sizeof(*pdb), GFP_KERNEL);
6035 if (!pdb) {
6036 ql_dbg(ql_dbg_init, vha, 0x0181,
6037 "%s: Failed allocate pdb\n", __func__);
6038 } else if (qla24xx_get_port_database(vha,
6039 le16_to_cpu(purex->nport_handle), pdb)) {
6040 ql_dbg(ql_dbg_init, vha, 0x0181,
6041 "%s: Failed get pdb sid=%x\n", __func__, sid);
6042 } else if (pdb->current_login_state != PDS_PLOGI_COMPLETE &&
6043 pdb->current_login_state != PDS_PRLI_COMPLETE) {
6044 ql_dbg(ql_dbg_init, vha, 0x0181,
6045 "%s: Port not logged in sid=%#x\n", __func__, sid);
6046 } else {
6047 /* RDP request is from logged in port */
6048 kfree(pdb);
6049 return false;
6050 }
6051 kfree(pdb);
6052
6053 vha->hw->isp_ops->fw_version_str(vha, fwstr, sizeof(fwstr));
6054 fwstr[strcspn(fwstr, " ")] = 0;
6055 /* if FW version allows RDP response length upto 2048 bytes: */
6056 if (strcmp(fwstr, "8.09.00") > 0 || strcmp(fwstr, "8.05.65") == 0)
6057 return false;
6058
6059 ql_dbg(ql_dbg_init, vha, 0x0181, "%s: fw=%s\n", __func__, fwstr);
6060
6061 /* RDP response length is to be reduced to maximum 256 bytes */
6062 return true;
6063}
6064
6065/*
6066 * Function Name: qla24xx_process_purex_iocb
6067 *
6068 * Description:
6069 * Prepare a RDP response and send to Fabric switch
6070 *
6071 * PARAMETERS:
6072 * vha: SCSI qla host
6073 * purex: RDP request received by HBA
6074 */
6075void qla24xx_process_purex_rdp(struct scsi_qla_host *vha,
6076 struct purex_item *item)
6077{
6078 struct qla_hw_data *ha = vha->hw;
6079 struct purex_entry_24xx *purex =
6080 (struct purex_entry_24xx *)&item->iocb;
6081 dma_addr_t rsp_els_dma;
6082 dma_addr_t rsp_payload_dma;
6083 dma_addr_t stat_dma;
6084 dma_addr_t sfp_dma;
6085 struct els_entry_24xx *rsp_els = NULL;
6086 struct rdp_rsp_payload *rsp_payload = NULL;
6087 struct link_statistics *stat = NULL;
6088 uint8_t *sfp = NULL;
6089 uint16_t sfp_flags = 0;
6090 uint rsp_payload_length = sizeof(*rsp_payload);
6091 int rval;
6092
6093 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0180,
6094 "%s: Enter\n", __func__);
6095
6096 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0181,
6097 "-------- ELS REQ -------\n");
6098 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0182,
6099 purex, sizeof(*purex));
6100
6101 if (qla25xx_rdp_rsp_reduce_size(vha, purex)) {
6102 rsp_payload_length =
6103 offsetof(typeof(*rsp_payload), optical_elmt_desc);
6104 ql_dbg(ql_dbg_init, vha, 0x0181,
6105 "Reducing RSP payload length to %u bytes...\n",
6106 rsp_payload_length);
6107 }
6108
6109 rsp_els = dma_alloc_coherent(&ha->pdev->dev, sizeof(*rsp_els),
6110 &rsp_els_dma, GFP_KERNEL);
6111 if (!rsp_els) {
6112 ql_log(ql_log_warn, vha, 0x0183,
6113 "Failed allocate dma buffer ELS RSP.\n");
6114 goto dealloc;
6115 }
6116
6117 rsp_payload = dma_alloc_coherent(&ha->pdev->dev, sizeof(*rsp_payload),
6118 &rsp_payload_dma, GFP_KERNEL);
6119 if (!rsp_payload) {
6120 ql_log(ql_log_warn, vha, 0x0184,
6121 "Failed allocate dma buffer ELS RSP payload.\n");
6122 goto dealloc;
6123 }
6124
6125 sfp = dma_alloc_coherent(&ha->pdev->dev, SFP_RTDI_LEN,
6126 &sfp_dma, GFP_KERNEL);
6127
6128 stat = dma_alloc_coherent(&ha->pdev->dev, sizeof(*stat),
6129 &stat_dma, GFP_KERNEL);
6130
6131 /* Prepare Response IOCB */
6132 rsp_els->entry_type = ELS_IOCB_TYPE;
6133 rsp_els->entry_count = 1;
6134 rsp_els->sys_define = 0;
6135 rsp_els->entry_status = 0;
6136 rsp_els->handle = 0;
6137 rsp_els->nport_handle = purex->nport_handle;
6138 rsp_els->tx_dsd_count = cpu_to_le16(1);
6139 rsp_els->vp_index = purex->vp_idx;
6140 rsp_els->sof_type = EST_SOFI3;
6141 rsp_els->rx_xchg_address = purex->rx_xchg_addr;
6142 rsp_els->rx_dsd_count = 0;
6143 rsp_els->opcode = purex->els_frame_payload[0];
6144
6145 rsp_els->d_id[0] = purex->s_id[0];
6146 rsp_els->d_id[1] = purex->s_id[1];
6147 rsp_els->d_id[2] = purex->s_id[2];
6148
6149 rsp_els->control_flags = cpu_to_le16(EPD_ELS_ACC);
6150 rsp_els->rx_byte_count = 0;
6151 rsp_els->tx_byte_count = cpu_to_le32(rsp_payload_length);
6152
6153 put_unaligned_le64(rsp_payload_dma, &rsp_els->tx_address);
6154 rsp_els->tx_len = rsp_els->tx_byte_count;
6155
6156 rsp_els->rx_address = 0;
6157 rsp_els->rx_len = 0;
6158
6159 /* Prepare Response Payload */
6160 rsp_payload->hdr.cmd = cpu_to_be32(0x2 << 24); /* LS_ACC */
6161 rsp_payload->hdr.len = cpu_to_be32(le32_to_cpu(rsp_els->tx_byte_count) -
6162 sizeof(rsp_payload->hdr));
6163
6164 /* Link service Request Info Descriptor */
6165 rsp_payload->ls_req_info_desc.desc_tag = cpu_to_be32(0x1);
6166 rsp_payload->ls_req_info_desc.desc_len =
6167 cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_req_info_desc));
6168 rsp_payload->ls_req_info_desc.req_payload_word_0 =
6169 cpu_to_be32p((uint32_t *)purex->els_frame_payload);
6170
6171 /* Link service Request Info Descriptor 2 */
6172 rsp_payload->ls_req_info_desc2.desc_tag = cpu_to_be32(0x1);
6173 rsp_payload->ls_req_info_desc2.desc_len =
6174 cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_req_info_desc2));
6175 rsp_payload->ls_req_info_desc2.req_payload_word_0 =
6176 cpu_to_be32p((uint32_t *)purex->els_frame_payload);
6177
6178
6179 rsp_payload->sfp_diag_desc.desc_tag = cpu_to_be32(0x10000);
6180 rsp_payload->sfp_diag_desc.desc_len =
6181 cpu_to_be32(RDP_DESC_LEN(rsp_payload->sfp_diag_desc));
6182
6183 if (sfp) {
6184 /* SFP Flags */
6185 memset(sfp, 0, SFP_RTDI_LEN);
6186 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 0x7, 2, 0);
6187 if (!rval) {
6188 /* SFP Flags bits 3-0: Port Tx Laser Type */
6189 if (sfp[0] & BIT_2 || sfp[1] & (BIT_6|BIT_5))
6190 sfp_flags |= BIT_0; /* short wave */
6191 else if (sfp[0] & BIT_1)
6192 sfp_flags |= BIT_1; /* long wave 1310nm */
6193 else if (sfp[1] & BIT_4)
6194 sfp_flags |= BIT_1|BIT_0; /* long wave 1550nm */
6195 }
6196
6197 /* SFP Type */
6198 memset(sfp, 0, SFP_RTDI_LEN);
6199 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 0x0, 1, 0);
6200 if (!rval) {
6201 sfp_flags |= BIT_4; /* optical */
6202 if (sfp[0] == 0x3)
6203 sfp_flags |= BIT_6; /* sfp+ */
6204 }
6205
6206 rsp_payload->sfp_diag_desc.sfp_flags = cpu_to_be16(sfp_flags);
6207
6208 /* SFP Diagnostics */
6209 memset(sfp, 0, SFP_RTDI_LEN);
6210 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 0x60, 10, 0);
6211 if (!rval) {
6212 __be16 *trx = (__force __be16 *)sfp; /* already be16 */
6213 rsp_payload->sfp_diag_desc.temperature = trx[0];
6214 rsp_payload->sfp_diag_desc.vcc = trx[1];
6215 rsp_payload->sfp_diag_desc.tx_bias = trx[2];
6216 rsp_payload->sfp_diag_desc.tx_power = trx[3];
6217 rsp_payload->sfp_diag_desc.rx_power = trx[4];
6218 }
6219 }
6220
6221 /* Port Speed Descriptor */
6222 rsp_payload->port_speed_desc.desc_tag = cpu_to_be32(0x10001);
6223 rsp_payload->port_speed_desc.desc_len =
6224 cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_speed_desc));
6225 rsp_payload->port_speed_desc.speed_capab = cpu_to_be16(
6226 qla25xx_fdmi_port_speed_capability(ha));
6227 rsp_payload->port_speed_desc.operating_speed = cpu_to_be16(
6228 qla25xx_fdmi_port_speed_currently(ha));
6229
6230 /* Link Error Status Descriptor */
6231 rsp_payload->ls_err_desc.desc_tag = cpu_to_be32(0x10002);
6232 rsp_payload->ls_err_desc.desc_len =
6233 cpu_to_be32(RDP_DESC_LEN(rsp_payload->ls_err_desc));
6234
6235 if (stat) {
6236 rval = qla24xx_get_isp_stats(vha, stat, stat_dma, 0);
6237 if (!rval) {
6238 rsp_payload->ls_err_desc.link_fail_cnt =
6239 cpu_to_be32(le32_to_cpu(stat->link_fail_cnt));
6240 rsp_payload->ls_err_desc.loss_sync_cnt =
6241 cpu_to_be32(le32_to_cpu(stat->loss_sync_cnt));
6242 rsp_payload->ls_err_desc.loss_sig_cnt =
6243 cpu_to_be32(le32_to_cpu(stat->loss_sig_cnt));
6244 rsp_payload->ls_err_desc.prim_seq_err_cnt =
6245 cpu_to_be32(le32_to_cpu(stat->prim_seq_err_cnt));
6246 rsp_payload->ls_err_desc.inval_xmit_word_cnt =
6247 cpu_to_be32(le32_to_cpu(stat->inval_xmit_word_cnt));
6248 rsp_payload->ls_err_desc.inval_crc_cnt =
6249 cpu_to_be32(le32_to_cpu(stat->inval_crc_cnt));
6250 rsp_payload->ls_err_desc.pn_port_phy_type |= BIT_6;
6251 }
6252 }
6253
6254 /* Portname Descriptor */
6255 rsp_payload->port_name_diag_desc.desc_tag = cpu_to_be32(0x10003);
6256 rsp_payload->port_name_diag_desc.desc_len =
6257 cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_name_diag_desc));
6258 memcpy(rsp_payload->port_name_diag_desc.WWNN,
6259 vha->node_name,
6260 sizeof(rsp_payload->port_name_diag_desc.WWNN));
6261 memcpy(rsp_payload->port_name_diag_desc.WWPN,
6262 vha->port_name,
6263 sizeof(rsp_payload->port_name_diag_desc.WWPN));
6264
6265 /* F-Port Portname Descriptor */
6266 rsp_payload->port_name_direct_desc.desc_tag = cpu_to_be32(0x10003);
6267 rsp_payload->port_name_direct_desc.desc_len =
6268 cpu_to_be32(RDP_DESC_LEN(rsp_payload->port_name_direct_desc));
6269 memcpy(rsp_payload->port_name_direct_desc.WWNN,
6270 vha->fabric_node_name,
6271 sizeof(rsp_payload->port_name_direct_desc.WWNN));
6272 memcpy(rsp_payload->port_name_direct_desc.WWPN,
6273 vha->fabric_port_name,
6274 sizeof(rsp_payload->port_name_direct_desc.WWPN));
6275
6276 /* Bufer Credit Descriptor */
6277 rsp_payload->buffer_credit_desc.desc_tag = cpu_to_be32(0x10006);
6278 rsp_payload->buffer_credit_desc.desc_len =
6279 cpu_to_be32(RDP_DESC_LEN(rsp_payload->buffer_credit_desc));
6280 rsp_payload->buffer_credit_desc.fcport_b2b = 0;
6281 rsp_payload->buffer_credit_desc.attached_fcport_b2b = cpu_to_be32(0);
6282 rsp_payload->buffer_credit_desc.fcport_rtt = cpu_to_be32(0);
6283
6284 if (ha->flags.plogi_template_valid) {
6285 uint32_t tmp =
6286 be16_to_cpu(ha->plogi_els_payld.fl_csp.sp_bb_cred);
6287 rsp_payload->buffer_credit_desc.fcport_b2b = cpu_to_be32(tmp);
6288 }
6289
6290 if (rsp_payload_length < sizeof(*rsp_payload))
6291 goto send;
6292
6293 /* Optical Element Descriptor, Temperature */
6294 rsp_payload->optical_elmt_desc[0].desc_tag = cpu_to_be32(0x10007);
6295 rsp_payload->optical_elmt_desc[0].desc_len =
6296 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6297 /* Optical Element Descriptor, Voltage */
6298 rsp_payload->optical_elmt_desc[1].desc_tag = cpu_to_be32(0x10007);
6299 rsp_payload->optical_elmt_desc[1].desc_len =
6300 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6301 /* Optical Element Descriptor, Tx Bias Current */
6302 rsp_payload->optical_elmt_desc[2].desc_tag = cpu_to_be32(0x10007);
6303 rsp_payload->optical_elmt_desc[2].desc_len =
6304 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6305 /* Optical Element Descriptor, Tx Power */
6306 rsp_payload->optical_elmt_desc[3].desc_tag = cpu_to_be32(0x10007);
6307 rsp_payload->optical_elmt_desc[3].desc_len =
6308 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6309 /* Optical Element Descriptor, Rx Power */
6310 rsp_payload->optical_elmt_desc[4].desc_tag = cpu_to_be32(0x10007);
6311 rsp_payload->optical_elmt_desc[4].desc_len =
6312 cpu_to_be32(RDP_DESC_LEN(*rsp_payload->optical_elmt_desc));
6313
6314 if (sfp) {
6315 memset(sfp, 0, SFP_RTDI_LEN);
6316 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 0, 64, 0);
6317 if (!rval) {
6318 __be16 *trx = (__force __be16 *)sfp; /* already be16 */
6319
6320 /* Optical Element Descriptor, Temperature */
6321 rsp_payload->optical_elmt_desc[0].high_alarm = trx[0];
6322 rsp_payload->optical_elmt_desc[0].low_alarm = trx[1];
6323 rsp_payload->optical_elmt_desc[0].high_warn = trx[2];
6324 rsp_payload->optical_elmt_desc[0].low_warn = trx[3];
6325 rsp_payload->optical_elmt_desc[0].element_flags =
6326 cpu_to_be32(1 << 28);
6327
6328 /* Optical Element Descriptor, Voltage */
6329 rsp_payload->optical_elmt_desc[1].high_alarm = trx[4];
6330 rsp_payload->optical_elmt_desc[1].low_alarm = trx[5];
6331 rsp_payload->optical_elmt_desc[1].high_warn = trx[6];
6332 rsp_payload->optical_elmt_desc[1].low_warn = trx[7];
6333 rsp_payload->optical_elmt_desc[1].element_flags =
6334 cpu_to_be32(2 << 28);
6335
6336 /* Optical Element Descriptor, Tx Bias Current */
6337 rsp_payload->optical_elmt_desc[2].high_alarm = trx[8];
6338 rsp_payload->optical_elmt_desc[2].low_alarm = trx[9];
6339 rsp_payload->optical_elmt_desc[2].high_warn = trx[10];
6340 rsp_payload->optical_elmt_desc[2].low_warn = trx[11];
6341 rsp_payload->optical_elmt_desc[2].element_flags =
6342 cpu_to_be32(3 << 28);
6343
6344 /* Optical Element Descriptor, Tx Power */
6345 rsp_payload->optical_elmt_desc[3].high_alarm = trx[12];
6346 rsp_payload->optical_elmt_desc[3].low_alarm = trx[13];
6347 rsp_payload->optical_elmt_desc[3].high_warn = trx[14];
6348 rsp_payload->optical_elmt_desc[3].low_warn = trx[15];
6349 rsp_payload->optical_elmt_desc[3].element_flags =
6350 cpu_to_be32(4 << 28);
6351
6352 /* Optical Element Descriptor, Rx Power */
6353 rsp_payload->optical_elmt_desc[4].high_alarm = trx[16];
6354 rsp_payload->optical_elmt_desc[4].low_alarm = trx[17];
6355 rsp_payload->optical_elmt_desc[4].high_warn = trx[18];
6356 rsp_payload->optical_elmt_desc[4].low_warn = trx[19];
6357 rsp_payload->optical_elmt_desc[4].element_flags =
6358 cpu_to_be32(5 << 28);
6359 }
6360
6361 memset(sfp, 0, SFP_RTDI_LEN);
6362 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa2, 112, 64, 0);
6363 if (!rval) {
6364 /* Temperature high/low alarm/warning */
6365 rsp_payload->optical_elmt_desc[0].element_flags |=
6366 cpu_to_be32(
6367 (sfp[0] >> 7 & 1) << 3 |
6368 (sfp[0] >> 6 & 1) << 2 |
6369 (sfp[4] >> 7 & 1) << 1 |
6370 (sfp[4] >> 6 & 1) << 0);
6371
6372 /* Voltage high/low alarm/warning */
6373 rsp_payload->optical_elmt_desc[1].element_flags |=
6374 cpu_to_be32(
6375 (sfp[0] >> 5 & 1) << 3 |
6376 (sfp[0] >> 4 & 1) << 2 |
6377 (sfp[4] >> 5 & 1) << 1 |
6378 (sfp[4] >> 4 & 1) << 0);
6379
6380 /* Tx Bias Current high/low alarm/warning */
6381 rsp_payload->optical_elmt_desc[2].element_flags |=
6382 cpu_to_be32(
6383 (sfp[0] >> 3 & 1) << 3 |
6384 (sfp[0] >> 2 & 1) << 2 |
6385 (sfp[4] >> 3 & 1) << 1 |
6386 (sfp[4] >> 2 & 1) << 0);
6387
6388 /* Tx Power high/low alarm/warning */
6389 rsp_payload->optical_elmt_desc[3].element_flags |=
6390 cpu_to_be32(
6391 (sfp[0] >> 1 & 1) << 3 |
6392 (sfp[0] >> 0 & 1) << 2 |
6393 (sfp[4] >> 1 & 1) << 1 |
6394 (sfp[4] >> 0 & 1) << 0);
6395
6396 /* Rx Power high/low alarm/warning */
6397 rsp_payload->optical_elmt_desc[4].element_flags |=
6398 cpu_to_be32(
6399 (sfp[1] >> 7 & 1) << 3 |
6400 (sfp[1] >> 6 & 1) << 2 |
6401 (sfp[5] >> 7 & 1) << 1 |
6402 (sfp[5] >> 6 & 1) << 0);
6403 }
6404 }
6405
6406 /* Optical Product Data Descriptor */
6407 rsp_payload->optical_prod_desc.desc_tag = cpu_to_be32(0x10008);
6408 rsp_payload->optical_prod_desc.desc_len =
6409 cpu_to_be32(RDP_DESC_LEN(rsp_payload->optical_prod_desc));
6410
6411 if (sfp) {
6412 memset(sfp, 0, SFP_RTDI_LEN);
6413 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 20, 64, 0);
6414 if (!rval) {
6415 memcpy(rsp_payload->optical_prod_desc.vendor_name,
6416 sfp + 0,
6417 sizeof(rsp_payload->optical_prod_desc.vendor_name));
6418 memcpy(rsp_payload->optical_prod_desc.part_number,
6419 sfp + 20,
6420 sizeof(rsp_payload->optical_prod_desc.part_number));
6421 memcpy(rsp_payload->optical_prod_desc.revision,
6422 sfp + 36,
6423 sizeof(rsp_payload->optical_prod_desc.revision));
6424 memcpy(rsp_payload->optical_prod_desc.serial_number,
6425 sfp + 48,
6426 sizeof(rsp_payload->optical_prod_desc.serial_number));
6427 }
6428
6429 memset(sfp, 0, SFP_RTDI_LEN);
6430 rval = qla2x00_read_sfp(vha, sfp_dma, sfp, 0xa0, 84, 8, 0);
6431 if (!rval) {
6432 memcpy(rsp_payload->optical_prod_desc.date,
6433 sfp + 0,
6434 sizeof(rsp_payload->optical_prod_desc.date));
6435 }
6436 }
6437
6438send:
6439 ql_dbg(ql_dbg_init, vha, 0x0183,
6440 "Sending ELS Response to RDP Request...\n");
6441 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0184,
6442 "-------- ELS RSP -------\n");
6443 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0185,
6444 rsp_els, sizeof(*rsp_els));
6445 ql_dbg(ql_dbg_init + ql_dbg_verbose, vha, 0x0186,
6446 "-------- ELS RSP PAYLOAD -------\n");
6447 ql_dump_buffer(ql_dbg_init + ql_dbg_verbose, vha, 0x0187,
6448 rsp_payload, rsp_payload_length);
6449
6450 rval = qla2x00_issue_iocb(vha, rsp_els, rsp_els_dma, 0);
6451
6452 if (rval) {
6453 ql_log(ql_log_warn, vha, 0x0188,
6454 "%s: iocb failed to execute -> %x\n", __func__, rval);
6455 } else if (rsp_els->comp_status) {
6456 ql_log(ql_log_warn, vha, 0x0189,
6457 "%s: iocb failed to complete -> completion=%#x subcode=(%#x,%#x)\n",
6458 __func__, rsp_els->comp_status,
6459 rsp_els->error_subcode_1, rsp_els->error_subcode_2);
6460 } else {
6461 ql_dbg(ql_dbg_init, vha, 0x018a, "%s: done.\n", __func__);
6462 }
6463
6464dealloc:
6465 if (stat)
6466 dma_free_coherent(&ha->pdev->dev, sizeof(*stat),
6467 stat, stat_dma);
6468 if (sfp)
6469 dma_free_coherent(&ha->pdev->dev, SFP_RTDI_LEN,
6470 sfp, sfp_dma);
6471 if (rsp_payload)
6472 dma_free_coherent(&ha->pdev->dev, sizeof(*rsp_payload),
6473 rsp_payload, rsp_payload_dma);
6474 if (rsp_els)
6475 dma_free_coherent(&ha->pdev->dev, sizeof(*rsp_els),
6476 rsp_els, rsp_els_dma);
6477}
6478
6479void
6480qla24xx_free_purex_item(struct purex_item *item)
6481{
6482 if (item == &item->vha->default_item)
6483 memset(&item->vha->default_item, 0, sizeof(struct purex_item));
6484 else
6485 kfree(item);
6486}
6487
6488void qla24xx_process_purex_list(struct purex_list *list)
6489{
6490 struct list_head head = LIST_HEAD_INIT(head);
6491 struct purex_item *item, *next;
6492 ulong flags;
6493
6494 spin_lock_irqsave(&list->lock, flags);
6495 list_splice_init(&list->head, &head);
6496 spin_unlock_irqrestore(&list->lock, flags);
6497
6498 list_for_each_entry_safe(item, next, &head, list) {
6499 list_del(&item->list);
6500 item->process_item(item->vha, item);
6501 qla24xx_free_purex_item(item);
6502 }
6503}
6504
6505/*
6506 * Context: task, can sleep
6507 */
6508void
6509qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id)
6510{
6511#if 0
6512 uint16_t options = (requester_id << 15) | BIT_7;
6513#endif
6514 uint16_t retry;
6515 uint32_t data;
6516 struct qla_hw_data *ha = base_vha->hw;
6517
6518 might_sleep();
6519
6520 /* IDC-unlock implementation using driver-unlock/lock-id
6521 * remote registers
6522 */
6523 retry = 0;
6524retry_unlock:
6525 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data)
6526 == QLA_SUCCESS) {
6527 if (data == ha->portnum) {
6528 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data);
6529 /* Clearing lock-id by setting 0xff */
6530 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff);
6531 } else if (retry < 10) {
6532 /* SV: XXX: IDC unlock retrying needed here? */
6533
6534 /* Retry for IDC-unlock */
6535 msleep(QLA83XX_WAIT_LOGIC_MS);
6536 retry++;
6537 ql_dbg(ql_dbg_p3p, base_vha, 0xb064,
6538 "Failed to release IDC lock, retrying=%d\n", retry);
6539 goto retry_unlock;
6540 }
6541 } else if (retry < 10) {
6542 /* Retry for IDC-unlock */
6543 msleep(QLA83XX_WAIT_LOGIC_MS);
6544 retry++;
6545 ql_dbg(ql_dbg_p3p, base_vha, 0xb065,
6546 "Failed to read drv-lockid, retrying=%d\n", retry);
6547 goto retry_unlock;
6548 }
6549
6550 return;
6551
6552#if 0
6553 /* XXX: IDC-unlock implementation using access-control mbx */
6554 retry = 0;
6555retry_unlock2:
6556 if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) {
6557 if (retry < 10) {
6558 /* Retry for IDC-unlock */
6559 msleep(QLA83XX_WAIT_LOGIC_MS);
6560 retry++;
6561 ql_dbg(ql_dbg_p3p, base_vha, 0xb066,
6562 "Failed to release IDC lock, retrying=%d\n", retry);
6563 goto retry_unlock2;
6564 }
6565 }
6566
6567 return;
6568#endif
6569}
6570
6571int
6572__qla83xx_set_drv_presence(scsi_qla_host_t *vha)
6573{
6574 int rval = QLA_SUCCESS;
6575 struct qla_hw_data *ha = vha->hw;
6576 uint32_t drv_presence;
6577
6578 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6579 if (rval == QLA_SUCCESS) {
6580 drv_presence |= (1 << ha->portnum);
6581 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6582 drv_presence);
6583 }
6584
6585 return rval;
6586}
6587
6588int
6589qla83xx_set_drv_presence(scsi_qla_host_t *vha)
6590{
6591 int rval = QLA_SUCCESS;
6592
6593 qla83xx_idc_lock(vha, 0);
6594 rval = __qla83xx_set_drv_presence(vha);
6595 qla83xx_idc_unlock(vha, 0);
6596
6597 return rval;
6598}
6599
6600int
6601__qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
6602{
6603 int rval = QLA_SUCCESS;
6604 struct qla_hw_data *ha = vha->hw;
6605 uint32_t drv_presence;
6606
6607 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6608 if (rval == QLA_SUCCESS) {
6609 drv_presence &= ~(1 << ha->portnum);
6610 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6611 drv_presence);
6612 }
6613
6614 return rval;
6615}
6616
6617int
6618qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
6619{
6620 int rval = QLA_SUCCESS;
6621
6622 qla83xx_idc_lock(vha, 0);
6623 rval = __qla83xx_clear_drv_presence(vha);
6624 qla83xx_idc_unlock(vha, 0);
6625
6626 return rval;
6627}
6628
6629static void
6630qla83xx_need_reset_handler(scsi_qla_host_t *vha)
6631{
6632 struct qla_hw_data *ha = vha->hw;
6633 uint32_t drv_ack, drv_presence;
6634 unsigned long ack_timeout;
6635
6636 /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */
6637 ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ);
6638 while (1) {
6639 qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
6640 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
6641 if ((drv_ack & drv_presence) == drv_presence)
6642 break;
6643
6644 if (time_after_eq(jiffies, ack_timeout)) {
6645 ql_log(ql_log_warn, vha, 0xb067,
6646 "RESET ACK TIMEOUT! drv_presence=0x%x "
6647 "drv_ack=0x%x\n", drv_presence, drv_ack);
6648 /*
6649 * The function(s) which did not ack in time are forced
6650 * to withdraw any further participation in the IDC
6651 * reset.
6652 */
6653 if (drv_ack != drv_presence)
6654 qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
6655 drv_ack);
6656 break;
6657 }
6658
6659 qla83xx_idc_unlock(vha, 0);
6660 msleep(1000);
6661 qla83xx_idc_lock(vha, 0);
6662 }
6663
6664 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD);
6665 ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n");
6666}
6667
6668static int
6669qla83xx_device_bootstrap(scsi_qla_host_t *vha)
6670{
6671 int rval = QLA_SUCCESS;
6672 uint32_t idc_control;
6673
6674 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING);
6675 ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n");
6676
6677 /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */
6678 __qla83xx_get_idc_control(vha, &idc_control);
6679 idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET;
6680 __qla83xx_set_idc_control(vha, 0);
6681
6682 qla83xx_idc_unlock(vha, 0);
6683 rval = qla83xx_restart_nic_firmware(vha);
6684 qla83xx_idc_lock(vha, 0);
6685
6686 if (rval != QLA_SUCCESS) {
6687 ql_log(ql_log_fatal, vha, 0xb06a,
6688 "Failed to restart NIC f/w.\n");
6689 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED);
6690 ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n");
6691 } else {
6692 ql_dbg(ql_dbg_p3p, vha, 0xb06c,
6693 "Success in restarting nic f/w.\n");
6694 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY);
6695 ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n");
6696 }
6697
6698 return rval;
6699}
6700
6701/* Assumes idc_lock always held on entry */
6702int
6703qla83xx_idc_state_handler(scsi_qla_host_t *base_vha)
6704{
6705 struct qla_hw_data *ha = base_vha->hw;
6706 int rval = QLA_SUCCESS;
6707 unsigned long dev_init_timeout;
6708 uint32_t dev_state;
6709
6710 /* Wait for MAX-INIT-TIMEOUT for the device to go ready */
6711 dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ);
6712
6713 while (1) {
6714
6715 if (time_after_eq(jiffies, dev_init_timeout)) {
6716 ql_log(ql_log_warn, base_vha, 0xb06e,
6717 "Initialization TIMEOUT!\n");
6718 /* Init timeout. Disable further NIC Core
6719 * communication.
6720 */
6721 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
6722 QLA8XXX_DEV_FAILED);
6723 ql_log(ql_log_info, base_vha, 0xb06f,
6724 "HW State: FAILED.\n");
6725 }
6726
6727 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
6728 switch (dev_state) {
6729 case QLA8XXX_DEV_READY:
6730 if (ha->flags.nic_core_reset_owner)
6731 qla83xx_idc_audit(base_vha,
6732 IDC_AUDIT_COMPLETION);
6733 ha->flags.nic_core_reset_owner = 0;
6734 ql_dbg(ql_dbg_p3p, base_vha, 0xb070,
6735 "Reset_owner reset by 0x%x.\n",
6736 ha->portnum);
6737 goto exit;
6738 case QLA8XXX_DEV_COLD:
6739 if (ha->flags.nic_core_reset_owner)
6740 rval = qla83xx_device_bootstrap(base_vha);
6741 else {
6742 /* Wait for AEN to change device-state */
6743 qla83xx_idc_unlock(base_vha, 0);
6744 msleep(1000);
6745 qla83xx_idc_lock(base_vha, 0);
6746 }
6747 break;
6748 case QLA8XXX_DEV_INITIALIZING:
6749 /* Wait for AEN to change device-state */
6750 qla83xx_idc_unlock(base_vha, 0);
6751 msleep(1000);
6752 qla83xx_idc_lock(base_vha, 0);
6753 break;
6754 case QLA8XXX_DEV_NEED_RESET:
6755 if (!ql2xdontresethba && ha->flags.nic_core_reset_owner)
6756 qla83xx_need_reset_handler(base_vha);
6757 else {
6758 /* Wait for AEN to change device-state */
6759 qla83xx_idc_unlock(base_vha, 0);
6760 msleep(1000);
6761 qla83xx_idc_lock(base_vha, 0);
6762 }
6763 /* reset timeout value after need reset handler */
6764 dev_init_timeout = jiffies +
6765 (ha->fcoe_dev_init_timeout * HZ);
6766 break;
6767 case QLA8XXX_DEV_NEED_QUIESCENT:
6768 /* XXX: DEBUG for now */
6769 qla83xx_idc_unlock(base_vha, 0);
6770 msleep(1000);
6771 qla83xx_idc_lock(base_vha, 0);
6772 break;
6773 case QLA8XXX_DEV_QUIESCENT:
6774 /* XXX: DEBUG for now */
6775 if (ha->flags.quiesce_owner)
6776 goto exit;
6777
6778 qla83xx_idc_unlock(base_vha, 0);
6779 msleep(1000);
6780 qla83xx_idc_lock(base_vha, 0);
6781 dev_init_timeout = jiffies +
6782 (ha->fcoe_dev_init_timeout * HZ);
6783 break;
6784 case QLA8XXX_DEV_FAILED:
6785 if (ha->flags.nic_core_reset_owner)
6786 qla83xx_idc_audit(base_vha,
6787 IDC_AUDIT_COMPLETION);
6788 ha->flags.nic_core_reset_owner = 0;
6789 __qla83xx_clear_drv_presence(base_vha);
6790 qla83xx_idc_unlock(base_vha, 0);
6791 qla8xxx_dev_failed_handler(base_vha);
6792 rval = QLA_FUNCTION_FAILED;
6793 qla83xx_idc_lock(base_vha, 0);
6794 goto exit;
6795 case QLA8XXX_BAD_VALUE:
6796 qla83xx_idc_unlock(base_vha, 0);
6797 msleep(1000);
6798 qla83xx_idc_lock(base_vha, 0);
6799 break;
6800 default:
6801 ql_log(ql_log_warn, base_vha, 0xb071,
6802 "Unknown Device State: %x.\n", dev_state);
6803 qla83xx_idc_unlock(base_vha, 0);
6804 qla8xxx_dev_failed_handler(base_vha);
6805 rval = QLA_FUNCTION_FAILED;
6806 qla83xx_idc_lock(base_vha, 0);
6807 goto exit;
6808 }
6809 }
6810
6811exit:
6812 return rval;
6813}
6814
6815void
6816qla2x00_disable_board_on_pci_error(struct work_struct *work)
6817{
6818 struct qla_hw_data *ha = container_of(work, struct qla_hw_data,
6819 board_disable);
6820 struct pci_dev *pdev = ha->pdev;
6821 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
6822
6823 ql_log(ql_log_warn, base_vha, 0x015b,
6824 "Disabling adapter.\n");
6825
6826 if (!atomic_read(&pdev->enable_cnt)) {
6827 ql_log(ql_log_info, base_vha, 0xfffc,
6828 "PCI device disabled, no action req for PCI error=%lx\n",
6829 base_vha->pci_flags);
6830 return;
6831 }
6832
6833 /*
6834 * if UNLOADING flag is already set, then continue unload,
6835 * where it was set first.
6836 */
6837 if (test_and_set_bit(UNLOADING, &base_vha->dpc_flags))
6838 return;
6839
6840 qla2x00_wait_for_sess_deletion(base_vha);
6841
6842 qla2x00_delete_all_vps(ha, base_vha);
6843
6844 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
6845
6846 qla2x00_dfs_remove(base_vha);
6847
6848 qla84xx_put_chip(base_vha);
6849
6850 if (base_vha->timer_active)
6851 qla2x00_stop_timer(base_vha);
6852
6853 base_vha->flags.online = 0;
6854
6855 qla2x00_destroy_deferred_work(ha);
6856
6857 /*
6858 * Do not try to stop beacon blink as it will issue a mailbox
6859 * command.
6860 */
6861 qla2x00_free_sysfs_attr(base_vha, false);
6862
6863 fc_remove_host(base_vha->host);
6864
6865 scsi_remove_host(base_vha->host);
6866
6867 base_vha->flags.init_done = 0;
6868 qla25xx_delete_queues(base_vha);
6869 qla2x00_free_fcports(base_vha);
6870 qla2x00_free_irqs(base_vha);
6871 qla2x00_mem_free(ha);
6872 qla82xx_md_free(base_vha);
6873 qla2x00_free_queues(ha);
6874
6875 qla2x00_unmap_iobases(ha);
6876
6877 pci_release_selected_regions(ha->pdev, ha->bars);
6878 pci_disable_device(pdev);
6879
6880 /*
6881 * Let qla2x00_remove_one cleanup qla_hw_data on device removal.
6882 */
6883}
6884
6885/**************************************************************************
6886* qla2x00_do_dpc
6887* This kernel thread is a task that is schedule by the interrupt handler
6888* to perform the background processing for interrupts.
6889*
6890* Notes:
6891* This task always run in the context of a kernel thread. It
6892* is kick-off by the driver's detect code and starts up
6893* up one per adapter. It immediately goes to sleep and waits for
6894* some fibre event. When either the interrupt handler or
6895* the timer routine detects a event it will one of the task
6896* bits then wake us up.
6897**************************************************************************/
6898static int
6899qla2x00_do_dpc(void *data)
6900{
6901 scsi_qla_host_t *base_vha;
6902 struct qla_hw_data *ha;
6903 uint32_t online;
6904 struct qla_qpair *qpair;
6905
6906 ha = (struct qla_hw_data *)data;
6907 base_vha = pci_get_drvdata(ha->pdev);
6908
6909 set_user_nice(current, MIN_NICE);
6910
6911 set_current_state(TASK_INTERRUPTIBLE);
6912 while (!kthread_should_stop()) {
6913 ql_dbg(ql_dbg_dpc, base_vha, 0x4000,
6914 "DPC handler sleeping.\n");
6915
6916 schedule();
6917
6918 if (test_and_clear_bit(DO_EEH_RECOVERY, &base_vha->dpc_flags))
6919 qla_pci_set_eeh_busy(base_vha);
6920
6921 if (!base_vha->flags.init_done || ha->flags.mbox_busy)
6922 goto end_loop;
6923
6924 if (ha->flags.eeh_busy) {
6925 ql_dbg(ql_dbg_dpc, base_vha, 0x4003,
6926 "eeh_busy=%d.\n", ha->flags.eeh_busy);
6927 goto end_loop;
6928 }
6929
6930 ha->dpc_active = 1;
6931
6932 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001,
6933 "DPC handler waking up, dpc_flags=0x%lx.\n",
6934 base_vha->dpc_flags);
6935
6936 if (test_bit(UNLOADING, &base_vha->dpc_flags))
6937 break;
6938
6939 if (IS_P3P_TYPE(ha)) {
6940 if (IS_QLA8044(ha)) {
6941 if (test_and_clear_bit(ISP_UNRECOVERABLE,
6942 &base_vha->dpc_flags)) {
6943 qla8044_idc_lock(ha);
6944 qla8044_wr_direct(base_vha,
6945 QLA8044_CRB_DEV_STATE_INDEX,
6946 QLA8XXX_DEV_FAILED);
6947 qla8044_idc_unlock(ha);
6948 ql_log(ql_log_info, base_vha, 0x4004,
6949 "HW State: FAILED.\n");
6950 qla8044_device_state_handler(base_vha);
6951 continue;
6952 }
6953
6954 } else {
6955 if (test_and_clear_bit(ISP_UNRECOVERABLE,
6956 &base_vha->dpc_flags)) {
6957 qla82xx_idc_lock(ha);
6958 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
6959 QLA8XXX_DEV_FAILED);
6960 qla82xx_idc_unlock(ha);
6961 ql_log(ql_log_info, base_vha, 0x0151,
6962 "HW State: FAILED.\n");
6963 qla82xx_device_state_handler(base_vha);
6964 continue;
6965 }
6966 }
6967
6968 if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
6969 &base_vha->dpc_flags)) {
6970
6971 ql_dbg(ql_dbg_dpc, base_vha, 0x4005,
6972 "FCoE context reset scheduled.\n");
6973 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
6974 &base_vha->dpc_flags))) {
6975 if (qla82xx_fcoe_ctx_reset(base_vha)) {
6976 /* FCoE-ctx reset failed.
6977 * Escalate to chip-reset
6978 */
6979 set_bit(ISP_ABORT_NEEDED,
6980 &base_vha->dpc_flags);
6981 }
6982 clear_bit(ABORT_ISP_ACTIVE,
6983 &base_vha->dpc_flags);
6984 }
6985
6986 ql_dbg(ql_dbg_dpc, base_vha, 0x4006,
6987 "FCoE context reset end.\n");
6988 }
6989 } else if (IS_QLAFX00(ha)) {
6990 if (test_and_clear_bit(ISP_UNRECOVERABLE,
6991 &base_vha->dpc_flags)) {
6992 ql_dbg(ql_dbg_dpc, base_vha, 0x4020,
6993 "Firmware Reset Recovery\n");
6994 if (qlafx00_reset_initialize(base_vha)) {
6995 /* Failed. Abort isp later. */
6996 if (!test_bit(UNLOADING,
6997 &base_vha->dpc_flags)) {
6998 set_bit(ISP_UNRECOVERABLE,
6999 &base_vha->dpc_flags);
7000 ql_dbg(ql_dbg_dpc, base_vha,
7001 0x4021,
7002 "Reset Recovery Failed\n");
7003 }
7004 }
7005 }
7006
7007 if (test_and_clear_bit(FX00_TARGET_SCAN,
7008 &base_vha->dpc_flags)) {
7009 ql_dbg(ql_dbg_dpc, base_vha, 0x4022,
7010 "ISPFx00 Target Scan scheduled\n");
7011 if (qlafx00_rescan_isp(base_vha)) {
7012 if (!test_bit(UNLOADING,
7013 &base_vha->dpc_flags))
7014 set_bit(ISP_UNRECOVERABLE,
7015 &base_vha->dpc_flags);
7016 ql_dbg(ql_dbg_dpc, base_vha, 0x401e,
7017 "ISPFx00 Target Scan Failed\n");
7018 }
7019 ql_dbg(ql_dbg_dpc, base_vha, 0x401f,
7020 "ISPFx00 Target Scan End\n");
7021 }
7022 if (test_and_clear_bit(FX00_HOST_INFO_RESEND,
7023 &base_vha->dpc_flags)) {
7024 ql_dbg(ql_dbg_dpc, base_vha, 0x4023,
7025 "ISPFx00 Host Info resend scheduled\n");
7026 qlafx00_fx_disc(base_vha,
7027 &base_vha->hw->mr.fcport,
7028 FXDISC_REG_HOST_INFO);
7029 }
7030 }
7031
7032 if (test_and_clear_bit(DETECT_SFP_CHANGE,
7033 &base_vha->dpc_flags)) {
7034 /* Semantic:
7035 * - NO-OP -- await next ISP-ABORT. Preferred method
7036 * to minimize disruptions that will occur
7037 * when a forced chip-reset occurs.
7038 * - Force -- ISP-ABORT scheduled.
7039 */
7040 /* set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); */
7041 }
7042
7043 if (test_and_clear_bit
7044 (ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
7045 !test_bit(UNLOADING, &base_vha->dpc_flags)) {
7046 bool do_reset = true;
7047
7048 switch (base_vha->qlini_mode) {
7049 case QLA2XXX_INI_MODE_ENABLED:
7050 break;
7051 case QLA2XXX_INI_MODE_DISABLED:
7052 if (!qla_tgt_mode_enabled(base_vha) &&
7053 !ha->flags.fw_started)
7054 do_reset = false;
7055 break;
7056 case QLA2XXX_INI_MODE_DUAL:
7057 if (!qla_dual_mode_enabled(base_vha) &&
7058 !ha->flags.fw_started)
7059 do_reset = false;
7060 break;
7061 default:
7062 break;
7063 }
7064
7065 if (do_reset && !(test_and_set_bit(ABORT_ISP_ACTIVE,
7066 &base_vha->dpc_flags))) {
7067 base_vha->flags.online = 1;
7068 ql_dbg(ql_dbg_dpc, base_vha, 0x4007,
7069 "ISP abort scheduled.\n");
7070 if (ha->isp_ops->abort_isp(base_vha)) {
7071 /* failed. retry later */
7072 set_bit(ISP_ABORT_NEEDED,
7073 &base_vha->dpc_flags);
7074 }
7075 clear_bit(ABORT_ISP_ACTIVE,
7076 &base_vha->dpc_flags);
7077 ql_dbg(ql_dbg_dpc, base_vha, 0x4008,
7078 "ISP abort end.\n");
7079 }
7080 }
7081
7082 if (test_bit(PROCESS_PUREX_IOCB, &base_vha->dpc_flags)) {
7083 if (atomic_read(&base_vha->loop_state) == LOOP_READY) {
7084 qla24xx_process_purex_list
7085 (&base_vha->purex_list);
7086 clear_bit(PROCESS_PUREX_IOCB,
7087 &base_vha->dpc_flags);
7088 }
7089 }
7090
7091 if (IS_QLAFX00(ha))
7092 goto loop_resync_check;
7093
7094 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) {
7095 ql_dbg(ql_dbg_dpc, base_vha, 0x4009,
7096 "Quiescence mode scheduled.\n");
7097 if (IS_P3P_TYPE(ha)) {
7098 if (IS_QLA82XX(ha))
7099 qla82xx_device_state_handler(base_vha);
7100 if (IS_QLA8044(ha))
7101 qla8044_device_state_handler(base_vha);
7102 clear_bit(ISP_QUIESCE_NEEDED,
7103 &base_vha->dpc_flags);
7104 if (!ha->flags.quiesce_owner) {
7105 qla2x00_perform_loop_resync(base_vha);
7106 if (IS_QLA82XX(ha)) {
7107 qla82xx_idc_lock(ha);
7108 qla82xx_clear_qsnt_ready(
7109 base_vha);
7110 qla82xx_idc_unlock(ha);
7111 } else if (IS_QLA8044(ha)) {
7112 qla8044_idc_lock(ha);
7113 qla8044_clear_qsnt_ready(
7114 base_vha);
7115 qla8044_idc_unlock(ha);
7116 }
7117 }
7118 } else {
7119 clear_bit(ISP_QUIESCE_NEEDED,
7120 &base_vha->dpc_flags);
7121 qla2x00_quiesce_io(base_vha);
7122 }
7123 ql_dbg(ql_dbg_dpc, base_vha, 0x400a,
7124 "Quiescence mode end.\n");
7125 }
7126
7127 if (test_and_clear_bit(RESET_MARKER_NEEDED,
7128 &base_vha->dpc_flags) &&
7129 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
7130
7131 ql_dbg(ql_dbg_dpc, base_vha, 0x400b,
7132 "Reset marker scheduled.\n");
7133 qla2x00_rst_aen(base_vha);
7134 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
7135 ql_dbg(ql_dbg_dpc, base_vha, 0x400c,
7136 "Reset marker end.\n");
7137 }
7138
7139 /* Retry each device up to login retry count */
7140 if (test_bit(RELOGIN_NEEDED, &base_vha->dpc_flags) &&
7141 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
7142 atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
7143
7144 if (!base_vha->relogin_jif ||
7145 time_after_eq(jiffies, base_vha->relogin_jif)) {
7146 base_vha->relogin_jif = jiffies + HZ;
7147 clear_bit(RELOGIN_NEEDED, &base_vha->dpc_flags);
7148
7149 ql_dbg(ql_dbg_disc, base_vha, 0x400d,
7150 "Relogin scheduled.\n");
7151 qla24xx_post_relogin_work(base_vha);
7152 }
7153 }
7154loop_resync_check:
7155 if (!qla2x00_reset_active(base_vha) &&
7156 test_and_clear_bit(LOOP_RESYNC_NEEDED,
7157 &base_vha->dpc_flags)) {
7158 /*
7159 * Allow abort_isp to complete before moving on to scanning.
7160 */
7161 ql_dbg(ql_dbg_dpc, base_vha, 0x400f,
7162 "Loop resync scheduled.\n");
7163
7164 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
7165 &base_vha->dpc_flags))) {
7166
7167 qla2x00_loop_resync(base_vha);
7168
7169 clear_bit(LOOP_RESYNC_ACTIVE,
7170 &base_vha->dpc_flags);
7171 }
7172
7173 ql_dbg(ql_dbg_dpc, base_vha, 0x4010,
7174 "Loop resync end.\n");
7175 }
7176
7177 if (IS_QLAFX00(ha))
7178 goto intr_on_check;
7179
7180 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
7181 atomic_read(&base_vha->loop_state) == LOOP_READY) {
7182 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
7183 qla2xxx_flash_npiv_conf(base_vha);
7184 }
7185
7186intr_on_check:
7187 if (!ha->interrupts_on)
7188 ha->isp_ops->enable_intrs(ha);
7189
7190 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
7191 &base_vha->dpc_flags)) {
7192 if (ha->beacon_blink_led == 1)
7193 ha->isp_ops->beacon_blink(base_vha);
7194 }
7195
7196 /* qpair online check */
7197 if (test_and_clear_bit(QPAIR_ONLINE_CHECK_NEEDED,
7198 &base_vha->dpc_flags)) {
7199 if (ha->flags.eeh_busy ||
7200 ha->flags.pci_channel_io_perm_failure)
7201 online = 0;
7202 else
7203 online = 1;
7204
7205 mutex_lock(&ha->mq_lock);
7206 list_for_each_entry(qpair, &base_vha->qp_list,
7207 qp_list_elem)
7208 qpair->online = online;
7209 mutex_unlock(&ha->mq_lock);
7210 }
7211
7212 if (test_and_clear_bit(SET_ZIO_THRESHOLD_NEEDED,
7213 &base_vha->dpc_flags)) {
7214 u16 threshold = ha->nvme_last_rptd_aen + ha->last_zio_threshold;
7215
7216 if (threshold > ha->orig_fw_xcb_count)
7217 threshold = ha->orig_fw_xcb_count;
7218
7219 ql_log(ql_log_info, base_vha, 0xffffff,
7220 "SET ZIO Activity exchange threshold to %d.\n",
7221 threshold);
7222 if (qla27xx_set_zio_threshold(base_vha, threshold)) {
7223 ql_log(ql_log_info, base_vha, 0xffffff,
7224 "Unable to SET ZIO Activity exchange threshold to %d.\n",
7225 threshold);
7226 }
7227 }
7228
7229 if (!IS_QLAFX00(ha))
7230 qla2x00_do_dpc_all_vps(base_vha);
7231
7232 if (test_and_clear_bit(N2N_LINK_RESET,
7233 &base_vha->dpc_flags)) {
7234 qla2x00_lip_reset(base_vha);
7235 }
7236
7237 ha->dpc_active = 0;
7238end_loop:
7239 set_current_state(TASK_INTERRUPTIBLE);
7240 } /* End of while(1) */
7241 __set_current_state(TASK_RUNNING);
7242
7243 ql_dbg(ql_dbg_dpc, base_vha, 0x4011,
7244 "DPC handler exiting.\n");
7245
7246 /*
7247 * Make sure that nobody tries to wake us up again.
7248 */
7249 ha->dpc_active = 0;
7250
7251 /* Cleanup any residual CTX SRBs. */
7252 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
7253
7254 return 0;
7255}
7256
7257void
7258qla2xxx_wake_dpc(struct scsi_qla_host *vha)
7259{
7260 struct qla_hw_data *ha = vha->hw;
7261 struct task_struct *t = ha->dpc_thread;
7262
7263 if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
7264 wake_up_process(t);
7265}
7266
7267/*
7268* qla2x00_rst_aen
7269* Processes asynchronous reset.
7270*
7271* Input:
7272* ha = adapter block pointer.
7273*/
7274static void
7275qla2x00_rst_aen(scsi_qla_host_t *vha)
7276{
7277 if (vha->flags.online && !vha->flags.reset_active &&
7278 !atomic_read(&vha->loop_down_timer) &&
7279 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
7280 do {
7281 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
7282
7283 /*
7284 * Issue marker command only when we are going to start
7285 * the I/O.
7286 */
7287 vha->marker_needed = 1;
7288 } while (!atomic_read(&vha->loop_down_timer) &&
7289 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
7290 }
7291}
7292
7293static bool qla_do_heartbeat(struct scsi_qla_host *vha)
7294{
7295 struct qla_hw_data *ha = vha->hw;
7296 u32 cmpl_cnt;
7297 u16 i;
7298 bool do_heartbeat = false;
7299
7300 /*
7301 * Allow do_heartbeat only if we don’t have any active interrupts,
7302 * but there are still IOs outstanding with firmware.
7303 */
7304 cmpl_cnt = ha->base_qpair->cmd_completion_cnt;
7305 if (cmpl_cnt == ha->base_qpair->prev_completion_cnt &&
7306 cmpl_cnt != ha->base_qpair->cmd_cnt) {
7307 do_heartbeat = true;
7308 goto skip;
7309 }
7310 ha->base_qpair->prev_completion_cnt = cmpl_cnt;
7311
7312 for (i = 0; i < ha->max_qpairs; i++) {
7313 if (ha->queue_pair_map[i]) {
7314 cmpl_cnt = ha->queue_pair_map[i]->cmd_completion_cnt;
7315 if (cmpl_cnt == ha->queue_pair_map[i]->prev_completion_cnt &&
7316 cmpl_cnt != ha->queue_pair_map[i]->cmd_cnt) {
7317 do_heartbeat = true;
7318 break;
7319 }
7320 ha->queue_pair_map[i]->prev_completion_cnt = cmpl_cnt;
7321 }
7322 }
7323
7324skip:
7325 return do_heartbeat;
7326}
7327
7328static void qla_heart_beat(struct scsi_qla_host *vha, u16 dpc_started)
7329{
7330 struct qla_hw_data *ha = vha->hw;
7331
7332 if (vha->vp_idx)
7333 return;
7334
7335 if (vha->hw->flags.eeh_busy || qla2x00_chip_is_down(vha))
7336 return;
7337
7338 /*
7339 * dpc thread cannot run if heartbeat is running at the same time.
7340 * We also do not want to starve heartbeat task. Therefore, do
7341 * heartbeat task at least once every 5 seconds.
7342 */
7343 if (dpc_started &&
7344 time_before(jiffies, ha->last_heartbeat_run_jiffies + 5 * HZ))
7345 return;
7346
7347 if (qla_do_heartbeat(vha)) {
7348 ha->last_heartbeat_run_jiffies = jiffies;
7349 queue_work(ha->wq, &ha->heartbeat_work);
7350 }
7351}
7352
7353static void qla_wind_down_chip(scsi_qla_host_t *vha)
7354{
7355 struct qla_hw_data *ha = vha->hw;
7356
7357 if (!ha->flags.eeh_busy)
7358 return;
7359 if (ha->pci_error_state)
7360 /* system is trying to recover */
7361 return;
7362
7363 /*
7364 * Current system is not handling PCIE error. At this point, this is
7365 * best effort to wind down the adapter.
7366 */
7367 if (time_after_eq(jiffies, ha->eeh_jif + ql2xdelay_before_pci_error_handling * HZ) &&
7368 !ha->flags.eeh_flush) {
7369 ql_log(ql_log_info, vha, 0x9009,
7370 "PCI Error detected, attempting to reset hardware.\n");
7371
7372 ha->isp_ops->reset_chip(vha);
7373 ha->isp_ops->disable_intrs(ha);
7374
7375 ha->flags.eeh_flush = EEH_FLUSH_RDY;
7376 ha->eeh_jif = jiffies;
7377
7378 } else if (ha->flags.eeh_flush == EEH_FLUSH_RDY &&
7379 time_after_eq(jiffies, ha->eeh_jif + 5 * HZ)) {
7380 pci_clear_master(ha->pdev);
7381
7382 /* flush all command */
7383 qla2x00_abort_isp_cleanup(vha);
7384 ha->flags.eeh_flush = EEH_FLUSH_DONE;
7385
7386 ql_log(ql_log_info, vha, 0x900a,
7387 "PCI Error handling complete, all IOs aborted.\n");
7388 }
7389}
7390
7391/**************************************************************************
7392* qla2x00_timer
7393*
7394* Description:
7395* One second timer
7396*
7397* Context: Interrupt
7398***************************************************************************/
7399void
7400qla2x00_timer(struct timer_list *t)
7401{
7402 scsi_qla_host_t *vha = from_timer(vha, t, timer);
7403 unsigned long cpu_flags = 0;
7404 int start_dpc = 0;
7405 int index;
7406 srb_t *sp;
7407 uint16_t w;
7408 struct qla_hw_data *ha = vha->hw;
7409 struct req_que *req;
7410 unsigned long flags;
7411 fc_port_t *fcport = NULL;
7412
7413 if (ha->flags.eeh_busy) {
7414 qla_wind_down_chip(vha);
7415
7416 ql_dbg(ql_dbg_timer, vha, 0x6000,
7417 "EEH = %d, restarting timer.\n",
7418 ha->flags.eeh_busy);
7419 qla2x00_restart_timer(vha, WATCH_INTERVAL);
7420 return;
7421 }
7422
7423 /*
7424 * Hardware read to raise pending EEH errors during mailbox waits. If
7425 * the read returns -1 then disable the board.
7426 */
7427 if (!pci_channel_offline(ha->pdev)) {
7428 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
7429 qla2x00_check_reg16_for_disconnect(vha, w);
7430 }
7431
7432 /* Make sure qla82xx_watchdog is run only for physical port */
7433 if (!vha->vp_idx && IS_P3P_TYPE(ha)) {
7434 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags))
7435 start_dpc++;
7436 if (IS_QLA82XX(ha))
7437 qla82xx_watchdog(vha);
7438 else if (IS_QLA8044(ha))
7439 qla8044_watchdog(vha);
7440 }
7441
7442 if (!vha->vp_idx && IS_QLAFX00(ha))
7443 qlafx00_timer_routine(vha);
7444
7445 if (vha->link_down_time < QLA2XX_MAX_LINK_DOWN_TIME)
7446 vha->link_down_time++;
7447
7448 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
7449 list_for_each_entry(fcport, &vha->vp_fcports, list) {
7450 if (fcport->tgt_link_down_time < QLA2XX_MAX_LINK_DOWN_TIME)
7451 fcport->tgt_link_down_time++;
7452 }
7453 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
7454
7455 /* Loop down handler. */
7456 if (atomic_read(&vha->loop_down_timer) > 0 &&
7457 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) &&
7458 !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags))
7459 && vha->flags.online) {
7460
7461 if (atomic_read(&vha->loop_down_timer) ==
7462 vha->loop_down_abort_time) {
7463
7464 ql_log(ql_log_info, vha, 0x6008,
7465 "Loop down - aborting the queues before time expires.\n");
7466
7467 if (!IS_QLA2100(ha) && vha->link_down_timeout)
7468 atomic_set(&vha->loop_state, LOOP_DEAD);
7469
7470 /*
7471 * Schedule an ISP abort to return any FCP2-device
7472 * commands.
7473 */
7474 /* NPIV - scan physical port only */
7475 if (!vha->vp_idx) {
7476 spin_lock_irqsave(&ha->hardware_lock,
7477 cpu_flags);
7478 req = ha->req_q_map[0];
7479 for (index = 1;
7480 index < req->num_outstanding_cmds;
7481 index++) {
7482 fc_port_t *sfcp;
7483
7484 sp = req->outstanding_cmds[index];
7485 if (!sp)
7486 continue;
7487 if (sp->cmd_type != TYPE_SRB)
7488 continue;
7489 if (sp->type != SRB_SCSI_CMD)
7490 continue;
7491 sfcp = sp->fcport;
7492 if (!(sfcp->flags & FCF_FCP2_DEVICE))
7493 continue;
7494
7495 if (IS_QLA82XX(ha))
7496 set_bit(FCOE_CTX_RESET_NEEDED,
7497 &vha->dpc_flags);
7498 else
7499 set_bit(ISP_ABORT_NEEDED,
7500 &vha->dpc_flags);
7501 break;
7502 }
7503 spin_unlock_irqrestore(&ha->hardware_lock,
7504 cpu_flags);
7505 }
7506 start_dpc++;
7507 }
7508
7509 /* if the loop has been down for 4 minutes, reinit adapter */
7510 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
7511 if (!(vha->device_flags & DFLG_NO_CABLE) && !vha->vp_idx) {
7512 ql_log(ql_log_warn, vha, 0x6009,
7513 "Loop down - aborting ISP.\n");
7514
7515 if (IS_QLA82XX(ha))
7516 set_bit(FCOE_CTX_RESET_NEEDED,
7517 &vha->dpc_flags);
7518 else
7519 set_bit(ISP_ABORT_NEEDED,
7520 &vha->dpc_flags);
7521 }
7522 }
7523 ql_dbg(ql_dbg_timer, vha, 0x600a,
7524 "Loop down - seconds remaining %d.\n",
7525 atomic_read(&vha->loop_down_timer));
7526 }
7527 /* Check if beacon LED needs to be blinked for physical host only */
7528 if (!vha->vp_idx && (ha->beacon_blink_led == 1)) {
7529 /* There is no beacon_blink function for ISP82xx */
7530 if (!IS_P3P_TYPE(ha)) {
7531 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
7532 start_dpc++;
7533 }
7534 }
7535
7536 /* check if edif running */
7537 if (vha->hw->flags.edif_enabled)
7538 qla_edif_timer(vha);
7539
7540 /* Process any deferred work. */
7541 if (!list_empty(&vha->work_list)) {
7542 unsigned long flags;
7543 bool q = false;
7544
7545 spin_lock_irqsave(&vha->work_lock, flags);
7546 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
7547 q = true;
7548 spin_unlock_irqrestore(&vha->work_lock, flags);
7549 if (q)
7550 queue_work(vha->hw->wq, &vha->iocb_work);
7551 }
7552
7553 /*
7554 * FC-NVME
7555 * see if the active AEN count has changed from what was last reported.
7556 */
7557 index = atomic_read(&ha->nvme_active_aen_cnt);
7558 if (!vha->vp_idx &&
7559 (index != ha->nvme_last_rptd_aen) &&
7560 ha->zio_mode == QLA_ZIO_MODE_6 &&
7561 !ha->flags.host_shutting_down) {
7562 ha->nvme_last_rptd_aen = atomic_read(&ha->nvme_active_aen_cnt);
7563 ql_log(ql_log_info, vha, 0x3002,
7564 "nvme: Sched: Set ZIO exchange threshold to %d.\n",
7565 ha->nvme_last_rptd_aen);
7566 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags);
7567 start_dpc++;
7568 }
7569
7570 if (!vha->vp_idx &&
7571 atomic_read(&ha->zio_threshold) != ha->last_zio_threshold &&
7572 IS_ZIO_THRESHOLD_CAPABLE(ha)) {
7573 ql_log(ql_log_info, vha, 0x3002,
7574 "Sched: Set ZIO exchange threshold to %d.\n",
7575 ha->last_zio_threshold);
7576 ha->last_zio_threshold = atomic_read(&ha->zio_threshold);
7577 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags);
7578 start_dpc++;
7579 }
7580 qla_adjust_buf(vha);
7581
7582 /* borrowing w to signify dpc will run */
7583 w = 0;
7584 /* Schedule the DPC routine if needed */
7585 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
7586 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
7587 start_dpc ||
7588 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
7589 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
7590 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
7591 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
7592 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
7593 test_bit(RELOGIN_NEEDED, &vha->dpc_flags) ||
7594 test_bit(PROCESS_PUREX_IOCB, &vha->dpc_flags))) {
7595 ql_dbg(ql_dbg_timer, vha, 0x600b,
7596 "isp_abort_needed=%d loop_resync_needed=%d "
7597 "start_dpc=%d reset_marker_needed=%d",
7598 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags),
7599 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags),
7600 start_dpc, test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags));
7601 ql_dbg(ql_dbg_timer, vha, 0x600c,
7602 "beacon_blink_needed=%d isp_unrecoverable=%d "
7603 "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d "
7604 "relogin_needed=%d, Process_purex_iocb=%d.\n",
7605 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags),
7606 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags),
7607 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags),
7608 test_bit(VP_DPC_NEEDED, &vha->dpc_flags),
7609 test_bit(RELOGIN_NEEDED, &vha->dpc_flags),
7610 test_bit(PROCESS_PUREX_IOCB, &vha->dpc_flags));
7611 qla2xxx_wake_dpc(vha);
7612 w = 1;
7613 }
7614
7615 qla_heart_beat(vha, w);
7616
7617 qla2x00_restart_timer(vha, WATCH_INTERVAL);
7618}
7619
7620/* Firmware interface routines. */
7621
7622#define FW_ISP21XX 0
7623#define FW_ISP22XX 1
7624#define FW_ISP2300 2
7625#define FW_ISP2322 3
7626#define FW_ISP24XX 4
7627#define FW_ISP25XX 5
7628#define FW_ISP81XX 6
7629#define FW_ISP82XX 7
7630#define FW_ISP2031 8
7631#define FW_ISP8031 9
7632#define FW_ISP27XX 10
7633#define FW_ISP28XX 11
7634
7635#define FW_FILE_ISP21XX "ql2100_fw.bin"
7636#define FW_FILE_ISP22XX "ql2200_fw.bin"
7637#define FW_FILE_ISP2300 "ql2300_fw.bin"
7638#define FW_FILE_ISP2322 "ql2322_fw.bin"
7639#define FW_FILE_ISP24XX "ql2400_fw.bin"
7640#define FW_FILE_ISP25XX "ql2500_fw.bin"
7641#define FW_FILE_ISP81XX "ql8100_fw.bin"
7642#define FW_FILE_ISP82XX "ql8200_fw.bin"
7643#define FW_FILE_ISP2031 "ql2600_fw.bin"
7644#define FW_FILE_ISP8031 "ql8300_fw.bin"
7645#define FW_FILE_ISP27XX "ql2700_fw.bin"
7646#define FW_FILE_ISP28XX "ql2800_fw.bin"
7647
7648
7649static DEFINE_MUTEX(qla_fw_lock);
7650
7651static struct fw_blob qla_fw_blobs[] = {
7652 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
7653 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
7654 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
7655 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
7656 { .name = FW_FILE_ISP24XX, },
7657 { .name = FW_FILE_ISP25XX, },
7658 { .name = FW_FILE_ISP81XX, },
7659 { .name = FW_FILE_ISP82XX, },
7660 { .name = FW_FILE_ISP2031, },
7661 { .name = FW_FILE_ISP8031, },
7662 { .name = FW_FILE_ISP27XX, },
7663 { .name = FW_FILE_ISP28XX, },
7664 { .name = NULL, },
7665};
7666
7667struct fw_blob *
7668qla2x00_request_firmware(scsi_qla_host_t *vha)
7669{
7670 struct qla_hw_data *ha = vha->hw;
7671 struct fw_blob *blob;
7672
7673 if (IS_QLA2100(ha)) {
7674 blob = &qla_fw_blobs[FW_ISP21XX];
7675 } else if (IS_QLA2200(ha)) {
7676 blob = &qla_fw_blobs[FW_ISP22XX];
7677 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
7678 blob = &qla_fw_blobs[FW_ISP2300];
7679 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
7680 blob = &qla_fw_blobs[FW_ISP2322];
7681 } else if (IS_QLA24XX_TYPE(ha)) {
7682 blob = &qla_fw_blobs[FW_ISP24XX];
7683 } else if (IS_QLA25XX(ha)) {
7684 blob = &qla_fw_blobs[FW_ISP25XX];
7685 } else if (IS_QLA81XX(ha)) {
7686 blob = &qla_fw_blobs[FW_ISP81XX];
7687 } else if (IS_QLA82XX(ha)) {
7688 blob = &qla_fw_blobs[FW_ISP82XX];
7689 } else if (IS_QLA2031(ha)) {
7690 blob = &qla_fw_blobs[FW_ISP2031];
7691 } else if (IS_QLA8031(ha)) {
7692 blob = &qla_fw_blobs[FW_ISP8031];
7693 } else if (IS_QLA27XX(ha)) {
7694 blob = &qla_fw_blobs[FW_ISP27XX];
7695 } else if (IS_QLA28XX(ha)) {
7696 blob = &qla_fw_blobs[FW_ISP28XX];
7697 } else {
7698 return NULL;
7699 }
7700
7701 if (!blob->name)
7702 return NULL;
7703
7704 mutex_lock(&qla_fw_lock);
7705 if (blob->fw)
7706 goto out;
7707
7708 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
7709 ql_log(ql_log_warn, vha, 0x0063,
7710 "Failed to load firmware image (%s).\n", blob->name);
7711 blob->fw = NULL;
7712 blob = NULL;
7713 }
7714
7715out:
7716 mutex_unlock(&qla_fw_lock);
7717 return blob;
7718}
7719
7720static void
7721qla2x00_release_firmware(void)
7722{
7723 struct fw_blob *blob;
7724
7725 mutex_lock(&qla_fw_lock);
7726 for (blob = qla_fw_blobs; blob->name; blob++)
7727 release_firmware(blob->fw);
7728 mutex_unlock(&qla_fw_lock);
7729}
7730
7731static void qla_pci_error_cleanup(scsi_qla_host_t *vha)
7732{
7733 struct qla_hw_data *ha = vha->hw;
7734 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
7735 struct qla_qpair *qpair = NULL;
7736 struct scsi_qla_host *vp, *tvp;
7737 fc_port_t *fcport;
7738 int i;
7739 unsigned long flags;
7740
7741 ql_dbg(ql_dbg_aer, vha, 0x9000,
7742 "%s\n", __func__);
7743 ha->chip_reset++;
7744
7745 ha->base_qpair->chip_reset = ha->chip_reset;
7746 for (i = 0; i < ha->max_qpairs; i++) {
7747 if (ha->queue_pair_map[i])
7748 ha->queue_pair_map[i]->chip_reset =
7749 ha->base_qpair->chip_reset;
7750 }
7751
7752 /*
7753 * purge mailbox might take a while. Slot Reset/chip reset
7754 * will take care of the purge
7755 */
7756
7757 mutex_lock(&ha->mq_lock);
7758 ha->base_qpair->online = 0;
7759 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7760 qpair->online = 0;
7761 wmb();
7762 mutex_unlock(&ha->mq_lock);
7763
7764 qla2x00_mark_all_devices_lost(vha);
7765
7766 spin_lock_irqsave(&ha->vport_slock, flags);
7767 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
7768 atomic_inc(&vp->vref_count);
7769 spin_unlock_irqrestore(&ha->vport_slock, flags);
7770 qla2x00_mark_all_devices_lost(vp);
7771 spin_lock_irqsave(&ha->vport_slock, flags);
7772 atomic_dec(&vp->vref_count);
7773 }
7774 spin_unlock_irqrestore(&ha->vport_slock, flags);
7775
7776 /* Clear all async request states across all VPs. */
7777 list_for_each_entry(fcport, &vha->vp_fcports, list)
7778 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
7779
7780 spin_lock_irqsave(&ha->vport_slock, flags);
7781 list_for_each_entry_safe(vp, tvp, &ha->vp_list, list) {
7782 atomic_inc(&vp->vref_count);
7783 spin_unlock_irqrestore(&ha->vport_slock, flags);
7784 list_for_each_entry(fcport, &vp->vp_fcports, list)
7785 fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT);
7786 spin_lock_irqsave(&ha->vport_slock, flags);
7787 atomic_dec(&vp->vref_count);
7788 }
7789 spin_unlock_irqrestore(&ha->vport_slock, flags);
7790}
7791
7792
7793static pci_ers_result_t
7794qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
7795{
7796 scsi_qla_host_t *vha = pci_get_drvdata(pdev);
7797 struct qla_hw_data *ha = vha->hw;
7798 pci_ers_result_t ret = PCI_ERS_RESULT_NEED_RESET;
7799
7800 ql_log(ql_log_warn, vha, 0x9000,
7801 "PCI error detected, state %x.\n", state);
7802 ha->pci_error_state = QLA_PCI_ERR_DETECTED;
7803
7804 if (!atomic_read(&pdev->enable_cnt)) {
7805 ql_log(ql_log_info, vha, 0xffff,
7806 "PCI device is disabled,state %x\n", state);
7807 ret = PCI_ERS_RESULT_NEED_RESET;
7808 goto out;
7809 }
7810
7811 switch (state) {
7812 case pci_channel_io_normal:
7813 qla_pci_set_eeh_busy(vha);
7814 if (ql2xmqsupport || ql2xnvmeenable) {
7815 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
7816 qla2xxx_wake_dpc(vha);
7817 }
7818 ret = PCI_ERS_RESULT_CAN_RECOVER;
7819 break;
7820 case pci_channel_io_frozen:
7821 qla_pci_set_eeh_busy(vha);
7822 ret = PCI_ERS_RESULT_NEED_RESET;
7823 break;
7824 case pci_channel_io_perm_failure:
7825 ha->flags.pci_channel_io_perm_failure = 1;
7826 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
7827 if (ql2xmqsupport || ql2xnvmeenable) {
7828 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
7829 qla2xxx_wake_dpc(vha);
7830 }
7831 ret = PCI_ERS_RESULT_DISCONNECT;
7832 }
7833out:
7834 ql_dbg(ql_dbg_aer, vha, 0x600d,
7835 "PCI error detected returning [%x].\n", ret);
7836 return ret;
7837}
7838
7839static pci_ers_result_t
7840qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
7841{
7842 int risc_paused = 0;
7843 uint32_t stat;
7844 unsigned long flags;
7845 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7846 struct qla_hw_data *ha = base_vha->hw;
7847 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
7848 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
7849
7850 ql_log(ql_log_warn, base_vha, 0x9000,
7851 "mmio enabled\n");
7852
7853 ha->pci_error_state = QLA_PCI_MMIO_ENABLED;
7854
7855 if (IS_QLA82XX(ha))
7856 return PCI_ERS_RESULT_RECOVERED;
7857
7858 if (qla2x00_isp_reg_stat(ha)) {
7859 ql_log(ql_log_info, base_vha, 0x803f,
7860 "During mmio enabled, PCI/Register disconnect still detected.\n");
7861 goto out;
7862 }
7863
7864 spin_lock_irqsave(&ha->hardware_lock, flags);
7865 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
7866 stat = rd_reg_word(®->hccr);
7867 if (stat & HCCR_RISC_PAUSE)
7868 risc_paused = 1;
7869 } else if (IS_QLA23XX(ha)) {
7870 stat = rd_reg_dword(®->u.isp2300.host_status);
7871 if (stat & HSR_RISC_PAUSED)
7872 risc_paused = 1;
7873 } else if (IS_FWI2_CAPABLE(ha)) {
7874 stat = rd_reg_dword(®24->host_status);
7875 if (stat & HSRX_RISC_PAUSED)
7876 risc_paused = 1;
7877 }
7878 spin_unlock_irqrestore(&ha->hardware_lock, flags);
7879
7880 if (risc_paused) {
7881 ql_log(ql_log_info, base_vha, 0x9003,
7882 "RISC paused -- mmio_enabled, Dumping firmware.\n");
7883 qla2xxx_dump_fw(base_vha);
7884 }
7885out:
7886 /* set PCI_ERS_RESULT_NEED_RESET to trigger call to qla2xxx_pci_slot_reset */
7887 ql_dbg(ql_dbg_aer, base_vha, 0x600d,
7888 "mmio enabled returning.\n");
7889 return PCI_ERS_RESULT_NEED_RESET;
7890}
7891
7892static pci_ers_result_t
7893qla2xxx_pci_slot_reset(struct pci_dev *pdev)
7894{
7895 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
7896 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7897 struct qla_hw_data *ha = base_vha->hw;
7898 int rc;
7899 struct qla_qpair *qpair = NULL;
7900
7901 ql_log(ql_log_warn, base_vha, 0x9004,
7902 "Slot Reset.\n");
7903
7904 ha->pci_error_state = QLA_PCI_SLOT_RESET;
7905 /* Workaround: qla2xxx driver which access hardware earlier
7906 * needs error state to be pci_channel_io_online.
7907 * Otherwise mailbox command timesout.
7908 */
7909 pdev->error_state = pci_channel_io_normal;
7910
7911 pci_restore_state(pdev);
7912
7913 /* pci_restore_state() clears the saved_state flag of the device
7914 * save restored state which resets saved_state flag
7915 */
7916 pci_save_state(pdev);
7917
7918 if (ha->mem_only)
7919 rc = pci_enable_device_mem(pdev);
7920 else
7921 rc = pci_enable_device(pdev);
7922
7923 if (rc) {
7924 ql_log(ql_log_warn, base_vha, 0x9005,
7925 "Can't re-enable PCI device after reset.\n");
7926 goto exit_slot_reset;
7927 }
7928
7929
7930 if (ha->isp_ops->pci_config(base_vha))
7931 goto exit_slot_reset;
7932
7933 mutex_lock(&ha->mq_lock);
7934 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
7935 qpair->online = 1;
7936 mutex_unlock(&ha->mq_lock);
7937
7938 ha->flags.eeh_busy = 0;
7939 base_vha->flags.online = 1;
7940 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7941 ha->isp_ops->abort_isp(base_vha);
7942 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
7943
7944 if (qla2x00_isp_reg_stat(ha)) {
7945 ha->flags.eeh_busy = 1;
7946 qla_pci_error_cleanup(base_vha);
7947 ql_log(ql_log_warn, base_vha, 0x9005,
7948 "Device unable to recover from PCI error.\n");
7949 } else {
7950 ret = PCI_ERS_RESULT_RECOVERED;
7951 }
7952
7953exit_slot_reset:
7954 ql_dbg(ql_dbg_aer, base_vha, 0x900e,
7955 "Slot Reset returning %x.\n", ret);
7956
7957 return ret;
7958}
7959
7960static void
7961qla2xxx_pci_resume(struct pci_dev *pdev)
7962{
7963 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
7964 struct qla_hw_data *ha = base_vha->hw;
7965 int ret;
7966
7967 ql_log(ql_log_warn, base_vha, 0x900f,
7968 "Pci Resume.\n");
7969
7970
7971 ret = qla2x00_wait_for_hba_online(base_vha);
7972 if (ret != QLA_SUCCESS) {
7973 ql_log(ql_log_fatal, base_vha, 0x9002,
7974 "The device failed to resume I/O from slot/link_reset.\n");
7975 }
7976 ha->pci_error_state = QLA_PCI_RESUME;
7977 ql_dbg(ql_dbg_aer, base_vha, 0x600d,
7978 "Pci Resume returning.\n");
7979}
7980
7981void qla_pci_set_eeh_busy(struct scsi_qla_host *vha)
7982{
7983 struct qla_hw_data *ha = vha->hw;
7984 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
7985 bool do_cleanup = false;
7986 unsigned long flags;
7987
7988 if (ha->flags.eeh_busy)
7989 return;
7990
7991 spin_lock_irqsave(&base_vha->work_lock, flags);
7992 if (!ha->flags.eeh_busy) {
7993 ha->eeh_jif = jiffies;
7994 ha->flags.eeh_flush = 0;
7995
7996 ha->flags.eeh_busy = 1;
7997 do_cleanup = true;
7998 }
7999 spin_unlock_irqrestore(&base_vha->work_lock, flags);
8000
8001 if (do_cleanup)
8002 qla_pci_error_cleanup(base_vha);
8003}
8004
8005/*
8006 * this routine will schedule a task to pause IO from interrupt context
8007 * if caller sees a PCIE error event (register read = 0xf's)
8008 */
8009void qla_schedule_eeh_work(struct scsi_qla_host *vha)
8010{
8011 struct qla_hw_data *ha = vha->hw;
8012 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
8013
8014 if (ha->flags.eeh_busy)
8015 return;
8016
8017 set_bit(DO_EEH_RECOVERY, &base_vha->dpc_flags);
8018 qla2xxx_wake_dpc(base_vha);
8019}
8020
8021static void
8022qla_pci_reset_prepare(struct pci_dev *pdev)
8023{
8024 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
8025 struct qla_hw_data *ha = base_vha->hw;
8026 struct qla_qpair *qpair;
8027
8028 ql_log(ql_log_warn, base_vha, 0xffff,
8029 "%s.\n", __func__);
8030
8031 /*
8032 * PCI FLR/function reset is about to reset the
8033 * slot. Stop the chip to stop all DMA access.
8034 * It is assumed that pci_reset_done will be called
8035 * after FLR to resume Chip operation.
8036 */
8037 ha->flags.eeh_busy = 1;
8038 mutex_lock(&ha->mq_lock);
8039 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
8040 qpair->online = 0;
8041 mutex_unlock(&ha->mq_lock);
8042
8043 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
8044 qla2x00_abort_isp_cleanup(base_vha);
8045 qla2x00_abort_all_cmds(base_vha, DID_RESET << 16);
8046}
8047
8048static void
8049qla_pci_reset_done(struct pci_dev *pdev)
8050{
8051 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
8052 struct qla_hw_data *ha = base_vha->hw;
8053 struct qla_qpair *qpair;
8054
8055 ql_log(ql_log_warn, base_vha, 0xffff,
8056 "%s.\n", __func__);
8057
8058 /*
8059 * FLR just completed by PCI layer. Resume adapter
8060 */
8061 ha->flags.eeh_busy = 0;
8062 mutex_lock(&ha->mq_lock);
8063 list_for_each_entry(qpair, &base_vha->qp_list, qp_list_elem)
8064 qpair->online = 1;
8065 mutex_unlock(&ha->mq_lock);
8066
8067 base_vha->flags.online = 1;
8068 ha->isp_ops->abort_isp(base_vha);
8069 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
8070}
8071
8072static void qla2xxx_map_queues(struct Scsi_Host *shost)
8073{
8074 scsi_qla_host_t *vha = (scsi_qla_host_t *)shost->hostdata;
8075 struct blk_mq_queue_map *qmap = &shost->tag_set.map[HCTX_TYPE_DEFAULT];
8076
8077 if (USER_CTRL_IRQ(vha->hw) || !vha->hw->mqiobase)
8078 blk_mq_map_queues(qmap);
8079 else
8080 blk_mq_pci_map_queues(qmap, vha->hw->pdev, vha->irq_offset);
8081}
8082
8083struct scsi_host_template qla2xxx_driver_template = {
8084 .module = THIS_MODULE,
8085 .name = QLA2XXX_DRIVER_NAME,
8086 .queuecommand = qla2xxx_queuecommand,
8087
8088 .eh_timed_out = fc_eh_timed_out,
8089 .eh_abort_handler = qla2xxx_eh_abort,
8090 .eh_should_retry_cmd = fc_eh_should_retry_cmd,
8091 .eh_device_reset_handler = qla2xxx_eh_device_reset,
8092 .eh_target_reset_handler = qla2xxx_eh_target_reset,
8093 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
8094 .eh_host_reset_handler = qla2xxx_eh_host_reset,
8095
8096 .slave_configure = qla2xxx_slave_configure,
8097
8098 .slave_alloc = qla2xxx_slave_alloc,
8099 .slave_destroy = qla2xxx_slave_destroy,
8100 .scan_finished = qla2xxx_scan_finished,
8101 .scan_start = qla2xxx_scan_start,
8102 .change_queue_depth = scsi_change_queue_depth,
8103 .map_queues = qla2xxx_map_queues,
8104 .this_id = -1,
8105 .cmd_per_lun = 3,
8106 .sg_tablesize = SG_ALL,
8107
8108 .max_sectors = 0xFFFF,
8109 .shost_groups = qla2x00_host_groups,
8110
8111 .supported_mode = MODE_INITIATOR,
8112 .track_queue_depth = 1,
8113 .cmd_size = sizeof(srb_t),
8114};
8115
8116static const struct pci_error_handlers qla2xxx_err_handler = {
8117 .error_detected = qla2xxx_pci_error_detected,
8118 .mmio_enabled = qla2xxx_pci_mmio_enabled,
8119 .slot_reset = qla2xxx_pci_slot_reset,
8120 .resume = qla2xxx_pci_resume,
8121 .reset_prepare = qla_pci_reset_prepare,
8122 .reset_done = qla_pci_reset_done,
8123};
8124
8125static struct pci_device_id qla2xxx_pci_tbl[] = {
8126 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
8127 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
8128 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
8129 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
8130 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
8131 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
8132 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
8133 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
8134 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
8135 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
8136 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
8137 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
8138 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
8139 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) },
8140 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
8141 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
8142 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) },
8143 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) },
8144 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) },
8145 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) },
8146 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) },
8147 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2261) },
8148 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2061) },
8149 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2081) },
8150 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2281) },
8151 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2089) },
8152 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2289) },
8153 { 0 },
8154};
8155MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
8156
8157static struct pci_driver qla2xxx_pci_driver = {
8158 .name = QLA2XXX_DRIVER_NAME,
8159 .driver = {
8160 .owner = THIS_MODULE,
8161 },
8162 .id_table = qla2xxx_pci_tbl,
8163 .probe = qla2x00_probe_one,
8164 .remove = qla2x00_remove_one,
8165 .shutdown = qla2x00_shutdown,
8166 .err_handler = &qla2xxx_err_handler,
8167};
8168
8169static const struct file_operations apidev_fops = {
8170 .owner = THIS_MODULE,
8171 .llseek = noop_llseek,
8172};
8173
8174/**
8175 * qla2x00_module_init - Module initialization.
8176 **/
8177static int __init
8178qla2x00_module_init(void)
8179{
8180 int ret = 0;
8181
8182 BUILD_BUG_ON(sizeof(cmd_a64_entry_t) != 64);
8183 BUILD_BUG_ON(sizeof(cmd_entry_t) != 64);
8184 BUILD_BUG_ON(sizeof(cont_a64_entry_t) != 64);
8185 BUILD_BUG_ON(sizeof(cont_entry_t) != 64);
8186 BUILD_BUG_ON(sizeof(init_cb_t) != 96);
8187 BUILD_BUG_ON(sizeof(mrk_entry_t) != 64);
8188 BUILD_BUG_ON(sizeof(ms_iocb_entry_t) != 64);
8189 BUILD_BUG_ON(sizeof(request_t) != 64);
8190 BUILD_BUG_ON(sizeof(struct abort_entry_24xx) != 64);
8191 BUILD_BUG_ON(sizeof(struct abort_iocb_entry_fx00) != 64);
8192 BUILD_BUG_ON(sizeof(struct abts_entry_24xx) != 64);
8193 BUILD_BUG_ON(sizeof(struct access_chip_84xx) != 64);
8194 BUILD_BUG_ON(sizeof(struct access_chip_rsp_84xx) != 64);
8195 BUILD_BUG_ON(sizeof(struct cmd_bidir) != 64);
8196 BUILD_BUG_ON(sizeof(struct cmd_nvme) != 64);
8197 BUILD_BUG_ON(sizeof(struct cmd_type_6) != 64);
8198 BUILD_BUG_ON(sizeof(struct cmd_type_7) != 64);
8199 BUILD_BUG_ON(sizeof(struct cmd_type_7_fx00) != 64);
8200 BUILD_BUG_ON(sizeof(struct cmd_type_crc_2) != 64);
8201 BUILD_BUG_ON(sizeof(struct ct_entry_24xx) != 64);
8202 BUILD_BUG_ON(sizeof(struct ct_fdmi1_hba_attributes) != 2604);
8203 BUILD_BUG_ON(sizeof(struct ct_fdmi2_hba_attributes) != 4424);
8204 BUILD_BUG_ON(sizeof(struct ct_fdmi2_port_attributes) != 4164);
8205 BUILD_BUG_ON(sizeof(struct ct_fdmi_hba_attr) != 260);
8206 BUILD_BUG_ON(sizeof(struct ct_fdmi_port_attr) != 260);
8207 BUILD_BUG_ON(sizeof(struct ct_rsp_hdr) != 16);
8208 BUILD_BUG_ON(sizeof(struct ctio_crc2_to_fw) != 64);
8209 BUILD_BUG_ON(sizeof(struct device_reg_24xx) != 256);
8210 BUILD_BUG_ON(sizeof(struct device_reg_25xxmq) != 24);
8211 BUILD_BUG_ON(sizeof(struct device_reg_2xxx) != 256);
8212 BUILD_BUG_ON(sizeof(struct device_reg_82xx) != 1288);
8213 BUILD_BUG_ON(sizeof(struct device_reg_fx00) != 216);
8214 BUILD_BUG_ON(sizeof(struct els_entry_24xx) != 64);
8215 BUILD_BUG_ON(sizeof(struct els_sts_entry_24xx) != 64);
8216 BUILD_BUG_ON(sizeof(struct fxdisc_entry_fx00) != 64);
8217 BUILD_BUG_ON(sizeof(struct imm_ntfy_from_isp) != 64);
8218 BUILD_BUG_ON(sizeof(struct init_cb_24xx) != 128);
8219 BUILD_BUG_ON(sizeof(struct init_cb_81xx) != 128);
8220 BUILD_BUG_ON(sizeof(struct logio_entry_24xx) != 64);
8221 BUILD_BUG_ON(sizeof(struct mbx_entry) != 64);
8222 BUILD_BUG_ON(sizeof(struct mid_init_cb_24xx) != 5252);
8223 BUILD_BUG_ON(sizeof(struct mrk_entry_24xx) != 64);
8224 BUILD_BUG_ON(sizeof(struct nvram_24xx) != 512);
8225 BUILD_BUG_ON(sizeof(struct nvram_81xx) != 512);
8226 BUILD_BUG_ON(sizeof(struct pt_ls4_request) != 64);
8227 BUILD_BUG_ON(sizeof(struct pt_ls4_rx_unsol) != 64);
8228 BUILD_BUG_ON(sizeof(struct purex_entry_24xx) != 64);
8229 BUILD_BUG_ON(sizeof(struct qla2100_fw_dump) != 123634);
8230 BUILD_BUG_ON(sizeof(struct qla2300_fw_dump) != 136100);
8231 BUILD_BUG_ON(sizeof(struct qla24xx_fw_dump) != 37976);
8232 BUILD_BUG_ON(sizeof(struct qla25xx_fw_dump) != 39228);
8233 BUILD_BUG_ON(sizeof(struct qla2xxx_fce_chain) != 52);
8234 BUILD_BUG_ON(sizeof(struct qla2xxx_fw_dump) != 136172);
8235 BUILD_BUG_ON(sizeof(struct qla2xxx_mq_chain) != 524);
8236 BUILD_BUG_ON(sizeof(struct qla2xxx_mqueue_chain) != 8);
8237 BUILD_BUG_ON(sizeof(struct qla2xxx_mqueue_header) != 12);
8238 BUILD_BUG_ON(sizeof(struct qla2xxx_offld_chain) != 24);
8239 BUILD_BUG_ON(sizeof(struct qla81xx_fw_dump) != 39420);
8240 BUILD_BUG_ON(sizeof(struct qla82xx_uri_data_desc) != 28);
8241 BUILD_BUG_ON(sizeof(struct qla82xx_uri_table_desc) != 32);
8242 BUILD_BUG_ON(sizeof(struct qla83xx_fw_dump) != 51196);
8243 BUILD_BUG_ON(sizeof(struct qla_fcp_prio_cfg) != FCP_PRIO_CFG_SIZE);
8244 BUILD_BUG_ON(sizeof(struct qla_fdt_layout) != 128);
8245 BUILD_BUG_ON(sizeof(struct qla_flt_header) != 8);
8246 BUILD_BUG_ON(sizeof(struct qla_flt_region) != 16);
8247 BUILD_BUG_ON(sizeof(struct qla_npiv_entry) != 24);
8248 BUILD_BUG_ON(sizeof(struct qla_npiv_header) != 16);
8249 BUILD_BUG_ON(sizeof(struct rdp_rsp_payload) != 336);
8250 BUILD_BUG_ON(sizeof(struct sns_cmd_pkt) != 2064);
8251 BUILD_BUG_ON(sizeof(struct sts_entry_24xx) != 64);
8252 BUILD_BUG_ON(sizeof(struct tsk_mgmt_entry) != 64);
8253 BUILD_BUG_ON(sizeof(struct tsk_mgmt_entry_fx00) != 64);
8254 BUILD_BUG_ON(sizeof(struct verify_chip_entry_84xx) != 64);
8255 BUILD_BUG_ON(sizeof(struct verify_chip_rsp_84xx) != 52);
8256 BUILD_BUG_ON(sizeof(struct vf_evfp_entry_24xx) != 56);
8257 BUILD_BUG_ON(sizeof(struct vp_config_entry_24xx) != 64);
8258 BUILD_BUG_ON(sizeof(struct vp_ctrl_entry_24xx) != 64);
8259 BUILD_BUG_ON(sizeof(struct vp_rpt_id_entry_24xx) != 64);
8260 BUILD_BUG_ON(sizeof(sts21_entry_t) != 64);
8261 BUILD_BUG_ON(sizeof(sts22_entry_t) != 64);
8262 BUILD_BUG_ON(sizeof(sts_cont_entry_t) != 64);
8263 BUILD_BUG_ON(sizeof(sts_entry_t) != 64);
8264 BUILD_BUG_ON(sizeof(sw_info_t) != 32);
8265 BUILD_BUG_ON(sizeof(target_id_t) != 2);
8266
8267 qla_trace_init();
8268
8269 /* Allocate cache for SRBs. */
8270 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
8271 SLAB_HWCACHE_ALIGN, NULL);
8272 if (srb_cachep == NULL) {
8273 ql_log(ql_log_fatal, NULL, 0x0001,
8274 "Unable to allocate SRB cache...Failing load!.\n");
8275 return -ENOMEM;
8276 }
8277
8278 /* Initialize target kmem_cache and mem_pools */
8279 ret = qlt_init();
8280 if (ret < 0) {
8281 goto destroy_cache;
8282 } else if (ret > 0) {
8283 /*
8284 * If initiator mode is explictly disabled by qlt_init(),
8285 * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from
8286 * performing scsi_scan_target() during LOOP UP event.
8287 */
8288 qla2xxx_transport_functions.disable_target_scan = 1;
8289 qla2xxx_transport_vport_functions.disable_target_scan = 1;
8290 }
8291
8292 /* Derive version string. */
8293 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
8294 if (ql2xextended_error_logging)
8295 strcat(qla2x00_version_str, "-debug");
8296 if (ql2xextended_error_logging == 1)
8297 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
8298
8299 qla2xxx_transport_template =
8300 fc_attach_transport(&qla2xxx_transport_functions);
8301 if (!qla2xxx_transport_template) {
8302 ql_log(ql_log_fatal, NULL, 0x0002,
8303 "fc_attach_transport failed...Failing load!.\n");
8304 ret = -ENODEV;
8305 goto qlt_exit;
8306 }
8307
8308 apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
8309 if (apidev_major < 0) {
8310 ql_log(ql_log_fatal, NULL, 0x0003,
8311 "Unable to register char device %s.\n", QLA2XXX_APIDEV);
8312 }
8313
8314 qla2xxx_transport_vport_template =
8315 fc_attach_transport(&qla2xxx_transport_vport_functions);
8316 if (!qla2xxx_transport_vport_template) {
8317 ql_log(ql_log_fatal, NULL, 0x0004,
8318 "fc_attach_transport vport failed...Failing load!.\n");
8319 ret = -ENODEV;
8320 goto unreg_chrdev;
8321 }
8322 ql_log(ql_log_info, NULL, 0x0005,
8323 "QLogic Fibre Channel HBA Driver: %s.\n",
8324 qla2x00_version_str);
8325 ret = pci_register_driver(&qla2xxx_pci_driver);
8326 if (ret) {
8327 ql_log(ql_log_fatal, NULL, 0x0006,
8328 "pci_register_driver failed...ret=%d Failing load!.\n",
8329 ret);
8330 goto release_vport_transport;
8331 }
8332 return ret;
8333
8334release_vport_transport:
8335 fc_release_transport(qla2xxx_transport_vport_template);
8336
8337unreg_chrdev:
8338 if (apidev_major >= 0)
8339 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
8340 fc_release_transport(qla2xxx_transport_template);
8341
8342qlt_exit:
8343 qlt_exit();
8344
8345destroy_cache:
8346 kmem_cache_destroy(srb_cachep);
8347
8348 qla_trace_uninit();
8349 return ret;
8350}
8351
8352/**
8353 * qla2x00_module_exit - Module cleanup.
8354 **/
8355static void __exit
8356qla2x00_module_exit(void)
8357{
8358 pci_unregister_driver(&qla2xxx_pci_driver);
8359 qla2x00_release_firmware();
8360 kmem_cache_destroy(ctx_cachep);
8361 fc_release_transport(qla2xxx_transport_vport_template);
8362 if (apidev_major >= 0)
8363 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
8364 fc_release_transport(qla2xxx_transport_template);
8365 qlt_exit();
8366 kmem_cache_destroy(srb_cachep);
8367 qla_trace_uninit();
8368}
8369
8370module_init(qla2x00_module_init);
8371module_exit(qla2x00_module_exit);
8372
8373MODULE_AUTHOR("QLogic Corporation");
8374MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
8375MODULE_LICENSE("GPL");
8376MODULE_FIRMWARE(FW_FILE_ISP21XX);
8377MODULE_FIRMWARE(FW_FILE_ISP22XX);
8378MODULE_FIRMWARE(FW_FILE_ISP2300);
8379MODULE_FIRMWARE(FW_FILE_ISP2322);
8380MODULE_FIRMWARE(FW_FILE_ISP24XX);
8381MODULE_FIRMWARE(FW_FILE_ISP25XX);
1/*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
4 *
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7#include "qla_def.h"
8
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
11#include <linux/delay.h>
12#include <linux/kthread.h>
13#include <linux/mutex.h>
14#include <linux/kobject.h>
15#include <linux/slab.h>
16#include <linux/blk-mq-pci.h>
17#include <scsi/scsi_tcq.h>
18#include <scsi/scsicam.h>
19#include <scsi/scsi_transport.h>
20#include <scsi/scsi_transport_fc.h>
21
22#include "qla_target.h"
23
24/*
25 * Driver version
26 */
27char qla2x00_version_str[40];
28
29static int apidev_major;
30
31/*
32 * SRB allocation cache
33 */
34struct kmem_cache *srb_cachep;
35
36/*
37 * CT6 CTX allocation cache
38 */
39static struct kmem_cache *ctx_cachep;
40/*
41 * error level for logging
42 */
43int ql_errlev = ql_log_all;
44
45static int ql2xenableclass2;
46module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR);
47MODULE_PARM_DESC(ql2xenableclass2,
48 "Specify if Class 2 operations are supported from the very "
49 "beginning. Default is 0 - class 2 not supported.");
50
51
52int ql2xlogintimeout = 20;
53module_param(ql2xlogintimeout, int, S_IRUGO);
54MODULE_PARM_DESC(ql2xlogintimeout,
55 "Login timeout value in seconds.");
56
57int qlport_down_retry;
58module_param(qlport_down_retry, int, S_IRUGO);
59MODULE_PARM_DESC(qlport_down_retry,
60 "Maximum number of command retries to a port that returns "
61 "a PORT-DOWN status.");
62
63int ql2xplogiabsentdevice;
64module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
65MODULE_PARM_DESC(ql2xplogiabsentdevice,
66 "Option to enable PLOGI to devices that are not present after "
67 "a Fabric scan. This is needed for several broken switches. "
68 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
69
70int ql2xloginretrycount = 0;
71module_param(ql2xloginretrycount, int, S_IRUGO);
72MODULE_PARM_DESC(ql2xloginretrycount,
73 "Specify an alternate value for the NVRAM login retry count.");
74
75int ql2xallocfwdump = 1;
76module_param(ql2xallocfwdump, int, S_IRUGO);
77MODULE_PARM_DESC(ql2xallocfwdump,
78 "Option to enable allocation of memory for a firmware dump "
79 "during HBA initialization. Memory allocation requirements "
80 "vary by ISP type. Default is 1 - allocate memory.");
81
82int ql2xextended_error_logging;
83module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
84module_param_named(logging, ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
85MODULE_PARM_DESC(ql2xextended_error_logging,
86 "Option to enable extended error logging,\n"
87 "\t\tDefault is 0 - no logging. 0x40000000 - Module Init & Probe.\n"
88 "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n"
89 "\t\t0x08000000 - IO tracing. 0x04000000 - DPC Thread.\n"
90 "\t\t0x02000000 - Async events. 0x01000000 - Timer routines.\n"
91 "\t\t0x00800000 - User space. 0x00400000 - Task Management.\n"
92 "\t\t0x00200000 - AER/EEH. 0x00100000 - Multi Q.\n"
93 "\t\t0x00080000 - P3P Specific. 0x00040000 - Virtual Port.\n"
94 "\t\t0x00020000 - Buffer Dump. 0x00010000 - Misc.\n"
95 "\t\t0x00008000 - Verbose. 0x00004000 - Target.\n"
96 "\t\t0x00002000 - Target Mgmt. 0x00001000 - Target TMF.\n"
97 "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n"
98 "\t\t0x1e400000 - Preferred value for capturing essential "
99 "debug information (equivalent to old "
100 "ql2xextended_error_logging=1).\n"
101 "\t\tDo LOGICAL OR of the value to enable more than one level");
102
103int ql2xshiftctondsd = 6;
104module_param(ql2xshiftctondsd, int, S_IRUGO);
105MODULE_PARM_DESC(ql2xshiftctondsd,
106 "Set to control shifting of command type processing "
107 "based on total number of SG elements.");
108
109int ql2xfdmienable=1;
110module_param(ql2xfdmienable, int, S_IRUGO|S_IWUSR);
111module_param_named(fdmi, ql2xfdmienable, int, S_IRUGO|S_IWUSR);
112MODULE_PARM_DESC(ql2xfdmienable,
113 "Enables FDMI registrations. "
114 "0 - no FDMI. Default is 1 - perform FDMI.");
115
116#define MAX_Q_DEPTH 64
117static int ql2xmaxqdepth = MAX_Q_DEPTH;
118module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
119MODULE_PARM_DESC(ql2xmaxqdepth,
120 "Maximum queue depth to set for each LUN. "
121 "Default is 64.");
122
123#if (IS_ENABLED(CONFIG_NVME_FC))
124int ql2xenabledif;
125#else
126int ql2xenabledif = 2;
127#endif
128module_param(ql2xenabledif, int, S_IRUGO);
129MODULE_PARM_DESC(ql2xenabledif,
130 " Enable T10-CRC-DIF:\n"
131 " Default is 2.\n"
132 " 0 -- No DIF Support\n"
133 " 1 -- Enable DIF for all types\n"
134 " 2 -- Enable DIF for all types, except Type 0.\n");
135
136#if (IS_ENABLED(CONFIG_NVME_FC))
137int ql2xnvmeenable = 1;
138#else
139int ql2xnvmeenable;
140#endif
141module_param(ql2xnvmeenable, int, 0644);
142MODULE_PARM_DESC(ql2xnvmeenable,
143 "Enables NVME support. "
144 "0 - no NVMe. Default is Y");
145
146int ql2xenablehba_err_chk = 2;
147module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR);
148MODULE_PARM_DESC(ql2xenablehba_err_chk,
149 " Enable T10-CRC-DIF Error isolation by HBA:\n"
150 " Default is 2.\n"
151 " 0 -- Error isolation disabled\n"
152 " 1 -- Error isolation enabled only for DIX Type 0\n"
153 " 2 -- Error isolation enabled for all Types\n");
154
155int ql2xiidmaenable=1;
156module_param(ql2xiidmaenable, int, S_IRUGO);
157MODULE_PARM_DESC(ql2xiidmaenable,
158 "Enables iIDMA settings "
159 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
160
161int ql2xmqsupport = 1;
162module_param(ql2xmqsupport, int, S_IRUGO);
163MODULE_PARM_DESC(ql2xmqsupport,
164 "Enable on demand multiple queue pairs support "
165 "Default is 1 for supported. "
166 "Set it to 0 to turn off mq qpair support.");
167
168int ql2xfwloadbin;
169module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
170module_param_named(fwload, ql2xfwloadbin, int, S_IRUGO|S_IWUSR);
171MODULE_PARM_DESC(ql2xfwloadbin,
172 "Option to specify location from which to load ISP firmware:.\n"
173 " 2 -- load firmware via the request_firmware() (hotplug).\n"
174 " interface.\n"
175 " 1 -- load firmware from flash.\n"
176 " 0 -- use default semantics.\n");
177
178int ql2xetsenable;
179module_param(ql2xetsenable, int, S_IRUGO);
180MODULE_PARM_DESC(ql2xetsenable,
181 "Enables firmware ETS burst."
182 "Default is 0 - skip ETS enablement.");
183
184int ql2xdbwr = 1;
185module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR);
186MODULE_PARM_DESC(ql2xdbwr,
187 "Option to specify scheme for request queue posting.\n"
188 " 0 -- Regular doorbell.\n"
189 " 1 -- CAMRAM doorbell (faster).\n");
190
191int ql2xtargetreset = 1;
192module_param(ql2xtargetreset, int, S_IRUGO);
193MODULE_PARM_DESC(ql2xtargetreset,
194 "Enable target reset."
195 "Default is 1 - use hw defaults.");
196
197int ql2xgffidenable;
198module_param(ql2xgffidenable, int, S_IRUGO);
199MODULE_PARM_DESC(ql2xgffidenable,
200 "Enables GFF_ID checks of port type. "
201 "Default is 0 - Do not use GFF_ID information.");
202
203int ql2xasynctmfenable = 1;
204module_param(ql2xasynctmfenable, int, S_IRUGO);
205MODULE_PARM_DESC(ql2xasynctmfenable,
206 "Enables issue of TM IOCBs asynchronously via IOCB mechanism"
207 "Default is 0 - Issue TM IOCBs via mailbox mechanism.");
208
209int ql2xdontresethba;
210module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR);
211MODULE_PARM_DESC(ql2xdontresethba,
212 "Option to specify reset behaviour.\n"
213 " 0 (Default) -- Reset on failure.\n"
214 " 1 -- Do not reset on failure.\n");
215
216uint64_t ql2xmaxlun = MAX_LUNS;
217module_param(ql2xmaxlun, ullong, S_IRUGO);
218MODULE_PARM_DESC(ql2xmaxlun,
219 "Defines the maximum LU number to register with the SCSI "
220 "midlayer. Default is 65535.");
221
222int ql2xmdcapmask = 0x1F;
223module_param(ql2xmdcapmask, int, S_IRUGO);
224MODULE_PARM_DESC(ql2xmdcapmask,
225 "Set the Minidump driver capture mask level. "
226 "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F.");
227
228int ql2xmdenable = 1;
229module_param(ql2xmdenable, int, S_IRUGO);
230MODULE_PARM_DESC(ql2xmdenable,
231 "Enable/disable MiniDump. "
232 "0 - MiniDump disabled. "
233 "1 (Default) - MiniDump enabled.");
234
235int ql2xexlogins = 0;
236module_param(ql2xexlogins, uint, S_IRUGO|S_IWUSR);
237MODULE_PARM_DESC(ql2xexlogins,
238 "Number of extended Logins. "
239 "0 (Default)- Disabled.");
240
241int ql2xexchoffld = 1024;
242module_param(ql2xexchoffld, uint, 0644);
243MODULE_PARM_DESC(ql2xexchoffld,
244 "Number of target exchanges.");
245
246int ql2xiniexchg = 1024;
247module_param(ql2xiniexchg, uint, 0644);
248MODULE_PARM_DESC(ql2xiniexchg,
249 "Number of initiator exchanges.");
250
251int ql2xfwholdabts = 0;
252module_param(ql2xfwholdabts, int, S_IRUGO);
253MODULE_PARM_DESC(ql2xfwholdabts,
254 "Allow FW to hold status IOCB until ABTS rsp received. "
255 "0 (Default) Do not set fw option. "
256 "1 - Set fw option to hold ABTS.");
257
258int ql2xmvasynctoatio = 1;
259module_param(ql2xmvasynctoatio, int, S_IRUGO|S_IWUSR);
260MODULE_PARM_DESC(ql2xmvasynctoatio,
261 "Move PUREX, ABTS RX and RIDA IOCBs to ATIOQ"
262 "0 (Default). Do not move IOCBs"
263 "1 - Move IOCBs.");
264
265int ql2xautodetectsfp = 1;
266module_param(ql2xautodetectsfp, int, 0444);
267MODULE_PARM_DESC(ql2xautodetectsfp,
268 "Detect SFP range and set appropriate distance.\n"
269 "1 (Default): Enable\n");
270
271int ql2xenablemsix = 1;
272module_param(ql2xenablemsix, int, 0444);
273MODULE_PARM_DESC(ql2xenablemsix,
274 "Set to enable MSI or MSI-X interrupt mechanism.\n"
275 " Default is 1, enable MSI-X interrupt mechanism.\n"
276 " 0 -- enable traditional pin-based mechanism.\n"
277 " 1 -- enable MSI-X interrupt mechanism.\n"
278 " 2 -- enable MSI interrupt mechanism.\n");
279
280int qla2xuseresexchforels;
281module_param(qla2xuseresexchforels, int, 0444);
282MODULE_PARM_DESC(qla2xuseresexchforels,
283 "Reserve 1/2 of emergency exchanges for ELS.\n"
284 " 0 (default): disabled");
285
286/*
287 * SCSI host template entry points
288 */
289static int qla2xxx_slave_configure(struct scsi_device * device);
290static int qla2xxx_slave_alloc(struct scsi_device *);
291static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
292static void qla2xxx_scan_start(struct Scsi_Host *);
293static void qla2xxx_slave_destroy(struct scsi_device *);
294static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd);
295static int qla2xxx_eh_abort(struct scsi_cmnd *);
296static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
297static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
298static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
299static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
300
301static void qla2x00_clear_drv_active(struct qla_hw_data *);
302static void qla2x00_free_device(scsi_qla_host_t *);
303static int qla2xxx_map_queues(struct Scsi_Host *shost);
304static void qla2x00_destroy_deferred_work(struct qla_hw_data *);
305
306struct scsi_host_template qla2xxx_driver_template = {
307 .module = THIS_MODULE,
308 .name = QLA2XXX_DRIVER_NAME,
309 .queuecommand = qla2xxx_queuecommand,
310
311 .eh_timed_out = fc_eh_timed_out,
312 .eh_abort_handler = qla2xxx_eh_abort,
313 .eh_device_reset_handler = qla2xxx_eh_device_reset,
314 .eh_target_reset_handler = qla2xxx_eh_target_reset,
315 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
316 .eh_host_reset_handler = qla2xxx_eh_host_reset,
317
318 .slave_configure = qla2xxx_slave_configure,
319
320 .slave_alloc = qla2xxx_slave_alloc,
321 .slave_destroy = qla2xxx_slave_destroy,
322 .scan_finished = qla2xxx_scan_finished,
323 .scan_start = qla2xxx_scan_start,
324 .change_queue_depth = scsi_change_queue_depth,
325 .map_queues = qla2xxx_map_queues,
326 .this_id = -1,
327 .cmd_per_lun = 3,
328 .use_clustering = ENABLE_CLUSTERING,
329 .sg_tablesize = SG_ALL,
330
331 .max_sectors = 0xFFFF,
332 .shost_attrs = qla2x00_host_attrs,
333
334 .supported_mode = MODE_INITIATOR,
335 .track_queue_depth = 1,
336};
337
338static struct scsi_transport_template *qla2xxx_transport_template = NULL;
339struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
340
341/* TODO Convert to inlines
342 *
343 * Timer routines
344 */
345
346__inline__ void
347qla2x00_start_timer(scsi_qla_host_t *vha, unsigned long interval)
348{
349 timer_setup(&vha->timer, qla2x00_timer, 0);
350 vha->timer.expires = jiffies + interval * HZ;
351 add_timer(&vha->timer);
352 vha->timer_active = 1;
353}
354
355static inline void
356qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
357{
358 /* Currently used for 82XX only. */
359 if (vha->device_flags & DFLG_DEV_FAILED) {
360 ql_dbg(ql_dbg_timer, vha, 0x600d,
361 "Device in a failed state, returning.\n");
362 return;
363 }
364
365 mod_timer(&vha->timer, jiffies + interval * HZ);
366}
367
368static __inline__ void
369qla2x00_stop_timer(scsi_qla_host_t *vha)
370{
371 del_timer_sync(&vha->timer);
372 vha->timer_active = 0;
373}
374
375static int qla2x00_do_dpc(void *data);
376
377static void qla2x00_rst_aen(scsi_qla_host_t *);
378
379static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
380 struct req_que **, struct rsp_que **);
381static void qla2x00_free_fw_dump(struct qla_hw_data *);
382static void qla2x00_mem_free(struct qla_hw_data *);
383int qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
384 struct qla_qpair *qpair);
385
386/* -------------------------------------------------------------------------- */
387static void qla_init_base_qpair(struct scsi_qla_host *vha, struct req_que *req,
388 struct rsp_que *rsp)
389{
390 struct qla_hw_data *ha = vha->hw;
391 rsp->qpair = ha->base_qpair;
392 rsp->req = req;
393 ha->base_qpair->req = req;
394 ha->base_qpair->rsp = rsp;
395 ha->base_qpair->vha = vha;
396 ha->base_qpair->qp_lock_ptr = &ha->hardware_lock;
397 ha->base_qpair->use_shadow_reg = IS_SHADOW_REG_CAPABLE(ha) ? 1 : 0;
398 ha->base_qpair->msix = &ha->msix_entries[QLA_MSIX_RSP_Q];
399 INIT_LIST_HEAD(&ha->base_qpair->hints_list);
400 ha->base_qpair->enable_class_2 = ql2xenableclass2;
401 /* init qpair to this cpu. Will adjust at run time. */
402 qla_cpu_update(rsp->qpair, raw_smp_processor_id());
403 ha->base_qpair->pdev = ha->pdev;
404
405 if (IS_QLA27XX(ha) || IS_QLA83XX(ha))
406 ha->base_qpair->reqq_start_iocbs = qla_83xx_start_iocbs;
407}
408
409static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req,
410 struct rsp_que *rsp)
411{
412 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
413 ha->req_q_map = kzalloc(sizeof(struct req_que *) * ha->max_req_queues,
414 GFP_KERNEL);
415 if (!ha->req_q_map) {
416 ql_log(ql_log_fatal, vha, 0x003b,
417 "Unable to allocate memory for request queue ptrs.\n");
418 goto fail_req_map;
419 }
420
421 ha->rsp_q_map = kzalloc(sizeof(struct rsp_que *) * ha->max_rsp_queues,
422 GFP_KERNEL);
423 if (!ha->rsp_q_map) {
424 ql_log(ql_log_fatal, vha, 0x003c,
425 "Unable to allocate memory for response queue ptrs.\n");
426 goto fail_rsp_map;
427 }
428
429 ha->base_qpair = kzalloc(sizeof(struct qla_qpair), GFP_KERNEL);
430 if (ha->base_qpair == NULL) {
431 ql_log(ql_log_warn, vha, 0x00e0,
432 "Failed to allocate base queue pair memory.\n");
433 goto fail_base_qpair;
434 }
435
436 qla_init_base_qpair(vha, req, rsp);
437
438 if ((ql2xmqsupport || ql2xnvmeenable) && ha->max_qpairs) {
439 ha->queue_pair_map = kcalloc(ha->max_qpairs, sizeof(struct qla_qpair *),
440 GFP_KERNEL);
441 if (!ha->queue_pair_map) {
442 ql_log(ql_log_fatal, vha, 0x0180,
443 "Unable to allocate memory for queue pair ptrs.\n");
444 goto fail_qpair_map;
445 }
446 }
447
448 /*
449 * Make sure we record at least the request and response queue zero in
450 * case we need to free them if part of the probe fails.
451 */
452 ha->rsp_q_map[0] = rsp;
453 ha->req_q_map[0] = req;
454 set_bit(0, ha->rsp_qid_map);
455 set_bit(0, ha->req_qid_map);
456 return 0;
457
458fail_qpair_map:
459 kfree(ha->base_qpair);
460 ha->base_qpair = NULL;
461fail_base_qpair:
462 kfree(ha->rsp_q_map);
463 ha->rsp_q_map = NULL;
464fail_rsp_map:
465 kfree(ha->req_q_map);
466 ha->req_q_map = NULL;
467fail_req_map:
468 return -ENOMEM;
469}
470
471static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
472{
473 if (IS_QLAFX00(ha)) {
474 if (req && req->ring_fx00)
475 dma_free_coherent(&ha->pdev->dev,
476 (req->length_fx00 + 1) * sizeof(request_t),
477 req->ring_fx00, req->dma_fx00);
478 } else if (req && req->ring)
479 dma_free_coherent(&ha->pdev->dev,
480 (req->length + 1) * sizeof(request_t),
481 req->ring, req->dma);
482
483 if (req)
484 kfree(req->outstanding_cmds);
485
486 kfree(req);
487}
488
489static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
490{
491 if (IS_QLAFX00(ha)) {
492 if (rsp && rsp->ring_fx00)
493 dma_free_coherent(&ha->pdev->dev,
494 (rsp->length_fx00 + 1) * sizeof(request_t),
495 rsp->ring_fx00, rsp->dma_fx00);
496 } else if (rsp && rsp->ring) {
497 dma_free_coherent(&ha->pdev->dev,
498 (rsp->length + 1) * sizeof(response_t),
499 rsp->ring, rsp->dma);
500 }
501 kfree(rsp);
502}
503
504static void qla2x00_free_queues(struct qla_hw_data *ha)
505{
506 struct req_que *req;
507 struct rsp_que *rsp;
508 int cnt;
509 unsigned long flags;
510
511 if (ha->queue_pair_map) {
512 kfree(ha->queue_pair_map);
513 ha->queue_pair_map = NULL;
514 }
515 if (ha->base_qpair) {
516 kfree(ha->base_qpair);
517 ha->base_qpair = NULL;
518 }
519
520 spin_lock_irqsave(&ha->hardware_lock, flags);
521 for (cnt = 0; cnt < ha->max_req_queues; cnt++) {
522 if (!test_bit(cnt, ha->req_qid_map))
523 continue;
524
525 req = ha->req_q_map[cnt];
526 clear_bit(cnt, ha->req_qid_map);
527 ha->req_q_map[cnt] = NULL;
528
529 spin_unlock_irqrestore(&ha->hardware_lock, flags);
530 qla2x00_free_req_que(ha, req);
531 spin_lock_irqsave(&ha->hardware_lock, flags);
532 }
533 spin_unlock_irqrestore(&ha->hardware_lock, flags);
534
535 kfree(ha->req_q_map);
536 ha->req_q_map = NULL;
537
538
539 spin_lock_irqsave(&ha->hardware_lock, flags);
540 for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) {
541 if (!test_bit(cnt, ha->rsp_qid_map))
542 continue;
543
544 rsp = ha->rsp_q_map[cnt];
545 clear_bit(cnt, ha->rsp_qid_map);
546 ha->rsp_q_map[cnt] = NULL;
547 spin_unlock_irqrestore(&ha->hardware_lock, flags);
548 qla2x00_free_rsp_que(ha, rsp);
549 spin_lock_irqsave(&ha->hardware_lock, flags);
550 }
551 spin_unlock_irqrestore(&ha->hardware_lock, flags);
552
553 kfree(ha->rsp_q_map);
554 ha->rsp_q_map = NULL;
555}
556
557static char *
558qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str)
559{
560 struct qla_hw_data *ha = vha->hw;
561 static char *pci_bus_modes[] = {
562 "33", "66", "100", "133",
563 };
564 uint16_t pci_bus;
565
566 strcpy(str, "PCI");
567 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
568 if (pci_bus) {
569 strcat(str, "-X (");
570 strcat(str, pci_bus_modes[pci_bus]);
571 } else {
572 pci_bus = (ha->pci_attr & BIT_8) >> 8;
573 strcat(str, " (");
574 strcat(str, pci_bus_modes[pci_bus]);
575 }
576 strcat(str, " MHz)");
577
578 return (str);
579}
580
581static char *
582qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str)
583{
584 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
585 struct qla_hw_data *ha = vha->hw;
586 uint32_t pci_bus;
587
588 if (pci_is_pcie(ha->pdev)) {
589 char lwstr[6];
590 uint32_t lstat, lspeed, lwidth;
591
592 pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat);
593 lspeed = lstat & PCI_EXP_LNKCAP_SLS;
594 lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4;
595
596 strcpy(str, "PCIe (");
597 switch (lspeed) {
598 case 1:
599 strcat(str, "2.5GT/s ");
600 break;
601 case 2:
602 strcat(str, "5.0GT/s ");
603 break;
604 case 3:
605 strcat(str, "8.0GT/s ");
606 break;
607 default:
608 strcat(str, "<unknown> ");
609 break;
610 }
611 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
612 strcat(str, lwstr);
613
614 return str;
615 }
616
617 strcpy(str, "PCI");
618 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
619 if (pci_bus == 0 || pci_bus == 8) {
620 strcat(str, " (");
621 strcat(str, pci_bus_modes[pci_bus >> 3]);
622 } else {
623 strcat(str, "-X ");
624 if (pci_bus & BIT_2)
625 strcat(str, "Mode 2");
626 else
627 strcat(str, "Mode 1");
628 strcat(str, " (");
629 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
630 }
631 strcat(str, " MHz)");
632
633 return str;
634}
635
636static char *
637qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
638{
639 char un_str[10];
640 struct qla_hw_data *ha = vha->hw;
641
642 snprintf(str, size, "%d.%02d.%02d ", ha->fw_major_version,
643 ha->fw_minor_version, ha->fw_subminor_version);
644
645 if (ha->fw_attributes & BIT_9) {
646 strcat(str, "FLX");
647 return (str);
648 }
649
650 switch (ha->fw_attributes & 0xFF) {
651 case 0x7:
652 strcat(str, "EF");
653 break;
654 case 0x17:
655 strcat(str, "TP");
656 break;
657 case 0x37:
658 strcat(str, "IP");
659 break;
660 case 0x77:
661 strcat(str, "VI");
662 break;
663 default:
664 sprintf(un_str, "(%x)", ha->fw_attributes);
665 strcat(str, un_str);
666 break;
667 }
668 if (ha->fw_attributes & 0x100)
669 strcat(str, "X");
670
671 return (str);
672}
673
674static char *
675qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
676{
677 struct qla_hw_data *ha = vha->hw;
678
679 snprintf(str, size, "%d.%02d.%02d (%x)", ha->fw_major_version,
680 ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes);
681 return str;
682}
683
684void
685qla2x00_sp_free_dma(void *ptr)
686{
687 srb_t *sp = ptr;
688 struct qla_hw_data *ha = sp->vha->hw;
689 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
690 void *ctx = GET_CMD_CTX_SP(sp);
691
692 if (sp->flags & SRB_DMA_VALID) {
693 scsi_dma_unmap(cmd);
694 sp->flags &= ~SRB_DMA_VALID;
695 }
696
697 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
698 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
699 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
700 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
701 }
702
703 if (!ctx)
704 goto end;
705
706 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
707 /* List assured to be having elements */
708 qla2x00_clean_dsd_pool(ha, ctx);
709 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
710 }
711
712 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
713 struct crc_context *ctx0 = ctx;
714
715 dma_pool_free(ha->dl_dma_pool, ctx0, ctx0->crc_ctx_dma);
716 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
717 }
718
719 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
720 struct ct6_dsd *ctx1 = ctx;
721
722 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
723 ctx1->fcp_cmnd_dma);
724 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list);
725 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt;
726 ha->gbl_dsd_avail += ctx1->dsd_use_cnt;
727 mempool_free(ctx1, ha->ctx_mempool);
728 }
729
730end:
731 if (sp->type != SRB_NVME_CMD && sp->type != SRB_NVME_LS) {
732 CMD_SP(cmd) = NULL;
733 qla2x00_rel_sp(sp);
734 }
735}
736
737void
738qla2x00_sp_compl(void *ptr, int res)
739{
740 srb_t *sp = ptr;
741 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
742
743 cmd->result = res;
744
745 if (atomic_read(&sp->ref_count) == 0) {
746 ql_dbg(ql_dbg_io, sp->vha, 0x3015,
747 "SP reference-count to ZERO -- sp=%p cmd=%p.\n",
748 sp, GET_CMD_SP(sp));
749 if (ql2xextended_error_logging & ql_dbg_io)
750 WARN_ON(atomic_read(&sp->ref_count) == 0);
751 return;
752 }
753 if (!atomic_dec_and_test(&sp->ref_count))
754 return;
755
756 sp->free(sp);
757 cmd->scsi_done(cmd);
758}
759
760void
761qla2xxx_qpair_sp_free_dma(void *ptr)
762{
763 srb_t *sp = (srb_t *)ptr;
764 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
765 struct qla_hw_data *ha = sp->fcport->vha->hw;
766 void *ctx = GET_CMD_CTX_SP(sp);
767
768 if (sp->flags & SRB_DMA_VALID) {
769 scsi_dma_unmap(cmd);
770 sp->flags &= ~SRB_DMA_VALID;
771 }
772
773 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
774 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
775 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
776 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
777 }
778
779 if (!ctx)
780 goto end;
781
782 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
783 /* List assured to be having elements */
784 qla2x00_clean_dsd_pool(ha, ctx);
785 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
786 }
787
788 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
789 struct crc_context *ctx0 = ctx;
790
791 dma_pool_free(ha->dl_dma_pool, ctx, ctx0->crc_ctx_dma);
792 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
793 }
794
795 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
796 struct ct6_dsd *ctx1 = ctx;
797 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd,
798 ctx1->fcp_cmnd_dma);
799 list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list);
800 ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt;
801 ha->gbl_dsd_avail += ctx1->dsd_use_cnt;
802 mempool_free(ctx1, ha->ctx_mempool);
803 }
804end:
805 CMD_SP(cmd) = NULL;
806 qla2xxx_rel_qpair_sp(sp->qpair, sp);
807}
808
809void
810qla2xxx_qpair_sp_compl(void *ptr, int res)
811{
812 srb_t *sp = ptr;
813 struct scsi_cmnd *cmd = GET_CMD_SP(sp);
814
815 cmd->result = res;
816
817 if (atomic_read(&sp->ref_count) == 0) {
818 ql_dbg(ql_dbg_io, sp->fcport->vha, 0x3079,
819 "SP reference-count to ZERO -- sp=%p cmd=%p.\n",
820 sp, GET_CMD_SP(sp));
821 if (ql2xextended_error_logging & ql_dbg_io)
822 WARN_ON(atomic_read(&sp->ref_count) == 0);
823 return;
824 }
825 if (!atomic_dec_and_test(&sp->ref_count))
826 return;
827
828 sp->free(sp);
829 cmd->scsi_done(cmd);
830}
831
832/* If we are SP1 here, we need to still take and release the host_lock as SP1
833 * does not have the changes necessary to avoid taking host->host_lock.
834 */
835static int
836qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
837{
838 scsi_qla_host_t *vha = shost_priv(host);
839 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
840 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
841 struct qla_hw_data *ha = vha->hw;
842 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
843 srb_t *sp;
844 int rval;
845 struct qla_qpair *qpair = NULL;
846 uint32_t tag;
847 uint16_t hwq;
848
849 if (unlikely(test_bit(UNLOADING, &base_vha->dpc_flags))) {
850 cmd->result = DID_NO_CONNECT << 16;
851 goto qc24_fail_command;
852 }
853
854 if (ha->mqenable) {
855 if (shost_use_blk_mq(vha->host)) {
856 tag = blk_mq_unique_tag(cmd->request);
857 hwq = blk_mq_unique_tag_to_hwq(tag);
858 qpair = ha->queue_pair_map[hwq];
859 } else if (vha->vp_idx && vha->qpair) {
860 qpair = vha->qpair;
861 }
862
863 if (qpair)
864 return qla2xxx_mqueuecommand(host, cmd, qpair);
865 }
866
867 if (ha->flags.eeh_busy) {
868 if (ha->flags.pci_channel_io_perm_failure) {
869 ql_dbg(ql_dbg_aer, vha, 0x9010,
870 "PCI Channel IO permanent failure, exiting "
871 "cmd=%p.\n", cmd);
872 cmd->result = DID_NO_CONNECT << 16;
873 } else {
874 ql_dbg(ql_dbg_aer, vha, 0x9011,
875 "EEH_Busy, Requeuing the cmd=%p.\n", cmd);
876 cmd->result = DID_REQUEUE << 16;
877 }
878 goto qc24_fail_command;
879 }
880
881 rval = fc_remote_port_chkready(rport);
882 if (rval) {
883 cmd->result = rval;
884 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003,
885 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
886 cmd, rval);
887 goto qc24_fail_command;
888 }
889
890 if (!vha->flags.difdix_supported &&
891 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
892 ql_dbg(ql_dbg_io, vha, 0x3004,
893 "DIF Cap not reg, fail DIF capable cmd's:%p.\n",
894 cmd);
895 cmd->result = DID_NO_CONNECT << 16;
896 goto qc24_fail_command;
897 }
898
899 if (!fcport) {
900 cmd->result = DID_NO_CONNECT << 16;
901 goto qc24_fail_command;
902 }
903
904 if (atomic_read(&fcport->state) != FCS_ONLINE) {
905 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
906 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
907 ql_dbg(ql_dbg_io, vha, 0x3005,
908 "Returning DNC, fcport_state=%d loop_state=%d.\n",
909 atomic_read(&fcport->state),
910 atomic_read(&base_vha->loop_state));
911 cmd->result = DID_NO_CONNECT << 16;
912 goto qc24_fail_command;
913 }
914 goto qc24_target_busy;
915 }
916
917 /*
918 * Return target busy if we've received a non-zero retry_delay_timer
919 * in a FCP_RSP.
920 */
921 if (fcport->retry_delay_timestamp == 0) {
922 /* retry delay not set */
923 } else if (time_after(jiffies, fcport->retry_delay_timestamp))
924 fcport->retry_delay_timestamp = 0;
925 else
926 goto qc24_target_busy;
927
928 sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC);
929 if (!sp)
930 goto qc24_host_busy;
931
932 sp->u.scmd.cmd = cmd;
933 sp->type = SRB_SCSI_CMD;
934 atomic_set(&sp->ref_count, 1);
935 CMD_SP(cmd) = (void *)sp;
936 sp->free = qla2x00_sp_free_dma;
937 sp->done = qla2x00_sp_compl;
938
939 rval = ha->isp_ops->start_scsi(sp);
940 if (rval != QLA_SUCCESS) {
941 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013,
942 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
943 goto qc24_host_busy_free_sp;
944 }
945
946 return 0;
947
948qc24_host_busy_free_sp:
949 sp->free(sp);
950
951qc24_host_busy:
952 return SCSI_MLQUEUE_HOST_BUSY;
953
954qc24_target_busy:
955 return SCSI_MLQUEUE_TARGET_BUSY;
956
957qc24_fail_command:
958 cmd->scsi_done(cmd);
959
960 return 0;
961}
962
963/* For MQ supported I/O */
964int
965qla2xxx_mqueuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd,
966 struct qla_qpair *qpair)
967{
968 scsi_qla_host_t *vha = shost_priv(host);
969 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
970 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
971 struct qla_hw_data *ha = vha->hw;
972 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
973 srb_t *sp;
974 int rval;
975
976 rval = fc_remote_port_chkready(rport);
977 if (rval) {
978 cmd->result = rval;
979 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3076,
980 "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n",
981 cmd, rval);
982 goto qc24_fail_command;
983 }
984
985 if (!fcport) {
986 cmd->result = DID_NO_CONNECT << 16;
987 goto qc24_fail_command;
988 }
989
990 if (atomic_read(&fcport->state) != FCS_ONLINE) {
991 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
992 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
993 ql_dbg(ql_dbg_io, vha, 0x3077,
994 "Returning DNC, fcport_state=%d loop_state=%d.\n",
995 atomic_read(&fcport->state),
996 atomic_read(&base_vha->loop_state));
997 cmd->result = DID_NO_CONNECT << 16;
998 goto qc24_fail_command;
999 }
1000 goto qc24_target_busy;
1001 }
1002
1003 /*
1004 * Return target busy if we've received a non-zero retry_delay_timer
1005 * in a FCP_RSP.
1006 */
1007 if (fcport->retry_delay_timestamp == 0) {
1008 /* retry delay not set */
1009 } else if (time_after(jiffies, fcport->retry_delay_timestamp))
1010 fcport->retry_delay_timestamp = 0;
1011 else
1012 goto qc24_target_busy;
1013
1014 sp = qla2xxx_get_qpair_sp(qpair, fcport, GFP_ATOMIC);
1015 if (!sp)
1016 goto qc24_host_busy;
1017
1018 sp->u.scmd.cmd = cmd;
1019 sp->type = SRB_SCSI_CMD;
1020 atomic_set(&sp->ref_count, 1);
1021 CMD_SP(cmd) = (void *)sp;
1022 sp->free = qla2xxx_qpair_sp_free_dma;
1023 sp->done = qla2xxx_qpair_sp_compl;
1024 sp->qpair = qpair;
1025
1026 rval = ha->isp_ops->start_scsi_mq(sp);
1027 if (rval != QLA_SUCCESS) {
1028 ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3078,
1029 "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd);
1030 if (rval == QLA_INTERFACE_ERROR)
1031 goto qc24_fail_command;
1032 goto qc24_host_busy_free_sp;
1033 }
1034
1035 return 0;
1036
1037qc24_host_busy_free_sp:
1038 sp->free(sp);
1039
1040qc24_host_busy:
1041 return SCSI_MLQUEUE_HOST_BUSY;
1042
1043qc24_target_busy:
1044 return SCSI_MLQUEUE_TARGET_BUSY;
1045
1046qc24_fail_command:
1047 cmd->scsi_done(cmd);
1048
1049 return 0;
1050}
1051
1052/*
1053 * qla2x00_eh_wait_on_command
1054 * Waits for the command to be returned by the Firmware for some
1055 * max time.
1056 *
1057 * Input:
1058 * cmd = Scsi Command to wait on.
1059 *
1060 * Return:
1061 * Not Found : 0
1062 * Found : 1
1063 */
1064static int
1065qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
1066{
1067#define ABORT_POLLING_PERIOD 1000
1068#define ABORT_WAIT_ITER ((2 * 1000) / (ABORT_POLLING_PERIOD))
1069 unsigned long wait_iter = ABORT_WAIT_ITER;
1070 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1071 struct qla_hw_data *ha = vha->hw;
1072 int ret = QLA_SUCCESS;
1073
1074 if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) {
1075 ql_dbg(ql_dbg_taskm, vha, 0x8005,
1076 "Return:eh_wait.\n");
1077 return ret;
1078 }
1079
1080 while (CMD_SP(cmd) && wait_iter--) {
1081 msleep(ABORT_POLLING_PERIOD);
1082 }
1083 if (CMD_SP(cmd))
1084 ret = QLA_FUNCTION_FAILED;
1085
1086 return ret;
1087}
1088
1089/*
1090 * qla2x00_wait_for_hba_online
1091 * Wait till the HBA is online after going through
1092 * <= MAX_RETRIES_OF_ISP_ABORT or
1093 * finally HBA is disabled ie marked offline
1094 *
1095 * Input:
1096 * ha - pointer to host adapter structure
1097 *
1098 * Note:
1099 * Does context switching-Release SPIN_LOCK
1100 * (if any) before calling this routine.
1101 *
1102 * Return:
1103 * Success (Adapter is online) : 0
1104 * Failed (Adapter is offline/disabled) : 1
1105 */
1106int
1107qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
1108{
1109 int return_status;
1110 unsigned long wait_online;
1111 struct qla_hw_data *ha = vha->hw;
1112 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1113
1114 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1115 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1116 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1117 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1118 ha->dpc_active) && time_before(jiffies, wait_online)) {
1119
1120 msleep(1000);
1121 }
1122 if (base_vha->flags.online)
1123 return_status = QLA_SUCCESS;
1124 else
1125 return_status = QLA_FUNCTION_FAILED;
1126
1127 return (return_status);
1128}
1129
1130static inline int test_fcport_count(scsi_qla_host_t *vha)
1131{
1132 struct qla_hw_data *ha = vha->hw;
1133 unsigned long flags;
1134 int res;
1135
1136 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1137 ql_dbg(ql_dbg_init, vha, 0x00ec,
1138 "tgt %p, fcport_count=%d\n",
1139 vha, vha->fcport_count);
1140 res = (vha->fcport_count == 0);
1141 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
1142
1143 return res;
1144}
1145
1146/*
1147 * qla2x00_wait_for_sess_deletion can only be called from remove_one.
1148 * it has dependency on UNLOADING flag to stop device discovery
1149 */
1150static void
1151qla2x00_wait_for_sess_deletion(scsi_qla_host_t *vha)
1152{
1153 qla2x00_mark_all_devices_lost(vha, 0);
1154
1155 wait_event_timeout(vha->fcport_waitQ, test_fcport_count(vha), 10*HZ);
1156}
1157
1158/*
1159 * qla2x00_wait_for_hba_ready
1160 * Wait till the HBA is ready before doing driver unload
1161 *
1162 * Input:
1163 * ha - pointer to host adapter structure
1164 *
1165 * Note:
1166 * Does context switching-Release SPIN_LOCK
1167 * (if any) before calling this routine.
1168 *
1169 */
1170static void
1171qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha)
1172{
1173 struct qla_hw_data *ha = vha->hw;
1174 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1175
1176 while ((qla2x00_reset_active(vha) || ha->dpc_active ||
1177 ha->flags.mbox_busy) ||
1178 test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags) ||
1179 test_bit(FX00_TARGET_SCAN, &vha->dpc_flags)) {
1180 if (test_bit(UNLOADING, &base_vha->dpc_flags))
1181 break;
1182 msleep(1000);
1183 }
1184}
1185
1186int
1187qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
1188{
1189 int return_status;
1190 unsigned long wait_reset;
1191 struct qla_hw_data *ha = vha->hw;
1192 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1193
1194 wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
1195 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
1196 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
1197 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
1198 ha->dpc_active) && time_before(jiffies, wait_reset)) {
1199
1200 msleep(1000);
1201
1202 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
1203 ha->flags.chip_reset_done)
1204 break;
1205 }
1206 if (ha->flags.chip_reset_done)
1207 return_status = QLA_SUCCESS;
1208 else
1209 return_status = QLA_FUNCTION_FAILED;
1210
1211 return return_status;
1212}
1213
1214static void
1215sp_get(struct srb *sp)
1216{
1217 atomic_inc(&sp->ref_count);
1218}
1219
1220#define ISP_REG_DISCONNECT 0xffffffffU
1221/**************************************************************************
1222* qla2x00_isp_reg_stat
1223*
1224* Description:
1225* Read the host status register of ISP before aborting the command.
1226*
1227* Input:
1228* ha = pointer to host adapter structure.
1229*
1230*
1231* Returns:
1232* Either true or false.
1233*
1234* Note: Return true if there is register disconnect.
1235**************************************************************************/
1236static inline
1237uint32_t qla2x00_isp_reg_stat(struct qla_hw_data *ha)
1238{
1239 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1240 struct device_reg_82xx __iomem *reg82 = &ha->iobase->isp82;
1241
1242 if (IS_P3P_TYPE(ha))
1243 return ((RD_REG_DWORD(®82->host_int)) == ISP_REG_DISCONNECT);
1244 else
1245 return ((RD_REG_DWORD(®->host_status)) ==
1246 ISP_REG_DISCONNECT);
1247}
1248
1249/**************************************************************************
1250* qla2xxx_eh_abort
1251*
1252* Description:
1253* The abort function will abort the specified command.
1254*
1255* Input:
1256* cmd = Linux SCSI command packet to be aborted.
1257*
1258* Returns:
1259* Either SUCCESS or FAILED.
1260*
1261* Note:
1262* Only return FAILED if command not returned by firmware.
1263**************************************************************************/
1264static int
1265qla2xxx_eh_abort(struct scsi_cmnd *cmd)
1266{
1267 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1268 srb_t *sp;
1269 int ret;
1270 unsigned int id;
1271 uint64_t lun;
1272 unsigned long flags;
1273 int rval, wait = 0;
1274 struct qla_hw_data *ha = vha->hw;
1275
1276 if (qla2x00_isp_reg_stat(ha)) {
1277 ql_log(ql_log_info, vha, 0x8042,
1278 "PCI/Register disconnect, exiting.\n");
1279 return FAILED;
1280 }
1281 if (!CMD_SP(cmd))
1282 return SUCCESS;
1283
1284 ret = fc_block_scsi_eh(cmd);
1285 if (ret != 0)
1286 return ret;
1287 ret = SUCCESS;
1288
1289 id = cmd->device->id;
1290 lun = cmd->device->lun;
1291
1292 spin_lock_irqsave(&ha->hardware_lock, flags);
1293 sp = (srb_t *) CMD_SP(cmd);
1294 if (!sp) {
1295 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1296 return SUCCESS;
1297 }
1298
1299 ql_dbg(ql_dbg_taskm, vha, 0x8002,
1300 "Aborting from RISC nexus=%ld:%d:%llu sp=%p cmd=%p handle=%x\n",
1301 vha->host_no, id, lun, sp, cmd, sp->handle);
1302
1303 /* Get a reference to the sp and drop the lock.*/
1304 sp_get(sp);
1305
1306 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1307 rval = ha->isp_ops->abort_command(sp);
1308 if (rval) {
1309 if (rval == QLA_FUNCTION_PARAMETER_ERROR)
1310 ret = SUCCESS;
1311 else
1312 ret = FAILED;
1313
1314 ql_dbg(ql_dbg_taskm, vha, 0x8003,
1315 "Abort command mbx failed cmd=%p, rval=%x.\n", cmd, rval);
1316 } else {
1317 ql_dbg(ql_dbg_taskm, vha, 0x8004,
1318 "Abort command mbx success cmd=%p.\n", cmd);
1319 wait = 1;
1320 }
1321
1322 spin_lock_irqsave(&ha->hardware_lock, flags);
1323 sp->done(sp, 0);
1324 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1325
1326 /* Did the command return during mailbox execution? */
1327 if (ret == FAILED && !CMD_SP(cmd))
1328 ret = SUCCESS;
1329
1330 /* Wait for the command to be returned. */
1331 if (wait) {
1332 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
1333 ql_log(ql_log_warn, vha, 0x8006,
1334 "Abort handler timed out cmd=%p.\n", cmd);
1335 ret = FAILED;
1336 }
1337 }
1338
1339 ql_log(ql_log_info, vha, 0x801c,
1340 "Abort command issued nexus=%ld:%d:%llu -- %d %x.\n",
1341 vha->host_no, id, lun, wait, ret);
1342
1343 return ret;
1344}
1345
1346int
1347qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
1348 uint64_t l, enum nexus_wait_type type)
1349{
1350 int cnt, match, status;
1351 unsigned long flags;
1352 struct qla_hw_data *ha = vha->hw;
1353 struct req_que *req;
1354 srb_t *sp;
1355 struct scsi_cmnd *cmd;
1356
1357 status = QLA_SUCCESS;
1358
1359 spin_lock_irqsave(&ha->hardware_lock, flags);
1360 req = vha->req;
1361 for (cnt = 1; status == QLA_SUCCESS &&
1362 cnt < req->num_outstanding_cmds; cnt++) {
1363 sp = req->outstanding_cmds[cnt];
1364 if (!sp)
1365 continue;
1366 if (sp->type != SRB_SCSI_CMD)
1367 continue;
1368 if (vha->vp_idx != sp->vha->vp_idx)
1369 continue;
1370 match = 0;
1371 cmd = GET_CMD_SP(sp);
1372 switch (type) {
1373 case WAIT_HOST:
1374 match = 1;
1375 break;
1376 case WAIT_TARGET:
1377 match = cmd->device->id == t;
1378 break;
1379 case WAIT_LUN:
1380 match = (cmd->device->id == t &&
1381 cmd->device->lun == l);
1382 break;
1383 }
1384 if (!match)
1385 continue;
1386
1387 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1388 status = qla2x00_eh_wait_on_command(cmd);
1389 spin_lock_irqsave(&ha->hardware_lock, flags);
1390 }
1391 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1392
1393 return status;
1394}
1395
1396static char *reset_errors[] = {
1397 "HBA not online",
1398 "HBA not ready",
1399 "Task management failed",
1400 "Waiting for command completions",
1401};
1402
1403static int
1404__qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
1405 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, uint64_t, int))
1406{
1407 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1408 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1409 int err;
1410
1411 if (!fcport) {
1412 return FAILED;
1413 }
1414
1415 err = fc_block_scsi_eh(cmd);
1416 if (err != 0)
1417 return err;
1418
1419 ql_log(ql_log_info, vha, 0x8009,
1420 "%s RESET ISSUED nexus=%ld:%d:%llu cmd=%p.\n", name, vha->host_no,
1421 cmd->device->id, cmd->device->lun, cmd);
1422
1423 err = 0;
1424 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1425 ql_log(ql_log_warn, vha, 0x800a,
1426 "Wait for hba online failed for cmd=%p.\n", cmd);
1427 goto eh_reset_failed;
1428 }
1429 err = 2;
1430 if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1)
1431 != QLA_SUCCESS) {
1432 ql_log(ql_log_warn, vha, 0x800c,
1433 "do_reset failed for cmd=%p.\n", cmd);
1434 goto eh_reset_failed;
1435 }
1436 err = 3;
1437 if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
1438 cmd->device->lun, type) != QLA_SUCCESS) {
1439 ql_log(ql_log_warn, vha, 0x800d,
1440 "wait for pending cmds failed for cmd=%p.\n", cmd);
1441 goto eh_reset_failed;
1442 }
1443
1444 ql_log(ql_log_info, vha, 0x800e,
1445 "%s RESET SUCCEEDED nexus:%ld:%d:%llu cmd=%p.\n", name,
1446 vha->host_no, cmd->device->id, cmd->device->lun, cmd);
1447
1448 return SUCCESS;
1449
1450eh_reset_failed:
1451 ql_log(ql_log_info, vha, 0x800f,
1452 "%s RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n", name,
1453 reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun,
1454 cmd);
1455 return FAILED;
1456}
1457
1458static int
1459qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
1460{
1461 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1462 struct qla_hw_data *ha = vha->hw;
1463
1464 if (qla2x00_isp_reg_stat(ha)) {
1465 ql_log(ql_log_info, vha, 0x803e,
1466 "PCI/Register disconnect, exiting.\n");
1467 return FAILED;
1468 }
1469
1470 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
1471 ha->isp_ops->lun_reset);
1472}
1473
1474static int
1475qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
1476{
1477 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1478 struct qla_hw_data *ha = vha->hw;
1479
1480 if (qla2x00_isp_reg_stat(ha)) {
1481 ql_log(ql_log_info, vha, 0x803f,
1482 "PCI/Register disconnect, exiting.\n");
1483 return FAILED;
1484 }
1485
1486 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
1487 ha->isp_ops->target_reset);
1488}
1489
1490/**************************************************************************
1491* qla2xxx_eh_bus_reset
1492*
1493* Description:
1494* The bus reset function will reset the bus and abort any executing
1495* commands.
1496*
1497* Input:
1498* cmd = Linux SCSI command packet of the command that cause the
1499* bus reset.
1500*
1501* Returns:
1502* SUCCESS/FAILURE (defined as macro in scsi.h).
1503*
1504**************************************************************************/
1505static int
1506qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1507{
1508 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1509 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
1510 int ret = FAILED;
1511 unsigned int id;
1512 uint64_t lun;
1513 struct qla_hw_data *ha = vha->hw;
1514
1515 if (qla2x00_isp_reg_stat(ha)) {
1516 ql_log(ql_log_info, vha, 0x8040,
1517 "PCI/Register disconnect, exiting.\n");
1518 return FAILED;
1519 }
1520
1521 id = cmd->device->id;
1522 lun = cmd->device->lun;
1523
1524 if (!fcport) {
1525 return ret;
1526 }
1527
1528 ret = fc_block_scsi_eh(cmd);
1529 if (ret != 0)
1530 return ret;
1531 ret = FAILED;
1532
1533 ql_log(ql_log_info, vha, 0x8012,
1534 "BUS RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1535
1536 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1537 ql_log(ql_log_fatal, vha, 0x8013,
1538 "Wait for hba online failed board disabled.\n");
1539 goto eh_bus_reset_done;
1540 }
1541
1542 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
1543 ret = SUCCESS;
1544
1545 if (ret == FAILED)
1546 goto eh_bus_reset_done;
1547
1548 /* Flush outstanding commands. */
1549 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
1550 QLA_SUCCESS) {
1551 ql_log(ql_log_warn, vha, 0x8014,
1552 "Wait for pending commands failed.\n");
1553 ret = FAILED;
1554 }
1555
1556eh_bus_reset_done:
1557 ql_log(ql_log_warn, vha, 0x802b,
1558 "BUS RESET %s nexus=%ld:%d:%llu.\n",
1559 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1560
1561 return ret;
1562}
1563
1564/**************************************************************************
1565* qla2xxx_eh_host_reset
1566*
1567* Description:
1568* The reset function will reset the Adapter.
1569*
1570* Input:
1571* cmd = Linux SCSI command packet of the command that cause the
1572* adapter reset.
1573*
1574* Returns:
1575* Either SUCCESS or FAILED.
1576*
1577* Note:
1578**************************************************************************/
1579static int
1580qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1581{
1582 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1583 struct qla_hw_data *ha = vha->hw;
1584 int ret = FAILED;
1585 unsigned int id;
1586 uint64_t lun;
1587 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1588
1589 if (qla2x00_isp_reg_stat(ha)) {
1590 ql_log(ql_log_info, vha, 0x8041,
1591 "PCI/Register disconnect, exiting.\n");
1592 schedule_work(&ha->board_disable);
1593 return SUCCESS;
1594 }
1595
1596 id = cmd->device->id;
1597 lun = cmd->device->lun;
1598
1599 ql_log(ql_log_info, vha, 0x8018,
1600 "ADAPTER RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun);
1601
1602 /*
1603 * No point in issuing another reset if one is active. Also do not
1604 * attempt a reset if we are updating flash.
1605 */
1606 if (qla2x00_reset_active(vha) || ha->optrom_state != QLA_SWAITING)
1607 goto eh_host_reset_lock;
1608
1609 if (vha != base_vha) {
1610 if (qla2x00_vp_abort_isp(vha))
1611 goto eh_host_reset_lock;
1612 } else {
1613 if (IS_P3P_TYPE(vha->hw)) {
1614 if (!qla82xx_fcoe_ctx_reset(vha)) {
1615 /* Ctx reset success */
1616 ret = SUCCESS;
1617 goto eh_host_reset_lock;
1618 }
1619 /* fall thru if ctx reset failed */
1620 }
1621 if (ha->wq)
1622 flush_workqueue(ha->wq);
1623
1624 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1625 if (ha->isp_ops->abort_isp(base_vha)) {
1626 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1627 /* failed. schedule dpc to try */
1628 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1629
1630 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
1631 ql_log(ql_log_warn, vha, 0x802a,
1632 "wait for hba online failed.\n");
1633 goto eh_host_reset_lock;
1634 }
1635 }
1636 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1637 }
1638
1639 /* Waiting for command to be returned to OS.*/
1640 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1641 QLA_SUCCESS)
1642 ret = SUCCESS;
1643
1644eh_host_reset_lock:
1645 ql_log(ql_log_info, vha, 0x8017,
1646 "ADAPTER RESET %s nexus=%ld:%d:%llu.\n",
1647 (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun);
1648
1649 return ret;
1650}
1651
1652/*
1653* qla2x00_loop_reset
1654* Issue loop reset.
1655*
1656* Input:
1657* ha = adapter block pointer.
1658*
1659* Returns:
1660* 0 = success
1661*/
1662int
1663qla2x00_loop_reset(scsi_qla_host_t *vha)
1664{
1665 int ret;
1666 struct fc_port *fcport;
1667 struct qla_hw_data *ha = vha->hw;
1668
1669 if (IS_QLAFX00(ha)) {
1670 return qlafx00_loop_reset(vha);
1671 }
1672
1673 if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) {
1674 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1675 if (fcport->port_type != FCT_TARGET)
1676 continue;
1677
1678 ret = ha->isp_ops->target_reset(fcport, 0, 0);
1679 if (ret != QLA_SUCCESS) {
1680 ql_dbg(ql_dbg_taskm, vha, 0x802c,
1681 "Bus Reset failed: Reset=%d "
1682 "d_id=%x.\n", ret, fcport->d_id.b24);
1683 }
1684 }
1685 }
1686
1687
1688 if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) {
1689 atomic_set(&vha->loop_state, LOOP_DOWN);
1690 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1691 qla2x00_mark_all_devices_lost(vha, 0);
1692 ret = qla2x00_full_login_lip(vha);
1693 if (ret != QLA_SUCCESS) {
1694 ql_dbg(ql_dbg_taskm, vha, 0x802d,
1695 "full_login_lip=%d.\n", ret);
1696 }
1697 }
1698
1699 if (ha->flags.enable_lip_reset) {
1700 ret = qla2x00_lip_reset(vha);
1701 if (ret != QLA_SUCCESS)
1702 ql_dbg(ql_dbg_taskm, vha, 0x802e,
1703 "lip_reset failed (%d).\n", ret);
1704 }
1705
1706 /* Issue marker command only when we are going to start the I/O */
1707 vha->marker_needed = 1;
1708
1709 return QLA_SUCCESS;
1710}
1711
1712static void
1713__qla2x00_abort_all_cmds(struct qla_qpair *qp, int res)
1714{
1715 int cnt, status;
1716 unsigned long flags;
1717 srb_t *sp;
1718 scsi_qla_host_t *vha = qp->vha;
1719 struct qla_hw_data *ha = vha->hw;
1720 struct req_que *req;
1721 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
1722 struct qla_tgt_cmd *cmd;
1723 uint8_t trace = 0;
1724
1725 if (!ha->req_q_map)
1726 return;
1727 spin_lock_irqsave(qp->qp_lock_ptr, flags);
1728 req = qp->req;
1729 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) {
1730 sp = req->outstanding_cmds[cnt];
1731 if (sp) {
1732 req->outstanding_cmds[cnt] = NULL;
1733 if (sp->cmd_type == TYPE_SRB) {
1734 if (sp->type == SRB_NVME_CMD ||
1735 sp->type == SRB_NVME_LS) {
1736 sp_get(sp);
1737 spin_unlock_irqrestore(qp->qp_lock_ptr,
1738 flags);
1739 qla_nvme_abort(ha, sp, res);
1740 spin_lock_irqsave(qp->qp_lock_ptr,
1741 flags);
1742 } else if (GET_CMD_SP(sp) &&
1743 !ha->flags.eeh_busy &&
1744 (!test_bit(ABORT_ISP_ACTIVE,
1745 &vha->dpc_flags)) &&
1746 (sp->type == SRB_SCSI_CMD)) {
1747 /*
1748 * Don't abort commands in
1749 * adapter during EEH
1750 * recovery as it's not
1751 * accessible/responding.
1752 *
1753 * Get a reference to the sp
1754 * and drop the lock. The
1755 * reference ensures this
1756 * sp->done() call and not the
1757 * call in qla2xxx_eh_abort()
1758 * ends the SCSI command (with
1759 * result 'res').
1760 */
1761 sp_get(sp);
1762 spin_unlock_irqrestore(qp->qp_lock_ptr,
1763 flags);
1764 status = qla2xxx_eh_abort(
1765 GET_CMD_SP(sp));
1766 spin_lock_irqsave(qp->qp_lock_ptr,
1767 flags);
1768 /*
1769 * Get rid of extra reference
1770 * if immediate exit from
1771 * ql2xxx_eh_abort
1772 */
1773 if (status == FAILED &&
1774 (qla2x00_isp_reg_stat(ha)))
1775 atomic_dec(
1776 &sp->ref_count);
1777 }
1778 sp->done(sp, res);
1779 } else {
1780 if (!vha->hw->tgt.tgt_ops || !tgt ||
1781 qla_ini_mode_enabled(vha)) {
1782 if (!trace)
1783 ql_dbg(ql_dbg_tgt_mgt,
1784 vha, 0xf003,
1785 "HOST-ABORT-HNDLR: dpc_flags=%lx. Target mode disabled\n",
1786 vha->dpc_flags);
1787 continue;
1788 }
1789 cmd = (struct qla_tgt_cmd *)sp;
1790 qlt_abort_cmd_on_host_reset(cmd->vha, cmd);
1791 }
1792 }
1793 }
1794 spin_unlock_irqrestore(qp->qp_lock_ptr, flags);
1795}
1796
1797void
1798qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
1799{
1800 int que;
1801 struct qla_hw_data *ha = vha->hw;
1802
1803 __qla2x00_abort_all_cmds(ha->base_qpair, res);
1804
1805 for (que = 0; que < ha->max_qpairs; que++) {
1806 if (!ha->queue_pair_map[que])
1807 continue;
1808
1809 __qla2x00_abort_all_cmds(ha->queue_pair_map[que], res);
1810 }
1811}
1812
1813static int
1814qla2xxx_slave_alloc(struct scsi_device *sdev)
1815{
1816 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1817
1818 if (!rport || fc_remote_port_chkready(rport))
1819 return -ENXIO;
1820
1821 sdev->hostdata = *(fc_port_t **)rport->dd_data;
1822
1823 return 0;
1824}
1825
1826static int
1827qla2xxx_slave_configure(struct scsi_device *sdev)
1828{
1829 scsi_qla_host_t *vha = shost_priv(sdev->host);
1830 struct req_que *req = vha->req;
1831
1832 if (IS_T10_PI_CAPABLE(vha->hw))
1833 blk_queue_update_dma_alignment(sdev->request_queue, 0x7);
1834
1835 scsi_change_queue_depth(sdev, req->max_q_depth);
1836 return 0;
1837}
1838
1839static void
1840qla2xxx_slave_destroy(struct scsi_device *sdev)
1841{
1842 sdev->hostdata = NULL;
1843}
1844
1845/**
1846 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1847 * @ha: HA context
1848 *
1849 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1850 * supported addressing method.
1851 */
1852static void
1853qla2x00_config_dma_addressing(struct qla_hw_data *ha)
1854{
1855 /* Assume a 32bit DMA mask. */
1856 ha->flags.enable_64bit_addressing = 0;
1857
1858 if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
1859 /* Any upper-dword bits set? */
1860 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1861 !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
1862 /* Ok, a 64bit DMA mask is applicable. */
1863 ha->flags.enable_64bit_addressing = 1;
1864 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1865 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
1866 return;
1867 }
1868 }
1869
1870 dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1871 pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32));
1872}
1873
1874static void
1875qla2x00_enable_intrs(struct qla_hw_data *ha)
1876{
1877 unsigned long flags = 0;
1878 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1879
1880 spin_lock_irqsave(&ha->hardware_lock, flags);
1881 ha->interrupts_on = 1;
1882 /* enable risc and host interrupts */
1883 WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC);
1884 RD_REG_WORD(®->ictrl);
1885 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1886
1887}
1888
1889static void
1890qla2x00_disable_intrs(struct qla_hw_data *ha)
1891{
1892 unsigned long flags = 0;
1893 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1894
1895 spin_lock_irqsave(&ha->hardware_lock, flags);
1896 ha->interrupts_on = 0;
1897 /* disable risc and host interrupts */
1898 WRT_REG_WORD(®->ictrl, 0);
1899 RD_REG_WORD(®->ictrl);
1900 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1901}
1902
1903static void
1904qla24xx_enable_intrs(struct qla_hw_data *ha)
1905{
1906 unsigned long flags = 0;
1907 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1908
1909 spin_lock_irqsave(&ha->hardware_lock, flags);
1910 ha->interrupts_on = 1;
1911 WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT);
1912 RD_REG_DWORD(®->ictrl);
1913 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1914}
1915
1916static void
1917qla24xx_disable_intrs(struct qla_hw_data *ha)
1918{
1919 unsigned long flags = 0;
1920 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1921
1922 if (IS_NOPOLLING_TYPE(ha))
1923 return;
1924 spin_lock_irqsave(&ha->hardware_lock, flags);
1925 ha->interrupts_on = 0;
1926 WRT_REG_DWORD(®->ictrl, 0);
1927 RD_REG_DWORD(®->ictrl);
1928 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1929}
1930
1931static int
1932qla2x00_iospace_config(struct qla_hw_data *ha)
1933{
1934 resource_size_t pio;
1935 uint16_t msix;
1936
1937 if (pci_request_selected_regions(ha->pdev, ha->bars,
1938 QLA2XXX_DRIVER_NAME)) {
1939 ql_log_pci(ql_log_fatal, ha->pdev, 0x0011,
1940 "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
1941 pci_name(ha->pdev));
1942 goto iospace_error_exit;
1943 }
1944 if (!(ha->bars & 1))
1945 goto skip_pio;
1946
1947 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1948 pio = pci_resource_start(ha->pdev, 0);
1949 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1950 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
1951 ql_log_pci(ql_log_warn, ha->pdev, 0x0012,
1952 "Invalid pci I/O region size (%s).\n",
1953 pci_name(ha->pdev));
1954 pio = 0;
1955 }
1956 } else {
1957 ql_log_pci(ql_log_warn, ha->pdev, 0x0013,
1958 "Region #0 no a PIO resource (%s).\n",
1959 pci_name(ha->pdev));
1960 pio = 0;
1961 }
1962 ha->pio_address = pio;
1963 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014,
1964 "PIO address=%llu.\n",
1965 (unsigned long long)ha->pio_address);
1966
1967skip_pio:
1968 /* Use MMIO operations for all accesses. */
1969 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
1970 ql_log_pci(ql_log_fatal, ha->pdev, 0x0015,
1971 "Region #1 not an MMIO resource (%s), aborting.\n",
1972 pci_name(ha->pdev));
1973 goto iospace_error_exit;
1974 }
1975 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
1976 ql_log_pci(ql_log_fatal, ha->pdev, 0x0016,
1977 "Invalid PCI mem region size (%s), aborting.\n",
1978 pci_name(ha->pdev));
1979 goto iospace_error_exit;
1980 }
1981
1982 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
1983 if (!ha->iobase) {
1984 ql_log_pci(ql_log_fatal, ha->pdev, 0x0017,
1985 "Cannot remap MMIO (%s), aborting.\n",
1986 pci_name(ha->pdev));
1987 goto iospace_error_exit;
1988 }
1989
1990 /* Determine queue resources */
1991 ha->max_req_queues = ha->max_rsp_queues = 1;
1992 ha->msix_count = QLA_BASE_VECTORS;
1993 if (!ql2xmqsupport || !ql2xnvmeenable ||
1994 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
1995 goto mqiobase_exit;
1996
1997 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
1998 pci_resource_len(ha->pdev, 3));
1999 if (ha->mqiobase) {
2000 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018,
2001 "MQIO Base=%p.\n", ha->mqiobase);
2002 /* Read MSIX vector size of the board */
2003 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
2004 ha->msix_count = msix + 1;
2005 /* Max queues are bounded by available msix vectors */
2006 /* MB interrupt uses 1 vector */
2007 ha->max_req_queues = ha->msix_count - 1;
2008 ha->max_rsp_queues = ha->max_req_queues;
2009 /* Queue pairs is the max value minus the base queue pair */
2010 ha->max_qpairs = ha->max_rsp_queues - 1;
2011 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0188,
2012 "Max no of queues pairs: %d.\n", ha->max_qpairs);
2013
2014 ql_log_pci(ql_log_info, ha->pdev, 0x001a,
2015 "MSI-X vector count: %d.\n", ha->msix_count);
2016 } else
2017 ql_log_pci(ql_log_info, ha->pdev, 0x001b,
2018 "BAR 3 not enabled.\n");
2019
2020mqiobase_exit:
2021 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c,
2022 "MSIX Count: %d.\n", ha->msix_count);
2023 return (0);
2024
2025iospace_error_exit:
2026 return (-ENOMEM);
2027}
2028
2029
2030static int
2031qla83xx_iospace_config(struct qla_hw_data *ha)
2032{
2033 uint16_t msix;
2034
2035 if (pci_request_selected_regions(ha->pdev, ha->bars,
2036 QLA2XXX_DRIVER_NAME)) {
2037 ql_log_pci(ql_log_fatal, ha->pdev, 0x0117,
2038 "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
2039 pci_name(ha->pdev));
2040
2041 goto iospace_error_exit;
2042 }
2043
2044 /* Use MMIO operations for all accesses. */
2045 if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) {
2046 ql_log_pci(ql_log_warn, ha->pdev, 0x0118,
2047 "Invalid pci I/O region size (%s).\n",
2048 pci_name(ha->pdev));
2049 goto iospace_error_exit;
2050 }
2051 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
2052 ql_log_pci(ql_log_warn, ha->pdev, 0x0119,
2053 "Invalid PCI mem region size (%s), aborting\n",
2054 pci_name(ha->pdev));
2055 goto iospace_error_exit;
2056 }
2057
2058 ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN);
2059 if (!ha->iobase) {
2060 ql_log_pci(ql_log_fatal, ha->pdev, 0x011a,
2061 "Cannot remap MMIO (%s), aborting.\n",
2062 pci_name(ha->pdev));
2063 goto iospace_error_exit;
2064 }
2065
2066 /* 64bit PCI BAR - BAR2 will correspoond to region 4 */
2067 /* 83XX 26XX always use MQ type access for queues
2068 * - mbar 2, a.k.a region 4 */
2069 ha->max_req_queues = ha->max_rsp_queues = 1;
2070 ha->msix_count = QLA_BASE_VECTORS;
2071 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4),
2072 pci_resource_len(ha->pdev, 4));
2073
2074 if (!ha->mqiobase) {
2075 ql_log_pci(ql_log_fatal, ha->pdev, 0x011d,
2076 "BAR2/region4 not enabled\n");
2077 goto mqiobase_exit;
2078 }
2079
2080 ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2),
2081 pci_resource_len(ha->pdev, 2));
2082 if (ha->msixbase) {
2083 /* Read MSIX vector size of the board */
2084 pci_read_config_word(ha->pdev,
2085 QLA_83XX_PCI_MSIX_CONTROL, &msix);
2086 ha->msix_count = (msix & PCI_MSIX_FLAGS_QSIZE) + 1;
2087 /*
2088 * By default, driver uses at least two msix vectors
2089 * (default & rspq)
2090 */
2091 if (ql2xmqsupport || ql2xnvmeenable) {
2092 /* MB interrupt uses 1 vector */
2093 ha->max_req_queues = ha->msix_count - 1;
2094
2095 /* ATIOQ needs 1 vector. That's 1 less QPair */
2096 if (QLA_TGT_MODE_ENABLED())
2097 ha->max_req_queues--;
2098
2099 ha->max_rsp_queues = ha->max_req_queues;
2100
2101 /* Queue pairs is the max value minus
2102 * the base queue pair */
2103 ha->max_qpairs = ha->max_req_queues - 1;
2104 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x00e3,
2105 "Max no of queues pairs: %d.\n", ha->max_qpairs);
2106 }
2107 ql_log_pci(ql_log_info, ha->pdev, 0x011c,
2108 "MSI-X vector count: %d.\n", ha->msix_count);
2109 } else
2110 ql_log_pci(ql_log_info, ha->pdev, 0x011e,
2111 "BAR 1 not enabled.\n");
2112
2113mqiobase_exit:
2114 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f,
2115 "MSIX Count: %d.\n", ha->msix_count);
2116 return 0;
2117
2118iospace_error_exit:
2119 return -ENOMEM;
2120}
2121
2122static struct isp_operations qla2100_isp_ops = {
2123 .pci_config = qla2100_pci_config,
2124 .reset_chip = qla2x00_reset_chip,
2125 .chip_diag = qla2x00_chip_diag,
2126 .config_rings = qla2x00_config_rings,
2127 .reset_adapter = qla2x00_reset_adapter,
2128 .nvram_config = qla2x00_nvram_config,
2129 .update_fw_options = qla2x00_update_fw_options,
2130 .load_risc = qla2x00_load_risc,
2131 .pci_info_str = qla2x00_pci_info_str,
2132 .fw_version_str = qla2x00_fw_version_str,
2133 .intr_handler = qla2100_intr_handler,
2134 .enable_intrs = qla2x00_enable_intrs,
2135 .disable_intrs = qla2x00_disable_intrs,
2136 .abort_command = qla2x00_abort_command,
2137 .target_reset = qla2x00_abort_target,
2138 .lun_reset = qla2x00_lun_reset,
2139 .fabric_login = qla2x00_login_fabric,
2140 .fabric_logout = qla2x00_fabric_logout,
2141 .calc_req_entries = qla2x00_calc_iocbs_32,
2142 .build_iocbs = qla2x00_build_scsi_iocbs_32,
2143 .prep_ms_iocb = qla2x00_prep_ms_iocb,
2144 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
2145 .read_nvram = qla2x00_read_nvram_data,
2146 .write_nvram = qla2x00_write_nvram_data,
2147 .fw_dump = qla2100_fw_dump,
2148 .beacon_on = NULL,
2149 .beacon_off = NULL,
2150 .beacon_blink = NULL,
2151 .read_optrom = qla2x00_read_optrom_data,
2152 .write_optrom = qla2x00_write_optrom_data,
2153 .get_flash_version = qla2x00_get_flash_version,
2154 .start_scsi = qla2x00_start_scsi,
2155 .start_scsi_mq = NULL,
2156 .abort_isp = qla2x00_abort_isp,
2157 .iospace_config = qla2x00_iospace_config,
2158 .initialize_adapter = qla2x00_initialize_adapter,
2159};
2160
2161static struct isp_operations qla2300_isp_ops = {
2162 .pci_config = qla2300_pci_config,
2163 .reset_chip = qla2x00_reset_chip,
2164 .chip_diag = qla2x00_chip_diag,
2165 .config_rings = qla2x00_config_rings,
2166 .reset_adapter = qla2x00_reset_adapter,
2167 .nvram_config = qla2x00_nvram_config,
2168 .update_fw_options = qla2x00_update_fw_options,
2169 .load_risc = qla2x00_load_risc,
2170 .pci_info_str = qla2x00_pci_info_str,
2171 .fw_version_str = qla2x00_fw_version_str,
2172 .intr_handler = qla2300_intr_handler,
2173 .enable_intrs = qla2x00_enable_intrs,
2174 .disable_intrs = qla2x00_disable_intrs,
2175 .abort_command = qla2x00_abort_command,
2176 .target_reset = qla2x00_abort_target,
2177 .lun_reset = qla2x00_lun_reset,
2178 .fabric_login = qla2x00_login_fabric,
2179 .fabric_logout = qla2x00_fabric_logout,
2180 .calc_req_entries = qla2x00_calc_iocbs_32,
2181 .build_iocbs = qla2x00_build_scsi_iocbs_32,
2182 .prep_ms_iocb = qla2x00_prep_ms_iocb,
2183 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
2184 .read_nvram = qla2x00_read_nvram_data,
2185 .write_nvram = qla2x00_write_nvram_data,
2186 .fw_dump = qla2300_fw_dump,
2187 .beacon_on = qla2x00_beacon_on,
2188 .beacon_off = qla2x00_beacon_off,
2189 .beacon_blink = qla2x00_beacon_blink,
2190 .read_optrom = qla2x00_read_optrom_data,
2191 .write_optrom = qla2x00_write_optrom_data,
2192 .get_flash_version = qla2x00_get_flash_version,
2193 .start_scsi = qla2x00_start_scsi,
2194 .start_scsi_mq = NULL,
2195 .abort_isp = qla2x00_abort_isp,
2196 .iospace_config = qla2x00_iospace_config,
2197 .initialize_adapter = qla2x00_initialize_adapter,
2198};
2199
2200static struct isp_operations qla24xx_isp_ops = {
2201 .pci_config = qla24xx_pci_config,
2202 .reset_chip = qla24xx_reset_chip,
2203 .chip_diag = qla24xx_chip_diag,
2204 .config_rings = qla24xx_config_rings,
2205 .reset_adapter = qla24xx_reset_adapter,
2206 .nvram_config = qla24xx_nvram_config,
2207 .update_fw_options = qla24xx_update_fw_options,
2208 .load_risc = qla24xx_load_risc,
2209 .pci_info_str = qla24xx_pci_info_str,
2210 .fw_version_str = qla24xx_fw_version_str,
2211 .intr_handler = qla24xx_intr_handler,
2212 .enable_intrs = qla24xx_enable_intrs,
2213 .disable_intrs = qla24xx_disable_intrs,
2214 .abort_command = qla24xx_abort_command,
2215 .target_reset = qla24xx_abort_target,
2216 .lun_reset = qla24xx_lun_reset,
2217 .fabric_login = qla24xx_login_fabric,
2218 .fabric_logout = qla24xx_fabric_logout,
2219 .calc_req_entries = NULL,
2220 .build_iocbs = NULL,
2221 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2222 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2223 .read_nvram = qla24xx_read_nvram_data,
2224 .write_nvram = qla24xx_write_nvram_data,
2225 .fw_dump = qla24xx_fw_dump,
2226 .beacon_on = qla24xx_beacon_on,
2227 .beacon_off = qla24xx_beacon_off,
2228 .beacon_blink = qla24xx_beacon_blink,
2229 .read_optrom = qla24xx_read_optrom_data,
2230 .write_optrom = qla24xx_write_optrom_data,
2231 .get_flash_version = qla24xx_get_flash_version,
2232 .start_scsi = qla24xx_start_scsi,
2233 .start_scsi_mq = NULL,
2234 .abort_isp = qla2x00_abort_isp,
2235 .iospace_config = qla2x00_iospace_config,
2236 .initialize_adapter = qla2x00_initialize_adapter,
2237};
2238
2239static struct isp_operations qla25xx_isp_ops = {
2240 .pci_config = qla25xx_pci_config,
2241 .reset_chip = qla24xx_reset_chip,
2242 .chip_diag = qla24xx_chip_diag,
2243 .config_rings = qla24xx_config_rings,
2244 .reset_adapter = qla24xx_reset_adapter,
2245 .nvram_config = qla24xx_nvram_config,
2246 .update_fw_options = qla24xx_update_fw_options,
2247 .load_risc = qla24xx_load_risc,
2248 .pci_info_str = qla24xx_pci_info_str,
2249 .fw_version_str = qla24xx_fw_version_str,
2250 .intr_handler = qla24xx_intr_handler,
2251 .enable_intrs = qla24xx_enable_intrs,
2252 .disable_intrs = qla24xx_disable_intrs,
2253 .abort_command = qla24xx_abort_command,
2254 .target_reset = qla24xx_abort_target,
2255 .lun_reset = qla24xx_lun_reset,
2256 .fabric_login = qla24xx_login_fabric,
2257 .fabric_logout = qla24xx_fabric_logout,
2258 .calc_req_entries = NULL,
2259 .build_iocbs = NULL,
2260 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2261 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2262 .read_nvram = qla25xx_read_nvram_data,
2263 .write_nvram = qla25xx_write_nvram_data,
2264 .fw_dump = qla25xx_fw_dump,
2265 .beacon_on = qla24xx_beacon_on,
2266 .beacon_off = qla24xx_beacon_off,
2267 .beacon_blink = qla24xx_beacon_blink,
2268 .read_optrom = qla25xx_read_optrom_data,
2269 .write_optrom = qla24xx_write_optrom_data,
2270 .get_flash_version = qla24xx_get_flash_version,
2271 .start_scsi = qla24xx_dif_start_scsi,
2272 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2273 .abort_isp = qla2x00_abort_isp,
2274 .iospace_config = qla2x00_iospace_config,
2275 .initialize_adapter = qla2x00_initialize_adapter,
2276};
2277
2278static struct isp_operations qla81xx_isp_ops = {
2279 .pci_config = qla25xx_pci_config,
2280 .reset_chip = qla24xx_reset_chip,
2281 .chip_diag = qla24xx_chip_diag,
2282 .config_rings = qla24xx_config_rings,
2283 .reset_adapter = qla24xx_reset_adapter,
2284 .nvram_config = qla81xx_nvram_config,
2285 .update_fw_options = qla81xx_update_fw_options,
2286 .load_risc = qla81xx_load_risc,
2287 .pci_info_str = qla24xx_pci_info_str,
2288 .fw_version_str = qla24xx_fw_version_str,
2289 .intr_handler = qla24xx_intr_handler,
2290 .enable_intrs = qla24xx_enable_intrs,
2291 .disable_intrs = qla24xx_disable_intrs,
2292 .abort_command = qla24xx_abort_command,
2293 .target_reset = qla24xx_abort_target,
2294 .lun_reset = qla24xx_lun_reset,
2295 .fabric_login = qla24xx_login_fabric,
2296 .fabric_logout = qla24xx_fabric_logout,
2297 .calc_req_entries = NULL,
2298 .build_iocbs = NULL,
2299 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2300 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2301 .read_nvram = NULL,
2302 .write_nvram = NULL,
2303 .fw_dump = qla81xx_fw_dump,
2304 .beacon_on = qla24xx_beacon_on,
2305 .beacon_off = qla24xx_beacon_off,
2306 .beacon_blink = qla83xx_beacon_blink,
2307 .read_optrom = qla25xx_read_optrom_data,
2308 .write_optrom = qla24xx_write_optrom_data,
2309 .get_flash_version = qla24xx_get_flash_version,
2310 .start_scsi = qla24xx_dif_start_scsi,
2311 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2312 .abort_isp = qla2x00_abort_isp,
2313 .iospace_config = qla2x00_iospace_config,
2314 .initialize_adapter = qla2x00_initialize_adapter,
2315};
2316
2317static struct isp_operations qla82xx_isp_ops = {
2318 .pci_config = qla82xx_pci_config,
2319 .reset_chip = qla82xx_reset_chip,
2320 .chip_diag = qla24xx_chip_diag,
2321 .config_rings = qla82xx_config_rings,
2322 .reset_adapter = qla24xx_reset_adapter,
2323 .nvram_config = qla81xx_nvram_config,
2324 .update_fw_options = qla24xx_update_fw_options,
2325 .load_risc = qla82xx_load_risc,
2326 .pci_info_str = qla24xx_pci_info_str,
2327 .fw_version_str = qla24xx_fw_version_str,
2328 .intr_handler = qla82xx_intr_handler,
2329 .enable_intrs = qla82xx_enable_intrs,
2330 .disable_intrs = qla82xx_disable_intrs,
2331 .abort_command = qla24xx_abort_command,
2332 .target_reset = qla24xx_abort_target,
2333 .lun_reset = qla24xx_lun_reset,
2334 .fabric_login = qla24xx_login_fabric,
2335 .fabric_logout = qla24xx_fabric_logout,
2336 .calc_req_entries = NULL,
2337 .build_iocbs = NULL,
2338 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2339 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2340 .read_nvram = qla24xx_read_nvram_data,
2341 .write_nvram = qla24xx_write_nvram_data,
2342 .fw_dump = qla82xx_fw_dump,
2343 .beacon_on = qla82xx_beacon_on,
2344 .beacon_off = qla82xx_beacon_off,
2345 .beacon_blink = NULL,
2346 .read_optrom = qla82xx_read_optrom_data,
2347 .write_optrom = qla82xx_write_optrom_data,
2348 .get_flash_version = qla82xx_get_flash_version,
2349 .start_scsi = qla82xx_start_scsi,
2350 .start_scsi_mq = NULL,
2351 .abort_isp = qla82xx_abort_isp,
2352 .iospace_config = qla82xx_iospace_config,
2353 .initialize_adapter = qla2x00_initialize_adapter,
2354};
2355
2356static struct isp_operations qla8044_isp_ops = {
2357 .pci_config = qla82xx_pci_config,
2358 .reset_chip = qla82xx_reset_chip,
2359 .chip_diag = qla24xx_chip_diag,
2360 .config_rings = qla82xx_config_rings,
2361 .reset_adapter = qla24xx_reset_adapter,
2362 .nvram_config = qla81xx_nvram_config,
2363 .update_fw_options = qla24xx_update_fw_options,
2364 .load_risc = qla82xx_load_risc,
2365 .pci_info_str = qla24xx_pci_info_str,
2366 .fw_version_str = qla24xx_fw_version_str,
2367 .intr_handler = qla8044_intr_handler,
2368 .enable_intrs = qla82xx_enable_intrs,
2369 .disable_intrs = qla82xx_disable_intrs,
2370 .abort_command = qla24xx_abort_command,
2371 .target_reset = qla24xx_abort_target,
2372 .lun_reset = qla24xx_lun_reset,
2373 .fabric_login = qla24xx_login_fabric,
2374 .fabric_logout = qla24xx_fabric_logout,
2375 .calc_req_entries = NULL,
2376 .build_iocbs = NULL,
2377 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2378 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2379 .read_nvram = NULL,
2380 .write_nvram = NULL,
2381 .fw_dump = qla8044_fw_dump,
2382 .beacon_on = qla82xx_beacon_on,
2383 .beacon_off = qla82xx_beacon_off,
2384 .beacon_blink = NULL,
2385 .read_optrom = qla8044_read_optrom_data,
2386 .write_optrom = qla8044_write_optrom_data,
2387 .get_flash_version = qla82xx_get_flash_version,
2388 .start_scsi = qla82xx_start_scsi,
2389 .start_scsi_mq = NULL,
2390 .abort_isp = qla8044_abort_isp,
2391 .iospace_config = qla82xx_iospace_config,
2392 .initialize_adapter = qla2x00_initialize_adapter,
2393};
2394
2395static struct isp_operations qla83xx_isp_ops = {
2396 .pci_config = qla25xx_pci_config,
2397 .reset_chip = qla24xx_reset_chip,
2398 .chip_diag = qla24xx_chip_diag,
2399 .config_rings = qla24xx_config_rings,
2400 .reset_adapter = qla24xx_reset_adapter,
2401 .nvram_config = qla81xx_nvram_config,
2402 .update_fw_options = qla81xx_update_fw_options,
2403 .load_risc = qla81xx_load_risc,
2404 .pci_info_str = qla24xx_pci_info_str,
2405 .fw_version_str = qla24xx_fw_version_str,
2406 .intr_handler = qla24xx_intr_handler,
2407 .enable_intrs = qla24xx_enable_intrs,
2408 .disable_intrs = qla24xx_disable_intrs,
2409 .abort_command = qla24xx_abort_command,
2410 .target_reset = qla24xx_abort_target,
2411 .lun_reset = qla24xx_lun_reset,
2412 .fabric_login = qla24xx_login_fabric,
2413 .fabric_logout = qla24xx_fabric_logout,
2414 .calc_req_entries = NULL,
2415 .build_iocbs = NULL,
2416 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2417 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2418 .read_nvram = NULL,
2419 .write_nvram = NULL,
2420 .fw_dump = qla83xx_fw_dump,
2421 .beacon_on = qla24xx_beacon_on,
2422 .beacon_off = qla24xx_beacon_off,
2423 .beacon_blink = qla83xx_beacon_blink,
2424 .read_optrom = qla25xx_read_optrom_data,
2425 .write_optrom = qla24xx_write_optrom_data,
2426 .get_flash_version = qla24xx_get_flash_version,
2427 .start_scsi = qla24xx_dif_start_scsi,
2428 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2429 .abort_isp = qla2x00_abort_isp,
2430 .iospace_config = qla83xx_iospace_config,
2431 .initialize_adapter = qla2x00_initialize_adapter,
2432};
2433
2434static struct isp_operations qlafx00_isp_ops = {
2435 .pci_config = qlafx00_pci_config,
2436 .reset_chip = qlafx00_soft_reset,
2437 .chip_diag = qlafx00_chip_diag,
2438 .config_rings = qlafx00_config_rings,
2439 .reset_adapter = qlafx00_soft_reset,
2440 .nvram_config = NULL,
2441 .update_fw_options = NULL,
2442 .load_risc = NULL,
2443 .pci_info_str = qlafx00_pci_info_str,
2444 .fw_version_str = qlafx00_fw_version_str,
2445 .intr_handler = qlafx00_intr_handler,
2446 .enable_intrs = qlafx00_enable_intrs,
2447 .disable_intrs = qlafx00_disable_intrs,
2448 .abort_command = qla24xx_async_abort_command,
2449 .target_reset = qlafx00_abort_target,
2450 .lun_reset = qlafx00_lun_reset,
2451 .fabric_login = NULL,
2452 .fabric_logout = NULL,
2453 .calc_req_entries = NULL,
2454 .build_iocbs = NULL,
2455 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2456 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2457 .read_nvram = qla24xx_read_nvram_data,
2458 .write_nvram = qla24xx_write_nvram_data,
2459 .fw_dump = NULL,
2460 .beacon_on = qla24xx_beacon_on,
2461 .beacon_off = qla24xx_beacon_off,
2462 .beacon_blink = NULL,
2463 .read_optrom = qla24xx_read_optrom_data,
2464 .write_optrom = qla24xx_write_optrom_data,
2465 .get_flash_version = qla24xx_get_flash_version,
2466 .start_scsi = qlafx00_start_scsi,
2467 .start_scsi_mq = NULL,
2468 .abort_isp = qlafx00_abort_isp,
2469 .iospace_config = qlafx00_iospace_config,
2470 .initialize_adapter = qlafx00_initialize_adapter,
2471};
2472
2473static struct isp_operations qla27xx_isp_ops = {
2474 .pci_config = qla25xx_pci_config,
2475 .reset_chip = qla24xx_reset_chip,
2476 .chip_diag = qla24xx_chip_diag,
2477 .config_rings = qla24xx_config_rings,
2478 .reset_adapter = qla24xx_reset_adapter,
2479 .nvram_config = qla81xx_nvram_config,
2480 .update_fw_options = qla81xx_update_fw_options,
2481 .load_risc = qla81xx_load_risc,
2482 .pci_info_str = qla24xx_pci_info_str,
2483 .fw_version_str = qla24xx_fw_version_str,
2484 .intr_handler = qla24xx_intr_handler,
2485 .enable_intrs = qla24xx_enable_intrs,
2486 .disable_intrs = qla24xx_disable_intrs,
2487 .abort_command = qla24xx_abort_command,
2488 .target_reset = qla24xx_abort_target,
2489 .lun_reset = qla24xx_lun_reset,
2490 .fabric_login = qla24xx_login_fabric,
2491 .fabric_logout = qla24xx_fabric_logout,
2492 .calc_req_entries = NULL,
2493 .build_iocbs = NULL,
2494 .prep_ms_iocb = qla24xx_prep_ms_iocb,
2495 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
2496 .read_nvram = NULL,
2497 .write_nvram = NULL,
2498 .fw_dump = qla27xx_fwdump,
2499 .beacon_on = qla24xx_beacon_on,
2500 .beacon_off = qla24xx_beacon_off,
2501 .beacon_blink = qla83xx_beacon_blink,
2502 .read_optrom = qla25xx_read_optrom_data,
2503 .write_optrom = qla24xx_write_optrom_data,
2504 .get_flash_version = qla24xx_get_flash_version,
2505 .start_scsi = qla24xx_dif_start_scsi,
2506 .start_scsi_mq = qla2xxx_dif_start_scsi_mq,
2507 .abort_isp = qla2x00_abort_isp,
2508 .iospace_config = qla83xx_iospace_config,
2509 .initialize_adapter = qla2x00_initialize_adapter,
2510};
2511
2512static inline void
2513qla2x00_set_isp_flags(struct qla_hw_data *ha)
2514{
2515 ha->device_type = DT_EXTENDED_IDS;
2516 switch (ha->pdev->device) {
2517 case PCI_DEVICE_ID_QLOGIC_ISP2100:
2518 ha->isp_type |= DT_ISP2100;
2519 ha->device_type &= ~DT_EXTENDED_IDS;
2520 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2521 break;
2522 case PCI_DEVICE_ID_QLOGIC_ISP2200:
2523 ha->isp_type |= DT_ISP2200;
2524 ha->device_type &= ~DT_EXTENDED_IDS;
2525 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
2526 break;
2527 case PCI_DEVICE_ID_QLOGIC_ISP2300:
2528 ha->isp_type |= DT_ISP2300;
2529 ha->device_type |= DT_ZIO_SUPPORTED;
2530 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2531 break;
2532 case PCI_DEVICE_ID_QLOGIC_ISP2312:
2533 ha->isp_type |= DT_ISP2312;
2534 ha->device_type |= DT_ZIO_SUPPORTED;
2535 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2536 break;
2537 case PCI_DEVICE_ID_QLOGIC_ISP2322:
2538 ha->isp_type |= DT_ISP2322;
2539 ha->device_type |= DT_ZIO_SUPPORTED;
2540 if (ha->pdev->subsystem_vendor == 0x1028 &&
2541 ha->pdev->subsystem_device == 0x0170)
2542 ha->device_type |= DT_OEM_001;
2543 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2544 break;
2545 case PCI_DEVICE_ID_QLOGIC_ISP6312:
2546 ha->isp_type |= DT_ISP6312;
2547 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2548 break;
2549 case PCI_DEVICE_ID_QLOGIC_ISP6322:
2550 ha->isp_type |= DT_ISP6322;
2551 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
2552 break;
2553 case PCI_DEVICE_ID_QLOGIC_ISP2422:
2554 ha->isp_type |= DT_ISP2422;
2555 ha->device_type |= DT_ZIO_SUPPORTED;
2556 ha->device_type |= DT_FWI2;
2557 ha->device_type |= DT_IIDMA;
2558 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2559 break;
2560 case PCI_DEVICE_ID_QLOGIC_ISP2432:
2561 ha->isp_type |= DT_ISP2432;
2562 ha->device_type |= DT_ZIO_SUPPORTED;
2563 ha->device_type |= DT_FWI2;
2564 ha->device_type |= DT_IIDMA;
2565 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2566 break;
2567 case PCI_DEVICE_ID_QLOGIC_ISP8432:
2568 ha->isp_type |= DT_ISP8432;
2569 ha->device_type |= DT_ZIO_SUPPORTED;
2570 ha->device_type |= DT_FWI2;
2571 ha->device_type |= DT_IIDMA;
2572 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2573 break;
2574 case PCI_DEVICE_ID_QLOGIC_ISP5422:
2575 ha->isp_type |= DT_ISP5422;
2576 ha->device_type |= DT_FWI2;
2577 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2578 break;
2579 case PCI_DEVICE_ID_QLOGIC_ISP5432:
2580 ha->isp_type |= DT_ISP5432;
2581 ha->device_type |= DT_FWI2;
2582 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2583 break;
2584 case PCI_DEVICE_ID_QLOGIC_ISP2532:
2585 ha->isp_type |= DT_ISP2532;
2586 ha->device_type |= DT_ZIO_SUPPORTED;
2587 ha->device_type |= DT_FWI2;
2588 ha->device_type |= DT_IIDMA;
2589 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2590 break;
2591 case PCI_DEVICE_ID_QLOGIC_ISP8001:
2592 ha->isp_type |= DT_ISP8001;
2593 ha->device_type |= DT_ZIO_SUPPORTED;
2594 ha->device_type |= DT_FWI2;
2595 ha->device_type |= DT_IIDMA;
2596 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2597 break;
2598 case PCI_DEVICE_ID_QLOGIC_ISP8021:
2599 ha->isp_type |= DT_ISP8021;
2600 ha->device_type |= DT_ZIO_SUPPORTED;
2601 ha->device_type |= DT_FWI2;
2602 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2603 /* Initialize 82XX ISP flags */
2604 qla82xx_init_flags(ha);
2605 break;
2606 case PCI_DEVICE_ID_QLOGIC_ISP8044:
2607 ha->isp_type |= DT_ISP8044;
2608 ha->device_type |= DT_ZIO_SUPPORTED;
2609 ha->device_type |= DT_FWI2;
2610 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2611 /* Initialize 82XX ISP flags */
2612 qla82xx_init_flags(ha);
2613 break;
2614 case PCI_DEVICE_ID_QLOGIC_ISP2031:
2615 ha->isp_type |= DT_ISP2031;
2616 ha->device_type |= DT_ZIO_SUPPORTED;
2617 ha->device_type |= DT_FWI2;
2618 ha->device_type |= DT_IIDMA;
2619 ha->device_type |= DT_T10_PI;
2620 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2621 break;
2622 case PCI_DEVICE_ID_QLOGIC_ISP8031:
2623 ha->isp_type |= DT_ISP8031;
2624 ha->device_type |= DT_ZIO_SUPPORTED;
2625 ha->device_type |= DT_FWI2;
2626 ha->device_type |= DT_IIDMA;
2627 ha->device_type |= DT_T10_PI;
2628 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2629 break;
2630 case PCI_DEVICE_ID_QLOGIC_ISPF001:
2631 ha->isp_type |= DT_ISPFX00;
2632 break;
2633 case PCI_DEVICE_ID_QLOGIC_ISP2071:
2634 ha->isp_type |= DT_ISP2071;
2635 ha->device_type |= DT_ZIO_SUPPORTED;
2636 ha->device_type |= DT_FWI2;
2637 ha->device_type |= DT_IIDMA;
2638 ha->device_type |= DT_T10_PI;
2639 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2640 break;
2641 case PCI_DEVICE_ID_QLOGIC_ISP2271:
2642 ha->isp_type |= DT_ISP2271;
2643 ha->device_type |= DT_ZIO_SUPPORTED;
2644 ha->device_type |= DT_FWI2;
2645 ha->device_type |= DT_IIDMA;
2646 ha->device_type |= DT_T10_PI;
2647 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2648 break;
2649 case PCI_DEVICE_ID_QLOGIC_ISP2261:
2650 ha->isp_type |= DT_ISP2261;
2651 ha->device_type |= DT_ZIO_SUPPORTED;
2652 ha->device_type |= DT_FWI2;
2653 ha->device_type |= DT_IIDMA;
2654 ha->device_type |= DT_T10_PI;
2655 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
2656 break;
2657 }
2658
2659 if (IS_QLA82XX(ha))
2660 ha->port_no = ha->portnum & 1;
2661 else {
2662 /* Get adapter physical port no from interrupt pin register. */
2663 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
2664 if (IS_QLA27XX(ha))
2665 ha->port_no--;
2666 else
2667 ha->port_no = !(ha->port_no & 1);
2668 }
2669
2670 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b,
2671 "device_type=0x%x port=%d fw_srisc_address=0x%x.\n",
2672 ha->device_type, ha->port_no, ha->fw_srisc_address);
2673}
2674
2675static void
2676qla2xxx_scan_start(struct Scsi_Host *shost)
2677{
2678 scsi_qla_host_t *vha = shost_priv(shost);
2679
2680 if (vha->hw->flags.running_gold_fw)
2681 return;
2682
2683 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
2684 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
2685 set_bit(RSCN_UPDATE, &vha->dpc_flags);
2686 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
2687}
2688
2689static int
2690qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
2691{
2692 scsi_qla_host_t *vha = shost_priv(shost);
2693
2694 if (test_bit(UNLOADING, &vha->dpc_flags))
2695 return 1;
2696 if (!vha->host)
2697 return 1;
2698 if (time > vha->hw->loop_reset_delay * HZ)
2699 return 1;
2700
2701 return atomic_read(&vha->loop_state) == LOOP_READY;
2702}
2703
2704static void qla2x00_iocb_work_fn(struct work_struct *work)
2705{
2706 struct scsi_qla_host *vha = container_of(work,
2707 struct scsi_qla_host, iocb_work);
2708 struct qla_hw_data *ha = vha->hw;
2709 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
2710 int i = 20;
2711 unsigned long flags;
2712
2713 if (test_bit(UNLOADING, &base_vha->dpc_flags))
2714 return;
2715
2716 while (!list_empty(&vha->work_list) && i > 0) {
2717 qla2x00_do_work(vha);
2718 i--;
2719 }
2720
2721 spin_lock_irqsave(&vha->work_lock, flags);
2722 clear_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags);
2723 spin_unlock_irqrestore(&vha->work_lock, flags);
2724}
2725
2726/*
2727 * PCI driver interface
2728 */
2729static int
2730qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
2731{
2732 int ret = -ENODEV;
2733 struct Scsi_Host *host;
2734 scsi_qla_host_t *base_vha = NULL;
2735 struct qla_hw_data *ha;
2736 char pci_info[30];
2737 char fw_str[30], wq_name[30];
2738 struct scsi_host_template *sht;
2739 int bars, mem_only = 0;
2740 uint16_t req_length = 0, rsp_length = 0;
2741 struct req_que *req = NULL;
2742 struct rsp_que *rsp = NULL;
2743 int i;
2744
2745 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
2746 sht = &qla2xxx_driver_template;
2747 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
2748 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
2749 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
2750 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
2751 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
2752 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
2753 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
2754 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 ||
2755 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 ||
2756 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 ||
2757 pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 ||
2758 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 ||
2759 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 ||
2760 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271 ||
2761 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2261) {
2762 bars = pci_select_bars(pdev, IORESOURCE_MEM);
2763 mem_only = 1;
2764 ql_dbg_pci(ql_dbg_init, pdev, 0x0007,
2765 "Mem only adapter.\n");
2766 }
2767 ql_dbg_pci(ql_dbg_init, pdev, 0x0008,
2768 "Bars=%d.\n", bars);
2769
2770 if (mem_only) {
2771 if (pci_enable_device_mem(pdev))
2772 return ret;
2773 } else {
2774 if (pci_enable_device(pdev))
2775 return ret;
2776 }
2777
2778 /* This may fail but that's ok */
2779 pci_enable_pcie_error_reporting(pdev);
2780
2781 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
2782 if (!ha) {
2783 ql_log_pci(ql_log_fatal, pdev, 0x0009,
2784 "Unable to allocate memory for ha.\n");
2785 goto disable_device;
2786 }
2787 ql_dbg_pci(ql_dbg_init, pdev, 0x000a,
2788 "Memory allocated for ha=%p.\n", ha);
2789 ha->pdev = pdev;
2790 INIT_LIST_HEAD(&ha->tgt.q_full_list);
2791 spin_lock_init(&ha->tgt.q_full_lock);
2792 spin_lock_init(&ha->tgt.sess_lock);
2793 spin_lock_init(&ha->tgt.atio_lock);
2794
2795 atomic_set(&ha->nvme_active_aen_cnt, 0);
2796
2797 /* Clear our data area */
2798 ha->bars = bars;
2799 ha->mem_only = mem_only;
2800 spin_lock_init(&ha->hardware_lock);
2801 spin_lock_init(&ha->vport_slock);
2802 mutex_init(&ha->selflogin_lock);
2803 mutex_init(&ha->optrom_mutex);
2804
2805 /* Set ISP-type information. */
2806 qla2x00_set_isp_flags(ha);
2807
2808 /* Set EEH reset type to fundamental if required by hba */
2809 if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) ||
2810 IS_QLA83XX(ha) || IS_QLA27XX(ha))
2811 pdev->needs_freset = 1;
2812
2813 ha->prev_topology = 0;
2814 ha->init_cb_size = sizeof(init_cb_t);
2815 ha->link_data_rate = PORT_SPEED_UNKNOWN;
2816 ha->optrom_size = OPTROM_SIZE_2300;
2817 ha->max_exchg = FW_MAX_EXCHANGES_CNT;
2818
2819 /* Assign ISP specific operations. */
2820 if (IS_QLA2100(ha)) {
2821 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2822 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
2823 req_length = REQUEST_ENTRY_CNT_2100;
2824 rsp_length = RESPONSE_ENTRY_CNT_2100;
2825 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2826 ha->gid_list_info_size = 4;
2827 ha->flash_conf_off = ~0;
2828 ha->flash_data_off = ~0;
2829 ha->nvram_conf_off = ~0;
2830 ha->nvram_data_off = ~0;
2831 ha->isp_ops = &qla2100_isp_ops;
2832 } else if (IS_QLA2200(ha)) {
2833 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2834 ha->mbx_count = MAILBOX_REGISTER_COUNT_2200;
2835 req_length = REQUEST_ENTRY_CNT_2200;
2836 rsp_length = RESPONSE_ENTRY_CNT_2100;
2837 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
2838 ha->gid_list_info_size = 4;
2839 ha->flash_conf_off = ~0;
2840 ha->flash_data_off = ~0;
2841 ha->nvram_conf_off = ~0;
2842 ha->nvram_data_off = ~0;
2843 ha->isp_ops = &qla2100_isp_ops;
2844 } else if (IS_QLA23XX(ha)) {
2845 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100;
2846 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2847 req_length = REQUEST_ENTRY_CNT_2200;
2848 rsp_length = RESPONSE_ENTRY_CNT_2300;
2849 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2850 ha->gid_list_info_size = 6;
2851 if (IS_QLA2322(ha) || IS_QLA6322(ha))
2852 ha->optrom_size = OPTROM_SIZE_2322;
2853 ha->flash_conf_off = ~0;
2854 ha->flash_data_off = ~0;
2855 ha->nvram_conf_off = ~0;
2856 ha->nvram_data_off = ~0;
2857 ha->isp_ops = &qla2300_isp_ops;
2858 } else if (IS_QLA24XX_TYPE(ha)) {
2859 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2860 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2861 req_length = REQUEST_ENTRY_CNT_24XX;
2862 rsp_length = RESPONSE_ENTRY_CNT_2300;
2863 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2864 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2865 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2866 ha->gid_list_info_size = 8;
2867 ha->optrom_size = OPTROM_SIZE_24XX;
2868 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
2869 ha->isp_ops = &qla24xx_isp_ops;
2870 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2871 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2872 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2873 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2874 } else if (IS_QLA25XX(ha)) {
2875 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2876 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2877 req_length = REQUEST_ENTRY_CNT_24XX;
2878 rsp_length = RESPONSE_ENTRY_CNT_2300;
2879 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2880 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2881 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2882 ha->gid_list_info_size = 8;
2883 ha->optrom_size = OPTROM_SIZE_25XX;
2884 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2885 ha->isp_ops = &qla25xx_isp_ops;
2886 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2887 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2888 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2889 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2890 } else if (IS_QLA81XX(ha)) {
2891 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2892 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2893 req_length = REQUEST_ENTRY_CNT_24XX;
2894 rsp_length = RESPONSE_ENTRY_CNT_2300;
2895 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2896 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2897 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2898 ha->gid_list_info_size = 8;
2899 ha->optrom_size = OPTROM_SIZE_81XX;
2900 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2901 ha->isp_ops = &qla81xx_isp_ops;
2902 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2903 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2904 ha->nvram_conf_off = ~0;
2905 ha->nvram_data_off = ~0;
2906 } else if (IS_QLA82XX(ha)) {
2907 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2908 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2909 req_length = REQUEST_ENTRY_CNT_82XX;
2910 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2911 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2912 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2913 ha->gid_list_info_size = 8;
2914 ha->optrom_size = OPTROM_SIZE_82XX;
2915 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2916 ha->isp_ops = &qla82xx_isp_ops;
2917 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2918 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2919 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2920 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2921 } else if (IS_QLA8044(ha)) {
2922 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2923 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2924 req_length = REQUEST_ENTRY_CNT_82XX;
2925 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2926 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2927 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2928 ha->gid_list_info_size = 8;
2929 ha->optrom_size = OPTROM_SIZE_83XX;
2930 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2931 ha->isp_ops = &qla8044_isp_ops;
2932 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2933 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2934 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2935 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2936 } else if (IS_QLA83XX(ha)) {
2937 ha->portnum = PCI_FUNC(ha->pdev->devfn);
2938 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2939 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2940 req_length = REQUEST_ENTRY_CNT_83XX;
2941 rsp_length = RESPONSE_ENTRY_CNT_83XX;
2942 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2943 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2944 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2945 ha->gid_list_info_size = 8;
2946 ha->optrom_size = OPTROM_SIZE_83XX;
2947 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2948 ha->isp_ops = &qla83xx_isp_ops;
2949 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2950 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2951 ha->nvram_conf_off = ~0;
2952 ha->nvram_data_off = ~0;
2953 } else if (IS_QLAFX00(ha)) {
2954 ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00;
2955 ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00;
2956 ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00;
2957 req_length = REQUEST_ENTRY_CNT_FX00;
2958 rsp_length = RESPONSE_ENTRY_CNT_FX00;
2959 ha->isp_ops = &qlafx00_isp_ops;
2960 ha->port_down_retry_count = 30; /* default value */
2961 ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL;
2962 ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
2963 ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL;
2964 ha->mr.fw_hbt_en = 1;
2965 ha->mr.host_info_resend = false;
2966 ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL;
2967 } else if (IS_QLA27XX(ha)) {
2968 ha->portnum = PCI_FUNC(ha->pdev->devfn);
2969 ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400;
2970 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2971 req_length = REQUEST_ENTRY_CNT_83XX;
2972 rsp_length = RESPONSE_ENTRY_CNT_83XX;
2973 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
2974 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2975 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2976 ha->gid_list_info_size = 8;
2977 ha->optrom_size = OPTROM_SIZE_83XX;
2978 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
2979 ha->isp_ops = &qla27xx_isp_ops;
2980 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2981 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2982 ha->nvram_conf_off = ~0;
2983 ha->nvram_data_off = ~0;
2984 }
2985
2986 ql_dbg_pci(ql_dbg_init, pdev, 0x001e,
2987 "mbx_count=%d, req_length=%d, "
2988 "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, "
2989 "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, "
2990 "max_fibre_devices=%d.\n",
2991 ha->mbx_count, req_length, rsp_length, ha->max_loop_id,
2992 ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size,
2993 ha->nvram_npiv_size, ha->max_fibre_devices);
2994 ql_dbg_pci(ql_dbg_init, pdev, 0x001f,
2995 "isp_ops=%p, flash_conf_off=%d, "
2996 "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n",
2997 ha->isp_ops, ha->flash_conf_off, ha->flash_data_off,
2998 ha->nvram_conf_off, ha->nvram_data_off);
2999
3000 /* Configure PCI I/O space */
3001 ret = ha->isp_ops->iospace_config(ha);
3002 if (ret)
3003 goto iospace_config_failed;
3004
3005 ql_log_pci(ql_log_info, pdev, 0x001d,
3006 "Found an ISP%04X irq %d iobase 0x%p.\n",
3007 pdev->device, pdev->irq, ha->iobase);
3008 mutex_init(&ha->vport_lock);
3009 mutex_init(&ha->mq_lock);
3010 init_completion(&ha->mbx_cmd_comp);
3011 complete(&ha->mbx_cmd_comp);
3012 init_completion(&ha->mbx_intr_comp);
3013 init_completion(&ha->dcbx_comp);
3014 init_completion(&ha->lb_portup_comp);
3015
3016 set_bit(0, (unsigned long *) ha->vp_idx_map);
3017
3018 qla2x00_config_dma_addressing(ha);
3019 ql_dbg_pci(ql_dbg_init, pdev, 0x0020,
3020 "64 Bit addressing is %s.\n",
3021 ha->flags.enable_64bit_addressing ? "enable" :
3022 "disable");
3023 ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
3024 if (ret) {
3025 ql_log_pci(ql_log_fatal, pdev, 0x0031,
3026 "Failed to allocate memory for adapter, aborting.\n");
3027
3028 goto probe_hw_failed;
3029 }
3030
3031 req->max_q_depth = MAX_Q_DEPTH;
3032 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
3033 req->max_q_depth = ql2xmaxqdepth;
3034
3035
3036 base_vha = qla2x00_create_host(sht, ha);
3037 if (!base_vha) {
3038 ret = -ENOMEM;
3039 goto probe_hw_failed;
3040 }
3041
3042 pci_set_drvdata(pdev, base_vha);
3043 set_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3044
3045 host = base_vha->host;
3046 base_vha->req = req;
3047 if (IS_QLA2XXX_MIDTYPE(ha))
3048 base_vha->mgmt_svr_loop_id = NPH_MGMT_SERVER;
3049 else
3050 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
3051 base_vha->vp_idx;
3052
3053 /* Setup fcport template structure. */
3054 ha->mr.fcport.vha = base_vha;
3055 ha->mr.fcport.port_type = FCT_UNKNOWN;
3056 ha->mr.fcport.loop_id = FC_NO_LOOP_ID;
3057 qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED);
3058 ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED;
3059 ha->mr.fcport.scan_state = 1;
3060
3061 /* Set the SG table size based on ISP type */
3062 if (!IS_FWI2_CAPABLE(ha)) {
3063 if (IS_QLA2100(ha))
3064 host->sg_tablesize = 32;
3065 } else {
3066 if (!IS_QLA82XX(ha))
3067 host->sg_tablesize = QLA_SG_ALL;
3068 }
3069 host->max_id = ha->max_fibre_devices;
3070 host->cmd_per_lun = 3;
3071 host->unique_id = host->host_no;
3072 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
3073 host->max_cmd_len = 32;
3074 else
3075 host->max_cmd_len = MAX_CMDSZ;
3076 host->max_channel = MAX_BUSES - 1;
3077 /* Older HBAs support only 16-bit LUNs */
3078 if (!IS_QLAFX00(ha) && !IS_FWI2_CAPABLE(ha) &&
3079 ql2xmaxlun > 0xffff)
3080 host->max_lun = 0xffff;
3081 else
3082 host->max_lun = ql2xmaxlun;
3083 host->transportt = qla2xxx_transport_template;
3084 sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
3085
3086 ql_dbg(ql_dbg_init, base_vha, 0x0033,
3087 "max_id=%d this_id=%d "
3088 "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d "
3089 "max_lun=%llu transportt=%p, vendor_id=%llu.\n", host->max_id,
3090 host->this_id, host->cmd_per_lun, host->unique_id,
3091 host->max_cmd_len, host->max_channel, host->max_lun,
3092 host->transportt, sht->vendor_id);
3093
3094 INIT_WORK(&base_vha->iocb_work, qla2x00_iocb_work_fn);
3095
3096 /* Set up the irqs */
3097 ret = qla2x00_request_irqs(ha, rsp);
3098 if (ret)
3099 goto probe_failed;
3100
3101 /* Alloc arrays of request and response ring ptrs */
3102 ret = qla2x00_alloc_queues(ha, req, rsp);
3103 if (ret) {
3104 ql_log(ql_log_fatal, base_vha, 0x003d,
3105 "Failed to allocate memory for queue pointers..."
3106 "aborting.\n");
3107 goto probe_failed;
3108 }
3109
3110 if (ha->mqenable && shost_use_blk_mq(host)) {
3111 /* number of hardware queues supported by blk/scsi-mq*/
3112 host->nr_hw_queues = ha->max_qpairs;
3113
3114 ql_dbg(ql_dbg_init, base_vha, 0x0192,
3115 "blk/scsi-mq enabled, HW queues = %d.\n", host->nr_hw_queues);
3116 } else {
3117 if (ql2xnvmeenable) {
3118 host->nr_hw_queues = ha->max_qpairs;
3119 ql_dbg(ql_dbg_init, base_vha, 0x0194,
3120 "FC-NVMe support is enabled, HW queues=%d\n",
3121 host->nr_hw_queues);
3122 } else {
3123 ql_dbg(ql_dbg_init, base_vha, 0x0193,
3124 "blk/scsi-mq disabled.\n");
3125 }
3126 }
3127
3128 qlt_probe_one_stage1(base_vha, ha);
3129
3130 pci_save_state(pdev);
3131
3132 /* Assign back pointers */
3133 rsp->req = req;
3134 req->rsp = rsp;
3135
3136 if (IS_QLAFX00(ha)) {
3137 ha->rsp_q_map[0] = rsp;
3138 ha->req_q_map[0] = req;
3139 set_bit(0, ha->req_qid_map);
3140 set_bit(0, ha->rsp_qid_map);
3141 }
3142
3143 /* FWI2-capable only. */
3144 req->req_q_in = &ha->iobase->isp24.req_q_in;
3145 req->req_q_out = &ha->iobase->isp24.req_q_out;
3146 rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
3147 rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
3148 if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
3149 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
3150 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
3151 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
3152 rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out;
3153 }
3154
3155 if (IS_QLAFX00(ha)) {
3156 req->req_q_in = &ha->iobase->ispfx00.req_q_in;
3157 req->req_q_out = &ha->iobase->ispfx00.req_q_out;
3158 rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in;
3159 rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out;
3160 }
3161
3162 if (IS_P3P_TYPE(ha)) {
3163 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
3164 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
3165 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
3166 }
3167
3168 ql_dbg(ql_dbg_multiq, base_vha, 0xc009,
3169 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3170 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3171 ql_dbg(ql_dbg_multiq, base_vha, 0xc00a,
3172 "req->req_q_in=%p req->req_q_out=%p "
3173 "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3174 req->req_q_in, req->req_q_out,
3175 rsp->rsp_q_in, rsp->rsp_q_out);
3176 ql_dbg(ql_dbg_init, base_vha, 0x003e,
3177 "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n",
3178 ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp);
3179 ql_dbg(ql_dbg_init, base_vha, 0x003f,
3180 "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n",
3181 req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
3182
3183 if (ha->isp_ops->initialize_adapter(base_vha)) {
3184 ql_log(ql_log_fatal, base_vha, 0x00d6,
3185 "Failed to initialize adapter - Adapter flags %x.\n",
3186 base_vha->device_flags);
3187
3188 if (IS_QLA82XX(ha)) {
3189 qla82xx_idc_lock(ha);
3190 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3191 QLA8XXX_DEV_FAILED);
3192 qla82xx_idc_unlock(ha);
3193 ql_log(ql_log_fatal, base_vha, 0x00d7,
3194 "HW State: FAILED.\n");
3195 } else if (IS_QLA8044(ha)) {
3196 qla8044_idc_lock(ha);
3197 qla8044_wr_direct(base_vha,
3198 QLA8044_CRB_DEV_STATE_INDEX,
3199 QLA8XXX_DEV_FAILED);
3200 qla8044_idc_unlock(ha);
3201 ql_log(ql_log_fatal, base_vha, 0x0150,
3202 "HW State: FAILED.\n");
3203 }
3204
3205 ret = -ENODEV;
3206 goto probe_failed;
3207 }
3208
3209 if (IS_QLAFX00(ha))
3210 host->can_queue = QLAFX00_MAX_CANQUEUE;
3211 else
3212 host->can_queue = req->num_outstanding_cmds - 10;
3213
3214 ql_dbg(ql_dbg_init, base_vha, 0x0032,
3215 "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n",
3216 host->can_queue, base_vha->req,
3217 base_vha->mgmt_svr_loop_id, host->sg_tablesize);
3218
3219 ha->wq = alloc_workqueue("qla2xxx_wq", 0, 0);
3220
3221 if (ha->mqenable) {
3222 bool mq = false;
3223 bool startit = false;
3224
3225 if (QLA_TGT_MODE_ENABLED()) {
3226 mq = true;
3227 startit = false;
3228 }
3229
3230 if ((ql2x_ini_mode == QLA2XXX_INI_MODE_ENABLED) &&
3231 shost_use_blk_mq(host)) {
3232 mq = true;
3233 startit = true;
3234 }
3235
3236 if (mq) {
3237 /* Create start of day qpairs for Block MQ */
3238 for (i = 0; i < ha->max_qpairs; i++)
3239 qla2xxx_create_qpair(base_vha, 5, 0, startit);
3240 }
3241 }
3242
3243 if (ha->flags.running_gold_fw)
3244 goto skip_dpc;
3245
3246 /*
3247 * Startup the kernel thread for this host adapter
3248 */
3249 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
3250 "%s_dpc", base_vha->host_str);
3251 if (IS_ERR(ha->dpc_thread)) {
3252 ql_log(ql_log_fatal, base_vha, 0x00ed,
3253 "Failed to start DPC thread.\n");
3254 ret = PTR_ERR(ha->dpc_thread);
3255 ha->dpc_thread = NULL;
3256 goto probe_failed;
3257 }
3258 ql_dbg(ql_dbg_init, base_vha, 0x00ee,
3259 "DPC thread started successfully.\n");
3260
3261 /*
3262 * If we're not coming up in initiator mode, we might sit for
3263 * a while without waking up the dpc thread, which leads to a
3264 * stuck process warning. So just kick the dpc once here and
3265 * let the kthread start (and go back to sleep in qla2x00_do_dpc).
3266 */
3267 qla2xxx_wake_dpc(base_vha);
3268
3269 INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error);
3270
3271 if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) {
3272 sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no);
3273 ha->dpc_lp_wq = create_singlethread_workqueue(wq_name);
3274 INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen);
3275
3276 sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no);
3277 ha->dpc_hp_wq = create_singlethread_workqueue(wq_name);
3278 INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work);
3279 INIT_WORK(&ha->idc_state_handler,
3280 qla83xx_idc_state_handler_work);
3281 INIT_WORK(&ha->nic_core_unrecoverable,
3282 qla83xx_nic_core_unrecoverable_work);
3283 }
3284
3285skip_dpc:
3286 list_add_tail(&base_vha->list, &ha->vp_list);
3287 base_vha->host->irq = ha->pdev->irq;
3288
3289 /* Initialized the timer */
3290 qla2x00_start_timer(base_vha, WATCH_INTERVAL);
3291 ql_dbg(ql_dbg_init, base_vha, 0x00ef,
3292 "Started qla2x00_timer with "
3293 "interval=%d.\n", WATCH_INTERVAL);
3294 ql_dbg(ql_dbg_init, base_vha, 0x00f0,
3295 "Detected hba at address=%p.\n",
3296 ha);
3297
3298 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
3299 if (ha->fw_attributes & BIT_4) {
3300 int prot = 0, guard;
3301 base_vha->flags.difdix_supported = 1;
3302 ql_dbg(ql_dbg_init, base_vha, 0x00f1,
3303 "Registering for DIF/DIX type 1 and 3 protection.\n");
3304 if (ql2xenabledif == 1)
3305 prot = SHOST_DIX_TYPE0_PROTECTION;
3306 scsi_host_set_prot(host,
3307 prot | SHOST_DIF_TYPE1_PROTECTION
3308 | SHOST_DIF_TYPE2_PROTECTION
3309 | SHOST_DIF_TYPE3_PROTECTION
3310 | SHOST_DIX_TYPE1_PROTECTION
3311 | SHOST_DIX_TYPE2_PROTECTION
3312 | SHOST_DIX_TYPE3_PROTECTION);
3313
3314 guard = SHOST_DIX_GUARD_CRC;
3315
3316 if (IS_PI_IPGUARD_CAPABLE(ha) &&
3317 (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha)))
3318 guard |= SHOST_DIX_GUARD_IP;
3319
3320 scsi_host_set_guard(host, guard);
3321 } else
3322 base_vha->flags.difdix_supported = 0;
3323 }
3324
3325 ha->isp_ops->enable_intrs(ha);
3326
3327 if (IS_QLAFX00(ha)) {
3328 ret = qlafx00_fx_disc(base_vha,
3329 &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO);
3330 host->sg_tablesize = (ha->mr.extended_io_enabled) ?
3331 QLA_SG_ALL : 128;
3332 }
3333
3334 ret = scsi_add_host(host, &pdev->dev);
3335 if (ret)
3336 goto probe_failed;
3337
3338 base_vha->flags.init_done = 1;
3339 base_vha->flags.online = 1;
3340 ha->prev_minidump_failed = 0;
3341
3342 ql_dbg(ql_dbg_init, base_vha, 0x00f2,
3343 "Init done and hba is online.\n");
3344
3345 if (qla_ini_mode_enabled(base_vha) ||
3346 qla_dual_mode_enabled(base_vha))
3347 scsi_scan_host(host);
3348 else
3349 ql_dbg(ql_dbg_init, base_vha, 0x0122,
3350 "skipping scsi_scan_host() for non-initiator port\n");
3351
3352 qla2x00_alloc_sysfs_attr(base_vha);
3353
3354 if (IS_QLAFX00(ha)) {
3355 ret = qlafx00_fx_disc(base_vha,
3356 &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO);
3357
3358 /* Register system information */
3359 ret = qlafx00_fx_disc(base_vha,
3360 &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO);
3361 }
3362
3363 qla2x00_init_host_attr(base_vha);
3364
3365 qla2x00_dfs_setup(base_vha);
3366
3367 ql_log(ql_log_info, base_vha, 0x00fb,
3368 "QLogic %s - %s.\n", ha->model_number, ha->model_desc);
3369 ql_log(ql_log_info, base_vha, 0x00fc,
3370 "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n",
3371 pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info),
3372 pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-',
3373 base_vha->host_no,
3374 ha->isp_ops->fw_version_str(base_vha, fw_str, sizeof(fw_str)));
3375
3376 qlt_add_target(ha, base_vha);
3377
3378 clear_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags);
3379
3380 if (test_bit(UNLOADING, &base_vha->dpc_flags))
3381 return -ENODEV;
3382
3383 if (ha->flags.detected_lr_sfp) {
3384 ql_log(ql_log_info, base_vha, 0xffff,
3385 "Reset chip to pick up LR SFP setting\n");
3386 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
3387 qla2xxx_wake_dpc(base_vha);
3388 }
3389
3390 return 0;
3391
3392probe_failed:
3393 if (base_vha->timer_active)
3394 qla2x00_stop_timer(base_vha);
3395 base_vha->flags.online = 0;
3396 if (ha->dpc_thread) {
3397 struct task_struct *t = ha->dpc_thread;
3398
3399 ha->dpc_thread = NULL;
3400 kthread_stop(t);
3401 }
3402
3403 qla2x00_free_device(base_vha);
3404 scsi_host_put(base_vha->host);
3405 /*
3406 * Need to NULL out local req/rsp after
3407 * qla2x00_free_device => qla2x00_free_queues frees
3408 * what these are pointing to. Or else we'll
3409 * fall over below in qla2x00_free_req/rsp_que.
3410 */
3411 req = NULL;
3412 rsp = NULL;
3413
3414probe_hw_failed:
3415 qla2x00_mem_free(ha);
3416 qla2x00_free_req_que(ha, req);
3417 qla2x00_free_rsp_que(ha, rsp);
3418 qla2x00_clear_drv_active(ha);
3419
3420iospace_config_failed:
3421 if (IS_P3P_TYPE(ha)) {
3422 if (!ha->nx_pcibase)
3423 iounmap((device_reg_t *)ha->nx_pcibase);
3424 if (!ql2xdbwr)
3425 iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3426 } else {
3427 if (ha->iobase)
3428 iounmap(ha->iobase);
3429 if (ha->cregbase)
3430 iounmap(ha->cregbase);
3431 }
3432 pci_release_selected_regions(ha->pdev, ha->bars);
3433 kfree(ha);
3434
3435disable_device:
3436 pci_disable_device(pdev);
3437 return ret;
3438}
3439
3440static void
3441qla2x00_shutdown(struct pci_dev *pdev)
3442{
3443 scsi_qla_host_t *vha;
3444 struct qla_hw_data *ha;
3445
3446 vha = pci_get_drvdata(pdev);
3447 ha = vha->hw;
3448
3449 ql_log(ql_log_info, vha, 0xfffa,
3450 "Adapter shutdown\n");
3451
3452 /*
3453 * Prevent future board_disable and wait
3454 * until any pending board_disable has completed.
3455 */
3456 set_bit(PFLG_DRIVER_REMOVING, &vha->pci_flags);
3457 cancel_work_sync(&ha->board_disable);
3458
3459 if (!atomic_read(&pdev->enable_cnt))
3460 return;
3461
3462 /* Notify ISPFX00 firmware */
3463 if (IS_QLAFX00(ha))
3464 qlafx00_driver_shutdown(vha, 20);
3465
3466 /* Turn-off FCE trace */
3467 if (ha->flags.fce_enabled) {
3468 qla2x00_disable_fce_trace(vha, NULL, NULL);
3469 ha->flags.fce_enabled = 0;
3470 }
3471
3472 /* Turn-off EFT trace */
3473 if (ha->eft)
3474 qla2x00_disable_eft_trace(vha);
3475
3476 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha)) {
3477 if (ha->flags.fw_started)
3478 qla2x00_abort_isp_cleanup(vha);
3479 } else {
3480 /* Stop currently executing firmware. */
3481 qla2x00_try_to_stop_firmware(vha);
3482 }
3483
3484 /* Turn adapter off line */
3485 vha->flags.online = 0;
3486
3487 /* turn-off interrupts on the card */
3488 if (ha->interrupts_on) {
3489 vha->flags.init_done = 0;
3490 ha->isp_ops->disable_intrs(ha);
3491 }
3492
3493 qla2x00_free_irqs(vha);
3494
3495 qla2x00_free_fw_dump(ha);
3496
3497 pci_disable_device(pdev);
3498 ql_log(ql_log_info, vha, 0xfffe,
3499 "Adapter shutdown successfully.\n");
3500}
3501
3502/* Deletes all the virtual ports for a given ha */
3503static void
3504qla2x00_delete_all_vps(struct qla_hw_data *ha, scsi_qla_host_t *base_vha)
3505{
3506 scsi_qla_host_t *vha;
3507 unsigned long flags;
3508
3509 mutex_lock(&ha->vport_lock);
3510 while (ha->cur_vport_count) {
3511 spin_lock_irqsave(&ha->vport_slock, flags);
3512
3513 BUG_ON(base_vha->list.next == &ha->vp_list);
3514 /* This assumes first entry in ha->vp_list is always base vha */
3515 vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list);
3516 scsi_host_get(vha->host);
3517
3518 spin_unlock_irqrestore(&ha->vport_slock, flags);
3519 mutex_unlock(&ha->vport_lock);
3520
3521 fc_vport_terminate(vha->fc_vport);
3522 scsi_host_put(vha->host);
3523
3524 mutex_lock(&ha->vport_lock);
3525 }
3526 mutex_unlock(&ha->vport_lock);
3527}
3528
3529/* Stops all deferred work threads */
3530static void
3531qla2x00_destroy_deferred_work(struct qla_hw_data *ha)
3532{
3533 /* Cancel all work and destroy DPC workqueues */
3534 if (ha->dpc_lp_wq) {
3535 cancel_work_sync(&ha->idc_aen);
3536 destroy_workqueue(ha->dpc_lp_wq);
3537 ha->dpc_lp_wq = NULL;
3538 }
3539
3540 if (ha->dpc_hp_wq) {
3541 cancel_work_sync(&ha->nic_core_reset);
3542 cancel_work_sync(&ha->idc_state_handler);
3543 cancel_work_sync(&ha->nic_core_unrecoverable);
3544 destroy_workqueue(ha->dpc_hp_wq);
3545 ha->dpc_hp_wq = NULL;
3546 }
3547
3548 /* Kill the kernel thread for this host */
3549 if (ha->dpc_thread) {
3550 struct task_struct *t = ha->dpc_thread;
3551
3552 /*
3553 * qla2xxx_wake_dpc checks for ->dpc_thread
3554 * so we need to zero it out.
3555 */
3556 ha->dpc_thread = NULL;
3557 kthread_stop(t);
3558 }
3559}
3560
3561static void
3562qla2x00_unmap_iobases(struct qla_hw_data *ha)
3563{
3564 if (IS_QLA82XX(ha)) {
3565
3566 iounmap((device_reg_t *)ha->nx_pcibase);
3567 if (!ql2xdbwr)
3568 iounmap((device_reg_t *)ha->nxdb_wr_ptr);
3569 } else {
3570 if (ha->iobase)
3571 iounmap(ha->iobase);
3572
3573 if (ha->cregbase)
3574 iounmap(ha->cregbase);
3575
3576 if (ha->mqiobase)
3577 iounmap(ha->mqiobase);
3578
3579 if ((IS_QLA83XX(ha) || IS_QLA27XX(ha)) && ha->msixbase)
3580 iounmap(ha->msixbase);
3581 }
3582}
3583
3584static void
3585qla2x00_clear_drv_active(struct qla_hw_data *ha)
3586{
3587 if (IS_QLA8044(ha)) {
3588 qla8044_idc_lock(ha);
3589 qla8044_clear_drv_active(ha);
3590 qla8044_idc_unlock(ha);
3591 } else if (IS_QLA82XX(ha)) {
3592 qla82xx_idc_lock(ha);
3593 qla82xx_clear_drv_active(ha);
3594 qla82xx_idc_unlock(ha);
3595 }
3596}
3597
3598static void
3599qla2x00_remove_one(struct pci_dev *pdev)
3600{
3601 scsi_qla_host_t *base_vha;
3602 struct qla_hw_data *ha;
3603
3604 base_vha = pci_get_drvdata(pdev);
3605 ha = base_vha->hw;
3606
3607 /* Indicate device removal to prevent future board_disable and wait
3608 * until any pending board_disable has completed. */
3609 set_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags);
3610 cancel_work_sync(&ha->board_disable);
3611
3612 /*
3613 * If the PCI device is disabled then there was a PCI-disconnect and
3614 * qla2x00_disable_board_on_pci_error has taken care of most of the
3615 * resources.
3616 */
3617 if (!atomic_read(&pdev->enable_cnt)) {
3618 dma_free_coherent(&ha->pdev->dev, base_vha->gnl.size,
3619 base_vha->gnl.l, base_vha->gnl.ldma);
3620
3621 scsi_host_put(base_vha->host);
3622 kfree(ha);
3623 pci_set_drvdata(pdev, NULL);
3624 return;
3625 }
3626 qla2x00_wait_for_hba_ready(base_vha);
3627
3628 qla2x00_wait_for_sess_deletion(base_vha);
3629
3630 /*
3631 * if UNLOAD flag is already set, then continue unload,
3632 * where it was set first.
3633 */
3634 if (test_bit(UNLOADING, &base_vha->dpc_flags))
3635 return;
3636
3637 set_bit(UNLOADING, &base_vha->dpc_flags);
3638
3639 qla_nvme_delete(base_vha);
3640
3641 dma_free_coherent(&ha->pdev->dev,
3642 base_vha->gnl.size, base_vha->gnl.l, base_vha->gnl.ldma);
3643
3644 vfree(base_vha->scan.l);
3645
3646 if (IS_QLAFX00(ha))
3647 qlafx00_driver_shutdown(base_vha, 20);
3648
3649 qla2x00_delete_all_vps(ha, base_vha);
3650
3651 if (IS_QLA8031(ha)) {
3652 ql_dbg(ql_dbg_p3p, base_vha, 0xb07e,
3653 "Clearing fcoe driver presence.\n");
3654 if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS)
3655 ql_dbg(ql_dbg_p3p, base_vha, 0xb079,
3656 "Error while clearing DRV-Presence.\n");
3657 }
3658
3659 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
3660
3661 qla2x00_dfs_remove(base_vha);
3662
3663 qla84xx_put_chip(base_vha);
3664
3665 /* Disable timer */
3666 if (base_vha->timer_active)
3667 qla2x00_stop_timer(base_vha);
3668
3669 base_vha->flags.online = 0;
3670
3671 /* free DMA memory */
3672 if (ha->exlogin_buf)
3673 qla2x00_free_exlogin_buffer(ha);
3674
3675 /* free DMA memory */
3676 if (ha->exchoffld_buf)
3677 qla2x00_free_exchoffld_buffer(ha);
3678
3679 qla2x00_destroy_deferred_work(ha);
3680
3681 qlt_remove_target(ha, base_vha);
3682
3683 qla2x00_free_sysfs_attr(base_vha, true);
3684
3685 fc_remove_host(base_vha->host);
3686 qlt_remove_target_resources(ha);
3687
3688 scsi_remove_host(base_vha->host);
3689
3690 qla2x00_free_device(base_vha);
3691
3692 qla2x00_clear_drv_active(ha);
3693
3694 scsi_host_put(base_vha->host);
3695
3696 qla2x00_unmap_iobases(ha);
3697
3698 pci_release_selected_regions(ha->pdev, ha->bars);
3699 kfree(ha);
3700
3701 pci_disable_pcie_error_reporting(pdev);
3702
3703 pci_disable_device(pdev);
3704}
3705
3706static void
3707qla2x00_free_device(scsi_qla_host_t *vha)
3708{
3709 struct qla_hw_data *ha = vha->hw;
3710
3711 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
3712
3713 /* Disable timer */
3714 if (vha->timer_active)
3715 qla2x00_stop_timer(vha);
3716
3717 qla25xx_delete_queues(vha);
3718
3719 if (ha->flags.fce_enabled)
3720 qla2x00_disable_fce_trace(vha, NULL, NULL);
3721
3722 if (ha->eft)
3723 qla2x00_disable_eft_trace(vha);
3724
3725 if (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha)) {
3726 if (ha->flags.fw_started)
3727 qla2x00_abort_isp_cleanup(vha);
3728 } else {
3729 if (ha->flags.fw_started) {
3730 /* Stop currently executing firmware. */
3731 qla2x00_try_to_stop_firmware(vha);
3732 ha->flags.fw_started = 0;
3733 }
3734 }
3735
3736 vha->flags.online = 0;
3737
3738 /* turn-off interrupts on the card */
3739 if (ha->interrupts_on) {
3740 vha->flags.init_done = 0;
3741 ha->isp_ops->disable_intrs(ha);
3742 }
3743
3744 qla2x00_free_fcports(vha);
3745
3746 qla2x00_free_irqs(vha);
3747
3748 /* Flush the work queue and remove it */
3749 if (ha->wq) {
3750 flush_workqueue(ha->wq);
3751 destroy_workqueue(ha->wq);
3752 ha->wq = NULL;
3753 }
3754
3755
3756 qla2x00_mem_free(ha);
3757
3758 qla82xx_md_free(vha);
3759
3760 qla2x00_free_queues(ha);
3761}
3762
3763void qla2x00_free_fcports(struct scsi_qla_host *vha)
3764{
3765 fc_port_t *fcport, *tfcport;
3766
3767 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
3768 list_del(&fcport->list);
3769 qla2x00_clear_loop_id(fcport);
3770 kfree(fcport);
3771 }
3772}
3773
3774static inline void
3775qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
3776 int defer)
3777{
3778 struct fc_rport *rport;
3779 scsi_qla_host_t *base_vha;
3780 unsigned long flags;
3781
3782 if (!fcport->rport)
3783 return;
3784
3785 rport = fcport->rport;
3786 if (defer) {
3787 base_vha = pci_get_drvdata(vha->hw->pdev);
3788 spin_lock_irqsave(vha->host->host_lock, flags);
3789 fcport->drport = rport;
3790 spin_unlock_irqrestore(vha->host->host_lock, flags);
3791 qlt_do_generation_tick(vha, &base_vha->total_fcport_update_gen);
3792 set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
3793 qla2xxx_wake_dpc(base_vha);
3794 } else {
3795 int now;
3796 if (rport) {
3797 ql_dbg(ql_dbg_disc, fcport->vha, 0x2109,
3798 "%s %8phN. rport %p roles %x\n",
3799 __func__, fcport->port_name, rport,
3800 rport->roles);
3801 fc_remote_port_delete(rport);
3802 }
3803 qlt_do_generation_tick(vha, &now);
3804 }
3805}
3806
3807/*
3808 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
3809 *
3810 * Input: ha = adapter block pointer. fcport = port structure pointer.
3811 *
3812 * Return: None.
3813 *
3814 * Context:
3815 */
3816void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
3817 int do_login, int defer)
3818{
3819 if (IS_QLAFX00(vha->hw)) {
3820 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3821 qla2x00_schedule_rport_del(vha, fcport, defer);
3822 return;
3823 }
3824
3825 if (atomic_read(&fcport->state) == FCS_ONLINE &&
3826 vha->vp_idx == fcport->vha->vp_idx) {
3827 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3828 qla2x00_schedule_rport_del(vha, fcport, defer);
3829 }
3830 /*
3831 * We may need to retry the login, so don't change the state of the
3832 * port but do the retries.
3833 */
3834 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
3835 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3836
3837 if (!do_login)
3838 return;
3839
3840 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
3841
3842 if (fcport->login_retry == 0) {
3843 fcport->login_retry = vha->hw->login_retry_count;
3844
3845 ql_dbg(ql_dbg_disc, vha, 0x20a3,
3846 "Port login retry %8phN, lid 0x%04x retry cnt=%d.\n",
3847 fcport->port_name, fcport->loop_id, fcport->login_retry);
3848 }
3849}
3850
3851/*
3852 * qla2x00_mark_all_devices_lost
3853 * Updates fcport state when device goes offline.
3854 *
3855 * Input:
3856 * ha = adapter block pointer.
3857 * fcport = port structure pointer.
3858 *
3859 * Return:
3860 * None.
3861 *
3862 * Context:
3863 */
3864void
3865qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
3866{
3867 fc_port_t *fcport;
3868
3869 ql_dbg(ql_dbg_disc, vha, 0x20f1,
3870 "Mark all dev lost\n");
3871
3872 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3873 fcport->scan_state = 0;
3874 qlt_schedule_sess_for_deletion(fcport);
3875
3876 if (vha->vp_idx != 0 && vha->vp_idx != fcport->vha->vp_idx)
3877 continue;
3878
3879 /*
3880 * No point in marking the device as lost, if the device is
3881 * already DEAD.
3882 */
3883 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
3884 continue;
3885 if (atomic_read(&fcport->state) == FCS_ONLINE) {
3886 qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
3887 if (defer)
3888 qla2x00_schedule_rport_del(vha, fcport, defer);
3889 else if (vha->vp_idx == fcport->vha->vp_idx)
3890 qla2x00_schedule_rport_del(vha, fcport, defer);
3891 }
3892 }
3893}
3894
3895/*
3896* qla2x00_mem_alloc
3897* Allocates adapter memory.
3898*
3899* Returns:
3900* 0 = success.
3901* !0 = failure.
3902*/
3903static int
3904qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
3905 struct req_que **req, struct rsp_que **rsp)
3906{
3907 char name[16];
3908
3909 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
3910 &ha->init_cb_dma, GFP_KERNEL);
3911 if (!ha->init_cb)
3912 goto fail;
3913
3914 if (qlt_mem_alloc(ha) < 0)
3915 goto fail_free_init_cb;
3916
3917 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev,
3918 qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL);
3919 if (!ha->gid_list)
3920 goto fail_free_tgt_mem;
3921
3922 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
3923 if (!ha->srb_mempool)
3924 goto fail_free_gid_list;
3925
3926 if (IS_P3P_TYPE(ha)) {
3927 /* Allocate cache for CT6 Ctx. */
3928 if (!ctx_cachep) {
3929 ctx_cachep = kmem_cache_create("qla2xxx_ctx",
3930 sizeof(struct ct6_dsd), 0,
3931 SLAB_HWCACHE_ALIGN, NULL);
3932 if (!ctx_cachep)
3933 goto fail_free_srb_mempool;
3934 }
3935 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
3936 ctx_cachep);
3937 if (!ha->ctx_mempool)
3938 goto fail_free_srb_mempool;
3939 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021,
3940 "ctx_cachep=%p ctx_mempool=%p.\n",
3941 ctx_cachep, ha->ctx_mempool);
3942 }
3943
3944 /* Get memory for cached NVRAM */
3945 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
3946 if (!ha->nvram)
3947 goto fail_free_ctx_mempool;
3948
3949 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
3950 ha->pdev->device);
3951 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
3952 DMA_POOL_SIZE, 8, 0);
3953 if (!ha->s_dma_pool)
3954 goto fail_free_nvram;
3955
3956 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022,
3957 "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n",
3958 ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool);
3959
3960 if (IS_P3P_TYPE(ha) || ql2xenabledif) {
3961 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
3962 DSD_LIST_DMA_POOL_SIZE, 8, 0);
3963 if (!ha->dl_dma_pool) {
3964 ql_log_pci(ql_log_fatal, ha->pdev, 0x0023,
3965 "Failed to allocate memory for dl_dma_pool.\n");
3966 goto fail_s_dma_pool;
3967 }
3968
3969 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
3970 FCP_CMND_DMA_POOL_SIZE, 8, 0);
3971 if (!ha->fcp_cmnd_dma_pool) {
3972 ql_log_pci(ql_log_fatal, ha->pdev, 0x0024,
3973 "Failed to allocate memory for fcp_cmnd_dma_pool.\n");
3974 goto fail_dl_dma_pool;
3975 }
3976 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025,
3977 "dl_dma_pool=%p fcp_cmnd_dma_pool=%p.\n",
3978 ha->dl_dma_pool, ha->fcp_cmnd_dma_pool);
3979 }
3980
3981 /* Allocate memory for SNS commands */
3982 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
3983 /* Get consistent memory allocated for SNS commands */
3984 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
3985 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
3986 if (!ha->sns_cmd)
3987 goto fail_dma_pool;
3988 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026,
3989 "sns_cmd: %p.\n", ha->sns_cmd);
3990 } else {
3991 /* Get consistent memory allocated for MS IOCB */
3992 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
3993 &ha->ms_iocb_dma);
3994 if (!ha->ms_iocb)
3995 goto fail_dma_pool;
3996 /* Get consistent memory allocated for CT SNS commands */
3997 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
3998 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
3999 if (!ha->ct_sns)
4000 goto fail_free_ms_iocb;
4001 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027,
4002 "ms_iocb=%p ct_sns=%p.\n",
4003 ha->ms_iocb, ha->ct_sns);
4004 }
4005
4006 /* Allocate memory for request ring */
4007 *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
4008 if (!*req) {
4009 ql_log_pci(ql_log_fatal, ha->pdev, 0x0028,
4010 "Failed to allocate memory for req.\n");
4011 goto fail_req;
4012 }
4013 (*req)->length = req_len;
4014 (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
4015 ((*req)->length + 1) * sizeof(request_t),
4016 &(*req)->dma, GFP_KERNEL);
4017 if (!(*req)->ring) {
4018 ql_log_pci(ql_log_fatal, ha->pdev, 0x0029,
4019 "Failed to allocate memory for req_ring.\n");
4020 goto fail_req_ring;
4021 }
4022 /* Allocate memory for response ring */
4023 *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
4024 if (!*rsp) {
4025 ql_log_pci(ql_log_fatal, ha->pdev, 0x002a,
4026 "Failed to allocate memory for rsp.\n");
4027 goto fail_rsp;
4028 }
4029 (*rsp)->hw = ha;
4030 (*rsp)->length = rsp_len;
4031 (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
4032 ((*rsp)->length + 1) * sizeof(response_t),
4033 &(*rsp)->dma, GFP_KERNEL);
4034 if (!(*rsp)->ring) {
4035 ql_log_pci(ql_log_fatal, ha->pdev, 0x002b,
4036 "Failed to allocate memory for rsp_ring.\n");
4037 goto fail_rsp_ring;
4038 }
4039 (*req)->rsp = *rsp;
4040 (*rsp)->req = *req;
4041 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c,
4042 "req=%p req->length=%d req->ring=%p rsp=%p "
4043 "rsp->length=%d rsp->ring=%p.\n",
4044 *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length,
4045 (*rsp)->ring);
4046 /* Allocate memory for NVRAM data for vports */
4047 if (ha->nvram_npiv_size) {
4048 ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) *
4049 ha->nvram_npiv_size, GFP_KERNEL);
4050 if (!ha->npiv_info) {
4051 ql_log_pci(ql_log_fatal, ha->pdev, 0x002d,
4052 "Failed to allocate memory for npiv_info.\n");
4053 goto fail_npiv_info;
4054 }
4055 } else
4056 ha->npiv_info = NULL;
4057
4058 /* Get consistent memory allocated for EX-INIT-CB. */
4059 if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha)) {
4060 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4061 &ha->ex_init_cb_dma);
4062 if (!ha->ex_init_cb)
4063 goto fail_ex_init_cb;
4064 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e,
4065 "ex_init_cb=%p.\n", ha->ex_init_cb);
4066 }
4067
4068 INIT_LIST_HEAD(&ha->gbl_dsd_list);
4069
4070 /* Get consistent memory allocated for Async Port-Database. */
4071 if (!IS_FWI2_CAPABLE(ha)) {
4072 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
4073 &ha->async_pd_dma);
4074 if (!ha->async_pd)
4075 goto fail_async_pd;
4076 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f,
4077 "async_pd=%p.\n", ha->async_pd);
4078 }
4079
4080 INIT_LIST_HEAD(&ha->vp_list);
4081
4082 /* Allocate memory for our loop_id bitmap */
4083 ha->loop_id_map = kzalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE) * sizeof(long),
4084 GFP_KERNEL);
4085 if (!ha->loop_id_map)
4086 goto fail_loop_id_map;
4087 else {
4088 qla2x00_set_reserved_loop_ids(ha);
4089 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123,
4090 "loop_id_map=%p.\n", ha->loop_id_map);
4091 }
4092
4093 ha->sfp_data = dma_alloc_coherent(&ha->pdev->dev,
4094 SFP_DEV_SIZE, &ha->sfp_data_dma, GFP_KERNEL);
4095 if (!ha->sfp_data) {
4096 ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b,
4097 "Unable to allocate memory for SFP read-data.\n");
4098 goto fail_sfp_data;
4099 }
4100
4101 return 0;
4102
4103fail_sfp_data:
4104 kfree(ha->loop_id_map);
4105fail_loop_id_map:
4106 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4107fail_async_pd:
4108 dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
4109fail_ex_init_cb:
4110 kfree(ha->npiv_info);
4111fail_npiv_info:
4112 dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
4113 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
4114 (*rsp)->ring = NULL;
4115 (*rsp)->dma = 0;
4116fail_rsp_ring:
4117 kfree(*rsp);
4118 *rsp = NULL;
4119fail_rsp:
4120 dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
4121 sizeof(request_t), (*req)->ring, (*req)->dma);
4122 (*req)->ring = NULL;
4123 (*req)->dma = 0;
4124fail_req_ring:
4125 kfree(*req);
4126 *req = NULL;
4127fail_req:
4128 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4129 ha->ct_sns, ha->ct_sns_dma);
4130 ha->ct_sns = NULL;
4131 ha->ct_sns_dma = 0;
4132fail_free_ms_iocb:
4133 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4134 ha->ms_iocb = NULL;
4135 ha->ms_iocb_dma = 0;
4136
4137 if (ha->sns_cmd)
4138 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4139 ha->sns_cmd, ha->sns_cmd_dma);
4140fail_dma_pool:
4141 if (IS_QLA82XX(ha) || ql2xenabledif) {
4142 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4143 ha->fcp_cmnd_dma_pool = NULL;
4144 }
4145fail_dl_dma_pool:
4146 if (IS_QLA82XX(ha) || ql2xenabledif) {
4147 dma_pool_destroy(ha->dl_dma_pool);
4148 ha->dl_dma_pool = NULL;
4149 }
4150fail_s_dma_pool:
4151 dma_pool_destroy(ha->s_dma_pool);
4152 ha->s_dma_pool = NULL;
4153fail_free_nvram:
4154 kfree(ha->nvram);
4155 ha->nvram = NULL;
4156fail_free_ctx_mempool:
4157 if (ha->ctx_mempool)
4158 mempool_destroy(ha->ctx_mempool);
4159 ha->ctx_mempool = NULL;
4160fail_free_srb_mempool:
4161 if (ha->srb_mempool)
4162 mempool_destroy(ha->srb_mempool);
4163 ha->srb_mempool = NULL;
4164fail_free_gid_list:
4165 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4166 ha->gid_list,
4167 ha->gid_list_dma);
4168 ha->gid_list = NULL;
4169 ha->gid_list_dma = 0;
4170fail_free_tgt_mem:
4171 qlt_mem_free(ha);
4172fail_free_init_cb:
4173 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
4174 ha->init_cb_dma);
4175 ha->init_cb = NULL;
4176 ha->init_cb_dma = 0;
4177fail:
4178 ql_log(ql_log_fatal, NULL, 0x0030,
4179 "Memory allocation failure.\n");
4180 return -ENOMEM;
4181}
4182
4183int
4184qla2x00_set_exlogins_buffer(scsi_qla_host_t *vha)
4185{
4186 int rval;
4187 uint16_t size, max_cnt, temp;
4188 struct qla_hw_data *ha = vha->hw;
4189
4190 /* Return if we don't need to alloacate any extended logins */
4191 if (!ql2xexlogins)
4192 return QLA_SUCCESS;
4193
4194 if (!IS_EXLOGIN_OFFLD_CAPABLE(ha))
4195 return QLA_SUCCESS;
4196
4197 ql_log(ql_log_info, vha, 0xd021, "EXLOGIN count: %d.\n", ql2xexlogins);
4198 max_cnt = 0;
4199 rval = qla_get_exlogin_status(vha, &size, &max_cnt);
4200 if (rval != QLA_SUCCESS) {
4201 ql_log_pci(ql_log_fatal, ha->pdev, 0xd029,
4202 "Failed to get exlogin status.\n");
4203 return rval;
4204 }
4205
4206 temp = (ql2xexlogins > max_cnt) ? max_cnt : ql2xexlogins;
4207 temp *= size;
4208
4209 if (temp != ha->exlogin_size) {
4210 qla2x00_free_exlogin_buffer(ha);
4211 ha->exlogin_size = temp;
4212
4213 ql_log(ql_log_info, vha, 0xd024,
4214 "EXLOGIN: max_logins=%d, portdb=0x%x, total=%d.\n",
4215 max_cnt, size, temp);
4216
4217 ql_log(ql_log_info, vha, 0xd025,
4218 "EXLOGIN: requested size=0x%x\n", ha->exlogin_size);
4219
4220 /* Get consistent memory for extended logins */
4221 ha->exlogin_buf = dma_alloc_coherent(&ha->pdev->dev,
4222 ha->exlogin_size, &ha->exlogin_buf_dma, GFP_KERNEL);
4223 if (!ha->exlogin_buf) {
4224 ql_log_pci(ql_log_fatal, ha->pdev, 0xd02a,
4225 "Failed to allocate memory for exlogin_buf_dma.\n");
4226 return -ENOMEM;
4227 }
4228 }
4229
4230 /* Now configure the dma buffer */
4231 rval = qla_set_exlogin_mem_cfg(vha, ha->exlogin_buf_dma);
4232 if (rval) {
4233 ql_log(ql_log_fatal, vha, 0xd033,
4234 "Setup extended login buffer ****FAILED****.\n");
4235 qla2x00_free_exlogin_buffer(ha);
4236 }
4237
4238 return rval;
4239}
4240
4241/*
4242* qla2x00_free_exlogin_buffer
4243*
4244* Input:
4245* ha = adapter block pointer
4246*/
4247void
4248qla2x00_free_exlogin_buffer(struct qla_hw_data *ha)
4249{
4250 if (ha->exlogin_buf) {
4251 dma_free_coherent(&ha->pdev->dev, ha->exlogin_size,
4252 ha->exlogin_buf, ha->exlogin_buf_dma);
4253 ha->exlogin_buf = NULL;
4254 ha->exlogin_size = 0;
4255 }
4256}
4257
4258static void
4259qla2x00_number_of_exch(scsi_qla_host_t *vha, u32 *ret_cnt, u16 max_cnt)
4260{
4261 u32 temp;
4262 *ret_cnt = FW_DEF_EXCHANGES_CNT;
4263
4264 if (max_cnt > vha->hw->max_exchg)
4265 max_cnt = vha->hw->max_exchg;
4266
4267 if (qla_ini_mode_enabled(vha)) {
4268 if (ql2xiniexchg > max_cnt)
4269 ql2xiniexchg = max_cnt;
4270
4271 if (ql2xiniexchg > FW_DEF_EXCHANGES_CNT)
4272 *ret_cnt = ql2xiniexchg;
4273 } else if (qla_tgt_mode_enabled(vha)) {
4274 if (ql2xexchoffld > max_cnt)
4275 ql2xexchoffld = max_cnt;
4276
4277 if (ql2xexchoffld > FW_DEF_EXCHANGES_CNT)
4278 *ret_cnt = ql2xexchoffld;
4279 } else if (qla_dual_mode_enabled(vha)) {
4280 temp = ql2xiniexchg + ql2xexchoffld;
4281 if (temp > max_cnt) {
4282 ql2xiniexchg -= (temp - max_cnt)/2;
4283 ql2xexchoffld -= (((temp - max_cnt)/2) + 1);
4284 temp = max_cnt;
4285 }
4286
4287 if (temp > FW_DEF_EXCHANGES_CNT)
4288 *ret_cnt = temp;
4289 }
4290}
4291
4292int
4293qla2x00_set_exchoffld_buffer(scsi_qla_host_t *vha)
4294{
4295 int rval;
4296 u16 size, max_cnt;
4297 u32 actual_cnt, totsz;
4298 struct qla_hw_data *ha = vha->hw;
4299
4300 if (!ha->flags.exchoffld_enabled)
4301 return QLA_SUCCESS;
4302
4303 if (!IS_EXCHG_OFFLD_CAPABLE(ha))
4304 return QLA_SUCCESS;
4305
4306 max_cnt = 0;
4307 rval = qla_get_exchoffld_status(vha, &size, &max_cnt);
4308 if (rval != QLA_SUCCESS) {
4309 ql_log_pci(ql_log_fatal, ha->pdev, 0xd012,
4310 "Failed to get exlogin status.\n");
4311 return rval;
4312 }
4313
4314 qla2x00_number_of_exch(vha, &actual_cnt, max_cnt);
4315 ql_log(ql_log_info, vha, 0xd014,
4316 "Actual exchange offload count: %d.\n", actual_cnt);
4317
4318 totsz = actual_cnt * size;
4319
4320 if (totsz != ha->exchoffld_size) {
4321 qla2x00_free_exchoffld_buffer(ha);
4322 ha->exchoffld_size = totsz;
4323
4324 ql_log(ql_log_info, vha, 0xd016,
4325 "Exchange offload: max_count=%d, actual count=%d entry sz=0x%x, total sz=0x%x\n",
4326 max_cnt, actual_cnt, size, totsz);
4327
4328 ql_log(ql_log_info, vha, 0xd017,
4329 "Exchange Buffers requested size = 0x%x\n",
4330 ha->exchoffld_size);
4331
4332 /* Get consistent memory for extended logins */
4333 ha->exchoffld_buf = dma_alloc_coherent(&ha->pdev->dev,
4334 ha->exchoffld_size, &ha->exchoffld_buf_dma, GFP_KERNEL);
4335 if (!ha->exchoffld_buf) {
4336 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4337 "Failed to allocate memory for Exchange Offload.\n");
4338
4339 if (ha->max_exchg >
4340 (FW_DEF_EXCHANGES_CNT + REDUCE_EXCHANGES_CNT)) {
4341 ha->max_exchg -= REDUCE_EXCHANGES_CNT;
4342 } else if (ha->max_exchg >
4343 (FW_DEF_EXCHANGES_CNT + 512)) {
4344 ha->max_exchg -= 512;
4345 } else {
4346 ha->flags.exchoffld_enabled = 0;
4347 ql_log_pci(ql_log_fatal, ha->pdev, 0xd013,
4348 "Disabling Exchange offload due to lack of memory\n");
4349 }
4350 ha->exchoffld_size = 0;
4351
4352 return -ENOMEM;
4353 }
4354 }
4355
4356 /* Now configure the dma buffer */
4357 rval = qla_set_exchoffld_mem_cfg(vha);
4358 if (rval) {
4359 ql_log(ql_log_fatal, vha, 0xd02e,
4360 "Setup exchange offload buffer ****FAILED****.\n");
4361 qla2x00_free_exchoffld_buffer(ha);
4362 } else {
4363 /* re-adjust number of target exchange */
4364 struct init_cb_81xx *icb = (struct init_cb_81xx *)ha->init_cb;
4365
4366 if (qla_ini_mode_enabled(vha))
4367 icb->exchange_count = 0;
4368 else
4369 icb->exchange_count = cpu_to_le16(ql2xexchoffld);
4370 }
4371
4372 return rval;
4373}
4374
4375/*
4376* qla2x00_free_exchoffld_buffer
4377*
4378* Input:
4379* ha = adapter block pointer
4380*/
4381void
4382qla2x00_free_exchoffld_buffer(struct qla_hw_data *ha)
4383{
4384 if (ha->exchoffld_buf) {
4385 dma_free_coherent(&ha->pdev->dev, ha->exchoffld_size,
4386 ha->exchoffld_buf, ha->exchoffld_buf_dma);
4387 ha->exchoffld_buf = NULL;
4388 ha->exchoffld_size = 0;
4389 }
4390}
4391
4392/*
4393* qla2x00_free_fw_dump
4394* Frees fw dump stuff.
4395*
4396* Input:
4397* ha = adapter block pointer
4398*/
4399static void
4400qla2x00_free_fw_dump(struct qla_hw_data *ha)
4401{
4402 if (ha->fce)
4403 dma_free_coherent(&ha->pdev->dev,
4404 FCE_SIZE, ha->fce, ha->fce_dma);
4405
4406 if (ha->eft)
4407 dma_free_coherent(&ha->pdev->dev,
4408 EFT_SIZE, ha->eft, ha->eft_dma);
4409
4410 if (ha->fw_dump)
4411 vfree(ha->fw_dump);
4412 if (ha->fw_dump_template)
4413 vfree(ha->fw_dump_template);
4414
4415 ha->fce = NULL;
4416 ha->fce_dma = 0;
4417 ha->eft = NULL;
4418 ha->eft_dma = 0;
4419 ha->fw_dumped = 0;
4420 ha->fw_dump_cap_flags = 0;
4421 ha->fw_dump_reading = 0;
4422 ha->fw_dump = NULL;
4423 ha->fw_dump_len = 0;
4424 ha->fw_dump_template = NULL;
4425 ha->fw_dump_template_len = 0;
4426}
4427
4428/*
4429* qla2x00_mem_free
4430* Frees all adapter allocated memory.
4431*
4432* Input:
4433* ha = adapter block pointer.
4434*/
4435static void
4436qla2x00_mem_free(struct qla_hw_data *ha)
4437{
4438 qla2x00_free_fw_dump(ha);
4439
4440 if (ha->mctp_dump)
4441 dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump,
4442 ha->mctp_dump_dma);
4443
4444 if (ha->srb_mempool)
4445 mempool_destroy(ha->srb_mempool);
4446
4447 if (ha->dcbx_tlv)
4448 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
4449 ha->dcbx_tlv, ha->dcbx_tlv_dma);
4450
4451 if (ha->xgmac_data)
4452 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
4453 ha->xgmac_data, ha->xgmac_data_dma);
4454
4455 if (ha->sns_cmd)
4456 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
4457 ha->sns_cmd, ha->sns_cmd_dma);
4458
4459 if (ha->ct_sns)
4460 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
4461 ha->ct_sns, ha->ct_sns_dma);
4462
4463 if (ha->sfp_data)
4464 dma_free_coherent(&ha->pdev->dev, SFP_DEV_SIZE, ha->sfp_data,
4465 ha->sfp_data_dma);
4466
4467 if (ha->ms_iocb)
4468 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
4469
4470 if (ha->ex_init_cb)
4471 dma_pool_free(ha->s_dma_pool,
4472 ha->ex_init_cb, ha->ex_init_cb_dma);
4473
4474 if (ha->async_pd)
4475 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
4476
4477 if (ha->s_dma_pool)
4478 dma_pool_destroy(ha->s_dma_pool);
4479
4480 if (ha->gid_list)
4481 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
4482 ha->gid_list, ha->gid_list_dma);
4483
4484 if (IS_QLA82XX(ha)) {
4485 if (!list_empty(&ha->gbl_dsd_list)) {
4486 struct dsd_dma *dsd_ptr, *tdsd_ptr;
4487
4488 /* clean up allocated prev pool */
4489 list_for_each_entry_safe(dsd_ptr,
4490 tdsd_ptr, &ha->gbl_dsd_list, list) {
4491 dma_pool_free(ha->dl_dma_pool,
4492 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma);
4493 list_del(&dsd_ptr->list);
4494 kfree(dsd_ptr);
4495 }
4496 }
4497 }
4498
4499 if (ha->dl_dma_pool)
4500 dma_pool_destroy(ha->dl_dma_pool);
4501
4502 if (ha->fcp_cmnd_dma_pool)
4503 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
4504
4505 if (ha->ctx_mempool)
4506 mempool_destroy(ha->ctx_mempool);
4507
4508 qlt_mem_free(ha);
4509
4510 if (ha->init_cb)
4511 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
4512 ha->init_cb, ha->init_cb_dma);
4513
4514 vfree(ha->optrom_buffer);
4515 kfree(ha->nvram);
4516 kfree(ha->npiv_info);
4517 kfree(ha->swl);
4518 kfree(ha->loop_id_map);
4519
4520 ha->srb_mempool = NULL;
4521 ha->ctx_mempool = NULL;
4522 ha->sns_cmd = NULL;
4523 ha->sns_cmd_dma = 0;
4524 ha->ct_sns = NULL;
4525 ha->ct_sns_dma = 0;
4526 ha->ms_iocb = NULL;
4527 ha->ms_iocb_dma = 0;
4528 ha->init_cb = NULL;
4529 ha->init_cb_dma = 0;
4530 ha->ex_init_cb = NULL;
4531 ha->ex_init_cb_dma = 0;
4532 ha->async_pd = NULL;
4533 ha->async_pd_dma = 0;
4534 ha->loop_id_map = NULL;
4535 ha->npiv_info = NULL;
4536 ha->optrom_buffer = NULL;
4537 ha->swl = NULL;
4538 ha->nvram = NULL;
4539 ha->mctp_dump = NULL;
4540 ha->dcbx_tlv = NULL;
4541 ha->xgmac_data = NULL;
4542 ha->sfp_data = NULL;
4543
4544 ha->s_dma_pool = NULL;
4545 ha->dl_dma_pool = NULL;
4546 ha->fcp_cmnd_dma_pool = NULL;
4547
4548 ha->gid_list = NULL;
4549 ha->gid_list_dma = 0;
4550
4551 ha->tgt.atio_ring = NULL;
4552 ha->tgt.atio_dma = 0;
4553 ha->tgt.tgt_vp_map = NULL;
4554}
4555
4556struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
4557 struct qla_hw_data *ha)
4558{
4559 struct Scsi_Host *host;
4560 struct scsi_qla_host *vha = NULL;
4561
4562 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
4563 if (!host) {
4564 ql_log_pci(ql_log_fatal, ha->pdev, 0x0107,
4565 "Failed to allocate host from the scsi layer, aborting.\n");
4566 return NULL;
4567 }
4568
4569 /* Clear our data area */
4570 vha = shost_priv(host);
4571 memset(vha, 0, sizeof(scsi_qla_host_t));
4572
4573 vha->host = host;
4574 vha->host_no = host->host_no;
4575 vha->hw = ha;
4576
4577 INIT_LIST_HEAD(&vha->vp_fcports);
4578 INIT_LIST_HEAD(&vha->work_list);
4579 INIT_LIST_HEAD(&vha->list);
4580 INIT_LIST_HEAD(&vha->qla_cmd_list);
4581 INIT_LIST_HEAD(&vha->qla_sess_op_cmd_list);
4582 INIT_LIST_HEAD(&vha->logo_list);
4583 INIT_LIST_HEAD(&vha->plogi_ack_list);
4584 INIT_LIST_HEAD(&vha->qp_list);
4585 INIT_LIST_HEAD(&vha->gnl.fcports);
4586 INIT_LIST_HEAD(&vha->nvme_rport_list);
4587 INIT_LIST_HEAD(&vha->gpnid_list);
4588 INIT_WORK(&vha->iocb_work, qla2x00_iocb_work_fn);
4589
4590 spin_lock_init(&vha->work_lock);
4591 spin_lock_init(&vha->cmd_list_lock);
4592 spin_lock_init(&vha->gnl.fcports_lock);
4593 init_waitqueue_head(&vha->fcport_waitQ);
4594 init_waitqueue_head(&vha->vref_waitq);
4595
4596 vha->gnl.size = sizeof(struct get_name_list_extended) *
4597 (ha->max_loop_id + 1);
4598 vha->gnl.l = dma_alloc_coherent(&ha->pdev->dev,
4599 vha->gnl.size, &vha->gnl.ldma, GFP_KERNEL);
4600 if (!vha->gnl.l) {
4601 ql_log(ql_log_fatal, vha, 0xd04a,
4602 "Alloc failed for name list.\n");
4603 scsi_remove_host(vha->host);
4604 return NULL;
4605 }
4606
4607 /* todo: what about ext login? */
4608 vha->scan.size = ha->max_fibre_devices * sizeof(struct fab_scan_rp);
4609 vha->scan.l = vmalloc(vha->scan.size);
4610 if (!vha->scan.l) {
4611 ql_log(ql_log_fatal, vha, 0xd04a,
4612 "Alloc failed for scan database.\n");
4613 dma_free_coherent(&ha->pdev->dev, vha->gnl.size,
4614 vha->gnl.l, vha->gnl.ldma);
4615 scsi_remove_host(vha->host);
4616 return NULL;
4617 }
4618 INIT_DELAYED_WORK(&vha->scan.scan_work, qla_scan_work_fn);
4619
4620 sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
4621 ql_dbg(ql_dbg_init, vha, 0x0041,
4622 "Allocated the host=%p hw=%p vha=%p dev_name=%s",
4623 vha->host, vha->hw, vha,
4624 dev_name(&(ha->pdev->dev)));
4625
4626 return vha;
4627}
4628
4629struct qla_work_evt *
4630qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
4631{
4632 struct qla_work_evt *e;
4633 uint8_t bail;
4634
4635 QLA_VHA_MARK_BUSY(vha, bail);
4636 if (bail)
4637 return NULL;
4638
4639 e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
4640 if (!e) {
4641 QLA_VHA_MARK_NOT_BUSY(vha);
4642 return NULL;
4643 }
4644
4645 INIT_LIST_HEAD(&e->list);
4646 e->type = type;
4647 e->flags = QLA_EVT_FLAG_FREE;
4648 return e;
4649}
4650
4651int
4652qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
4653{
4654 unsigned long flags;
4655 bool q = false;
4656
4657 spin_lock_irqsave(&vha->work_lock, flags);
4658 list_add_tail(&e->list, &vha->work_list);
4659
4660 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
4661 q = true;
4662
4663 spin_unlock_irqrestore(&vha->work_lock, flags);
4664
4665 if (q)
4666 queue_work(vha->hw->wq, &vha->iocb_work);
4667
4668 return QLA_SUCCESS;
4669}
4670
4671int
4672qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
4673 u32 data)
4674{
4675 struct qla_work_evt *e;
4676
4677 e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
4678 if (!e)
4679 return QLA_FUNCTION_FAILED;
4680
4681 e->u.aen.code = code;
4682 e->u.aen.data = data;
4683 return qla2x00_post_work(vha, e);
4684}
4685
4686int
4687qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
4688{
4689 struct qla_work_evt *e;
4690
4691 e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
4692 if (!e)
4693 return QLA_FUNCTION_FAILED;
4694
4695 memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
4696 return qla2x00_post_work(vha, e);
4697}
4698
4699#define qla2x00_post_async_work(name, type) \
4700int qla2x00_post_async_##name##_work( \
4701 struct scsi_qla_host *vha, \
4702 fc_port_t *fcport, uint16_t *data) \
4703{ \
4704 struct qla_work_evt *e; \
4705 \
4706 e = qla2x00_alloc_work(vha, type); \
4707 if (!e) \
4708 return QLA_FUNCTION_FAILED; \
4709 \
4710 e->u.logio.fcport = fcport; \
4711 if (data) { \
4712 e->u.logio.data[0] = data[0]; \
4713 e->u.logio.data[1] = data[1]; \
4714 } \
4715 fcport->flags |= FCF_ASYNC_ACTIVE; \
4716 return qla2x00_post_work(vha, e); \
4717}
4718
4719qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
4720qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
4721qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE);
4722qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
4723qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE);
4724qla2x00_post_async_work(prlo, QLA_EVT_ASYNC_PRLO);
4725qla2x00_post_async_work(prlo_done, QLA_EVT_ASYNC_PRLO_DONE);
4726
4727int
4728qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
4729{
4730 struct qla_work_evt *e;
4731
4732 e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
4733 if (!e)
4734 return QLA_FUNCTION_FAILED;
4735
4736 e->u.uevent.code = code;
4737 return qla2x00_post_work(vha, e);
4738}
4739
4740static void
4741qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
4742{
4743 char event_string[40];
4744 char *envp[] = { event_string, NULL };
4745
4746 switch (code) {
4747 case QLA_UEVENT_CODE_FW_DUMP:
4748 snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld",
4749 vha->host_no);
4750 break;
4751 default:
4752 /* do nothing */
4753 break;
4754 }
4755 kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
4756}
4757
4758int
4759qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode,
4760 uint32_t *data, int cnt)
4761{
4762 struct qla_work_evt *e;
4763
4764 e = qla2x00_alloc_work(vha, QLA_EVT_AENFX);
4765 if (!e)
4766 return QLA_FUNCTION_FAILED;
4767
4768 e->u.aenfx.evtcode = evtcode;
4769 e->u.aenfx.count = cnt;
4770 memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt);
4771 return qla2x00_post_work(vha, e);
4772}
4773
4774int qla24xx_post_upd_fcport_work(struct scsi_qla_host *vha, fc_port_t *fcport)
4775{
4776 struct qla_work_evt *e;
4777
4778 e = qla2x00_alloc_work(vha, QLA_EVT_UPD_FCPORT);
4779 if (!e)
4780 return QLA_FUNCTION_FAILED;
4781
4782 e->u.fcport.fcport = fcport;
4783 return qla2x00_post_work(vha, e);
4784}
4785
4786static
4787void qla24xx_create_new_sess(struct scsi_qla_host *vha, struct qla_work_evt *e)
4788{
4789 unsigned long flags;
4790 fc_port_t *fcport = NULL, *tfcp;
4791 struct qlt_plogi_ack_t *pla =
4792 (struct qlt_plogi_ack_t *)e->u.new_sess.pla;
4793 uint8_t free_fcport = 0;
4794 u64 wwn;
4795
4796 ql_dbg(ql_dbg_disc, vha, 0xffff,
4797 "%s %d %8phC enter\n",
4798 __func__, __LINE__, e->u.new_sess.port_name);
4799
4800 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
4801 fcport = qla2x00_find_fcport_by_wwpn(vha, e->u.new_sess.port_name, 1);
4802 if (fcport) {
4803 fcport->d_id = e->u.new_sess.id;
4804 if (pla) {
4805 fcport->fw_login_state = DSC_LS_PLOGI_PEND;
4806 memcpy(fcport->node_name,
4807 pla->iocb.u.isp24.u.plogi.node_name,
4808 WWN_SIZE);
4809 qlt_plogi_ack_link(vha, pla, fcport, QLT_PLOGI_LINK_SAME_WWN);
4810 /* we took an extra ref_count to prevent PLOGI ACK when
4811 * fcport/sess has not been created.
4812 */
4813 pla->ref_count--;
4814 }
4815 } else {
4816 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4817 fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
4818 if (fcport) {
4819 fcport->d_id = e->u.new_sess.id;
4820 fcport->flags |= FCF_FABRIC_DEVICE;
4821 fcport->fw_login_state = DSC_LS_PLOGI_PEND;
4822 if (e->u.new_sess.fc4_type & FS_FC4TYPE_FCP)
4823 fcport->fc4_type = FC4_TYPE_FCP_SCSI;
4824
4825 if (e->u.new_sess.fc4_type & FS_FC4TYPE_NVME) {
4826 fcport->fc4_type = FC4_TYPE_OTHER;
4827 fcport->fc4f_nvme = FC4_TYPE_NVME;
4828 }
4829
4830 memcpy(fcport->port_name, e->u.new_sess.port_name,
4831 WWN_SIZE);
4832 } else {
4833 ql_dbg(ql_dbg_disc, vha, 0xffff,
4834 "%s %8phC mem alloc fail.\n",
4835 __func__, e->u.new_sess.port_name);
4836
4837 if (pla)
4838 kmem_cache_free(qla_tgt_plogi_cachep, pla);
4839 return;
4840 }
4841
4842 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
4843 /* search again to make sure no one else got ahead */
4844 tfcp = qla2x00_find_fcport_by_wwpn(vha,
4845 e->u.new_sess.port_name, 1);
4846 if (tfcp) {
4847 /* should rarily happen */
4848 ql_dbg(ql_dbg_disc, vha, 0xffff,
4849 "%s %8phC found existing fcport b4 add. DS %d LS %d\n",
4850 __func__, tfcp->port_name, tfcp->disc_state,
4851 tfcp->fw_login_state);
4852
4853 free_fcport = 1;
4854 } else {
4855 list_add_tail(&fcport->list, &vha->vp_fcports);
4856
4857 }
4858 if (pla) {
4859 qlt_plogi_ack_link(vha, pla, fcport,
4860 QLT_PLOGI_LINK_SAME_WWN);
4861 pla->ref_count--;
4862 }
4863 }
4864 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4865
4866 if (fcport) {
4867 if (N2N_TOPO(vha->hw))
4868 fcport->flags &= ~FCF_FABRIC_DEVICE;
4869
4870 fcport->id_changed = 1;
4871 fcport->scan_state = QLA_FCPORT_FOUND;
4872 memcpy(fcport->node_name, e->u.new_sess.node_name, WWN_SIZE);
4873
4874 if (pla) {
4875 if (pla->iocb.u.isp24.status_subcode == ELS_PRLI) {
4876 u16 wd3_lo;
4877
4878 fcport->fw_login_state = DSC_LS_PRLI_PEND;
4879 fcport->local = 0;
4880 fcport->loop_id =
4881 le16_to_cpu(
4882 pla->iocb.u.isp24.nport_handle);
4883 fcport->fw_login_state = DSC_LS_PRLI_PEND;
4884 wd3_lo =
4885 le16_to_cpu(
4886 pla->iocb.u.isp24.u.prli.wd3_lo);
4887
4888 if (wd3_lo & BIT_7)
4889 fcport->conf_compl_supported = 1;
4890
4891 if ((wd3_lo & BIT_4) == 0)
4892 fcport->port_type = FCT_INITIATOR;
4893 else
4894 fcport->port_type = FCT_TARGET;
4895 }
4896 qlt_plogi_ack_unref(vha, pla);
4897 } else {
4898 fc_port_t *dfcp = NULL;
4899
4900 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
4901 tfcp = qla2x00_find_fcport_by_nportid(vha,
4902 &e->u.new_sess.id, 1);
4903 if (tfcp && (tfcp != fcport)) {
4904 /*
4905 * We have a conflict fcport with same NportID.
4906 */
4907 ql_dbg(ql_dbg_disc, vha, 0xffff,
4908 "%s %8phC found conflict b4 add. DS %d LS %d\n",
4909 __func__, tfcp->port_name, tfcp->disc_state,
4910 tfcp->fw_login_state);
4911
4912 switch (tfcp->disc_state) {
4913 case DSC_DELETED:
4914 break;
4915 case DSC_DELETE_PEND:
4916 fcport->login_pause = 1;
4917 tfcp->conflict = fcport;
4918 break;
4919 default:
4920 fcport->login_pause = 1;
4921 tfcp->conflict = fcport;
4922 dfcp = tfcp;
4923 break;
4924 }
4925 }
4926 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
4927 if (dfcp)
4928 qlt_schedule_sess_for_deletion(tfcp);
4929
4930 wwn = wwn_to_u64(fcport->node_name);
4931
4932 if (!wwn)
4933 qla24xx_async_gnnid(vha, fcport);
4934 else
4935 qla24xx_async_gnl(vha, fcport);
4936 }
4937 }
4938
4939 if (free_fcport) {
4940 qla2x00_free_fcport(fcport);
4941 if (pla)
4942 kmem_cache_free(qla_tgt_plogi_cachep, pla);
4943 }
4944}
4945
4946static void qla_sp_retry(struct scsi_qla_host *vha, struct qla_work_evt *e)
4947{
4948 struct srb *sp = e->u.iosb.sp;
4949 int rval;
4950
4951 rval = qla2x00_start_sp(sp);
4952 if (rval != QLA_SUCCESS) {
4953 ql_dbg(ql_dbg_disc, vha, 0x2043,
4954 "%s: %s: Re-issue IOCB failed (%d).\n",
4955 __func__, sp->name, rval);
4956 qla24xx_sp_unmap(vha, sp);
4957 }
4958}
4959
4960void
4961qla2x00_do_work(struct scsi_qla_host *vha)
4962{
4963 struct qla_work_evt *e, *tmp;
4964 unsigned long flags;
4965 LIST_HEAD(work);
4966
4967 spin_lock_irqsave(&vha->work_lock, flags);
4968 list_splice_init(&vha->work_list, &work);
4969 spin_unlock_irqrestore(&vha->work_lock, flags);
4970
4971 list_for_each_entry_safe(e, tmp, &work, list) {
4972 list_del_init(&e->list);
4973
4974 switch (e->type) {
4975 case QLA_EVT_AEN:
4976 fc_host_post_event(vha->host, fc_get_event_number(),
4977 e->u.aen.code, e->u.aen.data);
4978 break;
4979 case QLA_EVT_IDC_ACK:
4980 qla81xx_idc_ack(vha, e->u.idc_ack.mb);
4981 break;
4982 case QLA_EVT_ASYNC_LOGIN:
4983 qla2x00_async_login(vha, e->u.logio.fcport,
4984 e->u.logio.data);
4985 break;
4986 case QLA_EVT_ASYNC_LOGOUT:
4987 qla2x00_async_logout(vha, e->u.logio.fcport);
4988 break;
4989 case QLA_EVT_ASYNC_LOGOUT_DONE:
4990 qla2x00_async_logout_done(vha, e->u.logio.fcport,
4991 e->u.logio.data);
4992 break;
4993 case QLA_EVT_ASYNC_ADISC:
4994 qla2x00_async_adisc(vha, e->u.logio.fcport,
4995 e->u.logio.data);
4996 break;
4997 case QLA_EVT_ASYNC_ADISC_DONE:
4998 qla2x00_async_adisc_done(vha, e->u.logio.fcport,
4999 e->u.logio.data);
5000 break;
5001 case QLA_EVT_UEVENT:
5002 qla2x00_uevent_emit(vha, e->u.uevent.code);
5003 break;
5004 case QLA_EVT_AENFX:
5005 qlafx00_process_aen(vha, e);
5006 break;
5007 case QLA_EVT_GIDPN:
5008 qla24xx_async_gidpn(vha, e->u.fcport.fcport);
5009 break;
5010 case QLA_EVT_GPNID:
5011 qla24xx_async_gpnid(vha, &e->u.gpnid.id);
5012 break;
5013 case QLA_EVT_UNMAP:
5014 qla24xx_sp_unmap(vha, e->u.iosb.sp);
5015 break;
5016 case QLA_EVT_RELOGIN:
5017 qla2x00_relogin(vha);
5018 break;
5019 case QLA_EVT_NEW_SESS:
5020 qla24xx_create_new_sess(vha, e);
5021 break;
5022 case QLA_EVT_GPDB:
5023 qla24xx_async_gpdb(vha, e->u.fcport.fcport,
5024 e->u.fcport.opt);
5025 break;
5026 case QLA_EVT_PRLI:
5027 qla24xx_async_prli(vha, e->u.fcport.fcport);
5028 break;
5029 case QLA_EVT_GPSC:
5030 qla24xx_async_gpsc(vha, e->u.fcport.fcport);
5031 break;
5032 case QLA_EVT_UPD_FCPORT:
5033 qla2x00_update_fcport(vha, e->u.fcport.fcport);
5034 break;
5035 case QLA_EVT_GNL:
5036 qla24xx_async_gnl(vha, e->u.fcport.fcport);
5037 break;
5038 case QLA_EVT_NACK:
5039 qla24xx_do_nack_work(vha, e);
5040 break;
5041 case QLA_EVT_ASYNC_PRLO:
5042 qla2x00_async_prlo(vha, e->u.logio.fcport);
5043 break;
5044 case QLA_EVT_ASYNC_PRLO_DONE:
5045 qla2x00_async_prlo_done(vha, e->u.logio.fcport,
5046 e->u.logio.data);
5047 break;
5048 case QLA_EVT_GPNFT:
5049 qla24xx_async_gpnft(vha, e->u.gpnft.fc4_type,
5050 e->u.gpnft.sp);
5051 break;
5052 case QLA_EVT_GPNFT_DONE:
5053 qla24xx_async_gpnft_done(vha, e->u.iosb.sp);
5054 break;
5055 case QLA_EVT_GNNFT_DONE:
5056 qla24xx_async_gnnft_done(vha, e->u.iosb.sp);
5057 break;
5058 case QLA_EVT_GNNID:
5059 qla24xx_async_gnnid(vha, e->u.fcport.fcport);
5060 break;
5061 case QLA_EVT_GFPNID:
5062 qla24xx_async_gfpnid(vha, e->u.fcport.fcport);
5063 break;
5064 case QLA_EVT_SP_RETRY:
5065 qla_sp_retry(vha, e);
5066 }
5067 if (e->flags & QLA_EVT_FLAG_FREE)
5068 kfree(e);
5069
5070 /* For each work completed decrement vha ref count */
5071 QLA_VHA_MARK_NOT_BUSY(vha);
5072 }
5073}
5074
5075int qla24xx_post_relogin_work(struct scsi_qla_host *vha)
5076{
5077 struct qla_work_evt *e;
5078
5079 e = qla2x00_alloc_work(vha, QLA_EVT_RELOGIN);
5080
5081 if (!e) {
5082 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5083 return QLA_FUNCTION_FAILED;
5084 }
5085
5086 return qla2x00_post_work(vha, e);
5087}
5088
5089/* Relogins all the fcports of a vport
5090 * Context: dpc thread
5091 */
5092void qla2x00_relogin(struct scsi_qla_host *vha)
5093{
5094 fc_port_t *fcport;
5095 int status;
5096 struct event_arg ea;
5097
5098 list_for_each_entry(fcport, &vha->vp_fcports, list) {
5099 /*
5100 * If the port is not ONLINE then try to login
5101 * to it if we haven't run out of retries.
5102 */
5103 if (atomic_read(&fcport->state) != FCS_ONLINE &&
5104 fcport->login_retry &&
5105 !(fcport->flags & (FCF_ASYNC_SENT | FCF_ASYNC_ACTIVE))) {
5106 if (vha->hw->current_topology != ISP_CFG_NL) {
5107 ql_dbg(ql_dbg_disc, fcport->vha, 0x2108,
5108 "%s %8phC DS %d LS %d\n", __func__,
5109 fcport->port_name, fcport->disc_state,
5110 fcport->fw_login_state);
5111 memset(&ea, 0, sizeof(ea));
5112 ea.event = FCME_RELOGIN;
5113 ea.fcport = fcport;
5114 qla2x00_fcport_event_handler(vha, &ea);
5115 } else if (vha->hw->current_topology == ISP_CFG_NL) {
5116 fcport->login_retry--;
5117 status = qla2x00_local_device_login(vha,
5118 fcport);
5119 if (status == QLA_SUCCESS) {
5120 fcport->old_loop_id = fcport->loop_id;
5121 ql_dbg(ql_dbg_disc, vha, 0x2003,
5122 "Port login OK: logged in ID 0x%x.\n",
5123 fcport->loop_id);
5124 qla2x00_update_fcport(vha, fcport);
5125 } else if (status == 1) {
5126 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
5127 /* retry the login again */
5128 ql_dbg(ql_dbg_disc, vha, 0x2007,
5129 "Retrying %d login again loop_id 0x%x.\n",
5130 fcport->login_retry,
5131 fcport->loop_id);
5132 } else {
5133 fcport->login_retry = 0;
5134 }
5135
5136 if (fcport->login_retry == 0 &&
5137 status != QLA_SUCCESS)
5138 qla2x00_clear_loop_id(fcport);
5139 }
5140 }
5141 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
5142 break;
5143 }
5144
5145 ql_dbg(ql_dbg_disc, vha, 0x400e,
5146 "Relogin end.\n");
5147}
5148
5149/* Schedule work on any of the dpc-workqueues */
5150void
5151qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code)
5152{
5153 struct qla_hw_data *ha = base_vha->hw;
5154
5155 switch (work_code) {
5156 case MBA_IDC_AEN: /* 0x8200 */
5157 if (ha->dpc_lp_wq)
5158 queue_work(ha->dpc_lp_wq, &ha->idc_aen);
5159 break;
5160
5161 case QLA83XX_NIC_CORE_RESET: /* 0x1 */
5162 if (!ha->flags.nic_core_reset_hdlr_active) {
5163 if (ha->dpc_hp_wq)
5164 queue_work(ha->dpc_hp_wq, &ha->nic_core_reset);
5165 } else
5166 ql_dbg(ql_dbg_p3p, base_vha, 0xb05e,
5167 "NIC Core reset is already active. Skip "
5168 "scheduling it again.\n");
5169 break;
5170 case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */
5171 if (ha->dpc_hp_wq)
5172 queue_work(ha->dpc_hp_wq, &ha->idc_state_handler);
5173 break;
5174 case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */
5175 if (ha->dpc_hp_wq)
5176 queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable);
5177 break;
5178 default:
5179 ql_log(ql_log_warn, base_vha, 0xb05f,
5180 "Unknown work-code=0x%x.\n", work_code);
5181 }
5182
5183 return;
5184}
5185
5186/* Work: Perform NIC Core Unrecoverable state handling */
5187void
5188qla83xx_nic_core_unrecoverable_work(struct work_struct *work)
5189{
5190 struct qla_hw_data *ha =
5191 container_of(work, struct qla_hw_data, nic_core_unrecoverable);
5192 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5193 uint32_t dev_state = 0;
5194
5195 qla83xx_idc_lock(base_vha, 0);
5196 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5197 qla83xx_reset_ownership(base_vha);
5198 if (ha->flags.nic_core_reset_owner) {
5199 ha->flags.nic_core_reset_owner = 0;
5200 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5201 QLA8XXX_DEV_FAILED);
5202 ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n");
5203 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5204 }
5205 qla83xx_idc_unlock(base_vha, 0);
5206}
5207
5208/* Work: Execute IDC state handler */
5209void
5210qla83xx_idc_state_handler_work(struct work_struct *work)
5211{
5212 struct qla_hw_data *ha =
5213 container_of(work, struct qla_hw_data, idc_state_handler);
5214 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5215 uint32_t dev_state = 0;
5216
5217 qla83xx_idc_lock(base_vha, 0);
5218 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5219 if (dev_state == QLA8XXX_DEV_FAILED ||
5220 dev_state == QLA8XXX_DEV_NEED_QUIESCENT)
5221 qla83xx_idc_state_handler(base_vha);
5222 qla83xx_idc_unlock(base_vha, 0);
5223}
5224
5225static int
5226qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha)
5227{
5228 int rval = QLA_SUCCESS;
5229 unsigned long heart_beat_wait = jiffies + (1 * HZ);
5230 uint32_t heart_beat_counter1, heart_beat_counter2;
5231
5232 do {
5233 if (time_after(jiffies, heart_beat_wait)) {
5234 ql_dbg(ql_dbg_p3p, base_vha, 0xb07c,
5235 "Nic Core f/w is not alive.\n");
5236 rval = QLA_FUNCTION_FAILED;
5237 break;
5238 }
5239
5240 qla83xx_idc_lock(base_vha, 0);
5241 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5242 &heart_beat_counter1);
5243 qla83xx_idc_unlock(base_vha, 0);
5244 msleep(100);
5245 qla83xx_idc_lock(base_vha, 0);
5246 qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT,
5247 &heart_beat_counter2);
5248 qla83xx_idc_unlock(base_vha, 0);
5249 } while (heart_beat_counter1 == heart_beat_counter2);
5250
5251 return rval;
5252}
5253
5254/* Work: Perform NIC Core Reset handling */
5255void
5256qla83xx_nic_core_reset_work(struct work_struct *work)
5257{
5258 struct qla_hw_data *ha =
5259 container_of(work, struct qla_hw_data, nic_core_reset);
5260 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5261 uint32_t dev_state = 0;
5262
5263 if (IS_QLA2031(ha)) {
5264 if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS)
5265 ql_log(ql_log_warn, base_vha, 0xb081,
5266 "Failed to dump mctp\n");
5267 return;
5268 }
5269
5270 if (!ha->flags.nic_core_reset_hdlr_active) {
5271 if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) {
5272 qla83xx_idc_lock(base_vha, 0);
5273 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5274 &dev_state);
5275 qla83xx_idc_unlock(base_vha, 0);
5276 if (dev_state != QLA8XXX_DEV_NEED_RESET) {
5277 ql_dbg(ql_dbg_p3p, base_vha, 0xb07a,
5278 "Nic Core f/w is alive.\n");
5279 return;
5280 }
5281 }
5282
5283 ha->flags.nic_core_reset_hdlr_active = 1;
5284 if (qla83xx_nic_core_reset(base_vha)) {
5285 /* NIC Core reset failed. */
5286 ql_dbg(ql_dbg_p3p, base_vha, 0xb061,
5287 "NIC Core reset failed.\n");
5288 }
5289 ha->flags.nic_core_reset_hdlr_active = 0;
5290 }
5291}
5292
5293/* Work: Handle 8200 IDC aens */
5294void
5295qla83xx_service_idc_aen(struct work_struct *work)
5296{
5297 struct qla_hw_data *ha =
5298 container_of(work, struct qla_hw_data, idc_aen);
5299 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5300 uint32_t dev_state, idc_control;
5301
5302 qla83xx_idc_lock(base_vha, 0);
5303 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5304 qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control);
5305 qla83xx_idc_unlock(base_vha, 0);
5306 if (dev_state == QLA8XXX_DEV_NEED_RESET) {
5307 if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) {
5308 ql_dbg(ql_dbg_p3p, base_vha, 0xb062,
5309 "Application requested NIC Core Reset.\n");
5310 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5311 } else if (qla83xx_check_nic_core_fw_alive(base_vha) ==
5312 QLA_SUCCESS) {
5313 ql_dbg(ql_dbg_p3p, base_vha, 0xb07b,
5314 "Other protocol driver requested NIC Core Reset.\n");
5315 qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET);
5316 }
5317 } else if (dev_state == QLA8XXX_DEV_FAILED ||
5318 dev_state == QLA8XXX_DEV_NEED_QUIESCENT) {
5319 qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER);
5320 }
5321}
5322
5323static void
5324qla83xx_wait_logic(void)
5325{
5326 int i;
5327
5328 /* Yield CPU */
5329 if (!in_interrupt()) {
5330 /*
5331 * Wait about 200ms before retrying again.
5332 * This controls the number of retries for single
5333 * lock operation.
5334 */
5335 msleep(100);
5336 schedule();
5337 } else {
5338 for (i = 0; i < 20; i++)
5339 cpu_relax(); /* This a nop instr on i386 */
5340 }
5341}
5342
5343static int
5344qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha)
5345{
5346 int rval;
5347 uint32_t data;
5348 uint32_t idc_lck_rcvry_stage_mask = 0x3;
5349 uint32_t idc_lck_rcvry_owner_mask = 0x3c;
5350 struct qla_hw_data *ha = base_vha->hw;
5351 ql_dbg(ql_dbg_p3p, base_vha, 0xb086,
5352 "Trying force recovery of the IDC lock.\n");
5353
5354 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data);
5355 if (rval)
5356 return rval;
5357
5358 if ((data & idc_lck_rcvry_stage_mask) > 0) {
5359 return QLA_SUCCESS;
5360 } else {
5361 data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2);
5362 rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5363 data);
5364 if (rval)
5365 return rval;
5366
5367 msleep(200);
5368
5369 rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY,
5370 &data);
5371 if (rval)
5372 return rval;
5373
5374 if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) {
5375 data &= (IDC_LOCK_RECOVERY_STAGE2 |
5376 ~(idc_lck_rcvry_stage_mask));
5377 rval = qla83xx_wr_reg(base_vha,
5378 QLA83XX_IDC_LOCK_RECOVERY, data);
5379 if (rval)
5380 return rval;
5381
5382 /* Forcefully perform IDC UnLock */
5383 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK,
5384 &data);
5385 if (rval)
5386 return rval;
5387 /* Clear lock-id by setting 0xff */
5388 rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5389 0xff);
5390 if (rval)
5391 return rval;
5392 /* Clear lock-recovery by setting 0x0 */
5393 rval = qla83xx_wr_reg(base_vha,
5394 QLA83XX_IDC_LOCK_RECOVERY, 0x0);
5395 if (rval)
5396 return rval;
5397 } else
5398 return QLA_SUCCESS;
5399 }
5400
5401 return rval;
5402}
5403
5404static int
5405qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha)
5406{
5407 int rval = QLA_SUCCESS;
5408 uint32_t o_drv_lockid, n_drv_lockid;
5409 unsigned long lock_recovery_timeout;
5410
5411 lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT;
5412retry_lockid:
5413 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid);
5414 if (rval)
5415 goto exit;
5416
5417 /* MAX wait time before forcing IDC Lock recovery = 2 secs */
5418 if (time_after_eq(jiffies, lock_recovery_timeout)) {
5419 if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS)
5420 return QLA_SUCCESS;
5421 else
5422 return QLA_FUNCTION_FAILED;
5423 }
5424
5425 rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid);
5426 if (rval)
5427 goto exit;
5428
5429 if (o_drv_lockid == n_drv_lockid) {
5430 qla83xx_wait_logic();
5431 goto retry_lockid;
5432 } else
5433 return QLA_SUCCESS;
5434
5435exit:
5436 return rval;
5437}
5438
5439void
5440qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id)
5441{
5442 uint16_t options = (requester_id << 15) | BIT_6;
5443 uint32_t data;
5444 uint32_t lock_owner;
5445 struct qla_hw_data *ha = base_vha->hw;
5446
5447 /* IDC-lock implementation using driver-lock/lock-id remote registers */
5448retry_lock:
5449 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data)
5450 == QLA_SUCCESS) {
5451 if (data) {
5452 /* Setting lock-id to our function-number */
5453 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5454 ha->portnum);
5455 } else {
5456 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID,
5457 &lock_owner);
5458 ql_dbg(ql_dbg_p3p, base_vha, 0xb063,
5459 "Failed to acquire IDC lock, acquired by %d, "
5460 "retrying...\n", lock_owner);
5461
5462 /* Retry/Perform IDC-Lock recovery */
5463 if (qla83xx_idc_lock_recovery(base_vha)
5464 == QLA_SUCCESS) {
5465 qla83xx_wait_logic();
5466 goto retry_lock;
5467 } else
5468 ql_log(ql_log_warn, base_vha, 0xb075,
5469 "IDC Lock recovery FAILED.\n");
5470 }
5471
5472 }
5473
5474 return;
5475
5476 /* XXX: IDC-lock implementation using access-control mbx */
5477retry_lock2:
5478 if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) {
5479 ql_dbg(ql_dbg_p3p, base_vha, 0xb072,
5480 "Failed to acquire IDC lock. retrying...\n");
5481 /* Retry/Perform IDC-Lock recovery */
5482 if (qla83xx_idc_lock_recovery(base_vha) == QLA_SUCCESS) {
5483 qla83xx_wait_logic();
5484 goto retry_lock2;
5485 } else
5486 ql_log(ql_log_warn, base_vha, 0xb076,
5487 "IDC Lock recovery FAILED.\n");
5488 }
5489
5490 return;
5491}
5492
5493void
5494qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id)
5495{
5496#if 0
5497 uint16_t options = (requester_id << 15) | BIT_7;
5498#endif
5499 uint16_t retry;
5500 uint32_t data;
5501 struct qla_hw_data *ha = base_vha->hw;
5502
5503 /* IDC-unlock implementation using driver-unlock/lock-id
5504 * remote registers
5505 */
5506 retry = 0;
5507retry_unlock:
5508 if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data)
5509 == QLA_SUCCESS) {
5510 if (data == ha->portnum) {
5511 qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data);
5512 /* Clearing lock-id by setting 0xff */
5513 qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff);
5514 } else if (retry < 10) {
5515 /* SV: XXX: IDC unlock retrying needed here? */
5516
5517 /* Retry for IDC-unlock */
5518 qla83xx_wait_logic();
5519 retry++;
5520 ql_dbg(ql_dbg_p3p, base_vha, 0xb064,
5521 "Failed to release IDC lock, retrying=%d\n", retry);
5522 goto retry_unlock;
5523 }
5524 } else if (retry < 10) {
5525 /* Retry for IDC-unlock */
5526 qla83xx_wait_logic();
5527 retry++;
5528 ql_dbg(ql_dbg_p3p, base_vha, 0xb065,
5529 "Failed to read drv-lockid, retrying=%d\n", retry);
5530 goto retry_unlock;
5531 }
5532
5533 return;
5534
5535#if 0
5536 /* XXX: IDC-unlock implementation using access-control mbx */
5537 retry = 0;
5538retry_unlock2:
5539 if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) {
5540 if (retry < 10) {
5541 /* Retry for IDC-unlock */
5542 qla83xx_wait_logic();
5543 retry++;
5544 ql_dbg(ql_dbg_p3p, base_vha, 0xb066,
5545 "Failed to release IDC lock, retrying=%d\n", retry);
5546 goto retry_unlock2;
5547 }
5548 }
5549
5550 return;
5551#endif
5552}
5553
5554int
5555__qla83xx_set_drv_presence(scsi_qla_host_t *vha)
5556{
5557 int rval = QLA_SUCCESS;
5558 struct qla_hw_data *ha = vha->hw;
5559 uint32_t drv_presence;
5560
5561 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
5562 if (rval == QLA_SUCCESS) {
5563 drv_presence |= (1 << ha->portnum);
5564 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
5565 drv_presence);
5566 }
5567
5568 return rval;
5569}
5570
5571int
5572qla83xx_set_drv_presence(scsi_qla_host_t *vha)
5573{
5574 int rval = QLA_SUCCESS;
5575
5576 qla83xx_idc_lock(vha, 0);
5577 rval = __qla83xx_set_drv_presence(vha);
5578 qla83xx_idc_unlock(vha, 0);
5579
5580 return rval;
5581}
5582
5583int
5584__qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
5585{
5586 int rval = QLA_SUCCESS;
5587 struct qla_hw_data *ha = vha->hw;
5588 uint32_t drv_presence;
5589
5590 rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
5591 if (rval == QLA_SUCCESS) {
5592 drv_presence &= ~(1 << ha->portnum);
5593 rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
5594 drv_presence);
5595 }
5596
5597 return rval;
5598}
5599
5600int
5601qla83xx_clear_drv_presence(scsi_qla_host_t *vha)
5602{
5603 int rval = QLA_SUCCESS;
5604
5605 qla83xx_idc_lock(vha, 0);
5606 rval = __qla83xx_clear_drv_presence(vha);
5607 qla83xx_idc_unlock(vha, 0);
5608
5609 return rval;
5610}
5611
5612static void
5613qla83xx_need_reset_handler(scsi_qla_host_t *vha)
5614{
5615 struct qla_hw_data *ha = vha->hw;
5616 uint32_t drv_ack, drv_presence;
5617 unsigned long ack_timeout;
5618
5619 /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */
5620 ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ);
5621 while (1) {
5622 qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack);
5623 qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence);
5624 if ((drv_ack & drv_presence) == drv_presence)
5625 break;
5626
5627 if (time_after_eq(jiffies, ack_timeout)) {
5628 ql_log(ql_log_warn, vha, 0xb067,
5629 "RESET ACK TIMEOUT! drv_presence=0x%x "
5630 "drv_ack=0x%x\n", drv_presence, drv_ack);
5631 /*
5632 * The function(s) which did not ack in time are forced
5633 * to withdraw any further participation in the IDC
5634 * reset.
5635 */
5636 if (drv_ack != drv_presence)
5637 qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE,
5638 drv_ack);
5639 break;
5640 }
5641
5642 qla83xx_idc_unlock(vha, 0);
5643 msleep(1000);
5644 qla83xx_idc_lock(vha, 0);
5645 }
5646
5647 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD);
5648 ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n");
5649}
5650
5651static int
5652qla83xx_device_bootstrap(scsi_qla_host_t *vha)
5653{
5654 int rval = QLA_SUCCESS;
5655 uint32_t idc_control;
5656
5657 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING);
5658 ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n");
5659
5660 /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */
5661 __qla83xx_get_idc_control(vha, &idc_control);
5662 idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET;
5663 __qla83xx_set_idc_control(vha, 0);
5664
5665 qla83xx_idc_unlock(vha, 0);
5666 rval = qla83xx_restart_nic_firmware(vha);
5667 qla83xx_idc_lock(vha, 0);
5668
5669 if (rval != QLA_SUCCESS) {
5670 ql_log(ql_log_fatal, vha, 0xb06a,
5671 "Failed to restart NIC f/w.\n");
5672 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED);
5673 ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n");
5674 } else {
5675 ql_dbg(ql_dbg_p3p, vha, 0xb06c,
5676 "Success in restarting nic f/w.\n");
5677 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY);
5678 ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n");
5679 }
5680
5681 return rval;
5682}
5683
5684/* Assumes idc_lock always held on entry */
5685int
5686qla83xx_idc_state_handler(scsi_qla_host_t *base_vha)
5687{
5688 struct qla_hw_data *ha = base_vha->hw;
5689 int rval = QLA_SUCCESS;
5690 unsigned long dev_init_timeout;
5691 uint32_t dev_state;
5692
5693 /* Wait for MAX-INIT-TIMEOUT for the device to go ready */
5694 dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ);
5695
5696 while (1) {
5697
5698 if (time_after_eq(jiffies, dev_init_timeout)) {
5699 ql_log(ql_log_warn, base_vha, 0xb06e,
5700 "Initialization TIMEOUT!\n");
5701 /* Init timeout. Disable further NIC Core
5702 * communication.
5703 */
5704 qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE,
5705 QLA8XXX_DEV_FAILED);
5706 ql_log(ql_log_info, base_vha, 0xb06f,
5707 "HW State: FAILED.\n");
5708 }
5709
5710 qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state);
5711 switch (dev_state) {
5712 case QLA8XXX_DEV_READY:
5713 if (ha->flags.nic_core_reset_owner)
5714 qla83xx_idc_audit(base_vha,
5715 IDC_AUDIT_COMPLETION);
5716 ha->flags.nic_core_reset_owner = 0;
5717 ql_dbg(ql_dbg_p3p, base_vha, 0xb070,
5718 "Reset_owner reset by 0x%x.\n",
5719 ha->portnum);
5720 goto exit;
5721 case QLA8XXX_DEV_COLD:
5722 if (ha->flags.nic_core_reset_owner)
5723 rval = qla83xx_device_bootstrap(base_vha);
5724 else {
5725 /* Wait for AEN to change device-state */
5726 qla83xx_idc_unlock(base_vha, 0);
5727 msleep(1000);
5728 qla83xx_idc_lock(base_vha, 0);
5729 }
5730 break;
5731 case QLA8XXX_DEV_INITIALIZING:
5732 /* Wait for AEN to change device-state */
5733 qla83xx_idc_unlock(base_vha, 0);
5734 msleep(1000);
5735 qla83xx_idc_lock(base_vha, 0);
5736 break;
5737 case QLA8XXX_DEV_NEED_RESET:
5738 if (!ql2xdontresethba && ha->flags.nic_core_reset_owner)
5739 qla83xx_need_reset_handler(base_vha);
5740 else {
5741 /* Wait for AEN to change device-state */
5742 qla83xx_idc_unlock(base_vha, 0);
5743 msleep(1000);
5744 qla83xx_idc_lock(base_vha, 0);
5745 }
5746 /* reset timeout value after need reset handler */
5747 dev_init_timeout = jiffies +
5748 (ha->fcoe_dev_init_timeout * HZ);
5749 break;
5750 case QLA8XXX_DEV_NEED_QUIESCENT:
5751 /* XXX: DEBUG for now */
5752 qla83xx_idc_unlock(base_vha, 0);
5753 msleep(1000);
5754 qla83xx_idc_lock(base_vha, 0);
5755 break;
5756 case QLA8XXX_DEV_QUIESCENT:
5757 /* XXX: DEBUG for now */
5758 if (ha->flags.quiesce_owner)
5759 goto exit;
5760
5761 qla83xx_idc_unlock(base_vha, 0);
5762 msleep(1000);
5763 qla83xx_idc_lock(base_vha, 0);
5764 dev_init_timeout = jiffies +
5765 (ha->fcoe_dev_init_timeout * HZ);
5766 break;
5767 case QLA8XXX_DEV_FAILED:
5768 if (ha->flags.nic_core_reset_owner)
5769 qla83xx_idc_audit(base_vha,
5770 IDC_AUDIT_COMPLETION);
5771 ha->flags.nic_core_reset_owner = 0;
5772 __qla83xx_clear_drv_presence(base_vha);
5773 qla83xx_idc_unlock(base_vha, 0);
5774 qla8xxx_dev_failed_handler(base_vha);
5775 rval = QLA_FUNCTION_FAILED;
5776 qla83xx_idc_lock(base_vha, 0);
5777 goto exit;
5778 case QLA8XXX_BAD_VALUE:
5779 qla83xx_idc_unlock(base_vha, 0);
5780 msleep(1000);
5781 qla83xx_idc_lock(base_vha, 0);
5782 break;
5783 default:
5784 ql_log(ql_log_warn, base_vha, 0xb071,
5785 "Unknown Device State: %x.\n", dev_state);
5786 qla83xx_idc_unlock(base_vha, 0);
5787 qla8xxx_dev_failed_handler(base_vha);
5788 rval = QLA_FUNCTION_FAILED;
5789 qla83xx_idc_lock(base_vha, 0);
5790 goto exit;
5791 }
5792 }
5793
5794exit:
5795 return rval;
5796}
5797
5798void
5799qla2x00_disable_board_on_pci_error(struct work_struct *work)
5800{
5801 struct qla_hw_data *ha = container_of(work, struct qla_hw_data,
5802 board_disable);
5803 struct pci_dev *pdev = ha->pdev;
5804 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
5805
5806 /*
5807 * if UNLOAD flag is already set, then continue unload,
5808 * where it was set first.
5809 */
5810 if (test_bit(UNLOADING, &base_vha->dpc_flags))
5811 return;
5812
5813 ql_log(ql_log_warn, base_vha, 0x015b,
5814 "Disabling adapter.\n");
5815
5816 if (!atomic_read(&pdev->enable_cnt)) {
5817 ql_log(ql_log_info, base_vha, 0xfffc,
5818 "PCI device disabled, no action req for PCI error=%lx\n",
5819 base_vha->pci_flags);
5820 return;
5821 }
5822
5823 qla2x00_wait_for_sess_deletion(base_vha);
5824
5825 set_bit(UNLOADING, &base_vha->dpc_flags);
5826
5827 qla2x00_delete_all_vps(ha, base_vha);
5828
5829 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
5830
5831 qla2x00_dfs_remove(base_vha);
5832
5833 qla84xx_put_chip(base_vha);
5834
5835 if (base_vha->timer_active)
5836 qla2x00_stop_timer(base_vha);
5837
5838 base_vha->flags.online = 0;
5839
5840 qla2x00_destroy_deferred_work(ha);
5841
5842 /*
5843 * Do not try to stop beacon blink as it will issue a mailbox
5844 * command.
5845 */
5846 qla2x00_free_sysfs_attr(base_vha, false);
5847
5848 fc_remove_host(base_vha->host);
5849
5850 scsi_remove_host(base_vha->host);
5851
5852 base_vha->flags.init_done = 0;
5853 qla25xx_delete_queues(base_vha);
5854 qla2x00_free_fcports(base_vha);
5855 qla2x00_free_irqs(base_vha);
5856 qla2x00_mem_free(ha);
5857 qla82xx_md_free(base_vha);
5858 qla2x00_free_queues(ha);
5859
5860 qla2x00_unmap_iobases(ha);
5861
5862 pci_release_selected_regions(ha->pdev, ha->bars);
5863 pci_disable_pcie_error_reporting(pdev);
5864 pci_disable_device(pdev);
5865
5866 /*
5867 * Let qla2x00_remove_one cleanup qla_hw_data on device removal.
5868 */
5869}
5870
5871/**************************************************************************
5872* qla2x00_do_dpc
5873* This kernel thread is a task that is schedule by the interrupt handler
5874* to perform the background processing for interrupts.
5875*
5876* Notes:
5877* This task always run in the context of a kernel thread. It
5878* is kick-off by the driver's detect code and starts up
5879* up one per adapter. It immediately goes to sleep and waits for
5880* some fibre event. When either the interrupt handler or
5881* the timer routine detects a event it will one of the task
5882* bits then wake us up.
5883**************************************************************************/
5884static int
5885qla2x00_do_dpc(void *data)
5886{
5887 scsi_qla_host_t *base_vha;
5888 struct qla_hw_data *ha;
5889 uint32_t online;
5890 struct qla_qpair *qpair;
5891
5892 ha = (struct qla_hw_data *)data;
5893 base_vha = pci_get_drvdata(ha->pdev);
5894
5895 set_user_nice(current, MIN_NICE);
5896
5897 set_current_state(TASK_INTERRUPTIBLE);
5898 while (!kthread_should_stop()) {
5899 ql_dbg(ql_dbg_dpc, base_vha, 0x4000,
5900 "DPC handler sleeping.\n");
5901
5902 schedule();
5903
5904 if (!base_vha->flags.init_done || ha->flags.mbox_busy)
5905 goto end_loop;
5906
5907 if (ha->flags.eeh_busy) {
5908 ql_dbg(ql_dbg_dpc, base_vha, 0x4003,
5909 "eeh_busy=%d.\n", ha->flags.eeh_busy);
5910 goto end_loop;
5911 }
5912
5913 ha->dpc_active = 1;
5914
5915 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001,
5916 "DPC handler waking up, dpc_flags=0x%lx.\n",
5917 base_vha->dpc_flags);
5918
5919 if (test_bit(UNLOADING, &base_vha->dpc_flags))
5920 break;
5921
5922 if (IS_P3P_TYPE(ha)) {
5923 if (IS_QLA8044(ha)) {
5924 if (test_and_clear_bit(ISP_UNRECOVERABLE,
5925 &base_vha->dpc_flags)) {
5926 qla8044_idc_lock(ha);
5927 qla8044_wr_direct(base_vha,
5928 QLA8044_CRB_DEV_STATE_INDEX,
5929 QLA8XXX_DEV_FAILED);
5930 qla8044_idc_unlock(ha);
5931 ql_log(ql_log_info, base_vha, 0x4004,
5932 "HW State: FAILED.\n");
5933 qla8044_device_state_handler(base_vha);
5934 continue;
5935 }
5936
5937 } else {
5938 if (test_and_clear_bit(ISP_UNRECOVERABLE,
5939 &base_vha->dpc_flags)) {
5940 qla82xx_idc_lock(ha);
5941 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
5942 QLA8XXX_DEV_FAILED);
5943 qla82xx_idc_unlock(ha);
5944 ql_log(ql_log_info, base_vha, 0x0151,
5945 "HW State: FAILED.\n");
5946 qla82xx_device_state_handler(base_vha);
5947 continue;
5948 }
5949 }
5950
5951 if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
5952 &base_vha->dpc_flags)) {
5953
5954 ql_dbg(ql_dbg_dpc, base_vha, 0x4005,
5955 "FCoE context reset scheduled.\n");
5956 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
5957 &base_vha->dpc_flags))) {
5958 if (qla82xx_fcoe_ctx_reset(base_vha)) {
5959 /* FCoE-ctx reset failed.
5960 * Escalate to chip-reset
5961 */
5962 set_bit(ISP_ABORT_NEEDED,
5963 &base_vha->dpc_flags);
5964 }
5965 clear_bit(ABORT_ISP_ACTIVE,
5966 &base_vha->dpc_flags);
5967 }
5968
5969 ql_dbg(ql_dbg_dpc, base_vha, 0x4006,
5970 "FCoE context reset end.\n");
5971 }
5972 } else if (IS_QLAFX00(ha)) {
5973 if (test_and_clear_bit(ISP_UNRECOVERABLE,
5974 &base_vha->dpc_flags)) {
5975 ql_dbg(ql_dbg_dpc, base_vha, 0x4020,
5976 "Firmware Reset Recovery\n");
5977 if (qlafx00_reset_initialize(base_vha)) {
5978 /* Failed. Abort isp later. */
5979 if (!test_bit(UNLOADING,
5980 &base_vha->dpc_flags)) {
5981 set_bit(ISP_UNRECOVERABLE,
5982 &base_vha->dpc_flags);
5983 ql_dbg(ql_dbg_dpc, base_vha,
5984 0x4021,
5985 "Reset Recovery Failed\n");
5986 }
5987 }
5988 }
5989
5990 if (test_and_clear_bit(FX00_TARGET_SCAN,
5991 &base_vha->dpc_flags)) {
5992 ql_dbg(ql_dbg_dpc, base_vha, 0x4022,
5993 "ISPFx00 Target Scan scheduled\n");
5994 if (qlafx00_rescan_isp(base_vha)) {
5995 if (!test_bit(UNLOADING,
5996 &base_vha->dpc_flags))
5997 set_bit(ISP_UNRECOVERABLE,
5998 &base_vha->dpc_flags);
5999 ql_dbg(ql_dbg_dpc, base_vha, 0x401e,
6000 "ISPFx00 Target Scan Failed\n");
6001 }
6002 ql_dbg(ql_dbg_dpc, base_vha, 0x401f,
6003 "ISPFx00 Target Scan End\n");
6004 }
6005 if (test_and_clear_bit(FX00_HOST_INFO_RESEND,
6006 &base_vha->dpc_flags)) {
6007 ql_dbg(ql_dbg_dpc, base_vha, 0x4023,
6008 "ISPFx00 Host Info resend scheduled\n");
6009 qlafx00_fx_disc(base_vha,
6010 &base_vha->hw->mr.fcport,
6011 FXDISC_REG_HOST_INFO);
6012 }
6013 }
6014
6015 if (test_and_clear_bit(DETECT_SFP_CHANGE,
6016 &base_vha->dpc_flags) &&
6017 !test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) {
6018 qla24xx_detect_sfp(base_vha);
6019
6020 if (ha->flags.detected_lr_sfp !=
6021 ha->flags.using_lr_setting)
6022 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
6023 }
6024
6025 if (test_and_clear_bit(ISP_ABORT_NEEDED,
6026 &base_vha->dpc_flags)) {
6027
6028 ql_dbg(ql_dbg_dpc, base_vha, 0x4007,
6029 "ISP abort scheduled.\n");
6030 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
6031 &base_vha->dpc_flags))) {
6032
6033 if (ha->isp_ops->abort_isp(base_vha)) {
6034 /* failed. retry later */
6035 set_bit(ISP_ABORT_NEEDED,
6036 &base_vha->dpc_flags);
6037 }
6038 clear_bit(ABORT_ISP_ACTIVE,
6039 &base_vha->dpc_flags);
6040 }
6041
6042 ql_dbg(ql_dbg_dpc, base_vha, 0x4008,
6043 "ISP abort end.\n");
6044 }
6045
6046 if (test_and_clear_bit(FCPORT_UPDATE_NEEDED,
6047 &base_vha->dpc_flags)) {
6048 qla2x00_update_fcports(base_vha);
6049 }
6050
6051 if (IS_QLAFX00(ha))
6052 goto loop_resync_check;
6053
6054 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) {
6055 ql_dbg(ql_dbg_dpc, base_vha, 0x4009,
6056 "Quiescence mode scheduled.\n");
6057 if (IS_P3P_TYPE(ha)) {
6058 if (IS_QLA82XX(ha))
6059 qla82xx_device_state_handler(base_vha);
6060 if (IS_QLA8044(ha))
6061 qla8044_device_state_handler(base_vha);
6062 clear_bit(ISP_QUIESCE_NEEDED,
6063 &base_vha->dpc_flags);
6064 if (!ha->flags.quiesce_owner) {
6065 qla2x00_perform_loop_resync(base_vha);
6066 if (IS_QLA82XX(ha)) {
6067 qla82xx_idc_lock(ha);
6068 qla82xx_clear_qsnt_ready(
6069 base_vha);
6070 qla82xx_idc_unlock(ha);
6071 } else if (IS_QLA8044(ha)) {
6072 qla8044_idc_lock(ha);
6073 qla8044_clear_qsnt_ready(
6074 base_vha);
6075 qla8044_idc_unlock(ha);
6076 }
6077 }
6078 } else {
6079 clear_bit(ISP_QUIESCE_NEEDED,
6080 &base_vha->dpc_flags);
6081 qla2x00_quiesce_io(base_vha);
6082 }
6083 ql_dbg(ql_dbg_dpc, base_vha, 0x400a,
6084 "Quiescence mode end.\n");
6085 }
6086
6087 if (test_and_clear_bit(RESET_MARKER_NEEDED,
6088 &base_vha->dpc_flags) &&
6089 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
6090
6091 ql_dbg(ql_dbg_dpc, base_vha, 0x400b,
6092 "Reset marker scheduled.\n");
6093 qla2x00_rst_aen(base_vha);
6094 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
6095 ql_dbg(ql_dbg_dpc, base_vha, 0x400c,
6096 "Reset marker end.\n");
6097 }
6098
6099 /* Retry each device up to login retry count */
6100 if (test_bit(RELOGIN_NEEDED, &base_vha->dpc_flags) &&
6101 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
6102 atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
6103
6104 if (!base_vha->relogin_jif ||
6105 time_after_eq(jiffies, base_vha->relogin_jif)) {
6106 base_vha->relogin_jif = jiffies + HZ;
6107 clear_bit(RELOGIN_NEEDED, &base_vha->dpc_flags);
6108
6109 ql_dbg(ql_dbg_disc, base_vha, 0x400d,
6110 "Relogin scheduled.\n");
6111 qla24xx_post_relogin_work(base_vha);
6112 }
6113 }
6114loop_resync_check:
6115 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
6116 &base_vha->dpc_flags)) {
6117
6118 ql_dbg(ql_dbg_dpc, base_vha, 0x400f,
6119 "Loop resync scheduled.\n");
6120
6121 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
6122 &base_vha->dpc_flags))) {
6123
6124 qla2x00_loop_resync(base_vha);
6125
6126 clear_bit(LOOP_RESYNC_ACTIVE,
6127 &base_vha->dpc_flags);
6128 }
6129
6130 ql_dbg(ql_dbg_dpc, base_vha, 0x4010,
6131 "Loop resync end.\n");
6132 }
6133
6134 if (IS_QLAFX00(ha))
6135 goto intr_on_check;
6136
6137 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
6138 atomic_read(&base_vha->loop_state) == LOOP_READY) {
6139 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
6140 qla2xxx_flash_npiv_conf(base_vha);
6141 }
6142
6143intr_on_check:
6144 if (!ha->interrupts_on)
6145 ha->isp_ops->enable_intrs(ha);
6146
6147 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
6148 &base_vha->dpc_flags)) {
6149 if (ha->beacon_blink_led == 1)
6150 ha->isp_ops->beacon_blink(base_vha);
6151 }
6152
6153 /* qpair online check */
6154 if (test_and_clear_bit(QPAIR_ONLINE_CHECK_NEEDED,
6155 &base_vha->dpc_flags)) {
6156 if (ha->flags.eeh_busy ||
6157 ha->flags.pci_channel_io_perm_failure)
6158 online = 0;
6159 else
6160 online = 1;
6161
6162 mutex_lock(&ha->mq_lock);
6163 list_for_each_entry(qpair, &base_vha->qp_list,
6164 qp_list_elem)
6165 qpair->online = online;
6166 mutex_unlock(&ha->mq_lock);
6167 }
6168
6169 if (test_and_clear_bit(SET_ZIO_THRESHOLD_NEEDED, &base_vha->dpc_flags)) {
6170 ql_log(ql_log_info, base_vha, 0xffffff,
6171 "nvme: SET ZIO Activity exchange threshold to %d.\n",
6172 ha->nvme_last_rptd_aen);
6173 if (qla27xx_set_zio_threshold(base_vha, ha->nvme_last_rptd_aen)) {
6174 ql_log(ql_log_info, base_vha, 0xffffff,
6175 "nvme: Unable to SET ZIO Activity exchange threshold to %d.\n",
6176 ha->nvme_last_rptd_aen);
6177 }
6178 }
6179
6180 if (!IS_QLAFX00(ha))
6181 qla2x00_do_dpc_all_vps(base_vha);
6182
6183 ha->dpc_active = 0;
6184end_loop:
6185 set_current_state(TASK_INTERRUPTIBLE);
6186 } /* End of while(1) */
6187 __set_current_state(TASK_RUNNING);
6188
6189 ql_dbg(ql_dbg_dpc, base_vha, 0x4011,
6190 "DPC handler exiting.\n");
6191
6192 /*
6193 * Make sure that nobody tries to wake us up again.
6194 */
6195 ha->dpc_active = 0;
6196
6197 /* Cleanup any residual CTX SRBs. */
6198 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
6199
6200 return 0;
6201}
6202
6203void
6204qla2xxx_wake_dpc(struct scsi_qla_host *vha)
6205{
6206 struct qla_hw_data *ha = vha->hw;
6207 struct task_struct *t = ha->dpc_thread;
6208
6209 if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
6210 wake_up_process(t);
6211}
6212
6213/*
6214* qla2x00_rst_aen
6215* Processes asynchronous reset.
6216*
6217* Input:
6218* ha = adapter block pointer.
6219*/
6220static void
6221qla2x00_rst_aen(scsi_qla_host_t *vha)
6222{
6223 if (vha->flags.online && !vha->flags.reset_active &&
6224 !atomic_read(&vha->loop_down_timer) &&
6225 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
6226 do {
6227 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
6228
6229 /*
6230 * Issue marker command only when we are going to start
6231 * the I/O.
6232 */
6233 vha->marker_needed = 1;
6234 } while (!atomic_read(&vha->loop_down_timer) &&
6235 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
6236 }
6237}
6238
6239/**************************************************************************
6240* qla2x00_timer
6241*
6242* Description:
6243* One second timer
6244*
6245* Context: Interrupt
6246***************************************************************************/
6247void
6248qla2x00_timer(struct timer_list *t)
6249{
6250 scsi_qla_host_t *vha = from_timer(vha, t, timer);
6251 unsigned long cpu_flags = 0;
6252 int start_dpc = 0;
6253 int index;
6254 srb_t *sp;
6255 uint16_t w;
6256 struct qla_hw_data *ha = vha->hw;
6257 struct req_que *req;
6258
6259 if (ha->flags.eeh_busy) {
6260 ql_dbg(ql_dbg_timer, vha, 0x6000,
6261 "EEH = %d, restarting timer.\n",
6262 ha->flags.eeh_busy);
6263 qla2x00_restart_timer(vha, WATCH_INTERVAL);
6264 return;
6265 }
6266
6267 /*
6268 * Hardware read to raise pending EEH errors during mailbox waits. If
6269 * the read returns -1 then disable the board.
6270 */
6271 if (!pci_channel_offline(ha->pdev)) {
6272 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
6273 qla2x00_check_reg16_for_disconnect(vha, w);
6274 }
6275
6276 /* Make sure qla82xx_watchdog is run only for physical port */
6277 if (!vha->vp_idx && IS_P3P_TYPE(ha)) {
6278 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags))
6279 start_dpc++;
6280 if (IS_QLA82XX(ha))
6281 qla82xx_watchdog(vha);
6282 else if (IS_QLA8044(ha))
6283 qla8044_watchdog(vha);
6284 }
6285
6286 if (!vha->vp_idx && IS_QLAFX00(ha))
6287 qlafx00_timer_routine(vha);
6288
6289 /* Loop down handler. */
6290 if (atomic_read(&vha->loop_down_timer) > 0 &&
6291 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) &&
6292 !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags))
6293 && vha->flags.online) {
6294
6295 if (atomic_read(&vha->loop_down_timer) ==
6296 vha->loop_down_abort_time) {
6297
6298 ql_log(ql_log_info, vha, 0x6008,
6299 "Loop down - aborting the queues before time expires.\n");
6300
6301 if (!IS_QLA2100(ha) && vha->link_down_timeout)
6302 atomic_set(&vha->loop_state, LOOP_DEAD);
6303
6304 /*
6305 * Schedule an ISP abort to return any FCP2-device
6306 * commands.
6307 */
6308 /* NPIV - scan physical port only */
6309 if (!vha->vp_idx) {
6310 spin_lock_irqsave(&ha->hardware_lock,
6311 cpu_flags);
6312 req = ha->req_q_map[0];
6313 for (index = 1;
6314 index < req->num_outstanding_cmds;
6315 index++) {
6316 fc_port_t *sfcp;
6317
6318 sp = req->outstanding_cmds[index];
6319 if (!sp)
6320 continue;
6321 if (sp->cmd_type != TYPE_SRB)
6322 continue;
6323 if (sp->type != SRB_SCSI_CMD)
6324 continue;
6325 sfcp = sp->fcport;
6326 if (!(sfcp->flags & FCF_FCP2_DEVICE))
6327 continue;
6328
6329 if (IS_QLA82XX(ha))
6330 set_bit(FCOE_CTX_RESET_NEEDED,
6331 &vha->dpc_flags);
6332 else
6333 set_bit(ISP_ABORT_NEEDED,
6334 &vha->dpc_flags);
6335 break;
6336 }
6337 spin_unlock_irqrestore(&ha->hardware_lock,
6338 cpu_flags);
6339 }
6340 start_dpc++;
6341 }
6342
6343 /* if the loop has been down for 4 minutes, reinit adapter */
6344 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
6345 if (!(vha->device_flags & DFLG_NO_CABLE)) {
6346 ql_log(ql_log_warn, vha, 0x6009,
6347 "Loop down - aborting ISP.\n");
6348
6349 if (IS_QLA82XX(ha))
6350 set_bit(FCOE_CTX_RESET_NEEDED,
6351 &vha->dpc_flags);
6352 else
6353 set_bit(ISP_ABORT_NEEDED,
6354 &vha->dpc_flags);
6355 }
6356 }
6357 ql_dbg(ql_dbg_timer, vha, 0x600a,
6358 "Loop down - seconds remaining %d.\n",
6359 atomic_read(&vha->loop_down_timer));
6360 }
6361 /* Check if beacon LED needs to be blinked for physical host only */
6362 if (!vha->vp_idx && (ha->beacon_blink_led == 1)) {
6363 /* There is no beacon_blink function for ISP82xx */
6364 if (!IS_P3P_TYPE(ha)) {
6365 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
6366 start_dpc++;
6367 }
6368 }
6369
6370 /* Process any deferred work. */
6371 if (!list_empty(&vha->work_list)) {
6372 unsigned long flags;
6373 bool q = false;
6374
6375 spin_lock_irqsave(&vha->work_lock, flags);
6376 if (!test_and_set_bit(IOCB_WORK_ACTIVE, &vha->dpc_flags))
6377 q = true;
6378 spin_unlock_irqrestore(&vha->work_lock, flags);
6379 if (q)
6380 queue_work(vha->hw->wq, &vha->iocb_work);
6381 }
6382
6383 /*
6384 * FC-NVME
6385 * see if the active AEN count has changed from what was last reported.
6386 */
6387 if (!vha->vp_idx &&
6388 atomic_read(&ha->nvme_active_aen_cnt) != ha->nvme_last_rptd_aen &&
6389 ha->zio_mode == QLA_ZIO_MODE_6) {
6390 ql_log(ql_log_info, vha, 0x3002,
6391 "nvme: Sched: Set ZIO exchange threshold to %d.\n",
6392 ha->nvme_last_rptd_aen);
6393 ha->nvme_last_rptd_aen = atomic_read(&ha->nvme_active_aen_cnt);
6394 set_bit(SET_ZIO_THRESHOLD_NEEDED, &vha->dpc_flags);
6395 start_dpc++;
6396 }
6397
6398 /* Schedule the DPC routine if needed */
6399 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
6400 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
6401 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
6402 start_dpc ||
6403 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
6404 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
6405 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
6406 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
6407 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
6408 test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) {
6409 ql_dbg(ql_dbg_timer, vha, 0x600b,
6410 "isp_abort_needed=%d loop_resync_needed=%d "
6411 "fcport_update_needed=%d start_dpc=%d "
6412 "reset_marker_needed=%d",
6413 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags),
6414 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags),
6415 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags),
6416 start_dpc,
6417 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags));
6418 ql_dbg(ql_dbg_timer, vha, 0x600c,
6419 "beacon_blink_needed=%d isp_unrecoverable=%d "
6420 "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d "
6421 "relogin_needed=%d.\n",
6422 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags),
6423 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags),
6424 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags),
6425 test_bit(VP_DPC_NEEDED, &vha->dpc_flags),
6426 test_bit(RELOGIN_NEEDED, &vha->dpc_flags));
6427 qla2xxx_wake_dpc(vha);
6428 }
6429
6430 qla2x00_restart_timer(vha, WATCH_INTERVAL);
6431}
6432
6433/* Firmware interface routines. */
6434
6435#define FW_BLOBS 11
6436#define FW_ISP21XX 0
6437#define FW_ISP22XX 1
6438#define FW_ISP2300 2
6439#define FW_ISP2322 3
6440#define FW_ISP24XX 4
6441#define FW_ISP25XX 5
6442#define FW_ISP81XX 6
6443#define FW_ISP82XX 7
6444#define FW_ISP2031 8
6445#define FW_ISP8031 9
6446#define FW_ISP27XX 10
6447
6448#define FW_FILE_ISP21XX "ql2100_fw.bin"
6449#define FW_FILE_ISP22XX "ql2200_fw.bin"
6450#define FW_FILE_ISP2300 "ql2300_fw.bin"
6451#define FW_FILE_ISP2322 "ql2322_fw.bin"
6452#define FW_FILE_ISP24XX "ql2400_fw.bin"
6453#define FW_FILE_ISP25XX "ql2500_fw.bin"
6454#define FW_FILE_ISP81XX "ql8100_fw.bin"
6455#define FW_FILE_ISP82XX "ql8200_fw.bin"
6456#define FW_FILE_ISP2031 "ql2600_fw.bin"
6457#define FW_FILE_ISP8031 "ql8300_fw.bin"
6458#define FW_FILE_ISP27XX "ql2700_fw.bin"
6459
6460
6461static DEFINE_MUTEX(qla_fw_lock);
6462
6463static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
6464 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
6465 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
6466 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
6467 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
6468 { .name = FW_FILE_ISP24XX, },
6469 { .name = FW_FILE_ISP25XX, },
6470 { .name = FW_FILE_ISP81XX, },
6471 { .name = FW_FILE_ISP82XX, },
6472 { .name = FW_FILE_ISP2031, },
6473 { .name = FW_FILE_ISP8031, },
6474 { .name = FW_FILE_ISP27XX, },
6475};
6476
6477struct fw_blob *
6478qla2x00_request_firmware(scsi_qla_host_t *vha)
6479{
6480 struct qla_hw_data *ha = vha->hw;
6481 struct fw_blob *blob;
6482
6483 if (IS_QLA2100(ha)) {
6484 blob = &qla_fw_blobs[FW_ISP21XX];
6485 } else if (IS_QLA2200(ha)) {
6486 blob = &qla_fw_blobs[FW_ISP22XX];
6487 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
6488 blob = &qla_fw_blobs[FW_ISP2300];
6489 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
6490 blob = &qla_fw_blobs[FW_ISP2322];
6491 } else if (IS_QLA24XX_TYPE(ha)) {
6492 blob = &qla_fw_blobs[FW_ISP24XX];
6493 } else if (IS_QLA25XX(ha)) {
6494 blob = &qla_fw_blobs[FW_ISP25XX];
6495 } else if (IS_QLA81XX(ha)) {
6496 blob = &qla_fw_blobs[FW_ISP81XX];
6497 } else if (IS_QLA82XX(ha)) {
6498 blob = &qla_fw_blobs[FW_ISP82XX];
6499 } else if (IS_QLA2031(ha)) {
6500 blob = &qla_fw_blobs[FW_ISP2031];
6501 } else if (IS_QLA8031(ha)) {
6502 blob = &qla_fw_blobs[FW_ISP8031];
6503 } else if (IS_QLA27XX(ha)) {
6504 blob = &qla_fw_blobs[FW_ISP27XX];
6505 } else {
6506 return NULL;
6507 }
6508
6509 mutex_lock(&qla_fw_lock);
6510 if (blob->fw)
6511 goto out;
6512
6513 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
6514 ql_log(ql_log_warn, vha, 0x0063,
6515 "Failed to load firmware image (%s).\n", blob->name);
6516 blob->fw = NULL;
6517 blob = NULL;
6518 goto out;
6519 }
6520
6521out:
6522 mutex_unlock(&qla_fw_lock);
6523 return blob;
6524}
6525
6526static void
6527qla2x00_release_firmware(void)
6528{
6529 int idx;
6530
6531 mutex_lock(&qla_fw_lock);
6532 for (idx = 0; idx < FW_BLOBS; idx++)
6533 release_firmware(qla_fw_blobs[idx].fw);
6534 mutex_unlock(&qla_fw_lock);
6535}
6536
6537static pci_ers_result_t
6538qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
6539{
6540 scsi_qla_host_t *vha = pci_get_drvdata(pdev);
6541 struct qla_hw_data *ha = vha->hw;
6542
6543 ql_dbg(ql_dbg_aer, vha, 0x9000,
6544 "PCI error detected, state %x.\n", state);
6545
6546 if (!atomic_read(&pdev->enable_cnt)) {
6547 ql_log(ql_log_info, vha, 0xffff,
6548 "PCI device is disabled,state %x\n", state);
6549 return PCI_ERS_RESULT_NEED_RESET;
6550 }
6551
6552 switch (state) {
6553 case pci_channel_io_normal:
6554 ha->flags.eeh_busy = 0;
6555 if (ql2xmqsupport || ql2xnvmeenable) {
6556 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
6557 qla2xxx_wake_dpc(vha);
6558 }
6559 return PCI_ERS_RESULT_CAN_RECOVER;
6560 case pci_channel_io_frozen:
6561 ha->flags.eeh_busy = 1;
6562 /* For ISP82XX complete any pending mailbox cmd */
6563 if (IS_QLA82XX(ha)) {
6564 ha->flags.isp82xx_fw_hung = 1;
6565 ql_dbg(ql_dbg_aer, vha, 0x9001, "Pci channel io frozen\n");
6566 qla82xx_clear_pending_mbx(vha);
6567 }
6568 qla2x00_free_irqs(vha);
6569 pci_disable_device(pdev);
6570 /* Return back all IOs */
6571 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
6572 if (ql2xmqsupport || ql2xnvmeenable) {
6573 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
6574 qla2xxx_wake_dpc(vha);
6575 }
6576 return PCI_ERS_RESULT_NEED_RESET;
6577 case pci_channel_io_perm_failure:
6578 ha->flags.pci_channel_io_perm_failure = 1;
6579 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
6580 if (ql2xmqsupport || ql2xnvmeenable) {
6581 set_bit(QPAIR_ONLINE_CHECK_NEEDED, &vha->dpc_flags);
6582 qla2xxx_wake_dpc(vha);
6583 }
6584 return PCI_ERS_RESULT_DISCONNECT;
6585 }
6586 return PCI_ERS_RESULT_NEED_RESET;
6587}
6588
6589static pci_ers_result_t
6590qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
6591{
6592 int risc_paused = 0;
6593 uint32_t stat;
6594 unsigned long flags;
6595 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
6596 struct qla_hw_data *ha = base_vha->hw;
6597 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
6598 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
6599
6600 if (IS_QLA82XX(ha))
6601 return PCI_ERS_RESULT_RECOVERED;
6602
6603 spin_lock_irqsave(&ha->hardware_lock, flags);
6604 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
6605 stat = RD_REG_DWORD(®->hccr);
6606 if (stat & HCCR_RISC_PAUSE)
6607 risc_paused = 1;
6608 } else if (IS_QLA23XX(ha)) {
6609 stat = RD_REG_DWORD(®->u.isp2300.host_status);
6610 if (stat & HSR_RISC_PAUSED)
6611 risc_paused = 1;
6612 } else if (IS_FWI2_CAPABLE(ha)) {
6613 stat = RD_REG_DWORD(®24->host_status);
6614 if (stat & HSRX_RISC_PAUSED)
6615 risc_paused = 1;
6616 }
6617 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6618
6619 if (risc_paused) {
6620 ql_log(ql_log_info, base_vha, 0x9003,
6621 "RISC paused -- mmio_enabled, Dumping firmware.\n");
6622 ha->isp_ops->fw_dump(base_vha, 0);
6623
6624 return PCI_ERS_RESULT_NEED_RESET;
6625 } else
6626 return PCI_ERS_RESULT_RECOVERED;
6627}
6628
6629static uint32_t
6630qla82xx_error_recovery(scsi_qla_host_t *base_vha)
6631{
6632 uint32_t rval = QLA_FUNCTION_FAILED;
6633 uint32_t drv_active = 0;
6634 struct qla_hw_data *ha = base_vha->hw;
6635 int fn;
6636 struct pci_dev *other_pdev = NULL;
6637
6638 ql_dbg(ql_dbg_aer, base_vha, 0x9006,
6639 "Entered %s.\n", __func__);
6640
6641 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
6642
6643 if (base_vha->flags.online) {
6644 /* Abort all outstanding commands,
6645 * so as to be requeued later */
6646 qla2x00_abort_isp_cleanup(base_vha);
6647 }
6648
6649
6650 fn = PCI_FUNC(ha->pdev->devfn);
6651 while (fn > 0) {
6652 fn--;
6653 ql_dbg(ql_dbg_aer, base_vha, 0x9007,
6654 "Finding pci device at function = 0x%x.\n", fn);
6655 other_pdev =
6656 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
6657 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
6658 fn));
6659
6660 if (!other_pdev)
6661 continue;
6662 if (atomic_read(&other_pdev->enable_cnt)) {
6663 ql_dbg(ql_dbg_aer, base_vha, 0x9008,
6664 "Found PCI func available and enable at 0x%x.\n",
6665 fn);
6666 pci_dev_put(other_pdev);
6667 break;
6668 }
6669 pci_dev_put(other_pdev);
6670 }
6671
6672 if (!fn) {
6673 /* Reset owner */
6674 ql_dbg(ql_dbg_aer, base_vha, 0x9009,
6675 "This devfn is reset owner = 0x%x.\n",
6676 ha->pdev->devfn);
6677 qla82xx_idc_lock(ha);
6678
6679 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
6680 QLA8XXX_DEV_INITIALIZING);
6681
6682 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
6683 QLA82XX_IDC_VERSION);
6684
6685 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
6686 ql_dbg(ql_dbg_aer, base_vha, 0x900a,
6687 "drv_active = 0x%x.\n", drv_active);
6688
6689 qla82xx_idc_unlock(ha);
6690 /* Reset if device is not already reset
6691 * drv_active would be 0 if a reset has already been done
6692 */
6693 if (drv_active)
6694 rval = qla82xx_start_firmware(base_vha);
6695 else
6696 rval = QLA_SUCCESS;
6697 qla82xx_idc_lock(ha);
6698
6699 if (rval != QLA_SUCCESS) {
6700 ql_log(ql_log_info, base_vha, 0x900b,
6701 "HW State: FAILED.\n");
6702 qla82xx_clear_drv_active(ha);
6703 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
6704 QLA8XXX_DEV_FAILED);
6705 } else {
6706 ql_log(ql_log_info, base_vha, 0x900c,
6707 "HW State: READY.\n");
6708 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
6709 QLA8XXX_DEV_READY);
6710 qla82xx_idc_unlock(ha);
6711 ha->flags.isp82xx_fw_hung = 0;
6712 rval = qla82xx_restart_isp(base_vha);
6713 qla82xx_idc_lock(ha);
6714 /* Clear driver state register */
6715 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0);
6716 qla82xx_set_drv_active(base_vha);
6717 }
6718 qla82xx_idc_unlock(ha);
6719 } else {
6720 ql_dbg(ql_dbg_aer, base_vha, 0x900d,
6721 "This devfn is not reset owner = 0x%x.\n",
6722 ha->pdev->devfn);
6723 if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) ==
6724 QLA8XXX_DEV_READY)) {
6725 ha->flags.isp82xx_fw_hung = 0;
6726 rval = qla82xx_restart_isp(base_vha);
6727 qla82xx_idc_lock(ha);
6728 qla82xx_set_drv_active(base_vha);
6729 qla82xx_idc_unlock(ha);
6730 }
6731 }
6732 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
6733
6734 return rval;
6735}
6736
6737static pci_ers_result_t
6738qla2xxx_pci_slot_reset(struct pci_dev *pdev)
6739{
6740 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
6741 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
6742 struct qla_hw_data *ha = base_vha->hw;
6743 struct rsp_que *rsp;
6744 int rc, retries = 10;
6745
6746 ql_dbg(ql_dbg_aer, base_vha, 0x9004,
6747 "Slot Reset.\n");
6748
6749 /* Workaround: qla2xxx driver which access hardware earlier
6750 * needs error state to be pci_channel_io_online.
6751 * Otherwise mailbox command timesout.
6752 */
6753 pdev->error_state = pci_channel_io_normal;
6754
6755 pci_restore_state(pdev);
6756
6757 /* pci_restore_state() clears the saved_state flag of the device
6758 * save restored state which resets saved_state flag
6759 */
6760 pci_save_state(pdev);
6761
6762 if (ha->mem_only)
6763 rc = pci_enable_device_mem(pdev);
6764 else
6765 rc = pci_enable_device(pdev);
6766
6767 if (rc) {
6768 ql_log(ql_log_warn, base_vha, 0x9005,
6769 "Can't re-enable PCI device after reset.\n");
6770 goto exit_slot_reset;
6771 }
6772
6773 rsp = ha->rsp_q_map[0];
6774 if (qla2x00_request_irqs(ha, rsp))
6775 goto exit_slot_reset;
6776
6777 if (ha->isp_ops->pci_config(base_vha))
6778 goto exit_slot_reset;
6779
6780 if (IS_QLA82XX(ha)) {
6781 if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) {
6782 ret = PCI_ERS_RESULT_RECOVERED;
6783 goto exit_slot_reset;
6784 } else
6785 goto exit_slot_reset;
6786 }
6787
6788 while (ha->flags.mbox_busy && retries--)
6789 msleep(1000);
6790
6791 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
6792 if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS)
6793 ret = PCI_ERS_RESULT_RECOVERED;
6794 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
6795
6796
6797exit_slot_reset:
6798 ql_dbg(ql_dbg_aer, base_vha, 0x900e,
6799 "slot_reset return %x.\n", ret);
6800
6801 return ret;
6802}
6803
6804static void
6805qla2xxx_pci_resume(struct pci_dev *pdev)
6806{
6807 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
6808 struct qla_hw_data *ha = base_vha->hw;
6809 int ret;
6810
6811 ql_dbg(ql_dbg_aer, base_vha, 0x900f,
6812 "pci_resume.\n");
6813
6814 ret = qla2x00_wait_for_hba_online(base_vha);
6815 if (ret != QLA_SUCCESS) {
6816 ql_log(ql_log_fatal, base_vha, 0x9002,
6817 "The device failed to resume I/O from slot/link_reset.\n");
6818 }
6819
6820 pci_cleanup_aer_uncorrect_error_status(pdev);
6821
6822 ha->flags.eeh_busy = 0;
6823}
6824
6825static int qla2xxx_map_queues(struct Scsi_Host *shost)
6826{
6827 int rc;
6828 scsi_qla_host_t *vha = (scsi_qla_host_t *)shost->hostdata;
6829
6830 if (USER_CTRL_IRQ(vha->hw))
6831 rc = blk_mq_map_queues(&shost->tag_set);
6832 else
6833 rc = blk_mq_pci_map_queues(&shost->tag_set, vha->hw->pdev, 0);
6834 return rc;
6835}
6836
6837static const struct pci_error_handlers qla2xxx_err_handler = {
6838 .error_detected = qla2xxx_pci_error_detected,
6839 .mmio_enabled = qla2xxx_pci_mmio_enabled,
6840 .slot_reset = qla2xxx_pci_slot_reset,
6841 .resume = qla2xxx_pci_resume,
6842};
6843
6844static struct pci_device_id qla2xxx_pci_tbl[] = {
6845 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
6846 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
6847 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
6848 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
6849 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
6850 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
6851 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
6852 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
6853 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
6854 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
6855 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
6856 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
6857 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
6858 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) },
6859 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
6860 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
6861 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) },
6862 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) },
6863 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) },
6864 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) },
6865 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) },
6866 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2261) },
6867 { 0 },
6868};
6869MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
6870
6871static struct pci_driver qla2xxx_pci_driver = {
6872 .name = QLA2XXX_DRIVER_NAME,
6873 .driver = {
6874 .owner = THIS_MODULE,
6875 },
6876 .id_table = qla2xxx_pci_tbl,
6877 .probe = qla2x00_probe_one,
6878 .remove = qla2x00_remove_one,
6879 .shutdown = qla2x00_shutdown,
6880 .err_handler = &qla2xxx_err_handler,
6881};
6882
6883static const struct file_operations apidev_fops = {
6884 .owner = THIS_MODULE,
6885 .llseek = noop_llseek,
6886};
6887
6888/**
6889 * qla2x00_module_init - Module initialization.
6890 **/
6891static int __init
6892qla2x00_module_init(void)
6893{
6894 int ret = 0;
6895
6896 /* Allocate cache for SRBs. */
6897 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
6898 SLAB_HWCACHE_ALIGN, NULL);
6899 if (srb_cachep == NULL) {
6900 ql_log(ql_log_fatal, NULL, 0x0001,
6901 "Unable to allocate SRB cache...Failing load!.\n");
6902 return -ENOMEM;
6903 }
6904
6905 /* Initialize target kmem_cache and mem_pools */
6906 ret = qlt_init();
6907 if (ret < 0) {
6908 kmem_cache_destroy(srb_cachep);
6909 return ret;
6910 } else if (ret > 0) {
6911 /*
6912 * If initiator mode is explictly disabled by qlt_init(),
6913 * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from
6914 * performing scsi_scan_target() during LOOP UP event.
6915 */
6916 qla2xxx_transport_functions.disable_target_scan = 1;
6917 qla2xxx_transport_vport_functions.disable_target_scan = 1;
6918 }
6919
6920 /* Derive version string. */
6921 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
6922 if (ql2xextended_error_logging)
6923 strcat(qla2x00_version_str, "-debug");
6924 if (ql2xextended_error_logging == 1)
6925 ql2xextended_error_logging = QL_DBG_DEFAULT1_MASK;
6926
6927 qla2xxx_transport_template =
6928 fc_attach_transport(&qla2xxx_transport_functions);
6929 if (!qla2xxx_transport_template) {
6930 kmem_cache_destroy(srb_cachep);
6931 ql_log(ql_log_fatal, NULL, 0x0002,
6932 "fc_attach_transport failed...Failing load!.\n");
6933 qlt_exit();
6934 return -ENODEV;
6935 }
6936
6937 apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
6938 if (apidev_major < 0) {
6939 ql_log(ql_log_fatal, NULL, 0x0003,
6940 "Unable to register char device %s.\n", QLA2XXX_APIDEV);
6941 }
6942
6943 qla2xxx_transport_vport_template =
6944 fc_attach_transport(&qla2xxx_transport_vport_functions);
6945 if (!qla2xxx_transport_vport_template) {
6946 kmem_cache_destroy(srb_cachep);
6947 qlt_exit();
6948 fc_release_transport(qla2xxx_transport_template);
6949 ql_log(ql_log_fatal, NULL, 0x0004,
6950 "fc_attach_transport vport failed...Failing load!.\n");
6951 return -ENODEV;
6952 }
6953 ql_log(ql_log_info, NULL, 0x0005,
6954 "QLogic Fibre Channel HBA Driver: %s.\n",
6955 qla2x00_version_str);
6956 ret = pci_register_driver(&qla2xxx_pci_driver);
6957 if (ret) {
6958 kmem_cache_destroy(srb_cachep);
6959 qlt_exit();
6960 fc_release_transport(qla2xxx_transport_template);
6961 fc_release_transport(qla2xxx_transport_vport_template);
6962 ql_log(ql_log_fatal, NULL, 0x0006,
6963 "pci_register_driver failed...ret=%d Failing load!.\n",
6964 ret);
6965 }
6966 return ret;
6967}
6968
6969/**
6970 * qla2x00_module_exit - Module cleanup.
6971 **/
6972static void __exit
6973qla2x00_module_exit(void)
6974{
6975 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
6976 pci_unregister_driver(&qla2xxx_pci_driver);
6977 qla2x00_release_firmware();
6978 kmem_cache_destroy(srb_cachep);
6979 qlt_exit();
6980 if (ctx_cachep)
6981 kmem_cache_destroy(ctx_cachep);
6982 fc_release_transport(qla2xxx_transport_template);
6983 fc_release_transport(qla2xxx_transport_vport_template);
6984}
6985
6986module_init(qla2x00_module_init);
6987module_exit(qla2x00_module_exit);
6988
6989MODULE_AUTHOR("QLogic Corporation");
6990MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
6991MODULE_LICENSE("GPL");
6992MODULE_VERSION(QLA2XXX_VERSION);
6993MODULE_FIRMWARE(FW_FILE_ISP21XX);
6994MODULE_FIRMWARE(FW_FILE_ISP22XX);
6995MODULE_FIRMWARE(FW_FILE_ISP2300);
6996MODULE_FIRMWARE(FW_FILE_ISP2322);
6997MODULE_FIRMWARE(FW_FILE_ISP24XX);
6998MODULE_FIRMWARE(FW_FILE_ISP25XX);