2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2010 QLogic Corporation
5 * See LICENSE.qla4xxx for copyright and licensing details.
11 #include "ql4_inline.h"
14 * qla4xxx_copy_sense - copy sense data into cmd sense buffer
15 * @ha: Pointer to host adapter structure.
16 * @sts_entry: Pointer to status entry structure.
17 * @srb: Pointer to srb structure.
19 static void qla4xxx_copy_sense(struct scsi_qla_host
*ha
,
20 struct status_entry
*sts_entry
,
23 struct scsi_cmnd
*cmd
= srb
->cmd
;
26 memset(cmd
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
27 sense_len
= le16_to_cpu(sts_entry
->senseDataByteCnt
);
29 DEBUG2(ql4_printk(KERN_INFO
, ha
, "scsi%ld:%d:%d:%d: %s:"
30 " sense len 0\n", ha
->host_no
,
31 cmd
->device
->channel
, cmd
->device
->id
,
32 cmd
->device
->lun
, __func__
));
33 ha
->status_srb
= NULL
;
36 /* Save total available sense length,
37 * not to exceed cmd's sense buffer size */
38 sense_len
= min_t(uint16_t, sense_len
, SCSI_SENSE_BUFFERSIZE
);
39 srb
->req_sense_ptr
= cmd
->sense_buffer
;
40 srb
->req_sense_len
= sense_len
;
42 /* Copy sense from sts_entry pkt */
43 sense_len
= min_t(uint16_t, sense_len
, IOCB_MAX_SENSEDATA_LEN
);
44 memcpy(cmd
->sense_buffer
, sts_entry
->senseData
, sense_len
);
46 DEBUG2(printk(KERN_INFO
"scsi%ld:%d:%d:%d: %s: sense key = %x, "
47 "ASL= %02x, ASC/ASCQ = %02x/%02x\n", ha
->host_no
,
48 cmd
->device
->channel
, cmd
->device
->id
,
49 cmd
->device
->lun
, __func__
,
50 sts_entry
->senseData
[2] & 0x0f,
51 sts_entry
->senseData
[7],
52 sts_entry
->senseData
[12],
53 sts_entry
->senseData
[13]));
55 DEBUG5(qla4xxx_dump_buffer(cmd
->sense_buffer
, sense_len
));
56 srb
->flags
|= SRB_GOT_SENSE
;
58 /* Update srb, in case a sts_cont pkt follows */
59 srb
->req_sense_ptr
+= sense_len
;
60 srb
->req_sense_len
-= sense_len
;
61 if (srb
->req_sense_len
!= 0)
64 ha
->status_srb
= NULL
;
68 * qla4xxx_status_cont_entry - Process a Status Continuations entry.
69 * @ha: SCSI driver HA context
70 * @sts_cont: Entry pointer
72 * Extended sense data.
75 qla4xxx_status_cont_entry(struct scsi_qla_host
*ha
,
76 struct status_cont_entry
*sts_cont
)
78 struct srb
*srb
= ha
->status_srb
;
79 struct scsi_cmnd
*cmd
;
87 DEBUG2(printk(KERN_INFO
"scsi%ld: %s: Cmd already returned "
88 "back to OS srb=%p srb->state:%d\n", ha
->host_no
,
89 __func__
, srb
, srb
->state
));
90 ha
->status_srb
= NULL
;
94 /* Copy sense data. */
95 sense_len
= min_t(uint16_t, srb
->req_sense_len
,
96 IOCB_MAX_EXT_SENSEDATA_LEN
);
97 memcpy(srb
->req_sense_ptr
, sts_cont
->ext_sense_data
, sense_len
);
98 DEBUG5(qla4xxx_dump_buffer(srb
->req_sense_ptr
, sense_len
));
100 srb
->req_sense_ptr
+= sense_len
;
101 srb
->req_sense_len
-= sense_len
;
103 /* Place command on done queue. */
104 if (srb
->req_sense_len
== 0) {
105 kref_put(&srb
->srb_ref
, qla4xxx_srb_compl
);
106 ha
->status_srb
= NULL
;
111 * qla4xxx_status_entry - processes status IOCBs
112 * @ha: Pointer to host adapter structure.
113 * @sts_entry: Pointer to status entry structure.
115 static void qla4xxx_status_entry(struct scsi_qla_host
*ha
,
116 struct status_entry
*sts_entry
)
119 struct scsi_cmnd
*cmd
;
121 struct ddb_entry
*ddb_entry
;
124 srb
= qla4xxx_del_from_active_array(ha
, le32_to_cpu(sts_entry
->handle
));
126 ql4_printk(KERN_WARNING
, ha
, "%s invalid status entry: "
127 "handle=0x%0x, srb=%p\n", __func__
,
128 sts_entry
->handle
, srb
);
130 set_bit(DPC_RESET_HA_FW_CONTEXT
, &ha
->dpc_flags
);
132 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
138 DEBUG2(printk("scsi%ld: %s: Command already returned back to "
139 "OS pkt->handle=%d srb=%p srb->state:%d\n",
140 ha
->host_no
, __func__
, sts_entry
->handle
,
142 ql4_printk(KERN_WARNING
, ha
, "Command is NULL:"
143 " already returned to OS (srb=%p)\n", srb
);
147 ddb_entry
= srb
->ddb
;
148 if (ddb_entry
== NULL
) {
149 cmd
->result
= DID_NO_CONNECT
<< 16;
150 goto status_entry_exit
;
153 residual
= le32_to_cpu(sts_entry
->residualByteCnt
);
155 /* Translate ISP error to a Linux SCSI error. */
156 scsi_status
= sts_entry
->scsiStatus
;
157 switch (sts_entry
->completionStatus
) {
160 if (sts_entry
->iscsiFlags
& ISCSI_FLAG_RESIDUAL_OVER
) {
161 cmd
->result
= DID_ERROR
<< 16;
165 if (sts_entry
->iscsiFlags
&ISCSI_FLAG_RESIDUAL_UNDER
) {
166 scsi_set_resid(cmd
, residual
);
167 if (!scsi_status
&& ((scsi_bufflen(cmd
) - residual
) <
170 cmd
->result
= DID_ERROR
<< 16;
172 DEBUG2(printk("scsi%ld:%d:%d:%d: %s: "
173 "Mid-layer Data underrun0, "
175 "residual = 0x%x\n", ha
->host_no
,
176 cmd
->device
->channel
,
178 cmd
->device
->lun
, __func__
,
179 scsi_bufflen(cmd
), residual
));
184 cmd
->result
= DID_OK
<< 16 | scsi_status
;
186 if (scsi_status
!= SCSI_CHECK_CONDITION
)
189 /* Copy Sense Data into sense buffer. */
190 qla4xxx_copy_sense(ha
, sts_entry
, srb
);
194 /* Always set the status to DID_ERROR, since
195 * all conditions result in that status anyway */
196 cmd
->result
= DID_ERROR
<< 16;
199 case SCS_RESET_OCCURRED
:
200 DEBUG2(printk("scsi%ld:%d:%d:%d: %s: Device RESET occurred\n",
201 ha
->host_no
, cmd
->device
->channel
,
202 cmd
->device
->id
, cmd
->device
->lun
, __func__
));
204 cmd
->result
= DID_RESET
<< 16;
208 DEBUG2(printk("scsi%ld:%d:%d:%d: %s: Abort occurred\n",
209 ha
->host_no
, cmd
->device
->channel
,
210 cmd
->device
->id
, cmd
->device
->lun
, __func__
));
212 cmd
->result
= DID_RESET
<< 16;
216 DEBUG2(printk(KERN_INFO
"scsi%ld:%d:%d:%d: Timeout\n",
217 ha
->host_no
, cmd
->device
->channel
,
218 cmd
->device
->id
, cmd
->device
->lun
));
220 cmd
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
223 * Mark device missing so that we won't continue to send
224 * I/O to this device. We should get a ddb state change
227 if (iscsi_is_session_online(ddb_entry
->sess
))
228 qla4xxx_mark_device_missing(ddb_entry
->sess
);
231 case SCS_DATA_UNDERRUN
:
232 case SCS_DATA_OVERRUN
:
233 if ((sts_entry
->iscsiFlags
& ISCSI_FLAG_RESIDUAL_OVER
) ||
234 (sts_entry
->completionStatus
== SCS_DATA_OVERRUN
)) {
235 DEBUG2(printk("scsi%ld:%d:%d:%d: %s: " "Data overrun\n",
237 cmd
->device
->channel
, cmd
->device
->id
,
238 cmd
->device
->lun
, __func__
));
240 cmd
->result
= DID_ERROR
<< 16;
244 scsi_set_resid(cmd
, residual
);
247 * If there is scsi_status, it takes precedense over
248 * underflow condition.
250 if (scsi_status
!= 0) {
251 cmd
->result
= DID_OK
<< 16 | scsi_status
;
253 if (scsi_status
!= SCSI_CHECK_CONDITION
)
256 /* Copy Sense Data into sense buffer. */
257 qla4xxx_copy_sense(ha
, sts_entry
, srb
);
260 * If RISC reports underrun and target does not
261 * report it then we must have a lost frame, so
262 * tell upper layer to retry it by reporting a
265 if ((sts_entry
->iscsiFlags
&
266 ISCSI_FLAG_RESIDUAL_UNDER
) == 0) {
267 cmd
->result
= DID_BUS_BUSY
<< 16;
268 } else if ((scsi_bufflen(cmd
) - residual
) <
271 * Handle mid-layer underflow???
273 * For kernels less than 2.4, the driver must
274 * return an error if an underflow is detected.
275 * For kernels equal-to and above 2.4, the
276 * mid-layer will appearantly handle the
277 * underflow by detecting the residual count --
278 * unfortunately, we do not see where this is
279 * actually being done. In the interim, we
280 * will return DID_ERROR.
282 DEBUG2(printk("scsi%ld:%d:%d:%d: %s: "
283 "Mid-layer Data underrun1, "
285 "residual = 0x%x\n", ha
->host_no
,
286 cmd
->device
->channel
,
288 cmd
->device
->lun
, __func__
,
289 scsi_bufflen(cmd
), residual
));
291 cmd
->result
= DID_ERROR
<< 16;
293 cmd
->result
= DID_OK
<< 16;
298 case SCS_DEVICE_LOGGED_OUT
:
299 case SCS_DEVICE_UNAVAILABLE
:
300 DEBUG2(printk(KERN_INFO
"scsi%ld:%d:%d:%d: SCS_DEVICE "
301 "state: 0x%x\n", ha
->host_no
,
302 cmd
->device
->channel
, cmd
->device
->id
,
303 cmd
->device
->lun
, sts_entry
->completionStatus
));
305 * Mark device missing so that we won't continue to
306 * send I/O to this device. We should get a ddb
307 * state change AEN soon.
309 if (iscsi_is_session_online(ddb_entry
->sess
))
310 qla4xxx_mark_device_missing(ddb_entry
->sess
);
312 cmd
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
317 * SCSI Mid-Layer handles device queue full
319 cmd
->result
= DID_OK
<< 16 | sts_entry
->scsiStatus
;
320 DEBUG2(printk("scsi%ld:%d:%d: %s: QUEUE FULL detected "
321 "compl=%02x, scsi=%02x, state=%02x, iFlags=%02x,"
322 " iResp=%02x\n", ha
->host_no
, cmd
->device
->id
,
323 cmd
->device
->lun
, __func__
,
324 sts_entry
->completionStatus
,
325 sts_entry
->scsiStatus
, sts_entry
->state_flags
,
326 sts_entry
->iscsiFlags
,
327 sts_entry
->iscsiResponse
));
331 cmd
->result
= DID_ERROR
<< 16;
337 /* complete the request, if not waiting for status_continuation pkt */
338 srb
->cc_stat
= sts_entry
->completionStatus
;
339 if (ha
->status_srb
== NULL
)
340 kref_put(&srb
->srb_ref
, qla4xxx_srb_compl
);
344 * qla4xxx_passthru_status_entry - processes passthru status IOCBs (0x3C)
345 * @ha: Pointer to host adapter structure.
346 * @sts_entry: Pointer to status entry structure.
348 static void qla4xxx_passthru_status_entry(struct scsi_qla_host
*ha
,
349 struct passthru_status
*sts_entry
)
351 struct iscsi_task
*task
;
352 struct ddb_entry
*ddb_entry
;
353 struct ql4_task_data
*task_data
;
354 struct iscsi_cls_conn
*cls_conn
;
355 struct iscsi_conn
*conn
;
357 uint32_t fw_ddb_index
;
359 itt
= sts_entry
->handle
;
360 fw_ddb_index
= le32_to_cpu(sts_entry
->target
);
362 ddb_entry
= qla4xxx_lookup_ddb_by_fw_index(ha
, fw_ddb_index
);
364 if (ddb_entry
== NULL
) {
365 ql4_printk(KERN_ERR
, ha
, "%s: Invalid target index = 0x%x\n",
366 __func__
, sts_entry
->target
);
370 cls_conn
= ddb_entry
->conn
;
371 conn
= cls_conn
->dd_data
;
372 spin_lock(&conn
->session
->lock
);
373 task
= iscsi_itt_to_task(conn
, itt
);
374 spin_unlock(&conn
->session
->lock
);
377 ql4_printk(KERN_ERR
, ha
, "%s: Task is NULL\n", __func__
);
381 task_data
= task
->dd_data
;
382 memcpy(&task_data
->sts
, sts_entry
, sizeof(struct passthru_status
));
383 ha
->req_q_count
+= task_data
->iocb_req_cnt
;
384 ha
->iocb_cnt
-= task_data
->iocb_req_cnt
;
385 queue_work(ha
->task_wq
, &task_data
->task_work
);
389 * qla4xxx_process_response_queue - process response queue completions
390 * @ha: Pointer to host adapter structure.
392 * This routine process response queue completions in interrupt context.
393 * Hardware_lock locked upon entry
395 void qla4xxx_process_response_queue(struct scsi_qla_host
*ha
)
398 struct srb
*srb
= NULL
;
399 struct status_entry
*sts_entry
;
401 /* Process all responses from response queue */
402 while ((ha
->response_ptr
->signature
!= RESPONSE_PROCESSED
)) {
403 sts_entry
= (struct status_entry
*) ha
->response_ptr
;
406 /* Advance pointers for next entry */
407 if (ha
->response_out
== (RESPONSE_QUEUE_DEPTH
- 1)) {
408 ha
->response_out
= 0;
409 ha
->response_ptr
= ha
->response_ring
;
416 switch (sts_entry
->hdr
.entryType
) {
419 qla4xxx_status_entry(ha
, sts_entry
);
422 case ET_PASSTHRU_STATUS
:
423 if (sts_entry
->hdr
.systemDefined
== SD_ISCSI_PDU
)
424 qla4xxx_passthru_status_entry(ha
,
425 (struct passthru_status
*)sts_entry
);
427 ql4_printk(KERN_ERR
, ha
,
428 "%s: Invalid status received\n",
433 case ET_STATUS_CONTINUATION
:
434 qla4xxx_status_cont_entry(ha
,
435 (struct status_cont_entry
*) sts_entry
);
439 /* ISP device queue is full. Command not
440 * accepted by ISP. Queue command for
443 srb
= qla4xxx_del_from_active_array(ha
,
444 le32_to_cpu(sts_entry
->
447 goto exit_prq_invalid_handle
;
449 DEBUG2(printk("scsi%ld: %s: FW device queue full, "
450 "srb %p\n", ha
->host_no
, __func__
, srb
));
452 /* ETRY normally by sending it back with
454 srb
->cmd
->result
= DID_BUS_BUSY
<< 16;
455 kref_put(&srb
->srb_ref
, qla4xxx_srb_compl
);
459 /* Just throw away the continuation entries */
460 DEBUG2(printk("scsi%ld: %s: Continuation entry - "
461 "ignoring\n", ha
->host_no
, __func__
));
466 * Invalid entry in response queue, reset RISC
469 DEBUG2(printk("scsi%ld: %s: Invalid entry %x in "
470 "response queue \n", ha
->host_no
,
472 sts_entry
->hdr
.entryType
));
475 ((struct response
*)sts_entry
)->signature
= RESPONSE_PROCESSED
;
480 * Tell ISP we're done with response(s). This also clears the interrupt.
482 ha
->isp_ops
->complete_iocb(ha
);
486 exit_prq_invalid_handle
:
487 DEBUG2(printk("scsi%ld: %s: Invalid handle(srb)=%p type=%x IOCS=%x\n",
488 ha
->host_no
, __func__
, srb
, sts_entry
->hdr
.entryType
,
489 sts_entry
->completionStatus
));
492 ha
->isp_ops
->complete_iocb(ha
);
493 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
497 * qla4xxx_isr_decode_mailbox - decodes mailbox status
498 * @ha: Pointer to host adapter structure.
499 * @mailbox_status: Mailbox status.
501 * This routine decodes the mailbox status during the ISR.
502 * Hardware_lock locked upon entry. runs in interrupt context.
504 static void qla4xxx_isr_decode_mailbox(struct scsi_qla_host
* ha
,
505 uint32_t mbox_status
)
508 uint32_t mbox_sts
[MBOX_AEN_REG_COUNT
];
510 if ((mbox_status
== MBOX_STS_BUSY
) ||
511 (mbox_status
== MBOX_STS_INTERMEDIATE_COMPLETION
) ||
512 (mbox_status
>> 12 == MBOX_COMPLETION_STATUS
)) {
513 ha
->mbox_status
[0] = mbox_status
;
515 if (test_bit(AF_MBOX_COMMAND
, &ha
->flags
)) {
517 * Copy all mailbox registers to a temporary
518 * location and set mailbox command done flag
520 for (i
= 0; i
< ha
->mbox_status_count
; i
++)
521 ha
->mbox_status
[i
] = is_qla8022(ha
)
522 ? readl(&ha
->qla4_8xxx_reg
->mailbox_out
[i
])
523 : readl(&ha
->reg
->mailbox
[i
]);
525 set_bit(AF_MBOX_COMMAND_DONE
, &ha
->flags
);
527 if (test_bit(AF_MBOX_COMMAND_NOPOLL
, &ha
->flags
))
528 complete(&ha
->mbx_intr_comp
);
530 } else if (mbox_status
>> 12 == MBOX_ASYNC_EVENT_STATUS
) {
531 for (i
= 0; i
< MBOX_AEN_REG_COUNT
; i
++)
532 mbox_sts
[i
] = is_qla8022(ha
)
533 ? readl(&ha
->qla4_8xxx_reg
->mailbox_out
[i
])
534 : readl(&ha
->reg
->mailbox
[i
]);
536 /* Immediately process the AENs that don't require much work.
537 * Only queue the database_changed AENs */
538 if (ha
->aen_log
.count
< MAX_AEN_ENTRIES
) {
539 for (i
= 0; i
< MBOX_AEN_REG_COUNT
; i
++)
540 ha
->aen_log
.entry
[ha
->aen_log
.count
].mbox_sts
[i
] =
544 switch (mbox_status
) {
545 case MBOX_ASTS_SYSTEM_ERROR
:
546 /* Log Mailbox registers */
547 ql4_printk(KERN_INFO
, ha
, "%s: System Err\n", __func__
);
548 qla4xxx_dump_registers(ha
);
550 if (ql4xdontresethba
) {
551 DEBUG2(printk("scsi%ld: %s:Don't Reset HBA\n",
552 ha
->host_no
, __func__
));
554 set_bit(AF_GET_CRASH_RECORD
, &ha
->flags
);
555 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
559 case MBOX_ASTS_REQUEST_TRANSFER_ERROR
:
560 case MBOX_ASTS_RESPONSE_TRANSFER_ERROR
:
561 case MBOX_ASTS_NVRAM_INVALID
:
562 case MBOX_ASTS_IP_ADDRESS_CHANGED
:
563 case MBOX_ASTS_DHCP_LEASE_EXPIRED
:
564 DEBUG2(printk("scsi%ld: AEN %04x, ERROR Status, "
565 "Reset HA\n", ha
->host_no
, mbox_status
));
567 set_bit(DPC_RESET_HA_FW_CONTEXT
,
570 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
573 case MBOX_ASTS_LINK_UP
:
574 set_bit(AF_LINK_UP
, &ha
->flags
);
575 if (test_bit(AF_INIT_DONE
, &ha
->flags
))
576 set_bit(DPC_LINK_CHANGED
, &ha
->dpc_flags
);
578 ql4_printk(KERN_INFO
, ha
, "%s: LINK UP\n", __func__
);
581 case MBOX_ASTS_LINK_DOWN
:
582 clear_bit(AF_LINK_UP
, &ha
->flags
);
583 if (test_bit(AF_INIT_DONE
, &ha
->flags
))
584 set_bit(DPC_LINK_CHANGED
, &ha
->dpc_flags
);
586 ql4_printk(KERN_INFO
, ha
, "%s: LINK DOWN\n", __func__
);
589 case MBOX_ASTS_HEARTBEAT
:
590 ha
->seconds_since_last_heartbeat
= 0;
593 case MBOX_ASTS_DHCP_LEASE_ACQUIRED
:
594 DEBUG2(printk("scsi%ld: AEN %04x DHCP LEASE "
595 "ACQUIRED\n", ha
->host_no
, mbox_status
));
596 set_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
);
599 case MBOX_ASTS_PROTOCOL_STATISTIC_ALARM
:
600 case MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED
: /* Target
603 case MBOX_ASTS_UNSOLICITED_PDU_RECEIVED
: /* Connection mode */
604 case MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR
:
605 case MBOX_ASTS_SUBNET_STATE_CHANGE
:
606 case MBOX_ASTS_DUPLICATE_IP
:
608 DEBUG2(printk("scsi%ld: AEN %04x\n", ha
->host_no
,
612 case MBOX_ASTS_IP_ADDR_STATE_CHANGED
:
613 printk("scsi%ld: AEN %04x, mbox_sts[2]=%04x, "
614 "mbox_sts[3]=%04x\n", ha
->host_no
, mbox_sts
[0],
615 mbox_sts
[2], mbox_sts
[3]);
617 /* mbox_sts[2] = Old ACB state
618 * mbox_sts[3] = new ACB state */
619 if ((mbox_sts
[3] == ACB_STATE_VALID
) &&
620 ((mbox_sts
[2] == ACB_STATE_TENTATIVE
) ||
621 (mbox_sts
[2] == ACB_STATE_ACQUIRING
)))
622 set_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
);
623 else if ((mbox_sts
[3] == ACB_STATE_ACQUIRING
) &&
624 (mbox_sts
[2] == ACB_STATE_VALID
)) {
626 set_bit(DPC_RESET_HA_FW_CONTEXT
,
629 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
630 } else if ((mbox_sts
[3] == ACB_STATE_UNCONFIGURED
))
631 complete(&ha
->disable_acb_comp
);
634 case MBOX_ASTS_MAC_ADDRESS_CHANGED
:
637 DEBUG2(printk(KERN_INFO
"scsi%ld: AEN %04x, "
638 "mbox_sts[1]=%04x, mbox_sts[2]=%04x\n",
639 ha
->host_no
, mbox_sts
[0],
640 mbox_sts
[1], mbox_sts
[2]));
643 case MBOX_ASTS_SELF_TEST_FAILED
:
644 case MBOX_ASTS_LOGIN_FAILED
:
646 DEBUG2(printk("scsi%ld: AEN %04x, mbox_sts[1]=%04x, "
647 "mbox_sts[2]=%04x, mbox_sts[3]=%04x\n",
648 ha
->host_no
, mbox_sts
[0], mbox_sts
[1],
649 mbox_sts
[2], mbox_sts
[3]));
652 case MBOX_ASTS_DATABASE_CHANGED
:
653 /* Queue AEN information and process it in the DPC
655 if (ha
->aen_q_count
> 0) {
657 /* decrement available counter */
660 for (i
= 0; i
< MBOX_AEN_REG_COUNT
; i
++)
661 ha
->aen_q
[ha
->aen_in
].mbox_sts
[i
] =
664 /* print debug message */
665 DEBUG2(printk("scsi%ld: AEN[%d] %04x queued "
666 "mb1:0x%x mb2:0x%x mb3:0x%x "
667 "mb4:0x%x mb5:0x%x\n",
668 ha
->host_no
, ha
->aen_in
,
669 mbox_sts
[0], mbox_sts
[1],
670 mbox_sts
[2], mbox_sts
[3],
671 mbox_sts
[4], mbox_sts
[5]));
673 /* advance pointer */
675 if (ha
->aen_in
== MAX_AEN_ENTRIES
)
678 /* The DPC routine will process the aen */
679 set_bit(DPC_AEN
, &ha
->dpc_flags
);
681 DEBUG2(printk("scsi%ld: %s: aen %04x, queue "
682 "overflowed! AEN LOST!!\n",
683 ha
->host_no
, __func__
,
686 DEBUG2(printk("scsi%ld: DUMP AEN QUEUE\n",
689 for (i
= 0; i
< MAX_AEN_ENTRIES
; i
++) {
690 DEBUG2(printk("AEN[%d] %04x %04x %04x "
691 "%04x\n", i
, mbox_sts
[0],
692 mbox_sts
[1], mbox_sts
[2],
698 case MBOX_ASTS_TXSCVR_INSERTED
:
699 DEBUG2(printk(KERN_WARNING
700 "scsi%ld: AEN %04x Transceiver"
701 " inserted\n", ha
->host_no
, mbox_sts
[0]));
704 case MBOX_ASTS_TXSCVR_REMOVED
:
705 DEBUG2(printk(KERN_WARNING
706 "scsi%ld: AEN %04x Transceiver"
707 " removed\n", ha
->host_no
, mbox_sts
[0]));
711 DEBUG2(printk(KERN_WARNING
712 "scsi%ld: AEN %04x UNKNOWN\n",
713 ha
->host_no
, mbox_sts
[0]));
717 DEBUG2(printk("scsi%ld: Unknown mailbox status %08X\n",
718 ha
->host_no
, mbox_status
));
720 ha
->mbox_status
[0] = mbox_status
;
725 * qla4_8xxx_interrupt_service_routine - isr
726 * @ha: pointer to host adapter structure.
728 * This is the main interrupt service routine.
729 * hardware_lock locked upon entry. runs in interrupt context.
731 void qla4_8xxx_interrupt_service_routine(struct scsi_qla_host
*ha
,
732 uint32_t intr_status
)
734 /* Process response queue interrupt. */
735 if (intr_status
& HSRX_RISC_IOCB_INT
)
736 qla4xxx_process_response_queue(ha
);
738 /* Process mailbox/asynch event interrupt.*/
739 if (intr_status
& HSRX_RISC_MB_INT
)
740 qla4xxx_isr_decode_mailbox(ha
,
741 readl(&ha
->qla4_8xxx_reg
->mailbox_out
[0]));
743 /* clear the interrupt */
744 writel(0, &ha
->qla4_8xxx_reg
->host_int
);
745 readl(&ha
->qla4_8xxx_reg
->host_int
);
749 * qla4xxx_interrupt_service_routine - isr
750 * @ha: pointer to host adapter structure.
752 * This is the main interrupt service routine.
753 * hardware_lock locked upon entry. runs in interrupt context.
755 void qla4xxx_interrupt_service_routine(struct scsi_qla_host
* ha
,
756 uint32_t intr_status
)
758 /* Process response queue interrupt. */
759 if (intr_status
& CSR_SCSI_COMPLETION_INTR
)
760 qla4xxx_process_response_queue(ha
);
762 /* Process mailbox/asynch event interrupt.*/
763 if (intr_status
& CSR_SCSI_PROCESSOR_INTR
) {
764 qla4xxx_isr_decode_mailbox(ha
,
765 readl(&ha
->reg
->mailbox
[0]));
767 /* Clear Mailbox Interrupt */
768 writel(set_rmask(CSR_SCSI_PROCESSOR_INTR
),
769 &ha
->reg
->ctrl_status
);
770 readl(&ha
->reg
->ctrl_status
);
775 * qla4_8xxx_spurious_interrupt - processes spurious interrupt
776 * @ha: pointer to host adapter structure.
780 static void qla4_8xxx_spurious_interrupt(struct scsi_qla_host
*ha
,
786 DEBUG2(ql4_printk(KERN_INFO
, ha
, "Spurious Interrupt\n"));
787 if (is_qla8022(ha
)) {
788 writel(0, &ha
->qla4_8xxx_reg
->host_int
);
789 if (test_bit(AF_INTx_ENABLED
, &ha
->flags
))
790 qla4_8xxx_wr_32(ha
, ha
->nx_legacy_intr
.tgt_mask_reg
,
793 ha
->spurious_int_count
++;
797 * qla4xxx_intr_handler - hardware interrupt handler.
799 * @dev_id: Pointer to host adapter structure
801 irqreturn_t
qla4xxx_intr_handler(int irq
, void *dev_id
)
803 struct scsi_qla_host
*ha
;
804 uint32_t intr_status
;
805 unsigned long flags
= 0;
806 uint8_t reqs_count
= 0;
808 ha
= (struct scsi_qla_host
*) dev_id
;
810 DEBUG2(printk(KERN_INFO
811 "qla4xxx: Interrupt with NULL host ptr\n"));
815 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
819 * Repeatedly service interrupts up to a maximum of
820 * MAX_REQS_SERVICED_PER_INTR
824 * Read interrupt status
826 if (ha
->isp_ops
->rd_shdw_rsp_q_in(ha
) !=
828 intr_status
= CSR_SCSI_COMPLETION_INTR
;
830 intr_status
= readl(&ha
->reg
->ctrl_status
);
833 (CSR_SCSI_RESET_INTR
|CSR_FATAL_ERROR
|INTR_PENDING
)) == 0) {
835 ha
->spurious_int_count
++;
839 if (intr_status
& CSR_FATAL_ERROR
) {
840 DEBUG2(printk(KERN_INFO
"scsi%ld: Fatal Error, "
841 "Status 0x%04x\n", ha
->host_no
,
842 readl(isp_port_error_status (ha
))));
844 /* Issue Soft Reset to clear this error condition.
845 * This will prevent the RISC from repeatedly
846 * interrupting the driver; thus, allowing the DPC to
847 * get scheduled to continue error recovery.
848 * NOTE: Disabling RISC interrupts does not work in
849 * this case, as CSR_FATAL_ERROR overrides
850 * CSR_SCSI_INTR_ENABLE */
851 if ((readl(&ha
->reg
->ctrl_status
) &
852 CSR_SCSI_RESET_INTR
) == 0) {
853 writel(set_rmask(CSR_SOFT_RESET
),
854 &ha
->reg
->ctrl_status
);
855 readl(&ha
->reg
->ctrl_status
);
858 writel(set_rmask(CSR_FATAL_ERROR
),
859 &ha
->reg
->ctrl_status
);
860 readl(&ha
->reg
->ctrl_status
);
862 __qla4xxx_disable_intrs(ha
);
864 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
867 } else if (intr_status
& CSR_SCSI_RESET_INTR
) {
868 clear_bit(AF_ONLINE
, &ha
->flags
);
869 __qla4xxx_disable_intrs(ha
);
871 writel(set_rmask(CSR_SCSI_RESET_INTR
),
872 &ha
->reg
->ctrl_status
);
873 readl(&ha
->reg
->ctrl_status
);
875 if (!test_bit(AF_HA_REMOVAL
, &ha
->flags
))
876 set_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
);
879 } else if (intr_status
& INTR_PENDING
) {
880 ha
->isp_ops
->interrupt_service_routine(ha
, intr_status
);
881 ha
->total_io_count
++;
882 if (++reqs_count
== MAX_REQS_SERVICED_PER_INTR
)
887 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
893 * qla4_8xxx_intr_handler - hardware interrupt handler.
895 * @dev_id: Pointer to host adapter structure
897 irqreturn_t
qla4_8xxx_intr_handler(int irq
, void *dev_id
)
899 struct scsi_qla_host
*ha
= dev_id
;
900 uint32_t intr_status
;
902 unsigned long flags
= 0;
903 uint8_t reqs_count
= 0;
905 if (unlikely(pci_channel_offline(ha
->pdev
)))
909 status
= qla4_8xxx_rd_32(ha
, ISR_INT_VECTOR
);
910 if (!(status
& ha
->nx_legacy_intr
.int_vec_bit
))
913 status
= qla4_8xxx_rd_32(ha
, ISR_INT_STATE_REG
);
914 if (!ISR_IS_LEGACY_INTR_TRIGGERED(status
)) {
915 DEBUG2(ql4_printk(KERN_INFO
, ha
,
916 "%s legacy Int not triggered\n", __func__
));
920 /* clear the interrupt */
921 qla4_8xxx_wr_32(ha
, ha
->nx_legacy_intr
.tgt_status_reg
, 0xffffffff);
923 /* read twice to ensure write is flushed */
924 qla4_8xxx_rd_32(ha
, ISR_INT_VECTOR
);
925 qla4_8xxx_rd_32(ha
, ISR_INT_VECTOR
);
927 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
929 if (!(readl(&ha
->qla4_8xxx_reg
->host_int
) &
930 ISRX_82XX_RISC_INT
)) {
931 qla4_8xxx_spurious_interrupt(ha
, reqs_count
);
934 intr_status
= readl(&ha
->qla4_8xxx_reg
->host_status
);
936 (HSRX_RISC_MB_INT
| HSRX_RISC_IOCB_INT
)) == 0) {
937 qla4_8xxx_spurious_interrupt(ha
, reqs_count
);
941 ha
->isp_ops
->interrupt_service_routine(ha
, intr_status
);
943 /* Enable Interrupt */
944 qla4_8xxx_wr_32(ha
, ha
->nx_legacy_intr
.tgt_mask_reg
, 0xfbff);
946 if (++reqs_count
== MAX_REQS_SERVICED_PER_INTR
)
950 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
955 qla4_8xxx_msi_handler(int irq
, void *dev_id
)
957 struct scsi_qla_host
*ha
;
959 ha
= (struct scsi_qla_host
*) dev_id
;
961 DEBUG2(printk(KERN_INFO
962 "qla4xxx: MSIX: Interrupt with NULL host ptr\n"));
967 /* clear the interrupt */
968 qla4_8xxx_wr_32(ha
, ha
->nx_legacy_intr
.tgt_status_reg
, 0xffffffff);
970 /* read twice to ensure write is flushed */
971 qla4_8xxx_rd_32(ha
, ISR_INT_VECTOR
);
972 qla4_8xxx_rd_32(ha
, ISR_INT_VECTOR
);
974 return qla4_8xxx_default_intr_handler(irq
, dev_id
);
978 * qla4_8xxx_default_intr_handler - hardware interrupt handler.
980 * @dev_id: Pointer to host adapter structure
982 * This interrupt handler is called directly for MSI-X, and
983 * called indirectly for MSI.
986 qla4_8xxx_default_intr_handler(int irq
, void *dev_id
)
988 struct scsi_qla_host
*ha
= dev_id
;
990 uint32_t intr_status
;
991 uint8_t reqs_count
= 0;
993 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
995 if (!(readl(&ha
->qla4_8xxx_reg
->host_int
) &
996 ISRX_82XX_RISC_INT
)) {
997 qla4_8xxx_spurious_interrupt(ha
, reqs_count
);
1001 intr_status
= readl(&ha
->qla4_8xxx_reg
->host_status
);
1003 (HSRX_RISC_MB_INT
| HSRX_RISC_IOCB_INT
)) == 0) {
1004 qla4_8xxx_spurious_interrupt(ha
, reqs_count
);
1008 ha
->isp_ops
->interrupt_service_routine(ha
, intr_status
);
1010 if (++reqs_count
== MAX_REQS_SERVICED_PER_INTR
)
1015 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1020 qla4_8xxx_msix_rsp_q(int irq
, void *dev_id
)
1022 struct scsi_qla_host
*ha
= dev_id
;
1023 unsigned long flags
;
1025 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1026 qla4xxx_process_response_queue(ha
);
1027 writel(0, &ha
->qla4_8xxx_reg
->host_int
);
1028 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1035 * qla4xxx_process_aen - processes AENs generated by firmware
1036 * @ha: pointer to host adapter structure.
1037 * @process_aen: type of AENs to process
1039 * Processes specific types of Asynchronous Events generated by firmware.
1040 * The type of AENs to process is specified by process_aen and can be
1041 * PROCESS_ALL_AENS 0
1042 * FLUSH_DDB_CHANGED_AENS 1
1043 * RELOGIN_DDB_CHANGED_AENS 2
1045 void qla4xxx_process_aen(struct scsi_qla_host
* ha
, uint8_t process_aen
)
1047 uint32_t mbox_sts
[MBOX_AEN_REG_COUNT
];
1050 unsigned long flags
;
1052 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1053 while (ha
->aen_out
!= ha
->aen_in
) {
1054 aen
= &ha
->aen_q
[ha
->aen_out
];
1055 /* copy aen information to local structure */
1056 for (i
= 0; i
< MBOX_AEN_REG_COUNT
; i
++)
1057 mbox_sts
[i
] = aen
->mbox_sts
[i
];
1062 if (ha
->aen_out
== MAX_AEN_ENTRIES
)
1065 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1067 DEBUG2(printk("qla4xxx(%ld): AEN[%d]=0x%08x, mbx1=0x%08x mbx2=0x%08x"
1068 " mbx3=0x%08x mbx4=0x%08x\n", ha
->host_no
,
1069 (ha
->aen_out
? (ha
->aen_out
-1): (MAX_AEN_ENTRIES
-1)),
1070 mbox_sts
[0], mbox_sts
[1], mbox_sts
[2],
1071 mbox_sts
[3], mbox_sts
[4]));
1073 switch (mbox_sts
[0]) {
1074 case MBOX_ASTS_DATABASE_CHANGED
:
1075 switch (process_aen
) {
1076 case FLUSH_DDB_CHANGED_AENS
:
1077 DEBUG2(printk("scsi%ld: AEN[%d] %04x, index "
1078 "[%d] state=%04x FLUSHED!\n",
1079 ha
->host_no
, ha
->aen_out
,
1080 mbox_sts
[0], mbox_sts
[2],
1083 case PROCESS_ALL_AENS
:
1085 /* Specific device. */
1086 if (mbox_sts
[1] == 1)
1087 qla4xxx_process_ddb_changed(ha
,
1088 mbox_sts
[2], mbox_sts
[3],
1093 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1095 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1098 int qla4xxx_request_irqs(struct scsi_qla_host
*ha
)
1102 if (!is_qla8022(ha
))
1105 if (ql4xenablemsix
== 2)
1108 if (ql4xenablemsix
== 0 || ql4xenablemsix
!= 1)
1112 ret
= qla4_8xxx_enable_msix(ha
);
1114 DEBUG2(ql4_printk(KERN_INFO
, ha
,
1115 "MSI-X: Enabled (0x%X).\n", ha
->revision_id
));
1119 ql4_printk(KERN_WARNING
, ha
,
1120 "MSI-X: Falling back-to MSI mode -- %d.\n", ret
);
1124 ret
= pci_enable_msi(ha
->pdev
);
1126 ret
= request_irq(ha
->pdev
->irq
, qla4_8xxx_msi_handler
,
1127 0, DRIVER_NAME
, ha
);
1129 DEBUG2(ql4_printk(KERN_INFO
, ha
, "MSI: Enabled.\n"));
1130 set_bit(AF_MSI_ENABLED
, &ha
->flags
);
1133 ql4_printk(KERN_WARNING
, ha
,
1134 "MSI: Failed to reserve interrupt %d "
1135 "already in use.\n", ha
->pdev
->irq
);
1136 pci_disable_msi(ha
->pdev
);
1139 ql4_printk(KERN_WARNING
, ha
,
1140 "MSI: Falling back-to INTx mode -- %d.\n", ret
);
1144 ret
= request_irq(ha
->pdev
->irq
, ha
->isp_ops
->intr_handler
,
1145 IRQF_SHARED
, DRIVER_NAME
, ha
);
1147 DEBUG2(ql4_printk(KERN_INFO
, ha
, "INTx: Enabled.\n"));
1148 set_bit(AF_INTx_ENABLED
, &ha
->flags
);
1152 ql4_printk(KERN_WARNING
, ha
,
1153 "INTx: Failed to reserve interrupt %d already in"
1154 " use.\n", ha
->pdev
->irq
);
1159 set_bit(AF_IRQ_ATTACHED
, &ha
->flags
);
1160 ha
->host
->irq
= ha
->pdev
->irq
;
1161 ql4_printk(KERN_INFO
, ha
, "%s: irq %d attached\n",
1162 __func__
, ha
->pdev
->irq
);
1166 void qla4xxx_free_irqs(struct scsi_qla_host
*ha
)
1168 if (test_bit(AF_MSIX_ENABLED
, &ha
->flags
))
1169 qla4_8xxx_disable_msix(ha
);
1170 else if (test_and_clear_bit(AF_MSI_ENABLED
, &ha
->flags
)) {
1171 free_irq(ha
->pdev
->irq
, ha
);
1172 pci_disable_msi(ha
->pdev
);
1173 } else if (test_and_clear_bit(AF_INTx_ENABLED
, &ha
->flags
))
1174 free_irq(ha
->pdev
->irq
, ha
);