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 <scsi/scsi_tcq.h>
13 #include <scsi/scsi_bsg_fc.h>
14 #include <scsi/scsi_eh.h>
16 static void qla2x00_mbx_completion(scsi_qla_host_t
*, uint16_t);
17 static void qla2x00_status_entry(scsi_qla_host_t
*, struct rsp_que
*, void *);
18 static void qla2x00_status_cont_entry(struct rsp_que
*, sts_cont_entry_t
*);
19 static void qla2x00_error_entry(scsi_qla_host_t
*, struct rsp_que
*,
23 * qla2100_intr_handler() - Process interrupts for the ISP2100 and ISP2200.
25 * @dev_id: SCSI driver HA context
27 * Called by system whenever the host adapter generates an interrupt.
29 * Returns handled flag.
32 qla2100_intr_handler(int irq
, void *dev_id
)
35 struct qla_hw_data
*ha
;
36 struct device_reg_2xxx __iomem
*reg
;
44 rsp
= (struct rsp_que
*) dev_id
;
46 ql_log(ql_log_info
, NULL
, 0x505d,
47 "%s: NULL response queue pointer.\n", __func__
);
52 reg
= &ha
->iobase
->isp
;
55 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
56 vha
= pci_get_drvdata(ha
->pdev
);
57 for (iter
= 50; iter
--; ) {
58 hccr
= RD_REG_WORD(®
->hccr
);
59 if (qla2x00_check_reg16_for_disconnect(vha
, hccr
))
61 if (hccr
& HCCR_RISC_PAUSE
) {
62 if (pci_channel_offline(ha
->pdev
))
66 * Issue a "HARD" reset in order for the RISC interrupt
67 * bit to be cleared. Schedule a big hammer to get
68 * out of the RISC PAUSED state.
70 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
71 RD_REG_WORD(®
->hccr
);
73 ha
->isp_ops
->fw_dump(vha
, 1);
74 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
76 } else if ((RD_REG_WORD(®
->istatus
) & ISR_RISC_INT
) == 0)
79 if (RD_REG_WORD(®
->semaphore
) & BIT_0
) {
80 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
81 RD_REG_WORD(®
->hccr
);
83 /* Get mailbox data. */
84 mb
[0] = RD_MAILBOX_REG(ha
, reg
, 0);
85 if (mb
[0] > 0x3fff && mb
[0] < 0x8000) {
86 qla2x00_mbx_completion(vha
, mb
[0]);
87 status
|= MBX_INTERRUPT
;
88 } else if (mb
[0] > 0x7fff && mb
[0] < 0xc000) {
89 mb
[1] = RD_MAILBOX_REG(ha
, reg
, 1);
90 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
91 mb
[3] = RD_MAILBOX_REG(ha
, reg
, 3);
92 qla2x00_async_event(vha
, rsp
, mb
);
95 ql_dbg(ql_dbg_async
, vha
, 0x5025,
96 "Unrecognized interrupt type (%d).\n",
99 /* Release mailbox registers. */
100 WRT_REG_WORD(®
->semaphore
, 0);
101 RD_REG_WORD(®
->semaphore
);
103 qla2x00_process_response_queue(rsp
);
105 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
106 RD_REG_WORD(®
->hccr
);
109 qla2x00_handle_mbx_completion(ha
, status
);
110 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
112 return (IRQ_HANDLED
);
116 qla2x00_check_reg32_for_disconnect(scsi_qla_host_t
*vha
, uint32_t reg
)
118 /* Check for PCI disconnection */
119 if (reg
== 0xffffffff) {
120 if (!test_and_set_bit(PFLG_DISCONNECTED
, &vha
->pci_flags
) &&
121 !test_bit(PFLG_DRIVER_REMOVING
, &vha
->pci_flags
) &&
122 !test_bit(PFLG_DRIVER_PROBING
, &vha
->pci_flags
)) {
124 * Schedule this (only once) on the default system
125 * workqueue so that all the adapter workqueues and the
126 * DPC thread can be shutdown cleanly.
128 schedule_work(&vha
->hw
->board_disable
);
136 qla2x00_check_reg16_for_disconnect(scsi_qla_host_t
*vha
, uint16_t reg
)
138 return qla2x00_check_reg32_for_disconnect(vha
, 0xffff0000 | reg
);
142 * qla2300_intr_handler() - Process interrupts for the ISP23xx and ISP63xx.
144 * @dev_id: SCSI driver HA context
146 * Called by system whenever the host adapter generates an interrupt.
148 * Returns handled flag.
151 qla2300_intr_handler(int irq
, void *dev_id
)
153 scsi_qla_host_t
*vha
;
154 struct device_reg_2xxx __iomem
*reg
;
161 struct qla_hw_data
*ha
;
164 rsp
= (struct rsp_que
*) dev_id
;
166 ql_log(ql_log_info
, NULL
, 0x5058,
167 "%s: NULL response queue pointer.\n", __func__
);
172 reg
= &ha
->iobase
->isp
;
175 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
176 vha
= pci_get_drvdata(ha
->pdev
);
177 for (iter
= 50; iter
--; ) {
178 stat
= RD_REG_DWORD(®
->u
.isp2300
.host_status
);
179 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
181 if (stat
& HSR_RISC_PAUSED
) {
182 if (unlikely(pci_channel_offline(ha
->pdev
)))
185 hccr
= RD_REG_WORD(®
->hccr
);
187 if (hccr
& (BIT_15
| BIT_13
| BIT_11
| BIT_8
))
188 ql_log(ql_log_warn
, vha
, 0x5026,
189 "Parity error -- HCCR=%x, Dumping "
190 "firmware.\n", hccr
);
192 ql_log(ql_log_warn
, vha
, 0x5027,
193 "RISC paused -- HCCR=%x, Dumping "
194 "firmware.\n", hccr
);
197 * Issue a "HARD" reset in order for the RISC
198 * interrupt bit to be cleared. Schedule a big
199 * hammer to get out of the RISC PAUSED state.
201 WRT_REG_WORD(®
->hccr
, HCCR_RESET_RISC
);
202 RD_REG_WORD(®
->hccr
);
204 ha
->isp_ops
->fw_dump(vha
, 1);
205 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
207 } else if ((stat
& HSR_RISC_INT
) == 0)
210 switch (stat
& 0xff) {
215 qla2x00_mbx_completion(vha
, MSW(stat
));
216 status
|= MBX_INTERRUPT
;
218 /* Release mailbox registers. */
219 WRT_REG_WORD(®
->semaphore
, 0);
223 mb
[1] = RD_MAILBOX_REG(ha
, reg
, 1);
224 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
225 mb
[3] = RD_MAILBOX_REG(ha
, reg
, 3);
226 qla2x00_async_event(vha
, rsp
, mb
);
229 qla2x00_process_response_queue(rsp
);
232 mb
[0] = MBA_CMPLT_1_16BIT
;
234 qla2x00_async_event(vha
, rsp
, mb
);
237 mb
[0] = MBA_SCSI_COMPLETION
;
239 mb
[2] = RD_MAILBOX_REG(ha
, reg
, 2);
240 qla2x00_async_event(vha
, rsp
, mb
);
243 ql_dbg(ql_dbg_async
, vha
, 0x5028,
244 "Unrecognized interrupt type (%d).\n", stat
& 0xff);
247 WRT_REG_WORD(®
->hccr
, HCCR_CLR_RISC_INT
);
248 RD_REG_WORD_RELAXED(®
->hccr
);
250 qla2x00_handle_mbx_completion(ha
, status
);
251 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
253 return (IRQ_HANDLED
);
257 * qla2x00_mbx_completion() - Process mailbox command completions.
258 * @ha: SCSI driver HA context
259 * @mb0: Mailbox0 register
262 qla2x00_mbx_completion(scsi_qla_host_t
*vha
, uint16_t mb0
)
266 uint16_t __iomem
*wptr
;
267 struct qla_hw_data
*ha
= vha
->hw
;
268 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
270 /* Read all mbox registers? */
271 mboxes
= (1 << ha
->mbx_count
) - 1;
273 ql_dbg(ql_dbg_async
, vha
, 0x5001, "MBX pointer ERROR.\n");
275 mboxes
= ha
->mcp
->in_mb
;
277 /* Load return mailbox registers. */
278 ha
->flags
.mbox_int
= 1;
279 ha
->mailbox_out
[0] = mb0
;
281 wptr
= (uint16_t __iomem
*)MAILBOX_REG(ha
, reg
, 1);
283 for (cnt
= 1; cnt
< ha
->mbx_count
; cnt
++) {
284 if (IS_QLA2200(ha
) && cnt
== 8)
285 wptr
= (uint16_t __iomem
*)MAILBOX_REG(ha
, reg
, 8);
286 if ((cnt
== 4 || cnt
== 5) && (mboxes
& BIT_0
))
287 ha
->mailbox_out
[cnt
] = qla2x00_debounce_register(wptr
);
288 else if (mboxes
& BIT_0
)
289 ha
->mailbox_out
[cnt
] = RD_REG_WORD(wptr
);
297 qla81xx_idc_event(scsi_qla_host_t
*vha
, uint16_t aen
, uint16_t descr
)
299 static char *event
[] =
300 { "Complete", "Request Notification", "Time Extension" };
302 struct device_reg_24xx __iomem
*reg24
= &vha
->hw
->iobase
->isp24
;
303 struct device_reg_82xx __iomem
*reg82
= &vha
->hw
->iobase
->isp82
;
304 uint16_t __iomem
*wptr
;
305 uint16_t cnt
, timeout
, mb
[QLA_IDC_ACK_REGS
];
307 /* Seed data -- mailbox1 -> mailbox7. */
308 if (IS_QLA81XX(vha
->hw
) || IS_QLA83XX(vha
->hw
))
309 wptr
= (uint16_t __iomem
*)®24
->mailbox1
;
310 else if (IS_QLA8044(vha
->hw
))
311 wptr
= (uint16_t __iomem
*)®82
->mailbox_out
[1];
315 for (cnt
= 0; cnt
< QLA_IDC_ACK_REGS
; cnt
++, wptr
++)
316 mb
[cnt
] = RD_REG_WORD(wptr
);
318 ql_dbg(ql_dbg_async
, vha
, 0x5021,
319 "Inter-Driver Communication %s -- "
320 "%04x %04x %04x %04x %04x %04x %04x.\n",
321 event
[aen
& 0xff], mb
[0], mb
[1], mb
[2], mb
[3],
322 mb
[4], mb
[5], mb
[6]);
324 /* Handle IDC Error completion case. */
325 case MBA_IDC_COMPLETE
:
327 vha
->hw
->flags
.idc_compl_status
= 1;
328 if (vha
->hw
->notify_dcbx_comp
&& !vha
->vp_idx
)
329 complete(&vha
->hw
->dcbx_comp
);
334 /* Acknowledgement needed? [Notify && non-zero timeout]. */
335 timeout
= (descr
>> 8) & 0xf;
336 ql_dbg(ql_dbg_async
, vha
, 0x5022,
337 "%lu Inter-Driver Communication %s -- ACK timeout=%d.\n",
338 vha
->host_no
, event
[aen
& 0xff], timeout
);
342 rval
= qla2x00_post_idc_ack_work(vha
, mb
);
343 if (rval
!= QLA_SUCCESS
)
344 ql_log(ql_log_warn
, vha
, 0x5023,
345 "IDC failed to post ACK.\n");
347 case MBA_IDC_TIME_EXT
:
348 vha
->hw
->idc_extend_tmo
= descr
;
349 ql_dbg(ql_dbg_async
, vha
, 0x5087,
350 "%lu Inter-Driver Communication %s -- "
351 "Extend timeout by=%d.\n",
352 vha
->host_no
, event
[aen
& 0xff], vha
->hw
->idc_extend_tmo
);
359 qla2x00_get_link_speed_str(struct qla_hw_data
*ha
, uint16_t speed
)
361 static const char *const link_speeds
[] = {
362 "1", "2", "?", "4", "8", "16", "32", "10"
364 #define QLA_LAST_SPEED 7
366 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
367 return link_speeds
[0];
368 else if (speed
== 0x13)
369 return link_speeds
[QLA_LAST_SPEED
];
370 else if (speed
< QLA_LAST_SPEED
)
371 return link_speeds
[speed
];
373 return link_speeds
[LS_UNKNOWN
];
377 qla83xx_handle_8200_aen(scsi_qla_host_t
*vha
, uint16_t *mb
)
379 struct qla_hw_data
*ha
= vha
->hw
;
382 * 8200 AEN Interpretation:
384 * mb[1] = AEN Reason code
385 * mb[2] = LSW of Peg-Halt Status-1 Register
386 * mb[6] = MSW of Peg-Halt Status-1 Register
387 * mb[3] = LSW of Peg-Halt Status-2 register
388 * mb[7] = MSW of Peg-Halt Status-2 register
389 * mb[4] = IDC Device-State Register value
390 * mb[5] = IDC Driver-Presence Register value
392 ql_dbg(ql_dbg_async
, vha
, 0x506b, "AEN Code: mb[0] = 0x%x AEN reason: "
393 "mb[1] = 0x%x PH-status1: mb[2] = 0x%x PH-status1: mb[6] = 0x%x.\n",
394 mb
[0], mb
[1], mb
[2], mb
[6]);
395 ql_dbg(ql_dbg_async
, vha
, 0x506c, "PH-status2: mb[3] = 0x%x "
396 "PH-status2: mb[7] = 0x%x Device-State: mb[4] = 0x%x "
397 "Drv-Presence: mb[5] = 0x%x.\n", mb
[3], mb
[7], mb
[4], mb
[5]);
399 if (mb
[1] & (IDC_PEG_HALT_STATUS_CHANGE
| IDC_NIC_FW_REPORTED_FAILURE
|
400 IDC_HEARTBEAT_FAILURE
)) {
401 ha
->flags
.nic_core_hung
= 1;
402 ql_log(ql_log_warn
, vha
, 0x5060,
403 "83XX: F/W Error Reported: Check if reset required.\n");
405 if (mb
[1] & IDC_PEG_HALT_STATUS_CHANGE
) {
406 uint32_t protocol_engine_id
, fw_err_code
, err_level
;
409 * IDC_PEG_HALT_STATUS_CHANGE interpretation:
410 * - PEG-Halt Status-1 Register:
411 * (LSW = mb[2], MSW = mb[6])
412 * Bits 0-7 = protocol-engine ID
413 * Bits 8-28 = f/w error code
414 * Bits 29-31 = Error-level
415 * Error-level 0x1 = Non-Fatal error
416 * Error-level 0x2 = Recoverable Fatal error
417 * Error-level 0x4 = UnRecoverable Fatal error
418 * - PEG-Halt Status-2 Register:
419 * (LSW = mb[3], MSW = mb[7])
421 protocol_engine_id
= (mb
[2] & 0xff);
422 fw_err_code
= (((mb
[2] & 0xff00) >> 8) |
423 ((mb
[6] & 0x1fff) << 8));
424 err_level
= ((mb
[6] & 0xe000) >> 13);
425 ql_log(ql_log_warn
, vha
, 0x5061, "PegHalt Status-1 "
426 "Register: protocol_engine_id=0x%x "
427 "fw_err_code=0x%x err_level=0x%x.\n",
428 protocol_engine_id
, fw_err_code
, err_level
);
429 ql_log(ql_log_warn
, vha
, 0x5062, "PegHalt Status-2 "
430 "Register: 0x%x%x.\n", mb
[7], mb
[3]);
431 if (err_level
== ERR_LEVEL_NON_FATAL
) {
432 ql_log(ql_log_warn
, vha
, 0x5063,
433 "Not a fatal error, f/w has recovered "
435 } else if (err_level
== ERR_LEVEL_RECOVERABLE_FATAL
) {
436 ql_log(ql_log_fatal
, vha
, 0x5064,
437 "Recoverable Fatal error: Chip reset "
439 qla83xx_schedule_work(vha
,
440 QLA83XX_NIC_CORE_RESET
);
441 } else if (err_level
== ERR_LEVEL_UNRECOVERABLE_FATAL
) {
442 ql_log(ql_log_fatal
, vha
, 0x5065,
443 "Unrecoverable Fatal error: Set FAILED "
444 "state, reboot required.\n");
445 qla83xx_schedule_work(vha
,
446 QLA83XX_NIC_CORE_UNRECOVERABLE
);
450 if (mb
[1] & IDC_NIC_FW_REPORTED_FAILURE
) {
451 uint16_t peg_fw_state
, nw_interface_link_up
;
452 uint16_t nw_interface_signal_detect
, sfp_status
;
453 uint16_t htbt_counter
, htbt_monitor_enable
;
454 uint16_t sfp_additonal_info
, sfp_multirate
;
455 uint16_t sfp_tx_fault
, link_speed
, dcbx_status
;
458 * IDC_NIC_FW_REPORTED_FAILURE interpretation:
459 * - PEG-to-FC Status Register:
460 * (LSW = mb[2], MSW = mb[6])
461 * Bits 0-7 = Peg-Firmware state
462 * Bit 8 = N/W Interface Link-up
463 * Bit 9 = N/W Interface signal detected
464 * Bits 10-11 = SFP Status
465 * SFP Status 0x0 = SFP+ transceiver not expected
466 * SFP Status 0x1 = SFP+ transceiver not present
467 * SFP Status 0x2 = SFP+ transceiver invalid
468 * SFP Status 0x3 = SFP+ transceiver present and
470 * Bits 12-14 = Heartbeat Counter
471 * Bit 15 = Heartbeat Monitor Enable
472 * Bits 16-17 = SFP Additional Info
473 * SFP info 0x0 = Unregocnized transceiver for
475 * SFP info 0x1 = SFP+ brand validation failed
476 * SFP info 0x2 = SFP+ speed validation failed
477 * SFP info 0x3 = SFP+ access error
478 * Bit 18 = SFP Multirate
479 * Bit 19 = SFP Tx Fault
480 * Bits 20-22 = Link Speed
481 * Bits 23-27 = Reserved
482 * Bits 28-30 = DCBX Status
483 * DCBX Status 0x0 = DCBX Disabled
484 * DCBX Status 0x1 = DCBX Enabled
485 * DCBX Status 0x2 = DCBX Exchange error
488 peg_fw_state
= (mb
[2] & 0x00ff);
489 nw_interface_link_up
= ((mb
[2] & 0x0100) >> 8);
490 nw_interface_signal_detect
= ((mb
[2] & 0x0200) >> 9);
491 sfp_status
= ((mb
[2] & 0x0c00) >> 10);
492 htbt_counter
= ((mb
[2] & 0x7000) >> 12);
493 htbt_monitor_enable
= ((mb
[2] & 0x8000) >> 15);
494 sfp_additonal_info
= (mb
[6] & 0x0003);
495 sfp_multirate
= ((mb
[6] & 0x0004) >> 2);
496 sfp_tx_fault
= ((mb
[6] & 0x0008) >> 3);
497 link_speed
= ((mb
[6] & 0x0070) >> 4);
498 dcbx_status
= ((mb
[6] & 0x7000) >> 12);
500 ql_log(ql_log_warn
, vha
, 0x5066,
501 "Peg-to-Fc Status Register:\n"
502 "peg_fw_state=0x%x, nw_interface_link_up=0x%x, "
503 "nw_interface_signal_detect=0x%x"
504 "\nsfp_statis=0x%x.\n ", peg_fw_state
,
505 nw_interface_link_up
, nw_interface_signal_detect
,
507 ql_log(ql_log_warn
, vha
, 0x5067,
508 "htbt_counter=0x%x, htbt_monitor_enable=0x%x, "
509 "sfp_additonal_info=0x%x, sfp_multirate=0x%x.\n ",
510 htbt_counter
, htbt_monitor_enable
,
511 sfp_additonal_info
, sfp_multirate
);
512 ql_log(ql_log_warn
, vha
, 0x5068,
513 "sfp_tx_fault=0x%x, link_state=0x%x, "
514 "dcbx_status=0x%x.\n", sfp_tx_fault
, link_speed
,
517 qla83xx_schedule_work(vha
, QLA83XX_NIC_CORE_RESET
);
520 if (mb
[1] & IDC_HEARTBEAT_FAILURE
) {
521 ql_log(ql_log_warn
, vha
, 0x5069,
522 "Heartbeat Failure encountered, chip reset "
525 qla83xx_schedule_work(vha
, QLA83XX_NIC_CORE_RESET
);
529 if (mb
[1] & IDC_DEVICE_STATE_CHANGE
) {
530 ql_log(ql_log_info
, vha
, 0x506a,
531 "IDC Device-State changed = 0x%x.\n", mb
[4]);
532 if (ha
->flags
.nic_core_reset_owner
)
534 qla83xx_schedule_work(vha
, MBA_IDC_AEN
);
539 qla2x00_is_a_vp_did(scsi_qla_host_t
*vha
, uint32_t rscn_entry
)
541 struct qla_hw_data
*ha
= vha
->hw
;
550 spin_lock_irqsave(&ha
->vport_slock
, flags
);
551 list_for_each_entry(vp
, &ha
->vp_list
, list
) {
552 vp_did
= vp
->d_id
.b24
;
553 if (vp_did
== rscn_entry
) {
558 spin_unlock_irqrestore(&ha
->vport_slock
, flags
);
564 * qla2x00_async_event() - Process aynchronous events.
565 * @ha: SCSI driver HA context
566 * @mb: Mailbox registers (0 - 3)
569 qla2x00_async_event(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, uint16_t *mb
)
574 struct qla_hw_data
*ha
= vha
->hw
;
575 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
576 struct device_reg_24xx __iomem
*reg24
= &ha
->iobase
->isp24
;
577 struct device_reg_82xx __iomem
*reg82
= &ha
->iobase
->isp82
;
578 uint32_t rscn_entry
, host_pid
, tmp_pid
;
580 fc_port_t
*fcport
= NULL
;
582 /* Setup to process RIO completion. */
584 if (IS_CNA_CAPABLE(ha
))
587 case MBA_SCSI_COMPLETION
:
588 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
591 case MBA_CMPLT_1_16BIT
:
594 mb
[0] = MBA_SCSI_COMPLETION
;
596 case MBA_CMPLT_2_16BIT
:
600 mb
[0] = MBA_SCSI_COMPLETION
;
602 case MBA_CMPLT_3_16BIT
:
607 mb
[0] = MBA_SCSI_COMPLETION
;
609 case MBA_CMPLT_4_16BIT
:
613 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
615 mb
[0] = MBA_SCSI_COMPLETION
;
617 case MBA_CMPLT_5_16BIT
:
621 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
622 handles
[4] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 7);
624 mb
[0] = MBA_SCSI_COMPLETION
;
626 case MBA_CMPLT_2_32BIT
:
627 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
628 handles
[1] = le32_to_cpu(
629 ((uint32_t)(RD_MAILBOX_REG(ha
, reg
, 7) << 16)) |
630 RD_MAILBOX_REG(ha
, reg
, 6));
632 mb
[0] = MBA_SCSI_COMPLETION
;
639 case MBA_SCSI_COMPLETION
: /* Fast Post */
640 if (!vha
->flags
.online
)
643 for (cnt
= 0; cnt
< handle_cnt
; cnt
++)
644 qla2x00_process_completed_request(vha
, rsp
->req
,
648 case MBA_RESET
: /* Reset */
649 ql_dbg(ql_dbg_async
, vha
, 0x5002,
650 "Asynchronous RESET.\n");
652 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
655 case MBA_SYSTEM_ERR
: /* System Error */
656 mbx
= (IS_QLA81XX(ha
) || IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) ?
657 RD_REG_WORD(®24
->mailbox7
) : 0;
658 ql_log(ql_log_warn
, vha
, 0x5003,
659 "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh "
660 "mbx7=%xh.\n", mb
[1], mb
[2], mb
[3], mbx
);
662 ha
->isp_ops
->fw_dump(vha
, 1);
664 if (IS_FWI2_CAPABLE(ha
)) {
665 if (mb
[1] == 0 && mb
[2] == 0) {
666 ql_log(ql_log_fatal
, vha
, 0x5004,
667 "Unrecoverable Hardware Error: adapter "
668 "marked OFFLINE!\n");
669 vha
->flags
.online
= 0;
670 vha
->device_flags
|= DFLG_DEV_FAILED
;
672 /* Check to see if MPI timeout occurred */
673 if ((mbx
& MBX_3
) && (ha
->port_no
== 0))
674 set_bit(MPI_RESET_NEEDED
,
677 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
679 } else if (mb
[1] == 0) {
680 ql_log(ql_log_fatal
, vha
, 0x5005,
681 "Unrecoverable Hardware Error: adapter marked "
683 vha
->flags
.online
= 0;
684 vha
->device_flags
|= DFLG_DEV_FAILED
;
686 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
689 case MBA_REQ_TRANSFER_ERR
: /* Request Transfer Error */
690 ql_log(ql_log_warn
, vha
, 0x5006,
691 "ISP Request Transfer Error (%x).\n", mb
[1]);
693 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
696 case MBA_RSP_TRANSFER_ERR
: /* Response Transfer Error */
697 ql_log(ql_log_warn
, vha
, 0x5007,
698 "ISP Response Transfer Error.\n");
700 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
703 case MBA_WAKEUP_THRES
: /* Request Queue Wake-up */
704 ql_dbg(ql_dbg_async
, vha
, 0x5008,
705 "Asynchronous WAKEUP_THRES.\n");
708 case MBA_LIP_OCCURRED
: /* Loop Initialization Procedure */
709 ql_dbg(ql_dbg_async
, vha
, 0x5009,
710 "LIP occurred (%x).\n", mb
[1]);
712 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
713 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
714 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
715 qla2x00_mark_all_devices_lost(vha
, 1);
719 atomic_set(&vha
->vp_state
, VP_FAILED
);
720 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
723 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
724 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
726 vha
->flags
.management_server_logged_in
= 0;
727 qla2x00_post_aen_work(vha
, FCH_EVT_LIP
, mb
[1]);
730 case MBA_LOOP_UP
: /* Loop Up Event */
731 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
732 ha
->link_data_rate
= PORT_SPEED_1GB
;
734 ha
->link_data_rate
= mb
[1];
736 ql_log(ql_log_info
, vha
, 0x500a,
737 "LOOP UP detected (%s Gbps).\n",
738 qla2x00_get_link_speed_str(ha
, ha
->link_data_rate
));
740 vha
->flags
.management_server_logged_in
= 0;
741 qla2x00_post_aen_work(vha
, FCH_EVT_LINKUP
, ha
->link_data_rate
);
744 case MBA_LOOP_DOWN
: /* Loop Down Event */
745 mbx
= (IS_QLA81XX(ha
) || IS_QLA8031(ha
))
746 ? RD_REG_WORD(®24
->mailbox4
) : 0;
747 mbx
= (IS_P3P_TYPE(ha
)) ? RD_REG_WORD(®82
->mailbox_out
[4])
749 ql_log(ql_log_info
, vha
, 0x500b,
750 "LOOP DOWN detected (%x %x %x %x).\n",
751 mb
[1], mb
[2], mb
[3], mbx
);
753 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
754 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
755 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
757 * In case of loop down, restore WWPN from
758 * NVRAM in case of FA-WWPN capable ISP
760 if (ha
->flags
.fawwpn_enabled
) {
761 void *wwpn
= ha
->init_cb
->port_name
;
763 memcpy(vha
->port_name
, wwpn
, WWN_SIZE
);
766 vha
->device_flags
|= DFLG_NO_CABLE
;
767 qla2x00_mark_all_devices_lost(vha
, 1);
771 atomic_set(&vha
->vp_state
, VP_FAILED
);
772 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
775 vha
->flags
.management_server_logged_in
= 0;
776 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
777 qla2x00_post_aen_work(vha
, FCH_EVT_LINKDOWN
, 0);
780 case MBA_LIP_RESET
: /* LIP reset occurred */
781 ql_dbg(ql_dbg_async
, vha
, 0x500c,
782 "LIP reset occurred (%x).\n", mb
[1]);
784 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
785 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
786 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
787 qla2x00_mark_all_devices_lost(vha
, 1);
791 atomic_set(&vha
->vp_state
, VP_FAILED
);
792 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
795 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
797 ha
->operating_mode
= LOOP
;
798 vha
->flags
.management_server_logged_in
= 0;
799 qla2x00_post_aen_work(vha
, FCH_EVT_LIPRESET
, mb
[1]);
802 /* case MBA_DCBX_COMPLETE: */
803 case MBA_POINT_TO_POINT
: /* Point-to-Point */
807 if (IS_CNA_CAPABLE(ha
)) {
808 ql_dbg(ql_dbg_async
, vha
, 0x500d,
809 "DCBX Completed -- %04x %04x %04x.\n",
810 mb
[1], mb
[2], mb
[3]);
811 if (ha
->notify_dcbx_comp
&& !vha
->vp_idx
)
812 complete(&ha
->dcbx_comp
);
815 ql_dbg(ql_dbg_async
, vha
, 0x500e,
816 "Asynchronous P2P MODE received.\n");
819 * Until there's a transition from loop down to loop up, treat
820 * this as loop down only.
822 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
823 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
824 if (!atomic_read(&vha
->loop_down_timer
))
825 atomic_set(&vha
->loop_down_timer
,
827 qla2x00_mark_all_devices_lost(vha
, 1);
831 atomic_set(&vha
->vp_state
, VP_FAILED
);
832 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
835 if (!(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)))
836 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
838 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
839 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
841 ha
->flags
.gpsc_supported
= 1;
842 vha
->flags
.management_server_logged_in
= 0;
845 case MBA_CHG_IN_CONNECTION
: /* Change in connection mode */
849 ql_dbg(ql_dbg_async
, vha
, 0x500f,
850 "Configuration change detected: value=%x.\n", mb
[1]);
852 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
853 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
854 if (!atomic_read(&vha
->loop_down_timer
))
855 atomic_set(&vha
->loop_down_timer
,
857 qla2x00_mark_all_devices_lost(vha
, 1);
861 atomic_set(&vha
->vp_state
, VP_FAILED
);
862 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
865 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
866 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
869 case MBA_PORT_UPDATE
: /* Port database update */
871 * Handle only global and vn-port update events
874 * mb[1] = N_Port handle of changed port
875 * OR 0xffff for global event
876 * mb[2] = New login state
877 * 7 = Port logged out
878 * mb[3] = LSB is vp_idx, 0xff = all vps
880 * Skip processing if:
881 * Event is global, vp_idx is NOT all vps,
882 * vp_idx does not match
883 * Event is not global, vp_idx does not match
885 if (IS_QLA2XXX_MIDTYPE(ha
) &&
886 ((mb
[1] == 0xffff && (mb
[3] & 0xff) != 0xff) ||
887 (mb
[1] != 0xffff)) && vha
->vp_idx
!= (mb
[3] & 0xff))
890 /* Global event -- port logout or port unavailable. */
891 if (mb
[1] == 0xffff && mb
[2] == 0x7) {
892 ql_dbg(ql_dbg_async
, vha
, 0x5010,
893 "Port unavailable %04x %04x %04x.\n",
894 mb
[1], mb
[2], mb
[3]);
895 ql_log(ql_log_warn
, vha
, 0x505e,
896 "Link is offline.\n");
898 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
899 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
900 atomic_set(&vha
->loop_down_timer
,
902 vha
->device_flags
|= DFLG_NO_CABLE
;
903 qla2x00_mark_all_devices_lost(vha
, 1);
907 atomic_set(&vha
->vp_state
, VP_FAILED
);
908 fc_vport_set_state(vha
->fc_vport
,
910 qla2x00_mark_all_devices_lost(vha
, 1);
913 vha
->flags
.management_server_logged_in
= 0;
914 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
919 * If PORT UPDATE is global (received LIP_OCCURRED/LIP_RESET
920 * event etc. earlier indicating loop is down) then process
921 * it. Otherwise ignore it and Wait for RSCN to come in.
923 atomic_set(&vha
->loop_down_timer
, 0);
924 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
&&
925 atomic_read(&vha
->loop_state
) != LOOP_DEAD
) {
926 ql_dbg(ql_dbg_async
, vha
, 0x5011,
927 "Asynchronous PORT UPDATE ignored %04x/%04x/%04x.\n",
928 mb
[1], mb
[2], mb
[3]);
930 qlt_async_event(mb
[0], vha
, mb
);
934 ql_dbg(ql_dbg_async
, vha
, 0x5012,
935 "Port database changed %04x %04x %04x.\n",
936 mb
[1], mb
[2], mb
[3]);
939 * Mark all devices as missing so we will login again.
941 atomic_set(&vha
->loop_state
, LOOP_UP
);
943 qla2x00_mark_all_devices_lost(vha
, 1);
945 if (vha
->vp_idx
== 0 && !qla_ini_mode_enabled(vha
))
946 set_bit(SCR_PENDING
, &vha
->dpc_flags
);
948 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
949 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
951 qlt_async_event(mb
[0], vha
, mb
);
954 case MBA_RSCN_UPDATE
: /* State Change Registration */
955 /* Check if the Vport has issued a SCR */
956 if (vha
->vp_idx
&& test_bit(VP_SCR_NEEDED
, &vha
->vp_flags
))
958 /* Only handle SCNs for our Vport index. */
959 if (ha
->flags
.npiv_supported
&& vha
->vp_idx
!= (mb
[3] & 0xff))
962 ql_dbg(ql_dbg_async
, vha
, 0x5013,
963 "RSCN database changed -- %04x %04x %04x.\n",
964 mb
[1], mb
[2], mb
[3]);
966 rscn_entry
= ((mb
[1] & 0xff) << 16) | mb
[2];
967 host_pid
= (vha
->d_id
.b
.domain
<< 16) | (vha
->d_id
.b
.area
<< 8)
969 if (rscn_entry
== host_pid
) {
970 ql_dbg(ql_dbg_async
, vha
, 0x5014,
971 "Ignoring RSCN update to local host "
972 "port ID (%06x).\n", host_pid
);
976 /* Ignore reserved bits from RSCN-payload. */
977 rscn_entry
= ((mb
[1] & 0x3ff) << 16) | mb
[2];
979 /* Skip RSCNs for virtual ports on the same physical port */
980 if (qla2x00_is_a_vp_did(vha
, rscn_entry
))
984 * Search for the rport related to this RSCN entry and mark it
987 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
988 if (atomic_read(&fcport
->state
) != FCS_ONLINE
)
990 tmp_pid
= fcport
->d_id
.b24
;
991 if (fcport
->d_id
.b24
== rscn_entry
) {
992 qla2x00_mark_device_lost(vha
, fcport
, 0, 0);
997 atomic_set(&vha
->loop_down_timer
, 0);
998 vha
->flags
.management_server_logged_in
= 0;
1000 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1001 set_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
1002 qla2x00_post_aen_work(vha
, FCH_EVT_RSCN
, rscn_entry
);
1005 /* case MBA_RIO_RESPONSE: */
1006 case MBA_ZIO_RESPONSE
:
1007 ql_dbg(ql_dbg_async
, vha
, 0x5015,
1008 "[R|Z]IO update completion.\n");
1010 if (IS_FWI2_CAPABLE(ha
))
1011 qla24xx_process_response_queue(vha
, rsp
);
1013 qla2x00_process_response_queue(rsp
);
1016 case MBA_DISCARD_RND_FRAME
:
1017 ql_dbg(ql_dbg_async
, vha
, 0x5016,
1018 "Discard RND Frame -- %04x %04x %04x.\n",
1019 mb
[1], mb
[2], mb
[3]);
1022 case MBA_TRACE_NOTIFICATION
:
1023 ql_dbg(ql_dbg_async
, vha
, 0x5017,
1024 "Trace Notification -- %04x %04x.\n", mb
[1], mb
[2]);
1027 case MBA_ISP84XX_ALERT
:
1028 ql_dbg(ql_dbg_async
, vha
, 0x5018,
1029 "ISP84XX Alert Notification -- %04x %04x %04x.\n",
1030 mb
[1], mb
[2], mb
[3]);
1032 spin_lock_irqsave(&ha
->cs84xx
->access_lock
, flags
);
1034 case A84_PANIC_RECOVERY
:
1035 ql_log(ql_log_info
, vha
, 0x5019,
1036 "Alert 84XX: panic recovery %04x %04x.\n",
1039 case A84_OP_LOGIN_COMPLETE
:
1040 ha
->cs84xx
->op_fw_version
= mb
[3] << 16 | mb
[2];
1041 ql_log(ql_log_info
, vha
, 0x501a,
1042 "Alert 84XX: firmware version %x.\n",
1043 ha
->cs84xx
->op_fw_version
);
1045 case A84_DIAG_LOGIN_COMPLETE
:
1046 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1047 ql_log(ql_log_info
, vha
, 0x501b,
1048 "Alert 84XX: diagnostic firmware version %x.\n",
1049 ha
->cs84xx
->diag_fw_version
);
1051 case A84_GOLD_LOGIN_COMPLETE
:
1052 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1053 ha
->cs84xx
->fw_update
= 1;
1054 ql_log(ql_log_info
, vha
, 0x501c,
1055 "Alert 84XX: gold firmware version %x.\n",
1056 ha
->cs84xx
->gold_fw_version
);
1059 ql_log(ql_log_warn
, vha
, 0x501d,
1060 "Alert 84xx: Invalid Alert %04x %04x %04x.\n",
1061 mb
[1], mb
[2], mb
[3]);
1063 spin_unlock_irqrestore(&ha
->cs84xx
->access_lock
, flags
);
1065 case MBA_DCBX_START
:
1066 ql_dbg(ql_dbg_async
, vha
, 0x501e,
1067 "DCBX Started -- %04x %04x %04x.\n",
1068 mb
[1], mb
[2], mb
[3]);
1070 case MBA_DCBX_PARAM_UPDATE
:
1071 ql_dbg(ql_dbg_async
, vha
, 0x501f,
1072 "DCBX Parameters Updated -- %04x %04x %04x.\n",
1073 mb
[1], mb
[2], mb
[3]);
1075 case MBA_FCF_CONF_ERR
:
1076 ql_dbg(ql_dbg_async
, vha
, 0x5020,
1077 "FCF Configuration Error -- %04x %04x %04x.\n",
1078 mb
[1], mb
[2], mb
[3]);
1080 case MBA_IDC_NOTIFY
:
1081 if (IS_QLA8031(vha
->hw
) || IS_QLA8044(ha
)) {
1082 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1083 if (((mb
[2] & 0x7fff) == MBC_PORT_RESET
||
1084 (mb
[2] & 0x7fff) == MBC_SET_PORT_CONFIG
) &&
1085 (mb
[4] & INTERNAL_LOOPBACK_MASK
) != 0) {
1086 set_bit(ISP_QUIESCE_NEEDED
, &vha
->dpc_flags
);
1088 * Extend loop down timer since port is active.
1090 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
)
1091 atomic_set(&vha
->loop_down_timer
,
1093 qla2xxx_wake_dpc(vha
);
1096 case MBA_IDC_COMPLETE
:
1097 if (ha
->notify_lb_portup_comp
&& !vha
->vp_idx
)
1098 complete(&ha
->lb_portup_comp
);
1100 case MBA_IDC_TIME_EXT
:
1101 if (IS_QLA81XX(vha
->hw
) || IS_QLA8031(vha
->hw
) ||
1103 qla81xx_idc_event(vha
, mb
[0], mb
[1]);
1107 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1108 mb
[5] = RD_REG_WORD(®24
->mailbox5
);
1109 mb
[6] = RD_REG_WORD(®24
->mailbox6
);
1110 mb
[7] = RD_REG_WORD(®24
->mailbox7
);
1111 qla83xx_handle_8200_aen(vha
, mb
);
1114 case MBA_DPORT_DIAGNOSTICS
:
1115 ql_dbg(ql_dbg_async
, vha
, 0x5052,
1116 "D-Port Diagnostics: %04x %04x=%s\n", mb
[0], mb
[1],
1117 mb
[1] == 0 ? "start" :
1118 mb
[1] == 1 ? "done (ok)" :
1119 mb
[1] == 2 ? "done (error)" : "other");
1123 ql_dbg(ql_dbg_async
, vha
, 0x5057,
1124 "Unknown AEN:%04x %04x %04x %04x\n",
1125 mb
[0], mb
[1], mb
[2], mb
[3]);
1128 qlt_async_event(mb
[0], vha
, mb
);
1130 if (!vha
->vp_idx
&& ha
->num_vhosts
)
1131 qla2x00_alert_all_vps(rsp
, mb
);
1135 * qla2x00_process_completed_request() - Process a Fast Post response.
1136 * @ha: SCSI driver HA context
1140 qla2x00_process_completed_request(struct scsi_qla_host
*vha
,
1141 struct req_que
*req
, uint32_t index
)
1144 struct qla_hw_data
*ha
= vha
->hw
;
1146 /* Validate handle. */
1147 if (index
>= req
->num_outstanding_cmds
) {
1148 ql_log(ql_log_warn
, vha
, 0x3014,
1149 "Invalid SCSI command index (%x).\n", index
);
1151 if (IS_P3P_TYPE(ha
))
1152 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1154 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1158 sp
= req
->outstanding_cmds
[index
];
1160 /* Free outstanding command slot. */
1161 req
->outstanding_cmds
[index
] = NULL
;
1163 /* Save ISP completion status */
1164 sp
->done(ha
, sp
, DID_OK
<< 16);
1166 ql_log(ql_log_warn
, vha
, 0x3016, "Invalid SCSI SRB.\n");
1168 if (IS_P3P_TYPE(ha
))
1169 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1171 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1176 qla2x00_get_sp_from_handle(scsi_qla_host_t
*vha
, const char *func
,
1177 struct req_que
*req
, void *iocb
)
1179 struct qla_hw_data
*ha
= vha
->hw
;
1180 sts_entry_t
*pkt
= iocb
;
1184 index
= LSW(pkt
->handle
);
1185 if (index
>= req
->num_outstanding_cmds
) {
1186 ql_log(ql_log_warn
, vha
, 0x5031,
1187 "Invalid command index (%x).\n", index
);
1188 if (IS_P3P_TYPE(ha
))
1189 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1191 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1194 sp
= req
->outstanding_cmds
[index
];
1196 ql_log(ql_log_warn
, vha
, 0x5032,
1197 "Invalid completion handle (%x) -- timed-out.\n", index
);
1200 if (sp
->handle
!= index
) {
1201 ql_log(ql_log_warn
, vha
, 0x5033,
1202 "SRB handle (%x) mismatch %x.\n", sp
->handle
, index
);
1206 req
->outstanding_cmds
[index
] = NULL
;
1213 qla2x00_mbx_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1214 struct mbx_entry
*mbx
)
1216 const char func
[] = "MBX-IOCB";
1220 struct srb_iocb
*lio
;
1224 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, mbx
);
1228 lio
= &sp
->u
.iocb_cmd
;
1230 fcport
= sp
->fcport
;
1231 data
= lio
->u
.logio
.data
;
1233 data
[0] = MBS_COMMAND_ERROR
;
1234 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1235 QLA_LOGIO_LOGIN_RETRIED
: 0;
1236 if (mbx
->entry_status
) {
1237 ql_dbg(ql_dbg_async
, vha
, 0x5043,
1238 "Async-%s error entry - hdl=%x portid=%02x%02x%02x "
1239 "entry-status=%x status=%x state-flag=%x "
1240 "status-flags=%x.\n", type
, sp
->handle
,
1241 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
1242 fcport
->d_id
.b
.al_pa
, mbx
->entry_status
,
1243 le16_to_cpu(mbx
->status
), le16_to_cpu(mbx
->state_flags
),
1244 le16_to_cpu(mbx
->status_flags
));
1246 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5029,
1247 (uint8_t *)mbx
, sizeof(*mbx
));
1252 status
= le16_to_cpu(mbx
->status
);
1253 if (status
== 0x30 && sp
->type
== SRB_LOGIN_CMD
&&
1254 le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
)
1256 if (!status
&& le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
) {
1257 ql_dbg(ql_dbg_async
, vha
, 0x5045,
1258 "Async-%s complete - hdl=%x portid=%02x%02x%02x mbx1=%x.\n",
1259 type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1260 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1261 le16_to_cpu(mbx
->mb1
));
1263 data
[0] = MBS_COMMAND_COMPLETE
;
1264 if (sp
->type
== SRB_LOGIN_CMD
) {
1265 fcport
->port_type
= FCT_TARGET
;
1266 if (le16_to_cpu(mbx
->mb1
) & BIT_0
)
1267 fcport
->port_type
= FCT_INITIATOR
;
1268 else if (le16_to_cpu(mbx
->mb1
) & BIT_1
)
1269 fcport
->flags
|= FCF_FCP2_DEVICE
;
1274 data
[0] = le16_to_cpu(mbx
->mb0
);
1276 case MBS_PORT_ID_USED
:
1277 data
[1] = le16_to_cpu(mbx
->mb1
);
1279 case MBS_LOOP_ID_USED
:
1282 data
[0] = MBS_COMMAND_ERROR
;
1286 ql_log(ql_log_warn
, vha
, 0x5046,
1287 "Async-%s failed - hdl=%x portid=%02x%02x%02x status=%x "
1288 "mb0=%x mb1=%x mb2=%x mb6=%x mb7=%x.\n", type
, sp
->handle
,
1289 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1290 status
, le16_to_cpu(mbx
->mb0
), le16_to_cpu(mbx
->mb1
),
1291 le16_to_cpu(mbx
->mb2
), le16_to_cpu(mbx
->mb6
),
1292 le16_to_cpu(mbx
->mb7
));
1295 sp
->done(vha
, sp
, 0);
1299 qla2x00_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1300 sts_entry_t
*pkt
, int iocb_type
)
1302 const char func
[] = "CT_IOCB";
1305 struct fc_bsg_job
*bsg_job
;
1306 uint16_t comp_status
;
1309 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1313 bsg_job
= sp
->u
.bsg_job
;
1315 type
= "ct pass-through";
1317 comp_status
= le16_to_cpu(pkt
->comp_status
);
1319 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1320 * fc payload to the caller
1322 bsg_job
->reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1323 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
1325 if (comp_status
!= CS_COMPLETE
) {
1326 if (comp_status
== CS_DATA_UNDERRUN
) {
1328 bsg_job
->reply
->reply_payload_rcv_len
=
1329 le16_to_cpu(((sts_entry_t
*)pkt
)->rsp_info_len
);
1331 ql_log(ql_log_warn
, vha
, 0x5048,
1332 "CT pass-through-%s error "
1333 "comp_status-status=0x%x total_byte = 0x%x.\n",
1335 bsg_job
->reply
->reply_payload_rcv_len
);
1337 ql_log(ql_log_warn
, vha
, 0x5049,
1338 "CT pass-through-%s error "
1339 "comp_status-status=0x%x.\n", type
, comp_status
);
1340 res
= DID_ERROR
<< 16;
1341 bsg_job
->reply
->reply_payload_rcv_len
= 0;
1343 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5035,
1344 (uint8_t *)pkt
, sizeof(*pkt
));
1347 bsg_job
->reply
->reply_payload_rcv_len
=
1348 bsg_job
->reply_payload
.payload_len
;
1349 bsg_job
->reply_len
= 0;
1352 sp
->done(vha
, sp
, res
);
1356 qla24xx_els_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1357 struct sts_entry_24xx
*pkt
, int iocb_type
)
1359 const char func
[] = "ELS_CT_IOCB";
1362 struct fc_bsg_job
*bsg_job
;
1363 uint16_t comp_status
;
1364 uint32_t fw_status
[3];
1365 uint8_t* fw_sts_ptr
;
1368 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1371 bsg_job
= sp
->u
.bsg_job
;
1375 case SRB_ELS_CMD_RPT
:
1376 case SRB_ELS_CMD_HST
:
1380 type
= "ct pass-through";
1383 ql_dbg(ql_dbg_user
, vha
, 0x503e,
1384 "Unrecognized SRB: (%p) type=%d.\n", sp
, sp
->type
);
1388 comp_status
= fw_status
[0] = le16_to_cpu(pkt
->comp_status
);
1389 fw_status
[1] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_1
);
1390 fw_status
[2] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_2
);
1392 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1393 * fc payload to the caller
1395 bsg_job
->reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1396 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
) + sizeof(fw_status
);
1398 if (comp_status
!= CS_COMPLETE
) {
1399 if (comp_status
== CS_DATA_UNDERRUN
) {
1401 bsg_job
->reply
->reply_payload_rcv_len
=
1402 le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->total_byte_count
);
1404 ql_dbg(ql_dbg_user
, vha
, 0x503f,
1405 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1406 "error subcode 1=0x%x error subcode 2=0x%x total_byte = 0x%x.\n",
1407 type
, sp
->handle
, comp_status
, fw_status
[1], fw_status
[2],
1408 le16_to_cpu(((struct els_sts_entry_24xx
*)
1409 pkt
)->total_byte_count
));
1410 fw_sts_ptr
= ((uint8_t*)bsg_job
->req
->sense
) + sizeof(struct fc_bsg_reply
);
1411 memcpy( fw_sts_ptr
, fw_status
, sizeof(fw_status
));
1414 ql_dbg(ql_dbg_user
, vha
, 0x5040,
1415 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1416 "error subcode 1=0x%x error subcode 2=0x%x.\n",
1417 type
, sp
->handle
, comp_status
,
1418 le16_to_cpu(((struct els_sts_entry_24xx
*)
1419 pkt
)->error_subcode_1
),
1420 le16_to_cpu(((struct els_sts_entry_24xx
*)
1421 pkt
)->error_subcode_2
));
1422 res
= DID_ERROR
<< 16;
1423 bsg_job
->reply
->reply_payload_rcv_len
= 0;
1424 fw_sts_ptr
= ((uint8_t*)bsg_job
->req
->sense
) + sizeof(struct fc_bsg_reply
);
1425 memcpy( fw_sts_ptr
, fw_status
, sizeof(fw_status
));
1427 ql_dump_buffer(ql_dbg_user
+ ql_dbg_buffer
, vha
, 0x5056,
1428 (uint8_t *)pkt
, sizeof(*pkt
));
1432 bsg_job
->reply
->reply_payload_rcv_len
= bsg_job
->reply_payload
.payload_len
;
1433 bsg_job
->reply_len
= 0;
1436 sp
->done(vha
, sp
, res
);
1440 qla24xx_logio_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1441 struct logio_entry_24xx
*logio
)
1443 const char func
[] = "LOGIO-IOCB";
1447 struct srb_iocb
*lio
;
1451 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, logio
);
1455 lio
= &sp
->u
.iocb_cmd
;
1457 fcport
= sp
->fcport
;
1458 data
= lio
->u
.logio
.data
;
1460 data
[0] = MBS_COMMAND_ERROR
;
1461 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1462 QLA_LOGIO_LOGIN_RETRIED
: 0;
1463 if (logio
->entry_status
) {
1464 ql_log(ql_log_warn
, fcport
->vha
, 0x5034,
1465 "Async-%s error entry - hdl=%x"
1466 "portid=%02x%02x%02x entry-status=%x.\n",
1467 type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1468 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1469 logio
->entry_status
);
1470 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x504d,
1471 (uint8_t *)logio
, sizeof(*logio
));
1476 if (le16_to_cpu(logio
->comp_status
) == CS_COMPLETE
) {
1477 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5036,
1478 "Async-%s complete - hdl=%x portid=%02x%02x%02x "
1479 "iop0=%x.\n", type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1480 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1481 le32_to_cpu(logio
->io_parameter
[0]));
1483 data
[0] = MBS_COMMAND_COMPLETE
;
1484 if (sp
->type
!= SRB_LOGIN_CMD
)
1487 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1488 if (iop
[0] & BIT_4
) {
1489 fcport
->port_type
= FCT_TARGET
;
1491 fcport
->flags
|= FCF_FCP2_DEVICE
;
1492 } else if (iop
[0] & BIT_5
)
1493 fcport
->port_type
= FCT_INITIATOR
;
1496 fcport
->flags
|= FCF_CONF_COMP_SUPPORTED
;
1498 if (logio
->io_parameter
[7] || logio
->io_parameter
[8])
1499 fcport
->supported_classes
|= FC_COS_CLASS2
;
1500 if (logio
->io_parameter
[9] || logio
->io_parameter
[10])
1501 fcport
->supported_classes
|= FC_COS_CLASS3
;
1506 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1507 iop
[1] = le32_to_cpu(logio
->io_parameter
[1]);
1509 case LSC_SCODE_PORTID_USED
:
1510 data
[0] = MBS_PORT_ID_USED
;
1511 data
[1] = LSW(iop
[1]);
1513 case LSC_SCODE_NPORT_USED
:
1514 data
[0] = MBS_LOOP_ID_USED
;
1517 data
[0] = MBS_COMMAND_ERROR
;
1521 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5037,
1522 "Async-%s failed - hdl=%x portid=%02x%02x%02x comp=%x "
1523 "iop0=%x iop1=%x.\n", type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1524 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1525 le16_to_cpu(logio
->comp_status
),
1526 le32_to_cpu(logio
->io_parameter
[0]),
1527 le32_to_cpu(logio
->io_parameter
[1]));
1530 sp
->done(vha
, sp
, 0);
1534 qla24xx_tm_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
, void *tsk
)
1536 const char func
[] = "TMF-IOCB";
1540 struct srb_iocb
*iocb
;
1541 struct sts_entry_24xx
*sts
= (struct sts_entry_24xx
*)tsk
;
1543 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, tsk
);
1547 iocb
= &sp
->u
.iocb_cmd
;
1549 fcport
= sp
->fcport
;
1550 iocb
->u
.tmf
.data
= QLA_SUCCESS
;
1552 if (sts
->entry_status
) {
1553 ql_log(ql_log_warn
, fcport
->vha
, 0x5038,
1554 "Async-%s error - hdl=%x entry-status(%x).\n",
1555 type
, sp
->handle
, sts
->entry_status
);
1556 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1557 } else if (sts
->comp_status
!= __constant_cpu_to_le16(CS_COMPLETE
)) {
1558 ql_log(ql_log_warn
, fcport
->vha
, 0x5039,
1559 "Async-%s error - hdl=%x completion status(%x).\n",
1560 type
, sp
->handle
, sts
->comp_status
);
1561 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1562 } else if ((le16_to_cpu(sts
->scsi_status
) &
1563 SS_RESPONSE_INFO_LEN_VALID
)) {
1564 if (le32_to_cpu(sts
->rsp_data_len
) < 4) {
1565 ql_log(ql_log_warn
, fcport
->vha
, 0x503b,
1566 "Async-%s error - hdl=%x not enough response(%d).\n",
1567 type
, sp
->handle
, sts
->rsp_data_len
);
1568 } else if (sts
->data
[3]) {
1569 ql_log(ql_log_warn
, fcport
->vha
, 0x503c,
1570 "Async-%s error - hdl=%x response(%x).\n",
1571 type
, sp
->handle
, sts
->data
[3]);
1572 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1576 if (iocb
->u
.tmf
.data
!= QLA_SUCCESS
)
1577 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5055,
1578 (uint8_t *)sts
, sizeof(*sts
));
1580 sp
->done(vha
, sp
, 0);
1584 * qla2x00_process_response_queue() - Process response queue entries.
1585 * @ha: SCSI driver HA context
1588 qla2x00_process_response_queue(struct rsp_que
*rsp
)
1590 struct scsi_qla_host
*vha
;
1591 struct qla_hw_data
*ha
= rsp
->hw
;
1592 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1594 uint16_t handle_cnt
;
1597 vha
= pci_get_drvdata(ha
->pdev
);
1599 if (!vha
->flags
.online
)
1602 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
1603 pkt
= (sts_entry_t
*)rsp
->ring_ptr
;
1606 if (rsp
->ring_index
== rsp
->length
) {
1607 rsp
->ring_index
= 0;
1608 rsp
->ring_ptr
= rsp
->ring
;
1613 if (pkt
->entry_status
!= 0) {
1614 qla2x00_error_entry(vha
, rsp
, pkt
);
1615 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
1620 switch (pkt
->entry_type
) {
1622 qla2x00_status_entry(vha
, rsp
, pkt
);
1624 case STATUS_TYPE_21
:
1625 handle_cnt
= ((sts21_entry_t
*)pkt
)->handle_count
;
1626 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
1627 qla2x00_process_completed_request(vha
, rsp
->req
,
1628 ((sts21_entry_t
*)pkt
)->handle
[cnt
]);
1631 case STATUS_TYPE_22
:
1632 handle_cnt
= ((sts22_entry_t
*)pkt
)->handle_count
;
1633 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
1634 qla2x00_process_completed_request(vha
, rsp
->req
,
1635 ((sts22_entry_t
*)pkt
)->handle
[cnt
]);
1638 case STATUS_CONT_TYPE
:
1639 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
1642 qla2x00_mbx_iocb_entry(vha
, rsp
->req
,
1643 (struct mbx_entry
*)pkt
);
1646 qla2x00_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
1649 /* Type Not Supported. */
1650 ql_log(ql_log_warn
, vha
, 0x504a,
1651 "Received unknown response pkt type %x "
1652 "entry status=%x.\n",
1653 pkt
->entry_type
, pkt
->entry_status
);
1656 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
1660 /* Adjust ring index */
1661 WRT_REG_WORD(ISP_RSP_Q_OUT(ha
, reg
), rsp
->ring_index
);
1665 qla2x00_handle_sense(srb_t
*sp
, uint8_t *sense_data
, uint32_t par_sense_len
,
1666 uint32_t sense_len
, struct rsp_que
*rsp
, int res
)
1668 struct scsi_qla_host
*vha
= sp
->fcport
->vha
;
1669 struct scsi_cmnd
*cp
= GET_CMD_SP(sp
);
1670 uint32_t track_sense_len
;
1672 if (sense_len
>= SCSI_SENSE_BUFFERSIZE
)
1673 sense_len
= SCSI_SENSE_BUFFERSIZE
;
1675 SET_CMD_SENSE_LEN(sp
, sense_len
);
1676 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
);
1677 track_sense_len
= sense_len
;
1679 if (sense_len
> par_sense_len
)
1680 sense_len
= par_sense_len
;
1682 memcpy(cp
->sense_buffer
, sense_data
, sense_len
);
1684 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
+ sense_len
);
1685 track_sense_len
-= sense_len
;
1686 SET_CMD_SENSE_LEN(sp
, track_sense_len
);
1688 if (track_sense_len
!= 0) {
1689 rsp
->status_srb
= sp
;
1694 ql_dbg(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x301c,
1695 "Check condition Sense data, nexus%ld:%d:%llu cmd=%p.\n",
1696 sp
->fcport
->vha
->host_no
, cp
->device
->id
, cp
->device
->lun
,
1698 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302b,
1699 cp
->sense_buffer
, sense_len
);
1703 struct scsi_dif_tuple
{
1704 __be16 guard
; /* Checksum */
1705 __be16 app_tag
; /* APPL identifier */
1706 __be32 ref_tag
; /* Target LBA or indirect LBA */
1710 * Checks the guard or meta-data for the type of error
1711 * detected by the HBA. In case of errors, we set the
1712 * ASC/ASCQ fields in the sense buffer with ILLEGAL_REQUEST
1713 * to indicate to the kernel that the HBA detected error.
1716 qla2x00_handle_dif_error(srb_t
*sp
, struct sts_entry_24xx
*sts24
)
1718 struct scsi_qla_host
*vha
= sp
->fcport
->vha
;
1719 struct scsi_cmnd
*cmd
= GET_CMD_SP(sp
);
1720 uint8_t *ap
= &sts24
->data
[12];
1721 uint8_t *ep
= &sts24
->data
[20];
1722 uint32_t e_ref_tag
, a_ref_tag
;
1723 uint16_t e_app_tag
, a_app_tag
;
1724 uint16_t e_guard
, a_guard
;
1727 * swab32 of the "data" field in the beginning of qla2x00_status_entry()
1728 * would make guard field appear at offset 2
1730 a_guard
= le16_to_cpu(*(uint16_t *)(ap
+ 2));
1731 a_app_tag
= le16_to_cpu(*(uint16_t *)(ap
+ 0));
1732 a_ref_tag
= le32_to_cpu(*(uint32_t *)(ap
+ 4));
1733 e_guard
= le16_to_cpu(*(uint16_t *)(ep
+ 2));
1734 e_app_tag
= le16_to_cpu(*(uint16_t *)(ep
+ 0));
1735 e_ref_tag
= le32_to_cpu(*(uint32_t *)(ep
+ 4));
1737 ql_dbg(ql_dbg_io
, vha
, 0x3023,
1738 "iocb(s) %p Returned STATUS.\n", sts24
);
1740 ql_dbg(ql_dbg_io
, vha
, 0x3024,
1741 "DIF ERROR in cmd 0x%x lba 0x%llx act ref"
1742 " tag=0x%x, exp ref_tag=0x%x, act app tag=0x%x, exp app"
1743 " tag=0x%x, act guard=0x%x, exp guard=0x%x.\n",
1744 cmd
->cmnd
[0], (u64
)scsi_get_lba(cmd
), a_ref_tag
, e_ref_tag
,
1745 a_app_tag
, e_app_tag
, a_guard
, e_guard
);
1749 * For type 3: ref & app tag is all 'f's
1750 * For type 0,1,2: app tag is all 'f's
1752 if ((a_app_tag
== 0xffff) &&
1753 ((scsi_get_prot_type(cmd
) != SCSI_PROT_DIF_TYPE3
) ||
1754 (a_ref_tag
== 0xffffffff))) {
1755 uint32_t blocks_done
, resid
;
1756 sector_t lba_s
= scsi_get_lba(cmd
);
1758 /* 2TB boundary case covered automatically with this */
1759 blocks_done
= e_ref_tag
- (uint32_t)lba_s
+ 1;
1761 resid
= scsi_bufflen(cmd
) - (blocks_done
*
1762 cmd
->device
->sector_size
);
1764 scsi_set_resid(cmd
, resid
);
1765 cmd
->result
= DID_OK
<< 16;
1767 /* Update protection tag */
1768 if (scsi_prot_sg_count(cmd
)) {
1769 uint32_t i
, j
= 0, k
= 0, num_ent
;
1770 struct scatterlist
*sg
;
1771 struct sd_dif_tuple
*spt
;
1773 /* Patch the corresponding protection tags */
1774 scsi_for_each_prot_sg(cmd
, sg
,
1775 scsi_prot_sg_count(cmd
), i
) {
1776 num_ent
= sg_dma_len(sg
) / 8;
1777 if (k
+ num_ent
< blocks_done
) {
1781 j
= blocks_done
- k
- 1;
1786 if (k
!= blocks_done
) {
1787 ql_log(ql_log_warn
, vha
, 0x302f,
1788 "unexpected tag values tag:lba=%x:%llx)\n",
1789 e_ref_tag
, (unsigned long long)lba_s
);
1793 spt
= page_address(sg_page(sg
)) + sg
->offset
;
1796 spt
->app_tag
= 0xffff;
1797 if (scsi_get_prot_type(cmd
) == SCSI_PROT_DIF_TYPE3
)
1798 spt
->ref_tag
= 0xffffffff;
1805 if (e_guard
!= a_guard
) {
1806 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1808 set_driver_byte(cmd
, DRIVER_SENSE
);
1809 set_host_byte(cmd
, DID_ABORT
);
1810 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1815 if (e_ref_tag
!= a_ref_tag
) {
1816 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1818 set_driver_byte(cmd
, DRIVER_SENSE
);
1819 set_host_byte(cmd
, DID_ABORT
);
1820 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1824 /* check appl tag */
1825 if (e_app_tag
!= a_app_tag
) {
1826 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1828 set_driver_byte(cmd
, DRIVER_SENSE
);
1829 set_host_byte(cmd
, DID_ABORT
);
1830 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1838 qla25xx_process_bidir_status_iocb(scsi_qla_host_t
*vha
, void *pkt
,
1839 struct req_que
*req
, uint32_t index
)
1841 struct qla_hw_data
*ha
= vha
->hw
;
1843 uint16_t comp_status
;
1844 uint16_t scsi_status
;
1846 uint32_t rval
= EXT_STATUS_OK
;
1847 struct fc_bsg_job
*bsg_job
= NULL
;
1849 struct sts_entry_24xx
*sts24
;
1850 sts
= (sts_entry_t
*) pkt
;
1851 sts24
= (struct sts_entry_24xx
*) pkt
;
1853 /* Validate handle. */
1854 if (index
>= req
->num_outstanding_cmds
) {
1855 ql_log(ql_log_warn
, vha
, 0x70af,
1856 "Invalid SCSI completion handle 0x%x.\n", index
);
1857 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1861 sp
= req
->outstanding_cmds
[index
];
1863 /* Free outstanding command slot. */
1864 req
->outstanding_cmds
[index
] = NULL
;
1865 bsg_job
= sp
->u
.bsg_job
;
1867 ql_log(ql_log_warn
, vha
, 0x70b0,
1868 "Req:%d: Invalid ISP SCSI completion handle(0x%x)\n",
1871 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1875 if (IS_FWI2_CAPABLE(ha
)) {
1876 comp_status
= le16_to_cpu(sts24
->comp_status
);
1877 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
1879 comp_status
= le16_to_cpu(sts
->comp_status
);
1880 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
1883 thread_id
= bsg_job
->request
->rqst_data
.h_vendor
.vendor_cmd
[1];
1884 switch (comp_status
) {
1886 if (scsi_status
== 0) {
1887 bsg_job
->reply
->reply_payload_rcv_len
=
1888 bsg_job
->reply_payload
.payload_len
;
1889 vha
->qla_stats
.input_bytes
+=
1890 bsg_job
->reply
->reply_payload_rcv_len
;
1891 vha
->qla_stats
.input_requests
++;
1892 rval
= EXT_STATUS_OK
;
1896 case CS_DATA_OVERRUN
:
1897 ql_dbg(ql_dbg_user
, vha
, 0x70b1,
1898 "Command completed with date overrun thread_id=%d\n",
1900 rval
= EXT_STATUS_DATA_OVERRUN
;
1903 case CS_DATA_UNDERRUN
:
1904 ql_dbg(ql_dbg_user
, vha
, 0x70b2,
1905 "Command completed with date underrun thread_id=%d\n",
1907 rval
= EXT_STATUS_DATA_UNDERRUN
;
1909 case CS_BIDIR_RD_OVERRUN
:
1910 ql_dbg(ql_dbg_user
, vha
, 0x70b3,
1911 "Command completed with read data overrun thread_id=%d\n",
1913 rval
= EXT_STATUS_DATA_OVERRUN
;
1916 case CS_BIDIR_RD_WR_OVERRUN
:
1917 ql_dbg(ql_dbg_user
, vha
, 0x70b4,
1918 "Command completed with read and write data overrun "
1919 "thread_id=%d\n", thread_id
);
1920 rval
= EXT_STATUS_DATA_OVERRUN
;
1923 case CS_BIDIR_RD_OVERRUN_WR_UNDERRUN
:
1924 ql_dbg(ql_dbg_user
, vha
, 0x70b5,
1925 "Command completed with read data over and write data "
1926 "underrun thread_id=%d\n", thread_id
);
1927 rval
= EXT_STATUS_DATA_OVERRUN
;
1930 case CS_BIDIR_RD_UNDERRUN
:
1931 ql_dbg(ql_dbg_user
, vha
, 0x70b6,
1932 "Command completed with read data data underrun "
1933 "thread_id=%d\n", thread_id
);
1934 rval
= EXT_STATUS_DATA_UNDERRUN
;
1937 case CS_BIDIR_RD_UNDERRUN_WR_OVERRUN
:
1938 ql_dbg(ql_dbg_user
, vha
, 0x70b7,
1939 "Command completed with read data under and write data "
1940 "overrun thread_id=%d\n", thread_id
);
1941 rval
= EXT_STATUS_DATA_UNDERRUN
;
1944 case CS_BIDIR_RD_WR_UNDERRUN
:
1945 ql_dbg(ql_dbg_user
, vha
, 0x70b8,
1946 "Command completed with read and write data underrun "
1947 "thread_id=%d\n", thread_id
);
1948 rval
= EXT_STATUS_DATA_UNDERRUN
;
1952 ql_dbg(ql_dbg_user
, vha
, 0x70b9,
1953 "Command completed with data DMA error thread_id=%d\n",
1955 rval
= EXT_STATUS_DMA_ERR
;
1959 ql_dbg(ql_dbg_user
, vha
, 0x70ba,
1960 "Command completed with timeout thread_id=%d\n",
1962 rval
= EXT_STATUS_TIMEOUT
;
1965 ql_dbg(ql_dbg_user
, vha
, 0x70bb,
1966 "Command completed with completion status=0x%x "
1967 "thread_id=%d\n", comp_status
, thread_id
);
1968 rval
= EXT_STATUS_ERR
;
1971 bsg_job
->reply
->reply_payload_rcv_len
= 0;
1974 /* Return the vendor specific reply to API */
1975 bsg_job
->reply
->reply_data
.vendor_reply
.vendor_rsp
[0] = rval
;
1976 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
1977 /* Always return DID_OK, bsg will send the vendor specific response
1978 * in this case only */
1979 sp
->done(vha
, sp
, (DID_OK
<< 6));
1984 * qla2x00_status_entry() - Process a Status IOCB entry.
1985 * @ha: SCSI driver HA context
1986 * @pkt: Entry pointer
1989 qla2x00_status_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, void *pkt
)
1993 struct scsi_cmnd
*cp
;
1995 struct sts_entry_24xx
*sts24
;
1996 uint16_t comp_status
;
1997 uint16_t scsi_status
;
1999 uint8_t lscsi_status
;
2001 uint32_t sense_len
, par_sense_len
, rsp_info_len
, resid_len
,
2003 uint8_t *rsp_info
, *sense_data
;
2004 struct qla_hw_data
*ha
= vha
->hw
;
2007 struct req_que
*req
;
2010 uint16_t state_flags
= 0;
2011 uint16_t retry_delay
= 0;
2013 sts
= (sts_entry_t
*) pkt
;
2014 sts24
= (struct sts_entry_24xx
*) pkt
;
2015 if (IS_FWI2_CAPABLE(ha
)) {
2016 comp_status
= le16_to_cpu(sts24
->comp_status
);
2017 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
2018 state_flags
= le16_to_cpu(sts24
->state_flags
);
2020 comp_status
= le16_to_cpu(sts
->comp_status
);
2021 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
2023 handle
= (uint32_t) LSW(sts
->handle
);
2024 que
= MSW(sts
->handle
);
2025 req
= ha
->req_q_map
[que
];
2027 /* Check for invalid queue pointer */
2029 que
>= find_first_zero_bit(ha
->req_qid_map
, ha
->max_req_queues
)) {
2030 ql_dbg(ql_dbg_io
, vha
, 0x3059,
2031 "Invalid status handle (0x%x): Bad req pointer. req=%p, "
2032 "que=%u.\n", sts
->handle
, req
, que
);
2036 /* Validate handle. */
2037 if (handle
< req
->num_outstanding_cmds
)
2038 sp
= req
->outstanding_cmds
[handle
];
2043 ql_dbg(ql_dbg_io
, vha
, 0x3017,
2044 "Invalid status handle (0x%x).\n", sts
->handle
);
2046 if (!test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
2047 if (IS_P3P_TYPE(ha
))
2048 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
2050 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2051 qla2xxx_wake_dpc(vha
);
2056 if (unlikely((state_flags
& BIT_1
) && (sp
->type
== SRB_BIDI_CMD
))) {
2057 qla25xx_process_bidir_status_iocb(vha
, pkt
, req
, handle
);
2061 /* Task Management completion. */
2062 if (sp
->type
== SRB_TM_CMD
) {
2063 qla24xx_tm_iocb_entry(vha
, req
, pkt
);
2067 /* Fast path completion. */
2068 if (comp_status
== CS_COMPLETE
&& scsi_status
== 0) {
2069 qla2x00_process_completed_request(vha
, req
, handle
);
2074 req
->outstanding_cmds
[handle
] = NULL
;
2075 cp
= GET_CMD_SP(sp
);
2077 ql_dbg(ql_dbg_io
, vha
, 0x3018,
2078 "Command already returned (0x%x/%p).\n",
2084 lscsi_status
= scsi_status
& STATUS_MASK
;
2086 fcport
= sp
->fcport
;
2089 sense_len
= par_sense_len
= rsp_info_len
= resid_len
=
2091 if (IS_FWI2_CAPABLE(ha
)) {
2092 if (scsi_status
& SS_SENSE_LEN_VALID
)
2093 sense_len
= le32_to_cpu(sts24
->sense_len
);
2094 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2095 rsp_info_len
= le32_to_cpu(sts24
->rsp_data_len
);
2096 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
))
2097 resid_len
= le32_to_cpu(sts24
->rsp_residual_count
);
2098 if (comp_status
== CS_DATA_UNDERRUN
)
2099 fw_resid_len
= le32_to_cpu(sts24
->residual_len
);
2100 rsp_info
= sts24
->data
;
2101 sense_data
= sts24
->data
;
2102 host_to_fcp_swap(sts24
->data
, sizeof(sts24
->data
));
2103 ox_id
= le16_to_cpu(sts24
->ox_id
);
2104 par_sense_len
= sizeof(sts24
->data
);
2105 /* Valid values of the retry delay timer are 0x1-0xffef */
2106 if (sts24
->retry_delay
> 0 && sts24
->retry_delay
< 0xfff1)
2107 retry_delay
= sts24
->retry_delay
;
2109 if (scsi_status
& SS_SENSE_LEN_VALID
)
2110 sense_len
= le16_to_cpu(sts
->req_sense_length
);
2111 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2112 rsp_info_len
= le16_to_cpu(sts
->rsp_info_len
);
2113 resid_len
= le32_to_cpu(sts
->residual_length
);
2114 rsp_info
= sts
->rsp_info
;
2115 sense_data
= sts
->req_sense_data
;
2116 par_sense_len
= sizeof(sts
->req_sense_data
);
2119 /* Check for any FCP transport errors. */
2120 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
) {
2121 /* Sense data lies beyond any FCP RESPONSE data. */
2122 if (IS_FWI2_CAPABLE(ha
)) {
2123 sense_data
+= rsp_info_len
;
2124 par_sense_len
-= rsp_info_len
;
2126 if (rsp_info_len
> 3 && rsp_info
[3]) {
2127 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3019,
2128 "FCP I/O protocol failure (0x%x/0x%x).\n",
2129 rsp_info_len
, rsp_info
[3]);
2131 res
= DID_BUS_BUSY
<< 16;
2136 /* Check for overrun. */
2137 if (IS_FWI2_CAPABLE(ha
) && comp_status
== CS_COMPLETE
&&
2138 scsi_status
& SS_RESIDUAL_OVER
)
2139 comp_status
= CS_DATA_OVERRUN
;
2142 * Check retry_delay_timer value if we receive a busy or
2145 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
||
2146 lscsi_status
== SAM_STAT_BUSY
)
2147 qla2x00_set_retry_delay_timestamp(fcport
, retry_delay
);
2150 * Based on Host and scsi status generate status code for Linux
2152 switch (comp_status
) {
2155 if (scsi_status
== 0) {
2159 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
)) {
2161 scsi_set_resid(cp
, resid
);
2163 if (!lscsi_status
&&
2164 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2166 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301a,
2167 "Mid-layer underflow "
2168 "detected (0x%x of 0x%x bytes).\n",
2169 resid
, scsi_bufflen(cp
));
2171 res
= DID_ERROR
<< 16;
2175 res
= DID_OK
<< 16 | lscsi_status
;
2177 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2178 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301b,
2179 "QUEUE FULL detected.\n");
2183 if (lscsi_status
!= SS_CHECK_CONDITION
)
2186 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2187 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2190 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
, sense_len
,
2194 case CS_DATA_UNDERRUN
:
2195 /* Use F/W calculated residual length. */
2196 resid
= IS_FWI2_CAPABLE(ha
) ? fw_resid_len
: resid_len
;
2197 scsi_set_resid(cp
, resid
);
2198 if (scsi_status
& SS_RESIDUAL_UNDER
) {
2199 if (IS_FWI2_CAPABLE(ha
) && fw_resid_len
!= resid_len
) {
2200 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301d,
2201 "Dropped frame(s) detected "
2202 "(0x%x of 0x%x bytes).\n",
2203 resid
, scsi_bufflen(cp
));
2205 res
= DID_ERROR
<< 16 | lscsi_status
;
2206 goto check_scsi_status
;
2209 if (!lscsi_status
&&
2210 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2212 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301e,
2213 "Mid-layer underflow "
2214 "detected (0x%x of 0x%x bytes).\n",
2215 resid
, scsi_bufflen(cp
));
2217 res
= DID_ERROR
<< 16;
2220 } else if (lscsi_status
!= SAM_STAT_TASK_SET_FULL
&&
2221 lscsi_status
!= SAM_STAT_BUSY
) {
2223 * scsi status of task set and busy are considered to be
2224 * task not completed.
2227 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301f,
2228 "Dropped frame(s) detected (0x%x "
2229 "of 0x%x bytes).\n", resid
,
2232 res
= DID_ERROR
<< 16 | lscsi_status
;
2233 goto check_scsi_status
;
2235 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3030,
2236 "scsi_status: 0x%x, lscsi_status: 0x%x\n",
2237 scsi_status
, lscsi_status
);
2240 res
= DID_OK
<< 16 | lscsi_status
;
2245 * Check to see if SCSI Status is non zero. If so report SCSI
2248 if (lscsi_status
!= 0) {
2249 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2250 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3020,
2251 "QUEUE FULL detected.\n");
2255 if (lscsi_status
!= SS_CHECK_CONDITION
)
2258 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2259 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2262 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
,
2263 sense_len
, rsp
, res
);
2267 case CS_PORT_LOGGED_OUT
:
2268 case CS_PORT_CONFIG_CHG
:
2271 case CS_PORT_UNAVAILABLE
:
2276 * We are going to have the fc class block the rport
2277 * while we try to recover so instruct the mid layer
2278 * to requeue until the class decides how to handle this.
2280 res
= DID_TRANSPORT_DISRUPTED
<< 16;
2282 if (comp_status
== CS_TIMEOUT
) {
2283 if (IS_FWI2_CAPABLE(ha
))
2285 else if ((le16_to_cpu(sts
->status_flags
) &
2286 SF_LOGOUT_SENT
) == 0)
2290 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3021,
2291 "Port to be marked lost on fcport=%02x%02x%02x, current "
2292 "port state= %s.\n", fcport
->d_id
.b
.domain
,
2293 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
2294 port_state_str
[atomic_read(&fcport
->state
)]);
2296 if (atomic_read(&fcport
->state
) == FCS_ONLINE
)
2297 qla2x00_mark_device_lost(fcport
->vha
, fcport
, 1, 1);
2301 res
= DID_RESET
<< 16;
2305 logit
= qla2x00_handle_dif_error(sp
, sts24
);
2310 res
= DID_ERROR
<< 16;
2312 if (!IS_PI_SPLIT_DET_CAPABLE(ha
))
2315 if (state_flags
& BIT_4
)
2316 scmd_printk(KERN_WARNING
, cp
,
2317 "Unsupported device '%s' found.\n",
2318 cp
->device
->vendor
);
2322 res
= DID_ERROR
<< 16;
2328 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3022,
2329 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
2330 "portid=%02x%02x%02x oxid=0x%x cdb=%10phN len=0x%x "
2331 "rsp_info=0x%x resid=0x%x fw_resid=0x%x.\n",
2332 comp_status
, scsi_status
, res
, vha
->host_no
,
2333 cp
->device
->id
, cp
->device
->lun
, fcport
->d_id
.b
.domain
,
2334 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
, ox_id
,
2335 cp
->cmnd
, scsi_bufflen(cp
), rsp_info_len
,
2336 resid_len
, fw_resid_len
);
2338 if (rsp
->status_srb
== NULL
)
2339 sp
->done(ha
, sp
, res
);
2343 * qla2x00_status_cont_entry() - Process a Status Continuations entry.
2344 * @ha: SCSI driver HA context
2345 * @pkt: Entry pointer
2347 * Extended sense data.
2350 qla2x00_status_cont_entry(struct rsp_que
*rsp
, sts_cont_entry_t
*pkt
)
2352 uint8_t sense_sz
= 0;
2353 struct qla_hw_data
*ha
= rsp
->hw
;
2354 struct scsi_qla_host
*vha
= pci_get_drvdata(ha
->pdev
);
2355 srb_t
*sp
= rsp
->status_srb
;
2356 struct scsi_cmnd
*cp
;
2360 if (!sp
|| !GET_CMD_SENSE_LEN(sp
))
2363 sense_len
= GET_CMD_SENSE_LEN(sp
);
2364 sense_ptr
= GET_CMD_SENSE_PTR(sp
);
2366 cp
= GET_CMD_SP(sp
);
2368 ql_log(ql_log_warn
, vha
, 0x3025,
2369 "cmd is NULL: already returned to OS (sp=%p).\n", sp
);
2371 rsp
->status_srb
= NULL
;
2375 if (sense_len
> sizeof(pkt
->data
))
2376 sense_sz
= sizeof(pkt
->data
);
2378 sense_sz
= sense_len
;
2380 /* Move sense data. */
2381 if (IS_FWI2_CAPABLE(ha
))
2382 host_to_fcp_swap(pkt
->data
, sizeof(pkt
->data
));
2383 memcpy(sense_ptr
, pkt
->data
, sense_sz
);
2384 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302c,
2385 sense_ptr
, sense_sz
);
2387 sense_len
-= sense_sz
;
2388 sense_ptr
+= sense_sz
;
2390 SET_CMD_SENSE_PTR(sp
, sense_ptr
);
2391 SET_CMD_SENSE_LEN(sp
, sense_len
);
2393 /* Place command on done queue. */
2394 if (sense_len
== 0) {
2395 rsp
->status_srb
= NULL
;
2396 sp
->done(ha
, sp
, cp
->result
);
2401 * qla2x00_error_entry() - Process an error entry.
2402 * @ha: SCSI driver HA context
2403 * @pkt: Entry pointer
2406 qla2x00_error_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, sts_entry_t
*pkt
)
2409 struct qla_hw_data
*ha
= vha
->hw
;
2410 const char func
[] = "ERROR-IOCB";
2411 uint16_t que
= MSW(pkt
->handle
);
2412 struct req_que
*req
= NULL
;
2413 int res
= DID_ERROR
<< 16;
2415 ql_dbg(ql_dbg_async
, vha
, 0x502a,
2416 "type of error status in response: 0x%x\n", pkt
->entry_status
);
2418 if (que
>= ha
->max_req_queues
|| !ha
->req_q_map
[que
])
2421 req
= ha
->req_q_map
[que
];
2423 if (pkt
->entry_status
& RF_BUSY
)
2424 res
= DID_BUS_BUSY
<< 16;
2426 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2428 sp
->done(ha
, sp
, res
);
2432 ql_log(ql_log_warn
, vha
, 0x5030,
2433 "Error entry - invalid handle/queue.\n");
2435 if (IS_P3P_TYPE(ha
))
2436 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
2438 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2439 qla2xxx_wake_dpc(vha
);
2443 * qla24xx_mbx_completion() - Process mailbox command completions.
2444 * @ha: SCSI driver HA context
2445 * @mb0: Mailbox0 register
2448 qla24xx_mbx_completion(scsi_qla_host_t
*vha
, uint16_t mb0
)
2452 uint16_t __iomem
*wptr
;
2453 struct qla_hw_data
*ha
= vha
->hw
;
2454 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
2456 /* Read all mbox registers? */
2457 mboxes
= (1 << ha
->mbx_count
) - 1;
2459 ql_dbg(ql_dbg_async
, vha
, 0x504e, "MBX pointer ERROR.\n");
2461 mboxes
= ha
->mcp
->in_mb
;
2463 /* Load return mailbox registers. */
2464 ha
->flags
.mbox_int
= 1;
2465 ha
->mailbox_out
[0] = mb0
;
2467 wptr
= (uint16_t __iomem
*)®
->mailbox1
;
2469 for (cnt
= 1; cnt
< ha
->mbx_count
; cnt
++) {
2471 ha
->mailbox_out
[cnt
] = RD_REG_WORD(wptr
);
2479 qla24xx_abort_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
2480 struct abort_entry_24xx
*pkt
)
2482 const char func
[] = "ABT_IOCB";
2484 struct srb_iocb
*abt
;
2486 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2490 abt
= &sp
->u
.iocb_cmd
;
2491 abt
->u
.abt
.comp_status
= le32_to_cpu(pkt
->nport_handle
);
2492 sp
->done(vha
, sp
, 0);
2496 * qla24xx_process_response_queue() - Process response queue entries.
2497 * @ha: SCSI driver HA context
2499 void qla24xx_process_response_queue(struct scsi_qla_host
*vha
,
2500 struct rsp_que
*rsp
)
2502 struct sts_entry_24xx
*pkt
;
2503 struct qla_hw_data
*ha
= vha
->hw
;
2505 if (!vha
->flags
.online
)
2508 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
2509 pkt
= (struct sts_entry_24xx
*)rsp
->ring_ptr
;
2512 if (rsp
->ring_index
== rsp
->length
) {
2513 rsp
->ring_index
= 0;
2514 rsp
->ring_ptr
= rsp
->ring
;
2519 if (pkt
->entry_status
!= 0) {
2520 qla2x00_error_entry(vha
, rsp
, (sts_entry_t
*) pkt
);
2522 if (qlt_24xx_process_response_error(vha
, pkt
))
2525 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2531 switch (pkt
->entry_type
) {
2533 qla2x00_status_entry(vha
, rsp
, pkt
);
2535 case STATUS_CONT_TYPE
:
2536 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
2538 case VP_RPT_ID_IOCB_TYPE
:
2539 qla24xx_report_id_acquisition(vha
,
2540 (struct vp_rpt_id_entry_24xx
*)pkt
);
2542 case LOGINOUT_PORT_IOCB_TYPE
:
2543 qla24xx_logio_entry(vha
, rsp
->req
,
2544 (struct logio_entry_24xx
*)pkt
);
2547 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
2550 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, ELS_IOCB_TYPE
);
2552 case ABTS_RECV_24XX
:
2553 /* ensure that the ATIO queue is empty */
2554 qlt_24xx_process_atio_queue(vha
);
2555 case ABTS_RESP_24XX
:
2557 case NOTIFY_ACK_TYPE
:
2559 qlt_response_pkt_all_vps(vha
, (response_t
*)pkt
);
2562 /* Do nothing in this case, this check is to prevent it
2563 * from falling into default case
2566 case ABORT_IOCB_TYPE
:
2567 qla24xx_abort_iocb_entry(vha
, rsp
->req
,
2568 (struct abort_entry_24xx
*)pkt
);
2571 /* Type Not Supported. */
2572 ql_dbg(ql_dbg_async
, vha
, 0x5042,
2573 "Received unknown response pkt type %x "
2574 "entry status=%x.\n",
2575 pkt
->entry_type
, pkt
->entry_status
);
2578 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2582 /* Adjust ring index */
2583 if (IS_P3P_TYPE(ha
)) {
2584 struct device_reg_82xx __iomem
*reg
= &ha
->iobase
->isp82
;
2585 WRT_REG_DWORD(®
->rsp_q_out
[0], rsp
->ring_index
);
2587 WRT_REG_DWORD(rsp
->rsp_q_out
, rsp
->ring_index
);
2591 qla2xxx_check_risc_status(scsi_qla_host_t
*vha
)
2595 struct qla_hw_data
*ha
= vha
->hw
;
2596 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
2598 if (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
2603 WRT_REG_DWORD(®
->iobase_addr
, 0x7C00);
2604 RD_REG_DWORD(®
->iobase_addr
);
2605 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
2606 for (cnt
= 10000; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
2607 rval
== QLA_SUCCESS
; cnt
--) {
2609 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
2612 rval
= QLA_FUNCTION_TIMEOUT
;
2614 if (rval
== QLA_SUCCESS
)
2618 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
2619 for (cnt
= 100; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
2620 rval
== QLA_SUCCESS
; cnt
--) {
2622 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
2625 rval
= QLA_FUNCTION_TIMEOUT
;
2627 if (rval
!= QLA_SUCCESS
)
2631 if (RD_REG_DWORD(®
->iobase_c8
) & BIT_3
)
2632 ql_log(ql_log_info
, vha
, 0x504c,
2633 "Additional code -- 0x55AA.\n");
2636 WRT_REG_DWORD(®
->iobase_window
, 0x0000);
2637 RD_REG_DWORD(®
->iobase_window
);
2641 * qla24xx_intr_handler() - Process interrupts for the ISP23xx and ISP24xx.
2643 * @dev_id: SCSI driver HA context
2645 * Called by system whenever the host adapter generates an interrupt.
2647 * Returns handled flag.
2650 qla24xx_intr_handler(int irq
, void *dev_id
)
2652 scsi_qla_host_t
*vha
;
2653 struct qla_hw_data
*ha
;
2654 struct device_reg_24xx __iomem
*reg
;
2660 struct rsp_que
*rsp
;
2661 unsigned long flags
;
2663 rsp
= (struct rsp_que
*) dev_id
;
2665 ql_log(ql_log_info
, NULL
, 0x5059,
2666 "%s: NULL response queue pointer.\n", __func__
);
2671 reg
= &ha
->iobase
->isp24
;
2674 if (unlikely(pci_channel_offline(ha
->pdev
)))
2677 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2678 vha
= pci_get_drvdata(ha
->pdev
);
2679 for (iter
= 50; iter
--; ) {
2680 stat
= RD_REG_DWORD(®
->host_status
);
2681 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2683 if (stat
& HSRX_RISC_PAUSED
) {
2684 if (unlikely(pci_channel_offline(ha
->pdev
)))
2687 hccr
= RD_REG_DWORD(®
->hccr
);
2689 ql_log(ql_log_warn
, vha
, 0x504b,
2690 "RISC paused -- HCCR=%x, Dumping firmware.\n",
2693 qla2xxx_check_risc_status(vha
);
2695 ha
->isp_ops
->fw_dump(vha
, 1);
2696 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2698 } else if ((stat
& HSRX_RISC_INT
) == 0)
2701 switch (stat
& 0xff) {
2702 case INTR_ROM_MB_SUCCESS
:
2703 case INTR_ROM_MB_FAILED
:
2704 case INTR_MB_SUCCESS
:
2705 case INTR_MB_FAILED
:
2706 qla24xx_mbx_completion(vha
, MSW(stat
));
2707 status
|= MBX_INTERRUPT
;
2710 case INTR_ASYNC_EVENT
:
2712 mb
[1] = RD_REG_WORD(®
->mailbox1
);
2713 mb
[2] = RD_REG_WORD(®
->mailbox2
);
2714 mb
[3] = RD_REG_WORD(®
->mailbox3
);
2715 qla2x00_async_event(vha
, rsp
, mb
);
2717 case INTR_RSP_QUE_UPDATE
:
2718 case INTR_RSP_QUE_UPDATE_83XX
:
2719 qla24xx_process_response_queue(vha
, rsp
);
2721 case INTR_ATIO_QUE_UPDATE
:
2722 qlt_24xx_process_atio_queue(vha
);
2724 case INTR_ATIO_RSP_QUE_UPDATE
:
2725 qlt_24xx_process_atio_queue(vha
);
2726 qla24xx_process_response_queue(vha
, rsp
);
2729 ql_dbg(ql_dbg_async
, vha
, 0x504f,
2730 "Unrecognized interrupt type (%d).\n", stat
* 0xff);
2733 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2734 RD_REG_DWORD_RELAXED(®
->hccr
);
2735 if (unlikely(IS_QLA83XX(ha
) && (ha
->pdev
->revision
== 1)))
2738 qla2x00_handle_mbx_completion(ha
, status
);
2739 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2745 qla24xx_msix_rsp_q(int irq
, void *dev_id
)
2747 struct qla_hw_data
*ha
;
2748 struct rsp_que
*rsp
;
2749 struct device_reg_24xx __iomem
*reg
;
2750 struct scsi_qla_host
*vha
;
2751 unsigned long flags
;
2754 rsp
= (struct rsp_que
*) dev_id
;
2756 ql_log(ql_log_info
, NULL
, 0x505a,
2757 "%s: NULL response queue pointer.\n", __func__
);
2761 reg
= &ha
->iobase
->isp24
;
2763 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2765 vha
= pci_get_drvdata(ha
->pdev
);
2767 * Use host_status register to check to PCI disconnection before we
2768 * we process the response queue.
2770 stat
= RD_REG_DWORD(®
->host_status
);
2771 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2773 qla24xx_process_response_queue(vha
, rsp
);
2774 if (!ha
->flags
.disable_msix_handshake
) {
2775 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2776 RD_REG_DWORD_RELAXED(®
->hccr
);
2779 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2785 qla25xx_msix_rsp_q(int irq
, void *dev_id
)
2787 struct qla_hw_data
*ha
;
2788 scsi_qla_host_t
*vha
;
2789 struct rsp_que
*rsp
;
2790 struct device_reg_24xx __iomem
*reg
;
2791 unsigned long flags
;
2794 rsp
= (struct rsp_que
*) dev_id
;
2796 ql_log(ql_log_info
, NULL
, 0x505b,
2797 "%s: NULL response queue pointer.\n", __func__
);
2801 vha
= pci_get_drvdata(ha
->pdev
);
2803 /* Clear the interrupt, if enabled, for this response queue */
2804 if (!ha
->flags
.disable_msix_handshake
) {
2805 reg
= &ha
->iobase
->isp24
;
2806 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2807 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2808 hccr
= RD_REG_DWORD_RELAXED(®
->hccr
);
2809 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2811 if (qla2x00_check_reg32_for_disconnect(vha
, hccr
))
2813 queue_work_on((int) (rsp
->id
- 1), ha
->wq
, &rsp
->q_work
);
2820 qla24xx_msix_default(int irq
, void *dev_id
)
2822 scsi_qla_host_t
*vha
;
2823 struct qla_hw_data
*ha
;
2824 struct rsp_que
*rsp
;
2825 struct device_reg_24xx __iomem
*reg
;
2830 unsigned long flags
;
2832 rsp
= (struct rsp_que
*) dev_id
;
2834 ql_log(ql_log_info
, NULL
, 0x505c,
2835 "%s: NULL response queue pointer.\n", __func__
);
2839 reg
= &ha
->iobase
->isp24
;
2842 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2843 vha
= pci_get_drvdata(ha
->pdev
);
2845 stat
= RD_REG_DWORD(®
->host_status
);
2846 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2848 if (stat
& HSRX_RISC_PAUSED
) {
2849 if (unlikely(pci_channel_offline(ha
->pdev
)))
2852 hccr
= RD_REG_DWORD(®
->hccr
);
2854 ql_log(ql_log_info
, vha
, 0x5050,
2855 "RISC paused -- HCCR=%x, Dumping firmware.\n",
2858 qla2xxx_check_risc_status(vha
);
2860 ha
->isp_ops
->fw_dump(vha
, 1);
2861 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2863 } else if ((stat
& HSRX_RISC_INT
) == 0)
2866 switch (stat
& 0xff) {
2867 case INTR_ROM_MB_SUCCESS
:
2868 case INTR_ROM_MB_FAILED
:
2869 case INTR_MB_SUCCESS
:
2870 case INTR_MB_FAILED
:
2871 qla24xx_mbx_completion(vha
, MSW(stat
));
2872 status
|= MBX_INTERRUPT
;
2875 case INTR_ASYNC_EVENT
:
2877 mb
[1] = RD_REG_WORD(®
->mailbox1
);
2878 mb
[2] = RD_REG_WORD(®
->mailbox2
);
2879 mb
[3] = RD_REG_WORD(®
->mailbox3
);
2880 qla2x00_async_event(vha
, rsp
, mb
);
2882 case INTR_RSP_QUE_UPDATE
:
2883 case INTR_RSP_QUE_UPDATE_83XX
:
2884 qla24xx_process_response_queue(vha
, rsp
);
2886 case INTR_ATIO_QUE_UPDATE
:
2887 qlt_24xx_process_atio_queue(vha
);
2889 case INTR_ATIO_RSP_QUE_UPDATE
:
2890 qlt_24xx_process_atio_queue(vha
);
2891 qla24xx_process_response_queue(vha
, rsp
);
2894 ql_dbg(ql_dbg_async
, vha
, 0x5051,
2895 "Unrecognized interrupt type (%d).\n", stat
& 0xff);
2898 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2900 qla2x00_handle_mbx_completion(ha
, status
);
2901 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2906 /* Interrupt handling helpers. */
2908 struct qla_init_msix_entry
{
2910 irq_handler_t handler
;
2913 static struct qla_init_msix_entry msix_entries
[3] = {
2914 { "qla2xxx (default)", qla24xx_msix_default
},
2915 { "qla2xxx (rsp_q)", qla24xx_msix_rsp_q
},
2916 { "qla2xxx (multiq)", qla25xx_msix_rsp_q
},
2919 static struct qla_init_msix_entry qla82xx_msix_entries
[2] = {
2920 { "qla2xxx (default)", qla82xx_msix_default
},
2921 { "qla2xxx (rsp_q)", qla82xx_msix_rsp_q
},
2924 static struct qla_init_msix_entry qla83xx_msix_entries
[3] = {
2925 { "qla2xxx (default)", qla24xx_msix_default
},
2926 { "qla2xxx (rsp_q)", qla24xx_msix_rsp_q
},
2927 { "qla2xxx (atio_q)", qla83xx_msix_atio_q
},
2931 qla24xx_disable_msix(struct qla_hw_data
*ha
)
2934 struct qla_msix_entry
*qentry
;
2935 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
2937 for (i
= 0; i
< ha
->msix_count
; i
++) {
2938 qentry
= &ha
->msix_entries
[i
];
2939 if (qentry
->have_irq
)
2940 free_irq(qentry
->vector
, qentry
->rsp
);
2942 pci_disable_msix(ha
->pdev
);
2943 kfree(ha
->msix_entries
);
2944 ha
->msix_entries
= NULL
;
2945 ha
->flags
.msix_enabled
= 0;
2946 ql_dbg(ql_dbg_init
, vha
, 0x0042,
2947 "Disabled the MSI.\n");
2951 qla24xx_enable_msix(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
2953 #define MIN_MSIX_COUNT 2
2954 #define ATIO_VECTOR 2
2956 struct msix_entry
*entries
;
2957 struct qla_msix_entry
*qentry
;
2958 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
2960 entries
= kzalloc(sizeof(struct msix_entry
) * ha
->msix_count
,
2963 ql_log(ql_log_warn
, vha
, 0x00bc,
2964 "Failed to allocate memory for msix_entry.\n");
2968 for (i
= 0; i
< ha
->msix_count
; i
++)
2969 entries
[i
].entry
= i
;
2971 ret
= pci_enable_msix_range(ha
->pdev
,
2972 entries
, MIN_MSIX_COUNT
, ha
->msix_count
);
2974 ql_log(ql_log_fatal
, vha
, 0x00c7,
2975 "MSI-X: Failed to enable support, "
2976 "giving up -- %d/%d.\n",
2977 ha
->msix_count
, ret
);
2979 } else if (ret
< ha
->msix_count
) {
2980 ql_log(ql_log_warn
, vha
, 0x00c6,
2981 "MSI-X: Failed to enable support "
2982 "-- %d/%d\n Retry with %d vectors.\n",
2983 ha
->msix_count
, ret
, ret
);
2985 ha
->msix_count
= ret
;
2986 ha
->max_rsp_queues
= ha
->msix_count
- 1;
2987 ha
->msix_entries
= kzalloc(sizeof(struct qla_msix_entry
) *
2988 ha
->msix_count
, GFP_KERNEL
);
2989 if (!ha
->msix_entries
) {
2990 ql_log(ql_log_fatal
, vha
, 0x00c8,
2991 "Failed to allocate memory for ha->msix_entries.\n");
2995 ha
->flags
.msix_enabled
= 1;
2997 for (i
= 0; i
< ha
->msix_count
; i
++) {
2998 qentry
= &ha
->msix_entries
[i
];
2999 qentry
->vector
= entries
[i
].vector
;
3000 qentry
->entry
= entries
[i
].entry
;
3001 qentry
->have_irq
= 0;
3005 /* Enable MSI-X vectors for the base queue */
3006 for (i
= 0; i
< 2; i
++) {
3007 qentry
= &ha
->msix_entries
[i
];
3008 if (IS_P3P_TYPE(ha
))
3009 ret
= request_irq(qentry
->vector
,
3010 qla82xx_msix_entries
[i
].handler
,
3011 0, qla82xx_msix_entries
[i
].name
, rsp
);
3013 ret
= request_irq(qentry
->vector
,
3014 msix_entries
[i
].handler
,
3015 0, msix_entries
[i
].name
, rsp
);
3017 goto msix_register_fail
;
3018 qentry
->have_irq
= 1;
3024 * If target mode is enable, also request the vector for the ATIO
3027 if (QLA_TGT_MODE_ENABLED() && IS_ATIO_MSIX_CAPABLE(ha
)) {
3028 qentry
= &ha
->msix_entries
[ATIO_VECTOR
];
3029 ret
= request_irq(qentry
->vector
,
3030 qla83xx_msix_entries
[ATIO_VECTOR
].handler
,
3031 0, qla83xx_msix_entries
[ATIO_VECTOR
].name
, rsp
);
3032 qentry
->have_irq
= 1;
3039 ql_log(ql_log_fatal
, vha
, 0x00cb,
3040 "MSI-X: unable to register handler -- %x/%d.\n",
3041 qentry
->vector
, ret
);
3042 qla24xx_disable_msix(ha
);
3047 /* Enable MSI-X vector for response queue update for queue 0 */
3048 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
3049 if (ha
->msixbase
&& ha
->mqiobase
&&
3050 (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1))
3054 && (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1))
3056 ql_dbg(ql_dbg_multiq
, vha
, 0xc005,
3057 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3058 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3059 ql_dbg(ql_dbg_init
, vha
, 0x0055,
3060 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3061 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3069 qla2x00_request_irqs(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
3071 int ret
= QLA_FUNCTION_FAILED
;
3072 device_reg_t
*reg
= ha
->iobase
;
3073 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3075 /* If possible, enable MSI-X. */
3076 if (!IS_QLA2432(ha
) && !IS_QLA2532(ha
) && !IS_QLA8432(ha
) &&
3077 !IS_CNA_CAPABLE(ha
) && !IS_QLA2031(ha
) && !IS_QLAFX00(ha
) &&
3081 if (ha
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_HP
&&
3082 (ha
->pdev
->subsystem_device
== 0x7040 ||
3083 ha
->pdev
->subsystem_device
== 0x7041 ||
3084 ha
->pdev
->subsystem_device
== 0x1705)) {
3085 ql_log(ql_log_warn
, vha
, 0x0034,
3086 "MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x%X,0x%X).\n",
3087 ha
->pdev
->subsystem_vendor
,
3088 ha
->pdev
->subsystem_device
);
3092 if (IS_QLA2432(ha
) && (ha
->pdev
->revision
< QLA_MSIX_CHIP_REV_24XX
)) {
3093 ql_log(ql_log_warn
, vha
, 0x0035,
3094 "MSI-X; Unsupported ISP2432 (0x%X, 0x%X).\n",
3095 ha
->pdev
->revision
, QLA_MSIX_CHIP_REV_24XX
);
3099 ret
= qla24xx_enable_msix(ha
, rsp
);
3101 ql_dbg(ql_dbg_init
, vha
, 0x0036,
3102 "MSI-X: Enabled (0x%X, 0x%X).\n",
3103 ha
->chip_revision
, ha
->fw_attributes
);
3104 goto clear_risc_ints
;
3109 ql_log(ql_log_info
, vha
, 0x0037,
3110 "Falling back-to MSI mode -%d.\n", ret
);
3112 if (!IS_QLA24XX(ha
) && !IS_QLA2532(ha
) && !IS_QLA8432(ha
) &&
3113 !IS_QLA8001(ha
) && !IS_P3P_TYPE(ha
) && !IS_QLAFX00(ha
) &&
3117 ret
= pci_enable_msi(ha
->pdev
);
3119 ql_dbg(ql_dbg_init
, vha
, 0x0038,
3121 ha
->flags
.msi_enabled
= 1;
3123 ql_log(ql_log_warn
, vha
, 0x0039,
3124 "Falling back-to INTa mode -- %d.\n", ret
);
3127 /* Skip INTx on ISP82xx. */
3128 if (!ha
->flags
.msi_enabled
&& IS_QLA82XX(ha
))
3129 return QLA_FUNCTION_FAILED
;
3131 ret
= request_irq(ha
->pdev
->irq
, ha
->isp_ops
->intr_handler
,
3132 ha
->flags
.msi_enabled
? 0 : IRQF_SHARED
,
3133 QLA2XXX_DRIVER_NAME
, rsp
);
3135 ql_log(ql_log_warn
, vha
, 0x003a,
3136 "Failed to reserve interrupt %d already in use.\n",
3139 } else if (!ha
->flags
.msi_enabled
) {
3140 ql_dbg(ql_dbg_init
, vha
, 0x0125,
3141 "INTa mode: Enabled.\n");
3142 ha
->flags
.mr_intr_valid
= 1;
3146 if (IS_FWI2_CAPABLE(ha
) || IS_QLAFX00(ha
))
3149 spin_lock_irq(&ha
->hardware_lock
);
3150 WRT_REG_WORD(®
->isp
.semaphore
, 0);
3151 spin_unlock_irq(&ha
->hardware_lock
);
3158 qla2x00_free_irqs(scsi_qla_host_t
*vha
)
3160 struct qla_hw_data
*ha
= vha
->hw
;
3161 struct rsp_que
*rsp
;
3164 * We need to check that ha->rsp_q_map is valid in case we are called
3165 * from a probe failure context.
3167 if (!ha
->rsp_q_map
|| !ha
->rsp_q_map
[0])
3169 rsp
= ha
->rsp_q_map
[0];
3171 if (ha
->flags
.msix_enabled
)
3172 qla24xx_disable_msix(ha
);
3173 else if (ha
->flags
.msi_enabled
) {
3174 free_irq(ha
->pdev
->irq
, rsp
);
3175 pci_disable_msi(ha
->pdev
);
3177 free_irq(ha
->pdev
->irq
, rsp
);
3181 int qla25xx_request_irq(struct rsp_que
*rsp
)
3183 struct qla_hw_data
*ha
= rsp
->hw
;
3184 struct qla_init_msix_entry
*intr
= &msix_entries
[2];
3185 struct qla_msix_entry
*msix
= rsp
->msix
;
3186 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3189 ret
= request_irq(msix
->vector
, intr
->handler
, 0, intr
->name
, rsp
);
3191 ql_log(ql_log_fatal
, vha
, 0x00e6,
3192 "MSI-X: Unable to register handler -- %x/%d.\n",