2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
8 #include "qla_target.h"
10 #include <linux/delay.h>
11 #include <linux/slab.h>
12 #include <linux/cpu.h>
13 #include <linux/t10-pi.h>
14 #include <scsi/scsi_tcq.h>
15 #include <scsi/scsi_bsg_fc.h>
16 #include <scsi/scsi_eh.h>
17 #include <scsi/fc/fc_fs.h>
18 #include <linux/nvme-fc-driver.h>
20 static void qla2x00_mbx_completion(scsi_qla_host_t
*, uint16_t);
21 static void qla2x00_status_entry(scsi_qla_host_t
*, struct rsp_que
*, void *);
22 static void qla2x00_status_cont_entry(struct rsp_que
*, sts_cont_entry_t
*);
23 static int qla2x00_error_entry(scsi_qla_host_t
*, struct rsp_que
*,
27 * qla2100_intr_handler() - Process interrupts for the ISP2100 and ISP2200.
28 * @irq: interrupt number
29 * @dev_id: SCSI driver HA context
31 * Called by system whenever the host adapter generates an interrupt.
33 * Returns handled flag.
36 qla2100_intr_handler(int irq
, void *dev_id
)
39 struct qla_hw_data
*ha
;
40 struct device_reg_2xxx __iomem
*reg
;
48 rsp
= (struct rsp_que
*) dev_id
;
50 ql_log(ql_log_info
, NULL
, 0x505d,
51 "%s: NULL response queue pointer.\n", __func__
);
56 reg
= &ha
->iobase
->isp
;
59 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
60 vha
= pci_get_drvdata(ha
->pdev
);
61 for (iter
= 50; iter
--; ) {
62 hccr
= RD_REG_WORD(®
->hccr
);
63 if (qla2x00_check_reg16_for_disconnect(vha
, hccr
))
65 if (hccr
& HCCR_RISC_PAUSE
) {
66 if (pci_channel_offline(ha
->pdev
))
70 * Issue a "HARD" reset in order for the RISC interrupt
71 * bit to be cleared. Schedule a big hammer to get
72 * out of the RISC PAUSED state.
74 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
75 RD_REG_WORD(®
->hccr
);
77 ha
->isp_ops
->fw_dump(vha
, 1);
78 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
80 } else if ((RD_REG_WORD(®
->istatus
) & ISR_RISC_INT
) == 0)
83 if (RD_REG_WORD(®
->semaphore
) & BIT_0
) {
84 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
85 RD_REG_WORD(®
->hccr
);
87 /* Get mailbox data. */
88 mb
[0] = RD_MAILBOX_REG(ha
, reg
, 0);
89 if (mb
[0] > 0x3fff && mb
[0] < 0x8000) {
90 qla2x00_mbx_completion(vha
, mb
[0]);
91 status
|= MBX_INTERRUPT
;
92 } else if (mb
[0] > 0x7fff && mb
[0] < 0xc000) {
93 mb
[1] = RD_MAILBOX_REG(ha
, reg
, 1);
94 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
95 mb
[3] = RD_MAILBOX_REG(ha
, reg
, 3);
96 qla2x00_async_event(vha
, rsp
, mb
);
99 ql_dbg(ql_dbg_async
, vha
, 0x5025,
100 "Unrecognized interrupt type (%d).\n",
103 /* Release mailbox registers. */
104 WRT_REG_WORD(®
->semaphore
, 0);
105 RD_REG_WORD(®
->semaphore
);
107 qla2x00_process_response_queue(rsp
);
109 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
110 RD_REG_WORD(®
->hccr
);
113 qla2x00_handle_mbx_completion(ha
, status
);
114 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
116 return (IRQ_HANDLED
);
120 qla2x00_check_reg32_for_disconnect(scsi_qla_host_t
*vha
, uint32_t reg
)
122 /* Check for PCI disconnection */
123 if (reg
== 0xffffffff && !pci_channel_offline(vha
->hw
->pdev
)) {
124 if (!test_and_set_bit(PFLG_DISCONNECTED
, &vha
->pci_flags
) &&
125 !test_bit(PFLG_DRIVER_REMOVING
, &vha
->pci_flags
) &&
126 !test_bit(PFLG_DRIVER_PROBING
, &vha
->pci_flags
)) {
128 * Schedule this (only once) on the default system
129 * workqueue so that all the adapter workqueues and the
130 * DPC thread can be shutdown cleanly.
132 schedule_work(&vha
->hw
->board_disable
);
140 qla2x00_check_reg16_for_disconnect(scsi_qla_host_t
*vha
, uint16_t reg
)
142 return qla2x00_check_reg32_for_disconnect(vha
, 0xffff0000 | reg
);
146 * qla2300_intr_handler() - Process interrupts for the ISP23xx and ISP63xx.
147 * @irq: interrupt number
148 * @dev_id: SCSI driver HA context
150 * Called by system whenever the host adapter generates an interrupt.
152 * Returns handled flag.
155 qla2300_intr_handler(int irq
, void *dev_id
)
157 scsi_qla_host_t
*vha
;
158 struct device_reg_2xxx __iomem
*reg
;
165 struct qla_hw_data
*ha
;
168 rsp
= (struct rsp_que
*) dev_id
;
170 ql_log(ql_log_info
, NULL
, 0x5058,
171 "%s: NULL response queue pointer.\n", __func__
);
176 reg
= &ha
->iobase
->isp
;
179 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
180 vha
= pci_get_drvdata(ha
->pdev
);
181 for (iter
= 50; iter
--; ) {
182 stat
= RD_REG_DWORD(®
->u
.isp2300
.host_status
);
183 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
185 if (stat
& HSR_RISC_PAUSED
) {
186 if (unlikely(pci_channel_offline(ha
->pdev
)))
189 hccr
= RD_REG_WORD(®
->hccr
);
191 if (hccr
& (BIT_15
| BIT_13
| BIT_11
| BIT_8
))
192 ql_log(ql_log_warn
, vha
, 0x5026,
193 "Parity error -- HCCR=%x, Dumping "
194 "firmware.\n", hccr
);
196 ql_log(ql_log_warn
, vha
, 0x5027,
197 "RISC paused -- HCCR=%x, Dumping "
198 "firmware.\n", hccr
);
201 * Issue a "HARD" reset in order for the RISC
202 * interrupt bit to be cleared. Schedule a big
203 * hammer to get out of the RISC PAUSED state.
205 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
206 RD_REG_WORD(®
->hccr
);
208 ha
->isp_ops
->fw_dump(vha
, 1);
209 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
211 } else if ((stat
& HSR_RISC_INT
) == 0)
214 switch (stat
& 0xff) {
219 qla2x00_mbx_completion(vha
, MSW(stat
));
220 status
|= MBX_INTERRUPT
;
222 /* Release mailbox registers. */
223 WRT_REG_WORD(®
->semaphore
, 0);
227 mb
[1] = RD_MAILBOX_REG(ha
, reg
, 1);
228 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
229 mb
[3] = RD_MAILBOX_REG(ha
, reg
, 3);
230 qla2x00_async_event(vha
, rsp
, mb
);
233 qla2x00_process_response_queue(rsp
);
236 mb
[0] = MBA_CMPLT_1_16BIT
;
238 qla2x00_async_event(vha
, rsp
, mb
);
241 mb
[0] = MBA_SCSI_COMPLETION
;
243 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
244 qla2x00_async_event(vha
, rsp
, mb
);
247 ql_dbg(ql_dbg_async
, vha
, 0x5028,
248 "Unrecognized interrupt type (%d).\n", stat
& 0xff);
251 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
252 RD_REG_WORD_RELAXED(®
->hccr
);
254 qla2x00_handle_mbx_completion(ha
, status
);
255 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
257 return (IRQ_HANDLED
);
261 * qla2x00_mbx_completion() - Process mailbox command completions.
262 * @vha: SCSI driver HA context
263 * @mb0: Mailbox0 register
266 qla2x00_mbx_completion(scsi_qla_host_t
*vha
, uint16_t mb0
)
270 uint16_t __iomem
*wptr
;
271 struct qla_hw_data
*ha
= vha
->hw
;
272 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
274 /* Read all mbox registers? */
275 WARN_ON_ONCE(ha
->mbx_count
> 32);
276 mboxes
= (1ULL << ha
->mbx_count
) - 1;
278 ql_dbg(ql_dbg_async
, vha
, 0x5001, "MBX pointer ERROR.\n");
280 mboxes
= ha
->mcp
->in_mb
;
282 /* Load return mailbox registers. */
283 ha
->flags
.mbox_int
= 1;
284 ha
->mailbox_out
[0] = mb0
;
286 wptr
= (uint16_t __iomem
*)MAILBOX_REG(ha
, reg
, 1);
288 for (cnt
= 1; cnt
< ha
->mbx_count
; cnt
++) {
289 if (IS_QLA2200(ha
) && cnt
== 8)
290 wptr
= (uint16_t __iomem
*)MAILBOX_REG(ha
, reg
, 8);
291 if ((cnt
== 4 || cnt
== 5) && (mboxes
& BIT_0
))
292 ha
->mailbox_out
[cnt
] = qla2x00_debounce_register(wptr
);
293 else if (mboxes
& BIT_0
)
294 ha
->mailbox_out
[cnt
] = RD_REG_WORD(wptr
);
302 qla81xx_idc_event(scsi_qla_host_t
*vha
, uint16_t aen
, uint16_t descr
)
304 static char *event
[] =
305 { "Complete", "Request Notification", "Time Extension" };
307 struct device_reg_24xx __iomem
*reg24
= &vha
->hw
->iobase
->isp24
;
308 struct device_reg_82xx __iomem
*reg82
= &vha
->hw
->iobase
->isp82
;
309 uint16_t __iomem
*wptr
;
310 uint16_t cnt
, timeout
, mb
[QLA_IDC_ACK_REGS
];
312 /* Seed data -- mailbox1 -> mailbox7. */
313 if (IS_QLA81XX(vha
->hw
) || IS_QLA83XX(vha
->hw
))
314 wptr
= (uint16_t __iomem
*)®24
->mailbox1
;
315 else if (IS_QLA8044(vha
->hw
))
316 wptr
= (uint16_t __iomem
*)®82
->mailbox_out
[1];
320 for (cnt
= 0; cnt
< QLA_IDC_ACK_REGS
; cnt
++, wptr
++)
321 mb
[cnt
] = RD_REG_WORD(wptr
);
323 ql_dbg(ql_dbg_async
, vha
, 0x5021,
324 "Inter-Driver Communication %s -- "
325 "%04x %04x %04x %04x %04x %04x %04x.\n",
326 event
[aen
& 0xff], mb
[0], mb
[1], mb
[2], mb
[3],
327 mb
[4], mb
[5], mb
[6]);
329 /* Handle IDC Error completion case. */
330 case MBA_IDC_COMPLETE
:
332 vha
->hw
->flags
.idc_compl_status
= 1;
333 if (vha
->hw
->notify_dcbx_comp
&& !vha
->vp_idx
)
334 complete(&vha
->hw
->dcbx_comp
);
339 /* Acknowledgement needed? [Notify && non-zero timeout]. */
340 timeout
= (descr
>> 8) & 0xf;
341 ql_dbg(ql_dbg_async
, vha
, 0x5022,
342 "%lu Inter-Driver Communication %s -- ACK timeout=%d.\n",
343 vha
->host_no
, event
[aen
& 0xff], timeout
);
347 rval
= qla2x00_post_idc_ack_work(vha
, mb
);
348 if (rval
!= QLA_SUCCESS
)
349 ql_log(ql_log_warn
, vha
, 0x5023,
350 "IDC failed to post ACK.\n");
352 case MBA_IDC_TIME_EXT
:
353 vha
->hw
->idc_extend_tmo
= descr
;
354 ql_dbg(ql_dbg_async
, vha
, 0x5087,
355 "%lu Inter-Driver Communication %s -- "
356 "Extend timeout by=%d.\n",
357 vha
->host_no
, event
[aen
& 0xff], vha
->hw
->idc_extend_tmo
);
364 qla2x00_get_link_speed_str(struct qla_hw_data
*ha
, uint16_t speed
)
366 static const char *const link_speeds
[] = {
367 "1", "2", "?", "4", "8", "16", "32", "10"
369 #define QLA_LAST_SPEED 7
371 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
372 return link_speeds
[0];
373 else if (speed
== 0x13)
374 return link_speeds
[QLA_LAST_SPEED
];
375 else if (speed
< QLA_LAST_SPEED
)
376 return link_speeds
[speed
];
378 return link_speeds
[LS_UNKNOWN
];
382 qla83xx_handle_8200_aen(scsi_qla_host_t
*vha
, uint16_t *mb
)
384 struct qla_hw_data
*ha
= vha
->hw
;
387 * 8200 AEN Interpretation:
389 * mb[1] = AEN Reason code
390 * mb[2] = LSW of Peg-Halt Status-1 Register
391 * mb[6] = MSW of Peg-Halt Status-1 Register
392 * mb[3] = LSW of Peg-Halt Status-2 register
393 * mb[7] = MSW of Peg-Halt Status-2 register
394 * mb[4] = IDC Device-State Register value
395 * mb[5] = IDC Driver-Presence Register value
397 ql_dbg(ql_dbg_async
, vha
, 0x506b, "AEN Code: mb[0] = 0x%x AEN reason: "
398 "mb[1] = 0x%x PH-status1: mb[2] = 0x%x PH-status1: mb[6] = 0x%x.\n",
399 mb
[0], mb
[1], mb
[2], mb
[6]);
400 ql_dbg(ql_dbg_async
, vha
, 0x506c, "PH-status2: mb[3] = 0x%x "
401 "PH-status2: mb[7] = 0x%x Device-State: mb[4] = 0x%x "
402 "Drv-Presence: mb[5] = 0x%x.\n", mb
[3], mb
[7], mb
[4], mb
[5]);
404 if (mb
[1] & (IDC_PEG_HALT_STATUS_CHANGE
| IDC_NIC_FW_REPORTED_FAILURE
|
405 IDC_HEARTBEAT_FAILURE
)) {
406 ha
->flags
.nic_core_hung
= 1;
407 ql_log(ql_log_warn
, vha
, 0x5060,
408 "83XX: F/W Error Reported: Check if reset required.\n");
410 if (mb
[1] & IDC_PEG_HALT_STATUS_CHANGE
) {
411 uint32_t protocol_engine_id
, fw_err_code
, err_level
;
414 * IDC_PEG_HALT_STATUS_CHANGE interpretation:
415 * - PEG-Halt Status-1 Register:
416 * (LSW = mb[2], MSW = mb[6])
417 * Bits 0-7 = protocol-engine ID
418 * Bits 8-28 = f/w error code
419 * Bits 29-31 = Error-level
420 * Error-level 0x1 = Non-Fatal error
421 * Error-level 0x2 = Recoverable Fatal error
422 * Error-level 0x4 = UnRecoverable Fatal error
423 * - PEG-Halt Status-2 Register:
424 * (LSW = mb[3], MSW = mb[7])
426 protocol_engine_id
= (mb
[2] & 0xff);
427 fw_err_code
= (((mb
[2] & 0xff00) >> 8) |
428 ((mb
[6] & 0x1fff) << 8));
429 err_level
= ((mb
[6] & 0xe000) >> 13);
430 ql_log(ql_log_warn
, vha
, 0x5061, "PegHalt Status-1 "
431 "Register: protocol_engine_id=0x%x "
432 "fw_err_code=0x%x err_level=0x%x.\n",
433 protocol_engine_id
, fw_err_code
, err_level
);
434 ql_log(ql_log_warn
, vha
, 0x5062, "PegHalt Status-2 "
435 "Register: 0x%x%x.\n", mb
[7], mb
[3]);
436 if (err_level
== ERR_LEVEL_NON_FATAL
) {
437 ql_log(ql_log_warn
, vha
, 0x5063,
438 "Not a fatal error, f/w has recovered itself.\n");
439 } else if (err_level
== ERR_LEVEL_RECOVERABLE_FATAL
) {
440 ql_log(ql_log_fatal
, vha
, 0x5064,
441 "Recoverable Fatal error: Chip reset "
443 qla83xx_schedule_work(vha
,
444 QLA83XX_NIC_CORE_RESET
);
445 } else if (err_level
== ERR_LEVEL_UNRECOVERABLE_FATAL
) {
446 ql_log(ql_log_fatal
, vha
, 0x5065,
447 "Unrecoverable Fatal error: Set FAILED "
448 "state, reboot required.\n");
449 qla83xx_schedule_work(vha
,
450 QLA83XX_NIC_CORE_UNRECOVERABLE
);
454 if (mb
[1] & IDC_NIC_FW_REPORTED_FAILURE
) {
455 uint16_t peg_fw_state
, nw_interface_link_up
;
456 uint16_t nw_interface_signal_detect
, sfp_status
;
457 uint16_t htbt_counter
, htbt_monitor_enable
;
458 uint16_t sfp_additional_info
, sfp_multirate
;
459 uint16_t sfp_tx_fault
, link_speed
, dcbx_status
;
462 * IDC_NIC_FW_REPORTED_FAILURE interpretation:
463 * - PEG-to-FC Status Register:
464 * (LSW = mb[2], MSW = mb[6])
465 * Bits 0-7 = Peg-Firmware state
466 * Bit 8 = N/W Interface Link-up
467 * Bit 9 = N/W Interface signal detected
468 * Bits 10-11 = SFP Status
469 * SFP Status 0x0 = SFP+ transceiver not expected
470 * SFP Status 0x1 = SFP+ transceiver not present
471 * SFP Status 0x2 = SFP+ transceiver invalid
472 * SFP Status 0x3 = SFP+ transceiver present and
474 * Bits 12-14 = Heartbeat Counter
475 * Bit 15 = Heartbeat Monitor Enable
476 * Bits 16-17 = SFP Additional Info
477 * SFP info 0x0 = Unregocnized transceiver for
479 * SFP info 0x1 = SFP+ brand validation failed
480 * SFP info 0x2 = SFP+ speed validation failed
481 * SFP info 0x3 = SFP+ access error
482 * Bit 18 = SFP Multirate
483 * Bit 19 = SFP Tx Fault
484 * Bits 20-22 = Link Speed
485 * Bits 23-27 = Reserved
486 * Bits 28-30 = DCBX Status
487 * DCBX Status 0x0 = DCBX Disabled
488 * DCBX Status 0x1 = DCBX Enabled
489 * DCBX Status 0x2 = DCBX Exchange error
492 peg_fw_state
= (mb
[2] & 0x00ff);
493 nw_interface_link_up
= ((mb
[2] & 0x0100) >> 8);
494 nw_interface_signal_detect
= ((mb
[2] & 0x0200) >> 9);
495 sfp_status
= ((mb
[2] & 0x0c00) >> 10);
496 htbt_counter
= ((mb
[2] & 0x7000) >> 12);
497 htbt_monitor_enable
= ((mb
[2] & 0x8000) >> 15);
498 sfp_additional_info
= (mb
[6] & 0x0003);
499 sfp_multirate
= ((mb
[6] & 0x0004) >> 2);
500 sfp_tx_fault
= ((mb
[6] & 0x0008) >> 3);
501 link_speed
= ((mb
[6] & 0x0070) >> 4);
502 dcbx_status
= ((mb
[6] & 0x7000) >> 12);
504 ql_log(ql_log_warn
, vha
, 0x5066,
505 "Peg-to-Fc Status Register:\n"
506 "peg_fw_state=0x%x, nw_interface_link_up=0x%x, "
507 "nw_interface_signal_detect=0x%x"
508 "\nsfp_statis=0x%x.\n ", peg_fw_state
,
509 nw_interface_link_up
, nw_interface_signal_detect
,
511 ql_log(ql_log_warn
, vha
, 0x5067,
512 "htbt_counter=0x%x, htbt_monitor_enable=0x%x, "
513 "sfp_additional_info=0x%x, sfp_multirate=0x%x.\n ",
514 htbt_counter
, htbt_monitor_enable
,
515 sfp_additional_info
, sfp_multirate
);
516 ql_log(ql_log_warn
, vha
, 0x5068,
517 "sfp_tx_fault=0x%x, link_state=0x%x, "
518 "dcbx_status=0x%x.\n", sfp_tx_fault
, link_speed
,
521 qla83xx_schedule_work(vha
, QLA83XX_NIC_CORE_RESET
);
524 if (mb
[1] & IDC_HEARTBEAT_FAILURE
) {
525 ql_log(ql_log_warn
, vha
, 0x5069,
526 "Heartbeat Failure encountered, chip reset "
529 qla83xx_schedule_work(vha
, QLA83XX_NIC_CORE_RESET
);
533 if (mb
[1] & IDC_DEVICE_STATE_CHANGE
) {
534 ql_log(ql_log_info
, vha
, 0x506a,
535 "IDC Device-State changed = 0x%x.\n", mb
[4]);
536 if (ha
->flags
.nic_core_reset_owner
)
538 qla83xx_schedule_work(vha
, MBA_IDC_AEN
);
543 qla2x00_is_a_vp_did(scsi_qla_host_t
*vha
, uint32_t rscn_entry
)
545 struct qla_hw_data
*ha
= vha
->hw
;
554 spin_lock_irqsave(&ha
->vport_slock
, flags
);
555 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
556 vp_did
= vp
->d_id
.b24
;
557 if (vp_did
== rscn_entry
) {
562 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
568 qla2x00_find_fcport_by_loopid(scsi_qla_host_t
*vha
, uint16_t loop_id
)
573 list_for_each_entry_safe(f
, tf
, &vha
->vp_fcports
, list
)
574 if (f
->loop_id
== loop_id
)
580 qla2x00_find_fcport_by_wwpn(scsi_qla_host_t
*vha
, u8
*wwpn
, u8 incl_deleted
)
585 list_for_each_entry_safe(f
, tf
, &vha
->vp_fcports
, list
) {
586 if (memcmp(f
->port_name
, wwpn
, WWN_SIZE
) == 0) {
589 else if (f
->deleted
== 0)
597 qla2x00_find_fcport_by_nportid(scsi_qla_host_t
*vha
, port_id_t
*id
,
603 list_for_each_entry_safe(f
, tf
, &vha
->vp_fcports
, list
) {
604 if (f
->d_id
.b24
== id
->b24
) {
607 else if (f
->deleted
== 0)
615 * qla2x00_async_event() - Process aynchronous events.
616 * @vha: SCSI driver HA context
617 * @rsp: response queue
618 * @mb: Mailbox registers (0 - 3)
621 qla2x00_async_event(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, uint16_t *mb
)
626 struct qla_hw_data
*ha
= vha
->hw
;
627 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
628 struct device_reg_24xx __iomem
*reg24
= &ha
->iobase
->isp24
;
629 struct device_reg_82xx __iomem
*reg82
= &ha
->iobase
->isp82
;
630 uint32_t rscn_entry
, host_pid
;
632 fc_port_t
*fcport
= NULL
;
634 if (!vha
->hw
->flags
.fw_started
)
637 /* Setup to process RIO completion. */
639 if (IS_CNA_CAPABLE(ha
))
642 case MBA_SCSI_COMPLETION
:
643 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
646 case MBA_CMPLT_1_16BIT
:
649 mb
[0] = MBA_SCSI_COMPLETION
;
651 case MBA_CMPLT_2_16BIT
:
655 mb
[0] = MBA_SCSI_COMPLETION
;
657 case MBA_CMPLT_3_16BIT
:
662 mb
[0] = MBA_SCSI_COMPLETION
;
664 case MBA_CMPLT_4_16BIT
:
668 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
670 mb
[0] = MBA_SCSI_COMPLETION
;
672 case MBA_CMPLT_5_16BIT
:
676 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
677 handles
[4] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 7);
679 mb
[0] = MBA_SCSI_COMPLETION
;
681 case MBA_CMPLT_2_32BIT
:
682 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
683 handles
[1] = le32_to_cpu(
684 ((uint32_t)(RD_MAILBOX_REG(ha
, reg
, 7) << 16)) |
685 RD_MAILBOX_REG(ha
, reg
, 6));
687 mb
[0] = MBA_SCSI_COMPLETION
;
694 case MBA_SCSI_COMPLETION
: /* Fast Post */
695 if (!vha
->flags
.online
)
698 for (cnt
= 0; cnt
< handle_cnt
; cnt
++)
699 qla2x00_process_completed_request(vha
, rsp
->req
,
703 case MBA_RESET
: /* Reset */
704 ql_dbg(ql_dbg_async
, vha
, 0x5002,
705 "Asynchronous RESET.\n");
707 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
710 case MBA_SYSTEM_ERR
: /* System Error */
711 mbx
= (IS_QLA81XX(ha
) || IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) ?
712 RD_REG_WORD(®24
->mailbox7
) : 0;
713 ql_log(ql_log_warn
, vha
, 0x5003,
714 "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh "
715 "mbx7=%xh.\n", mb
[1], mb
[2], mb
[3], mbx
);
717 ha
->isp_ops
->fw_dump(vha
, 1);
718 ha
->flags
.fw_init_done
= 0;
721 if (IS_FWI2_CAPABLE(ha
)) {
722 if (mb
[1] == 0 && mb
[2] == 0) {
723 ql_log(ql_log_fatal
, vha
, 0x5004,
724 "Unrecoverable Hardware Error: adapter "
725 "marked OFFLINE!\n");
726 vha
->flags
.online
= 0;
727 vha
->device_flags
|= DFLG_DEV_FAILED
;
729 /* Check to see if MPI timeout occurred */
730 if ((mbx
& MBX_3
) && (ha
->port_no
== 0))
731 set_bit(MPI_RESET_NEEDED
,
734 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
736 } else if (mb
[1] == 0) {
737 ql_log(ql_log_fatal
, vha
, 0x5005,
738 "Unrecoverable Hardware Error: adapter marked "
740 vha
->flags
.online
= 0;
741 vha
->device_flags
|= DFLG_DEV_FAILED
;
743 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
746 case MBA_REQ_TRANSFER_ERR
: /* Request Transfer Error */
747 ql_log(ql_log_warn
, vha
, 0x5006,
748 "ISP Request Transfer Error (%x).\n", mb
[1]);
750 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
753 case MBA_RSP_TRANSFER_ERR
: /* Response Transfer Error */
754 ql_log(ql_log_warn
, vha
, 0x5007,
755 "ISP Response Transfer Error (%x).\n", mb
[1]);
757 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
760 case MBA_WAKEUP_THRES
: /* Request Queue Wake-up */
761 ql_dbg(ql_dbg_async
, vha
, 0x5008,
762 "Asynchronous WAKEUP_THRES (%x).\n", mb
[1]);
765 case MBA_LOOP_INIT_ERR
:
766 ql_log(ql_log_warn
, vha
, 0x5090,
767 "LOOP INIT ERROR (%x).\n", mb
[1]);
768 ha
->isp_ops
->fw_dump(vha
, 1);
769 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
772 case MBA_LIP_OCCURRED
: /* Loop Initialization Procedure */
773 ha
->flags
.lip_ae
= 1;
775 ql_dbg(ql_dbg_async
, vha
, 0x5009,
776 "LIP occurred (%x).\n", mb
[1]);
778 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
779 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
780 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
781 qla2x00_mark_all_devices_lost(vha
, 1);
785 atomic_set(&vha
->vp_state
, VP_FAILED
);
786 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
789 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
790 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
792 vha
->flags
.management_server_logged_in
= 0;
793 qla2x00_post_aen_work(vha
, FCH_EVT_LIP
, mb
[1]);
796 case MBA_LOOP_UP
: /* Loop Up Event */
797 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
798 ha
->link_data_rate
= PORT_SPEED_1GB
;
800 ha
->link_data_rate
= mb
[1];
802 ql_log(ql_log_info
, vha
, 0x500a,
803 "LOOP UP detected (%s Gbps).\n",
804 qla2x00_get_link_speed_str(ha
, ha
->link_data_rate
));
806 vha
->flags
.management_server_logged_in
= 0;
807 qla2x00_post_aen_work(vha
, FCH_EVT_LINKUP
, ha
->link_data_rate
);
809 if (AUTO_DETECT_SFP_SUPPORT(vha
)) {
810 set_bit(DETECT_SFP_CHANGE
, &vha
->dpc_flags
);
811 qla2xxx_wake_dpc(vha
);
815 case MBA_LOOP_DOWN
: /* Loop Down Event */
817 ha
->flags
.lip_ae
= 0;
818 ha
->current_topology
= 0;
820 mbx
= (IS_QLA81XX(ha
) || IS_QLA8031(ha
))
821 ? RD_REG_WORD(®24
->mailbox4
) : 0;
822 mbx
= (IS_P3P_TYPE(ha
)) ? RD_REG_WORD(®82
->mailbox_out
[4])
824 ql_log(ql_log_info
, vha
, 0x500b,
825 "LOOP DOWN detected (%x %x %x %x).\n",
826 mb
[1], mb
[2], mb
[3], mbx
);
828 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
829 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
830 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
832 * In case of loop down, restore WWPN from
833 * NVRAM in case of FA-WWPN capable ISP
834 * Restore for Physical Port only
837 if (ha
->flags
.fawwpn_enabled
&&
838 (ha
->current_topology
== ISP_CFG_F
)) {
839 void *wwpn
= ha
->init_cb
->port_name
;
840 memcpy(vha
->port_name
, wwpn
, WWN_SIZE
);
841 fc_host_port_name(vha
->host
) =
842 wwn_to_u64(vha
->port_name
);
843 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
,
844 vha
, 0x00d8, "LOOP DOWN detected,"
845 "restore WWPN %016llx\n",
846 wwn_to_u64(vha
->port_name
));
849 clear_bit(VP_CONFIG_OK
, &vha
->vp_flags
);
852 vha
->device_flags
|= DFLG_NO_CABLE
;
853 qla2x00_mark_all_devices_lost(vha
, 1);
857 atomic_set(&vha
->vp_state
, VP_FAILED
);
858 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
861 vha
->flags
.management_server_logged_in
= 0;
862 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
863 qla2x00_post_aen_work(vha
, FCH_EVT_LINKDOWN
, 0);
866 case MBA_LIP_RESET
: /* LIP reset occurred */
867 ql_dbg(ql_dbg_async
, vha
, 0x500c,
868 "LIP reset occurred (%x).\n", mb
[1]);
870 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
871 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
872 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
873 qla2x00_mark_all_devices_lost(vha
, 1);
877 atomic_set(&vha
->vp_state
, VP_FAILED
);
878 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
881 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
883 ha
->operating_mode
= LOOP
;
884 vha
->flags
.management_server_logged_in
= 0;
885 qla2x00_post_aen_work(vha
, FCH_EVT_LIPRESET
, mb
[1]);
888 /* case MBA_DCBX_COMPLETE: */
889 case MBA_POINT_TO_POINT
: /* Point-to-Point */
890 ha
->flags
.lip_ae
= 0;
895 if (IS_CNA_CAPABLE(ha
)) {
896 ql_dbg(ql_dbg_async
, vha
, 0x500d,
897 "DCBX Completed -- %04x %04x %04x.\n",
898 mb
[1], mb
[2], mb
[3]);
899 if (ha
->notify_dcbx_comp
&& !vha
->vp_idx
)
900 complete(&ha
->dcbx_comp
);
903 ql_dbg(ql_dbg_async
, vha
, 0x500e,
904 "Asynchronous P2P MODE received.\n");
907 * Until there's a transition from loop down to loop up, treat
908 * this as loop down only.
910 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
911 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
912 if (!atomic_read(&vha
->loop_down_timer
))
913 atomic_set(&vha
->loop_down_timer
,
916 qla2x00_mark_all_devices_lost(vha
, 1);
920 atomic_set(&vha
->vp_state
, VP_FAILED
);
921 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
924 if (!(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)))
925 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
927 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
928 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
930 vha
->flags
.management_server_logged_in
= 0;
933 case MBA_CHG_IN_CONNECTION
: /* Change in connection mode */
937 ql_dbg(ql_dbg_async
, vha
, 0x500f,
938 "Configuration change detected: value=%x.\n", mb
[1]);
940 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
941 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
942 if (!atomic_read(&vha
->loop_down_timer
))
943 atomic_set(&vha
->loop_down_timer
,
945 qla2x00_mark_all_devices_lost(vha
, 1);
949 atomic_set(&vha
->vp_state
, VP_FAILED
);
950 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
953 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
954 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
957 case MBA_PORT_UPDATE
: /* Port database update */
959 * Handle only global and vn-port update events
962 * mb[1] = N_Port handle of changed port
963 * OR 0xffff for global event
964 * mb[2] = New login state
965 * 7 = Port logged out
966 * mb[3] = LSB is vp_idx, 0xff = all vps
968 * Skip processing if:
969 * Event is global, vp_idx is NOT all vps,
970 * vp_idx does not match
971 * Event is not global, vp_idx does not match
973 if (IS_QLA2XXX_MIDTYPE(ha
) &&
974 ((mb
[1] == 0xffff && (mb
[3] & 0xff) != 0xff) ||
975 (mb
[1] != 0xffff)) && vha
->vp_idx
!= (mb
[3] & 0xff))
979 ql_dbg(ql_dbg_async
, vha
, 0x5010,
980 "Port %s %04x %04x %04x.\n",
981 mb
[1] == 0xffff ? "unavailable" : "logout",
982 mb
[1], mb
[2], mb
[3]);
985 goto global_port_update
;
987 if (mb
[1] == NPH_SNS_LID(ha
)) {
988 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
989 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
993 /* use handle_cnt for loop id/nport handle */
994 if (IS_FWI2_CAPABLE(ha
))
995 handle_cnt
= NPH_SNS
;
997 handle_cnt
= SIMPLE_NAME_SERVER
;
998 if (mb
[1] == handle_cnt
) {
999 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1000 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
1005 fcport
= qla2x00_find_fcport_by_loopid(vha
, mb
[1]);
1008 if (atomic_read(&fcport
->state
) != FCS_ONLINE
)
1010 ql_dbg(ql_dbg_async
, vha
, 0x508a,
1011 "Marking port lost loopid=%04x portid=%06x.\n",
1012 fcport
->loop_id
, fcport
->d_id
.b24
);
1013 if (qla_ini_mode_enabled(vha
)) {
1014 qla2x00_mark_device_lost(fcport
->vha
, fcport
, 1, 1);
1015 fcport
->logout_on_delete
= 0;
1016 qlt_schedule_sess_for_deletion(fcport
);
1021 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
1022 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1023 atomic_set(&vha
->loop_down_timer
,
1025 vha
->device_flags
|= DFLG_NO_CABLE
;
1026 qla2x00_mark_all_devices_lost(vha
, 1);
1030 atomic_set(&vha
->vp_state
, VP_FAILED
);
1031 fc_vport_set_state(vha
->fc_vport
,
1033 qla2x00_mark_all_devices_lost(vha
, 1);
1036 vha
->flags
.management_server_logged_in
= 0;
1037 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
1042 * If PORT UPDATE is global (received LIP_OCCURRED/LIP_RESET
1043 * event etc. earlier indicating loop is down) then process
1044 * it. Otherwise ignore it and Wait for RSCN to come in.
1046 atomic_set(&vha
->loop_down_timer
, 0);
1047 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
&&
1048 !ha
->flags
.n2n_ae
&&
1049 atomic_read(&vha
->loop_state
) != LOOP_DEAD
) {
1050 ql_dbg(ql_dbg_async
, vha
, 0x5011,
1051 "Asynchronous PORT UPDATE ignored %04x/%04x/%04x.\n",
1052 mb
[1], mb
[2], mb
[3]);
1054 qlt_async_event(mb
[0], vha
, mb
);
1058 ql_dbg(ql_dbg_async
, vha
, 0x5012,
1059 "Port database changed %04x %04x %04x.\n",
1060 mb
[1], mb
[2], mb
[3]);
1063 * Mark all devices as missing so we will login again.
1065 atomic_set(&vha
->loop_state
, LOOP_UP
);
1066 vha
->scan
.scan_retry
= 0;
1068 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1069 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
1070 set_bit(VP_CONFIG_OK
, &vha
->vp_flags
);
1072 qlt_async_event(mb
[0], vha
, mb
);
1075 case MBA_RSCN_UPDATE
: /* State Change Registration */
1076 /* Check if the Vport has issued a SCR */
1077 if (vha
->vp_idx
&& test_bit(VP_SCR_NEEDED
, &vha
->vp_flags
))
1079 /* Only handle SCNs for our Vport index. */
1080 if (ha
->flags
.npiv_supported
&& vha
->vp_idx
!= (mb
[3] & 0xff))
1083 ql_dbg(ql_dbg_async
, vha
, 0x5013,
1084 "RSCN database changed -- %04x %04x %04x.\n",
1085 mb
[1], mb
[2], mb
[3]);
1087 rscn_entry
= ((mb
[1] & 0xff) << 16) | mb
[2];
1088 host_pid
= (vha
->d_id
.b
.domain
<< 16) | (vha
->d_id
.b
.area
<< 8)
1089 | vha
->d_id
.b
.al_pa
;
1090 if (rscn_entry
== host_pid
) {
1091 ql_dbg(ql_dbg_async
, vha
, 0x5014,
1092 "Ignoring RSCN update to local host "
1093 "port ID (%06x).\n", host_pid
);
1097 /* Ignore reserved bits from RSCN-payload. */
1098 rscn_entry
= ((mb
[1] & 0x3ff) << 16) | mb
[2];
1100 /* Skip RSCNs for virtual ports on the same physical port */
1101 if (qla2x00_is_a_vp_did(vha
, rscn_entry
))
1104 atomic_set(&vha
->loop_down_timer
, 0);
1105 vha
->flags
.management_server_logged_in
= 0;
1107 struct event_arg ea
;
1109 memset(&ea
, 0, sizeof(ea
));
1110 ea
.event
= FCME_RSCN
;
1111 ea
.id
.b24
= rscn_entry
;
1112 ea
.id
.b
.rsvd_1
= rscn_entry
>> 24;
1113 qla2x00_fcport_event_handler(vha
, &ea
);
1114 qla2x00_post_aen_work(vha
, FCH_EVT_RSCN
, rscn_entry
);
1117 /* case MBA_RIO_RESPONSE: */
1118 case MBA_ZIO_RESPONSE
:
1119 ql_dbg(ql_dbg_async
, vha
, 0x5015,
1120 "[R|Z]IO update completion.\n");
1122 if (IS_FWI2_CAPABLE(ha
))
1123 qla24xx_process_response_queue(vha
, rsp
);
1125 qla2x00_process_response_queue(rsp
);
1128 case MBA_DISCARD_RND_FRAME
:
1129 ql_dbg(ql_dbg_async
, vha
, 0x5016,
1130 "Discard RND Frame -- %04x %04x %04x.\n",
1131 mb
[1], mb
[2], mb
[3]);
1134 case MBA_TRACE_NOTIFICATION
:
1135 ql_dbg(ql_dbg_async
, vha
, 0x5017,
1136 "Trace Notification -- %04x %04x.\n", mb
[1], mb
[2]);
1139 case MBA_ISP84XX_ALERT
:
1140 ql_dbg(ql_dbg_async
, vha
, 0x5018,
1141 "ISP84XX Alert Notification -- %04x %04x %04x.\n",
1142 mb
[1], mb
[2], mb
[3]);
1144 spin_lock_irqsave(&ha
->cs84xx
->access_lock
, flags
);
1146 case A84_PANIC_RECOVERY
:
1147 ql_log(ql_log_info
, vha
, 0x5019,
1148 "Alert 84XX: panic recovery %04x %04x.\n",
1151 case A84_OP_LOGIN_COMPLETE
:
1152 ha
->cs84xx
->op_fw_version
= mb
[3] << 16 | mb
[2];
1153 ql_log(ql_log_info
, vha
, 0x501a,
1154 "Alert 84XX: firmware version %x.\n",
1155 ha
->cs84xx
->op_fw_version
);
1157 case A84_DIAG_LOGIN_COMPLETE
:
1158 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1159 ql_log(ql_log_info
, vha
, 0x501b,
1160 "Alert 84XX: diagnostic firmware version %x.\n",
1161 ha
->cs84xx
->diag_fw_version
);
1163 case A84_GOLD_LOGIN_COMPLETE
:
1164 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1165 ha
->cs84xx
->fw_update
= 1;
1166 ql_log(ql_log_info
, vha
, 0x501c,
1167 "Alert 84XX: gold firmware version %x.\n",
1168 ha
->cs84xx
->gold_fw_version
);
1171 ql_log(ql_log_warn
, vha
, 0x501d,
1172 "Alert 84xx: Invalid Alert %04x %04x %04x.\n",
1173 mb
[1], mb
[2], mb
[3]);
1175 spin_unlock_irqrestore(&ha
->cs84xx
->access_lock
, flags
);
1177 case MBA_DCBX_START
:
1178 ql_dbg(ql_dbg_async
, vha
, 0x501e,
1179 "DCBX Started -- %04x %04x %04x.\n",
1180 mb
[1], mb
[2], mb
[3]);
1182 case MBA_DCBX_PARAM_UPDATE
:
1183 ql_dbg(ql_dbg_async
, vha
, 0x501f,
1184 "DCBX Parameters Updated -- %04x %04x %04x.\n",
1185 mb
[1], mb
[2], mb
[3]);
1187 case MBA_FCF_CONF_ERR
:
1188 ql_dbg(ql_dbg_async
, vha
, 0x5020,
1189 "FCF Configuration Error -- %04x %04x %04x.\n",
1190 mb
[1], mb
[2], mb
[3]);
1192 case MBA_IDC_NOTIFY
:
1193 if (IS_QLA8031(vha
->hw
) || IS_QLA8044(ha
)) {
1194 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1195 if (((mb
[2] & 0x7fff) == MBC_PORT_RESET
||
1196 (mb
[2] & 0x7fff) == MBC_SET_PORT_CONFIG
) &&
1197 (mb
[4] & INTERNAL_LOOPBACK_MASK
) != 0) {
1198 set_bit(ISP_QUIESCE_NEEDED
, &vha
->dpc_flags
);
1200 * Extend loop down timer since port is active.
1202 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
)
1203 atomic_set(&vha
->loop_down_timer
,
1205 qla2xxx_wake_dpc(vha
);
1209 case MBA_IDC_COMPLETE
:
1210 if (ha
->notify_lb_portup_comp
&& !vha
->vp_idx
)
1211 complete(&ha
->lb_portup_comp
);
1213 case MBA_IDC_TIME_EXT
:
1214 if (IS_QLA81XX(vha
->hw
) || IS_QLA8031(vha
->hw
) ||
1216 qla81xx_idc_event(vha
, mb
[0], mb
[1]);
1220 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1221 mb
[5] = RD_REG_WORD(®24
->mailbox5
);
1222 mb
[6] = RD_REG_WORD(®24
->mailbox6
);
1223 mb
[7] = RD_REG_WORD(®24
->mailbox7
);
1224 qla83xx_handle_8200_aen(vha
, mb
);
1227 case MBA_DPORT_DIAGNOSTICS
:
1228 ql_dbg(ql_dbg_async
, vha
, 0x5052,
1229 "D-Port Diagnostics: %04x result=%s\n",
1231 mb
[1] == 0 ? "start" :
1232 mb
[1] == 1 ? "done (pass)" :
1233 mb
[1] == 2 ? "done (error)" : "other");
1236 case MBA_TEMPERATURE_ALERT
:
1237 ql_dbg(ql_dbg_async
, vha
, 0x505e,
1238 "TEMPERATURE ALERT: %04x %04x %04x\n", mb
[1], mb
[2], mb
[3]);
1240 schedule_work(&ha
->board_disable
);
1243 case MBA_TRANS_INSERT
:
1244 ql_dbg(ql_dbg_async
, vha
, 0x5091,
1245 "Transceiver Insertion: %04x\n", mb
[1]);
1249 ql_dbg(ql_dbg_async
, vha
, 0x5057,
1250 "Unknown AEN:%04x %04x %04x %04x\n",
1251 mb
[0], mb
[1], mb
[2], mb
[3]);
1254 qlt_async_event(mb
[0], vha
, mb
);
1256 if (!vha
->vp_idx
&& ha
->num_vhosts
)
1257 qla2x00_alert_all_vps(rsp
, mb
);
1261 * qla2x00_process_completed_request() - Process a Fast Post response.
1262 * @vha: SCSI driver HA context
1263 * @req: request queue
1267 qla2x00_process_completed_request(struct scsi_qla_host
*vha
,
1268 struct req_que
*req
, uint32_t index
)
1271 struct qla_hw_data
*ha
= vha
->hw
;
1273 /* Validate handle. */
1274 if (index
>= req
->num_outstanding_cmds
) {
1275 ql_log(ql_log_warn
, vha
, 0x3014,
1276 "Invalid SCSI command index (%x).\n", index
);
1278 if (IS_P3P_TYPE(ha
))
1279 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1281 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1285 sp
= req
->outstanding_cmds
[index
];
1287 /* Free outstanding command slot. */
1288 req
->outstanding_cmds
[index
] = NULL
;
1290 /* Save ISP completion status */
1291 sp
->done(sp
, DID_OK
<< 16);
1293 ql_log(ql_log_warn
, vha
, 0x3016, "Invalid SCSI SRB.\n");
1295 if (IS_P3P_TYPE(ha
))
1296 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1298 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1303 qla2x00_get_sp_from_handle(scsi_qla_host_t
*vha
, const char *func
,
1304 struct req_que
*req
, void *iocb
)
1306 struct qla_hw_data
*ha
= vha
->hw
;
1307 sts_entry_t
*pkt
= iocb
;
1311 index
= LSW(pkt
->handle
);
1312 if (index
>= req
->num_outstanding_cmds
) {
1313 ql_log(ql_log_warn
, vha
, 0x5031,
1314 "Invalid command index (%x) type %8ph.\n",
1316 if (IS_P3P_TYPE(ha
))
1317 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1319 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1322 sp
= req
->outstanding_cmds
[index
];
1324 ql_log(ql_log_warn
, vha
, 0x5032,
1325 "Invalid completion handle (%x) -- timed-out.\n", index
);
1328 if (sp
->handle
!= index
) {
1329 ql_log(ql_log_warn
, vha
, 0x5033,
1330 "SRB handle (%x) mismatch %x.\n", sp
->handle
, index
);
1334 req
->outstanding_cmds
[index
] = NULL
;
1341 qla2x00_mbx_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1342 struct mbx_entry
*mbx
)
1344 const char func
[] = "MBX-IOCB";
1348 struct srb_iocb
*lio
;
1352 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, mbx
);
1356 lio
= &sp
->u
.iocb_cmd
;
1358 fcport
= sp
->fcport
;
1359 data
= lio
->u
.logio
.data
;
1361 data
[0] = MBS_COMMAND_ERROR
;
1362 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1363 QLA_LOGIO_LOGIN_RETRIED
: 0;
1364 if (mbx
->entry_status
) {
1365 ql_dbg(ql_dbg_async
, vha
, 0x5043,
1366 "Async-%s error entry - hdl=%x portid=%02x%02x%02x "
1367 "entry-status=%x status=%x state-flag=%x "
1368 "status-flags=%x.\n", type
, sp
->handle
,
1369 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
1370 fcport
->d_id
.b
.al_pa
, mbx
->entry_status
,
1371 le16_to_cpu(mbx
->status
), le16_to_cpu(mbx
->state_flags
),
1372 le16_to_cpu(mbx
->status_flags
));
1374 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5029,
1375 (uint8_t *)mbx
, sizeof(*mbx
));
1380 status
= le16_to_cpu(mbx
->status
);
1381 if (status
== 0x30 && sp
->type
== SRB_LOGIN_CMD
&&
1382 le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
)
1384 if (!status
&& le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
) {
1385 ql_dbg(ql_dbg_async
, vha
, 0x5045,
1386 "Async-%s complete - hdl=%x portid=%02x%02x%02x mbx1=%x.\n",
1387 type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1388 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1389 le16_to_cpu(mbx
->mb1
));
1391 data
[0] = MBS_COMMAND_COMPLETE
;
1392 if (sp
->type
== SRB_LOGIN_CMD
) {
1393 fcport
->port_type
= FCT_TARGET
;
1394 if (le16_to_cpu(mbx
->mb1
) & BIT_0
)
1395 fcport
->port_type
= FCT_INITIATOR
;
1396 else if (le16_to_cpu(mbx
->mb1
) & BIT_1
)
1397 fcport
->flags
|= FCF_FCP2_DEVICE
;
1402 data
[0] = le16_to_cpu(mbx
->mb0
);
1404 case MBS_PORT_ID_USED
:
1405 data
[1] = le16_to_cpu(mbx
->mb1
);
1407 case MBS_LOOP_ID_USED
:
1410 data
[0] = MBS_COMMAND_ERROR
;
1414 ql_log(ql_log_warn
, vha
, 0x5046,
1415 "Async-%s failed - hdl=%x portid=%02x%02x%02x status=%x "
1416 "mb0=%x mb1=%x mb2=%x mb6=%x mb7=%x.\n", type
, sp
->handle
,
1417 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1418 status
, le16_to_cpu(mbx
->mb0
), le16_to_cpu(mbx
->mb1
),
1419 le16_to_cpu(mbx
->mb2
), le16_to_cpu(mbx
->mb6
),
1420 le16_to_cpu(mbx
->mb7
));
1427 qla24xx_mbx_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1428 struct mbx_24xx_entry
*pkt
)
1430 const char func
[] = "MBX-IOCB2";
1432 struct srb_iocb
*si
;
1436 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1440 si
= &sp
->u
.iocb_cmd
;
1441 sz
= min(ARRAY_SIZE(pkt
->mb
), ARRAY_SIZE(sp
->u
.iocb_cmd
.u
.mbx
.in_mb
));
1443 for (i
= 0; i
< sz
; i
++)
1444 si
->u
.mbx
.in_mb
[i
] = le16_to_cpu(pkt
->mb
[i
]);
1446 res
= (si
->u
.mbx
.in_mb
[0] & MBS_MASK
);
1452 qla24xxx_nack_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1453 struct nack_to_isp
*pkt
)
1455 const char func
[] = "nack";
1459 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1463 if (pkt
->u
.isp2x
.status
!= cpu_to_le16(NOTIFY_ACK_SUCCESS
))
1464 res
= QLA_FUNCTION_FAILED
;
1470 qla2x00_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1471 sts_entry_t
*pkt
, int iocb_type
)
1473 const char func
[] = "CT_IOCB";
1476 struct bsg_job
*bsg_job
;
1477 struct fc_bsg_reply
*bsg_reply
;
1478 uint16_t comp_status
;
1481 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1487 bsg_job
= sp
->u
.bsg_job
;
1488 bsg_reply
= bsg_job
->reply
;
1490 type
= "ct pass-through";
1492 comp_status
= le16_to_cpu(pkt
->comp_status
);
1495 * return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1496 * fc payload to the caller
1498 bsg_reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1499 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
1501 if (comp_status
!= CS_COMPLETE
) {
1502 if (comp_status
== CS_DATA_UNDERRUN
) {
1504 bsg_reply
->reply_payload_rcv_len
=
1505 le16_to_cpu(((sts_entry_t
*)pkt
)->rsp_info_len
);
1507 ql_log(ql_log_warn
, vha
, 0x5048,
1508 "CT pass-through-%s error comp_status=0x%x total_byte=0x%x.\n",
1510 bsg_reply
->reply_payload_rcv_len
);
1512 ql_log(ql_log_warn
, vha
, 0x5049,
1513 "CT pass-through-%s error comp_status=0x%x.\n",
1515 res
= DID_ERROR
<< 16;
1516 bsg_reply
->reply_payload_rcv_len
= 0;
1518 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5035,
1519 (uint8_t *)pkt
, sizeof(*pkt
));
1522 bsg_reply
->reply_payload_rcv_len
=
1523 bsg_job
->reply_payload
.payload_len
;
1524 bsg_job
->reply_len
= 0;
1527 case SRB_CT_PTHRU_CMD
:
1529 * borrowing sts_entry_24xx.comp_status.
1530 * same location as ct_entry_24xx.comp_status
1532 res
= qla2x00_chk_ms_status(vha
, (ms_iocb_entry_t
*)pkt
,
1533 (struct ct_sns_rsp
*)sp
->u
.iocb_cmd
.u
.ctarg
.rsp
,
1542 qla24xx_els_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1543 struct sts_entry_24xx
*pkt
, int iocb_type
)
1545 const char func
[] = "ELS_CT_IOCB";
1548 struct bsg_job
*bsg_job
;
1549 struct fc_bsg_reply
*bsg_reply
;
1550 uint16_t comp_status
;
1551 uint32_t fw_status
[3];
1553 struct srb_iocb
*els
;
1555 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1561 case SRB_ELS_CMD_RPT
:
1562 case SRB_ELS_CMD_HST
:
1566 type
= "ct pass-through";
1569 type
= "Driver ELS logo";
1570 if (iocb_type
!= ELS_IOCB_TYPE
) {
1571 ql_dbg(ql_dbg_user
, vha
, 0x5047,
1572 "Completing %s: (%p) type=%d.\n",
1573 type
, sp
, sp
->type
);
1578 case SRB_CT_PTHRU_CMD
:
1579 /* borrowing sts_entry_24xx.comp_status.
1580 same location as ct_entry_24xx.comp_status
1582 res
= qla2x00_chk_ms_status(sp
->vha
, (ms_iocb_entry_t
*)pkt
,
1583 (struct ct_sns_rsp
*)sp
->u
.iocb_cmd
.u
.ctarg
.rsp
,
1588 ql_dbg(ql_dbg_user
, vha
, 0x503e,
1589 "Unrecognized SRB: (%p) type=%d.\n", sp
, sp
->type
);
1593 comp_status
= fw_status
[0] = le16_to_cpu(pkt
->comp_status
);
1594 fw_status
[1] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_1
);
1595 fw_status
[2] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_2
);
1597 if (iocb_type
== ELS_IOCB_TYPE
) {
1598 els
= &sp
->u
.iocb_cmd
;
1599 els
->u
.els_plogi
.fw_status
[0] = fw_status
[0];
1600 els
->u
.els_plogi
.fw_status
[1] = fw_status
[1];
1601 els
->u
.els_plogi
.fw_status
[2] = fw_status
[2];
1602 els
->u
.els_plogi
.comp_status
= fw_status
[0];
1603 if (comp_status
== CS_COMPLETE
) {
1606 if (comp_status
== CS_DATA_UNDERRUN
) {
1608 els
->u
.els_plogi
.len
=
1609 le16_to_cpu(((struct els_sts_entry_24xx
*)
1610 pkt
)->total_byte_count
);
1612 els
->u
.els_plogi
.len
= 0;
1613 res
= DID_ERROR
<< 16;
1616 ql_log(ql_log_info
, vha
, 0x503f,
1617 "ELS IOCB Done -%s error hdl=%x comp_status=0x%x error subcode 1=0x%x error subcode 2=0x%x total_byte=0x%x\n",
1618 type
, sp
->handle
, comp_status
, fw_status
[1], fw_status
[2],
1619 le16_to_cpu(((struct els_sts_entry_24xx
*)
1620 pkt
)->total_byte_count
));
1624 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1625 * fc payload to the caller
1627 bsg_job
= sp
->u
.bsg_job
;
1628 bsg_reply
= bsg_job
->reply
;
1629 bsg_reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1630 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
) + sizeof(fw_status
);
1632 if (comp_status
!= CS_COMPLETE
) {
1633 if (comp_status
== CS_DATA_UNDERRUN
) {
1635 bsg_reply
->reply_payload_rcv_len
=
1636 le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->total_byte_count
);
1638 ql_dbg(ql_dbg_user
, vha
, 0x503f,
1639 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1640 "error subcode 1=0x%x error subcode 2=0x%x total_byte = 0x%x.\n",
1641 type
, sp
->handle
, comp_status
, fw_status
[1], fw_status
[2],
1642 le16_to_cpu(((struct els_sts_entry_24xx
*)
1643 pkt
)->total_byte_count
));
1645 ql_dbg(ql_dbg_user
, vha
, 0x5040,
1646 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1647 "error subcode 1=0x%x error subcode 2=0x%x.\n",
1648 type
, sp
->handle
, comp_status
,
1649 le16_to_cpu(((struct els_sts_entry_24xx
*)
1650 pkt
)->error_subcode_1
),
1651 le16_to_cpu(((struct els_sts_entry_24xx
*)
1652 pkt
)->error_subcode_2
));
1653 res
= DID_ERROR
<< 16;
1654 bsg_reply
->reply_payload_rcv_len
= 0;
1656 memcpy(bsg_job
->reply
+ sizeof(struct fc_bsg_reply
),
1657 fw_status
, sizeof(fw_status
));
1658 ql_dump_buffer(ql_dbg_user
+ ql_dbg_buffer
, vha
, 0x5056,
1659 (uint8_t *)pkt
, sizeof(*pkt
));
1663 bsg_reply
->reply_payload_rcv_len
= bsg_job
->reply_payload
.payload_len
;
1664 bsg_job
->reply_len
= 0;
1672 qla24xx_logio_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1673 struct logio_entry_24xx
*logio
)
1675 const char func
[] = "LOGIO-IOCB";
1679 struct srb_iocb
*lio
;
1683 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, logio
);
1687 lio
= &sp
->u
.iocb_cmd
;
1689 fcport
= sp
->fcport
;
1690 data
= lio
->u
.logio
.data
;
1692 data
[0] = MBS_COMMAND_ERROR
;
1693 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1694 QLA_LOGIO_LOGIN_RETRIED
: 0;
1695 if (logio
->entry_status
) {
1696 ql_log(ql_log_warn
, fcport
->vha
, 0x5034,
1697 "Async-%s error entry - %8phC hdl=%x"
1698 "portid=%02x%02x%02x entry-status=%x.\n",
1699 type
, fcport
->port_name
, sp
->handle
, fcport
->d_id
.b
.domain
,
1700 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1701 logio
->entry_status
);
1702 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x504d,
1703 (uint8_t *)logio
, sizeof(*logio
));
1708 if (le16_to_cpu(logio
->comp_status
) == CS_COMPLETE
) {
1709 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5036,
1710 "Async-%s complete - %8phC hdl=%x portid=%02x%02x%02x "
1711 "iop0=%x.\n", type
, fcport
->port_name
, sp
->handle
,
1712 fcport
->d_id
.b
.domain
,
1713 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1714 le32_to_cpu(logio
->io_parameter
[0]));
1716 vha
->hw
->exch_starvation
= 0;
1717 data
[0] = MBS_COMMAND_COMPLETE
;
1719 if (sp
->type
== SRB_PRLI_CMD
) {
1720 lio
->u
.logio
.iop
[0] =
1721 le32_to_cpu(logio
->io_parameter
[0]);
1722 lio
->u
.logio
.iop
[1] =
1723 le32_to_cpu(logio
->io_parameter
[1]);
1727 if (sp
->type
!= SRB_LOGIN_CMD
)
1730 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1731 if (iop
[0] & BIT_4
) {
1732 fcport
->port_type
= FCT_TARGET
;
1734 fcport
->flags
|= FCF_FCP2_DEVICE
;
1735 } else if (iop
[0] & BIT_5
)
1736 fcport
->port_type
= FCT_INITIATOR
;
1739 fcport
->flags
|= FCF_CONF_COMP_SUPPORTED
;
1741 if (logio
->io_parameter
[7] || logio
->io_parameter
[8])
1742 fcport
->supported_classes
|= FC_COS_CLASS2
;
1743 if (logio
->io_parameter
[9] || logio
->io_parameter
[10])
1744 fcport
->supported_classes
|= FC_COS_CLASS3
;
1749 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1750 iop
[1] = le32_to_cpu(logio
->io_parameter
[1]);
1751 lio
->u
.logio
.iop
[0] = iop
[0];
1752 lio
->u
.logio
.iop
[1] = iop
[1];
1754 case LSC_SCODE_PORTID_USED
:
1755 data
[0] = MBS_PORT_ID_USED
;
1756 data
[1] = LSW(iop
[1]);
1758 case LSC_SCODE_NPORT_USED
:
1759 data
[0] = MBS_LOOP_ID_USED
;
1761 case LSC_SCODE_CMD_FAILED
:
1762 if (iop
[1] == 0x0606) {
1764 * PLOGI/PRLI Completed. We must have Recv PLOGI/PRLI,
1765 * Target side acked.
1767 data
[0] = MBS_COMMAND_COMPLETE
;
1770 data
[0] = MBS_COMMAND_ERROR
;
1772 case LSC_SCODE_NOXCB
:
1773 vha
->hw
->exch_starvation
++;
1774 if (vha
->hw
->exch_starvation
> 5) {
1775 ql_log(ql_log_warn
, vha
, 0xd046,
1776 "Exchange starvation. Resetting RISC\n");
1778 vha
->hw
->exch_starvation
= 0;
1780 if (IS_P3P_TYPE(vha
->hw
))
1781 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1783 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1784 qla2xxx_wake_dpc(vha
);
1788 data
[0] = MBS_COMMAND_ERROR
;
1792 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5037,
1793 "Async-%s failed - %8phC hdl=%x portid=%02x%02x%02x comp=%x "
1794 "iop0=%x iop1=%x.\n", type
, fcport
->port_name
,
1795 sp
->handle
, fcport
->d_id
.b
.domain
,
1796 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1797 le16_to_cpu(logio
->comp_status
),
1798 le32_to_cpu(logio
->io_parameter
[0]),
1799 le32_to_cpu(logio
->io_parameter
[1]));
1806 qla24xx_tm_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
, void *tsk
)
1808 const char func
[] = "TMF-IOCB";
1812 struct srb_iocb
*iocb
;
1813 struct sts_entry_24xx
*sts
= (struct sts_entry_24xx
*)tsk
;
1815 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, tsk
);
1819 iocb
= &sp
->u
.iocb_cmd
;
1821 fcport
= sp
->fcport
;
1822 iocb
->u
.tmf
.data
= QLA_SUCCESS
;
1824 if (sts
->entry_status
) {
1825 ql_log(ql_log_warn
, fcport
->vha
, 0x5038,
1826 "Async-%s error - hdl=%x entry-status(%x).\n",
1827 type
, sp
->handle
, sts
->entry_status
);
1828 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1829 } else if (sts
->comp_status
!= cpu_to_le16(CS_COMPLETE
)) {
1830 ql_log(ql_log_warn
, fcport
->vha
, 0x5039,
1831 "Async-%s error - hdl=%x completion status(%x).\n",
1832 type
, sp
->handle
, sts
->comp_status
);
1833 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1834 } else if ((le16_to_cpu(sts
->scsi_status
) &
1835 SS_RESPONSE_INFO_LEN_VALID
)) {
1836 if (le32_to_cpu(sts
->rsp_data_len
) < 4) {
1837 ql_log(ql_log_warn
, fcport
->vha
, 0x503b,
1838 "Async-%s error - hdl=%x not enough response(%d).\n",
1839 type
, sp
->handle
, sts
->rsp_data_len
);
1840 } else if (sts
->data
[3]) {
1841 ql_log(ql_log_warn
, fcport
->vha
, 0x503c,
1842 "Async-%s error - hdl=%x response(%x).\n",
1843 type
, sp
->handle
, sts
->data
[3]);
1844 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1848 if (iocb
->u
.tmf
.data
!= QLA_SUCCESS
)
1849 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5055,
1850 (uint8_t *)sts
, sizeof(*sts
));
1855 static void qla24xx_nvme_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1856 void *tsk
, srb_t
*sp
)
1859 struct srb_iocb
*iocb
;
1860 struct sts_entry_24xx
*sts
= (struct sts_entry_24xx
*)tsk
;
1861 uint16_t state_flags
;
1862 struct nvmefc_fcp_req
*fd
;
1863 uint16_t ret
= QLA_SUCCESS
;
1864 uint16_t comp_status
= le16_to_cpu(sts
->comp_status
);
1866 iocb
= &sp
->u
.iocb_cmd
;
1867 fcport
= sp
->fcport
;
1868 iocb
->u
.nvme
.comp_status
= comp_status
;
1869 state_flags
= le16_to_cpu(sts
->state_flags
);
1870 fd
= iocb
->u
.nvme
.desc
;
1872 if (unlikely(iocb
->u
.nvme
.aen_op
))
1873 atomic_dec(&sp
->vha
->hw
->nvme_active_aen_cnt
);
1876 * State flags: Bit 6 and 0.
1877 * If 0 is set, we don't care about 6.
1878 * both cases resp was dma'd to host buffer
1879 * if both are 0, that is good path case.
1880 * if six is set and 0 is clear, we need to
1881 * copy resp data from status iocb to resp buffer.
1883 if (!(state_flags
& (SF_FCP_RSP_DMA
| SF_NVME_ERSP
))) {
1884 iocb
->u
.nvme
.rsp_pyld_len
= 0;
1885 } else if ((state_flags
& SF_FCP_RSP_DMA
)) {
1886 iocb
->u
.nvme
.rsp_pyld_len
= le16_to_cpu(sts
->nvme_rsp_pyld_len
);
1887 } else if (state_flags
& SF_NVME_ERSP
) {
1888 uint32_t *inbuf
, *outbuf
;
1891 inbuf
= (uint32_t *)&sts
->nvme_ersp_data
;
1892 outbuf
= (uint32_t *)fd
->rspaddr
;
1893 iocb
->u
.nvme
.rsp_pyld_len
= le16_to_cpu(sts
->nvme_rsp_pyld_len
);
1894 iter
= iocb
->u
.nvme
.rsp_pyld_len
>> 2;
1895 for (; iter
; iter
--)
1896 *outbuf
++ = swab32(*inbuf
++);
1897 } else { /* unhandled case */
1898 ql_log(ql_log_warn
, fcport
->vha
, 0x503a,
1899 "NVME-%s error. Unhandled state_flags of %x\n",
1900 sp
->name
, state_flags
);
1903 fd
->transferred_length
= fd
->payload_length
-
1904 le32_to_cpu(sts
->residual_len
);
1906 if (unlikely(comp_status
!= CS_COMPLETE
))
1907 ql_log(ql_log_warn
, fcport
->vha
, 0x5060,
1908 "NVME-%s ERR Handling - hdl=%x status(%x) tr_len:%x resid=%x ox_id=%x\n",
1909 sp
->name
, sp
->handle
, comp_status
,
1910 fd
->transferred_length
, le32_to_cpu(sts
->residual_len
),
1914 * If transport error then Failure (HBA rejects request)
1915 * otherwise transport will handle.
1917 switch (comp_status
) {
1922 case CS_PORT_UNAVAILABLE
:
1923 case CS_PORT_LOGGED_OUT
:
1924 fcport
->nvme_flag
|= NVME_FLAG_RESETTING
;
1928 fd
->transferred_length
= 0;
1929 iocb
->u
.nvme
.rsp_pyld_len
= 0;
1932 case CS_DATA_UNDERRUN
:
1935 ret
= QLA_FUNCTION_FAILED
;
1941 static void qla_ctrlvp_completed(scsi_qla_host_t
*vha
, struct req_que
*req
,
1942 struct vp_ctrl_entry_24xx
*vce
)
1944 const char func
[] = "CTRLVP-IOCB";
1946 int rval
= QLA_SUCCESS
;
1948 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, vce
);
1952 if (vce
->entry_status
!= 0) {
1953 ql_dbg(ql_dbg_vport
, vha
, 0x10c4,
1954 "%s: Failed to complete IOCB -- error status (%x)\n",
1955 sp
->name
, vce
->entry_status
);
1956 rval
= QLA_FUNCTION_FAILED
;
1957 } else if (vce
->comp_status
!= cpu_to_le16(CS_COMPLETE
)) {
1958 ql_dbg(ql_dbg_vport
, vha
, 0x10c5,
1959 "%s: Failed to complete IOCB -- completion status (%x) vpidx %x\n",
1960 sp
->name
, le16_to_cpu(vce
->comp_status
),
1961 le16_to_cpu(vce
->vp_idx_failed
));
1962 rval
= QLA_FUNCTION_FAILED
;
1964 ql_dbg(ql_dbg_vport
, vha
, 0x10c6,
1965 "Done %s.\n", __func__
);
1973 * qla2x00_process_response_queue() - Process response queue entries.
1974 * @rsp: response queue
1977 qla2x00_process_response_queue(struct rsp_que
*rsp
)
1979 struct scsi_qla_host
*vha
;
1980 struct qla_hw_data
*ha
= rsp
->hw
;
1981 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1983 uint16_t handle_cnt
;
1986 vha
= pci_get_drvdata(ha
->pdev
);
1988 if (!vha
->flags
.online
)
1991 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
1992 pkt
= (sts_entry_t
*)rsp
->ring_ptr
;
1995 if (rsp
->ring_index
== rsp
->length
) {
1996 rsp
->ring_index
= 0;
1997 rsp
->ring_ptr
= rsp
->ring
;
2002 if (pkt
->entry_status
!= 0) {
2003 qla2x00_error_entry(vha
, rsp
, pkt
);
2004 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2009 switch (pkt
->entry_type
) {
2011 qla2x00_status_entry(vha
, rsp
, pkt
);
2013 case STATUS_TYPE_21
:
2014 handle_cnt
= ((sts21_entry_t
*)pkt
)->handle_count
;
2015 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
2016 qla2x00_process_completed_request(vha
, rsp
->req
,
2017 ((sts21_entry_t
*)pkt
)->handle
[cnt
]);
2020 case STATUS_TYPE_22
:
2021 handle_cnt
= ((sts22_entry_t
*)pkt
)->handle_count
;
2022 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
2023 qla2x00_process_completed_request(vha
, rsp
->req
,
2024 ((sts22_entry_t
*)pkt
)->handle
[cnt
]);
2027 case STATUS_CONT_TYPE
:
2028 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
2031 qla2x00_mbx_iocb_entry(vha
, rsp
->req
,
2032 (struct mbx_entry
*)pkt
);
2035 qla2x00_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
2038 /* Type Not Supported. */
2039 ql_log(ql_log_warn
, vha
, 0x504a,
2040 "Received unknown response pkt type %x "
2041 "entry status=%x.\n",
2042 pkt
->entry_type
, pkt
->entry_status
);
2045 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2049 /* Adjust ring index */
2050 WRT_REG_WORD(ISP_RSP_Q_OUT(ha
, reg
), rsp
->ring_index
);
2054 qla2x00_handle_sense(srb_t
*sp
, uint8_t *sense_data
, uint32_t par_sense_len
,
2055 uint32_t sense_len
, struct rsp_que
*rsp
, int res
)
2057 struct scsi_qla_host
*vha
= sp
->vha
;
2058 struct scsi_cmnd
*cp
= GET_CMD_SP(sp
);
2059 uint32_t track_sense_len
;
2061 if (sense_len
>= SCSI_SENSE_BUFFERSIZE
)
2062 sense_len
= SCSI_SENSE_BUFFERSIZE
;
2064 SET_CMD_SENSE_LEN(sp
, sense_len
);
2065 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
);
2066 track_sense_len
= sense_len
;
2068 if (sense_len
> par_sense_len
)
2069 sense_len
= par_sense_len
;
2071 memcpy(cp
->sense_buffer
, sense_data
, sense_len
);
2073 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
+ sense_len
);
2074 track_sense_len
-= sense_len
;
2075 SET_CMD_SENSE_LEN(sp
, track_sense_len
);
2077 if (track_sense_len
!= 0) {
2078 rsp
->status_srb
= sp
;
2083 ql_dbg(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x301c,
2084 "Check condition Sense data, nexus%ld:%d:%llu cmd=%p.\n",
2085 sp
->vha
->host_no
, cp
->device
->id
, cp
->device
->lun
,
2087 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302b,
2088 cp
->sense_buffer
, sense_len
);
2092 struct scsi_dif_tuple
{
2093 __be16 guard
; /* Checksum */
2094 __be16 app_tag
; /* APPL identifier */
2095 __be32 ref_tag
; /* Target LBA or indirect LBA */
2099 * Checks the guard or meta-data for the type of error
2100 * detected by the HBA. In case of errors, we set the
2101 * ASC/ASCQ fields in the sense buffer with ILLEGAL_REQUEST
2102 * to indicate to the kernel that the HBA detected error.
2105 qla2x00_handle_dif_error(srb_t
*sp
, struct sts_entry_24xx
*sts24
)
2107 struct scsi_qla_host
*vha
= sp
->vha
;
2108 struct scsi_cmnd
*cmd
= GET_CMD_SP(sp
);
2109 uint8_t *ap
= &sts24
->data
[12];
2110 uint8_t *ep
= &sts24
->data
[20];
2111 uint32_t e_ref_tag
, a_ref_tag
;
2112 uint16_t e_app_tag
, a_app_tag
;
2113 uint16_t e_guard
, a_guard
;
2116 * swab32 of the "data" field in the beginning of qla2x00_status_entry()
2117 * would make guard field appear at offset 2
2119 a_guard
= le16_to_cpu(*(uint16_t *)(ap
+ 2));
2120 a_app_tag
= le16_to_cpu(*(uint16_t *)(ap
+ 0));
2121 a_ref_tag
= le32_to_cpu(*(uint32_t *)(ap
+ 4));
2122 e_guard
= le16_to_cpu(*(uint16_t *)(ep
+ 2));
2123 e_app_tag
= le16_to_cpu(*(uint16_t *)(ep
+ 0));
2124 e_ref_tag
= le32_to_cpu(*(uint32_t *)(ep
+ 4));
2126 ql_dbg(ql_dbg_io
, vha
, 0x3023,
2127 "iocb(s) %p Returned STATUS.\n", sts24
);
2129 ql_dbg(ql_dbg_io
, vha
, 0x3024,
2130 "DIF ERROR in cmd 0x%x lba 0x%llx act ref"
2131 " tag=0x%x, exp ref_tag=0x%x, act app tag=0x%x, exp app"
2132 " tag=0x%x, act guard=0x%x, exp guard=0x%x.\n",
2133 cmd
->cmnd
[0], (u64
)scsi_get_lba(cmd
), a_ref_tag
, e_ref_tag
,
2134 a_app_tag
, e_app_tag
, a_guard
, e_guard
);
2138 * For type 3: ref & app tag is all 'f's
2139 * For type 0,1,2: app tag is all 'f's
2141 if ((a_app_tag
== T10_PI_APP_ESCAPE
) &&
2142 ((scsi_get_prot_type(cmd
) != SCSI_PROT_DIF_TYPE3
) ||
2143 (a_ref_tag
== T10_PI_REF_ESCAPE
))) {
2144 uint32_t blocks_done
, resid
;
2145 sector_t lba_s
= scsi_get_lba(cmd
);
2147 /* 2TB boundary case covered automatically with this */
2148 blocks_done
= e_ref_tag
- (uint32_t)lba_s
+ 1;
2150 resid
= scsi_bufflen(cmd
) - (blocks_done
*
2151 cmd
->device
->sector_size
);
2153 scsi_set_resid(cmd
, resid
);
2154 cmd
->result
= DID_OK
<< 16;
2156 /* Update protection tag */
2157 if (scsi_prot_sg_count(cmd
)) {
2158 uint32_t i
, j
= 0, k
= 0, num_ent
;
2159 struct scatterlist
*sg
;
2160 struct t10_pi_tuple
*spt
;
2162 /* Patch the corresponding protection tags */
2163 scsi_for_each_prot_sg(cmd
, sg
,
2164 scsi_prot_sg_count(cmd
), i
) {
2165 num_ent
= sg_dma_len(sg
) / 8;
2166 if (k
+ num_ent
< blocks_done
) {
2170 j
= blocks_done
- k
- 1;
2175 if (k
!= blocks_done
) {
2176 ql_log(ql_log_warn
, vha
, 0x302f,
2177 "unexpected tag values tag:lba=%x:%llx)\n",
2178 e_ref_tag
, (unsigned long long)lba_s
);
2182 spt
= page_address(sg_page(sg
)) + sg
->offset
;
2185 spt
->app_tag
= T10_PI_APP_ESCAPE
;
2186 if (scsi_get_prot_type(cmd
) == SCSI_PROT_DIF_TYPE3
)
2187 spt
->ref_tag
= T10_PI_REF_ESCAPE
;
2194 if (e_guard
!= a_guard
) {
2195 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
2197 set_driver_byte(cmd
, DRIVER_SENSE
);
2198 set_host_byte(cmd
, DID_ABORT
);
2199 cmd
->result
|= SAM_STAT_CHECK_CONDITION
;
2204 if (e_ref_tag
!= a_ref_tag
) {
2205 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
2207 set_driver_byte(cmd
, DRIVER_SENSE
);
2208 set_host_byte(cmd
, DID_ABORT
);
2209 cmd
->result
|= SAM_STAT_CHECK_CONDITION
;
2213 /* check appl tag */
2214 if (e_app_tag
!= a_app_tag
) {
2215 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
2217 set_driver_byte(cmd
, DRIVER_SENSE
);
2218 set_host_byte(cmd
, DID_ABORT
);
2219 cmd
->result
|= SAM_STAT_CHECK_CONDITION
;
2227 qla25xx_process_bidir_status_iocb(scsi_qla_host_t
*vha
, void *pkt
,
2228 struct req_que
*req
, uint32_t index
)
2230 struct qla_hw_data
*ha
= vha
->hw
;
2232 uint16_t comp_status
;
2233 uint16_t scsi_status
;
2235 uint32_t rval
= EXT_STATUS_OK
;
2236 struct bsg_job
*bsg_job
= NULL
;
2237 struct fc_bsg_request
*bsg_request
;
2238 struct fc_bsg_reply
*bsg_reply
;
2240 struct sts_entry_24xx
*sts24
;
2241 sts
= (sts_entry_t
*) pkt
;
2242 sts24
= (struct sts_entry_24xx
*) pkt
;
2244 /* Validate handle. */
2245 if (index
>= req
->num_outstanding_cmds
) {
2246 ql_log(ql_log_warn
, vha
, 0x70af,
2247 "Invalid SCSI completion handle 0x%x.\n", index
);
2248 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2252 sp
= req
->outstanding_cmds
[index
];
2254 ql_log(ql_log_warn
, vha
, 0x70b0,
2255 "Req:%d: Invalid ISP SCSI completion handle(0x%x)\n",
2258 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2262 /* Free outstanding command slot. */
2263 req
->outstanding_cmds
[index
] = NULL
;
2264 bsg_job
= sp
->u
.bsg_job
;
2265 bsg_request
= bsg_job
->request
;
2266 bsg_reply
= bsg_job
->reply
;
2268 if (IS_FWI2_CAPABLE(ha
)) {
2269 comp_status
= le16_to_cpu(sts24
->comp_status
);
2270 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
2272 comp_status
= le16_to_cpu(sts
->comp_status
);
2273 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
2276 thread_id
= bsg_request
->rqst_data
.h_vendor
.vendor_cmd
[1];
2277 switch (comp_status
) {
2279 if (scsi_status
== 0) {
2280 bsg_reply
->reply_payload_rcv_len
=
2281 bsg_job
->reply_payload
.payload_len
;
2282 vha
->qla_stats
.input_bytes
+=
2283 bsg_reply
->reply_payload_rcv_len
;
2284 vha
->qla_stats
.input_requests
++;
2285 rval
= EXT_STATUS_OK
;
2289 case CS_DATA_OVERRUN
:
2290 ql_dbg(ql_dbg_user
, vha
, 0x70b1,
2291 "Command completed with data overrun thread_id=%d\n",
2293 rval
= EXT_STATUS_DATA_OVERRUN
;
2296 case CS_DATA_UNDERRUN
:
2297 ql_dbg(ql_dbg_user
, vha
, 0x70b2,
2298 "Command completed with data underrun thread_id=%d\n",
2300 rval
= EXT_STATUS_DATA_UNDERRUN
;
2302 case CS_BIDIR_RD_OVERRUN
:
2303 ql_dbg(ql_dbg_user
, vha
, 0x70b3,
2304 "Command completed with read data overrun thread_id=%d\n",
2306 rval
= EXT_STATUS_DATA_OVERRUN
;
2309 case CS_BIDIR_RD_WR_OVERRUN
:
2310 ql_dbg(ql_dbg_user
, vha
, 0x70b4,
2311 "Command completed with read and write data overrun "
2312 "thread_id=%d\n", thread_id
);
2313 rval
= EXT_STATUS_DATA_OVERRUN
;
2316 case CS_BIDIR_RD_OVERRUN_WR_UNDERRUN
:
2317 ql_dbg(ql_dbg_user
, vha
, 0x70b5,
2318 "Command completed with read data over and write data "
2319 "underrun thread_id=%d\n", thread_id
);
2320 rval
= EXT_STATUS_DATA_OVERRUN
;
2323 case CS_BIDIR_RD_UNDERRUN
:
2324 ql_dbg(ql_dbg_user
, vha
, 0x70b6,
2325 "Command completed with read data underrun "
2326 "thread_id=%d\n", thread_id
);
2327 rval
= EXT_STATUS_DATA_UNDERRUN
;
2330 case CS_BIDIR_RD_UNDERRUN_WR_OVERRUN
:
2331 ql_dbg(ql_dbg_user
, vha
, 0x70b7,
2332 "Command completed with read data under and write data "
2333 "overrun thread_id=%d\n", thread_id
);
2334 rval
= EXT_STATUS_DATA_UNDERRUN
;
2337 case CS_BIDIR_RD_WR_UNDERRUN
:
2338 ql_dbg(ql_dbg_user
, vha
, 0x70b8,
2339 "Command completed with read and write data underrun "
2340 "thread_id=%d\n", thread_id
);
2341 rval
= EXT_STATUS_DATA_UNDERRUN
;
2345 ql_dbg(ql_dbg_user
, vha
, 0x70b9,
2346 "Command completed with data DMA error thread_id=%d\n",
2348 rval
= EXT_STATUS_DMA_ERR
;
2352 ql_dbg(ql_dbg_user
, vha
, 0x70ba,
2353 "Command completed with timeout thread_id=%d\n",
2355 rval
= EXT_STATUS_TIMEOUT
;
2358 ql_dbg(ql_dbg_user
, vha
, 0x70bb,
2359 "Command completed with completion status=0x%x "
2360 "thread_id=%d\n", comp_status
, thread_id
);
2361 rval
= EXT_STATUS_ERR
;
2364 bsg_reply
->reply_payload_rcv_len
= 0;
2367 /* Return the vendor specific reply to API */
2368 bsg_reply
->reply_data
.vendor_reply
.vendor_rsp
[0] = rval
;
2369 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
2370 /* Always return DID_OK, bsg will send the vendor specific response
2371 * in this case only */
2372 sp
->done(sp
, DID_OK
<< 16);
2377 * qla2x00_status_entry() - Process a Status IOCB entry.
2378 * @vha: SCSI driver HA context
2379 * @rsp: response queue
2380 * @pkt: Entry pointer
2383 qla2x00_status_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, void *pkt
)
2387 struct scsi_cmnd
*cp
;
2389 struct sts_entry_24xx
*sts24
;
2390 uint16_t comp_status
;
2391 uint16_t scsi_status
;
2393 uint8_t lscsi_status
;
2395 uint32_t sense_len
, par_sense_len
, rsp_info_len
, resid_len
,
2397 uint8_t *rsp_info
, *sense_data
;
2398 struct qla_hw_data
*ha
= vha
->hw
;
2401 struct req_que
*req
;
2404 uint16_t state_flags
= 0;
2405 uint16_t retry_delay
= 0;
2407 sts
= (sts_entry_t
*) pkt
;
2408 sts24
= (struct sts_entry_24xx
*) pkt
;
2409 if (IS_FWI2_CAPABLE(ha
)) {
2410 comp_status
= le16_to_cpu(sts24
->comp_status
);
2411 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
2412 state_flags
= le16_to_cpu(sts24
->state_flags
);
2414 comp_status
= le16_to_cpu(sts
->comp_status
);
2415 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
2417 handle
= (uint32_t) LSW(sts
->handle
);
2418 que
= MSW(sts
->handle
);
2419 req
= ha
->req_q_map
[que
];
2421 /* Check for invalid queue pointer */
2423 que
>= find_first_zero_bit(ha
->req_qid_map
, ha
->max_req_queues
)) {
2424 ql_dbg(ql_dbg_io
, vha
, 0x3059,
2425 "Invalid status handle (0x%x): Bad req pointer. req=%p, "
2426 "que=%u.\n", sts
->handle
, req
, que
);
2430 /* Validate handle. */
2431 if (handle
< req
->num_outstanding_cmds
) {
2432 sp
= req
->outstanding_cmds
[handle
];
2434 ql_dbg(ql_dbg_io
, vha
, 0x3075,
2435 "%s(%ld): Already returned command for status handle (0x%x).\n",
2436 __func__
, vha
->host_no
, sts
->handle
);
2440 ql_dbg(ql_dbg_io
, vha
, 0x3017,
2441 "Invalid status handle, out of range (0x%x).\n",
2444 if (!test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
2445 if (IS_P3P_TYPE(ha
))
2446 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
2448 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2449 qla2xxx_wake_dpc(vha
);
2454 if (sp
->cmd_type
!= TYPE_SRB
) {
2455 req
->outstanding_cmds
[handle
] = NULL
;
2456 ql_dbg(ql_dbg_io
, vha
, 0x3015,
2457 "Unknown sp->cmd_type %x %p).\n",
2462 /* NVME completion. */
2463 if (sp
->type
== SRB_NVME_CMD
) {
2464 req
->outstanding_cmds
[handle
] = NULL
;
2465 qla24xx_nvme_iocb_entry(vha
, req
, pkt
, sp
);
2469 if (unlikely((state_flags
& BIT_1
) && (sp
->type
== SRB_BIDI_CMD
))) {
2470 qla25xx_process_bidir_status_iocb(vha
, pkt
, req
, handle
);
2474 /* Task Management completion. */
2475 if (sp
->type
== SRB_TM_CMD
) {
2476 qla24xx_tm_iocb_entry(vha
, req
, pkt
);
2480 /* Fast path completion. */
2481 if (comp_status
== CS_COMPLETE
&& scsi_status
== 0) {
2482 qla2x00_process_completed_request(vha
, req
, handle
);
2487 req
->outstanding_cmds
[handle
] = NULL
;
2488 cp
= GET_CMD_SP(sp
);
2490 ql_dbg(ql_dbg_io
, vha
, 0x3018,
2491 "Command already returned (0x%x/%p).\n",
2497 lscsi_status
= scsi_status
& STATUS_MASK
;
2499 fcport
= sp
->fcport
;
2502 sense_len
= par_sense_len
= rsp_info_len
= resid_len
=
2504 if (IS_FWI2_CAPABLE(ha
)) {
2505 if (scsi_status
& SS_SENSE_LEN_VALID
)
2506 sense_len
= le32_to_cpu(sts24
->sense_len
);
2507 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2508 rsp_info_len
= le32_to_cpu(sts24
->rsp_data_len
);
2509 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
))
2510 resid_len
= le32_to_cpu(sts24
->rsp_residual_count
);
2511 if (comp_status
== CS_DATA_UNDERRUN
)
2512 fw_resid_len
= le32_to_cpu(sts24
->residual_len
);
2513 rsp_info
= sts24
->data
;
2514 sense_data
= sts24
->data
;
2515 host_to_fcp_swap(sts24
->data
, sizeof(sts24
->data
));
2516 ox_id
= le16_to_cpu(sts24
->ox_id
);
2517 par_sense_len
= sizeof(sts24
->data
);
2518 /* Valid values of the retry delay timer are 0x1-0xffef */
2519 if (sts24
->retry_delay
> 0 && sts24
->retry_delay
< 0xfff1) {
2520 retry_delay
= sts24
->retry_delay
& 0x3fff;
2521 ql_dbg(ql_dbg_io
, sp
->vha
, 0x3033,
2522 "%s: scope=%#x retry_delay=%#x\n", __func__
,
2523 sts24
->retry_delay
>> 14, retry_delay
);
2526 if (scsi_status
& SS_SENSE_LEN_VALID
)
2527 sense_len
= le16_to_cpu(sts
->req_sense_length
);
2528 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2529 rsp_info_len
= le16_to_cpu(sts
->rsp_info_len
);
2530 resid_len
= le32_to_cpu(sts
->residual_length
);
2531 rsp_info
= sts
->rsp_info
;
2532 sense_data
= sts
->req_sense_data
;
2533 par_sense_len
= sizeof(sts
->req_sense_data
);
2536 /* Check for any FCP transport errors. */
2537 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
) {
2538 /* Sense data lies beyond any FCP RESPONSE data. */
2539 if (IS_FWI2_CAPABLE(ha
)) {
2540 sense_data
+= rsp_info_len
;
2541 par_sense_len
-= rsp_info_len
;
2543 if (rsp_info_len
> 3 && rsp_info
[3]) {
2544 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3019,
2545 "FCP I/O protocol failure (0x%x/0x%x).\n",
2546 rsp_info_len
, rsp_info
[3]);
2548 res
= DID_BUS_BUSY
<< 16;
2553 /* Check for overrun. */
2554 if (IS_FWI2_CAPABLE(ha
) && comp_status
== CS_COMPLETE
&&
2555 scsi_status
& SS_RESIDUAL_OVER
)
2556 comp_status
= CS_DATA_OVERRUN
;
2559 * Check retry_delay_timer value if we receive a busy or
2562 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
||
2563 lscsi_status
== SAM_STAT_BUSY
)
2564 qla2x00_set_retry_delay_timestamp(fcport
, retry_delay
);
2567 * Based on Host and scsi status generate status code for Linux
2569 switch (comp_status
) {
2572 if (scsi_status
== 0) {
2576 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
)) {
2578 scsi_set_resid(cp
, resid
);
2580 if (!lscsi_status
&&
2581 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2583 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301a,
2584 "Mid-layer underflow detected (0x%x of 0x%x bytes).\n",
2585 resid
, scsi_bufflen(cp
));
2587 res
= DID_ERROR
<< 16;
2591 res
= DID_OK
<< 16 | lscsi_status
;
2593 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2594 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301b,
2595 "QUEUE FULL detected.\n");
2599 if (lscsi_status
!= SS_CHECK_CONDITION
)
2602 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2603 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2606 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
, sense_len
,
2610 case CS_DATA_UNDERRUN
:
2611 /* Use F/W calculated residual length. */
2612 resid
= IS_FWI2_CAPABLE(ha
) ? fw_resid_len
: resid_len
;
2613 scsi_set_resid(cp
, resid
);
2614 if (scsi_status
& SS_RESIDUAL_UNDER
) {
2615 if (IS_FWI2_CAPABLE(ha
) && fw_resid_len
!= resid_len
) {
2616 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301d,
2617 "Dropped frame(s) detected (0x%x of 0x%x bytes).\n",
2618 resid
, scsi_bufflen(cp
));
2620 res
= DID_ERROR
<< 16 | lscsi_status
;
2621 goto check_scsi_status
;
2624 if (!lscsi_status
&&
2625 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2627 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301e,
2628 "Mid-layer underflow detected (0x%x of 0x%x bytes).\n",
2629 resid
, scsi_bufflen(cp
));
2631 res
= DID_ERROR
<< 16;
2634 } else if (lscsi_status
!= SAM_STAT_TASK_SET_FULL
&&
2635 lscsi_status
!= SAM_STAT_BUSY
) {
2637 * scsi status of task set and busy are considered to be
2638 * task not completed.
2641 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301f,
2642 "Dropped frame(s) detected (0x%x of 0x%x bytes).\n",
2643 resid
, scsi_bufflen(cp
));
2645 res
= DID_ERROR
<< 16 | lscsi_status
;
2646 goto check_scsi_status
;
2648 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3030,
2649 "scsi_status: 0x%x, lscsi_status: 0x%x\n",
2650 scsi_status
, lscsi_status
);
2653 res
= DID_OK
<< 16 | lscsi_status
;
2658 * Check to see if SCSI Status is non zero. If so report SCSI
2661 if (lscsi_status
!= 0) {
2662 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2663 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3020,
2664 "QUEUE FULL detected.\n");
2668 if (lscsi_status
!= SS_CHECK_CONDITION
)
2671 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2672 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2675 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
,
2676 sense_len
, rsp
, res
);
2680 case CS_PORT_LOGGED_OUT
:
2681 case CS_PORT_CONFIG_CHG
:
2684 case CS_PORT_UNAVAILABLE
:
2689 * We are going to have the fc class block the rport
2690 * while we try to recover so instruct the mid layer
2691 * to requeue until the class decides how to handle this.
2693 res
= DID_TRANSPORT_DISRUPTED
<< 16;
2695 if (comp_status
== CS_TIMEOUT
) {
2696 if (IS_FWI2_CAPABLE(ha
))
2698 else if ((le16_to_cpu(sts
->status_flags
) &
2699 SF_LOGOUT_SENT
) == 0)
2703 if (atomic_read(&fcport
->state
) == FCS_ONLINE
) {
2704 ql_dbg(ql_dbg_disc
, fcport
->vha
, 0x3021,
2705 "Port to be marked lost on fcport=%02x%02x%02x, current "
2706 "port state= %s comp_status %x.\n", fcport
->d_id
.b
.domain
,
2707 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
2708 port_state_str
[atomic_read(&fcport
->state
)],
2711 qla2x00_mark_device_lost(fcport
->vha
, fcport
, 1, 1);
2712 qlt_schedule_sess_for_deletion(fcport
);
2718 res
= DID_RESET
<< 16;
2722 logit
= qla2x00_handle_dif_error(sp
, sts24
);
2727 res
= DID_ERROR
<< 16;
2729 if (!IS_PI_SPLIT_DET_CAPABLE(ha
))
2732 if (state_flags
& BIT_4
)
2733 scmd_printk(KERN_WARNING
, cp
,
2734 "Unsupported device '%s' found.\n",
2735 cp
->device
->vendor
);
2739 ql_log(ql_log_info
, fcport
->vha
, 0x3022,
2740 "CS_DMA error: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu portid=%06x oxid=0x%x cdb=%10phN len=0x%x rsp_info=0x%x resid=0x%x fw_resid=0x%x sp=%p cp=%p.\n",
2741 comp_status
, scsi_status
, res
, vha
->host_no
,
2742 cp
->device
->id
, cp
->device
->lun
, fcport
->d_id
.b24
,
2743 ox_id
, cp
->cmnd
, scsi_bufflen(cp
), rsp_info_len
,
2744 resid_len
, fw_resid_len
, sp
, cp
);
2745 ql_dump_buffer(ql_dbg_tgt
+ ql_dbg_verbose
, vha
, 0xe0ee,
2746 pkt
, sizeof(*sts24
));
2747 res
= DID_ERROR
<< 16;
2750 res
= DID_ERROR
<< 16;
2756 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3022,
2757 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
2758 "portid=%02x%02x%02x oxid=0x%x cdb=%10phN len=0x%x "
2759 "rsp_info=0x%x resid=0x%x fw_resid=0x%x sp=%p cp=%p.\n",
2760 comp_status
, scsi_status
, res
, vha
->host_no
,
2761 cp
->device
->id
, cp
->device
->lun
, fcport
->d_id
.b
.domain
,
2762 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
, ox_id
,
2763 cp
->cmnd
, scsi_bufflen(cp
), rsp_info_len
,
2764 resid_len
, fw_resid_len
, sp
, cp
);
2766 if (rsp
->status_srb
== NULL
)
2771 * qla2x00_status_cont_entry() - Process a Status Continuations entry.
2772 * @rsp: response queue
2773 * @pkt: Entry pointer
2775 * Extended sense data.
2778 qla2x00_status_cont_entry(struct rsp_que
*rsp
, sts_cont_entry_t
*pkt
)
2780 uint8_t sense_sz
= 0;
2781 struct qla_hw_data
*ha
= rsp
->hw
;
2782 struct scsi_qla_host
*vha
= pci_get_drvdata(ha
->pdev
);
2783 srb_t
*sp
= rsp
->status_srb
;
2784 struct scsi_cmnd
*cp
;
2788 if (!sp
|| !GET_CMD_SENSE_LEN(sp
))
2791 sense_len
= GET_CMD_SENSE_LEN(sp
);
2792 sense_ptr
= GET_CMD_SENSE_PTR(sp
);
2794 cp
= GET_CMD_SP(sp
);
2796 ql_log(ql_log_warn
, vha
, 0x3025,
2797 "cmd is NULL: already returned to OS (sp=%p).\n", sp
);
2799 rsp
->status_srb
= NULL
;
2803 if (sense_len
> sizeof(pkt
->data
))
2804 sense_sz
= sizeof(pkt
->data
);
2806 sense_sz
= sense_len
;
2808 /* Move sense data. */
2809 if (IS_FWI2_CAPABLE(ha
))
2810 host_to_fcp_swap(pkt
->data
, sizeof(pkt
->data
));
2811 memcpy(sense_ptr
, pkt
->data
, sense_sz
);
2812 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302c,
2813 sense_ptr
, sense_sz
);
2815 sense_len
-= sense_sz
;
2816 sense_ptr
+= sense_sz
;
2818 SET_CMD_SENSE_PTR(sp
, sense_ptr
);
2819 SET_CMD_SENSE_LEN(sp
, sense_len
);
2821 /* Place command on done queue. */
2822 if (sense_len
== 0) {
2823 rsp
->status_srb
= NULL
;
2824 sp
->done(sp
, cp
->result
);
2829 * qla2x00_error_entry() - Process an error entry.
2830 * @vha: SCSI driver HA context
2831 * @rsp: response queue
2832 * @pkt: Entry pointer
2833 * return : 1=allow further error analysis. 0=no additional error analysis.
2836 qla2x00_error_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, sts_entry_t
*pkt
)
2839 struct qla_hw_data
*ha
= vha
->hw
;
2840 const char func
[] = "ERROR-IOCB";
2841 uint16_t que
= MSW(pkt
->handle
);
2842 struct req_que
*req
= NULL
;
2843 int res
= DID_ERROR
<< 16;
2845 ql_dbg(ql_dbg_async
, vha
, 0x502a,
2846 "iocb type %xh with error status %xh, handle %xh, rspq id %d\n",
2847 pkt
->entry_type
, pkt
->entry_status
, pkt
->handle
, rsp
->id
);
2849 if (que
>= ha
->max_req_queues
|| !ha
->req_q_map
[que
])
2852 req
= ha
->req_q_map
[que
];
2854 if (pkt
->entry_status
& RF_BUSY
)
2855 res
= DID_BUS_BUSY
<< 16;
2857 if ((pkt
->handle
& ~QLA_TGT_HANDLE_MASK
) == QLA_TGT_SKIP_HANDLE
)
2860 switch (pkt
->entry_type
) {
2861 case NOTIFY_ACK_TYPE
:
2863 case STATUS_CONT_TYPE
:
2864 case LOGINOUT_PORT_IOCB_TYPE
:
2867 case ABORT_IOCB_TYPE
:
2870 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2877 case ABTS_RESP_24XX
:
2883 ql_log(ql_log_warn
, vha
, 0x5030,
2884 "Error entry - invalid handle/queue (%04x).\n", que
);
2889 * qla24xx_mbx_completion() - Process mailbox command completions.
2890 * @vha: SCSI driver HA context
2891 * @mb0: Mailbox0 register
2894 qla24xx_mbx_completion(scsi_qla_host_t
*vha
, uint16_t mb0
)
2898 uint16_t __iomem
*wptr
;
2899 struct qla_hw_data
*ha
= vha
->hw
;
2900 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
2902 /* Read all mbox registers? */
2903 WARN_ON_ONCE(ha
->mbx_count
> 32);
2904 mboxes
= (1ULL << ha
->mbx_count
) - 1;
2906 ql_dbg(ql_dbg_async
, vha
, 0x504e, "MBX pointer ERROR.\n");
2908 mboxes
= ha
->mcp
->in_mb
;
2910 /* Load return mailbox registers. */
2911 ha
->flags
.mbox_int
= 1;
2912 ha
->mailbox_out
[0] = mb0
;
2914 wptr
= (uint16_t __iomem
*)®
->mailbox1
;
2916 for (cnt
= 1; cnt
< ha
->mbx_count
; cnt
++) {
2918 ha
->mailbox_out
[cnt
] = RD_REG_WORD(wptr
);
2926 qla24xx_abort_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
2927 struct abort_entry_24xx
*pkt
)
2929 const char func
[] = "ABT_IOCB";
2931 struct srb_iocb
*abt
;
2933 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2937 abt
= &sp
->u
.iocb_cmd
;
2938 abt
->u
.abt
.comp_status
= le16_to_cpu(pkt
->nport_handle
);
2942 void qla24xx_nvme_ls4_iocb(struct scsi_qla_host
*vha
,
2943 struct pt_ls4_request
*pkt
, struct req_que
*req
)
2946 const char func
[] = "LS4_IOCB";
2947 uint16_t comp_status
;
2949 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2953 comp_status
= le16_to_cpu(pkt
->status
);
2954 sp
->done(sp
, comp_status
);
2958 * qla24xx_process_response_queue() - Process response queue entries.
2959 * @vha: SCSI driver HA context
2960 * @rsp: response queue
2962 void qla24xx_process_response_queue(struct scsi_qla_host
*vha
,
2963 struct rsp_que
*rsp
)
2965 struct sts_entry_24xx
*pkt
;
2966 struct qla_hw_data
*ha
= vha
->hw
;
2968 if (!ha
->flags
.fw_started
)
2971 if (rsp
->qpair
->cpuid
!= smp_processor_id())
2972 qla_cpu_update(rsp
->qpair
, smp_processor_id());
2974 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
2975 pkt
= (struct sts_entry_24xx
*)rsp
->ring_ptr
;
2978 if (rsp
->ring_index
== rsp
->length
) {
2979 rsp
->ring_index
= 0;
2980 rsp
->ring_ptr
= rsp
->ring
;
2985 if (pkt
->entry_status
!= 0) {
2986 if (qla2x00_error_entry(vha
, rsp
, (sts_entry_t
*) pkt
))
2989 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2995 switch (pkt
->entry_type
) {
2997 qla2x00_status_entry(vha
, rsp
, pkt
);
2999 case STATUS_CONT_TYPE
:
3000 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
3002 case VP_RPT_ID_IOCB_TYPE
:
3003 qla24xx_report_id_acquisition(vha
,
3004 (struct vp_rpt_id_entry_24xx
*)pkt
);
3006 case LOGINOUT_PORT_IOCB_TYPE
:
3007 qla24xx_logio_entry(vha
, rsp
->req
,
3008 (struct logio_entry_24xx
*)pkt
);
3011 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
3014 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, ELS_IOCB_TYPE
);
3016 case ABTS_RECV_24XX
:
3017 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
3018 /* ensure that the ATIO queue is empty */
3019 qlt_handle_abts_recv(vha
, rsp
,
3023 qlt_24xx_process_atio_queue(vha
, 1);
3026 case ABTS_RESP_24XX
:
3029 qlt_response_pkt_all_vps(vha
, rsp
, (response_t
*)pkt
);
3031 case PT_LS4_REQUEST
:
3032 qla24xx_nvme_ls4_iocb(vha
, (struct pt_ls4_request
*)pkt
,
3035 case NOTIFY_ACK_TYPE
:
3036 if (pkt
->handle
== QLA_TGT_SKIP_HANDLE
)
3037 qlt_response_pkt_all_vps(vha
, rsp
,
3040 qla24xxx_nack_iocb_entry(vha
, rsp
->req
,
3041 (struct nack_to_isp
*)pkt
);
3044 /* Do nothing in this case, this check is to prevent it
3045 * from falling into default case
3048 case ABORT_IOCB_TYPE
:
3049 qla24xx_abort_iocb_entry(vha
, rsp
->req
,
3050 (struct abort_entry_24xx
*)pkt
);
3053 qla24xx_mbx_iocb_entry(vha
, rsp
->req
,
3054 (struct mbx_24xx_entry
*)pkt
);
3056 case VP_CTRL_IOCB_TYPE
:
3057 qla_ctrlvp_completed(vha
, rsp
->req
,
3058 (struct vp_ctrl_entry_24xx
*)pkt
);
3061 /* Type Not Supported. */
3062 ql_dbg(ql_dbg_async
, vha
, 0x5042,
3063 "Received unknown response pkt type %x "
3064 "entry status=%x.\n",
3065 pkt
->entry_type
, pkt
->entry_status
);
3068 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
3072 /* Adjust ring index */
3073 if (IS_P3P_TYPE(ha
)) {
3074 struct device_reg_82xx __iomem
*reg
= &ha
->iobase
->isp82
;
3075 WRT_REG_DWORD(®
->rsp_q_out
[0], rsp
->ring_index
);
3077 WRT_REG_DWORD(rsp
->rsp_q_out
, rsp
->ring_index
);
3082 qla2xxx_check_risc_status(scsi_qla_host_t
*vha
)
3086 struct qla_hw_data
*ha
= vha
->hw
;
3087 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
3089 if (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
3094 WRT_REG_DWORD(®
->iobase_addr
, 0x7C00);
3095 RD_REG_DWORD(®
->iobase_addr
);
3096 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
3097 for (cnt
= 10000; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
3098 rval
== QLA_SUCCESS
; cnt
--) {
3100 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
3103 rval
= QLA_FUNCTION_TIMEOUT
;
3105 if (rval
== QLA_SUCCESS
)
3109 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
3110 for (cnt
= 100; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
3111 rval
== QLA_SUCCESS
; cnt
--) {
3113 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
3116 rval
= QLA_FUNCTION_TIMEOUT
;
3118 if (rval
!= QLA_SUCCESS
)
3122 if (RD_REG_DWORD(®
->iobase_c8
) & BIT_3
)
3123 ql_log(ql_log_info
, vha
, 0x504c,
3124 "Additional code -- 0x55AA.\n");
3127 WRT_REG_DWORD(®
->iobase_window
, 0x0000);
3128 RD_REG_DWORD(®
->iobase_window
);
3132 * qla24xx_intr_handler() - Process interrupts for the ISP23xx and ISP24xx.
3133 * @irq: interrupt number
3134 * @dev_id: SCSI driver HA context
3136 * Called by system whenever the host adapter generates an interrupt.
3138 * Returns handled flag.
3141 qla24xx_intr_handler(int irq
, void *dev_id
)
3143 scsi_qla_host_t
*vha
;
3144 struct qla_hw_data
*ha
;
3145 struct device_reg_24xx __iomem
*reg
;
3151 struct rsp_que
*rsp
;
3152 unsigned long flags
;
3153 bool process_atio
= false;
3155 rsp
= (struct rsp_que
*) dev_id
;
3157 ql_log(ql_log_info
, NULL
, 0x5059,
3158 "%s: NULL response queue pointer.\n", __func__
);
3163 reg
= &ha
->iobase
->isp24
;
3166 if (unlikely(pci_channel_offline(ha
->pdev
)))
3169 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3170 vha
= pci_get_drvdata(ha
->pdev
);
3171 for (iter
= 50; iter
--; ) {
3172 stat
= RD_REG_DWORD(®
->host_status
);
3173 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
3175 if (stat
& HSRX_RISC_PAUSED
) {
3176 if (unlikely(pci_channel_offline(ha
->pdev
)))
3179 hccr
= RD_REG_DWORD(®
->hccr
);
3181 ql_log(ql_log_warn
, vha
, 0x504b,
3182 "RISC paused -- HCCR=%x, Dumping firmware.\n",
3185 qla2xxx_check_risc_status(vha
);
3187 ha
->isp_ops
->fw_dump(vha
, 1);
3188 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
3190 } else if ((stat
& HSRX_RISC_INT
) == 0)
3193 switch (stat
& 0xff) {
3194 case INTR_ROM_MB_SUCCESS
:
3195 case INTR_ROM_MB_FAILED
:
3196 case INTR_MB_SUCCESS
:
3197 case INTR_MB_FAILED
:
3198 qla24xx_mbx_completion(vha
, MSW(stat
));
3199 status
|= MBX_INTERRUPT
;
3202 case INTR_ASYNC_EVENT
:
3204 mb
[1] = RD_REG_WORD(®
->mailbox1
);
3205 mb
[2] = RD_REG_WORD(®
->mailbox2
);
3206 mb
[3] = RD_REG_WORD(®
->mailbox3
);
3207 qla2x00_async_event(vha
, rsp
, mb
);
3209 case INTR_RSP_QUE_UPDATE
:
3210 case INTR_RSP_QUE_UPDATE_83XX
:
3211 qla24xx_process_response_queue(vha
, rsp
);
3213 case INTR_ATIO_QUE_UPDATE_27XX
:
3214 case INTR_ATIO_QUE_UPDATE
:
3215 process_atio
= true;
3217 case INTR_ATIO_RSP_QUE_UPDATE
:
3218 process_atio
= true;
3219 qla24xx_process_response_queue(vha
, rsp
);
3222 ql_dbg(ql_dbg_async
, vha
, 0x504f,
3223 "Unrecognized interrupt type (%d).\n", stat
* 0xff);
3226 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
3227 RD_REG_DWORD_RELAXED(®
->hccr
);
3228 if (unlikely(IS_QLA83XX(ha
) && (ha
->pdev
->revision
== 1)))
3231 qla2x00_handle_mbx_completion(ha
, status
);
3232 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3235 spin_lock_irqsave(&ha
->tgt
.atio_lock
, flags
);
3236 qlt_24xx_process_atio_queue(vha
, 0);
3237 spin_unlock_irqrestore(&ha
->tgt
.atio_lock
, flags
);
3244 qla24xx_msix_rsp_q(int irq
, void *dev_id
)
3246 struct qla_hw_data
*ha
;
3247 struct rsp_que
*rsp
;
3248 struct device_reg_24xx __iomem
*reg
;
3249 struct scsi_qla_host
*vha
;
3250 unsigned long flags
;
3252 rsp
= (struct rsp_que
*) dev_id
;
3254 ql_log(ql_log_info
, NULL
, 0x505a,
3255 "%s: NULL response queue pointer.\n", __func__
);
3259 reg
= &ha
->iobase
->isp24
;
3261 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3263 vha
= pci_get_drvdata(ha
->pdev
);
3264 qla24xx_process_response_queue(vha
, rsp
);
3265 if (!ha
->flags
.disable_msix_handshake
) {
3266 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
3267 RD_REG_DWORD_RELAXED(®
->hccr
);
3269 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3275 qla24xx_msix_default(int irq
, void *dev_id
)
3277 scsi_qla_host_t
*vha
;
3278 struct qla_hw_data
*ha
;
3279 struct rsp_que
*rsp
;
3280 struct device_reg_24xx __iomem
*reg
;
3285 unsigned long flags
;
3286 bool process_atio
= false;
3288 rsp
= (struct rsp_que
*) dev_id
;
3290 ql_log(ql_log_info
, NULL
, 0x505c,
3291 "%s: NULL response queue pointer.\n", __func__
);
3295 reg
= &ha
->iobase
->isp24
;
3298 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3299 vha
= pci_get_drvdata(ha
->pdev
);
3301 stat
= RD_REG_DWORD(®
->host_status
);
3302 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
3304 if (stat
& HSRX_RISC_PAUSED
) {
3305 if (unlikely(pci_channel_offline(ha
->pdev
)))
3308 hccr
= RD_REG_DWORD(®
->hccr
);
3310 ql_log(ql_log_info
, vha
, 0x5050,
3311 "RISC paused -- HCCR=%x, Dumping firmware.\n",
3314 qla2xxx_check_risc_status(vha
);
3316 ha
->isp_ops
->fw_dump(vha
, 1);
3317 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
3319 } else if ((stat
& HSRX_RISC_INT
) == 0)
3322 switch (stat
& 0xff) {
3323 case INTR_ROM_MB_SUCCESS
:
3324 case INTR_ROM_MB_FAILED
:
3325 case INTR_MB_SUCCESS
:
3326 case INTR_MB_FAILED
:
3327 qla24xx_mbx_completion(vha
, MSW(stat
));
3328 status
|= MBX_INTERRUPT
;
3331 case INTR_ASYNC_EVENT
:
3333 mb
[1] = RD_REG_WORD(®
->mailbox1
);
3334 mb
[2] = RD_REG_WORD(®
->mailbox2
);
3335 mb
[3] = RD_REG_WORD(®
->mailbox3
);
3336 qla2x00_async_event(vha
, rsp
, mb
);
3338 case INTR_RSP_QUE_UPDATE
:
3339 case INTR_RSP_QUE_UPDATE_83XX
:
3340 qla24xx_process_response_queue(vha
, rsp
);
3342 case INTR_ATIO_QUE_UPDATE_27XX
:
3343 case INTR_ATIO_QUE_UPDATE
:
3344 process_atio
= true;
3346 case INTR_ATIO_RSP_QUE_UPDATE
:
3347 process_atio
= true;
3348 qla24xx_process_response_queue(vha
, rsp
);
3351 ql_dbg(ql_dbg_async
, vha
, 0x5051,
3352 "Unrecognized interrupt type (%d).\n", stat
& 0xff);
3355 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
3357 qla2x00_handle_mbx_completion(ha
, status
);
3358 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3361 spin_lock_irqsave(&ha
->tgt
.atio_lock
, flags
);
3362 qlt_24xx_process_atio_queue(vha
, 0);
3363 spin_unlock_irqrestore(&ha
->tgt
.atio_lock
, flags
);
3370 qla2xxx_msix_rsp_q(int irq
, void *dev_id
)
3372 struct qla_hw_data
*ha
;
3373 struct qla_qpair
*qpair
;
3374 struct device_reg_24xx __iomem
*reg
;
3375 unsigned long flags
;
3379 ql_log(ql_log_info
, NULL
, 0x505b,
3380 "%s: NULL response queue pointer.\n", __func__
);
3385 /* Clear the interrupt, if enabled, for this response queue */
3386 if (unlikely(!ha
->flags
.disable_msix_handshake
)) {
3387 reg
= &ha
->iobase
->isp24
;
3388 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3389 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
3390 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3393 queue_work(ha
->wq
, &qpair
->q_work
);
3398 /* Interrupt handling helpers. */
3400 struct qla_init_msix_entry
{
3402 irq_handler_t handler
;
3405 static const struct qla_init_msix_entry msix_entries
[] = {
3406 { "default", qla24xx_msix_default
},
3407 { "rsp_q", qla24xx_msix_rsp_q
},
3408 { "atio_q", qla83xx_msix_atio_q
},
3409 { "qpair_multiq", qla2xxx_msix_rsp_q
},
3412 static const struct qla_init_msix_entry qla82xx_msix_entries
[] = {
3413 { "qla2xxx (default)", qla82xx_msix_default
},
3414 { "qla2xxx (rsp_q)", qla82xx_msix_rsp_q
},
3418 qla24xx_enable_msix(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
3421 struct qla_msix_entry
*qentry
;
3422 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3423 int min_vecs
= QLA_BASE_VECTORS
;
3424 struct irq_affinity desc
= {
3425 .pre_vectors
= QLA_BASE_VECTORS
,
3428 if (QLA_TGT_MODE_ENABLED() && (ql2xenablemsix
!= 0) &&
3429 IS_ATIO_MSIX_CAPABLE(ha
)) {
3434 if (USER_CTRL_IRQ(ha
) || !ha
->mqiobase
) {
3435 /* user wants to control IRQ setting for target mode */
3436 ret
= pci_alloc_irq_vectors(ha
->pdev
, min_vecs
,
3437 ha
->msix_count
, PCI_IRQ_MSIX
);
3439 ret
= pci_alloc_irq_vectors_affinity(ha
->pdev
, min_vecs
,
3440 ha
->msix_count
, PCI_IRQ_MSIX
| PCI_IRQ_AFFINITY
,
3444 ql_log(ql_log_fatal
, vha
, 0x00c7,
3445 "MSI-X: Failed to enable support, "
3446 "giving up -- %d/%d.\n",
3447 ha
->msix_count
, ret
);
3449 } else if (ret
< ha
->msix_count
) {
3450 ql_log(ql_log_warn
, vha
, 0x00c6,
3451 "MSI-X: Failed to enable support "
3452 "with %d vectors, using %d vectors.\n",
3453 ha
->msix_count
, ret
);
3454 ha
->msix_count
= ret
;
3455 /* Recalculate queue values */
3456 if (ha
->mqiobase
&& (ql2xmqsupport
|| ql2xnvmeenable
)) {
3457 ha
->max_req_queues
= ha
->msix_count
- 1;
3459 /* ATIOQ needs 1 vector. That's 1 less QPair */
3460 if (QLA_TGT_MODE_ENABLED())
3461 ha
->max_req_queues
--;
3463 ha
->max_rsp_queues
= ha
->max_req_queues
;
3465 ha
->max_qpairs
= ha
->max_req_queues
- 1;
3466 ql_dbg_pci(ql_dbg_init
, ha
->pdev
, 0x0190,
3467 "Adjusted Max no of queues pairs: %d.\n", ha
->max_qpairs
);
3470 vha
->irq_offset
= desc
.pre_vectors
;
3471 ha
->msix_entries
= kcalloc(ha
->msix_count
,
3472 sizeof(struct qla_msix_entry
),
3474 if (!ha
->msix_entries
) {
3475 ql_log(ql_log_fatal
, vha
, 0x00c8,
3476 "Failed to allocate memory for ha->msix_entries.\n");
3480 ha
->flags
.msix_enabled
= 1;
3482 for (i
= 0; i
< ha
->msix_count
; i
++) {
3483 qentry
= &ha
->msix_entries
[i
];
3484 qentry
->vector
= pci_irq_vector(ha
->pdev
, i
);
3486 qentry
->have_irq
= 0;
3488 qentry
->handle
= NULL
;
3491 /* Enable MSI-X vectors for the base queue */
3492 for (i
= 0; i
< QLA_BASE_VECTORS
; i
++) {
3493 qentry
= &ha
->msix_entries
[i
];
3494 qentry
->handle
= rsp
;
3496 scnprintf(qentry
->name
, sizeof(qentry
->name
),
3497 "qla2xxx%lu_%s", vha
->host_no
, msix_entries
[i
].name
);
3498 if (IS_P3P_TYPE(ha
))
3499 ret
= request_irq(qentry
->vector
,
3500 qla82xx_msix_entries
[i
].handler
,
3501 0, qla82xx_msix_entries
[i
].name
, rsp
);
3503 ret
= request_irq(qentry
->vector
,
3504 msix_entries
[i
].handler
,
3505 0, qentry
->name
, rsp
);
3507 goto msix_register_fail
;
3508 qentry
->have_irq
= 1;
3513 * If target mode is enable, also request the vector for the ATIO
3516 if (QLA_TGT_MODE_ENABLED() && (ql2xenablemsix
!= 0) &&
3517 IS_ATIO_MSIX_CAPABLE(ha
)) {
3518 qentry
= &ha
->msix_entries
[QLA_ATIO_VECTOR
];
3520 qentry
->handle
= rsp
;
3521 scnprintf(qentry
->name
, sizeof(qentry
->name
),
3522 "qla2xxx%lu_%s", vha
->host_no
,
3523 msix_entries
[QLA_ATIO_VECTOR
].name
);
3525 ret
= request_irq(qentry
->vector
,
3526 msix_entries
[QLA_ATIO_VECTOR
].handler
,
3527 0, qentry
->name
, rsp
);
3528 qentry
->have_irq
= 1;
3533 ql_log(ql_log_fatal
, vha
, 0x00cb,
3534 "MSI-X: unable to register handler -- %x/%d.\n",
3535 qentry
->vector
, ret
);
3536 qla2x00_free_irqs(vha
);
3541 /* Enable MSI-X vector for response queue update for queue 0 */
3542 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
3543 if (ha
->msixbase
&& ha
->mqiobase
&&
3544 (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1 ||
3549 (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1 ||
3552 ql_dbg(ql_dbg_multiq
, vha
, 0xc005,
3553 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3554 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3555 ql_dbg(ql_dbg_init
, vha
, 0x0055,
3556 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3557 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3564 qla2x00_request_irqs(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
3566 int ret
= QLA_FUNCTION_FAILED
;
3567 device_reg_t
*reg
= ha
->iobase
;
3568 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3570 /* If possible, enable MSI-X. */
3571 if (ql2xenablemsix
== 0 || (!IS_QLA2432(ha
) && !IS_QLA2532(ha
) &&
3572 !IS_QLA8432(ha
) && !IS_CNA_CAPABLE(ha
) && !IS_QLA2031(ha
) &&
3573 !IS_QLAFX00(ha
) && !IS_QLA27XX(ha
)))
3576 if (ql2xenablemsix
== 2)
3579 if (ha
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_HP
&&
3580 (ha
->pdev
->subsystem_device
== 0x7040 ||
3581 ha
->pdev
->subsystem_device
== 0x7041 ||
3582 ha
->pdev
->subsystem_device
== 0x1705)) {
3583 ql_log(ql_log_warn
, vha
, 0x0034,
3584 "MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x%X,0x%X).\n",
3585 ha
->pdev
->subsystem_vendor
,
3586 ha
->pdev
->subsystem_device
);
3590 if (IS_QLA2432(ha
) && (ha
->pdev
->revision
< QLA_MSIX_CHIP_REV_24XX
)) {
3591 ql_log(ql_log_warn
, vha
, 0x0035,
3592 "MSI-X; Unsupported ISP2432 (0x%X, 0x%X).\n",
3593 ha
->pdev
->revision
, QLA_MSIX_CHIP_REV_24XX
);
3597 ret
= qla24xx_enable_msix(ha
, rsp
);
3599 ql_dbg(ql_dbg_init
, vha
, 0x0036,
3600 "MSI-X: Enabled (0x%X, 0x%X).\n",
3601 ha
->chip_revision
, ha
->fw_attributes
);
3602 goto clear_risc_ints
;
3607 ql_log(ql_log_info
, vha
, 0x0037,
3608 "Falling back-to MSI mode -%d.\n", ret
);
3610 if (!IS_QLA24XX(ha
) && !IS_QLA2532(ha
) && !IS_QLA8432(ha
) &&
3611 !IS_QLA8001(ha
) && !IS_P3P_TYPE(ha
) && !IS_QLAFX00(ha
) &&
3615 ret
= pci_alloc_irq_vectors(ha
->pdev
, 1, 1, PCI_IRQ_MSI
);
3617 ql_dbg(ql_dbg_init
, vha
, 0x0038,
3619 ha
->flags
.msi_enabled
= 1;
3621 ql_log(ql_log_warn
, vha
, 0x0039,
3622 "Falling back-to INTa mode -- %d.\n", ret
);
3625 /* Skip INTx on ISP82xx. */
3626 if (!ha
->flags
.msi_enabled
&& IS_QLA82XX(ha
))
3627 return QLA_FUNCTION_FAILED
;
3629 ret
= request_irq(ha
->pdev
->irq
, ha
->isp_ops
->intr_handler
,
3630 ha
->flags
.msi_enabled
? 0 : IRQF_SHARED
,
3631 QLA2XXX_DRIVER_NAME
, rsp
);
3633 ql_log(ql_log_warn
, vha
, 0x003a,
3634 "Failed to reserve interrupt %d already in use.\n",
3637 } else if (!ha
->flags
.msi_enabled
) {
3638 ql_dbg(ql_dbg_init
, vha
, 0x0125,
3639 "INTa mode: Enabled.\n");
3640 ha
->flags
.mr_intr_valid
= 1;
3644 if (IS_FWI2_CAPABLE(ha
) || IS_QLAFX00(ha
))
3647 spin_lock_irq(&ha
->hardware_lock
);
3648 WRT_REG_WORD(®
->isp
.semaphore
, 0);
3649 spin_unlock_irq(&ha
->hardware_lock
);
3656 qla2x00_free_irqs(scsi_qla_host_t
*vha
)
3658 struct qla_hw_data
*ha
= vha
->hw
;
3659 struct rsp_que
*rsp
;
3660 struct qla_msix_entry
*qentry
;
3664 * We need to check that ha->rsp_q_map is valid in case we are called
3665 * from a probe failure context.
3667 if (!ha
->rsp_q_map
|| !ha
->rsp_q_map
[0])
3669 rsp
= ha
->rsp_q_map
[0];
3671 if (ha
->flags
.msix_enabled
) {
3672 for (i
= 0; i
< ha
->msix_count
; i
++) {
3673 qentry
= &ha
->msix_entries
[i
];
3674 if (qentry
->have_irq
) {
3675 irq_set_affinity_notifier(qentry
->vector
, NULL
);
3676 free_irq(pci_irq_vector(ha
->pdev
, i
), qentry
->handle
);
3679 kfree(ha
->msix_entries
);
3680 ha
->msix_entries
= NULL
;
3681 ha
->flags
.msix_enabled
= 0;
3682 ql_dbg(ql_dbg_init
, vha
, 0x0042,
3683 "Disabled MSI-X.\n");
3685 free_irq(pci_irq_vector(ha
->pdev
, 0), rsp
);
3689 pci_free_irq_vectors(ha
->pdev
);
3692 int qla25xx_request_irq(struct qla_hw_data
*ha
, struct qla_qpair
*qpair
,
3693 struct qla_msix_entry
*msix
, int vector_type
)
3695 const struct qla_init_msix_entry
*intr
= &msix_entries
[vector_type
];
3696 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3699 scnprintf(msix
->name
, sizeof(msix
->name
),
3700 "qla2xxx%lu_qpair%d", vha
->host_no
, qpair
->id
);
3701 ret
= request_irq(msix
->vector
, intr
->handler
, 0, msix
->name
, qpair
);
3703 ql_log(ql_log_fatal
, vha
, 0x00e6,
3704 "MSI-X: Unable to register handler -- %x/%d.\n",
3709 msix
->handle
= qpair
;