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 && !pci_channel_offline(vha
->hw
->pdev
)) {
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
);
563 static inline fc_port_t
*
564 qla2x00_find_fcport_by_loopid(scsi_qla_host_t
*vha
, uint16_t loop_id
)
568 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
)
569 if (fcport
->loop_id
== loop_id
)
575 * qla2x00_async_event() - Process aynchronous events.
576 * @ha: SCSI driver HA context
577 * @mb: Mailbox registers (0 - 3)
580 qla2x00_async_event(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, uint16_t *mb
)
585 struct qla_hw_data
*ha
= vha
->hw
;
586 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
587 struct device_reg_24xx __iomem
*reg24
= &ha
->iobase
->isp24
;
588 struct device_reg_82xx __iomem
*reg82
= &ha
->iobase
->isp82
;
589 uint32_t rscn_entry
, host_pid
;
591 fc_port_t
*fcport
= NULL
;
593 /* Setup to process RIO completion. */
595 if (IS_CNA_CAPABLE(ha
))
598 case MBA_SCSI_COMPLETION
:
599 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
602 case MBA_CMPLT_1_16BIT
:
605 mb
[0] = MBA_SCSI_COMPLETION
;
607 case MBA_CMPLT_2_16BIT
:
611 mb
[0] = MBA_SCSI_COMPLETION
;
613 case MBA_CMPLT_3_16BIT
:
618 mb
[0] = MBA_SCSI_COMPLETION
;
620 case MBA_CMPLT_4_16BIT
:
624 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
626 mb
[0] = MBA_SCSI_COMPLETION
;
628 case MBA_CMPLT_5_16BIT
:
632 handles
[3] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 6);
633 handles
[4] = (uint32_t)RD_MAILBOX_REG(ha
, reg
, 7);
635 mb
[0] = MBA_SCSI_COMPLETION
;
637 case MBA_CMPLT_2_32BIT
:
638 handles
[0] = le32_to_cpu((uint32_t)((mb
[2] << 16) | mb
[1]));
639 handles
[1] = le32_to_cpu(
640 ((uint32_t)(RD_MAILBOX_REG(ha
, reg
, 7) << 16)) |
641 RD_MAILBOX_REG(ha
, reg
, 6));
643 mb
[0] = MBA_SCSI_COMPLETION
;
650 case MBA_SCSI_COMPLETION
: /* Fast Post */
651 if (!vha
->flags
.online
)
654 for (cnt
= 0; cnt
< handle_cnt
; cnt
++)
655 qla2x00_process_completed_request(vha
, rsp
->req
,
659 case MBA_RESET
: /* Reset */
660 ql_dbg(ql_dbg_async
, vha
, 0x5002,
661 "Asynchronous RESET.\n");
663 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
666 case MBA_SYSTEM_ERR
: /* System Error */
667 mbx
= (IS_QLA81XX(ha
) || IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) ?
668 RD_REG_WORD(®24
->mailbox7
) : 0;
669 ql_log(ql_log_warn
, vha
, 0x5003,
670 "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh "
671 "mbx7=%xh.\n", mb
[1], mb
[2], mb
[3], mbx
);
673 ha
->isp_ops
->fw_dump(vha
, 1);
675 if (IS_FWI2_CAPABLE(ha
)) {
676 if (mb
[1] == 0 && mb
[2] == 0) {
677 ql_log(ql_log_fatal
, vha
, 0x5004,
678 "Unrecoverable Hardware Error: adapter "
679 "marked OFFLINE!\n");
680 vha
->flags
.online
= 0;
681 vha
->device_flags
|= DFLG_DEV_FAILED
;
683 /* Check to see if MPI timeout occurred */
684 if ((mbx
& MBX_3
) && (ha
->port_no
== 0))
685 set_bit(MPI_RESET_NEEDED
,
688 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
690 } else if (mb
[1] == 0) {
691 ql_log(ql_log_fatal
, vha
, 0x5005,
692 "Unrecoverable Hardware Error: adapter marked "
694 vha
->flags
.online
= 0;
695 vha
->device_flags
|= DFLG_DEV_FAILED
;
697 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
700 case MBA_REQ_TRANSFER_ERR
: /* Request Transfer Error */
701 ql_log(ql_log_warn
, vha
, 0x5006,
702 "ISP Request Transfer Error (%x).\n", mb
[1]);
704 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
707 case MBA_RSP_TRANSFER_ERR
: /* Response Transfer Error */
708 ql_log(ql_log_warn
, vha
, 0x5007,
709 "ISP Response Transfer Error.\n");
711 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
714 case MBA_WAKEUP_THRES
: /* Request Queue Wake-up */
715 ql_dbg(ql_dbg_async
, vha
, 0x5008,
716 "Asynchronous WAKEUP_THRES.\n");
719 case MBA_LIP_OCCURRED
: /* Loop Initialization Procedure */
720 ql_dbg(ql_dbg_async
, vha
, 0x5009,
721 "LIP occurred (%x).\n", mb
[1]);
723 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
724 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
725 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
726 qla2x00_mark_all_devices_lost(vha
, 1);
730 atomic_set(&vha
->vp_state
, VP_FAILED
);
731 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
734 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
735 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
737 vha
->flags
.management_server_logged_in
= 0;
738 qla2x00_post_aen_work(vha
, FCH_EVT_LIP
, mb
[1]);
741 case MBA_LOOP_UP
: /* Loop Up Event */
742 if (IS_QLA2100(ha
) || IS_QLA2200(ha
))
743 ha
->link_data_rate
= PORT_SPEED_1GB
;
745 ha
->link_data_rate
= mb
[1];
747 ql_log(ql_log_info
, vha
, 0x500a,
748 "LOOP UP detected (%s Gbps).\n",
749 qla2x00_get_link_speed_str(ha
, ha
->link_data_rate
));
751 vha
->flags
.management_server_logged_in
= 0;
752 qla2x00_post_aen_work(vha
, FCH_EVT_LINKUP
, ha
->link_data_rate
);
755 case MBA_LOOP_DOWN
: /* Loop Down Event */
756 mbx
= (IS_QLA81XX(ha
) || IS_QLA8031(ha
))
757 ? RD_REG_WORD(®24
->mailbox4
) : 0;
758 mbx
= (IS_P3P_TYPE(ha
)) ? RD_REG_WORD(®82
->mailbox_out
[4])
760 ql_log(ql_log_info
, vha
, 0x500b,
761 "LOOP DOWN detected (%x %x %x %x).\n",
762 mb
[1], mb
[2], mb
[3], mbx
);
764 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
765 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
766 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
768 * In case of loop down, restore WWPN from
769 * NVRAM in case of FA-WWPN capable ISP
770 * Restore for Physical Port only
773 if (ha
->flags
.fawwpn_enabled
) {
774 void *wwpn
= ha
->init_cb
->port_name
;
775 memcpy(vha
->port_name
, wwpn
, WWN_SIZE
);
776 fc_host_port_name(vha
->host
) =
777 wwn_to_u64(vha
->port_name
);
778 ql_dbg(ql_dbg_init
+ ql_dbg_verbose
,
779 vha
, 0x0144, "LOOP DOWN detected,"
780 "restore WWPN %016llx\n",
781 wwn_to_u64(vha
->port_name
));
784 clear_bit(VP_CONFIG_OK
, &vha
->vp_flags
);
787 vha
->device_flags
|= DFLG_NO_CABLE
;
788 qla2x00_mark_all_devices_lost(vha
, 1);
792 atomic_set(&vha
->vp_state
, VP_FAILED
);
793 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
796 vha
->flags
.management_server_logged_in
= 0;
797 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
798 qla2x00_post_aen_work(vha
, FCH_EVT_LINKDOWN
, 0);
801 case MBA_LIP_RESET
: /* LIP reset occurred */
802 ql_dbg(ql_dbg_async
, vha
, 0x500c,
803 "LIP reset occurred (%x).\n", mb
[1]);
805 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
806 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
807 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
808 qla2x00_mark_all_devices_lost(vha
, 1);
812 atomic_set(&vha
->vp_state
, VP_FAILED
);
813 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
816 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
818 ha
->operating_mode
= LOOP
;
819 vha
->flags
.management_server_logged_in
= 0;
820 qla2x00_post_aen_work(vha
, FCH_EVT_LIPRESET
, mb
[1]);
823 /* case MBA_DCBX_COMPLETE: */
824 case MBA_POINT_TO_POINT
: /* Point-to-Point */
828 if (IS_CNA_CAPABLE(ha
)) {
829 ql_dbg(ql_dbg_async
, vha
, 0x500d,
830 "DCBX Completed -- %04x %04x %04x.\n",
831 mb
[1], mb
[2], mb
[3]);
832 if (ha
->notify_dcbx_comp
&& !vha
->vp_idx
)
833 complete(&ha
->dcbx_comp
);
836 ql_dbg(ql_dbg_async
, vha
, 0x500e,
837 "Asynchronous P2P MODE received.\n");
840 * Until there's a transition from loop down to loop up, treat
841 * this as loop down only.
843 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
844 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
845 if (!atomic_read(&vha
->loop_down_timer
))
846 atomic_set(&vha
->loop_down_timer
,
848 qla2x00_mark_all_devices_lost(vha
, 1);
852 atomic_set(&vha
->vp_state
, VP_FAILED
);
853 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
856 if (!(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)))
857 set_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
859 set_bit(REGISTER_FC4_NEEDED
, &vha
->dpc_flags
);
860 set_bit(REGISTER_FDMI_NEEDED
, &vha
->dpc_flags
);
862 ha
->flags
.gpsc_supported
= 1;
863 vha
->flags
.management_server_logged_in
= 0;
866 case MBA_CHG_IN_CONNECTION
: /* Change in connection mode */
870 ql_dbg(ql_dbg_async
, vha
, 0x500f,
871 "Configuration change detected: value=%x.\n", mb
[1]);
873 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
874 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
875 if (!atomic_read(&vha
->loop_down_timer
))
876 atomic_set(&vha
->loop_down_timer
,
878 qla2x00_mark_all_devices_lost(vha
, 1);
882 atomic_set(&vha
->vp_state
, VP_FAILED
);
883 fc_vport_set_state(vha
->fc_vport
, FC_VPORT_FAILED
);
886 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
887 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
890 case MBA_PORT_UPDATE
: /* Port database update */
892 * Handle only global and vn-port update events
895 * mb[1] = N_Port handle of changed port
896 * OR 0xffff for global event
897 * mb[2] = New login state
898 * 7 = Port logged out
899 * mb[3] = LSB is vp_idx, 0xff = all vps
901 * Skip processing if:
902 * Event is global, vp_idx is NOT all vps,
903 * vp_idx does not match
904 * Event is not global, vp_idx does not match
906 if (IS_QLA2XXX_MIDTYPE(ha
) &&
907 ((mb
[1] == 0xffff && (mb
[3] & 0xff) != 0xff) ||
908 (mb
[1] != 0xffff)) && vha
->vp_idx
!= (mb
[3] & 0xff))
912 ql_dbg(ql_dbg_async
, vha
, 0x5010,
913 "Port %s %04x %04x %04x.\n",
914 mb
[1] == 0xffff ? "unavailable" : "logout",
915 mb
[1], mb
[2], mb
[3]);
918 goto global_port_update
;
921 fcport
= qla2x00_find_fcport_by_loopid(vha
, mb
[1]);
924 if (atomic_read(&fcport
->state
) != FCS_ONLINE
)
926 ql_dbg(ql_dbg_async
, vha
, 0x508a,
927 "Marking port lost loopid=%04x portid=%06x.\n",
928 fcport
->loop_id
, fcport
->d_id
.b24
);
929 qla2x00_mark_device_lost(fcport
->vha
, fcport
, 1, 1);
933 /* Port unavailable. */
934 ql_log(ql_log_warn
, vha
, 0x505e,
935 "Link is offline.\n");
937 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
) {
938 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
939 atomic_set(&vha
->loop_down_timer
,
941 vha
->device_flags
|= DFLG_NO_CABLE
;
942 qla2x00_mark_all_devices_lost(vha
, 1);
946 atomic_set(&vha
->vp_state
, VP_FAILED
);
947 fc_vport_set_state(vha
->fc_vport
,
949 qla2x00_mark_all_devices_lost(vha
, 1);
952 vha
->flags
.management_server_logged_in
= 0;
953 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
958 * If PORT UPDATE is global (received LIP_OCCURRED/LIP_RESET
959 * event etc. earlier indicating loop is down) then process
960 * it. Otherwise ignore it and Wait for RSCN to come in.
962 atomic_set(&vha
->loop_down_timer
, 0);
963 if (atomic_read(&vha
->loop_state
) != LOOP_DOWN
&&
964 atomic_read(&vha
->loop_state
) != LOOP_DEAD
) {
965 ql_dbg(ql_dbg_async
, vha
, 0x5011,
966 "Asynchronous PORT UPDATE ignored %04x/%04x/%04x.\n",
967 mb
[1], mb
[2], mb
[3]);
969 qlt_async_event(mb
[0], vha
, mb
);
973 ql_dbg(ql_dbg_async
, vha
, 0x5012,
974 "Port database changed %04x %04x %04x.\n",
975 mb
[1], mb
[2], mb
[3]);
978 * Mark all devices as missing so we will login again.
980 atomic_set(&vha
->loop_state
, LOOP_UP
);
982 qla2x00_mark_all_devices_lost(vha
, 1);
984 if (vha
->vp_idx
== 0 && !qla_ini_mode_enabled(vha
))
985 set_bit(SCR_PENDING
, &vha
->dpc_flags
);
987 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
988 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
989 set_bit(VP_CONFIG_OK
, &vha
->vp_flags
);
991 qlt_async_event(mb
[0], vha
, mb
);
994 case MBA_RSCN_UPDATE
: /* State Change Registration */
995 /* Check if the Vport has issued a SCR */
996 if (vha
->vp_idx
&& test_bit(VP_SCR_NEEDED
, &vha
->vp_flags
))
998 /* Only handle SCNs for our Vport index. */
999 if (ha
->flags
.npiv_supported
&& vha
->vp_idx
!= (mb
[3] & 0xff))
1002 ql_dbg(ql_dbg_async
, vha
, 0x5013,
1003 "RSCN database changed -- %04x %04x %04x.\n",
1004 mb
[1], mb
[2], mb
[3]);
1006 rscn_entry
= ((mb
[1] & 0xff) << 16) | mb
[2];
1007 host_pid
= (vha
->d_id
.b
.domain
<< 16) | (vha
->d_id
.b
.area
<< 8)
1008 | vha
->d_id
.b
.al_pa
;
1009 if (rscn_entry
== host_pid
) {
1010 ql_dbg(ql_dbg_async
, vha
, 0x5014,
1011 "Ignoring RSCN update to local host "
1012 "port ID (%06x).\n", host_pid
);
1016 /* Ignore reserved bits from RSCN-payload. */
1017 rscn_entry
= ((mb
[1] & 0x3ff) << 16) | mb
[2];
1019 /* Skip RSCNs for virtual ports on the same physical port */
1020 if (qla2x00_is_a_vp_did(vha
, rscn_entry
))
1024 * Search for the rport related to this RSCN entry and mark it
1027 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1028 if (atomic_read(&fcport
->state
) != FCS_ONLINE
)
1030 if (fcport
->d_id
.b24
== rscn_entry
) {
1031 qla2x00_mark_device_lost(vha
, fcport
, 0, 0);
1036 atomic_set(&vha
->loop_down_timer
, 0);
1037 vha
->flags
.management_server_logged_in
= 0;
1039 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1040 set_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
1041 qla2x00_post_aen_work(vha
, FCH_EVT_RSCN
, rscn_entry
);
1044 /* case MBA_RIO_RESPONSE: */
1045 case MBA_ZIO_RESPONSE
:
1046 ql_dbg(ql_dbg_async
, vha
, 0x5015,
1047 "[R|Z]IO update completion.\n");
1049 if (IS_FWI2_CAPABLE(ha
))
1050 qla24xx_process_response_queue(vha
, rsp
);
1052 qla2x00_process_response_queue(rsp
);
1055 case MBA_DISCARD_RND_FRAME
:
1056 ql_dbg(ql_dbg_async
, vha
, 0x5016,
1057 "Discard RND Frame -- %04x %04x %04x.\n",
1058 mb
[1], mb
[2], mb
[3]);
1061 case MBA_TRACE_NOTIFICATION
:
1062 ql_dbg(ql_dbg_async
, vha
, 0x5017,
1063 "Trace Notification -- %04x %04x.\n", mb
[1], mb
[2]);
1066 case MBA_ISP84XX_ALERT
:
1067 ql_dbg(ql_dbg_async
, vha
, 0x5018,
1068 "ISP84XX Alert Notification -- %04x %04x %04x.\n",
1069 mb
[1], mb
[2], mb
[3]);
1071 spin_lock_irqsave(&ha
->cs84xx
->access_lock
, flags
);
1073 case A84_PANIC_RECOVERY
:
1074 ql_log(ql_log_info
, vha
, 0x5019,
1075 "Alert 84XX: panic recovery %04x %04x.\n",
1078 case A84_OP_LOGIN_COMPLETE
:
1079 ha
->cs84xx
->op_fw_version
= mb
[3] << 16 | mb
[2];
1080 ql_log(ql_log_info
, vha
, 0x501a,
1081 "Alert 84XX: firmware version %x.\n",
1082 ha
->cs84xx
->op_fw_version
);
1084 case A84_DIAG_LOGIN_COMPLETE
:
1085 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1086 ql_log(ql_log_info
, vha
, 0x501b,
1087 "Alert 84XX: diagnostic firmware version %x.\n",
1088 ha
->cs84xx
->diag_fw_version
);
1090 case A84_GOLD_LOGIN_COMPLETE
:
1091 ha
->cs84xx
->diag_fw_version
= mb
[3] << 16 | mb
[2];
1092 ha
->cs84xx
->fw_update
= 1;
1093 ql_log(ql_log_info
, vha
, 0x501c,
1094 "Alert 84XX: gold firmware version %x.\n",
1095 ha
->cs84xx
->gold_fw_version
);
1098 ql_log(ql_log_warn
, vha
, 0x501d,
1099 "Alert 84xx: Invalid Alert %04x %04x %04x.\n",
1100 mb
[1], mb
[2], mb
[3]);
1102 spin_unlock_irqrestore(&ha
->cs84xx
->access_lock
, flags
);
1104 case MBA_DCBX_START
:
1105 ql_dbg(ql_dbg_async
, vha
, 0x501e,
1106 "DCBX Started -- %04x %04x %04x.\n",
1107 mb
[1], mb
[2], mb
[3]);
1109 case MBA_DCBX_PARAM_UPDATE
:
1110 ql_dbg(ql_dbg_async
, vha
, 0x501f,
1111 "DCBX Parameters Updated -- %04x %04x %04x.\n",
1112 mb
[1], mb
[2], mb
[3]);
1114 case MBA_FCF_CONF_ERR
:
1115 ql_dbg(ql_dbg_async
, vha
, 0x5020,
1116 "FCF Configuration Error -- %04x %04x %04x.\n",
1117 mb
[1], mb
[2], mb
[3]);
1119 case MBA_IDC_NOTIFY
:
1120 if (IS_QLA8031(vha
->hw
) || IS_QLA8044(ha
)) {
1121 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1122 if (((mb
[2] & 0x7fff) == MBC_PORT_RESET
||
1123 (mb
[2] & 0x7fff) == MBC_SET_PORT_CONFIG
) &&
1124 (mb
[4] & INTERNAL_LOOPBACK_MASK
) != 0) {
1125 set_bit(ISP_QUIESCE_NEEDED
, &vha
->dpc_flags
);
1127 * Extend loop down timer since port is active.
1129 if (atomic_read(&vha
->loop_state
) == LOOP_DOWN
)
1130 atomic_set(&vha
->loop_down_timer
,
1132 qla2xxx_wake_dpc(vha
);
1135 case MBA_IDC_COMPLETE
:
1136 if (ha
->notify_lb_portup_comp
&& !vha
->vp_idx
)
1137 complete(&ha
->lb_portup_comp
);
1139 case MBA_IDC_TIME_EXT
:
1140 if (IS_QLA81XX(vha
->hw
) || IS_QLA8031(vha
->hw
) ||
1142 qla81xx_idc_event(vha
, mb
[0], mb
[1]);
1146 mb
[4] = RD_REG_WORD(®24
->mailbox4
);
1147 mb
[5] = RD_REG_WORD(®24
->mailbox5
);
1148 mb
[6] = RD_REG_WORD(®24
->mailbox6
);
1149 mb
[7] = RD_REG_WORD(®24
->mailbox7
);
1150 qla83xx_handle_8200_aen(vha
, mb
);
1153 case MBA_DPORT_DIAGNOSTICS
:
1154 ql_dbg(ql_dbg_async
, vha
, 0x5052,
1155 "D-Port Diagnostics: %04x %04x=%s\n", mb
[0], mb
[1],
1156 mb
[1] == 0 ? "start" :
1157 mb
[1] == 1 ? "done (ok)" :
1158 mb
[1] == 2 ? "done (error)" : "other");
1162 ql_dbg(ql_dbg_async
, vha
, 0x5057,
1163 "Unknown AEN:%04x %04x %04x %04x\n",
1164 mb
[0], mb
[1], mb
[2], mb
[3]);
1167 qlt_async_event(mb
[0], vha
, mb
);
1169 if (!vha
->vp_idx
&& ha
->num_vhosts
)
1170 qla2x00_alert_all_vps(rsp
, mb
);
1174 * qla2x00_process_completed_request() - Process a Fast Post response.
1175 * @ha: SCSI driver HA context
1179 qla2x00_process_completed_request(struct scsi_qla_host
*vha
,
1180 struct req_que
*req
, uint32_t index
)
1183 struct qla_hw_data
*ha
= vha
->hw
;
1185 /* Validate handle. */
1186 if (index
>= req
->num_outstanding_cmds
) {
1187 ql_log(ql_log_warn
, vha
, 0x3014,
1188 "Invalid SCSI command index (%x).\n", index
);
1190 if (IS_P3P_TYPE(ha
))
1191 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1193 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1197 sp
= req
->outstanding_cmds
[index
];
1199 /* Free outstanding command slot. */
1200 req
->outstanding_cmds
[index
] = NULL
;
1202 /* Save ISP completion status */
1203 sp
->done(ha
, sp
, DID_OK
<< 16);
1205 ql_log(ql_log_warn
, vha
, 0x3016, "Invalid SCSI SRB.\n");
1207 if (IS_P3P_TYPE(ha
))
1208 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1210 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1215 qla2x00_get_sp_from_handle(scsi_qla_host_t
*vha
, const char *func
,
1216 struct req_que
*req
, void *iocb
)
1218 struct qla_hw_data
*ha
= vha
->hw
;
1219 sts_entry_t
*pkt
= iocb
;
1223 index
= LSW(pkt
->handle
);
1224 if (index
>= req
->num_outstanding_cmds
) {
1225 ql_log(ql_log_warn
, vha
, 0x5031,
1226 "Invalid command index (%x).\n", index
);
1227 if (IS_P3P_TYPE(ha
))
1228 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
1230 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1233 sp
= req
->outstanding_cmds
[index
];
1235 ql_log(ql_log_warn
, vha
, 0x5032,
1236 "Invalid completion handle (%x) -- timed-out.\n", index
);
1239 if (sp
->handle
!= index
) {
1240 ql_log(ql_log_warn
, vha
, 0x5033,
1241 "SRB handle (%x) mismatch %x.\n", sp
->handle
, index
);
1245 req
->outstanding_cmds
[index
] = NULL
;
1252 qla2x00_mbx_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1253 struct mbx_entry
*mbx
)
1255 const char func
[] = "MBX-IOCB";
1259 struct srb_iocb
*lio
;
1263 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, mbx
);
1267 lio
= &sp
->u
.iocb_cmd
;
1269 fcport
= sp
->fcport
;
1270 data
= lio
->u
.logio
.data
;
1272 data
[0] = MBS_COMMAND_ERROR
;
1273 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1274 QLA_LOGIO_LOGIN_RETRIED
: 0;
1275 if (mbx
->entry_status
) {
1276 ql_dbg(ql_dbg_async
, vha
, 0x5043,
1277 "Async-%s error entry - hdl=%x portid=%02x%02x%02x "
1278 "entry-status=%x status=%x state-flag=%x "
1279 "status-flags=%x.\n", type
, sp
->handle
,
1280 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
1281 fcport
->d_id
.b
.al_pa
, mbx
->entry_status
,
1282 le16_to_cpu(mbx
->status
), le16_to_cpu(mbx
->state_flags
),
1283 le16_to_cpu(mbx
->status_flags
));
1285 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5029,
1286 (uint8_t *)mbx
, sizeof(*mbx
));
1291 status
= le16_to_cpu(mbx
->status
);
1292 if (status
== 0x30 && sp
->type
== SRB_LOGIN_CMD
&&
1293 le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
)
1295 if (!status
&& le16_to_cpu(mbx
->mb0
) == MBS_COMMAND_COMPLETE
) {
1296 ql_dbg(ql_dbg_async
, vha
, 0x5045,
1297 "Async-%s complete - hdl=%x portid=%02x%02x%02x mbx1=%x.\n",
1298 type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1299 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1300 le16_to_cpu(mbx
->mb1
));
1302 data
[0] = MBS_COMMAND_COMPLETE
;
1303 if (sp
->type
== SRB_LOGIN_CMD
) {
1304 fcport
->port_type
= FCT_TARGET
;
1305 if (le16_to_cpu(mbx
->mb1
) & BIT_0
)
1306 fcport
->port_type
= FCT_INITIATOR
;
1307 else if (le16_to_cpu(mbx
->mb1
) & BIT_1
)
1308 fcport
->flags
|= FCF_FCP2_DEVICE
;
1313 data
[0] = le16_to_cpu(mbx
->mb0
);
1315 case MBS_PORT_ID_USED
:
1316 data
[1] = le16_to_cpu(mbx
->mb1
);
1318 case MBS_LOOP_ID_USED
:
1321 data
[0] = MBS_COMMAND_ERROR
;
1325 ql_log(ql_log_warn
, vha
, 0x5046,
1326 "Async-%s failed - hdl=%x portid=%02x%02x%02x status=%x "
1327 "mb0=%x mb1=%x mb2=%x mb6=%x mb7=%x.\n", type
, sp
->handle
,
1328 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1329 status
, le16_to_cpu(mbx
->mb0
), le16_to_cpu(mbx
->mb1
),
1330 le16_to_cpu(mbx
->mb2
), le16_to_cpu(mbx
->mb6
),
1331 le16_to_cpu(mbx
->mb7
));
1334 sp
->done(vha
, sp
, 0);
1338 qla2x00_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1339 sts_entry_t
*pkt
, int iocb_type
)
1341 const char func
[] = "CT_IOCB";
1344 struct fc_bsg_job
*bsg_job
;
1345 uint16_t comp_status
;
1348 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1352 bsg_job
= sp
->u
.bsg_job
;
1354 type
= "ct pass-through";
1356 comp_status
= le16_to_cpu(pkt
->comp_status
);
1358 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1359 * fc payload to the caller
1361 bsg_job
->reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1362 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
1364 if (comp_status
!= CS_COMPLETE
) {
1365 if (comp_status
== CS_DATA_UNDERRUN
) {
1367 bsg_job
->reply
->reply_payload_rcv_len
=
1368 le16_to_cpu(((sts_entry_t
*)pkt
)->rsp_info_len
);
1370 ql_log(ql_log_warn
, vha
, 0x5048,
1371 "CT pass-through-%s error "
1372 "comp_status-status=0x%x total_byte = 0x%x.\n",
1374 bsg_job
->reply
->reply_payload_rcv_len
);
1376 ql_log(ql_log_warn
, vha
, 0x5049,
1377 "CT pass-through-%s error "
1378 "comp_status-status=0x%x.\n", type
, comp_status
);
1379 res
= DID_ERROR
<< 16;
1380 bsg_job
->reply
->reply_payload_rcv_len
= 0;
1382 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5035,
1383 (uint8_t *)pkt
, sizeof(*pkt
));
1386 bsg_job
->reply
->reply_payload_rcv_len
=
1387 bsg_job
->reply_payload
.payload_len
;
1388 bsg_job
->reply_len
= 0;
1391 sp
->done(vha
, sp
, res
);
1395 qla24xx_els_ct_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1396 struct sts_entry_24xx
*pkt
, int iocb_type
)
1398 const char func
[] = "ELS_CT_IOCB";
1401 struct fc_bsg_job
*bsg_job
;
1402 uint16_t comp_status
;
1403 uint32_t fw_status
[3];
1404 uint8_t* fw_sts_ptr
;
1407 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
1410 bsg_job
= sp
->u
.bsg_job
;
1414 case SRB_ELS_CMD_RPT
:
1415 case SRB_ELS_CMD_HST
:
1419 type
= "ct pass-through";
1422 ql_dbg(ql_dbg_user
, vha
, 0x503e,
1423 "Unrecognized SRB: (%p) type=%d.\n", sp
, sp
->type
);
1427 comp_status
= fw_status
[0] = le16_to_cpu(pkt
->comp_status
);
1428 fw_status
[1] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_1
);
1429 fw_status
[2] = le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->error_subcode_2
);
1431 /* return FC_CTELS_STATUS_OK and leave the decoding of the ELS/CT
1432 * fc payload to the caller
1434 bsg_job
->reply
->reply_data
.ctels_reply
.status
= FC_CTELS_STATUS_OK
;
1435 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
) + sizeof(fw_status
);
1437 if (comp_status
!= CS_COMPLETE
) {
1438 if (comp_status
== CS_DATA_UNDERRUN
) {
1440 bsg_job
->reply
->reply_payload_rcv_len
=
1441 le16_to_cpu(((struct els_sts_entry_24xx
*)pkt
)->total_byte_count
);
1443 ql_dbg(ql_dbg_user
, vha
, 0x503f,
1444 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1445 "error subcode 1=0x%x error subcode 2=0x%x total_byte = 0x%x.\n",
1446 type
, sp
->handle
, comp_status
, fw_status
[1], fw_status
[2],
1447 le16_to_cpu(((struct els_sts_entry_24xx
*)
1448 pkt
)->total_byte_count
));
1449 fw_sts_ptr
= ((uint8_t*)bsg_job
->req
->sense
) + sizeof(struct fc_bsg_reply
);
1450 memcpy( fw_sts_ptr
, fw_status
, sizeof(fw_status
));
1453 ql_dbg(ql_dbg_user
, vha
, 0x5040,
1454 "ELS-CT pass-through-%s error hdl=%x comp_status-status=0x%x "
1455 "error subcode 1=0x%x error subcode 2=0x%x.\n",
1456 type
, sp
->handle
, comp_status
,
1457 le16_to_cpu(((struct els_sts_entry_24xx
*)
1458 pkt
)->error_subcode_1
),
1459 le16_to_cpu(((struct els_sts_entry_24xx
*)
1460 pkt
)->error_subcode_2
));
1461 res
= DID_ERROR
<< 16;
1462 bsg_job
->reply
->reply_payload_rcv_len
= 0;
1463 fw_sts_ptr
= ((uint8_t*)bsg_job
->req
->sense
) + sizeof(struct fc_bsg_reply
);
1464 memcpy( fw_sts_ptr
, fw_status
, sizeof(fw_status
));
1466 ql_dump_buffer(ql_dbg_user
+ ql_dbg_buffer
, vha
, 0x5056,
1467 (uint8_t *)pkt
, sizeof(*pkt
));
1471 bsg_job
->reply
->reply_payload_rcv_len
= bsg_job
->reply_payload
.payload_len
;
1472 bsg_job
->reply_len
= 0;
1475 sp
->done(vha
, sp
, res
);
1479 qla24xx_logio_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
1480 struct logio_entry_24xx
*logio
)
1482 const char func
[] = "LOGIO-IOCB";
1486 struct srb_iocb
*lio
;
1490 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, logio
);
1494 lio
= &sp
->u
.iocb_cmd
;
1496 fcport
= sp
->fcport
;
1497 data
= lio
->u
.logio
.data
;
1499 data
[0] = MBS_COMMAND_ERROR
;
1500 data
[1] = lio
->u
.logio
.flags
& SRB_LOGIN_RETRIED
?
1501 QLA_LOGIO_LOGIN_RETRIED
: 0;
1502 if (logio
->entry_status
) {
1503 ql_log(ql_log_warn
, fcport
->vha
, 0x5034,
1504 "Async-%s error entry - hdl=%x"
1505 "portid=%02x%02x%02x entry-status=%x.\n",
1506 type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1507 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1508 logio
->entry_status
);
1509 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x504d,
1510 (uint8_t *)logio
, sizeof(*logio
));
1515 if (le16_to_cpu(logio
->comp_status
) == CS_COMPLETE
) {
1516 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5036,
1517 "Async-%s complete - hdl=%x portid=%02x%02x%02x "
1518 "iop0=%x.\n", type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1519 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1520 le32_to_cpu(logio
->io_parameter
[0]));
1522 data
[0] = MBS_COMMAND_COMPLETE
;
1523 if (sp
->type
!= SRB_LOGIN_CMD
)
1526 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1527 if (iop
[0] & BIT_4
) {
1528 fcport
->port_type
= FCT_TARGET
;
1530 fcport
->flags
|= FCF_FCP2_DEVICE
;
1531 } else if (iop
[0] & BIT_5
)
1532 fcport
->port_type
= FCT_INITIATOR
;
1535 fcport
->flags
|= FCF_CONF_COMP_SUPPORTED
;
1537 if (logio
->io_parameter
[7] || logio
->io_parameter
[8])
1538 fcport
->supported_classes
|= FC_COS_CLASS2
;
1539 if (logio
->io_parameter
[9] || logio
->io_parameter
[10])
1540 fcport
->supported_classes
|= FC_COS_CLASS3
;
1545 iop
[0] = le32_to_cpu(logio
->io_parameter
[0]);
1546 iop
[1] = le32_to_cpu(logio
->io_parameter
[1]);
1548 case LSC_SCODE_PORTID_USED
:
1549 data
[0] = MBS_PORT_ID_USED
;
1550 data
[1] = LSW(iop
[1]);
1552 case LSC_SCODE_NPORT_USED
:
1553 data
[0] = MBS_LOOP_ID_USED
;
1556 data
[0] = MBS_COMMAND_ERROR
;
1560 ql_dbg(ql_dbg_async
, fcport
->vha
, 0x5037,
1561 "Async-%s failed - hdl=%x portid=%02x%02x%02x comp=%x "
1562 "iop0=%x iop1=%x.\n", type
, sp
->handle
, fcport
->d_id
.b
.domain
,
1563 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
1564 le16_to_cpu(logio
->comp_status
),
1565 le32_to_cpu(logio
->io_parameter
[0]),
1566 le32_to_cpu(logio
->io_parameter
[1]));
1569 sp
->done(vha
, sp
, 0);
1573 qla24xx_tm_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
, void *tsk
)
1575 const char func
[] = "TMF-IOCB";
1579 struct srb_iocb
*iocb
;
1580 struct sts_entry_24xx
*sts
= (struct sts_entry_24xx
*)tsk
;
1582 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, tsk
);
1586 iocb
= &sp
->u
.iocb_cmd
;
1588 fcport
= sp
->fcport
;
1589 iocb
->u
.tmf
.data
= QLA_SUCCESS
;
1591 if (sts
->entry_status
) {
1592 ql_log(ql_log_warn
, fcport
->vha
, 0x5038,
1593 "Async-%s error - hdl=%x entry-status(%x).\n",
1594 type
, sp
->handle
, sts
->entry_status
);
1595 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1596 } else if (sts
->comp_status
!= cpu_to_le16(CS_COMPLETE
)) {
1597 ql_log(ql_log_warn
, fcport
->vha
, 0x5039,
1598 "Async-%s error - hdl=%x completion status(%x).\n",
1599 type
, sp
->handle
, sts
->comp_status
);
1600 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1601 } else if ((le16_to_cpu(sts
->scsi_status
) &
1602 SS_RESPONSE_INFO_LEN_VALID
)) {
1603 if (le32_to_cpu(sts
->rsp_data_len
) < 4) {
1604 ql_log(ql_log_warn
, fcport
->vha
, 0x503b,
1605 "Async-%s error - hdl=%x not enough response(%d).\n",
1606 type
, sp
->handle
, sts
->rsp_data_len
);
1607 } else if (sts
->data
[3]) {
1608 ql_log(ql_log_warn
, fcport
->vha
, 0x503c,
1609 "Async-%s error - hdl=%x response(%x).\n",
1610 type
, sp
->handle
, sts
->data
[3]);
1611 iocb
->u
.tmf
.data
= QLA_FUNCTION_FAILED
;
1615 if (iocb
->u
.tmf
.data
!= QLA_SUCCESS
)
1616 ql_dump_buffer(ql_dbg_async
+ ql_dbg_buffer
, vha
, 0x5055,
1617 (uint8_t *)sts
, sizeof(*sts
));
1619 sp
->done(vha
, sp
, 0);
1623 * qla2x00_process_response_queue() - Process response queue entries.
1624 * @ha: SCSI driver HA context
1627 qla2x00_process_response_queue(struct rsp_que
*rsp
)
1629 struct scsi_qla_host
*vha
;
1630 struct qla_hw_data
*ha
= rsp
->hw
;
1631 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1633 uint16_t handle_cnt
;
1636 vha
= pci_get_drvdata(ha
->pdev
);
1638 if (!vha
->flags
.online
)
1641 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
1642 pkt
= (sts_entry_t
*)rsp
->ring_ptr
;
1645 if (rsp
->ring_index
== rsp
->length
) {
1646 rsp
->ring_index
= 0;
1647 rsp
->ring_ptr
= rsp
->ring
;
1652 if (pkt
->entry_status
!= 0) {
1653 qla2x00_error_entry(vha
, rsp
, pkt
);
1654 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
1659 switch (pkt
->entry_type
) {
1661 qla2x00_status_entry(vha
, rsp
, pkt
);
1663 case STATUS_TYPE_21
:
1664 handle_cnt
= ((sts21_entry_t
*)pkt
)->handle_count
;
1665 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
1666 qla2x00_process_completed_request(vha
, rsp
->req
,
1667 ((sts21_entry_t
*)pkt
)->handle
[cnt
]);
1670 case STATUS_TYPE_22
:
1671 handle_cnt
= ((sts22_entry_t
*)pkt
)->handle_count
;
1672 for (cnt
= 0; cnt
< handle_cnt
; cnt
++) {
1673 qla2x00_process_completed_request(vha
, rsp
->req
,
1674 ((sts22_entry_t
*)pkt
)->handle
[cnt
]);
1677 case STATUS_CONT_TYPE
:
1678 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
1681 qla2x00_mbx_iocb_entry(vha
, rsp
->req
,
1682 (struct mbx_entry
*)pkt
);
1685 qla2x00_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
1688 /* Type Not Supported. */
1689 ql_log(ql_log_warn
, vha
, 0x504a,
1690 "Received unknown response pkt type %x "
1691 "entry status=%x.\n",
1692 pkt
->entry_type
, pkt
->entry_status
);
1695 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
1699 /* Adjust ring index */
1700 WRT_REG_WORD(ISP_RSP_Q_OUT(ha
, reg
), rsp
->ring_index
);
1704 qla2x00_handle_sense(srb_t
*sp
, uint8_t *sense_data
, uint32_t par_sense_len
,
1705 uint32_t sense_len
, struct rsp_que
*rsp
, int res
)
1707 struct scsi_qla_host
*vha
= sp
->fcport
->vha
;
1708 struct scsi_cmnd
*cp
= GET_CMD_SP(sp
);
1709 uint32_t track_sense_len
;
1711 if (sense_len
>= SCSI_SENSE_BUFFERSIZE
)
1712 sense_len
= SCSI_SENSE_BUFFERSIZE
;
1714 SET_CMD_SENSE_LEN(sp
, sense_len
);
1715 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
);
1716 track_sense_len
= sense_len
;
1718 if (sense_len
> par_sense_len
)
1719 sense_len
= par_sense_len
;
1721 memcpy(cp
->sense_buffer
, sense_data
, sense_len
);
1723 SET_CMD_SENSE_PTR(sp
, cp
->sense_buffer
+ sense_len
);
1724 track_sense_len
-= sense_len
;
1725 SET_CMD_SENSE_LEN(sp
, track_sense_len
);
1727 if (track_sense_len
!= 0) {
1728 rsp
->status_srb
= sp
;
1733 ql_dbg(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x301c,
1734 "Check condition Sense data, nexus%ld:%d:%llu cmd=%p.\n",
1735 sp
->fcport
->vha
->host_no
, cp
->device
->id
, cp
->device
->lun
,
1737 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302b,
1738 cp
->sense_buffer
, sense_len
);
1742 struct scsi_dif_tuple
{
1743 __be16 guard
; /* Checksum */
1744 __be16 app_tag
; /* APPL identifier */
1745 __be32 ref_tag
; /* Target LBA or indirect LBA */
1749 * Checks the guard or meta-data for the type of error
1750 * detected by the HBA. In case of errors, we set the
1751 * ASC/ASCQ fields in the sense buffer with ILLEGAL_REQUEST
1752 * to indicate to the kernel that the HBA detected error.
1755 qla2x00_handle_dif_error(srb_t
*sp
, struct sts_entry_24xx
*sts24
)
1757 struct scsi_qla_host
*vha
= sp
->fcport
->vha
;
1758 struct scsi_cmnd
*cmd
= GET_CMD_SP(sp
);
1759 uint8_t *ap
= &sts24
->data
[12];
1760 uint8_t *ep
= &sts24
->data
[20];
1761 uint32_t e_ref_tag
, a_ref_tag
;
1762 uint16_t e_app_tag
, a_app_tag
;
1763 uint16_t e_guard
, a_guard
;
1766 * swab32 of the "data" field in the beginning of qla2x00_status_entry()
1767 * would make guard field appear at offset 2
1769 a_guard
= le16_to_cpu(*(uint16_t *)(ap
+ 2));
1770 a_app_tag
= le16_to_cpu(*(uint16_t *)(ap
+ 0));
1771 a_ref_tag
= le32_to_cpu(*(uint32_t *)(ap
+ 4));
1772 e_guard
= le16_to_cpu(*(uint16_t *)(ep
+ 2));
1773 e_app_tag
= le16_to_cpu(*(uint16_t *)(ep
+ 0));
1774 e_ref_tag
= le32_to_cpu(*(uint32_t *)(ep
+ 4));
1776 ql_dbg(ql_dbg_io
, vha
, 0x3023,
1777 "iocb(s) %p Returned STATUS.\n", sts24
);
1779 ql_dbg(ql_dbg_io
, vha
, 0x3024,
1780 "DIF ERROR in cmd 0x%x lba 0x%llx act ref"
1781 " tag=0x%x, exp ref_tag=0x%x, act app tag=0x%x, exp app"
1782 " tag=0x%x, act guard=0x%x, exp guard=0x%x.\n",
1783 cmd
->cmnd
[0], (u64
)scsi_get_lba(cmd
), a_ref_tag
, e_ref_tag
,
1784 a_app_tag
, e_app_tag
, a_guard
, e_guard
);
1788 * For type 3: ref & app tag is all 'f's
1789 * For type 0,1,2: app tag is all 'f's
1791 if ((a_app_tag
== 0xffff) &&
1792 ((scsi_get_prot_type(cmd
) != SCSI_PROT_DIF_TYPE3
) ||
1793 (a_ref_tag
== 0xffffffff))) {
1794 uint32_t blocks_done
, resid
;
1795 sector_t lba_s
= scsi_get_lba(cmd
);
1797 /* 2TB boundary case covered automatically with this */
1798 blocks_done
= e_ref_tag
- (uint32_t)lba_s
+ 1;
1800 resid
= scsi_bufflen(cmd
) - (blocks_done
*
1801 cmd
->device
->sector_size
);
1803 scsi_set_resid(cmd
, resid
);
1804 cmd
->result
= DID_OK
<< 16;
1806 /* Update protection tag */
1807 if (scsi_prot_sg_count(cmd
)) {
1808 uint32_t i
, j
= 0, k
= 0, num_ent
;
1809 struct scatterlist
*sg
;
1810 struct sd_dif_tuple
*spt
;
1812 /* Patch the corresponding protection tags */
1813 scsi_for_each_prot_sg(cmd
, sg
,
1814 scsi_prot_sg_count(cmd
), i
) {
1815 num_ent
= sg_dma_len(sg
) / 8;
1816 if (k
+ num_ent
< blocks_done
) {
1820 j
= blocks_done
- k
- 1;
1825 if (k
!= blocks_done
) {
1826 ql_log(ql_log_warn
, vha
, 0x302f,
1827 "unexpected tag values tag:lba=%x:%llx)\n",
1828 e_ref_tag
, (unsigned long long)lba_s
);
1832 spt
= page_address(sg_page(sg
)) + sg
->offset
;
1835 spt
->app_tag
= 0xffff;
1836 if (scsi_get_prot_type(cmd
) == SCSI_PROT_DIF_TYPE3
)
1837 spt
->ref_tag
= 0xffffffff;
1844 if (e_guard
!= a_guard
) {
1845 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1847 set_driver_byte(cmd
, DRIVER_SENSE
);
1848 set_host_byte(cmd
, DID_ABORT
);
1849 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1854 if (e_ref_tag
!= a_ref_tag
) {
1855 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1857 set_driver_byte(cmd
, DRIVER_SENSE
);
1858 set_host_byte(cmd
, DID_ABORT
);
1859 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1863 /* check appl tag */
1864 if (e_app_tag
!= a_app_tag
) {
1865 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1867 set_driver_byte(cmd
, DRIVER_SENSE
);
1868 set_host_byte(cmd
, DID_ABORT
);
1869 cmd
->result
|= SAM_STAT_CHECK_CONDITION
<< 1;
1877 qla25xx_process_bidir_status_iocb(scsi_qla_host_t
*vha
, void *pkt
,
1878 struct req_que
*req
, uint32_t index
)
1880 struct qla_hw_data
*ha
= vha
->hw
;
1882 uint16_t comp_status
;
1883 uint16_t scsi_status
;
1885 uint32_t rval
= EXT_STATUS_OK
;
1886 struct fc_bsg_job
*bsg_job
= NULL
;
1888 struct sts_entry_24xx
*sts24
;
1889 sts
= (sts_entry_t
*) pkt
;
1890 sts24
= (struct sts_entry_24xx
*) pkt
;
1892 /* Validate handle. */
1893 if (index
>= req
->num_outstanding_cmds
) {
1894 ql_log(ql_log_warn
, vha
, 0x70af,
1895 "Invalid SCSI completion handle 0x%x.\n", index
);
1896 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1900 sp
= req
->outstanding_cmds
[index
];
1902 /* Free outstanding command slot. */
1903 req
->outstanding_cmds
[index
] = NULL
;
1904 bsg_job
= sp
->u
.bsg_job
;
1906 ql_log(ql_log_warn
, vha
, 0x70b0,
1907 "Req:%d: Invalid ISP SCSI completion handle(0x%x)\n",
1910 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1914 if (IS_FWI2_CAPABLE(ha
)) {
1915 comp_status
= le16_to_cpu(sts24
->comp_status
);
1916 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
1918 comp_status
= le16_to_cpu(sts
->comp_status
);
1919 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
1922 thread_id
= bsg_job
->request
->rqst_data
.h_vendor
.vendor_cmd
[1];
1923 switch (comp_status
) {
1925 if (scsi_status
== 0) {
1926 bsg_job
->reply
->reply_payload_rcv_len
=
1927 bsg_job
->reply_payload
.payload_len
;
1928 vha
->qla_stats
.input_bytes
+=
1929 bsg_job
->reply
->reply_payload_rcv_len
;
1930 vha
->qla_stats
.input_requests
++;
1931 rval
= EXT_STATUS_OK
;
1935 case CS_DATA_OVERRUN
:
1936 ql_dbg(ql_dbg_user
, vha
, 0x70b1,
1937 "Command completed with date overrun thread_id=%d\n",
1939 rval
= EXT_STATUS_DATA_OVERRUN
;
1942 case CS_DATA_UNDERRUN
:
1943 ql_dbg(ql_dbg_user
, vha
, 0x70b2,
1944 "Command completed with date underrun thread_id=%d\n",
1946 rval
= EXT_STATUS_DATA_UNDERRUN
;
1948 case CS_BIDIR_RD_OVERRUN
:
1949 ql_dbg(ql_dbg_user
, vha
, 0x70b3,
1950 "Command completed with read data overrun thread_id=%d\n",
1952 rval
= EXT_STATUS_DATA_OVERRUN
;
1955 case CS_BIDIR_RD_WR_OVERRUN
:
1956 ql_dbg(ql_dbg_user
, vha
, 0x70b4,
1957 "Command completed with read and write data overrun "
1958 "thread_id=%d\n", thread_id
);
1959 rval
= EXT_STATUS_DATA_OVERRUN
;
1962 case CS_BIDIR_RD_OVERRUN_WR_UNDERRUN
:
1963 ql_dbg(ql_dbg_user
, vha
, 0x70b5,
1964 "Command completed with read data over and write data "
1965 "underrun thread_id=%d\n", thread_id
);
1966 rval
= EXT_STATUS_DATA_OVERRUN
;
1969 case CS_BIDIR_RD_UNDERRUN
:
1970 ql_dbg(ql_dbg_user
, vha
, 0x70b6,
1971 "Command completed with read data data underrun "
1972 "thread_id=%d\n", thread_id
);
1973 rval
= EXT_STATUS_DATA_UNDERRUN
;
1976 case CS_BIDIR_RD_UNDERRUN_WR_OVERRUN
:
1977 ql_dbg(ql_dbg_user
, vha
, 0x70b7,
1978 "Command completed with read data under and write data "
1979 "overrun thread_id=%d\n", thread_id
);
1980 rval
= EXT_STATUS_DATA_UNDERRUN
;
1983 case CS_BIDIR_RD_WR_UNDERRUN
:
1984 ql_dbg(ql_dbg_user
, vha
, 0x70b8,
1985 "Command completed with read and write data underrun "
1986 "thread_id=%d\n", thread_id
);
1987 rval
= EXT_STATUS_DATA_UNDERRUN
;
1991 ql_dbg(ql_dbg_user
, vha
, 0x70b9,
1992 "Command completed with data DMA error thread_id=%d\n",
1994 rval
= EXT_STATUS_DMA_ERR
;
1998 ql_dbg(ql_dbg_user
, vha
, 0x70ba,
1999 "Command completed with timeout thread_id=%d\n",
2001 rval
= EXT_STATUS_TIMEOUT
;
2004 ql_dbg(ql_dbg_user
, vha
, 0x70bb,
2005 "Command completed with completion status=0x%x "
2006 "thread_id=%d\n", comp_status
, thread_id
);
2007 rval
= EXT_STATUS_ERR
;
2010 bsg_job
->reply
->reply_payload_rcv_len
= 0;
2013 /* Return the vendor specific reply to API */
2014 bsg_job
->reply
->reply_data
.vendor_reply
.vendor_rsp
[0] = rval
;
2015 bsg_job
->reply_len
= sizeof(struct fc_bsg_reply
);
2016 /* Always return DID_OK, bsg will send the vendor specific response
2017 * in this case only */
2018 sp
->done(vha
, sp
, (DID_OK
<< 6));
2023 * qla2x00_status_entry() - Process a Status IOCB entry.
2024 * @ha: SCSI driver HA context
2025 * @pkt: Entry pointer
2028 qla2x00_status_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, void *pkt
)
2032 struct scsi_cmnd
*cp
;
2034 struct sts_entry_24xx
*sts24
;
2035 uint16_t comp_status
;
2036 uint16_t scsi_status
;
2038 uint8_t lscsi_status
;
2040 uint32_t sense_len
, par_sense_len
, rsp_info_len
, resid_len
,
2042 uint8_t *rsp_info
, *sense_data
;
2043 struct qla_hw_data
*ha
= vha
->hw
;
2046 struct req_que
*req
;
2049 uint16_t state_flags
= 0;
2050 uint16_t retry_delay
= 0;
2052 sts
= (sts_entry_t
*) pkt
;
2053 sts24
= (struct sts_entry_24xx
*) pkt
;
2054 if (IS_FWI2_CAPABLE(ha
)) {
2055 comp_status
= le16_to_cpu(sts24
->comp_status
);
2056 scsi_status
= le16_to_cpu(sts24
->scsi_status
) & SS_MASK
;
2057 state_flags
= le16_to_cpu(sts24
->state_flags
);
2059 comp_status
= le16_to_cpu(sts
->comp_status
);
2060 scsi_status
= le16_to_cpu(sts
->scsi_status
) & SS_MASK
;
2062 handle
= (uint32_t) LSW(sts
->handle
);
2063 que
= MSW(sts
->handle
);
2064 req
= ha
->req_q_map
[que
];
2066 /* Check for invalid queue pointer */
2068 que
>= find_first_zero_bit(ha
->req_qid_map
, ha
->max_req_queues
)) {
2069 ql_dbg(ql_dbg_io
, vha
, 0x3059,
2070 "Invalid status handle (0x%x): Bad req pointer. req=%p, "
2071 "que=%u.\n", sts
->handle
, req
, que
);
2075 /* Validate handle. */
2076 if (handle
< req
->num_outstanding_cmds
) {
2077 sp
= req
->outstanding_cmds
[handle
];
2079 ql_dbg(ql_dbg_io
, vha
, 0x3075,
2080 "%s(%ld): Already returned command for status handle (0x%x).\n",
2081 __func__
, vha
->host_no
, sts
->handle
);
2085 ql_dbg(ql_dbg_io
, vha
, 0x3017,
2086 "Invalid status handle, out of range (0x%x).\n",
2089 if (!test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
)) {
2090 if (IS_P3P_TYPE(ha
))
2091 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
2093 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2094 qla2xxx_wake_dpc(vha
);
2099 if (unlikely((state_flags
& BIT_1
) && (sp
->type
== SRB_BIDI_CMD
))) {
2100 qla25xx_process_bidir_status_iocb(vha
, pkt
, req
, handle
);
2104 /* Task Management completion. */
2105 if (sp
->type
== SRB_TM_CMD
) {
2106 qla24xx_tm_iocb_entry(vha
, req
, pkt
);
2110 /* Fast path completion. */
2111 if (comp_status
== CS_COMPLETE
&& scsi_status
== 0) {
2112 qla2x00_process_completed_request(vha
, req
, handle
);
2117 req
->outstanding_cmds
[handle
] = NULL
;
2118 cp
= GET_CMD_SP(sp
);
2120 ql_dbg(ql_dbg_io
, vha
, 0x3018,
2121 "Command already returned (0x%x/%p).\n",
2127 lscsi_status
= scsi_status
& STATUS_MASK
;
2129 fcport
= sp
->fcport
;
2132 sense_len
= par_sense_len
= rsp_info_len
= resid_len
=
2134 if (IS_FWI2_CAPABLE(ha
)) {
2135 if (scsi_status
& SS_SENSE_LEN_VALID
)
2136 sense_len
= le32_to_cpu(sts24
->sense_len
);
2137 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2138 rsp_info_len
= le32_to_cpu(sts24
->rsp_data_len
);
2139 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
))
2140 resid_len
= le32_to_cpu(sts24
->rsp_residual_count
);
2141 if (comp_status
== CS_DATA_UNDERRUN
)
2142 fw_resid_len
= le32_to_cpu(sts24
->residual_len
);
2143 rsp_info
= sts24
->data
;
2144 sense_data
= sts24
->data
;
2145 host_to_fcp_swap(sts24
->data
, sizeof(sts24
->data
));
2146 ox_id
= le16_to_cpu(sts24
->ox_id
);
2147 par_sense_len
= sizeof(sts24
->data
);
2148 /* Valid values of the retry delay timer are 0x1-0xffef */
2149 if (sts24
->retry_delay
> 0 && sts24
->retry_delay
< 0xfff1)
2150 retry_delay
= sts24
->retry_delay
;
2152 if (scsi_status
& SS_SENSE_LEN_VALID
)
2153 sense_len
= le16_to_cpu(sts
->req_sense_length
);
2154 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
)
2155 rsp_info_len
= le16_to_cpu(sts
->rsp_info_len
);
2156 resid_len
= le32_to_cpu(sts
->residual_length
);
2157 rsp_info
= sts
->rsp_info
;
2158 sense_data
= sts
->req_sense_data
;
2159 par_sense_len
= sizeof(sts
->req_sense_data
);
2162 /* Check for any FCP transport errors. */
2163 if (scsi_status
& SS_RESPONSE_INFO_LEN_VALID
) {
2164 /* Sense data lies beyond any FCP RESPONSE data. */
2165 if (IS_FWI2_CAPABLE(ha
)) {
2166 sense_data
+= rsp_info_len
;
2167 par_sense_len
-= rsp_info_len
;
2169 if (rsp_info_len
> 3 && rsp_info
[3]) {
2170 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3019,
2171 "FCP I/O protocol failure (0x%x/0x%x).\n",
2172 rsp_info_len
, rsp_info
[3]);
2174 res
= DID_BUS_BUSY
<< 16;
2179 /* Check for overrun. */
2180 if (IS_FWI2_CAPABLE(ha
) && comp_status
== CS_COMPLETE
&&
2181 scsi_status
& SS_RESIDUAL_OVER
)
2182 comp_status
= CS_DATA_OVERRUN
;
2185 * Check retry_delay_timer value if we receive a busy or
2188 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
||
2189 lscsi_status
== SAM_STAT_BUSY
)
2190 qla2x00_set_retry_delay_timestamp(fcport
, retry_delay
);
2193 * Based on Host and scsi status generate status code for Linux
2195 switch (comp_status
) {
2198 if (scsi_status
== 0) {
2202 if (scsi_status
& (SS_RESIDUAL_UNDER
| SS_RESIDUAL_OVER
)) {
2204 scsi_set_resid(cp
, resid
);
2206 if (!lscsi_status
&&
2207 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2209 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301a,
2210 "Mid-layer underflow "
2211 "detected (0x%x of 0x%x bytes).\n",
2212 resid
, scsi_bufflen(cp
));
2214 res
= DID_ERROR
<< 16;
2218 res
= DID_OK
<< 16 | lscsi_status
;
2220 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2221 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301b,
2222 "QUEUE FULL detected.\n");
2226 if (lscsi_status
!= SS_CHECK_CONDITION
)
2229 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2230 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2233 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
, sense_len
,
2237 case CS_DATA_UNDERRUN
:
2238 /* Use F/W calculated residual length. */
2239 resid
= IS_FWI2_CAPABLE(ha
) ? fw_resid_len
: resid_len
;
2240 scsi_set_resid(cp
, resid
);
2241 if (scsi_status
& SS_RESIDUAL_UNDER
) {
2242 if (IS_FWI2_CAPABLE(ha
) && fw_resid_len
!= resid_len
) {
2243 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301d,
2244 "Dropped frame(s) detected "
2245 "(0x%x of 0x%x bytes).\n",
2246 resid
, scsi_bufflen(cp
));
2248 res
= DID_ERROR
<< 16 | lscsi_status
;
2249 goto check_scsi_status
;
2252 if (!lscsi_status
&&
2253 ((unsigned)(scsi_bufflen(cp
) - resid
) <
2255 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301e,
2256 "Mid-layer underflow "
2257 "detected (0x%x of 0x%x bytes).\n",
2258 resid
, scsi_bufflen(cp
));
2260 res
= DID_ERROR
<< 16;
2263 } else if (lscsi_status
!= SAM_STAT_TASK_SET_FULL
&&
2264 lscsi_status
!= SAM_STAT_BUSY
) {
2266 * scsi status of task set and busy are considered to be
2267 * task not completed.
2270 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x301f,
2271 "Dropped frame(s) detected (0x%x "
2272 "of 0x%x bytes).\n", resid
,
2275 res
= DID_ERROR
<< 16 | lscsi_status
;
2276 goto check_scsi_status
;
2278 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3030,
2279 "scsi_status: 0x%x, lscsi_status: 0x%x\n",
2280 scsi_status
, lscsi_status
);
2283 res
= DID_OK
<< 16 | lscsi_status
;
2288 * Check to see if SCSI Status is non zero. If so report SCSI
2291 if (lscsi_status
!= 0) {
2292 if (lscsi_status
== SAM_STAT_TASK_SET_FULL
) {
2293 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3020,
2294 "QUEUE FULL detected.\n");
2298 if (lscsi_status
!= SS_CHECK_CONDITION
)
2301 memset(cp
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2302 if (!(scsi_status
& SS_SENSE_LEN_VALID
))
2305 qla2x00_handle_sense(sp
, sense_data
, par_sense_len
,
2306 sense_len
, rsp
, res
);
2310 case CS_PORT_LOGGED_OUT
:
2311 case CS_PORT_CONFIG_CHG
:
2314 case CS_PORT_UNAVAILABLE
:
2319 * We are going to have the fc class block the rport
2320 * while we try to recover so instruct the mid layer
2321 * to requeue until the class decides how to handle this.
2323 res
= DID_TRANSPORT_DISRUPTED
<< 16;
2325 if (comp_status
== CS_TIMEOUT
) {
2326 if (IS_FWI2_CAPABLE(ha
))
2328 else if ((le16_to_cpu(sts
->status_flags
) &
2329 SF_LOGOUT_SENT
) == 0)
2333 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3021,
2334 "Port to be marked lost on fcport=%02x%02x%02x, current "
2335 "port state= %s.\n", fcport
->d_id
.b
.domain
,
2336 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
,
2337 port_state_str
[atomic_read(&fcport
->state
)]);
2339 if (atomic_read(&fcport
->state
) == FCS_ONLINE
)
2340 qla2x00_mark_device_lost(fcport
->vha
, fcport
, 1, 1);
2344 res
= DID_RESET
<< 16;
2348 logit
= qla2x00_handle_dif_error(sp
, sts24
);
2353 res
= DID_ERROR
<< 16;
2355 if (!IS_PI_SPLIT_DET_CAPABLE(ha
))
2358 if (state_flags
& BIT_4
)
2359 scmd_printk(KERN_WARNING
, cp
,
2360 "Unsupported device '%s' found.\n",
2361 cp
->device
->vendor
);
2365 res
= DID_ERROR
<< 16;
2371 ql_dbg(ql_dbg_io
, fcport
->vha
, 0x3022,
2372 "FCP command status: 0x%x-0x%x (0x%x) nexus=%ld:%d:%llu "
2373 "portid=%02x%02x%02x oxid=0x%x cdb=%10phN len=0x%x "
2374 "rsp_info=0x%x resid=0x%x fw_resid=0x%x sp=%p cp=%p.\n",
2375 comp_status
, scsi_status
, res
, vha
->host_no
,
2376 cp
->device
->id
, cp
->device
->lun
, fcport
->d_id
.b
.domain
,
2377 fcport
->d_id
.b
.area
, fcport
->d_id
.b
.al_pa
, ox_id
,
2378 cp
->cmnd
, scsi_bufflen(cp
), rsp_info_len
,
2379 resid_len
, fw_resid_len
, sp
, cp
);
2381 if (rsp
->status_srb
== NULL
)
2382 sp
->done(ha
, sp
, res
);
2386 * qla2x00_status_cont_entry() - Process a Status Continuations entry.
2387 * @ha: SCSI driver HA context
2388 * @pkt: Entry pointer
2390 * Extended sense data.
2393 qla2x00_status_cont_entry(struct rsp_que
*rsp
, sts_cont_entry_t
*pkt
)
2395 uint8_t sense_sz
= 0;
2396 struct qla_hw_data
*ha
= rsp
->hw
;
2397 struct scsi_qla_host
*vha
= pci_get_drvdata(ha
->pdev
);
2398 srb_t
*sp
= rsp
->status_srb
;
2399 struct scsi_cmnd
*cp
;
2403 if (!sp
|| !GET_CMD_SENSE_LEN(sp
))
2406 sense_len
= GET_CMD_SENSE_LEN(sp
);
2407 sense_ptr
= GET_CMD_SENSE_PTR(sp
);
2409 cp
= GET_CMD_SP(sp
);
2411 ql_log(ql_log_warn
, vha
, 0x3025,
2412 "cmd is NULL: already returned to OS (sp=%p).\n", sp
);
2414 rsp
->status_srb
= NULL
;
2418 if (sense_len
> sizeof(pkt
->data
))
2419 sense_sz
= sizeof(pkt
->data
);
2421 sense_sz
= sense_len
;
2423 /* Move sense data. */
2424 if (IS_FWI2_CAPABLE(ha
))
2425 host_to_fcp_swap(pkt
->data
, sizeof(pkt
->data
));
2426 memcpy(sense_ptr
, pkt
->data
, sense_sz
);
2427 ql_dump_buffer(ql_dbg_io
+ ql_dbg_buffer
, vha
, 0x302c,
2428 sense_ptr
, sense_sz
);
2430 sense_len
-= sense_sz
;
2431 sense_ptr
+= sense_sz
;
2433 SET_CMD_SENSE_PTR(sp
, sense_ptr
);
2434 SET_CMD_SENSE_LEN(sp
, sense_len
);
2436 /* Place command on done queue. */
2437 if (sense_len
== 0) {
2438 rsp
->status_srb
= NULL
;
2439 sp
->done(ha
, sp
, cp
->result
);
2444 * qla2x00_error_entry() - Process an error entry.
2445 * @ha: SCSI driver HA context
2446 * @pkt: Entry pointer
2449 qla2x00_error_entry(scsi_qla_host_t
*vha
, struct rsp_que
*rsp
, sts_entry_t
*pkt
)
2452 struct qla_hw_data
*ha
= vha
->hw
;
2453 const char func
[] = "ERROR-IOCB";
2454 uint16_t que
= MSW(pkt
->handle
);
2455 struct req_que
*req
= NULL
;
2456 int res
= DID_ERROR
<< 16;
2458 ql_dbg(ql_dbg_async
, vha
, 0x502a,
2459 "type of error status in response: 0x%x\n", pkt
->entry_status
);
2461 if (que
>= ha
->max_req_queues
|| !ha
->req_q_map
[que
])
2464 req
= ha
->req_q_map
[que
];
2466 if (pkt
->entry_status
& RF_BUSY
)
2467 res
= DID_BUS_BUSY
<< 16;
2469 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2471 sp
->done(ha
, sp
, res
);
2475 ql_log(ql_log_warn
, vha
, 0x5030,
2476 "Error entry - invalid handle/queue (%04x).\n", que
);
2480 * qla24xx_mbx_completion() - Process mailbox command completions.
2481 * @ha: SCSI driver HA context
2482 * @mb0: Mailbox0 register
2485 qla24xx_mbx_completion(scsi_qla_host_t
*vha
, uint16_t mb0
)
2489 uint16_t __iomem
*wptr
;
2490 struct qla_hw_data
*ha
= vha
->hw
;
2491 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
2493 /* Read all mbox registers? */
2494 mboxes
= (1 << ha
->mbx_count
) - 1;
2496 ql_dbg(ql_dbg_async
, vha
, 0x504e, "MBX pointer ERROR.\n");
2498 mboxes
= ha
->mcp
->in_mb
;
2500 /* Load return mailbox registers. */
2501 ha
->flags
.mbox_int
= 1;
2502 ha
->mailbox_out
[0] = mb0
;
2504 wptr
= (uint16_t __iomem
*)®
->mailbox1
;
2506 for (cnt
= 1; cnt
< ha
->mbx_count
; cnt
++) {
2508 ha
->mailbox_out
[cnt
] = RD_REG_WORD(wptr
);
2516 qla24xx_abort_iocb_entry(scsi_qla_host_t
*vha
, struct req_que
*req
,
2517 struct abort_entry_24xx
*pkt
)
2519 const char func
[] = "ABT_IOCB";
2521 struct srb_iocb
*abt
;
2523 sp
= qla2x00_get_sp_from_handle(vha
, func
, req
, pkt
);
2527 abt
= &sp
->u
.iocb_cmd
;
2528 abt
->u
.abt
.comp_status
= le32_to_cpu(pkt
->nport_handle
);
2529 sp
->done(vha
, sp
, 0);
2533 * qla24xx_process_response_queue() - Process response queue entries.
2534 * @ha: SCSI driver HA context
2536 void qla24xx_process_response_queue(struct scsi_qla_host
*vha
,
2537 struct rsp_que
*rsp
)
2539 struct sts_entry_24xx
*pkt
;
2540 struct qla_hw_data
*ha
= vha
->hw
;
2542 if (!vha
->flags
.online
)
2545 while (rsp
->ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
2546 pkt
= (struct sts_entry_24xx
*)rsp
->ring_ptr
;
2549 if (rsp
->ring_index
== rsp
->length
) {
2550 rsp
->ring_index
= 0;
2551 rsp
->ring_ptr
= rsp
->ring
;
2556 if (pkt
->entry_status
!= 0) {
2557 qla2x00_error_entry(vha
, rsp
, (sts_entry_t
*) pkt
);
2559 if (qlt_24xx_process_response_error(vha
, pkt
))
2562 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2568 switch (pkt
->entry_type
) {
2570 qla2x00_status_entry(vha
, rsp
, pkt
);
2572 case STATUS_CONT_TYPE
:
2573 qla2x00_status_cont_entry(rsp
, (sts_cont_entry_t
*)pkt
);
2575 case VP_RPT_ID_IOCB_TYPE
:
2576 qla24xx_report_id_acquisition(vha
,
2577 (struct vp_rpt_id_entry_24xx
*)pkt
);
2579 case LOGINOUT_PORT_IOCB_TYPE
:
2580 qla24xx_logio_entry(vha
, rsp
->req
,
2581 (struct logio_entry_24xx
*)pkt
);
2584 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, CT_IOCB_TYPE
);
2587 qla24xx_els_ct_entry(vha
, rsp
->req
, pkt
, ELS_IOCB_TYPE
);
2589 case ABTS_RECV_24XX
:
2590 /* ensure that the ATIO queue is empty */
2591 qlt_24xx_process_atio_queue(vha
);
2592 case ABTS_RESP_24XX
:
2594 case NOTIFY_ACK_TYPE
:
2596 qlt_response_pkt_all_vps(vha
, (response_t
*)pkt
);
2599 /* Do nothing in this case, this check is to prevent it
2600 * from falling into default case
2603 case ABORT_IOCB_TYPE
:
2604 qla24xx_abort_iocb_entry(vha
, rsp
->req
,
2605 (struct abort_entry_24xx
*)pkt
);
2608 /* Type Not Supported. */
2609 ql_dbg(ql_dbg_async
, vha
, 0x5042,
2610 "Received unknown response pkt type %x "
2611 "entry status=%x.\n",
2612 pkt
->entry_type
, pkt
->entry_status
);
2615 ((response_t
*)pkt
)->signature
= RESPONSE_PROCESSED
;
2619 /* Adjust ring index */
2620 if (IS_P3P_TYPE(ha
)) {
2621 struct device_reg_82xx __iomem
*reg
= &ha
->iobase
->isp82
;
2622 WRT_REG_DWORD(®
->rsp_q_out
[0], rsp
->ring_index
);
2624 WRT_REG_DWORD(rsp
->rsp_q_out
, rsp
->ring_index
);
2628 qla2xxx_check_risc_status(scsi_qla_host_t
*vha
)
2632 struct qla_hw_data
*ha
= vha
->hw
;
2633 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
2635 if (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
) && !IS_QLA83XX(ha
) &&
2640 WRT_REG_DWORD(®
->iobase_addr
, 0x7C00);
2641 RD_REG_DWORD(®
->iobase_addr
);
2642 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
2643 for (cnt
= 10000; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
2644 rval
== QLA_SUCCESS
; cnt
--) {
2646 WRT_REG_DWORD(®
->iobase_window
, 0x0001);
2649 rval
= QLA_FUNCTION_TIMEOUT
;
2651 if (rval
== QLA_SUCCESS
)
2655 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
2656 for (cnt
= 100; (RD_REG_DWORD(®
->iobase_window
) & BIT_0
) == 0 &&
2657 rval
== QLA_SUCCESS
; cnt
--) {
2659 WRT_REG_DWORD(®
->iobase_window
, 0x0003);
2662 rval
= QLA_FUNCTION_TIMEOUT
;
2664 if (rval
!= QLA_SUCCESS
)
2668 if (RD_REG_DWORD(®
->iobase_c8
) & BIT_3
)
2669 ql_log(ql_log_info
, vha
, 0x504c,
2670 "Additional code -- 0x55AA.\n");
2673 WRT_REG_DWORD(®
->iobase_window
, 0x0000);
2674 RD_REG_DWORD(®
->iobase_window
);
2678 * qla24xx_intr_handler() - Process interrupts for the ISP23xx and ISP24xx.
2680 * @dev_id: SCSI driver HA context
2682 * Called by system whenever the host adapter generates an interrupt.
2684 * Returns handled flag.
2687 qla24xx_intr_handler(int irq
, void *dev_id
)
2689 scsi_qla_host_t
*vha
;
2690 struct qla_hw_data
*ha
;
2691 struct device_reg_24xx __iomem
*reg
;
2697 struct rsp_que
*rsp
;
2698 unsigned long flags
;
2700 rsp
= (struct rsp_que
*) dev_id
;
2702 ql_log(ql_log_info
, NULL
, 0x5059,
2703 "%s: NULL response queue pointer.\n", __func__
);
2708 reg
= &ha
->iobase
->isp24
;
2711 if (unlikely(pci_channel_offline(ha
->pdev
)))
2714 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2715 vha
= pci_get_drvdata(ha
->pdev
);
2716 for (iter
= 50; iter
--; ) {
2717 stat
= RD_REG_DWORD(®
->host_status
);
2718 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2720 if (stat
& HSRX_RISC_PAUSED
) {
2721 if (unlikely(pci_channel_offline(ha
->pdev
)))
2724 hccr
= RD_REG_DWORD(®
->hccr
);
2726 ql_log(ql_log_warn
, vha
, 0x504b,
2727 "RISC paused -- HCCR=%x, Dumping firmware.\n",
2730 qla2xxx_check_risc_status(vha
);
2732 ha
->isp_ops
->fw_dump(vha
, 1);
2733 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2735 } else if ((stat
& HSRX_RISC_INT
) == 0)
2738 switch (stat
& 0xff) {
2739 case INTR_ROM_MB_SUCCESS
:
2740 case INTR_ROM_MB_FAILED
:
2741 case INTR_MB_SUCCESS
:
2742 case INTR_MB_FAILED
:
2743 qla24xx_mbx_completion(vha
, MSW(stat
));
2744 status
|= MBX_INTERRUPT
;
2747 case INTR_ASYNC_EVENT
:
2749 mb
[1] = RD_REG_WORD(®
->mailbox1
);
2750 mb
[2] = RD_REG_WORD(®
->mailbox2
);
2751 mb
[3] = RD_REG_WORD(®
->mailbox3
);
2752 qla2x00_async_event(vha
, rsp
, mb
);
2754 case INTR_RSP_QUE_UPDATE
:
2755 case INTR_RSP_QUE_UPDATE_83XX
:
2756 qla24xx_process_response_queue(vha
, rsp
);
2758 case INTR_ATIO_QUE_UPDATE
:
2759 qlt_24xx_process_atio_queue(vha
);
2761 case INTR_ATIO_RSP_QUE_UPDATE
:
2762 qlt_24xx_process_atio_queue(vha
);
2763 qla24xx_process_response_queue(vha
, rsp
);
2766 ql_dbg(ql_dbg_async
, vha
, 0x504f,
2767 "Unrecognized interrupt type (%d).\n", stat
* 0xff);
2770 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2771 RD_REG_DWORD_RELAXED(®
->hccr
);
2772 if (unlikely(IS_QLA83XX(ha
) && (ha
->pdev
->revision
== 1)))
2775 qla2x00_handle_mbx_completion(ha
, status
);
2776 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2782 qla24xx_msix_rsp_q(int irq
, void *dev_id
)
2784 struct qla_hw_data
*ha
;
2785 struct rsp_que
*rsp
;
2786 struct device_reg_24xx __iomem
*reg
;
2787 struct scsi_qla_host
*vha
;
2788 unsigned long flags
;
2791 rsp
= (struct rsp_que
*) dev_id
;
2793 ql_log(ql_log_info
, NULL
, 0x505a,
2794 "%s: NULL response queue pointer.\n", __func__
);
2798 reg
= &ha
->iobase
->isp24
;
2800 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2802 vha
= pci_get_drvdata(ha
->pdev
);
2804 * Use host_status register to check to PCI disconnection before we
2805 * we process the response queue.
2807 stat
= RD_REG_DWORD(®
->host_status
);
2808 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2810 qla24xx_process_response_queue(vha
, rsp
);
2811 if (!ha
->flags
.disable_msix_handshake
) {
2812 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2813 RD_REG_DWORD_RELAXED(®
->hccr
);
2816 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2822 qla25xx_msix_rsp_q(int irq
, void *dev_id
)
2824 struct qla_hw_data
*ha
;
2825 scsi_qla_host_t
*vha
;
2826 struct rsp_que
*rsp
;
2827 struct device_reg_24xx __iomem
*reg
;
2828 unsigned long flags
;
2831 rsp
= (struct rsp_que
*) dev_id
;
2833 ql_log(ql_log_info
, NULL
, 0x505b,
2834 "%s: NULL response queue pointer.\n", __func__
);
2838 vha
= pci_get_drvdata(ha
->pdev
);
2840 /* Clear the interrupt, if enabled, for this response queue */
2841 if (!ha
->flags
.disable_msix_handshake
) {
2842 reg
= &ha
->iobase
->isp24
;
2843 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2844 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2845 hccr
= RD_REG_DWORD_RELAXED(®
->hccr
);
2846 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2848 if (qla2x00_check_reg32_for_disconnect(vha
, hccr
))
2850 queue_work_on((int) (rsp
->id
- 1), ha
->wq
, &rsp
->q_work
);
2857 qla24xx_msix_default(int irq
, void *dev_id
)
2859 scsi_qla_host_t
*vha
;
2860 struct qla_hw_data
*ha
;
2861 struct rsp_que
*rsp
;
2862 struct device_reg_24xx __iomem
*reg
;
2867 unsigned long flags
;
2869 rsp
= (struct rsp_que
*) dev_id
;
2871 ql_log(ql_log_info
, NULL
, 0x505c,
2872 "%s: NULL response queue pointer.\n", __func__
);
2876 reg
= &ha
->iobase
->isp24
;
2879 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2880 vha
= pci_get_drvdata(ha
->pdev
);
2882 stat
= RD_REG_DWORD(®
->host_status
);
2883 if (qla2x00_check_reg32_for_disconnect(vha
, stat
))
2885 if (stat
& HSRX_RISC_PAUSED
) {
2886 if (unlikely(pci_channel_offline(ha
->pdev
)))
2889 hccr
= RD_REG_DWORD(®
->hccr
);
2891 ql_log(ql_log_info
, vha
, 0x5050,
2892 "RISC paused -- HCCR=%x, Dumping firmware.\n",
2895 qla2xxx_check_risc_status(vha
);
2897 ha
->isp_ops
->fw_dump(vha
, 1);
2898 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2900 } else if ((stat
& HSRX_RISC_INT
) == 0)
2903 switch (stat
& 0xff) {
2904 case INTR_ROM_MB_SUCCESS
:
2905 case INTR_ROM_MB_FAILED
:
2906 case INTR_MB_SUCCESS
:
2907 case INTR_MB_FAILED
:
2908 qla24xx_mbx_completion(vha
, MSW(stat
));
2909 status
|= MBX_INTERRUPT
;
2912 case INTR_ASYNC_EVENT
:
2914 mb
[1] = RD_REG_WORD(®
->mailbox1
);
2915 mb
[2] = RD_REG_WORD(®
->mailbox2
);
2916 mb
[3] = RD_REG_WORD(®
->mailbox3
);
2917 qla2x00_async_event(vha
, rsp
, mb
);
2919 case INTR_RSP_QUE_UPDATE
:
2920 case INTR_RSP_QUE_UPDATE_83XX
:
2921 qla24xx_process_response_queue(vha
, rsp
);
2923 case INTR_ATIO_QUE_UPDATE
:
2924 qlt_24xx_process_atio_queue(vha
);
2926 case INTR_ATIO_RSP_QUE_UPDATE
:
2927 qlt_24xx_process_atio_queue(vha
);
2928 qla24xx_process_response_queue(vha
, rsp
);
2931 ql_dbg(ql_dbg_async
, vha
, 0x5051,
2932 "Unrecognized interrupt type (%d).\n", stat
& 0xff);
2935 WRT_REG_DWORD(®
->hccr
, HCCRX_CLR_RISC_INT
);
2937 qla2x00_handle_mbx_completion(ha
, status
);
2938 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2943 /* Interrupt handling helpers. */
2945 struct qla_init_msix_entry
{
2947 irq_handler_t handler
;
2950 static struct qla_init_msix_entry msix_entries
[3] = {
2951 { "qla2xxx (default)", qla24xx_msix_default
},
2952 { "qla2xxx (rsp_q)", qla24xx_msix_rsp_q
},
2953 { "qla2xxx (multiq)", qla25xx_msix_rsp_q
},
2956 static struct qla_init_msix_entry qla82xx_msix_entries
[2] = {
2957 { "qla2xxx (default)", qla82xx_msix_default
},
2958 { "qla2xxx (rsp_q)", qla82xx_msix_rsp_q
},
2961 static struct qla_init_msix_entry qla83xx_msix_entries
[3] = {
2962 { "qla2xxx (default)", qla24xx_msix_default
},
2963 { "qla2xxx (rsp_q)", qla24xx_msix_rsp_q
},
2964 { "qla2xxx (atio_q)", qla83xx_msix_atio_q
},
2968 qla24xx_disable_msix(struct qla_hw_data
*ha
)
2971 struct qla_msix_entry
*qentry
;
2972 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
2974 for (i
= 0; i
< ha
->msix_count
; i
++) {
2975 qentry
= &ha
->msix_entries
[i
];
2976 if (qentry
->have_irq
)
2977 free_irq(qentry
->vector
, qentry
->rsp
);
2979 pci_disable_msix(ha
->pdev
);
2980 kfree(ha
->msix_entries
);
2981 ha
->msix_entries
= NULL
;
2982 ha
->flags
.msix_enabled
= 0;
2983 ql_dbg(ql_dbg_init
, vha
, 0x0042,
2984 "Disabled the MSI.\n");
2988 qla24xx_enable_msix(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
2990 #define MIN_MSIX_COUNT 2
2991 #define ATIO_VECTOR 2
2993 struct msix_entry
*entries
;
2994 struct qla_msix_entry
*qentry
;
2995 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
2997 entries
= kzalloc(sizeof(struct msix_entry
) * ha
->msix_count
,
3000 ql_log(ql_log_warn
, vha
, 0x00bc,
3001 "Failed to allocate memory for msix_entry.\n");
3005 for (i
= 0; i
< ha
->msix_count
; i
++)
3006 entries
[i
].entry
= i
;
3008 ret
= pci_enable_msix_range(ha
->pdev
,
3009 entries
, MIN_MSIX_COUNT
, ha
->msix_count
);
3011 ql_log(ql_log_fatal
, vha
, 0x00c7,
3012 "MSI-X: Failed to enable support, "
3013 "giving up -- %d/%d.\n",
3014 ha
->msix_count
, ret
);
3016 } else if (ret
< ha
->msix_count
) {
3017 ql_log(ql_log_warn
, vha
, 0x00c6,
3018 "MSI-X: Failed to enable support "
3019 "-- %d/%d\n Retry with %d vectors.\n",
3020 ha
->msix_count
, ret
, ret
);
3022 ha
->msix_count
= ret
;
3023 ha
->max_rsp_queues
= ha
->msix_count
- 1;
3024 ha
->msix_entries
= kzalloc(sizeof(struct qla_msix_entry
) *
3025 ha
->msix_count
, GFP_KERNEL
);
3026 if (!ha
->msix_entries
) {
3027 ql_log(ql_log_fatal
, vha
, 0x00c8,
3028 "Failed to allocate memory for ha->msix_entries.\n");
3032 ha
->flags
.msix_enabled
= 1;
3034 for (i
= 0; i
< ha
->msix_count
; i
++) {
3035 qentry
= &ha
->msix_entries
[i
];
3036 qentry
->vector
= entries
[i
].vector
;
3037 qentry
->entry
= entries
[i
].entry
;
3038 qentry
->have_irq
= 0;
3042 /* Enable MSI-X vectors for the base queue */
3043 for (i
= 0; i
< 2; i
++) {
3044 qentry
= &ha
->msix_entries
[i
];
3045 if (IS_P3P_TYPE(ha
))
3046 ret
= request_irq(qentry
->vector
,
3047 qla82xx_msix_entries
[i
].handler
,
3048 0, qla82xx_msix_entries
[i
].name
, rsp
);
3050 ret
= request_irq(qentry
->vector
,
3051 msix_entries
[i
].handler
,
3052 0, msix_entries
[i
].name
, rsp
);
3054 goto msix_register_fail
;
3055 qentry
->have_irq
= 1;
3061 * If target mode is enable, also request the vector for the ATIO
3064 if (QLA_TGT_MODE_ENABLED() && IS_ATIO_MSIX_CAPABLE(ha
)) {
3065 qentry
= &ha
->msix_entries
[ATIO_VECTOR
];
3066 ret
= request_irq(qentry
->vector
,
3067 qla83xx_msix_entries
[ATIO_VECTOR
].handler
,
3068 0, qla83xx_msix_entries
[ATIO_VECTOR
].name
, rsp
);
3069 qentry
->have_irq
= 1;
3076 ql_log(ql_log_fatal
, vha
, 0x00cb,
3077 "MSI-X: unable to register handler -- %x/%d.\n",
3078 qentry
->vector
, ret
);
3079 qla24xx_disable_msix(ha
);
3084 /* Enable MSI-X vector for response queue update for queue 0 */
3085 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
)) {
3086 if (ha
->msixbase
&& ha
->mqiobase
&&
3087 (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1))
3091 && (ha
->max_rsp_queues
> 1 || ha
->max_req_queues
> 1))
3093 ql_dbg(ql_dbg_multiq
, vha
, 0xc005,
3094 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3095 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3096 ql_dbg(ql_dbg_init
, vha
, 0x0055,
3097 "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n",
3098 ha
->mqiobase
, ha
->max_rsp_queues
, ha
->max_req_queues
);
3106 qla2x00_request_irqs(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
3108 int ret
= QLA_FUNCTION_FAILED
;
3109 device_reg_t
*reg
= ha
->iobase
;
3110 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3112 /* If possible, enable MSI-X. */
3113 if (!IS_QLA2432(ha
) && !IS_QLA2532(ha
) && !IS_QLA8432(ha
) &&
3114 !IS_CNA_CAPABLE(ha
) && !IS_QLA2031(ha
) && !IS_QLAFX00(ha
) &&
3118 if (ha
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_HP
&&
3119 (ha
->pdev
->subsystem_device
== 0x7040 ||
3120 ha
->pdev
->subsystem_device
== 0x7041 ||
3121 ha
->pdev
->subsystem_device
== 0x1705)) {
3122 ql_log(ql_log_warn
, vha
, 0x0034,
3123 "MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x%X,0x%X).\n",
3124 ha
->pdev
->subsystem_vendor
,
3125 ha
->pdev
->subsystem_device
);
3129 if (IS_QLA2432(ha
) && (ha
->pdev
->revision
< QLA_MSIX_CHIP_REV_24XX
)) {
3130 ql_log(ql_log_warn
, vha
, 0x0035,
3131 "MSI-X; Unsupported ISP2432 (0x%X, 0x%X).\n",
3132 ha
->pdev
->revision
, QLA_MSIX_CHIP_REV_24XX
);
3136 ret
= qla24xx_enable_msix(ha
, rsp
);
3138 ql_dbg(ql_dbg_init
, vha
, 0x0036,
3139 "MSI-X: Enabled (0x%X, 0x%X).\n",
3140 ha
->chip_revision
, ha
->fw_attributes
);
3141 goto clear_risc_ints
;
3146 ql_log(ql_log_info
, vha
, 0x0037,
3147 "Falling back-to MSI mode -%d.\n", ret
);
3149 if (!IS_QLA24XX(ha
) && !IS_QLA2532(ha
) && !IS_QLA8432(ha
) &&
3150 !IS_QLA8001(ha
) && !IS_P3P_TYPE(ha
) && !IS_QLAFX00(ha
) &&
3154 ret
= pci_enable_msi(ha
->pdev
);
3156 ql_dbg(ql_dbg_init
, vha
, 0x0038,
3158 ha
->flags
.msi_enabled
= 1;
3160 ql_log(ql_log_warn
, vha
, 0x0039,
3161 "Falling back-to INTa mode -- %d.\n", ret
);
3164 /* Skip INTx on ISP82xx. */
3165 if (!ha
->flags
.msi_enabled
&& IS_QLA82XX(ha
))
3166 return QLA_FUNCTION_FAILED
;
3168 ret
= request_irq(ha
->pdev
->irq
, ha
->isp_ops
->intr_handler
,
3169 ha
->flags
.msi_enabled
? 0 : IRQF_SHARED
,
3170 QLA2XXX_DRIVER_NAME
, rsp
);
3172 ql_log(ql_log_warn
, vha
, 0x003a,
3173 "Failed to reserve interrupt %d already in use.\n",
3176 } else if (!ha
->flags
.msi_enabled
) {
3177 ql_dbg(ql_dbg_init
, vha
, 0x0125,
3178 "INTa mode: Enabled.\n");
3179 ha
->flags
.mr_intr_valid
= 1;
3183 if (IS_FWI2_CAPABLE(ha
) || IS_QLAFX00(ha
))
3186 spin_lock_irq(&ha
->hardware_lock
);
3187 WRT_REG_WORD(®
->isp
.semaphore
, 0);
3188 spin_unlock_irq(&ha
->hardware_lock
);
3195 qla2x00_free_irqs(scsi_qla_host_t
*vha
)
3197 struct qla_hw_data
*ha
= vha
->hw
;
3198 struct rsp_que
*rsp
;
3201 * We need to check that ha->rsp_q_map is valid in case we are called
3202 * from a probe failure context.
3204 if (!ha
->rsp_q_map
|| !ha
->rsp_q_map
[0])
3206 rsp
= ha
->rsp_q_map
[0];
3208 if (ha
->flags
.msix_enabled
)
3209 qla24xx_disable_msix(ha
);
3210 else if (ha
->flags
.msi_enabled
) {
3211 free_irq(ha
->pdev
->irq
, rsp
);
3212 pci_disable_msi(ha
->pdev
);
3214 free_irq(ha
->pdev
->irq
, rsp
);
3218 int qla25xx_request_irq(struct rsp_que
*rsp
)
3220 struct qla_hw_data
*ha
= rsp
->hw
;
3221 struct qla_init_msix_entry
*intr
= &msix_entries
[2];
3222 struct qla_msix_entry
*msix
= rsp
->msix
;
3223 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
3226 ret
= request_irq(msix
->vector
, intr
->handler
, 0, intr
->name
, rsp
);
3228 ql_log(ql_log_fatal
, vha
, 0x00e6,
3229 "MSI-X: Unable to register handler -- %x/%d.\n",