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#include <linux/delay.h>
8#include <linux/ktime.h>
9#include <linux/pci.h>
10#include <linux/ratelimit.h>
11#include <linux/vmalloc.h>
12#include <scsi/scsi_tcq.h>
13#include <linux/utsname.h>
14
15
16/* QLAFX00 specific Mailbox implementation functions */
17
18/*
19 * qlafx00_mailbox_command
20 *	Issue mailbox command and waits for completion.
21 *
22 * Input:
23 *	ha = adapter block pointer.
24 *	mcp = driver internal mbx struct pointer.
25 *
26 * Output:
27 *	mb[MAX_MAILBOX_REGISTER_COUNT] = returned mailbox data.
28 *
29 * Returns:
30 *	0 : QLA_SUCCESS = cmd performed success
31 *	1 : QLA_FUNCTION_FAILED   (error encountered)
32 *	6 : QLA_FUNCTION_TIMEOUT (timeout condition encountered)
33 *
34 * Context:
35 *	Kernel context.
36 */
37static int
38qlafx00_mailbox_command(scsi_qla_host_t *vha, struct mbx_cmd_32 *mcp)
39
40{
41	int		rval;
42	unsigned long    flags = 0;
43	device_reg_t *reg;
44	uint8_t		abort_active;
45	uint8_t		io_lock_on;
46	uint16_t	command = 0;
47	uint32_t	*iptr;
48	__le32 __iomem *optr;
49	uint32_t	cnt;
50	uint32_t	mboxes;
51	unsigned long	wait_time;
52	struct qla_hw_data *ha = vha->hw;
53	scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
54
55	if (ha->pdev->error_state == pci_channel_io_perm_failure) {
56		ql_log(ql_log_warn, vha, 0x115c,
57		    "PCI channel failed permanently, exiting.\n");
58		return QLA_FUNCTION_TIMEOUT;
59	}
60
61	if (vha->device_flags & DFLG_DEV_FAILED) {
62		ql_log(ql_log_warn, vha, 0x115f,
63		    "Device in failed state, exiting.\n");
64		return QLA_FUNCTION_TIMEOUT;
65	}
66
67	reg = ha->iobase;
68	io_lock_on = base_vha->flags.init_done;
69
70	rval = QLA_SUCCESS;
71	abort_active = test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
72
73	if (ha->flags.pci_channel_io_perm_failure) {
74		ql_log(ql_log_warn, vha, 0x1175,
75		    "Perm failure on EEH timeout MBX, exiting.\n");
76		return QLA_FUNCTION_TIMEOUT;
77	}
78
79	if (ha->flags.isp82xx_fw_hung) {
80		/* Setting Link-Down error */
81		mcp->mb[0] = MBS_LINK_DOWN_ERROR;
82		ql_log(ql_log_warn, vha, 0x1176,
83		    "FW hung = %d.\n", ha->flags.isp82xx_fw_hung);
84		rval = QLA_FUNCTION_FAILED;
85		goto premature_exit;
86	}
87
88	/*
89	 * Wait for active mailbox commands to finish by waiting at most tov
90	 * seconds. This is to serialize actual issuing of mailbox cmds during
91	 * non ISP abort time.
92	 */
93	if (!wait_for_completion_timeout(&ha->mbx_cmd_comp, mcp->tov * HZ)) {
94		/* Timeout occurred. Return error. */
95		ql_log(ql_log_warn, vha, 0x1177,
96		    "Cmd access timeout, cmd=0x%x, Exiting.\n",
97		    mcp->mb[0]);
98		return QLA_FUNCTION_TIMEOUT;
99	}
100
101	ha->flags.mbox_busy = 1;
102	/* Save mailbox command for debug */
103	ha->mcp32 = mcp;
104
105	ql_dbg(ql_dbg_mbx, vha, 0x1178,
106	    "Prepare to issue mbox cmd=0x%x.\n", mcp->mb[0]);
107
108	spin_lock_irqsave(&ha->hardware_lock, flags);
109
110	/* Load mailbox registers. */
111	optr = &reg->ispfx00.mailbox0;
112
113	iptr = mcp->mb;
114	command = mcp->mb[0];
115	mboxes = mcp->out_mb;
116
117	for (cnt = 0; cnt < ha->mbx_count; cnt++) {
118		if (mboxes & BIT_0)
119			wrt_reg_dword(optr, *iptr);
120
121		mboxes >>= 1;
122		optr++;
123		iptr++;
124	}
125
126	/* Issue set host interrupt command to send cmd out. */
127	ha->flags.mbox_int = 0;
128	clear_bit(MBX_INTERRUPT, &ha->mbx_cmd_flags);
129
130	ql_dump_buffer(ql_dbg_mbx + ql_dbg_buffer, vha, 0x1172,
131	    (uint8_t *)mcp->mb, 16);
132	ql_dump_buffer(ql_dbg_mbx + ql_dbg_buffer, vha, 0x1173,
133	    ((uint8_t *)mcp->mb + 0x10), 16);
134	ql_dump_buffer(ql_dbg_mbx + ql_dbg_buffer, vha, 0x1174,
135	    ((uint8_t *)mcp->mb + 0x20), 8);
136
137	/* Unlock mbx registers and wait for interrupt */
138	ql_dbg(ql_dbg_mbx, vha, 0x1179,
139	    "Going to unlock irq & waiting for interrupts. "
140	    "jiffies=%lx.\n", jiffies);
141
142	/* Wait for mbx cmd completion until timeout */
143	if ((!abort_active && io_lock_on) || IS_NOPOLLING_TYPE(ha)) {
144		set_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags);
145
146		QLAFX00_SET_HST_INTR(ha, ha->mbx_intr_code);
147		spin_unlock_irqrestore(&ha->hardware_lock, flags);
148
149		WARN_ON_ONCE(wait_for_completion_timeout(&ha->mbx_intr_comp,
150							 mcp->tov * HZ) != 0);
151	} else {
152		ql_dbg(ql_dbg_mbx, vha, 0x112c,
153		    "Cmd=%x Polling Mode.\n", command);
154
155		QLAFX00_SET_HST_INTR(ha, ha->mbx_intr_code);
156		spin_unlock_irqrestore(&ha->hardware_lock, flags);
157
158		wait_time = jiffies + mcp->tov * HZ; /* wait at most tov secs */
159		while (!ha->flags.mbox_int) {
160			if (time_after(jiffies, wait_time))
161				break;
162
163			/* Check for pending interrupts. */
164			qla2x00_poll(ha->rsp_q_map[0]);
165
166			if (!ha->flags.mbox_int &&
167			    !(IS_QLA2200(ha) &&
168			    command == MBC_LOAD_RISC_RAM_EXTENDED))
169				usleep_range(10000, 11000);
170		} /* while */
171		ql_dbg(ql_dbg_mbx, vha, 0x112d,
172		    "Waited %d sec.\n",
173		    (uint)((jiffies - (wait_time - (mcp->tov * HZ)))/HZ));
174	}
175
176	/* Check whether we timed out */
177	if (ha->flags.mbox_int) {
178		uint32_t *iptr2;
179
180		ql_dbg(ql_dbg_mbx, vha, 0x112e,
181		    "Cmd=%x completed.\n", command);
182
183		/* Got interrupt. Clear the flag. */
184		ha->flags.mbox_int = 0;
185		clear_bit(MBX_INTERRUPT, &ha->mbx_cmd_flags);
186
187		if (ha->mailbox_out32[0] != MBS_COMMAND_COMPLETE)
188			rval = QLA_FUNCTION_FAILED;
189
190		/* Load return mailbox registers. */
191		iptr2 = mcp->mb;
192		iptr = (uint32_t *)&ha->mailbox_out32[0];
193		mboxes = mcp->in_mb;
194		for (cnt = 0; cnt < ha->mbx_count; cnt++) {
195			if (mboxes & BIT_0)
196				*iptr2 = *iptr;
197
198			mboxes >>= 1;
199			iptr2++;
200			iptr++;
201		}
202	} else {
203
204		rval = QLA_FUNCTION_TIMEOUT;
205	}
206
207	ha->flags.mbox_busy = 0;
208
209	/* Clean up */
210	ha->mcp32 = NULL;
211
212	if ((abort_active || !io_lock_on) && !IS_NOPOLLING_TYPE(ha)) {
213		ql_dbg(ql_dbg_mbx, vha, 0x113a,
214		    "checking for additional resp interrupt.\n");
215
216		/* polling mode for non isp_abort commands. */
217		qla2x00_poll(ha->rsp_q_map[0]);
218	}
219
220	if (rval == QLA_FUNCTION_TIMEOUT &&
221	    mcp->mb[0] != MBC_GEN_SYSTEM_ERROR) {
222		if (!io_lock_on || (mcp->flags & IOCTL_CMD) ||
223		    ha->flags.eeh_busy) {
224			/* not in dpc. schedule it for dpc to take over. */
225			ql_dbg(ql_dbg_mbx, vha, 0x115d,
226			    "Timeout, schedule isp_abort_needed.\n");
227
228			if (!test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) &&
229			    !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) &&
230			    !test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
231
232				ql_log(ql_log_info, base_vha, 0x115e,
233				    "Mailbox cmd timeout occurred, cmd=0x%x, "
234				    "mb[0]=0x%x, eeh_busy=0x%x. Scheduling ISP "
235				    "abort.\n", command, mcp->mb[0],
236				    ha->flags.eeh_busy);
237				set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
238				qla2xxx_wake_dpc(vha);
239			}
240		} else if (!abort_active) {
241			/* call abort directly since we are in the DPC thread */
242			ql_dbg(ql_dbg_mbx, vha, 0x1160,
243			    "Timeout, calling abort_isp.\n");
244
245			if (!test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) &&
246			    !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) &&
247			    !test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
248
249				ql_log(ql_log_info, base_vha, 0x1161,
250				    "Mailbox cmd timeout occurred, cmd=0x%x, "
251				    "mb[0]=0x%x. Scheduling ISP abort ",
252				    command, mcp->mb[0]);
253
254				set_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags);
255				clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
256				if (ha->isp_ops->abort_isp(vha)) {
257					/* Failed. retry later. */
258					set_bit(ISP_ABORT_NEEDED,
259					    &vha->dpc_flags);
260				}
261				clear_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags);
262				ql_dbg(ql_dbg_mbx, vha, 0x1162,
263				    "Finished abort_isp.\n");
264			}
265		}
266	}
267
268premature_exit:
269	/* Allow next mbx cmd to come in. */
270	complete(&ha->mbx_cmd_comp);
271
272	if (rval) {
273		ql_log(ql_log_warn, base_vha, 0x1163,
274		       "**** Failed=%x mbx[0]=%x, mb[1]=%x, mb[2]=%x, mb[3]=%x, cmd=%x ****.\n",
275		       rval, mcp->mb[0], mcp->mb[1], mcp->mb[2], mcp->mb[3],
276		       command);
277	} else {
278		ql_dbg(ql_dbg_mbx, base_vha, 0x1164, "Done %s.\n", __func__);
279	}
280
281	return rval;
282}
283
284/*
285 * qlafx00_driver_shutdown
286 *	Indicate a driver shutdown to firmware.
287 *
288 * Input:
289 *	ha = adapter block pointer.
290 *
291 * Returns:
292 *	local function return status code.
293 *
294 * Context:
295 *	Kernel context.
296 */
297int
298qlafx00_driver_shutdown(scsi_qla_host_t *vha, int tmo)
299{
300	int rval;
301	struct mbx_cmd_32 mc;
302	struct mbx_cmd_32 *mcp = &mc;
303
304	ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1166,
305	    "Entered %s.\n", __func__);
306
307	mcp->mb[0] = MBC_MR_DRV_SHUTDOWN;
308	mcp->out_mb = MBX_0;
309	mcp->in_mb = MBX_0;
310	if (tmo)
311		mcp->tov = tmo;
312	else
313		mcp->tov = MBX_TOV_SECONDS;
314	mcp->flags = 0;
315	rval = qlafx00_mailbox_command(vha, mcp);
316
317	if (rval != QLA_SUCCESS) {
318		ql_dbg(ql_dbg_mbx, vha, 0x1167,
319		    "Failed=%x.\n", rval);
320	} else {
321		ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1168,
322		    "Done %s.\n", __func__);
323	}
324
325	return rval;
326}
327
328/*
329 * qlafx00_get_firmware_state
330 *	Get adapter firmware state.
331 *
332 * Input:
333 *	ha = adapter block pointer.
334 *	TARGET_QUEUE_LOCK must be released.
335 *	ADAPTER_STATE_LOCK must be released.
336 *
337 * Returns:
338 *	qla7xxx local function return status code.
339 *
340 * Context:
341 *	Kernel context.
342 */
343static int
344qlafx00_get_firmware_state(scsi_qla_host_t *vha, uint32_t *states)
345{
346	int rval;
347	struct mbx_cmd_32 mc;
348	struct mbx_cmd_32 *mcp = &mc;
349
350	ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1169,
351	    "Entered %s.\n", __func__);
352
353	mcp->mb[0] = MBC_GET_FIRMWARE_STATE;
354	mcp->out_mb = MBX_0;
355	mcp->in_mb = MBX_1|MBX_0;
356	mcp->tov = MBX_TOV_SECONDS;
357	mcp->flags = 0;
358	rval = qlafx00_mailbox_command(vha, mcp);
359
360	/* Return firmware states. */
361	states[0] = mcp->mb[1];
362
363	if (rval != QLA_SUCCESS) {
364		ql_dbg(ql_dbg_mbx, vha, 0x116a,
365		    "Failed=%x mb[0]=%x.\n", rval, mcp->mb[0]);
366	} else {
367		ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x116b,
368		    "Done %s.\n", __func__);
369	}
370	return rval;
371}
372
373/*
374 * qlafx00_init_firmware
375 *	Initialize adapter firmware.
376 *
377 * Input:
378 *	ha = adapter block pointer.
379 *	dptr = Initialization control block pointer.
380 *	size = size of initialization control block.
381 *	TARGET_QUEUE_LOCK must be released.
382 *	ADAPTER_STATE_LOCK must be released.
383 *
384 * Returns:
385 *	qlafx00 local function return status code.
386 *
387 * Context:
388 *	Kernel context.
389 */
390int
391qlafx00_init_firmware(scsi_qla_host_t *vha, uint16_t size)
392{
393	int rval;
394	struct mbx_cmd_32 mc;
395	struct mbx_cmd_32 *mcp = &mc;
396	struct qla_hw_data *ha = vha->hw;
397
398	ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x116c,
399	    "Entered %s.\n", __func__);
400
401	mcp->mb[0] = MBC_INITIALIZE_FIRMWARE;
402
403	mcp->mb[1] = 0;
404	mcp->mb[2] = MSD(ha->init_cb_dma);
405	mcp->mb[3] = LSD(ha->init_cb_dma);
406
407	mcp->out_mb = MBX_3|MBX_2|MBX_1|MBX_0;
408	mcp->in_mb = MBX_0;
409	mcp->buf_size = size;
410	mcp->flags = MBX_DMA_OUT;
411	mcp->tov = MBX_TOV_SECONDS;
412	rval = qlafx00_mailbox_command(vha, mcp);
413
414	if (rval != QLA_SUCCESS) {
415		ql_dbg(ql_dbg_mbx, vha, 0x116d,
416		    "Failed=%x mb[0]=%x.\n", rval, mcp->mb[0]);
417	} else {
418		ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x116e,
419		    "Done %s.\n", __func__);
420	}
421	return rval;
422}
423
424/*
425 * qlafx00_mbx_reg_test
426 */
427static int
428qlafx00_mbx_reg_test(scsi_qla_host_t *vha)
429{
430	int rval;
431	struct mbx_cmd_32 mc;
432	struct mbx_cmd_32 *mcp = &mc;
433
434	ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x116f,
435	    "Entered %s.\n", __func__);
436
437
438	mcp->mb[0] = MBC_MAILBOX_REGISTER_TEST;
439	mcp->mb[1] = 0xAAAA;
440	mcp->mb[2] = 0x5555;
441	mcp->mb[3] = 0xAA55;
442	mcp->mb[4] = 0x55AA;
443	mcp->mb[5] = 0xA5A5;
444	mcp->mb[6] = 0x5A5A;
445	mcp->mb[7] = 0x2525;
446	mcp->mb[8] = 0xBBBB;
447	mcp->mb[9] = 0x6666;
448	mcp->mb[10] = 0xBB66;
449	mcp->mb[11] = 0x66BB;
450	mcp->mb[12] = 0xB6B6;
451	mcp->mb[13] = 0x6B6B;
452	mcp->mb[14] = 0x3636;
453	mcp->mb[15] = 0xCCCC;
454
455
456	mcp->out_mb = MBX_15|MBX_14|MBX_13|MBX_12|MBX_11|MBX_10|MBX_9|MBX_8|
457			MBX_7|MBX_6|MBX_5|MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
458	mcp->in_mb = MBX_15|MBX_14|MBX_13|MBX_12|MBX_11|MBX_10|MBX_9|MBX_8|
459			MBX_7|MBX_6|MBX_5|MBX_4|MBX_3|MBX_2|MBX_1|MBX_0;
460	mcp->buf_size = 0;
461	mcp->flags = MBX_DMA_OUT;
462	mcp->tov = MBX_TOV_SECONDS;
463	rval = qlafx00_mailbox_command(vha, mcp);
464	if (rval == QLA_SUCCESS) {
465		if (mcp->mb[17] != 0xAAAA || mcp->mb[18] != 0x5555 ||
466		    mcp->mb[19] != 0xAA55 || mcp->mb[20] != 0x55AA)
467			rval = QLA_FUNCTION_FAILED;
468		if (mcp->mb[21] != 0xA5A5 || mcp->mb[22] != 0x5A5A ||
469		    mcp->mb[23] != 0x2525 || mcp->mb[24] != 0xBBBB)
470			rval = QLA_FUNCTION_FAILED;
471		if (mcp->mb[25] != 0x6666 || mcp->mb[26] != 0xBB66 ||
472		    mcp->mb[27] != 0x66BB || mcp->mb[28] != 0xB6B6)
473			rval = QLA_FUNCTION_FAILED;
474		if (mcp->mb[29] != 0x6B6B || mcp->mb[30] != 0x3636 ||
475		    mcp->mb[31] != 0xCCCC)
476			rval = QLA_FUNCTION_FAILED;
477	}
478
479	if (rval != QLA_SUCCESS) {
480		ql_dbg(ql_dbg_mbx, vha, 0x1170,
481		    "Failed=%x mb[0]=%x.\n", rval, mcp->mb[0]);
482	} else {
483		ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1171,
484		    "Done %s.\n", __func__);
485	}
486	return rval;
487}
488
489/**
490 * qlafx00_pci_config() - Setup ISPFx00 PCI configuration registers.
491 * @vha: HA context
492 *
493 * Returns 0 on success.
494 */
495int
496qlafx00_pci_config(scsi_qla_host_t *vha)
497{
498	uint16_t w;
499	struct qla_hw_data *ha = vha->hw;
500
501	pci_set_master(ha->pdev);
502	pci_try_set_mwi(ha->pdev);
503
504	pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
505	w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
506	w &= ~PCI_COMMAND_INTX_DISABLE;
507	pci_write_config_word(ha->pdev, PCI_COMMAND, w);
508
509	/* PCIe -- adjust Maximum Read Request Size (2048). */
510	if (pci_is_pcie(ha->pdev))
511		pcie_set_readrq(ha->pdev, 2048);
512
513	ha->chip_revision = ha->pdev->revision;
514
515	return QLA_SUCCESS;
516}
517
518/**
519 * qlafx00_warm_reset() - Perform warm reset of iSA(CPUs being reset on SOC).
520 * @vha: HA context
521 *
522 */
523static inline void
524qlafx00_soc_cpu_reset(scsi_qla_host_t *vha)
525{
526	unsigned long flags = 0;
527	struct qla_hw_data *ha = vha->hw;
528	int i, core;
529	uint32_t cnt;
530	uint32_t reg_val;
531
532	spin_lock_irqsave(&ha->hardware_lock, flags);
533
534	QLAFX00_SET_HBA_SOC_REG(ha, 0x80004, 0);
535	QLAFX00_SET_HBA_SOC_REG(ha, 0x82004, 0);
536
537	/* stop the XOR DMA engines */
538	QLAFX00_SET_HBA_SOC_REG(ha, 0x60920, 0x02);
539	QLAFX00_SET_HBA_SOC_REG(ha, 0x60924, 0x02);
540	QLAFX00_SET_HBA_SOC_REG(ha, 0xf0920, 0x02);
541	QLAFX00_SET_HBA_SOC_REG(ha, 0xf0924, 0x02);
542
543	/* stop the IDMA engines */
544	reg_val = QLAFX00_GET_HBA_SOC_REG(ha, 0x60840);
545	reg_val &= ~(1<<12);
546	QLAFX00_SET_HBA_SOC_REG(ha, 0x60840, reg_val);
547
548	reg_val = QLAFX00_GET_HBA_SOC_REG(ha, 0x60844);
549	reg_val &= ~(1<<12);
550	QLAFX00_SET_HBA_SOC_REG(ha, 0x60844, reg_val);
551
552	reg_val = QLAFX00_GET_HBA_SOC_REG(ha, 0x60848);
553	reg_val &= ~(1<<12);
554	QLAFX00_SET_HBA_SOC_REG(ha, 0x60848, reg_val);
555
556	reg_val = QLAFX00_GET_HBA_SOC_REG(ha, 0x6084C);
557	reg_val &= ~(1<<12);
558	QLAFX00_SET_HBA_SOC_REG(ha, 0x6084C, reg_val);
559
560	for (i = 0; i < 100000; i++) {
561		if ((QLAFX00_GET_HBA_SOC_REG(ha, 0xd0000) & 0x10000000) == 0 &&
562		    (QLAFX00_GET_HBA_SOC_REG(ha, 0x10600) & 0x1) == 0)
563			break;
564		udelay(100);
565	}
566
567	/* Set all 4 cores in reset */
568	for (i = 0; i < 4; i++) {
569		QLAFX00_SET_HBA_SOC_REG(ha,
570		    (SOC_SW_RST_CONTROL_REG_CORE0 + 8*i), (0xF01));
571		QLAFX00_SET_HBA_SOC_REG(ha,
572		    (SOC_SW_RST_CONTROL_REG_CORE0 + 4 + 8*i), (0x01010101));
573	}
574
575	/* Reset all units in Fabric */
576	QLAFX00_SET_HBA_SOC_REG(ha, SOC_FABRIC_RST_CONTROL_REG, (0x011f0101));
577
578	/* */
579	QLAFX00_SET_HBA_SOC_REG(ha, 0x10610, 1);
580	QLAFX00_SET_HBA_SOC_REG(ha, 0x10600, 0);
581
582	/* Set all 4 core Memory Power Down Registers */
583	for (i = 0; i < 5; i++) {
584		QLAFX00_SET_HBA_SOC_REG(ha,
585		    (SOC_PWR_MANAGEMENT_PWR_DOWN_REG + 4*i), (0x0));
586	}
587
588	/* Reset all interrupt control registers */
589	for (i = 0; i < 115; i++) {
590		QLAFX00_SET_HBA_SOC_REG(ha,
591		    (SOC_INTERRUPT_SOURCE_I_CONTROL_REG + 4*i), (0x0));
592	}
593
594	/* Reset Timers control registers. per core */
595	for (core = 0; core < 4; core++)
596		for (i = 0; i < 8; i++)
597			QLAFX00_SET_HBA_SOC_REG(ha,
598			    (SOC_CORE_TIMER_REG + 0x100*core + 4*i), (0x0));
599
600	/* Reset per core IRQ ack register */
601	for (core = 0; core < 4; core++)
602		QLAFX00_SET_HBA_SOC_REG(ha,
603		    (SOC_IRQ_ACK_REG + 0x100*core), (0x3FF));
604
605	/* Set Fabric control and config to defaults */
606	QLAFX00_SET_HBA_SOC_REG(ha, SOC_FABRIC_CONTROL_REG, (0x2));
607	QLAFX00_SET_HBA_SOC_REG(ha, SOC_FABRIC_CONFIG_REG, (0x3));
608
609	/* Kick in Fabric units */
610	QLAFX00_SET_HBA_SOC_REG(ha, SOC_FABRIC_RST_CONTROL_REG, (0x0));
611
612	/* Kick in Core0 to start boot process */
613	QLAFX00_SET_HBA_SOC_REG(ha, SOC_SW_RST_CONTROL_REG_CORE0, (0xF00));
614
615	spin_unlock_irqrestore(&ha->hardware_lock, flags);
616
617	/* Wait 10secs for soft-reset to complete. */
618	for (cnt = 10; cnt; cnt--) {
619		msleep(1000);
620		barrier();
621	}
622}
623
624/**
625 * qlafx00_soft_reset() - Soft Reset ISPFx00.
626 * @vha: HA context
627 *
628 * Returns 0 on success.
629 */
630int
631qlafx00_soft_reset(scsi_qla_host_t *vha)
632{
633	struct qla_hw_data *ha = vha->hw;
634	int rval = QLA_FUNCTION_FAILED;
635
636	if (unlikely(pci_channel_offline(ha->pdev) &&
637	    ha->flags.pci_channel_io_perm_failure))
638		return rval;
639
640	ha->isp_ops->disable_intrs(ha);
641	qlafx00_soc_cpu_reset(vha);
642
643	return QLA_SUCCESS;
644}
645
646/**
647 * qlafx00_chip_diag() - Test ISPFx00 for proper operation.
648 * @vha: HA context
649 *
650 * Returns 0 on success.
651 */
652int
653qlafx00_chip_diag(scsi_qla_host_t *vha)
654{
655	int rval = 0;
656	struct qla_hw_data *ha = vha->hw;
657	struct req_que *req = ha->req_q_map[0];
658
659	ha->fw_transfer_size = REQUEST_ENTRY_SIZE * req->length;
660
661	rval = qlafx00_mbx_reg_test(vha);
662	if (rval) {
663		ql_log(ql_log_warn, vha, 0x1165,
664		    "Failed mailbox send register test\n");
665	} else {
666		/* Flag a successful rval */
667		rval = QLA_SUCCESS;
668	}
669	return rval;
670}
671
672void
673qlafx00_config_rings(struct scsi_qla_host *vha)
674{
675	struct qla_hw_data *ha = vha->hw;
676	struct device_reg_fx00 __iomem *reg = &ha->iobase->ispfx00;
677
678	wrt_reg_dword(&reg->req_q_in, 0);
679	wrt_reg_dword(&reg->req_q_out, 0);
680
681	wrt_reg_dword(&reg->rsp_q_in, 0);
682	wrt_reg_dword(&reg->rsp_q_out, 0);
683
684	/* PCI posting */
685	rd_reg_dword(&reg->rsp_q_out);
686}
687
688char *
689qlafx00_pci_info_str(struct scsi_qla_host *vha, char *str, size_t str_len)
690{
691	struct qla_hw_data *ha = vha->hw;
692
693	if (pci_is_pcie(ha->pdev))
694		strlcpy(str, "PCIe iSA", str_len);
695	return str;
696}
697
698char *
699qlafx00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size)
700{
701	struct qla_hw_data *ha = vha->hw;
702
703	snprintf(str, size, "%s", ha->mr.fw_version);
704	return str;
705}
706
707void
708qlafx00_enable_intrs(struct qla_hw_data *ha)
709{
710	unsigned long flags = 0;
711
712	spin_lock_irqsave(&ha->hardware_lock, flags);
713	ha->interrupts_on = 1;
714	QLAFX00_ENABLE_ICNTRL_REG(ha);
715	spin_unlock_irqrestore(&ha->hardware_lock, flags);
716}
717
718void
719qlafx00_disable_intrs(struct qla_hw_data *ha)
720{
721	unsigned long flags = 0;
722
723	spin_lock_irqsave(&ha->hardware_lock, flags);
724	ha->interrupts_on = 0;
725	QLAFX00_DISABLE_ICNTRL_REG(ha);
726	spin_unlock_irqrestore(&ha->hardware_lock, flags);
727}
728
729int
730qlafx00_abort_target(fc_port_t *fcport, uint64_t l, int tag)
731{
732	return qla2x00_async_tm_cmd(fcport, TCF_TARGET_RESET, l, tag);
733}
734
735int
736qlafx00_lun_reset(fc_port_t *fcport, uint64_t l, int tag)
737{
738	return qla2x00_async_tm_cmd(fcport, TCF_LUN_RESET, l, tag);
739}
740
741int
742qlafx00_iospace_config(struct qla_hw_data *ha)
743{
744	if (pci_request_selected_regions(ha->pdev, ha->bars,
745	    QLA2XXX_DRIVER_NAME)) {
746		ql_log_pci(ql_log_fatal, ha->pdev, 0x014e,
747		    "Failed to reserve PIO/MMIO regions (%s), aborting.\n",
748		    pci_name(ha->pdev));
749		goto iospace_error_exit;
750	}
751
752	/* Use MMIO operations for all accesses. */
753	if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) {
754		ql_log_pci(ql_log_warn, ha->pdev, 0x014f,
755		    "Invalid pci I/O region size (%s).\n",
756		    pci_name(ha->pdev));
757		goto iospace_error_exit;
758	}
759	if (pci_resource_len(ha->pdev, 0) < BAR0_LEN_FX00) {
760		ql_log_pci(ql_log_warn, ha->pdev, 0x0127,
761		    "Invalid PCI mem BAR0 region size (%s), aborting\n",
762			pci_name(ha->pdev));
763		goto iospace_error_exit;
764	}
765
766	ha->cregbase =
767	    ioremap(pci_resource_start(ha->pdev, 0), BAR0_LEN_FX00);
768	if (!ha->cregbase) {
769		ql_log_pci(ql_log_fatal, ha->pdev, 0x0128,
770		    "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
771		goto iospace_error_exit;
772	}
773
774	if (!(pci_resource_flags(ha->pdev, 2) & IORESOURCE_MEM)) {
775		ql_log_pci(ql_log_warn, ha->pdev, 0x0129,
776		    "region #2 not an MMIO resource (%s), aborting\n",
777		    pci_name(ha->pdev));
778		goto iospace_error_exit;
779	}
780	if (pci_resource_len(ha->pdev, 2) < BAR2_LEN_FX00) {
781		ql_log_pci(ql_log_warn, ha->pdev, 0x012a,
782		    "Invalid PCI mem BAR2 region size (%s), aborting\n",
783			pci_name(ha->pdev));
784		goto iospace_error_exit;
785	}
786
787	ha->iobase =
788	    ioremap(pci_resource_start(ha->pdev, 2), BAR2_LEN_FX00);
789	if (!ha->iobase) {
790		ql_log_pci(ql_log_fatal, ha->pdev, 0x012b,
791		    "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
792		goto iospace_error_exit;
793	}
794
795	/* Determine queue resources */
796	ha->max_req_queues = ha->max_rsp_queues = 1;
797
798	ql_log_pci(ql_log_info, ha->pdev, 0x012c,
799	    "Bars 0x%x, iobase0 0x%p, iobase2 0x%p\n",
800	    ha->bars, ha->cregbase, ha->iobase);
801
802	return 0;
803
804iospace_error_exit:
805	return -ENOMEM;
806}
807
808static void
809qlafx00_save_queue_ptrs(struct scsi_qla_host *vha)
810{
811	struct qla_hw_data *ha = vha->hw;
812	struct req_que *req = ha->req_q_map[0];
813	struct rsp_que *rsp = ha->rsp_q_map[0];
814
815	req->length_fx00 = req->length;
816	req->ring_fx00 = req->ring;
817	req->dma_fx00 = req->dma;
818
819	rsp->length_fx00 = rsp->length;
820	rsp->ring_fx00 = rsp->ring;
821	rsp->dma_fx00 = rsp->dma;
822
823	ql_dbg(ql_dbg_init, vha, 0x012d,
824	    "req: %p, ring_fx00: %p, length_fx00: 0x%x,"
825	    "req->dma_fx00: 0x%llx\n", req, req->ring_fx00,
826	    req->length_fx00, (u64)req->dma_fx00);
827
828	ql_dbg(ql_dbg_init, vha, 0x012e,
829	    "rsp: %p, ring_fx00: %p, length_fx00: 0x%x,"
830	    "rsp->dma_fx00: 0x%llx\n", rsp, rsp->ring_fx00,
831	    rsp->length_fx00, (u64)rsp->dma_fx00);
832}
833
834static int
835qlafx00_config_queues(struct scsi_qla_host *vha)
836{
837	struct qla_hw_data *ha = vha->hw;
838	struct req_que *req = ha->req_q_map[0];
839	struct rsp_que *rsp = ha->rsp_q_map[0];
840	dma_addr_t bar2_hdl = pci_resource_start(ha->pdev, 2);
841
842	req->length = ha->req_que_len;
843	req->ring = (void __force *)ha->iobase + ha->req_que_off;
844	req->dma = bar2_hdl + ha->req_que_off;
845	if ((!req->ring) || (req->length == 0)) {
846		ql_log_pci(ql_log_info, ha->pdev, 0x012f,
847		    "Unable to allocate memory for req_ring\n");
848		return QLA_FUNCTION_FAILED;
849	}
850
851	ql_dbg(ql_dbg_init, vha, 0x0130,
852	    "req: %p req_ring pointer %p req len 0x%x "
853	    "req off 0x%x\n, req->dma: 0x%llx",
854	    req, req->ring, req->length,
855	    ha->req_que_off, (u64)req->dma);
856
857	rsp->length = ha->rsp_que_len;
858	rsp->ring = (void __force *)ha->iobase + ha->rsp_que_off;
859	rsp->dma = bar2_hdl + ha->rsp_que_off;
860	if ((!rsp->ring) || (rsp->length == 0)) {
861		ql_log_pci(ql_log_info, ha->pdev, 0x0131,
862		    "Unable to allocate memory for rsp_ring\n");
863		return QLA_FUNCTION_FAILED;
864	}
865
866	ql_dbg(ql_dbg_init, vha, 0x0132,
867	    "rsp: %p rsp_ring pointer %p rsp len 0x%x "
868	    "rsp off 0x%x, rsp->dma: 0x%llx\n",
869	    rsp, rsp->ring, rsp->length,
870	    ha->rsp_que_off, (u64)rsp->dma);
871
872	return QLA_SUCCESS;
873}
874
875static int
876qlafx00_init_fw_ready(scsi_qla_host_t *vha)
877{
878	int rval = 0;
879	unsigned long wtime;
880	uint16_t wait_time;	/* Wait time */
881	struct qla_hw_data *ha = vha->hw;
882	struct device_reg_fx00 __iomem *reg = &ha->iobase->ispfx00;
883	uint32_t aenmbx, aenmbx7 = 0;
884	uint32_t pseudo_aen;
885	uint32_t state[5];
886	bool done = false;
887
888	/* 30 seconds wait - Adjust if required */
889	wait_time = 30;
890
891	pseudo_aen = rd_reg_dword(&reg->pseudoaen);
892	if (pseudo_aen == 1) {
893		aenmbx7 = rd_reg_dword(&reg->initval7);
894		ha->mbx_intr_code = MSW(aenmbx7);
895		ha->rqstq_intr_code = LSW(aenmbx7);
896		rval = qlafx00_driver_shutdown(vha, 10);
897		if (rval != QLA_SUCCESS)
898			qlafx00_soft_reset(vha);
899	}
900
901	/* wait time before firmware ready */
902	wtime = jiffies + (wait_time * HZ);
903	do {
904		aenmbx = rd_reg_dword(&reg->aenmailbox0);
905		barrier();
906		ql_dbg(ql_dbg_mbx, vha, 0x0133,
907		    "aenmbx: 0x%x\n", aenmbx);
908
909		switch (aenmbx) {
910		case MBA_FW_NOT_STARTED:
911		case MBA_FW_STARTING:
912			break;
913
914		case MBA_SYSTEM_ERR:
915		case MBA_REQ_TRANSFER_ERR:
916		case MBA_RSP_TRANSFER_ERR:
917		case MBA_FW_INIT_FAILURE:
918			qlafx00_soft_reset(vha);
919			break;
920
921		case MBA_FW_RESTART_CMPLT:
922			/* Set the mbx and rqstq intr code */
923			aenmbx7 = rd_reg_dword(&reg->aenmailbox7);
924			ha->mbx_intr_code = MSW(aenmbx7);
925			ha->rqstq_intr_code = LSW(aenmbx7);
926			ha->req_que_off = rd_reg_dword(&reg->aenmailbox1);
927			ha->rsp_que_off = rd_reg_dword(&reg->aenmailbox3);
928			ha->req_que_len = rd_reg_dword(&reg->aenmailbox5);
929			ha->rsp_que_len = rd_reg_dword(&reg->aenmailbox6);
930			wrt_reg_dword(&reg->aenmailbox0, 0);
931			rd_reg_dword_relaxed(&reg->aenmailbox0);
932			ql_dbg(ql_dbg_init, vha, 0x0134,
933			    "f/w returned mbx_intr_code: 0x%x, "
934			    "rqstq_intr_code: 0x%x\n",
935			    ha->mbx_intr_code, ha->rqstq_intr_code);
936			QLAFX00_CLR_INTR_REG(ha, QLAFX00_HST_INT_STS_BITS);
937			rval = QLA_SUCCESS;
938			done = true;
939			break;
940
941		default:
942			if ((aenmbx & 0xFF00) == MBA_FW_INIT_INPROGRESS)
943				break;
944
945			/* If fw is apparently not ready. In order to continue,
946			 * we might need to issue Mbox cmd, but the problem is
947			 * that the DoorBell vector values that come with the
948			 * 8060 AEN are most likely gone by now (and thus no
949			 * bell would be rung on the fw side when mbox cmd is
950			 * issued). We have to therefore grab the 8060 AEN
951			 * shadow regs (filled in by FW when the last 8060
952			 * AEN was being posted).
953			 * Do the following to determine what is needed in
954			 * order to get the FW ready:
955			 * 1. reload the 8060 AEN values from the shadow regs
956			 * 2. clear int status to get rid of possible pending
957			 *    interrupts
958			 * 3. issue Get FW State Mbox cmd to determine fw state
959			 * Set the mbx and rqstq intr code from Shadow Regs
960			 */
961			aenmbx7 = rd_reg_dword(&reg->initval7);
962			ha->mbx_intr_code = MSW(aenmbx7);
963			ha->rqstq_intr_code = LSW(aenmbx7);
964			ha->req_que_off = rd_reg_dword(&reg->initval1);
965			ha->rsp_que_off = rd_reg_dword(&reg->initval3);
966			ha->req_que_len = rd_reg_dword(&reg->initval5);
967			ha->rsp_que_len = rd_reg_dword(&reg->initval6);
968			ql_dbg(ql_dbg_init, vha, 0x0135,
969			    "f/w returned mbx_intr_code: 0x%x, "
970			    "rqstq_intr_code: 0x%x\n",
971			    ha->mbx_intr_code, ha->rqstq_intr_code);
972			QLAFX00_CLR_INTR_REG(ha, QLAFX00_HST_INT_STS_BITS);
973
974			/* Get the FW state */
975			rval = qlafx00_get_firmware_state(vha, state);
976			if (rval != QLA_SUCCESS) {
977				/* Retry if timer has not expired */
978				break;
979			}
980
981			if (state[0] == FSTATE_FX00_CONFIG_WAIT) {
982				/* Firmware is waiting to be
983				 * initialized by driver
984				 */
985				rval = QLA_SUCCESS;
986				done = true;
987				break;
988			}
989
990			/* Issue driver shutdown and wait until f/w recovers.
991			 * Driver should continue to poll until 8060 AEN is
992			 * received indicating firmware recovery.
993			 */
994			ql_dbg(ql_dbg_init, vha, 0x0136,
995			    "Sending Driver shutdown fw_state 0x%x\n",
996			    state[0]);
997
998			rval = qlafx00_driver_shutdown(vha, 10);
999			if (rval != QLA_SUCCESS) {
1000				rval = QLA_FUNCTION_FAILED;
1001				break;
1002			}
1003			msleep(500);
1004
1005			wtime = jiffies + (wait_time * HZ);
1006			break;
1007		}
1008
1009		if (!done) {
1010			if (time_after_eq(jiffies, wtime)) {
1011				ql_dbg(ql_dbg_init, vha, 0x0137,
1012				    "Init f/w failed: aen[7]: 0x%x\n",
1013				    rd_reg_dword(&reg->aenmailbox7));
1014				rval = QLA_FUNCTION_FAILED;
1015				done = true;
1016				break;
1017			}
1018			/* Delay for a while */
1019			msleep(500);
1020		}
1021	} while (!done);
1022
1023	if (rval)
1024		ql_dbg(ql_dbg_init, vha, 0x0138,
1025		    "%s **** FAILED ****.\n", __func__);
1026	else
1027		ql_dbg(ql_dbg_init, vha, 0x0139,
1028		    "%s **** SUCCESS ****.\n", __func__);
1029
1030	return rval;
1031}
1032
1033/*
1034 * qlafx00_fw_ready() - Waits for firmware ready.
1035 * @ha: HA context
1036 *
1037 * Returns 0 on success.
1038 */
1039int
1040qlafx00_fw_ready(scsi_qla_host_t *vha)
1041{
1042	int		rval;
1043	unsigned long	wtime;
1044	uint16_t	wait_time;	/* Wait time if loop is coming ready */
1045	uint32_t	state[5];
1046
1047	rval = QLA_SUCCESS;
1048
1049	wait_time = 10;
1050
1051	/* wait time before firmware ready */
1052	wtime = jiffies + (wait_time * HZ);
1053
1054	/* Wait for ISP to finish init */
1055	if (!vha->flags.init_done)
1056		ql_dbg(ql_dbg_init, vha, 0x013a,
1057		    "Waiting for init to complete...\n");
1058
1059	do {
1060		rval = qlafx00_get_firmware_state(vha, state);
1061
1062		if (rval == QLA_SUCCESS) {
1063			if (state[0] == FSTATE_FX00_INITIALIZED) {
1064				ql_dbg(ql_dbg_init, vha, 0x013b,
1065				    "fw_state=%x\n", state[0]);
1066				rval = QLA_SUCCESS;
1067					break;
1068			}
1069		}
1070		rval = QLA_FUNCTION_FAILED;
1071
1072		if (time_after_eq(jiffies, wtime))
1073			break;
1074
1075		/* Delay for a while */
1076		msleep(500);
1077
1078		ql_dbg(ql_dbg_init, vha, 0x013c,
1079		    "fw_state=%x curr time=%lx.\n", state[0], jiffies);
1080	} while (1);
1081
1082
1083	if (rval)
1084		ql_dbg(ql_dbg_init, vha, 0x013d,
1085		    "Firmware ready **** FAILED ****.\n");
1086	else
1087		ql_dbg(ql_dbg_init, vha, 0x013e,
1088		    "Firmware ready **** SUCCESS ****.\n");
1089
1090	return rval;
1091}
1092
1093static int
1094qlafx00_find_all_targets(scsi_qla_host_t *vha,
1095	struct list_head *new_fcports)
1096{
1097	int		rval;
1098	uint16_t	tgt_id;
1099	fc_port_t	*fcport, *new_fcport;
1100	int		found;
1101	struct qla_hw_data *ha = vha->hw;
1102
1103	rval = QLA_SUCCESS;
1104
1105	if (!test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags))
1106		return QLA_FUNCTION_FAILED;
1107
1108	if ((atomic_read(&vha->loop_down_timer) ||
1109	     STATE_TRANSITION(vha))) {
1110		atomic_set(&vha->loop_down_timer, 0);
1111		set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1112		return QLA_FUNCTION_FAILED;
1113	}
1114
1115	ql_dbg(ql_dbg_disc + ql_dbg_init, vha, 0x2088,
1116	    "Listing Target bit map...\n");
1117	ql_dump_buffer(ql_dbg_disc + ql_dbg_init, vha, 0x2089,
1118	    ha->gid_list, 32);
1119
1120	/* Allocate temporary rmtport for any new rmtports discovered. */
1121	new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
1122	if (new_fcport == NULL)
1123		return QLA_MEMORY_ALLOC_FAILED;
1124
1125	for_each_set_bit(tgt_id, (void *)ha->gid_list,
1126	    QLAFX00_TGT_NODE_LIST_SIZE) {
1127
1128		/* Send get target node info */
1129		new_fcport->tgt_id = tgt_id;
1130		rval = qlafx00_fx_disc(vha, new_fcport,
1131		    FXDISC_GET_TGT_NODE_INFO);
1132		if (rval != QLA_SUCCESS) {
1133			ql_log(ql_log_warn, vha, 0x208a,
1134			    "Target info scan failed -- assuming zero-entry "
1135			    "result...\n");
1136			continue;
1137		}
1138
1139		/* Locate matching device in database. */
1140		found = 0;
1141		list_for_each_entry(fcport, &vha->vp_fcports, list) {
1142			if (memcmp(new_fcport->port_name,
1143			    fcport->port_name, WWN_SIZE))
1144				continue;
1145
1146			found++;
1147
1148			/*
1149			 * If tgt_id is same and state FCS_ONLINE, nothing
1150			 * changed.
1151			 */
1152			if (fcport->tgt_id == new_fcport->tgt_id &&
1153			    atomic_read(&fcport->state) == FCS_ONLINE)
1154				break;
1155
1156			/*
1157			 * Tgt ID changed or device was marked to be updated.
1158			 */
1159			ql_dbg(ql_dbg_disc + ql_dbg_init, vha, 0x208b,
1160			    "TGT-ID Change(%s): Present tgt id: "
1161			    "0x%x state: 0x%x "
1162			    "wwnn = %llx wwpn = %llx.\n",
1163			    __func__, fcport->tgt_id,
1164			    atomic_read(&fcport->state),
1165			    (unsigned long long)wwn_to_u64(fcport->node_name),
1166			    (unsigned long long)wwn_to_u64(fcport->port_name));
1167
1168			ql_log(ql_log_info, vha, 0x208c,
1169			    "TGT-ID Announce(%s): Discovered tgt "
1170			    "id 0x%x wwnn = %llx "
1171			    "wwpn = %llx.\n", __func__, new_fcport->tgt_id,
1172			    (unsigned long long)
1173			    wwn_to_u64(new_fcport->node_name),
1174			    (unsigned long long)
1175			    wwn_to_u64(new_fcport->port_name));
1176
1177			if (atomic_read(&fcport->state) != FCS_ONLINE) {
1178				fcport->old_tgt_id = fcport->tgt_id;
1179				fcport->tgt_id = new_fcport->tgt_id;
1180				ql_log(ql_log_info, vha, 0x208d,
1181				   "TGT-ID: New fcport Added: %p\n", fcport);
1182				qla2x00_update_fcport(vha, fcport);
1183			} else {
1184				ql_log(ql_log_info, vha, 0x208e,
1185				    " Existing TGT-ID %x did not get "
1186				    " offline event from firmware.\n",
1187				    fcport->old_tgt_id);
1188				qla2x00_mark_device_lost(vha, fcport, 0);
1189				set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1190				qla2x00_free_fcport(new_fcport);
1191				return rval;
1192			}
1193			break;
1194		}
1195
1196		if (found)
1197			continue;
1198
1199		/* If device was not in our fcports list, then add it. */
1200		list_add_tail(&new_fcport->list, new_fcports);
1201
1202		/* Allocate a new replacement fcport. */
1203		new_fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
1204		if (new_fcport == NULL)
1205			return QLA_MEMORY_ALLOC_FAILED;
1206	}
1207
1208	qla2x00_free_fcport(new_fcport);
1209	return rval;
1210}
1211
1212/*
1213 * qlafx00_configure_all_targets
1214 *      Setup target devices with node ID's.
1215 *
1216 * Input:
1217 *      ha = adapter block pointer.
1218 *
1219 * Returns:
1220 *      0 = success.
1221 *      BIT_0 = error
1222 */
1223static int
1224qlafx00_configure_all_targets(scsi_qla_host_t *vha)
1225{
1226	int rval;
1227	fc_port_t *fcport, *rmptemp;
1228	LIST_HEAD(new_fcports);
1229
1230	rval = qlafx00_fx_disc(vha, &vha->hw->mr.fcport,
1231	    FXDISC_GET_TGT_NODE_LIST);
1232	if (rval != QLA_SUCCESS) {
1233		set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1234		return rval;
1235	}
1236
1237	rval = qlafx00_find_all_targets(vha, &new_fcports);
1238	if (rval != QLA_SUCCESS) {
1239		set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1240		return rval;
1241	}
1242
1243	/*
1244	 * Delete all previous devices marked lost.
1245	 */
1246	list_for_each_entry(fcport, &vha->vp_fcports, list) {
1247		if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
1248			break;
1249
1250		if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
1251			if (fcport->port_type != FCT_INITIATOR)
1252				qla2x00_mark_device_lost(vha, fcport, 0);
1253		}
1254	}
1255
1256	/*
1257	 * Add the new devices to our devices list.
1258	 */
1259	list_for_each_entry_safe(fcport, rmptemp, &new_fcports, list) {
1260		if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
1261			break;
1262
1263		qla2x00_update_fcport(vha, fcport);
1264		list_move_tail(&fcport->list, &vha->vp_fcports);
1265		ql_log(ql_log_info, vha, 0x208f,
1266		    "Attach new target id 0x%x wwnn = %llx "
1267		    "wwpn = %llx.\n",
1268		    fcport->tgt_id,
1269		    (unsigned long long)wwn_to_u64(fcport->node_name),
1270		    (unsigned long long)wwn_to_u64(fcport->port_name));
1271	}
1272
1273	/* Free all new device structures not processed. */
1274	list_for_each_entry_safe(fcport, rmptemp, &new_fcports, list) {
1275		list_del(&fcport->list);
1276		qla2x00_free_fcport(fcport);
1277	}
1278
1279	return rval;
1280}
1281
1282/*
1283 * qlafx00_configure_devices
1284 *      Updates Fibre Channel Device Database with what is actually on loop.
1285 *
1286 * Input:
1287 *      ha                = adapter block pointer.
1288 *
1289 * Returns:
1290 *      0 = success.
1291 *      1 = error.
1292 *      2 = database was full and device was not configured.
1293 */
1294int
1295qlafx00_configure_devices(scsi_qla_host_t *vha)
1296{
1297	int  rval;
1298	unsigned long flags;
1299
1300	rval = QLA_SUCCESS;
1301
1302	flags = vha->dpc_flags;
1303
1304	ql_dbg(ql_dbg_disc, vha, 0x2090,
1305	    "Configure devices -- dpc flags =0x%lx\n", flags);
1306
1307	rval = qlafx00_configure_all_targets(vha);
1308
1309	if (rval == QLA_SUCCESS) {
1310		if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
1311			rval = QLA_FUNCTION_FAILED;
1312		} else {
1313			atomic_set(&vha->loop_state, LOOP_READY);
1314			ql_log(ql_log_info, vha, 0x2091,
1315			    "Device Ready\n");
1316		}
1317	}
1318
1319	if (rval) {
1320		ql_dbg(ql_dbg_disc, vha, 0x2092,
1321		    "%s *** FAILED ***.\n", __func__);
1322	} else {
1323		ql_dbg(ql_dbg_disc, vha, 0x2093,
1324		    "%s: exiting normally.\n", __func__);
1325	}
1326	return rval;
1327}
1328
1329static void
1330qlafx00_abort_isp_cleanup(scsi_qla_host_t *vha, bool critemp)
1331{
1332	struct qla_hw_data *ha = vha->hw;
1333	fc_port_t *fcport;
1334
1335	vha->flags.online = 0;
1336	ha->mr.fw_hbt_en = 0;
1337
1338	if (!critemp) {
1339		ha->flags.chip_reset_done = 0;
1340		clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1341		vha->qla_stats.total_isp_aborts++;
1342		ql_log(ql_log_info, vha, 0x013f,
1343		    "Performing ISP error recovery - ha = %p.\n", ha);
1344		ha->isp_ops->reset_chip(vha);
1345	}
1346
1347	if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
1348		atomic_set(&vha->loop_state, LOOP_DOWN);
1349		atomic_set(&vha->loop_down_timer,
1350		    QLAFX00_LOOP_DOWN_TIME);
1351	} else {
1352		if (!atomic_read(&vha->loop_down_timer))
1353			atomic_set(&vha->loop_down_timer,
1354			    QLAFX00_LOOP_DOWN_TIME);
1355	}
1356
1357	/* Clear all async request states across all VPs. */
1358	list_for_each_entry(fcport, &vha->vp_fcports, list) {
1359		fcport->flags = 0;
1360		if (atomic_read(&fcport->state) == FCS_ONLINE)
1361			qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST);
1362	}
1363
1364	if (!ha->flags.eeh_busy) {
1365		if (critemp) {
1366			qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
1367		} else {
1368			/* Requeue all commands in outstanding command list. */
1369			qla2x00_abort_all_cmds(vha, DID_RESET << 16);
1370		}
1371	}
1372
1373	qla2x00_free_irqs(vha);
1374	if (critemp)
1375		set_bit(FX00_CRITEMP_RECOVERY, &vha->dpc_flags);
1376	else
1377		set_bit(FX00_RESET_RECOVERY, &vha->dpc_flags);
1378
1379	/* Clear the Interrupts */
1380	QLAFX00_CLR_INTR_REG(ha, QLAFX00_HST_INT_STS_BITS);
1381
1382	ql_log(ql_log_info, vha, 0x0140,
1383	    "%s Done done - ha=%p.\n", __func__, ha);
1384}
1385
1386/**
1387 * qlafx00_init_response_q_entries() - Initializes response queue entries.
1388 * @rsp: response queue
1389 *
1390 * Beginning of request ring has initialization control block already built
1391 * by nvram config routine.
1392 *
1393 * Returns 0 on success.
1394 */
1395void
1396qlafx00_init_response_q_entries(struct rsp_que *rsp)
1397{
1398	uint16_t cnt;
1399	response_t *pkt;
1400
1401	rsp->ring_ptr = rsp->ring;
1402	rsp->ring_index    = 0;
1403	rsp->status_srb = NULL;
1404	pkt = rsp->ring_ptr;
1405	for (cnt = 0; cnt < rsp->length; cnt++) {
1406		pkt->signature = RESPONSE_PROCESSED;
1407		wrt_reg_dword((void __force __iomem *)&pkt->signature,
1408		    RESPONSE_PROCESSED);
1409		pkt++;
1410	}
1411}
1412
1413int
1414qlafx00_rescan_isp(scsi_qla_host_t *vha)
1415{
1416	uint32_t status = QLA_FUNCTION_FAILED;
1417	struct qla_hw_data *ha = vha->hw;
1418	struct device_reg_fx00 __iomem *reg = &ha->iobase->ispfx00;
1419	uint32_t aenmbx7;
1420
1421	qla2x00_request_irqs(ha, ha->rsp_q_map[0]);
1422
1423	aenmbx7 = rd_reg_dword(&reg->aenmailbox7);
1424	ha->mbx_intr_code = MSW(aenmbx7);
1425	ha->rqstq_intr_code = LSW(aenmbx7);
1426	ha->req_que_off = rd_reg_dword(&reg->aenmailbox1);
1427	ha->rsp_que_off = rd_reg_dword(&reg->aenmailbox3);
1428	ha->req_que_len = rd_reg_dword(&reg->aenmailbox5);
1429	ha->rsp_que_len = rd_reg_dword(&reg->aenmailbox6);
1430
1431	ql_dbg(ql_dbg_disc, vha, 0x2094,
1432	    "fw returned mbx_intr_code: 0x%x, rqstq_intr_code: 0x%x "
1433	    " Req que offset 0x%x Rsp que offset 0x%x\n",
1434	    ha->mbx_intr_code, ha->rqstq_intr_code,
1435	    ha->req_que_off, ha->rsp_que_len);
1436
1437	/* Clear the Interrupts */
1438	QLAFX00_CLR_INTR_REG(ha, QLAFX00_HST_INT_STS_BITS);
1439
1440	status = qla2x00_init_rings(vha);
1441	if (!status) {
1442		vha->flags.online = 1;
1443
1444		/* if no cable then assume it's good */
1445		if ((vha->device_flags & DFLG_NO_CABLE))
1446			status = 0;
1447		/* Register system information */
1448		if (qlafx00_fx_disc(vha,
1449		    &vha->hw->mr.fcport, FXDISC_REG_HOST_INFO))
1450			ql_dbg(ql_dbg_disc, vha, 0x2095,
1451			    "failed to register host info\n");
1452	}
1453	scsi_unblock_requests(vha->host);
1454	return status;
1455}
1456
1457void
1458qlafx00_timer_routine(scsi_qla_host_t *vha)
1459{
1460	struct qla_hw_data *ha = vha->hw;
1461	uint32_t fw_heart_beat;
1462	uint32_t aenmbx0;
1463	struct device_reg_fx00 __iomem *reg = &ha->iobase->ispfx00;
1464	uint32_t tempc;
1465
1466	/* Check firmware health */
1467	if (ha->mr.fw_hbt_cnt)
1468		ha->mr.fw_hbt_cnt--;
1469	else {
1470		if ((!ha->flags.mr_reset_hdlr_active) &&
1471		    (!test_bit(UNLOADING, &vha->dpc_flags)) &&
1472		    (!test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) &&
1473		    (ha->mr.fw_hbt_en)) {
1474			fw_heart_beat = rd_reg_dword(&reg->fwheartbeat);
1475			if (fw_heart_beat != ha->mr.old_fw_hbt_cnt) {
1476				ha->mr.old_fw_hbt_cnt = fw_heart_beat;
1477				ha->mr.fw_hbt_miss_cnt = 0;
1478			} else {
1479				ha->mr.fw_hbt_miss_cnt++;
1480				if (ha->mr.fw_hbt_miss_cnt ==
1481				    QLAFX00_HEARTBEAT_MISS_CNT) {
1482					set_bit(ISP_ABORT_NEEDED,
1483					    &vha->dpc_flags);
1484					qla2xxx_wake_dpc(vha);
1485					ha->mr.fw_hbt_miss_cnt = 0;
1486				}
1487			}
1488		}
1489		ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL;
1490	}
1491
1492	if (test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags)) {
1493		/* Reset recovery to be performed in timer routine */
1494		aenmbx0 = rd_reg_dword(&reg->aenmailbox0);
1495		if (ha->mr.fw_reset_timer_exp) {
1496			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1497			qla2xxx_wake_dpc(vha);
1498			ha->mr.fw_reset_timer_exp = 0;
1499		} else if (aenmbx0 == MBA_FW_RESTART_CMPLT) {
1500			/* Wake up DPC to rescan the targets */
1501			set_bit(FX00_TARGET_SCAN, &vha->dpc_flags);
1502			clear_bit(FX00_RESET_RECOVERY, &vha->dpc_flags);
1503			qla2xxx_wake_dpc(vha);
1504			ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
1505		} else if ((aenmbx0 == MBA_FW_STARTING) &&
1506		    (!ha->mr.fw_hbt_en)) {
1507			ha->mr.fw_hbt_en = 1;
1508		} else if (!ha->mr.fw_reset_timer_tick) {
1509			if (aenmbx0 == ha->mr.old_aenmbx0_state)
1510				ha->mr.fw_reset_timer_exp = 1;
1511			ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
1512		} else if (aenmbx0 == 0xFFFFFFFF) {
1513			uint32_t data0, data1;
1514
1515			data0 = QLAFX00_RD_REG(ha,
1516			    QLAFX00_BAR1_BASE_ADDR_REG);
1517			data1 = QLAFX00_RD_REG(ha,
1518			    QLAFX00_PEX0_WIN0_BASE_ADDR_REG);
1519
1520			data0 &= 0xffff0000;
1521			data1 &= 0x0000ffff;
1522
1523			QLAFX00_WR_REG(ha,
1524			    QLAFX00_PEX0_WIN0_BASE_ADDR_REG,
1525			    (data0 | data1));
1526		} else if ((aenmbx0 & 0xFF00) == MBA_FW_POLL_STATE) {
1527			ha->mr.fw_reset_timer_tick =
1528			    QLAFX00_MAX_RESET_INTERVAL;
1529		} else if (aenmbx0 == MBA_FW_RESET_FCT) {
1530			ha->mr.fw_reset_timer_tick =
1531			    QLAFX00_MAX_RESET_INTERVAL;
1532		}
1533		if (ha->mr.old_aenmbx0_state != aenmbx0) {
1534			ha->mr.old_aenmbx0_state = aenmbx0;
1535			ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL;
1536		}
1537		ha->mr.fw_reset_timer_tick--;
1538	}
1539	if (test_bit(FX00_CRITEMP_RECOVERY, &vha->dpc_flags)) {
1540		/*
1541		 * Critical temperature recovery to be
1542		 * performed in timer routine
1543		 */
1544		if (ha->mr.fw_critemp_timer_tick == 0) {
1545			tempc = QLAFX00_GET_TEMPERATURE(ha);
1546			ql_dbg(ql_dbg_timer, vha, 0x6012,
1547			    "ISPFx00(%s): Critical temp timer, "
1548			    "current SOC temperature: %d\n",
1549			    __func__, tempc);
1550			if (tempc < ha->mr.critical_temperature) {
1551				set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1552				clear_bit(FX00_CRITEMP_RECOVERY,
1553				    &vha->dpc_flags);
1554				qla2xxx_wake_dpc(vha);
1555			}
1556			ha->mr.fw_critemp_timer_tick =
1557			    QLAFX00_CRITEMP_INTERVAL;
1558		} else {
1559			ha->mr.fw_critemp_timer_tick--;
1560		}
1561	}
1562	if (ha->mr.host_info_resend) {
1563		/*
1564		 * Incomplete host info might be sent to firmware
1565		 * durinng system boot - info should be resend
1566		 */
1567		if (ha->mr.hinfo_resend_timer_tick == 0) {
1568			ha->mr.host_info_resend = false;
1569			set_bit(FX00_HOST_INFO_RESEND, &vha->dpc_flags);
1570			ha->mr.hinfo_resend_timer_tick =
1571			    QLAFX00_HINFO_RESEND_INTERVAL;
1572			qla2xxx_wake_dpc(vha);
1573		} else {
1574			ha->mr.hinfo_resend_timer_tick--;
1575		}
1576	}
1577
1578}
1579
1580/*
1581 *  qlfx00a_reset_initialize
1582 *      Re-initialize after a iSA device reset.
1583 *
1584 * Input:
1585 *      ha  = adapter block pointer.
1586 *
1587 * Returns:
1588 *      0 = success
1589 */
1590int
1591qlafx00_reset_initialize(scsi_qla_host_t *vha)
1592{
1593	struct qla_hw_data *ha = vha->hw;
1594
1595	if (vha->device_flags & DFLG_DEV_FAILED) {
1596		ql_dbg(ql_dbg_init, vha, 0x0142,
1597		    "Device in failed state\n");
1598		return QLA_SUCCESS;
1599	}
1600
1601	ha->flags.mr_reset_hdlr_active = 1;
1602
1603	if (vha->flags.online) {
1604		scsi_block_requests(vha->host);
1605		qlafx00_abort_isp_cleanup(vha, false);
1606	}
1607
1608	ql_log(ql_log_info, vha, 0x0143,
1609	    "(%s): succeeded.\n", __func__);
1610	ha->flags.mr_reset_hdlr_active = 0;
1611	return QLA_SUCCESS;
1612}
1613
1614/*
1615 *  qlafx00_abort_isp
1616 *      Resets ISP and aborts all outstanding commands.
1617 *
1618 * Input:
1619 *      ha  = adapter block pointer.
1620 *
1621 * Returns:
1622 *      0 = success
1623 */
1624int
1625qlafx00_abort_isp(scsi_qla_host_t *vha)
1626{
1627	struct qla_hw_data *ha = vha->hw;
1628
1629	if (vha->flags.online) {
1630		if (unlikely(pci_channel_offline(ha->pdev) &&
1631		    ha->flags.pci_channel_io_perm_failure)) {
1632			clear_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
1633			return QLA_SUCCESS;
1634		}
1635
1636		scsi_block_requests(vha->host);
1637		qlafx00_abort_isp_cleanup(vha, false);
1638	} else {
1639		scsi_block_requests(vha->host);
1640		clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1641		vha->qla_stats.total_isp_aborts++;
1642		ha->isp_ops->reset_chip(vha);
1643		set_bit(FX00_RESET_RECOVERY, &vha->dpc_flags);
1644		/* Clear the Interrupts */
1645		QLAFX00_CLR_INTR_REG(ha, QLAFX00_HST_INT_STS_BITS);
1646	}
1647
1648	ql_log(ql_log_info, vha, 0x0145,
1649	    "(%s): succeeded.\n", __func__);
1650
1651	return QLA_SUCCESS;
1652}
1653
1654static inline fc_port_t*
1655qlafx00_get_fcport(struct scsi_qla_host *vha, int tgt_id)
1656{
1657	fc_port_t	*fcport;
1658
1659	/* Check for matching device in remote port list. */
1660	list_for_each_entry(fcport, &vha->vp_fcports, list) {
1661		if (fcport->tgt_id == tgt_id) {
1662			ql_dbg(ql_dbg_async, vha, 0x5072,
1663			    "Matching fcport(%p) found with TGT-ID: 0x%x "
1664			    "and Remote TGT_ID: 0x%x\n",
1665			    fcport, fcport->tgt_id, tgt_id);
1666			return fcport;
1667		}
1668	}
1669	return NULL;
1670}
1671
1672static void
1673qlafx00_tgt_detach(struct scsi_qla_host *vha, int tgt_id)
1674{
1675	fc_port_t	*fcport;
1676
1677	ql_log(ql_log_info, vha, 0x5073,
1678	    "Detach TGT-ID: 0x%x\n", tgt_id);
1679
1680	fcport = qlafx00_get_fcport(vha, tgt_id);
1681	if (!fcport)
1682		return;
1683
1684	qla2x00_mark_device_lost(vha, fcport, 0);
1685
1686	return;
1687}
1688
1689void
1690qlafx00_process_aen(struct scsi_qla_host *vha, struct qla_work_evt *evt)
1691{
1692	uint32_t aen_code, aen_data;
1693
1694	aen_code = FCH_EVT_VENDOR_UNIQUE;
1695	aen_data = evt->u.aenfx.evtcode;
1696
1697	switch (evt->u.aenfx.evtcode) {
1698	case QLAFX00_MBA_PORT_UPDATE:		/* Port database update */
1699		if (evt->u.aenfx.mbx[1] == 0) {
1700			if (evt->u.aenfx.mbx[2] == 1) {
1701				if (!vha->flags.fw_tgt_reported)
1702					vha->flags.fw_tgt_reported = 1;
1703				atomic_set(&vha->loop_down_timer, 0);
1704				atomic_set(&vha->loop_state, LOOP_UP);
1705				set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1706				qla2xxx_wake_dpc(vha);
1707			} else if (evt->u.aenfx.mbx[2] == 2) {
1708				qlafx00_tgt_detach(vha, evt->u.aenfx.mbx[3]);
1709			}
1710		} else if (evt->u.aenfx.mbx[1] == 0xffff) {
1711			if (evt->u.aenfx.mbx[2] == 1) {
1712				if (!vha->flags.fw_tgt_reported)
1713					vha->flags.fw_tgt_reported = 1;
1714				set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1715			} else if (evt->u.aenfx.mbx[2] == 2) {
1716				vha->device_flags |= DFLG_NO_CABLE;
1717				qla2x00_mark_all_devices_lost(vha);
1718			}
1719		}
1720		break;
1721	case QLAFX00_MBA_LINK_UP:
1722		aen_code = FCH_EVT_LINKUP;
1723		aen_data = 0;
1724		break;
1725	case QLAFX00_MBA_LINK_DOWN:
1726		aen_code = FCH_EVT_LINKDOWN;
1727		aen_data = 0;
1728		break;
1729	case QLAFX00_MBA_TEMP_CRIT:	/* Critical temperature event */
1730		ql_log(ql_log_info, vha, 0x5082,
1731		    "Process critical temperature event "
1732		    "aenmb[0]: %x\n",
1733		    evt->u.aenfx.evtcode);
1734		scsi_block_requests(vha->host);
1735		qlafx00_abort_isp_cleanup(vha, true);
1736		scsi_unblock_requests(vha->host);
1737		break;
1738	}
1739
1740	fc_host_post_event(vha->host, fc_get_event_number(),
1741	    aen_code, aen_data);
1742}
1743
1744static void
1745qlafx00_update_host_attr(scsi_qla_host_t *vha, struct port_info_data *pinfo)
1746{
1747	u64 port_name = 0, node_name = 0;
1748
1749	port_name = (unsigned long long)wwn_to_u64(pinfo->port_name);
1750	node_name = (unsigned long long)wwn_to_u64(pinfo->node_name);
1751
1752	fc_host_node_name(vha->host) = node_name;
1753	fc_host_port_name(vha->host) = port_name;
1754	if (!pinfo->port_type)
1755		vha->hw->current_topology = ISP_CFG_F;
1756	if (pinfo->link_status == QLAFX00_LINK_STATUS_UP)
1757		atomic_set(&vha->loop_state, LOOP_READY);
1758	else if (pinfo->link_status == QLAFX00_LINK_STATUS_DOWN)
1759		atomic_set(&vha->loop_state, LOOP_DOWN);
1760	vha->hw->link_data_rate = (uint16_t)pinfo->link_config;
1761}
1762
1763static void
1764qla2x00_fxdisc_iocb_timeout(void *data)
1765{
1766	srb_t *sp = data;
1767	struct srb_iocb *lio = &sp->u.iocb_cmd;
1768
1769	complete(&lio->u.fxiocb.fxiocb_comp);
1770}
1771
1772static void qla2x00_fxdisc_sp_done(srb_t *sp, int res)
1773{
1774	struct srb_iocb *lio = &sp->u.iocb_cmd;
1775
1776	complete(&lio->u.fxiocb.fxiocb_comp);
1777}
1778
1779int
1780qlafx00_fx_disc(scsi_qla_host_t *vha, fc_port_t *fcport, uint16_t fx_type)
1781{
1782	srb_t *sp;
1783	struct srb_iocb *fdisc;
1784	int rval = QLA_FUNCTION_FAILED;
1785	struct qla_hw_data *ha = vha->hw;
1786	struct host_system_info *phost_info;
1787	struct register_host_info *preg_hsi;
1788	struct new_utsname *p_sysid = NULL;
1789
1790	sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
1791	if (!sp)
1792		goto done;
1793
1794	sp->type = SRB_FXIOCB_DCMD;
1795	sp->name = "fxdisc";
1796
1797	fdisc = &sp->u.iocb_cmd;
1798	fdisc->timeout = qla2x00_fxdisc_iocb_timeout;
1799	qla2x00_init_timer(sp, FXDISC_TIMEOUT);
1800
1801	switch (fx_type) {
1802	case FXDISC_GET_CONFIG_INFO:
1803	fdisc->u.fxiocb.flags =
1804		    SRB_FXDISC_RESP_DMA_VALID;
1805		fdisc->u.fxiocb.rsp_len = sizeof(struct config_info_data);
1806		break;
1807	case FXDISC_GET_PORT_INFO:
1808		fdisc->u.fxiocb.flags =
1809		    SRB_FXDISC_RESP_DMA_VALID | SRB_FXDISC_REQ_DWRD_VALID;
1810		fdisc->u.fxiocb.rsp_len = QLAFX00_PORT_DATA_INFO;
1811		fdisc->u.fxiocb.req_data = cpu_to_le32(fcport->port_id);
1812		break;
1813	case FXDISC_GET_TGT_NODE_INFO:
1814		fdisc->u.fxiocb.flags =
1815		    SRB_FXDISC_RESP_DMA_VALID | SRB_FXDISC_REQ_DWRD_VALID;
1816		fdisc->u.fxiocb.rsp_len = QLAFX00_TGT_NODE_INFO;
1817		fdisc->u.fxiocb.req_data = cpu_to_le32(fcport->tgt_id);
1818		break;
1819	case FXDISC_GET_TGT_NODE_LIST:
1820		fdisc->u.fxiocb.flags =
1821		    SRB_FXDISC_RESP_DMA_VALID | SRB_FXDISC_REQ_DWRD_VALID;
1822		fdisc->u.fxiocb.rsp_len = QLAFX00_TGT_NODE_LIST_SIZE;
1823		break;
1824	case FXDISC_REG_HOST_INFO:
1825		fdisc->u.fxiocb.flags = SRB_FXDISC_REQ_DMA_VALID;
1826		fdisc->u.fxiocb.req_len = sizeof(struct register_host_info);
1827		p_sysid = utsname();
1828		if (!p_sysid) {
1829			ql_log(ql_log_warn, vha, 0x303c,
1830			    "Not able to get the system information\n");
1831			goto done_free_sp;
1832		}
1833		break;
1834	case FXDISC_ABORT_IOCTL:
1835	default:
1836		break;
1837	}
1838
1839	if (fdisc->u.fxiocb.flags & SRB_FXDISC_REQ_DMA_VALID) {
1840		fdisc->u.fxiocb.req_addr = dma_alloc_coherent(&ha->pdev->dev,
1841		    fdisc->u.fxiocb.req_len,
1842		    &fdisc->u.fxiocb.req_dma_handle, GFP_KERNEL);
1843		if (!fdisc->u.fxiocb.req_addr)
1844			goto done_free_sp;
1845
1846		if (fx_type == FXDISC_REG_HOST_INFO) {
1847			preg_hsi = (struct register_host_info *)
1848				fdisc->u.fxiocb.req_addr;
1849			phost_info = &preg_hsi->hsi;
1850			memset(preg_hsi, 0, sizeof(struct register_host_info));
1851			phost_info->os_type = OS_TYPE_LINUX;
1852			strlcpy(phost_info->sysname, p_sysid->sysname,
1853				sizeof(phost_info->sysname));
1854			strlcpy(phost_info->nodename, p_sysid->nodename,
1855				sizeof(phost_info->nodename));
1856			if (!strcmp(phost_info->nodename, "(none)"))
1857				ha->mr.host_info_resend = true;
1858			strlcpy(phost_info->release, p_sysid->release,
1859				sizeof(phost_info->release));
1860			strlcpy(phost_info->version, p_sysid->version,
1861				sizeof(phost_info->version));
1862			strlcpy(phost_info->machine, p_sysid->machine,
1863				sizeof(phost_info->machine));
1864			strlcpy(phost_info->domainname, p_sysid->domainname,
1865				sizeof(phost_info->domainname));
1866			strlcpy(phost_info->hostdriver, QLA2XXX_VERSION,
1867				sizeof(phost_info->hostdriver));
1868			preg_hsi->utc = (uint64_t)ktime_get_real_seconds();
1869			ql_dbg(ql_dbg_init, vha, 0x0149,
1870			    "ISP%04X: Host registration with firmware\n",
1871			    ha->pdev->device);
1872			ql_dbg(ql_dbg_init, vha, 0x014a,
1873			    "os_type = '%d', sysname = '%s', nodname = '%s'\n",
1874			    phost_info->os_type,
1875			    phost_info->sysname,
1876			    phost_info->nodename);
1877			ql_dbg(ql_dbg_init, vha, 0x014b,
1878			    "release = '%s', version = '%s'\n",
1879			    phost_info->release,
1880			    phost_info->version);
1881			ql_dbg(ql_dbg_init, vha, 0x014c,
1882			    "machine = '%s' "
1883			    "domainname = '%s', hostdriver = '%s'\n",
1884			    phost_info->machine,
1885			    phost_info->domainname,
1886			    phost_info->hostdriver);
1887			ql_dump_buffer(ql_dbg_init + ql_dbg_disc, vha, 0x014d,
1888			    phost_info, sizeof(*phost_info));
1889		}
1890	}
1891
1892	if (fdisc->u.fxiocb.flags & SRB_FXDISC_RESP_DMA_VALID) {
1893		fdisc->u.fxiocb.rsp_addr = dma_alloc_coherent(&ha->pdev->dev,
1894		    fdisc->u.fxiocb.rsp_len,
1895		    &fdisc->u.fxiocb.rsp_dma_handle, GFP_KERNEL);
1896		if (!fdisc->u.fxiocb.rsp_addr)
1897			goto done_unmap_req;
1898	}
1899
1900	fdisc->u.fxiocb.req_func_type = cpu_to_le16(fx_type);
1901	sp->done = qla2x00_fxdisc_sp_done;
1902
1903	rval = qla2x00_start_sp(sp);
1904	if (rval != QLA_SUCCESS)
1905		goto done_unmap_dma;
1906
1907	wait_for_completion(&fdisc->u.fxiocb.fxiocb_comp);
1908
1909	if (fx_type == FXDISC_GET_CONFIG_INFO) {
1910		struct config_info_data *pinfo =
1911		    (struct config_info_data *) fdisc->u.fxiocb.rsp_addr;
1912		strlcpy(vha->hw->model_number, pinfo->model_num,
1913			ARRAY_SIZE(vha->hw->model_number));
1914		strlcpy(vha->hw->model_desc, pinfo->model_description,
1915			ARRAY_SIZE(vha->hw->model_desc));
1916		memcpy(&vha->hw->mr.symbolic_name, pinfo->symbolic_name,
1917		    sizeof(vha->hw->mr.symbolic_name));
1918		memcpy(&vha->hw->mr.serial_num, pinfo->serial_num,
1919		    sizeof(vha->hw->mr.serial_num));
1920		memcpy(&vha->hw->mr.hw_version, pinfo->hw_version,
1921		    sizeof(vha->hw->mr.hw_version));
1922		memcpy(&vha->hw->mr.fw_version, pinfo->fw_version,
1923		    sizeof(vha->hw->mr.fw_version));
1924		strim(vha->hw->mr.fw_version);
1925		memcpy(&vha->hw->mr.uboot_version, pinfo->uboot_version,
1926		    sizeof(vha->hw->mr.uboot_version));
1927		memcpy(&vha->hw->mr.fru_serial_num, pinfo->fru_serial_num,
1928		    sizeof(vha->hw->mr.fru_serial_num));
1929		vha->hw->mr.critical_temperature =
1930		    (pinfo->nominal_temp_value) ?
1931		    pinfo->nominal_temp_value : QLAFX00_CRITEMP_THRSHLD;
1932		ha->mr.extended_io_enabled = (pinfo->enabled_capabilities &
1933		    QLAFX00_EXTENDED_IO_EN_MASK) != 0;
1934	} else if (fx_type == FXDISC_GET_PORT_INFO) {
1935		struct port_info_data *pinfo =
1936		    (struct port_info_data *) fdisc->u.fxiocb.rsp_addr;
1937		memcpy(vha->node_name, pinfo->node_name, WWN_SIZE);
1938		memcpy(vha->port_name, pinfo->port_name, WWN_SIZE);
1939		vha->d_id.b.domain = pinfo->port_id[0];
1940		vha->d_id.b.area = pinfo->port_id[1];
1941		vha->d_id.b.al_pa = pinfo->port_id[2];
1942		qlafx00_update_host_attr(vha, pinfo);
1943		ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0141,
1944		    pinfo, 16);
1945	} else if (fx_type == FXDISC_GET_TGT_NODE_INFO) {
1946		struct qlafx00_tgt_node_info *pinfo =
1947		    (struct qlafx00_tgt_node_info *) fdisc->u.fxiocb.rsp_addr;
1948		memcpy(fcport->node_name, pinfo->tgt_node_wwnn, WWN_SIZE);
1949		memcpy(fcport->port_name, pinfo->tgt_node_wwpn, WWN_SIZE);
1950		fcport->port_type = FCT_TARGET;
1951		ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0144,
1952		    pinfo, 16);
1953	} else if (fx_type == FXDISC_GET_TGT_NODE_LIST) {
1954		struct qlafx00_tgt_node_info *pinfo =
1955		    (struct qlafx00_tgt_node_info *) fdisc->u.fxiocb.rsp_addr;
1956		ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0146,
1957		    pinfo, 16);
1958		memcpy(vha->hw->gid_list, pinfo, QLAFX00_TGT_NODE_LIST_SIZE);
1959	} else if (fx_type == FXDISC_ABORT_IOCTL)
1960		fdisc->u.fxiocb.result =
1961		    (fdisc->u.fxiocb.result ==
1962			cpu_to_le32(QLAFX00_IOCTL_ICOB_ABORT_SUCCESS)) ?
1963		    cpu_to_le32(QLA_SUCCESS) : cpu_to_le32(QLA_FUNCTION_FAILED);
1964
1965	rval = le32_to_cpu(fdisc->u.fxiocb.result);
1966
1967done_unmap_dma:
1968	if (fdisc->u.fxiocb.rsp_addr)
1969		dma_free_coherent(&ha->pdev->dev, fdisc->u.fxiocb.rsp_len,
1970		    fdisc->u.fxiocb.rsp_addr, fdisc->u.fxiocb.rsp_dma_handle);
1971
1972done_unmap_req:
1973	if (fdisc->u.fxiocb.req_addr)
1974		dma_free_coherent(&ha->pdev->dev, fdisc->u.fxiocb.req_len,
1975		    fdisc->u.fxiocb.req_addr, fdisc->u.fxiocb.req_dma_handle);
1976done_free_sp:
1977	sp->free(sp);
1978done:
1979	return rval;
1980}
1981
1982/*
1983 * qlafx00_initialize_adapter
1984 *      Initialize board.
1985 *
1986 * Input:
1987 *      ha = adapter block pointer.
1988 *
1989 * Returns:
1990 *      0 = success
1991 */
1992int
1993qlafx00_initialize_adapter(scsi_qla_host_t *vha)
1994{
1995	int	rval;
1996	struct qla_hw_data *ha = vha->hw;
1997	uint32_t tempc;
1998
1999	/* Clear adapter flags. */
2000	vha->flags.online = 0;
2001	ha->flags.chip_reset_done = 0;
2002	vha->flags.reset_active = 0;
2003	ha->flags.pci_channel_io_perm_failure = 0;
2004	ha->flags.eeh_busy = 0;
2005	atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
2006	atomic_set(&vha->loop_state, LOOP_DOWN);
2007	vha->device_flags = DFLG_NO_CABLE;
2008	vha->dpc_flags = 0;
2009	vha->flags.management_server_logged_in = 0;
2010	ha->isp_abort_cnt = 0;
2011	ha->beacon_blink_led = 0;
2012
2013	set_bit(0, ha->req_qid_map);
2014	set_bit(0, ha->rsp_qid_map);
2015
2016	ql_dbg(ql_dbg_init, vha, 0x0147,
2017	    "Configuring PCI space...\n");
2018
2019	rval = ha->isp_ops->pci_config(vha);
2020	if (rval) {
2021		ql_log(ql_log_warn, vha, 0x0148,
2022		    "Unable to configure PCI space.\n");
2023		return rval;
2024	}
2025
2026	rval = qlafx00_init_fw_ready(vha);
2027	if (rval != QLA_SUCCESS)
2028		return rval;
2029
2030	qlafx00_save_queue_ptrs(vha);
2031
2032	rval = qlafx00_config_queues(vha);
2033	if (rval != QLA_SUCCESS)
2034		return rval;
2035
2036	/*
2037	 * Allocate the array of outstanding commands
2038	 * now that we know the firmware resources.
2039	 */
2040	rval = qla2x00_alloc_outstanding_cmds(ha, vha->req);
2041	if (rval != QLA_SUCCESS)
2042		return rval;
2043
2044	rval = qla2x00_init_rings(vha);
2045	ha->flags.chip_reset_done = 1;
2046
2047	tempc = QLAFX00_GET_TEMPERATURE(ha);
2048	ql_dbg(ql_dbg_init, vha, 0x0152,
2049	    "ISPFx00(%s): Critical temp timer, current SOC temperature: 0x%x\n",
2050	    __func__, tempc);
2051
2052	return rval;
2053}
2054
2055uint32_t
2056qlafx00_fw_state_show(struct device *dev, struct device_attribute *attr,
2057		      char *buf)
2058{
2059	scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
2060	int rval = QLA_FUNCTION_FAILED;
2061	uint32_t state[1];
2062
2063	if (qla2x00_reset_active(vha))
2064		ql_log(ql_log_warn, vha, 0x70ce,
2065		    "ISP reset active.\n");
2066	else if (!vha->hw->flags.eeh_busy) {
2067		rval = qlafx00_get_firmware_state(vha, state);
2068	}
2069	if (rval != QLA_SUCCESS)
2070		memset(state, -1, sizeof(state));
2071
2072	return state[0];
2073}
2074
2075void
2076qlafx00_get_host_speed(struct Scsi_Host *shost)
2077{
2078	struct qla_hw_data *ha = ((struct scsi_qla_host *)
2079					(shost_priv(shost)))->hw;
2080	u32 speed = FC_PORTSPEED_UNKNOWN;
2081
2082	switch (ha->link_data_rate) {
2083	case QLAFX00_PORT_SPEED_2G:
2084		speed = FC_PORTSPEED_2GBIT;
2085		break;
2086	case QLAFX00_PORT_SPEED_4G:
2087		speed = FC_PORTSPEED_4GBIT;
2088		break;
2089	case QLAFX00_PORT_SPEED_8G:
2090		speed = FC_PORTSPEED_8GBIT;
2091		break;
2092	case QLAFX00_PORT_SPEED_10G:
2093		speed = FC_PORTSPEED_10GBIT;
2094		break;
2095	}
2096	fc_host_speed(shost) = speed;
2097}
2098
2099/** QLAFX00 specific ISR implementation functions */
2100
2101static inline void
2102qlafx00_handle_sense(srb_t *sp, uint8_t *sense_data, uint32_t par_sense_len,
2103		     uint32_t sense_len, struct rsp_que *rsp, int res)
2104{
2105	struct scsi_qla_host *vha = sp->vha;
2106	struct scsi_cmnd *cp = GET_CMD_SP(sp);
2107	uint32_t track_sense_len;
2108
2109	SET_FW_SENSE_LEN(sp, sense_len);
2110
2111	if (sense_len >= SCSI_SENSE_BUFFERSIZE)
2112		sense_len = SCSI_SENSE_BUFFERSIZE;
2113
2114	SET_CMD_SENSE_LEN(sp, sense_len);
2115	SET_CMD_SENSE_PTR(sp, cp->sense_buffer);
2116	track_sense_len = sense_len;
2117
2118	if (sense_len > par_sense_len)
2119		sense_len = par_sense_len;
2120
2121	memcpy(cp->sense_buffer, sense_data, sense_len);
2122
2123	SET_FW_SENSE_LEN(sp, GET_FW_SENSE_LEN(sp) - sense_len);
2124
2125	SET_CMD_SENSE_PTR(sp, cp->sense_buffer + sense_len);
2126	track_sense_len -= sense_len;
2127	SET_CMD_SENSE_LEN(sp, track_sense_len);
2128
2129	ql_dbg(ql_dbg_io, vha, 0x304d,
2130	    "sense_len=0x%x par_sense_len=0x%x track_sense_len=0x%x.\n",
2131	    sense_len, par_sense_len, track_sense_len);
2132	if (GET_FW_SENSE_LEN(sp) > 0) {
2133		rsp->status_srb = sp;
2134		cp->result = res;
2135	}
2136
2137	if (sense_len) {
2138		ql_dbg(ql_dbg_io + ql_dbg_buffer, vha, 0x3039,
2139		    "Check condition Sense data, nexus%ld:%d:%llu cmd=%p.\n",
2140		    sp->vha->host_no, cp->device->id, cp->device->lun,
2141		    cp);
2142		ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x3049,
2143		    cp->sense_buffer, sense_len);
2144	}
2145}
2146
2147static void
2148qlafx00_tm_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
2149		      struct tsk_mgmt_entry_fx00 *pkt, srb_t *sp,
2150		      __le16 sstatus, __le16 cpstatus)
2151{
2152	struct srb_iocb *tmf;
2153
2154	tmf = &sp->u.iocb_cmd;
2155	if (cpstatus != cpu_to_le16((uint16_t)CS_COMPLETE) ||
2156	    (sstatus & cpu_to_le16((uint16_t)SS_RESPONSE_INFO_LEN_VALID)))
2157		cpstatus = cpu_to_le16((uint16_t)CS_INCOMPLETE);
2158	tmf->u.tmf.comp_status = cpstatus;
2159	sp->done(sp, 0);
2160}
2161
2162static void
2163qlafx00_abort_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
2164			 struct abort_iocb_entry_fx00 *pkt)
2165{
2166	const char func[] = "ABT_IOCB";
2167	srb_t *sp;
2168	struct srb_iocb *abt;
2169
2170	sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
2171	if (!sp)
2172		return;
2173
2174	abt = &sp->u.iocb_cmd;
2175	abt->u.abt.comp_status = pkt->tgt_id_sts;
2176	sp->done(sp, 0);
2177}
2178
2179static void
2180qlafx00_ioctl_iosb_entry(scsi_qla_host_t *vha, struct req_que *req,
2181			 struct ioctl_iocb_entry_fx00 *pkt)
2182{
2183	const char func[] = "IOSB_IOCB";
2184	srb_t *sp;
2185	struct bsg_job *bsg_job;
2186	struct fc_bsg_reply *bsg_reply;
2187	struct srb_iocb *iocb_job;
2188	int res = 0;
2189	struct qla_mt_iocb_rsp_fx00 fstatus;
2190	uint8_t	*fw_sts_ptr;
2191
2192	sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
2193	if (!sp)
2194		return;
2195
2196	if (sp->type == SRB_FXIOCB_DCMD) {
2197		iocb_job = &sp->u.iocb_cmd;
2198		iocb_job->u.fxiocb.seq_number = pkt->seq_no;
2199		iocb_job->u.fxiocb.fw_flags = pkt->fw_iotcl_flags;
2200		iocb_job->u.fxiocb.result = pkt->status;
2201		if (iocb_job->u.fxiocb.flags & SRB_FXDISC_RSP_DWRD_VALID)
2202			iocb_job->u.fxiocb.req_data =
2203			    pkt->dataword_r;
2204	} else {
2205		bsg_job = sp->u.bsg_job;
2206		bsg_reply = bsg_job->reply;
2207
2208		memset(&fstatus, 0, sizeof(struct qla_mt_iocb_rsp_fx00));
2209
2210		fstatus.reserved_1 = pkt->reserved_0;
2211		fstatus.func_type = pkt->comp_func_num;
2212		fstatus.ioctl_flags = pkt->fw_iotcl_flags;
2213		fstatus.ioctl_data = pkt->dataword_r;
2214		fstatus.adapid = pkt->adapid;
2215		fstatus.reserved_2 = pkt->dataword_r_extra;
2216		fstatus.res_count = pkt->residuallen;
2217		fstatus.status = pkt->status;
2218		fstatus.seq_number = pkt->seq_no;
2219		memcpy(fstatus.reserved_3,
2220		    pkt->reserved_2, 20 * sizeof(uint8_t));
2221
2222		fw_sts_ptr = bsg_job->reply + sizeof(struct fc_bsg_reply);
2223
2224		memcpy(fw_sts_ptr, &fstatus, sizeof(fstatus));
2225		bsg_job->reply_len = sizeof(struct fc_bsg_reply) +
2226			sizeof(struct qla_mt_iocb_rsp_fx00) + sizeof(uint8_t);
2227
2228		ql_dump_buffer(ql_dbg_user + ql_dbg_verbose,
2229		    sp->vha, 0x5080, pkt, sizeof(*pkt));
2230
2231		ql_dump_buffer(ql_dbg_user + ql_dbg_verbose,
2232		    sp->vha, 0x5074,
2233		    fw_sts_ptr, sizeof(fstatus));
2234
2235		res = bsg_reply->result = DID_OK << 16;
2236		bsg_reply->reply_payload_rcv_len =
2237		    bsg_job->reply_payload.payload_len;
2238	}
2239	sp->done(sp, res);
2240}
2241
2242/**
2243 * qlafx00_status_entry() - Process a Status IOCB entry.
2244 * @vha: SCSI driver HA context
2245 * @rsp: response queue
2246 * @pkt: Entry pointer
2247 */
2248static void
2249qlafx00_status_entry(scsi_qla_host_t *vha, struct rsp_que *rsp, void *pkt)
2250{
2251	srb_t		*sp;
2252	fc_port_t	*fcport;
2253	struct scsi_cmnd *cp;
2254	struct sts_entry_fx00 *sts;
2255	__le16		comp_status;
2256	__le16		scsi_status;
2257	__le16		lscsi_status;
2258	int32_t		resid;
2259	uint32_t	sense_len, par_sense_len, rsp_info_len, resid_len,
2260	    fw_resid_len;
2261	uint8_t		*rsp_info = NULL, *sense_data = NULL;
2262	struct qla_hw_data *ha = vha->hw;
2263	uint32_t hindex, handle;
2264	uint16_t que;
2265	struct req_que *req;
2266	int logit = 1;
2267	int res = 0;
2268
2269	sts = (struct sts_entry_fx00 *) pkt;
2270
2271	comp_status = sts->comp_status;
2272	scsi_status = sts->scsi_status & cpu_to_le16((uint16_t)SS_MASK);
2273	hindex = sts->handle;
2274	handle = LSW(hindex);
2275
2276	que = MSW(hindex);
2277	req = ha->req_q_map[que];
2278
2279	/* Validate handle. */
2280	if (handle < req->num_outstanding_cmds)
2281		sp = req->outstanding_cmds[handle];
2282	else
2283		sp = NULL;
2284
2285	if (sp == NULL) {
2286		ql_dbg(ql_dbg_io, vha, 0x3034,
2287		    "Invalid status handle (0x%x).\n", handle);
2288
2289		set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2290		qla2xxx_wake_dpc(vha);
2291		return;
2292	}
2293
2294	if (sp->type == SRB_TM_CMD) {
2295		req->outstanding_cmds[handle] = NULL;
2296		qlafx00_tm_iocb_entry(vha, req, pkt, sp,
2297		    scsi_status, comp_status);
2298		return;
2299	}
2300
2301	/* Fast path completion. */
2302	if (comp_status == CS_COMPLETE && scsi_status == 0) {
2303		qla2x00_process_completed_request(vha, req, handle);
2304		return;
2305	}
2306
2307	req->outstanding_cmds[handle] = NULL;
2308	cp = GET_CMD_SP(sp);
2309	if (cp == NULL) {
2310		ql_dbg(ql_dbg_io, vha, 0x3048,
2311		    "Command already returned (0x%x/%p).\n",
2312		    handle, sp);
2313
2314		return;
2315	}
2316
2317	lscsi_status = scsi_status & cpu_to_le16((uint16_t)STATUS_MASK);
2318
2319	fcport = sp->fcport;
2320
2321	sense_len = par_sense_len = rsp_info_len = resid_len =
2322		fw_resid_len = 0;
2323	if (scsi_status & cpu_to_le16((uint16_t)SS_SENSE_LEN_VALID))
2324		sense_len = sts->sense_len;
2325	if (scsi_status & cpu_to_le16(((uint16_t)SS_RESIDUAL_UNDER
2326	    | (uint16_t)SS_RESIDUAL_OVER)))
2327		resid_len = le32_to_cpu(sts->residual_len);
2328	if (comp_status == cpu_to_le16((uint16_t)CS_DATA_UNDERRUN))
2329		fw_resid_len = le32_to_cpu(sts->residual_len);
2330	rsp_info = sense_data = sts->data;
2331	par_sense_len = sizeof(sts->data);
2332
2333	/* Check for overrun. */
2334	if (comp_status == CS_COMPLETE &&
2335	    scsi_status & cpu_to_le16((uint16_t)SS_RESIDUAL_OVER))
2336		comp_status = cpu_to_le16((uint16_t)CS_DATA_OVERRUN);
2337
2338	/*
2339	 * Based on Host and scsi status generate status code for Linux
2340	 */
2341	switch (le16_to_cpu(comp_status)) {
2342	case CS_COMPLETE:
2343	case CS_QUEUE_FULL:
2344		if (scsi_status == 0) {
2345			res = DID_OK << 16;
2346			break;
2347		}
2348		if (scsi_status & cpu_to_le16(((uint16_t)SS_RESIDUAL_UNDER
2349		    | (uint16_t)SS_RESIDUAL_OVER))) {
2350			resid = resid_len;
2351			scsi_set_resid(cp, resid);
2352
2353			if (!lscsi_status &&
2354			    ((unsigned)(scsi_bufflen(cp) - resid) <
2355			     cp->underflow)) {
2356				ql_dbg(ql_dbg_io, fcport->vha, 0x3050,
2357				    "Mid-layer underflow "
2358				    "detected (0x%x of 0x%x bytes).\n",
2359				    resid, scsi_bufflen(cp));
2360
2361				res = DID_ERROR << 16;
2362				break;
2363			}
2364		}
2365		res = DID_OK << 16 | le16_to_cpu(lscsi_status);
2366
2367		if (lscsi_status ==
2368		    cpu_to_le16((uint16_t)SAM_STAT_TASK_SET_FULL)) {
2369			ql_dbg(ql_dbg_io, fcport->vha, 0x3051,
2370			    "QUEUE FULL detected.\n");
2371			break;
2372		}
2373		logit = 0;
2374		if (lscsi_status != cpu_to_le16((uint16_t)SS_CHECK_CONDITION))
2375			break;
2376
2377		memset(cp->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
2378		if (!(scsi_status & cpu_to_le16((uint16_t)SS_SENSE_LEN_VALID)))
2379			break;
2380
2381		qlafx00_handle_sense(sp, sense_data, par_sense_len, sense_len,
2382		    rsp, res);
2383		break;
2384
2385	case CS_DATA_UNDERRUN:
2386		/* Use F/W calculated residual length. */
2387		if (IS_FWI2_CAPABLE(ha) || IS_QLAFX00(ha))
2388			resid = fw_resid_len;
2389		else
2390			resid = resid_len;
2391		scsi_set_resid(cp, resid);
2392		if (scsi_status & cpu_to_le16((uint16_t)SS_RESIDUAL_UNDER)) {
2393			if ((IS_FWI2_CAPABLE(ha) || IS_QLAFX00(ha))
2394			    && fw_resid_len != resid_len) {
2395				ql_dbg(ql_dbg_io, fcport->vha, 0x3052,
2396				    "Dropped frame(s) detected "
2397				    "(0x%x of 0x%x bytes).\n",
2398				    resid, scsi_bufflen(cp));
2399
2400				res = DID_ERROR << 16 |
2401				    le16_to_cpu(lscsi_status);
2402				goto check_scsi_status;
2403			}
2404
2405			if (!lscsi_status &&
2406			    ((unsigned)(scsi_bufflen(cp) - resid) <
2407			    cp->underflow)) {
2408				ql_dbg(ql_dbg_io, fcport->vha, 0x3053,
2409				    "Mid-layer underflow "
2410				    "detected (0x%x of 0x%x bytes, "
2411				    "cp->underflow: 0x%x).\n",
2412				    resid, scsi_bufflen(cp), cp->underflow);
2413
2414				res = DID_ERROR << 16;
2415				break;
2416			}
2417		} else if (lscsi_status !=
2418		    cpu_to_le16((uint16_t)SAM_STAT_TASK_SET_FULL) &&
2419		    lscsi_status != cpu_to_le16((uint16_t)SAM_STAT_BUSY)) {
2420			/*
2421			 * scsi status of task set and busy are considered
2422			 * to be task not completed.
2423			 */
2424
2425			ql_dbg(ql_dbg_io, fcport->vha, 0x3054,
2426			    "Dropped frame(s) detected (0x%x "
2427			    "of 0x%x bytes).\n", resid,
2428			    scsi_bufflen(cp));
2429
2430			res = DID_ERROR << 16 | le16_to_cpu(lscsi_status);
2431			goto check_scsi_status;
2432		} else {
2433			ql_dbg(ql_dbg_io, fcport->vha, 0x3055,
2434			    "scsi_status: 0x%x, lscsi_status: 0x%x\n",
2435			    scsi_status, lscsi_status);
2436		}
2437
2438		res = DID_OK << 16 | le16_to_cpu(lscsi_status);
2439		logit = 0;
2440
2441check_scsi_status:
2442		/*
2443		 * Check to see if SCSI Status is non zero. If so report SCSI
2444		 * Status.
2445		 */
2446		if (lscsi_status != 0) {
2447			if (lscsi_status ==
2448			    cpu_to_le16((uint16_t)SAM_STAT_TASK_SET_FULL)) {
2449				ql_dbg(ql_dbg_io, fcport->vha, 0x3056,
2450				    "QUEUE FULL detected.\n");
2451				logit = 1;
2452				break;
2453			}
2454			if (lscsi_status !=
2455			    cpu_to_le16((uint16_t)SS_CHECK_CONDITION))
2456				break;
2457
2458			memset(cp->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
2459			if (!(scsi_status &
2460			    cpu_to_le16((uint16_t)SS_SENSE_LEN_VALID)))
2461				break;
2462
2463			qlafx00_handle_sense(sp, sense_data, par_sense_len,
2464			    sense_len, rsp, res);
2465		}
2466		break;
2467
2468	case CS_PORT_LOGGED_OUT:
2469	case CS_PORT_CONFIG_CHG:
2470	case CS_PORT_BUSY:
2471	case CS_INCOMPLETE:
2472	case CS_PORT_UNAVAILABLE:
2473	case CS_TIMEOUT:
2474	case CS_RESET:
2475
2476		/*
2477		 * We are going to have the fc class block the rport
2478		 * while we try to recover so instruct the mid layer
2479		 * to requeue until the class decides how to handle this.
2480		 */
2481		res = DID_TRANSPORT_DISRUPTED << 16;
2482
2483		ql_dbg(ql_dbg_io, fcport->vha, 0x3057,
2484		    "Port down status: port-state=0x%x.\n",
2485		    atomic_read(&fcport->state));
2486
2487		if (atomic_read(&fcport->state) == FCS_ONLINE)
2488			qla2x00_mark_device_lost(fcport->vha, fcport, 1);
2489		break;
2490
2491	case CS_ABORTED:
2492		res = DID_RESET << 16;
2493		break;
2494
2495	default:
2496		res = DID_ERROR << 16;
2497		break;
2498	}
2499
2500	if (logit)
2501		ql_dbg(ql_dbg_io, fcport->vha, 0x3058,
2502		    "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
2503		    "tgt_id: 0x%x lscsi_status: 0x%x cdb=%10phN len=0x%x "
2504		    "rsp_info=%p resid=0x%x fw_resid=0x%x sense_len=0x%x, "
2505		    "par_sense_len=0x%x, rsp_info_len=0x%x\n",
2506		    comp_status, scsi_status, res, vha->host_no,
2507		    cp->device->id, cp->device->lun, fcport->tgt_id,
2508		    lscsi_status, cp->cmnd, scsi_bufflen(cp),
2509		    rsp_info, resid_len, fw_resid_len, sense_len,
2510		    par_sense_len, rsp_info_len);
2511
2512	if (rsp->status_srb == NULL)
2513		sp->done(sp, res);
2514	else
2515		WARN_ON_ONCE(true);
2516}
2517
2518/**
2519 * qlafx00_status_cont_entry() - Process a Status Continuations entry.
2520 * @rsp: response queue
2521 * @pkt: Entry pointer
2522 *
2523 * Extended sense data.
2524 */
2525static void
2526qlafx00_status_cont_entry(struct rsp_que *rsp, sts_cont_entry_t *pkt)
2527{
2528	uint8_t	sense_sz = 0;
2529	struct qla_hw_data *ha = rsp->hw;
2530	struct scsi_qla_host *vha = pci_get_drvdata(ha->pdev);
2531	srb_t *sp = rsp->status_srb;
2532	struct scsi_cmnd *cp;
2533	uint32_t sense_len;
2534	uint8_t *sense_ptr;
2535
2536	if (!sp) {
2537		ql_dbg(ql_dbg_io, vha, 0x3037,
2538		    "no SP, sp = %p\n", sp);
2539		return;
2540	}
2541
2542	if (!GET_FW_SENSE_LEN(sp)) {
2543		ql_dbg(ql_dbg_io, vha, 0x304b,
2544		    "no fw sense data, sp = %p\n", sp);
2545		return;
2546	}
2547	cp = GET_CMD_SP(sp);
2548	if (cp == NULL) {
2549		ql_log(ql_log_warn, vha, 0x303b,
2550		    "cmd is NULL: already returned to OS (sp=%p).\n", sp);
2551
2552		rsp->status_srb = NULL;
2553		return;
2554	}
2555
2556	if (!GET_CMD_SENSE_LEN(sp)) {
2557		ql_dbg(ql_dbg_io, vha, 0x304c,
2558		    "no sense data, sp = %p\n", sp);
2559	} else {
2560		sense_len = GET_CMD_SENSE_LEN(sp);
2561		sense_ptr = GET_CMD_SENSE_PTR(sp);
2562		ql_dbg(ql_dbg_io, vha, 0x304f,
2563		    "sp=%p sense_len=0x%x sense_ptr=%p.\n",
2564		    sp, sense_len, sense_ptr);
2565
2566		if (sense_len > sizeof(pkt->data))
2567			sense_sz = sizeof(pkt->data);
2568		else
2569			sense_sz = sense_len;
2570
2571		/* Move sense data. */
2572		ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x304e,
2573		    pkt, sizeof(*pkt));
2574		memcpy(sense_ptr, pkt->data, sense_sz);
2575		ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x304a,
2576		    sense_ptr, sense_sz);
2577
2578		sense_len -= sense_sz;
2579		sense_ptr += sense_sz;
2580
2581		SET_CMD_SENSE_PTR(sp, sense_ptr);
2582		SET_CMD_SENSE_LEN(sp, sense_len);
2583	}
2584	sense_len = GET_FW_SENSE_LEN(sp);
2585	sense_len = (sense_len > sizeof(pkt->data)) ?
2586	    (sense_len - sizeof(pkt->data)) : 0;
2587	SET_FW_SENSE_LEN(sp, sense_len);
2588
2589	/* Place command on done queue. */
2590	if (sense_len == 0) {
2591		rsp->status_srb = NULL;
2592		sp->done(sp, cp->result);
2593	} else {
2594		WARN_ON_ONCE(true);
2595	}
2596}
2597
2598/**
2599 * qlafx00_multistatus_entry() - Process Multi response queue entries.
2600 * @vha: SCSI driver HA context
2601 * @rsp: response queue
2602 * @pkt: received packet
2603 */
2604static void
2605qlafx00_multistatus_entry(struct scsi_qla_host *vha,
2606	struct rsp_que *rsp, void *pkt)
2607{
2608	srb_t		*sp;
2609	struct multi_sts_entry_fx00 *stsmfx;
2610	struct qla_hw_data *ha = vha->hw;
2611	uint32_t handle, hindex, handle_count, i;
2612	uint16_t que;
2613	struct req_que *req;
2614	__le32 *handle_ptr;
2615
2616	stsmfx = (struct multi_sts_entry_fx00 *) pkt;
2617
2618	handle_count = stsmfx->handle_count;
2619
2620	if (handle_count > MAX_HANDLE_COUNT) {
2621		ql_dbg(ql_dbg_io, vha, 0x3035,
2622		    "Invalid handle count (0x%x).\n", handle_count);
2623		set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2624		qla2xxx_wake_dpc(vha);
2625		return;
2626	}
2627
2628	handle_ptr =  &stsmfx->handles[0];
2629
2630	for (i = 0; i < handle_count; i++) {
2631		hindex = le32_to_cpu(*handle_ptr);
2632		handle = LSW(hindex);
2633		que = MSW(hindex);
2634		req = ha->req_q_map[que];
2635
2636		/* Validate handle. */
2637		if (handle < req->num_outstanding_cmds)
2638			sp = req->outstanding_cmds[handle];
2639		else
2640			sp = NULL;
2641
2642		if (sp == NULL) {
2643			ql_dbg(ql_dbg_io, vha, 0x3044,
2644			    "Invalid status handle (0x%x).\n", handle);
2645			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2646			qla2xxx_wake_dpc(vha);
2647			return;
2648		}
2649		qla2x00_process_completed_request(vha, req, handle);
2650		handle_ptr++;
2651	}
2652}
2653
2654/**
2655 * qlafx00_error_entry() - Process an error entry.
2656 * @vha: SCSI driver HA context
2657 * @rsp: response queue
2658 * @pkt: Entry pointer
2659 */
2660static void
2661qlafx00_error_entry(scsi_qla_host_t *vha, struct rsp_que *rsp,
2662		    struct sts_entry_fx00 *pkt)
2663{
2664	srb_t *sp;
2665	struct qla_hw_data *ha = vha->hw;
2666	const char func[] = "ERROR-IOCB";
2667	uint16_t que = 0;
2668	struct req_que *req = NULL;
2669	int res = DID_ERROR << 16;
2670
2671	req = ha->req_q_map[que];
2672
2673	sp = qla2x00_get_sp_from_handle(vha, func, req, pkt);
2674	if (sp) {
2675		sp->done(sp, res);
2676		return;
2677	}
2678
2679	set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2680	qla2xxx_wake_dpc(vha);
2681}
2682
2683/**
2684 * qlafx00_process_response_queue() - Process response queue entries.
2685 * @vha: SCSI driver HA context
2686 * @rsp: response queue
2687 */
2688static void
2689qlafx00_process_response_queue(struct scsi_qla_host *vha,
2690	struct rsp_que *rsp)
2691{
2692	struct sts_entry_fx00 *pkt;
2693	response_t *lptr;
2694	uint16_t lreq_q_in = 0;
2695	uint16_t lreq_q_out = 0;
2696
2697	lreq_q_in = rd_reg_dword(rsp->rsp_q_in);
2698	lreq_q_out = rsp->ring_index;
2699
2700	while (lreq_q_in != lreq_q_out) {
2701		lptr = rsp->ring_ptr;
2702		memcpy_fromio(rsp->rsp_pkt, (void __iomem *)lptr,
2703		    sizeof(rsp->rsp_pkt));
2704		pkt = (struct sts_entry_fx00 *)rsp->rsp_pkt;
2705
2706		rsp->ring_index++;
2707		lreq_q_out++;
2708		if (rsp->ring_index == rsp->length) {
2709			lreq_q_out = 0;
2710			rsp->ring_index = 0;
2711			rsp->ring_ptr = rsp->ring;
2712		} else {
2713			rsp->ring_ptr++;
2714		}
2715
2716		if (pkt->entry_status != 0 &&
2717		    pkt->entry_type != IOCTL_IOSB_TYPE_FX00) {
2718			ql_dbg(ql_dbg_async, vha, 0x507f,
2719			       "type of error status in response: 0x%x\n",
2720			       pkt->entry_status);
2721			qlafx00_error_entry(vha, rsp,
2722					    (struct sts_entry_fx00 *)pkt);
2723			continue;
2724		}
2725
2726		switch (pkt->entry_type) {
2727		case STATUS_TYPE_FX00:
2728			qlafx00_status_entry(vha, rsp, pkt);
2729			break;
2730
2731		case STATUS_CONT_TYPE_FX00:
2732			qlafx00_status_cont_entry(rsp, (sts_cont_entry_t *)pkt);
2733			break;
2734
2735		case MULTI_STATUS_TYPE_FX00:
2736			qlafx00_multistatus_entry(vha, rsp, pkt);
2737			break;
2738
2739		case ABORT_IOCB_TYPE_FX00:
2740			qlafx00_abort_iocb_entry(vha, rsp->req,
2741			   (struct abort_iocb_entry_fx00 *)pkt);
2742			break;
2743
2744		case IOCTL_IOSB_TYPE_FX00:
2745			qlafx00_ioctl_iosb_entry(vha, rsp->req,
2746			    (struct ioctl_iocb_entry_fx00 *)pkt);
2747			break;
2748		default:
2749			/* Type Not Supported. */
2750			ql_dbg(ql_dbg_async, vha, 0x5081,
2751			    "Received unknown response pkt type %x "
2752			    "entry status=%x.\n",
2753			    pkt->entry_type, pkt->entry_status);
2754			break;
2755		}
2756	}
2757
2758	/* Adjust ring index */
2759	wrt_reg_dword(rsp->rsp_q_out, rsp->ring_index);
2760}
2761
2762/**
2763 * qlafx00_async_event() - Process aynchronous events.
2764 * @vha: SCSI driver HA context
2765 */
2766static void
2767qlafx00_async_event(scsi_qla_host_t *vha)
2768{
2769	struct qla_hw_data *ha = vha->hw;
2770	struct device_reg_fx00 __iomem *reg;
2771	int data_size = 1;
2772
2773	reg = &ha->iobase->ispfx00;
2774	/* Setup to process RIO completion. */
2775	switch (ha->aenmb[0]) {
2776	case QLAFX00_MBA_SYSTEM_ERR:		/* System Error */
2777		ql_log(ql_log_warn, vha, 0x5079,
2778		    "ISP System Error - mbx1=%x\n", ha->aenmb[0]);
2779		set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2780		break;
2781
2782	case QLAFX00_MBA_SHUTDOWN_RQSTD:	/* Shutdown requested */
2783		ql_dbg(ql_dbg_async, vha, 0x5076,
2784		    "Asynchronous FW shutdown requested.\n");
2785		set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2786		qla2xxx_wake_dpc(vha);
2787		break;
2788
2789	case QLAFX00_MBA_PORT_UPDATE:		/* Port database update */
2790		ha->aenmb[1] = rd_reg_dword(&reg->aenmailbox1);
2791		ha->aenmb[2] = rd_reg_dword(&reg->aenmailbox2);
2792		ha->aenmb[3] = rd_reg_dword(&reg->aenmailbox3);
2793		ql_dbg(ql_dbg_async, vha, 0x5077,
2794		    "Asynchronous port Update received "
2795		    "aenmb[0]: %x, aenmb[1]: %x, aenmb[2]: %x, aenmb[3]: %x\n",
2796		    ha->aenmb[0], ha->aenmb[1], ha->aenmb[2], ha->aenmb[3]);
2797		data_size = 4;
2798		break;
2799
2800	case QLAFX00_MBA_TEMP_OVER:	/* Over temperature event */
2801		ql_log(ql_log_info, vha, 0x5085,
2802		    "Asynchronous over temperature event received "
2803		    "aenmb[0]: %x\n",
2804		    ha->aenmb[0]);
2805		break;
2806
2807	case QLAFX00_MBA_TEMP_NORM:	/* Normal temperature event */
2808		ql_log(ql_log_info, vha, 0x5086,
2809		    "Asynchronous normal temperature event received "
2810		    "aenmb[0]: %x\n",
2811		    ha->aenmb[0]);
2812		break;
2813
2814	case QLAFX00_MBA_TEMP_CRIT:	/* Critical temperature event */
2815		ql_log(ql_log_info, vha, 0x5083,
2816		    "Asynchronous critical temperature event received "
2817		    "aenmb[0]: %x\n",
2818		ha->aenmb[0]);
2819		break;
2820
2821	default:
2822		ha->aenmb[1] = rd_reg_dword(&reg->aenmailbox1);
2823		ha->aenmb[2] = rd_reg_dword(&reg->aenmailbox2);
2824		ha->aenmb[3] = rd_reg_dword(&reg->aenmailbox3);
2825		ha->aenmb[4] = rd_reg_dword(&reg->aenmailbox4);
2826		ha->aenmb[5] = rd_reg_dword(&reg->aenmailbox5);
2827		ha->aenmb[6] = rd_reg_dword(&reg->aenmailbox6);
2828		ha->aenmb[7] = rd_reg_dword(&reg->aenmailbox7);
2829		ql_dbg(ql_dbg_async, vha, 0x5078,
2830		    "AEN:%04x %04x %04x %04x :%04x %04x %04x %04x\n",
2831		    ha->aenmb[0], ha->aenmb[1], ha->aenmb[2], ha->aenmb[3],
2832		    ha->aenmb[4], ha->aenmb[5], ha->aenmb[6], ha->aenmb[7]);
2833		break;
2834	}
2835	qlafx00_post_aenfx_work(vha, ha->aenmb[0],
2836	    (uint32_t *)ha->aenmb, data_size);
2837}
2838
2839/**
2840 * qlafx00x_mbx_completion() - Process mailbox command completions.
2841 * @vha: SCSI driver HA context
2842 * @mb0: value to be written into mailbox register 0
2843 */
2844static void
2845qlafx00_mbx_completion(scsi_qla_host_t *vha, uint32_t mb0)
2846{
2847	uint16_t	cnt;
2848	__le32 __iomem *wptr;
2849	struct qla_hw_data *ha = vha->hw;
2850	struct device_reg_fx00 __iomem *reg = &ha->iobase->ispfx00;
2851
2852	if (!ha->mcp32)
2853		ql_dbg(ql_dbg_async, vha, 0x507e, "MBX pointer ERROR.\n");
2854
2855	/* Load return mailbox registers. */
2856	ha->flags.mbox_int = 1;
2857	ha->mailbox_out32[0] = mb0;
2858	wptr = &reg->mailbox17;
2859
2860	for (cnt = 1; cnt < ha->mbx_count; cnt++) {
2861		ha->mailbox_out32[cnt] = rd_reg_dword(wptr);
2862		wptr++;
2863	}
2864}
2865
2866/**
2867 * qlafx00_intr_handler() - Process interrupts for the ISPFX00.
2868 * @irq: interrupt number
2869 * @dev_id: SCSI driver HA context
2870 *
2871 * Called by system whenever the host adapter generates an interrupt.
2872 *
2873 * Returns handled flag.
2874 */
2875irqreturn_t
2876qlafx00_intr_handler(int irq, void *dev_id)
2877{
2878	scsi_qla_host_t	*vha;
2879	struct qla_hw_data *ha;
2880	struct device_reg_fx00 __iomem *reg;
2881	int		status;
2882	unsigned long	iter;
2883	uint32_t	stat;
2884	uint32_t	mb[8];
2885	struct rsp_que *rsp;
2886	unsigned long	flags;
2887	uint32_t clr_intr = 0;
2888	uint32_t intr_stat = 0;
2889
2890	rsp = (struct rsp_que *) dev_id;
2891	if (!rsp) {
2892		ql_log(ql_log_info, NULL, 0x507d,
2893		    "%s: NULL response queue pointer.\n", __func__);
2894		return IRQ_NONE;
2895	}
2896
2897	ha = rsp->hw;
2898	reg = &ha->iobase->ispfx00;
2899	status = 0;
2900
2901	if (unlikely(pci_channel_offline(ha->pdev)))
2902		return IRQ_HANDLED;
2903
2904	spin_lock_irqsave(&ha->hardware_lock, flags);
2905	vha = pci_get_drvdata(ha->pdev);
2906	for (iter = 50; iter--; clr_intr = 0) {
2907		stat = QLAFX00_RD_INTR_REG(ha);
2908		if (qla2x00_check_reg32_for_disconnect(vha, stat))
2909			break;
2910		intr_stat = stat & QLAFX00_HST_INT_STS_BITS;
2911		if (!intr_stat)
2912			break;
2913
2914		if (stat & QLAFX00_INTR_MB_CMPLT) {
2915			mb[0] = rd_reg_dword(&reg->mailbox16);
2916			qlafx00_mbx_completion(vha, mb[0]);
2917			status |= MBX_INTERRUPT;
2918			clr_intr |= QLAFX00_INTR_MB_CMPLT;
2919		}
2920		if (intr_stat & QLAFX00_INTR_ASYNC_CMPLT) {
2921			ha->aenmb[0] = rd_reg_dword(&reg->aenmailbox0);
2922			qlafx00_async_event(vha);
2923			clr_intr |= QLAFX00_INTR_ASYNC_CMPLT;
2924		}
2925		if (intr_stat & QLAFX00_INTR_RSP_CMPLT) {
2926			qlafx00_process_response_queue(vha, rsp);
2927			clr_intr |= QLAFX00_INTR_RSP_CMPLT;
2928		}
2929
2930		QLAFX00_CLR_INTR_REG(ha, clr_intr);
2931		QLAFX00_RD_INTR_REG(ha);
2932	}
2933
2934	qla2x00_handle_mbx_completion(ha, status);
2935	spin_unlock_irqrestore(&ha->hardware_lock, flags);
2936
2937	return IRQ_HANDLED;
2938}
2939
2940/** QLAFX00 specific IOCB implementation functions */
2941
2942static inline cont_a64_entry_t *
2943qlafx00_prep_cont_type1_iocb(struct req_que *req,
2944			     cont_a64_entry_t *lcont_pkt)
2945{
2946	cont_a64_entry_t *cont_pkt;
2947
2948	/* Adjust ring index. */
2949	req->ring_index++;
2950	if (req->ring_index == req->length) {
2951		req->ring_index = 0;
2952		req->ring_ptr = req->ring;
2953	} else {
2954		req->ring_ptr++;
2955	}
2956
2957	cont_pkt = (cont_a64_entry_t *)req->ring_ptr;
2958
2959	/* Load packet defaults. */
2960	lcont_pkt->entry_type = CONTINUE_A64_TYPE_FX00;
2961
2962	return cont_pkt;
2963}
2964
2965static inline void
2966qlafx00_build_scsi_iocbs(srb_t *sp, struct cmd_type_7_fx00 *cmd_pkt,
2967			 uint16_t tot_dsds, struct cmd_type_7_fx00 *lcmd_pkt)
2968{
2969	uint16_t	avail_dsds;
2970	struct dsd64	*cur_dsd;
2971	scsi_qla_host_t	*vha;
2972	struct scsi_cmnd *cmd;
2973	struct scatterlist *sg;
2974	int i, cont;
2975	struct req_que *req;
2976	cont_a64_entry_t lcont_pkt;
2977	cont_a64_entry_t *cont_pkt;
2978
2979	vha = sp->vha;
2980	req = vha->req;
2981
2982	cmd = GET_CMD_SP(sp);
2983	cont = 0;
2984	cont_pkt = NULL;
2985
2986	/* Update entry type to indicate Command Type 3 IOCB */
2987	lcmd_pkt->entry_type = FX00_COMMAND_TYPE_7;
2988
2989	/* No data transfer */
2990	if (!scsi_bufflen(cmd) || cmd->sc_data_direction == DMA_NONE) {
2991		lcmd_pkt->byte_count = cpu_to_le32(0);
2992		return;
2993	}
2994
2995	/* Set transfer direction */
2996	if (cmd->sc_data_direction == DMA_TO_DEVICE) {
2997		lcmd_pkt->cntrl_flags = TMF_WRITE_DATA;
2998		vha->qla_stats.output_bytes += scsi_bufflen(cmd);
2999	} else if (cmd->sc_data_direction == DMA_FROM_DEVICE) {
3000		lcmd_pkt->cntrl_flags = TMF_READ_DATA;
3001		vha->qla_stats.input_bytes += scsi_bufflen(cmd);
3002	}
3003
3004	/* One DSD is available in the Command Type 3 IOCB */
3005	avail_dsds = 1;
3006	cur_dsd = &lcmd_pkt->dsd;
3007
3008	/* Load data segments */
3009	scsi_for_each_sg(cmd, sg, tot_dsds, i) {
3010		/* Allocate additional continuation packets? */
3011		if (avail_dsds == 0) {
3012			/*
3013			 * Five DSDs are available in the Continuation
3014			 * Type 1 IOCB.
3015			 */
3016			memset(&lcont_pkt, 0, REQUEST_ENTRY_SIZE);
3017			cont_pkt =
3018			    qlafx00_prep_cont_type1_iocb(req, &lcont_pkt);
3019			cur_dsd = lcont_pkt.dsd;
3020			avail_dsds = 5;
3021			cont = 1;
3022		}
3023
3024		append_dsd64(&cur_dsd, sg);
3025		avail_dsds--;
3026		if (avail_dsds == 0 && cont == 1) {
3027			cont = 0;
3028			memcpy_toio((void __iomem *)cont_pkt, &lcont_pkt,
3029			    sizeof(lcont_pkt));
3030		}
3031
3032	}
3033	if (avail_dsds != 0 && cont == 1) {
3034		memcpy_toio((void __iomem *)cont_pkt, &lcont_pkt,
3035		    sizeof(lcont_pkt));
3036	}
3037}
3038
3039/**
3040 * qlafx00_start_scsi() - Send a SCSI command to the ISP
3041 * @sp: command to send to the ISP
3042 *
3043 * Returns non-zero if a failure occurred, else zero.
3044 */
3045int
3046qlafx00_start_scsi(srb_t *sp)
3047{
3048	int		nseg;
3049	unsigned long   flags;
3050	uint32_t	handle;
3051	uint16_t	cnt;
3052	uint16_t	req_cnt;
3053	uint16_t	tot_dsds;
3054	struct req_que *req = NULL;
3055	struct rsp_que *rsp = NULL;
3056	struct scsi_cmnd *cmd = GET_CMD_SP(sp);
3057	struct scsi_qla_host *vha = sp->vha;
3058	struct qla_hw_data *ha = vha->hw;
3059	struct cmd_type_7_fx00 *cmd_pkt;
3060	struct cmd_type_7_fx00 lcmd_pkt;
3061	struct scsi_lun llun;
3062
3063	/* Setup device pointers. */
3064	rsp = ha->rsp_q_map[0];
3065	req = vha->req;
3066
3067	/* So we know we haven't pci_map'ed anything yet */
3068	tot_dsds = 0;
3069
3070	/* Acquire ring specific lock */
3071	spin_lock_irqsave(&ha->hardware_lock, flags);
3072
3073	handle = qla2xxx_get_next_handle(req);
3074	if (handle == 0)
3075		goto queuing_error;
3076
3077	/* Map the sg table so we have an accurate count of sg entries needed */
3078	if (scsi_sg_count(cmd)) {
3079		nseg = dma_map_sg(&ha->pdev->dev, scsi_sglist(cmd),
3080		    scsi_sg_count(cmd), cmd->sc_data_direction);
3081		if (unlikely(!nseg))
3082			goto queuing_error;
3083	} else
3084		nseg = 0;
3085
3086	tot_dsds = nseg;
3087	req_cnt = qla24xx_calc_iocbs(vha, tot_dsds);
3088	if (req->cnt < (req_cnt + 2)) {
3089		cnt = rd_reg_dword_relaxed(req->req_q_out);
3090
3091		if (req->ring_index < cnt)
3092			req->cnt = cnt - req->ring_index;
3093		else
3094			req->cnt = req->length -
3095				(req->ring_index - cnt);
3096		if (req->cnt < (req_cnt + 2))
3097			goto queuing_error;
3098	}
3099
3100	/* Build command packet. */
3101	req->current_outstanding_cmd = handle;
3102	req->outstanding_cmds[handle] = sp;
3103	sp->handle = handle;
3104	cmd->host_scribble = (unsigned char *)(unsigned long)handle;
3105	req->cnt -= req_cnt;
3106
3107	cmd_pkt = (struct cmd_type_7_fx00 *)req->ring_ptr;
3108
3109	memset(&lcmd_pkt, 0, REQUEST_ENTRY_SIZE);
3110
3111	lcmd_pkt.handle = make_handle(req->id, sp->handle);
3112	lcmd_pkt.reserved_0 = 0;
3113	lcmd_pkt.port_path_ctrl = 0;
3114	lcmd_pkt.reserved_1 = 0;
3115	lcmd_pkt.dseg_count = cpu_to_le16(tot_dsds);
3116	lcmd_pkt.tgt_idx = cpu_to_le16(sp->fcport->tgt_id);
3117
3118	int_to_scsilun(cmd->device->lun, &llun);
3119	host_to_adap((uint8_t *)&llun, (uint8_t *)&lcmd_pkt.lun,
3120	    sizeof(lcmd_pkt.lun));
3121
3122	/* Load SCSI command packet. */
3123	host_to_adap(cmd->cmnd, lcmd_pkt.fcp_cdb, sizeof(lcmd_pkt.fcp_cdb));
3124	lcmd_pkt.byte_count = cpu_to_le32((uint32_t)scsi_bufflen(cmd));
3125
3126	/* Build IOCB segments */
3127	qlafx00_build_scsi_iocbs(sp, cmd_pkt, tot_dsds, &lcmd_pkt);
3128
3129	/* Set total data segment count. */
3130	lcmd_pkt.entry_count = (uint8_t)req_cnt;
3131
3132	/* Specify response queue number where completion should happen */
3133	lcmd_pkt.entry_status = (uint8_t) rsp->id;
3134
3135	ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x302e,
3136	    cmd->cmnd, cmd->cmd_len);
3137	ql_dump_buffer(ql_dbg_io + ql_dbg_buffer, vha, 0x3032,
3138	    &lcmd_pkt, sizeof(lcmd_pkt));
3139
3140	memcpy_toio((void __iomem *)cmd_pkt, &lcmd_pkt, REQUEST_ENTRY_SIZE);
3141	wmb();
3142
3143	/* Adjust ring index. */
3144	req->ring_index++;
3145	if (req->ring_index == req->length) {
3146		req->ring_index = 0;
3147		req->ring_ptr = req->ring;
3148	} else
3149		req->ring_ptr++;
3150
3151	sp->flags |= SRB_DMA_VALID;
3152
3153	/* Set chip new ring index. */
3154	wrt_reg_dword(req->req_q_in, req->ring_index);
3155	QLAFX00_SET_HST_INTR(ha, ha->rqstq_intr_code);
3156
3157	spin_unlock_irqrestore(&ha->hardware_lock, flags);
3158	return QLA_SUCCESS;
3159
3160queuing_error:
3161	if (tot_dsds)
3162		scsi_dma_unmap(cmd);
3163
3164	spin_unlock_irqrestore(&ha->hardware_lock, flags);
3165
3166	return QLA_FUNCTION_FAILED;
3167}
3168
3169void
3170qlafx00_tm_iocb(srb_t *sp, struct tsk_mgmt_entry_fx00 *ptm_iocb)
3171{
3172	struct srb_iocb *fxio = &sp->u.iocb_cmd;
3173	scsi_qla_host_t *vha = sp->vha;
3174	struct req_que *req = vha->req;
3175	struct tsk_mgmt_entry_fx00 tm_iocb;
3176	struct scsi_lun llun;
3177
3178	memset(&tm_iocb, 0, sizeof(struct tsk_mgmt_entry_fx00));
3179	tm_iocb.entry_type = TSK_MGMT_IOCB_TYPE_FX00;
3180	tm_iocb.entry_count = 1;
3181	tm_iocb.handle = make_handle(req->id, sp->handle);
3182	tm_iocb.reserved_0 = 0;
3183	tm_iocb.tgt_id = cpu_to_le16(sp->fcport->tgt_id);
3184	tm_iocb.control_flags = cpu_to_le32(fxio->u.tmf.flags);
3185	if (tm_iocb.control_flags == cpu_to_le32((uint32_t)TCF_LUN_RESET)) {
3186		int_to_scsilun(fxio->u.tmf.lun, &llun);
3187		host_to_adap((uint8_t *)&llun, (uint8_t *)&tm_iocb.lun,
3188		    sizeof(struct scsi_lun));
3189	}
3190
3191	memcpy(ptm_iocb, &tm_iocb,
3192	    sizeof(struct tsk_mgmt_entry_fx00));
3193	wmb();
3194}
3195
3196void
3197qlafx00_abort_iocb(srb_t *sp, struct abort_iocb_entry_fx00 *pabt_iocb)
3198{
3199	struct srb_iocb *fxio = &sp->u.iocb_cmd;
3200	scsi_qla_host_t *vha = sp->vha;
3201	struct req_que *req = vha->req;
3202	struct abort_iocb_entry_fx00 abt_iocb;
3203
3204	memset(&abt_iocb, 0, sizeof(struct abort_iocb_entry_fx00));
3205	abt_iocb.entry_type = ABORT_IOCB_TYPE_FX00;
3206	abt_iocb.entry_count = 1;
3207	abt_iocb.handle = make_handle(req->id, sp->handle);
3208	abt_iocb.abort_handle = make_handle(req->id, fxio->u.abt.cmd_hndl);
3209	abt_iocb.tgt_id_sts = cpu_to_le16(sp->fcport->tgt_id);
3210	abt_iocb.req_que_no = cpu_to_le16(req->id);
3211
3212	memcpy(pabt_iocb, &abt_iocb,
3213	    sizeof(struct abort_iocb_entry_fx00));
3214	wmb();
3215}
3216
3217void
3218qlafx00_fxdisc_iocb(srb_t *sp, struct fxdisc_entry_fx00 *pfxiocb)
3219{
3220	struct srb_iocb *fxio = &sp->u.iocb_cmd;
3221	struct qla_mt_iocb_rqst_fx00 *piocb_rqst;
3222	struct bsg_job *bsg_job;
3223	struct fc_bsg_request *bsg_request;
3224	struct fxdisc_entry_fx00 fx_iocb;
3225	uint8_t entry_cnt = 1;
3226
3227	memset(&fx_iocb, 0, sizeof(struct fxdisc_entry_fx00));
3228	fx_iocb.entry_type = FX00_IOCB_TYPE;
3229	fx_iocb.handle = sp->handle;
3230	fx_iocb.entry_count = entry_cnt;
3231
3232	if (sp->type == SRB_FXIOCB_DCMD) {
3233		fx_iocb.func_num =
3234		    sp->u.iocb_cmd.u.fxiocb.req_func_type;
3235		fx_iocb.adapid = fxio->u.fxiocb.adapter_id;
3236		fx_iocb.adapid_hi = fxio->u.fxiocb.adapter_id_hi;
3237		fx_iocb.reserved_0 = fxio->u.fxiocb.reserved_0;
3238		fx_iocb.reserved_1 = fxio->u.fxiocb.reserved_1;
3239		fx_iocb.dataword_extra = fxio->u.fxiocb.req_data_extra;
3240
3241		if (fxio->u.fxiocb.flags & SRB_FXDISC_REQ_DMA_VALID) {
3242			fx_iocb.req_dsdcnt = cpu_to_le16(1);
3243			fx_iocb.req_xfrcnt =
3244			    cpu_to_le16(fxio->u.fxiocb.req_len);
3245			put_unaligned_le64(fxio->u.fxiocb.req_dma_handle,
3246					   &fx_iocb.dseg_rq.address);
3247			fx_iocb.dseg_rq.length =
3248			    cpu_to_le32(fxio->u.fxiocb.req_len);
3249		}
3250
3251		if (fxio->u.fxiocb.flags & SRB_FXDISC_RESP_DMA_VALID) {
3252			fx_iocb.rsp_dsdcnt = cpu_to_le16(1);
3253			fx_iocb.rsp_xfrcnt =
3254			    cpu_to_le16(fxio->u.fxiocb.rsp_len);
3255			put_unaligned_le64(fxio->u.fxiocb.rsp_dma_handle,
3256					   &fx_iocb.dseg_rsp.address);
3257			fx_iocb.dseg_rsp.length =
3258			    cpu_to_le32(fxio->u.fxiocb.rsp_len);
3259		}
3260
3261		if (fxio->u.fxiocb.flags & SRB_FXDISC_REQ_DWRD_VALID) {
3262			fx_iocb.dataword = fxio->u.fxiocb.req_data;
3263		}
3264		fx_iocb.flags = fxio->u.fxiocb.flags;
3265	} else {
3266		struct scatterlist *sg;
3267
3268		bsg_job = sp->u.bsg_job;
3269		bsg_request = bsg_job->request;
3270		piocb_rqst = (struct qla_mt_iocb_rqst_fx00 *)
3271			&bsg_request->rqst_data.h_vendor.vendor_cmd[1];
3272
3273		fx_iocb.func_num = piocb_rqst->func_type;
3274		fx_iocb.adapid = piocb_rqst->adapid;
3275		fx_iocb.adapid_hi = piocb_rqst->adapid_hi;
3276		fx_iocb.reserved_0 = piocb_rqst->reserved_0;
3277		fx_iocb.reserved_1 = piocb_rqst->reserved_1;
3278		fx_iocb.dataword_extra = piocb_rqst->dataword_extra;
3279		fx_iocb.dataword = piocb_rqst->dataword;
3280		fx_iocb.req_xfrcnt = piocb_rqst->req_len;
3281		fx_iocb.rsp_xfrcnt = piocb_rqst->rsp_len;
3282
3283		if (piocb_rqst->flags & SRB_FXDISC_REQ_DMA_VALID) {
3284			int avail_dsds, tot_dsds;
3285			cont_a64_entry_t lcont_pkt;
3286			cont_a64_entry_t *cont_pkt = NULL;
3287			struct dsd64 *cur_dsd;
3288			int index = 0, cont = 0;
3289
3290			fx_iocb.req_dsdcnt =
3291			    cpu_to_le16(bsg_job->request_payload.sg_cnt);
3292			tot_dsds =
3293			    bsg_job->request_payload.sg_cnt;
3294			cur_dsd = &fx_iocb.dseg_rq;
3295			avail_dsds = 1;
3296			for_each_sg(bsg_job->request_payload.sg_list, sg,
3297			    tot_dsds, index) {
3298				/* Allocate additional continuation packets? */
3299				if (avail_dsds == 0) {
3300					/*
3301					 * Five DSDs are available in the Cont.
3302					 * Type 1 IOCB.
3303					 */
3304					memset(&lcont_pkt, 0,
3305					    REQUEST_ENTRY_SIZE);
3306					cont_pkt =
3307					    qlafx00_prep_cont_type1_iocb(
3308						sp->vha->req, &lcont_pkt);
3309					cur_dsd = lcont_pkt.dsd;
3310					avail_dsds = 5;
3311					cont = 1;
3312					entry_cnt++;
3313				}
3314
3315				append_dsd64(&cur_dsd, sg);
3316				avail_dsds--;
3317
3318				if (avail_dsds == 0 && cont == 1) {
3319					cont = 0;
3320					memcpy_toio(
3321					    (void __iomem *)cont_pkt,
3322					    &lcont_pkt, REQUEST_ENTRY_SIZE);
3323					ql_dump_buffer(
3324					    ql_dbg_user + ql_dbg_verbose,
3325					    sp->vha, 0x3042,
3326					    (uint8_t *)&lcont_pkt,
3327					     REQUEST_ENTRY_SIZE);
3328				}
3329			}
3330			if (avail_dsds != 0 && cont == 1) {
3331				memcpy_toio((void __iomem *)cont_pkt,
3332				    &lcont_pkt, REQUEST_ENTRY_SIZE);
3333				ql_dump_buffer(ql_dbg_user + ql_dbg_verbose,
3334				    sp->vha, 0x3043,
3335				    (uint8_t *)&lcont_pkt, REQUEST_ENTRY_SIZE);
3336			}
3337		}
3338
3339		if (piocb_rqst->flags & SRB_FXDISC_RESP_DMA_VALID) {
3340			int avail_dsds, tot_dsds;
3341			cont_a64_entry_t lcont_pkt;
3342			cont_a64_entry_t *cont_pkt = NULL;
3343			struct dsd64 *cur_dsd;
3344			int index = 0, cont = 0;
3345
3346			fx_iocb.rsp_dsdcnt =
3347			   cpu_to_le16(bsg_job->reply_payload.sg_cnt);
3348			tot_dsds = bsg_job->reply_payload.sg_cnt;
3349			cur_dsd = &fx_iocb.dseg_rsp;
3350			avail_dsds = 1;
3351
3352			for_each_sg(bsg_job->reply_payload.sg_list, sg,
3353			    tot_dsds, index) {
3354				/* Allocate additional continuation packets? */
3355				if (avail_dsds == 0) {
3356					/*
3357					* Five DSDs are available in the Cont.
3358					* Type 1 IOCB.
3359					*/
3360					memset(&lcont_pkt, 0,
3361					    REQUEST_ENTRY_SIZE);
3362					cont_pkt =
3363					    qlafx00_prep_cont_type1_iocb(
3364						sp->vha->req, &lcont_pkt);
3365					cur_dsd = lcont_pkt.dsd;
3366					avail_dsds = 5;
3367					cont = 1;
3368					entry_cnt++;
3369				}
3370
3371				append_dsd64(&cur_dsd, sg);
3372				avail_dsds--;
3373
3374				if (avail_dsds == 0 && cont == 1) {
3375					cont = 0;
3376					memcpy_toio((void __iomem *)cont_pkt,
3377					    &lcont_pkt,
3378					    REQUEST_ENTRY_SIZE);
3379					ql_dump_buffer(
3380					    ql_dbg_user + ql_dbg_verbose,
3381					    sp->vha, 0x3045,
3382					    (uint8_t *)&lcont_pkt,
3383					    REQUEST_ENTRY_SIZE);
3384				}
3385			}
3386			if (avail_dsds != 0 && cont == 1) {
3387				memcpy_toio((void __iomem *)cont_pkt,
3388				    &lcont_pkt, REQUEST_ENTRY_SIZE);
3389				ql_dump_buffer(ql_dbg_user + ql_dbg_verbose,
3390				    sp->vha, 0x3046,
3391				    (uint8_t *)&lcont_pkt, REQUEST_ENTRY_SIZE);
3392			}
3393		}
3394
3395		if (piocb_rqst->flags & SRB_FXDISC_REQ_DWRD_VALID)
3396			fx_iocb.dataword = piocb_rqst->dataword;
3397		fx_iocb.flags = piocb_rqst->flags;
3398		fx_iocb.entry_count = entry_cnt;
3399	}
3400
3401	ql_dump_buffer(ql_dbg_user + ql_dbg_verbose,
3402	    sp->vha, 0x3047, &fx_iocb, sizeof(fx_iocb));
3403
3404	memcpy_toio((void __iomem *)pfxiocb, &fx_iocb, sizeof(fx_iocb));
3405	wmb();
3406}
3407