2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2006 QLogic Corporation
5 * See LICENSE.qla4xxx for copyright and licensing details.
7 #include <linux/moduleparam.h>
9 #include <scsi/scsi_tcq.h>
10 #include <scsi/scsicam.h>
13 #include "ql4_version.h"
16 #include "ql4_inline.h"
21 static char qla4xxx_version_str
[40];
24 * SRB allocation cache
26 static struct kmem_cache
*srb_cachep
;
29 * Module parameter information and variables
31 int ql4xdiscoverywait
= 60;
32 module_param(ql4xdiscoverywait
, int, S_IRUGO
| S_IRUSR
);
33 MODULE_PARM_DESC(ql4xdiscoverywait
, "Discovery wait time");
34 int ql4xdontresethba
= 0;
35 module_param(ql4xdontresethba
, int, S_IRUGO
| S_IRUSR
);
36 MODULE_PARM_DESC(ql4xdontresethba
,
37 "Dont reset the HBA when the driver gets 0x8002 AEN "
38 " default it will reset hba :0"
39 " set to 1 to avoid resetting HBA");
41 int ql4xextended_error_logging
= 0; /* 0 = off, 1 = log errors */
42 module_param(ql4xextended_error_logging
, int, S_IRUGO
| S_IRUSR
);
43 MODULE_PARM_DESC(ql4xextended_error_logging
,
44 "Option to enable extended error logging, "
45 "Default is 0 - no logging, 1 - debug logging");
47 int ql4_mod_unload
= 0;
50 * SCSI host template entry points
52 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
);
55 * iSCSI template entry points
57 static int qla4xxx_tgt_dscvr(struct Scsi_Host
*shost
,
58 enum iscsi_tgt_dscvr type
, uint32_t enable
,
59 struct sockaddr
*dst_addr
);
60 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*conn
,
61 enum iscsi_param param
, char *buf
);
62 static int qla4xxx_sess_get_param(struct iscsi_cls_session
*sess
,
63 enum iscsi_param param
, char *buf
);
64 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
65 enum iscsi_host_param param
, char *buf
);
66 static void qla4xxx_recovery_timedout(struct iscsi_cls_session
*session
);
69 * SCSI host template entry points
71 static int qla4xxx_queuecommand(struct scsi_cmnd
*cmd
,
72 void (*done
) (struct scsi_cmnd
*));
73 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
);
74 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
);
75 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
);
76 static int qla4xxx_slave_alloc(struct scsi_device
*device
);
77 static int qla4xxx_slave_configure(struct scsi_device
*device
);
78 static void qla4xxx_slave_destroy(struct scsi_device
*sdev
);
79 static void qla4xxx_scan_start(struct Scsi_Host
*shost
);
81 static struct scsi_host_template qla4xxx_driver_template
= {
82 .module
= THIS_MODULE
,
84 .proc_name
= DRIVER_NAME
,
85 .queuecommand
= qla4xxx_queuecommand
,
87 .eh_device_reset_handler
= qla4xxx_eh_device_reset
,
88 .eh_target_reset_handler
= qla4xxx_eh_target_reset
,
89 .eh_host_reset_handler
= qla4xxx_eh_host_reset
,
91 .slave_configure
= qla4xxx_slave_configure
,
92 .slave_alloc
= qla4xxx_slave_alloc
,
93 .slave_destroy
= qla4xxx_slave_destroy
,
95 .scan_finished
= iscsi_scan_finished
,
96 .scan_start
= qla4xxx_scan_start
,
100 .use_clustering
= ENABLE_CLUSTERING
,
101 .sg_tablesize
= SG_ALL
,
103 .max_sectors
= 0xFFFF,
106 static struct iscsi_transport qla4xxx_iscsi_transport
= {
107 .owner
= THIS_MODULE
,
109 .caps
= CAP_FW_DB
| CAP_SENDTARGETS_OFFLOAD
|
110 CAP_DATA_PATH_OFFLOAD
,
111 .param_mask
= ISCSI_CONN_PORT
| ISCSI_CONN_ADDRESS
|
112 ISCSI_TARGET_NAME
| ISCSI_TPGT
,
113 .host_param_mask
= ISCSI_HOST_HWADDRESS
|
114 ISCSI_HOST_IPADDRESS
|
115 ISCSI_HOST_INITIATOR_NAME
,
116 .sessiondata_size
= sizeof(struct ddb_entry
),
117 .host_template
= &qla4xxx_driver_template
,
119 .tgt_dscvr
= qla4xxx_tgt_dscvr
,
120 .get_conn_param
= qla4xxx_conn_get_param
,
121 .get_session_param
= qla4xxx_sess_get_param
,
122 .get_host_param
= qla4xxx_host_get_param
,
123 .session_recovery_timedout
= qla4xxx_recovery_timedout
,
126 static struct scsi_transport_template
*qla4xxx_scsi_transport
;
128 static void qla4xxx_recovery_timedout(struct iscsi_cls_session
*session
)
130 struct ddb_entry
*ddb_entry
= session
->dd_data
;
131 struct scsi_qla_host
*ha
= ddb_entry
->ha
;
133 if (atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
134 atomic_set(&ddb_entry
->state
, DDB_STATE_DEAD
);
136 DEBUG2(printk("scsi%ld: %s: index [%d] port down retry count "
137 "of (%d) secs exhausted, marking device DEAD.\n",
138 ha
->host_no
, __func__
, ddb_entry
->fw_ddb_index
,
139 ha
->port_down_retry_count
));
141 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine - dpc "
143 ha
->host_no
, __func__
, ha
->dpc_flags
));
144 queue_work(ha
->dpc_thread
, &ha
->dpc_work
);
148 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
149 enum iscsi_host_param param
, char *buf
)
151 struct scsi_qla_host
*ha
= to_qla_host(shost
);
155 case ISCSI_HOST_PARAM_HWADDRESS
:
156 len
= sysfs_format_mac(buf
, ha
->my_mac
, MAC_ADDR_LEN
);
158 case ISCSI_HOST_PARAM_IPADDRESS
:
159 len
= sprintf(buf
, "%d.%d.%d.%d\n", ha
->ip_address
[0],
160 ha
->ip_address
[1], ha
->ip_address
[2],
163 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
164 len
= sprintf(buf
, "%s\n", ha
->name_string
);
173 static int qla4xxx_sess_get_param(struct iscsi_cls_session
*sess
,
174 enum iscsi_param param
, char *buf
)
176 struct ddb_entry
*ddb_entry
= sess
->dd_data
;
180 case ISCSI_PARAM_TARGET_NAME
:
181 len
= snprintf(buf
, PAGE_SIZE
- 1, "%s\n",
182 ddb_entry
->iscsi_name
);
184 case ISCSI_PARAM_TPGT
:
185 len
= sprintf(buf
, "%u\n", ddb_entry
->tpgt
);
194 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*conn
,
195 enum iscsi_param param
, char *buf
)
197 struct iscsi_cls_session
*session
;
198 struct ddb_entry
*ddb_entry
;
201 session
= iscsi_dev_to_session(conn
->dev
.parent
);
202 ddb_entry
= session
->dd_data
;
205 case ISCSI_PARAM_CONN_PORT
:
206 len
= sprintf(buf
, "%hu\n", ddb_entry
->port
);
208 case ISCSI_PARAM_CONN_ADDRESS
:
209 /* TODO: what are the ipv6 bits */
210 len
= sprintf(buf
, "%u.%u.%u.%u\n",
211 NIPQUAD(ddb_entry
->ip_addr
));
220 static int qla4xxx_tgt_dscvr(struct Scsi_Host
*shost
,
221 enum iscsi_tgt_dscvr type
, uint32_t enable
,
222 struct sockaddr
*dst_addr
)
224 struct scsi_qla_host
*ha
;
225 struct sockaddr_in
*addr
;
226 struct sockaddr_in6
*addr6
;
229 ha
= (struct scsi_qla_host
*) shost
->hostdata
;
232 case ISCSI_TGT_DSCVR_SEND_TARGETS
:
233 if (dst_addr
->sa_family
== AF_INET
) {
234 addr
= (struct sockaddr_in
*)dst_addr
;
235 if (qla4xxx_send_tgts(ha
, (char *)&addr
->sin_addr
,
236 addr
->sin_port
) != QLA_SUCCESS
)
238 } else if (dst_addr
->sa_family
== AF_INET6
) {
240 * TODO: fix qla4xxx_send_tgts
242 addr6
= (struct sockaddr_in6
*)dst_addr
;
243 if (qla4xxx_send_tgts(ha
, (char *)&addr6
->sin6_addr
,
244 addr6
->sin6_port
) != QLA_SUCCESS
)
255 void qla4xxx_destroy_sess(struct ddb_entry
*ddb_entry
)
257 if (!ddb_entry
->sess
)
260 if (ddb_entry
->conn
) {
261 atomic_set(&ddb_entry
->state
, DDB_STATE_DEAD
);
262 iscsi_remove_session(ddb_entry
->sess
);
264 iscsi_free_session(ddb_entry
->sess
);
267 int qla4xxx_add_sess(struct ddb_entry
*ddb_entry
)
271 ddb_entry
->sess
->recovery_tmo
= ddb_entry
->ha
->port_down_retry_count
;
272 err
= iscsi_add_session(ddb_entry
->sess
, ddb_entry
->fw_ddb_index
);
274 DEBUG2(printk(KERN_ERR
"Could not add session.\n"));
278 ddb_entry
->conn
= iscsi_create_conn(ddb_entry
->sess
, 0);
279 if (!ddb_entry
->conn
) {
280 iscsi_remove_session(ddb_entry
->sess
);
281 DEBUG2(printk(KERN_ERR
"Could not add connection.\n"));
285 /* finally ready to go */
286 iscsi_unblock_session(ddb_entry
->sess
);
290 struct ddb_entry
*qla4xxx_alloc_sess(struct scsi_qla_host
*ha
)
292 struct ddb_entry
*ddb_entry
;
293 struct iscsi_cls_session
*sess
;
295 sess
= iscsi_alloc_session(ha
->host
, &qla4xxx_iscsi_transport
);
299 ddb_entry
= sess
->dd_data
;
300 memset(ddb_entry
, 0, sizeof(*ddb_entry
));
302 ddb_entry
->sess
= sess
;
306 static void qla4xxx_scan_start(struct Scsi_Host
*shost
)
308 struct scsi_qla_host
*ha
= shost_priv(shost
);
309 struct ddb_entry
*ddb_entry
, *ddbtemp
;
311 /* finish setup of sessions that were already setup in firmware */
312 list_for_each_entry_safe(ddb_entry
, ddbtemp
, &ha
->ddb_list
, list
) {
313 if (ddb_entry
->fw_ddb_device_state
== DDB_DS_SESSION_ACTIVE
)
314 qla4xxx_add_sess(ddb_entry
);
322 static void qla4xxx_start_timer(struct scsi_qla_host
*ha
, void *func
,
323 unsigned long interval
)
325 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
326 __func__
, ha
->host
->host_no
));
327 init_timer(&ha
->timer
);
328 ha
->timer
.expires
= jiffies
+ interval
* HZ
;
329 ha
->timer
.data
= (unsigned long)ha
;
330 ha
->timer
.function
= (void (*)(unsigned long))func
;
331 add_timer(&ha
->timer
);
332 ha
->timer_active
= 1;
335 static void qla4xxx_stop_timer(struct scsi_qla_host
*ha
)
337 del_timer_sync(&ha
->timer
);
338 ha
->timer_active
= 0;
342 * qla4xxx_mark_device_missing - mark a device as missing.
343 * @ha: Pointer to host adapter structure.
344 * @ddb_entry: Pointer to device database entry
346 * This routine marks a device missing and resets the relogin retry count.
348 void qla4xxx_mark_device_missing(struct scsi_qla_host
*ha
,
349 struct ddb_entry
*ddb_entry
)
351 atomic_set(&ddb_entry
->state
, DDB_STATE_MISSING
);
352 DEBUG3(printk("scsi%d:%d:%d: index [%d] marked MISSING\n",
353 ha
->host_no
, ddb_entry
->bus
, ddb_entry
->target
,
354 ddb_entry
->fw_ddb_index
));
355 iscsi_block_session(ddb_entry
->sess
);
356 iscsi_conn_error(ddb_entry
->conn
, ISCSI_ERR_CONN_FAILED
);
359 static struct srb
* qla4xxx_get_new_srb(struct scsi_qla_host
*ha
,
360 struct ddb_entry
*ddb_entry
,
361 struct scsi_cmnd
*cmd
,
362 void (*done
)(struct scsi_cmnd
*))
366 srb
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
370 atomic_set(&srb
->ref_count
, 1);
372 srb
->ddb
= ddb_entry
;
375 cmd
->SCp
.ptr
= (void *)srb
;
376 cmd
->scsi_done
= done
;
381 static void qla4xxx_srb_free_dma(struct scsi_qla_host
*ha
, struct srb
*srb
)
383 struct scsi_cmnd
*cmd
= srb
->cmd
;
385 if (srb
->flags
& SRB_DMA_VALID
) {
387 srb
->flags
&= ~SRB_DMA_VALID
;
392 void qla4xxx_srb_compl(struct scsi_qla_host
*ha
, struct srb
*srb
)
394 struct scsi_cmnd
*cmd
= srb
->cmd
;
396 qla4xxx_srb_free_dma(ha
, srb
);
398 mempool_free(srb
, ha
->srb_mempool
);
404 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
405 * @cmd: Pointer to Linux's SCSI command structure
406 * @done_fn: Function that the driver calls to notify the SCSI mid-layer
407 * that the command has been processed.
410 * This routine is invoked by Linux to send a SCSI command to the driver.
411 * The mid-level driver tries to ensure that queuecommand never gets
412 * invoked concurrently with itself or the interrupt handler (although
413 * the interrupt handler may call this routine as part of request-
414 * completion handling). Unfortunely, it sometimes calls the scheduler
415 * in interrupt context which is a big NO! NO!.
417 static int qla4xxx_queuecommand(struct scsi_cmnd
*cmd
,
418 void (*done
)(struct scsi_cmnd
*))
420 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
421 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
422 struct iscsi_cls_session
*sess
= ddb_entry
->sess
;
427 cmd
->result
= DID_IMM_RETRY
<< 16;
428 goto qc_fail_command
;
431 rval
= iscsi_session_chkready(sess
);
434 goto qc_fail_command
;
437 if (atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
438 if (atomic_read(&ddb_entry
->state
) == DDB_STATE_DEAD
) {
439 cmd
->result
= DID_NO_CONNECT
<< 16;
440 goto qc_fail_command
;
445 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
))
448 spin_unlock_irq(ha
->host
->host_lock
);
450 srb
= qla4xxx_get_new_srb(ha
, ddb_entry
, cmd
, done
);
452 goto qc_host_busy_lock
;
454 rval
= qla4xxx_send_command_to_isp(ha
, srb
);
455 if (rval
!= QLA_SUCCESS
)
456 goto qc_host_busy_free_sp
;
458 spin_lock_irq(ha
->host
->host_lock
);
461 qc_host_busy_free_sp
:
462 qla4xxx_srb_free_dma(ha
, srb
);
463 mempool_free(srb
, ha
->srb_mempool
);
466 spin_lock_irq(ha
->host
->host_lock
);
469 return SCSI_MLQUEUE_HOST_BUSY
;
478 * qla4xxx_mem_free - frees memory allocated to adapter
479 * @ha: Pointer to host adapter structure.
481 * Frees memory previously allocated by qla4xxx_mem_alloc
483 static void qla4xxx_mem_free(struct scsi_qla_host
*ha
)
486 dma_free_coherent(&ha
->pdev
->dev
, ha
->queues_len
, ha
->queues
,
492 ha
->request_ring
= NULL
;
494 ha
->response_ring
= NULL
;
495 ha
->response_dma
= 0;
496 ha
->shadow_regs
= NULL
;
497 ha
->shadow_regs_dma
= 0;
501 mempool_destroy(ha
->srb_mempool
);
503 ha
->srb_mempool
= NULL
;
505 /* release io space registers */
508 pci_release_regions(ha
->pdev
);
512 * qla4xxx_mem_alloc - allocates memory for use by adapter.
513 * @ha: Pointer to host adapter structure
515 * Allocates DMA memory for request and response queues. Also allocates memory
518 static int qla4xxx_mem_alloc(struct scsi_qla_host
*ha
)
522 /* Allocate contiguous block of DMA memory for queues. */
523 ha
->queues_len
= ((REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
524 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
) +
525 sizeof(struct shadow_regs
) +
527 (PAGE_SIZE
- 1)) & ~(PAGE_SIZE
- 1);
528 ha
->queues
= dma_alloc_coherent(&ha
->pdev
->dev
, ha
->queues_len
,
529 &ha
->queues_dma
, GFP_KERNEL
);
530 if (ha
->queues
== NULL
) {
531 dev_warn(&ha
->pdev
->dev
,
532 "Memory Allocation failed - queues.\n");
534 goto mem_alloc_error_exit
;
536 memset(ha
->queues
, 0, ha
->queues_len
);
539 * As per RISC alignment requirements -- the bus-address must be a
540 * multiple of the request-ring size (in bytes).
543 if ((unsigned long)ha
->queues_dma
& (MEM_ALIGN_VALUE
- 1))
544 align
= MEM_ALIGN_VALUE
- ((unsigned long)ha
->queues_dma
&
545 (MEM_ALIGN_VALUE
- 1));
547 /* Update request and response queue pointers. */
548 ha
->request_dma
= ha
->queues_dma
+ align
;
549 ha
->request_ring
= (struct queue_entry
*) (ha
->queues
+ align
);
550 ha
->response_dma
= ha
->queues_dma
+ align
+
551 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
);
552 ha
->response_ring
= (struct queue_entry
*) (ha
->queues
+ align
+
553 (REQUEST_QUEUE_DEPTH
*
555 ha
->shadow_regs_dma
= ha
->queues_dma
+ align
+
556 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
557 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
);
558 ha
->shadow_regs
= (struct shadow_regs
*) (ha
->queues
+ align
+
559 (REQUEST_QUEUE_DEPTH
*
561 (RESPONSE_QUEUE_DEPTH
*
564 /* Allocate memory for srb pool. */
565 ha
->srb_mempool
= mempool_create(SRB_MIN_REQ
, mempool_alloc_slab
,
566 mempool_free_slab
, srb_cachep
);
567 if (ha
->srb_mempool
== NULL
) {
568 dev_warn(&ha
->pdev
->dev
,
569 "Memory Allocation failed - SRB Pool.\n");
571 goto mem_alloc_error_exit
;
576 mem_alloc_error_exit
:
577 qla4xxx_mem_free(ha
);
582 * qla4xxx_timer - checks every second for work to do.
583 * @ha: Pointer to host adapter structure.
585 static void qla4xxx_timer(struct scsi_qla_host
*ha
)
587 struct ddb_entry
*ddb_entry
, *dtemp
;
590 /* Search for relogin's to time-out and port down retry. */
591 list_for_each_entry_safe(ddb_entry
, dtemp
, &ha
->ddb_list
, list
) {
592 /* Count down time between sending relogins */
593 if (adapter_up(ha
) &&
594 !test_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
595 atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
596 if (atomic_read(&ddb_entry
->retry_relogin_timer
) !=
598 if (atomic_read(&ddb_entry
->retry_relogin_timer
)
600 atomic_set(&ddb_entry
->
603 set_bit(DPC_RELOGIN_DEVICE
,
605 set_bit(DF_RELOGIN
, &ddb_entry
->flags
);
606 DEBUG2(printk("scsi%ld: %s: index [%d]"
608 ha
->host_no
, __func__
,
609 ddb_entry
->fw_ddb_index
));
611 atomic_dec(&ddb_entry
->
612 retry_relogin_timer
);
616 /* Wait for relogin to timeout */
617 if (atomic_read(&ddb_entry
->relogin_timer
) &&
618 (atomic_dec_and_test(&ddb_entry
->relogin_timer
) != 0)) {
620 * If the relogin times out and the device is
621 * still NOT ONLINE then try and relogin again.
623 if (atomic_read(&ddb_entry
->state
) !=
625 ddb_entry
->fw_ddb_device_state
==
626 DDB_DS_SESSION_FAILED
) {
627 /* Reset retry relogin timer */
628 atomic_inc(&ddb_entry
->relogin_retry_count
);
629 DEBUG2(printk("scsi%ld: index[%d] relogin"
630 " timed out-retrying"
633 ddb_entry
->fw_ddb_index
,
634 atomic_read(&ddb_entry
->
635 relogin_retry_count
))
638 DEBUG(printk("scsi%ld:%d:%d: index [%d] "
639 "initate relogin after"
641 ha
->host_no
, ddb_entry
->bus
,
643 ddb_entry
->fw_ddb_index
,
644 ddb_entry
->default_time2wait
+ 4)
647 atomic_set(&ddb_entry
->retry_relogin_timer
,
648 ddb_entry
->default_time2wait
+ 4);
653 /* Check for heartbeat interval. */
654 if (ha
->firmware_options
& FWOPT_HEARTBEAT_ENABLE
&&
655 ha
->heartbeat_interval
!= 0) {
656 ha
->seconds_since_last_heartbeat
++;
657 if (ha
->seconds_since_last_heartbeat
>
658 ha
->heartbeat_interval
+ 2)
659 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
663 /* Wakeup the dpc routine for this adapter, if needed. */
665 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
666 test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
) ||
667 test_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
) ||
668 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
) ||
669 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
670 test_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
) ||
671 test_bit(DPC_AEN
, &ha
->dpc_flags
)) &&
673 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
674 " - dpc flags = 0x%lx\n",
675 ha
->host_no
, __func__
, ha
->dpc_flags
));
676 queue_work(ha
->dpc_thread
, &ha
->dpc_work
);
679 /* Reschedule timer thread to call us back in one second */
680 mod_timer(&ha
->timer
, jiffies
+ HZ
);
682 DEBUG2(ha
->seconds_since_last_intr
++);
686 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
687 * @ha: Pointer to host adapter structure.
689 * This routine stalls the driver until all outstanding commands are returned.
690 * Caller must release the Hardware Lock prior to calling this routine.
692 static int qla4xxx_cmd_wait(struct scsi_qla_host
*ha
)
695 int stat
= QLA_SUCCESS
;
697 struct scsi_cmnd
*cmd
;
698 int wait_cnt
= WAIT_CMD_TOV
; /*
699 * Initialized for 30 seconds as we
700 * expect all commands to retuned
705 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
706 /* Find a command that hasn't completed. */
707 for (index
= 0; index
< ha
->host
->can_queue
; index
++) {
708 cmd
= scsi_host_find_tag(ha
->host
, index
);
712 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
714 /* If No Commands are pending, wait is complete */
715 if (index
== ha
->host
->can_queue
) {
719 /* If we timed out on waiting for commands to come back
728 } /* End of While (wait_cnt) */
733 void qla4xxx_hw_reset(struct scsi_qla_host
*ha
)
735 uint32_t ctrl_status
;
736 unsigned long flags
= 0;
738 DEBUG2(printk(KERN_ERR
"scsi%ld: %s\n", ha
->host_no
, __func__
));
740 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
743 * If the SCSI Reset Interrupt bit is set, clear it.
744 * Otherwise, the Soft Reset won't work.
746 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
747 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0)
748 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
750 /* Issue Soft Reset */
751 writel(set_rmask(CSR_SOFT_RESET
), &ha
->reg
->ctrl_status
);
752 readl(&ha
->reg
->ctrl_status
);
754 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
758 * qla4xxx_soft_reset - performs soft reset.
759 * @ha: Pointer to host adapter structure.
761 int qla4xxx_soft_reset(struct scsi_qla_host
*ha
)
763 uint32_t max_wait_time
;
764 unsigned long flags
= 0;
765 int status
= QLA_ERROR
;
766 uint32_t ctrl_status
;
768 qla4xxx_hw_reset(ha
);
770 /* Wait until the Network Reset Intr bit is cleared */
771 max_wait_time
= RESET_INTR_TOV
;
773 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
774 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
775 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
777 if ((ctrl_status
& CSR_NET_RESET_INTR
) == 0)
781 } while ((--max_wait_time
));
783 if ((ctrl_status
& CSR_NET_RESET_INTR
) != 0) {
784 DEBUG2(printk(KERN_WARNING
785 "scsi%ld: Network Reset Intr not cleared by "
786 "Network function, clearing it now!\n",
788 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
789 writel(set_rmask(CSR_NET_RESET_INTR
), &ha
->reg
->ctrl_status
);
790 readl(&ha
->reg
->ctrl_status
);
791 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
794 /* Wait until the firmware tells us the Soft Reset is done */
795 max_wait_time
= SOFT_RESET_TOV
;
797 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
798 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
799 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
801 if ((ctrl_status
& CSR_SOFT_RESET
) == 0) {
802 status
= QLA_SUCCESS
;
807 } while ((--max_wait_time
));
810 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
811 * after the soft reset has taken place.
813 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
814 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
815 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0) {
816 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
817 readl(&ha
->reg
->ctrl_status
);
819 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
821 /* If soft reset fails then most probably the bios on other
822 * function is also enabled.
823 * Since the initialization is sequential the other fn
824 * wont be able to acknowledge the soft reset.
825 * Issue a force soft reset to workaround this scenario.
827 if (max_wait_time
== 0) {
828 /* Issue Force Soft Reset */
829 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
830 writel(set_rmask(CSR_FORCE_SOFT_RESET
), &ha
->reg
->ctrl_status
);
831 readl(&ha
->reg
->ctrl_status
);
832 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
833 /* Wait until the firmware tells us the Soft Reset is done */
834 max_wait_time
= SOFT_RESET_TOV
;
836 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
837 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
838 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
840 if ((ctrl_status
& CSR_FORCE_SOFT_RESET
) == 0) {
841 status
= QLA_SUCCESS
;
846 } while ((--max_wait_time
));
853 * qla4xxx_flush_active_srbs - returns all outstanding i/o requests to O.S.
854 * @ha: Pointer to host adapter structure.
856 * This routine is called just prior to a HARD RESET to return all
857 * outstanding commands back to the Operating System.
858 * Caller should make sure that the following locks are released
859 * before this calling routine: Hardware lock, and io_request_lock.
861 static void qla4xxx_flush_active_srbs(struct scsi_qla_host
*ha
)
867 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
868 for (i
= 0; i
< ha
->host
->can_queue
; i
++) {
869 srb
= qla4xxx_del_from_active_array(ha
, i
);
871 srb
->cmd
->result
= DID_RESET
<< 16;
872 qla4xxx_srb_compl(ha
, srb
);
875 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
880 * qla4xxx_recover_adapter - recovers adapter after a fatal error
881 * @ha: Pointer to host adapter structure.
882 * @renew_ddb_list: Indicates what to do with the adapter's ddb list
884 * renew_ddb_list value can be 0=preserve ddb list, 1=destroy and rebuild
887 static int qla4xxx_recover_adapter(struct scsi_qla_host
*ha
,
888 uint8_t renew_ddb_list
)
892 /* Stall incoming I/O until we are done */
893 clear_bit(AF_ONLINE
, &ha
->flags
);
895 DEBUG2(printk("scsi%ld: %s calling qla4xxx_cmd_wait\n", ha
->host_no
,
898 /* Wait for outstanding commands to complete.
899 * Stalls the driver for max 30 secs
901 status
= qla4xxx_cmd_wait(ha
);
903 qla4xxx_disable_intrs(ha
);
905 /* Flush any pending ddb changed AENs */
906 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
908 /* Reset the firmware. If successful, function
909 * returns with ISP interrupts enabled.
911 if (status
== QLA_SUCCESS
) {
912 DEBUG2(printk("scsi%ld: %s - Performing soft reset..\n",
913 ha
->host_no
, __func__
));
914 qla4xxx_flush_active_srbs(ha
);
915 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
)
916 status
= qla4xxx_soft_reset(ha
);
921 /* Flush any pending ddb changed AENs */
922 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
924 /* Re-initialize firmware. If successful, function returns
925 * with ISP interrupts enabled */
926 if (status
== QLA_SUCCESS
) {
927 DEBUG2(printk("scsi%ld: %s - Initializing adapter..\n",
928 ha
->host_no
, __func__
));
930 /* If successful, AF_ONLINE flag set in
931 * qla4xxx_initialize_adapter */
932 status
= qla4xxx_initialize_adapter(ha
, renew_ddb_list
);
935 /* Failed adapter initialization?
936 * Retry reset_ha only if invoked via DPC (DPC_RESET_HA) */
937 if ((test_bit(AF_ONLINE
, &ha
->flags
) == 0) &&
938 (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))) {
939 /* Adapter initialization failed, see if we can retry
940 * resetting the ha */
941 if (!test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
)) {
942 ha
->retry_reset_ha_cnt
= MAX_RESET_HA_RETRIES
;
943 DEBUG2(printk("scsi%ld: recover adapter - retrying "
944 "(%d) more times\n", ha
->host_no
,
945 ha
->retry_reset_ha_cnt
));
946 set_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
949 if (ha
->retry_reset_ha_cnt
> 0) {
950 /* Schedule another Reset HA--DPC will retry */
951 ha
->retry_reset_ha_cnt
--;
952 DEBUG2(printk("scsi%ld: recover adapter - "
953 "retry remaining %d\n",
955 ha
->retry_reset_ha_cnt
));
959 if (ha
->retry_reset_ha_cnt
== 0) {
960 /* Recover adapter retries have been exhausted.
962 DEBUG2(printk("scsi%ld: recover adapter "
963 "failed - board disabled\n",
965 qla4xxx_flush_active_srbs(ha
);
966 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
967 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
968 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST
,
974 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
975 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
);
976 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
979 ha
->adapter_error_count
++;
981 if (status
== QLA_SUCCESS
)
982 qla4xxx_enable_intrs(ha
);
984 DEBUG2(printk("scsi%ld: recover adapter .. DONE\n", ha
->host_no
));
989 * qla4xxx_do_dpc - dpc routine
990 * @data: in our case pointer to adapter structure
992 * This routine is a task that is schedule by the interrupt handler
993 * to perform the background processing for interrupts. We put it
994 * on a task queue that is consumed whenever the scheduler runs; that's
995 * so you can do anything (i.e. put the process to sleep etc). In fact,
996 * the mid-level tries to sleep when it reaches the driver threshold
997 * "host->can_queue". This can cause a panic if we were in our interrupt code.
999 static void qla4xxx_do_dpc(struct work_struct
*work
)
1001 struct scsi_qla_host
*ha
=
1002 container_of(work
, struct scsi_qla_host
, dpc_work
);
1003 struct ddb_entry
*ddb_entry
, *dtemp
;
1004 int status
= QLA_ERROR
;
1006 DEBUG2(printk("scsi%ld: %s: DPC handler waking up."
1007 "flags = 0x%08lx, dpc_flags = 0x%08lx ctrl_stat = 0x%08x\n",
1008 ha
->host_no
, __func__
, ha
->flags
, ha
->dpc_flags
,
1009 readw(&ha
->reg
->ctrl_status
)));
1011 /* Initialization not yet finished. Don't do anything yet. */
1012 if (!test_bit(AF_INIT_DONE
, &ha
->flags
))
1015 if (adapter_up(ha
) ||
1016 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
1017 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
1018 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
)) {
1019 if (test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
) ||
1020 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))
1021 qla4xxx_recover_adapter(ha
, PRESERVE_DDB_LIST
);
1023 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
)) {
1024 uint8_t wait_time
= RESET_INTR_TOV
;
1026 while ((readw(&ha
->reg
->ctrl_status
) &
1027 (CSR_SOFT_RESET
| CSR_FORCE_SOFT_RESET
)) != 0) {
1028 if (--wait_time
== 0)
1033 DEBUG2(printk("scsi%ld: %s: SR|FSR "
1034 "bit not cleared-- resetting\n",
1035 ha
->host_no
, __func__
));
1036 qla4xxx_flush_active_srbs(ha
);
1037 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
) {
1038 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
1039 status
= qla4xxx_initialize_adapter(ha
,
1042 clear_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
);
1043 if (status
== QLA_SUCCESS
)
1044 qla4xxx_enable_intrs(ha
);
1048 /* ---- process AEN? --- */
1049 if (test_and_clear_bit(DPC_AEN
, &ha
->dpc_flags
))
1050 qla4xxx_process_aen(ha
, PROCESS_ALL_AENS
);
1052 /* ---- Get DHCP IP Address? --- */
1053 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
))
1054 qla4xxx_get_dhcp_ip_address(ha
);
1056 /* ---- relogin device? --- */
1057 if (adapter_up(ha
) &&
1058 test_and_clear_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
)) {
1059 list_for_each_entry_safe(ddb_entry
, dtemp
,
1060 &ha
->ddb_list
, list
) {
1061 if (test_and_clear_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
1062 atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
)
1063 qla4xxx_relogin_device(ha
, ddb_entry
);
1066 * If mbx cmd times out there is no point
1067 * in continuing further.
1068 * With large no of targets this can hang
1071 if (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
1072 printk(KERN_WARNING
"scsi%ld: %s: "
1073 "need to reset hba\n",
1074 ha
->host_no
, __func__
);
1082 * qla4xxx_free_adapter - release the adapter
1083 * @ha: pointer to adapter structure
1085 static void qla4xxx_free_adapter(struct scsi_qla_host
*ha
)
1088 if (test_bit(AF_INTERRUPTS_ON
, &ha
->flags
)) {
1089 /* Turn-off interrupts on the card. */
1090 qla4xxx_disable_intrs(ha
);
1093 /* Kill the kernel thread for this host */
1095 destroy_workqueue(ha
->dpc_thread
);
1097 /* Issue Soft Reset to put firmware in unknown state */
1098 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
)
1099 qla4xxx_hw_reset(ha
);
1101 /* Remove timer thread, if present */
1102 if (ha
->timer_active
)
1103 qla4xxx_stop_timer(ha
);
1105 /* Detach interrupts */
1106 if (test_and_clear_bit(AF_IRQ_ATTACHED
, &ha
->flags
))
1107 free_irq(ha
->pdev
->irq
, ha
);
1109 /* free extra memory */
1110 qla4xxx_mem_free(ha
);
1112 pci_disable_device(ha
->pdev
);
1117 * qla4xxx_iospace_config - maps registers
1118 * @ha: pointer to adapter structure
1120 * This routines maps HBA's registers from the pci address space
1121 * into the kernel virtual address space for memory mapped i/o.
1123 static int qla4xxx_iospace_config(struct scsi_qla_host
*ha
)
1125 unsigned long pio
, pio_len
, pio_flags
;
1126 unsigned long mmio
, mmio_len
, mmio_flags
;
1128 pio
= pci_resource_start(ha
->pdev
, 0);
1129 pio_len
= pci_resource_len(ha
->pdev
, 0);
1130 pio_flags
= pci_resource_flags(ha
->pdev
, 0);
1131 if (pio_flags
& IORESOURCE_IO
) {
1132 if (pio_len
< MIN_IOBASE_LEN
) {
1133 dev_warn(&ha
->pdev
->dev
,
1134 "Invalid PCI I/O region size\n");
1138 dev_warn(&ha
->pdev
->dev
, "region #0 not a PIO resource\n");
1142 /* Use MMIO operations for all accesses. */
1143 mmio
= pci_resource_start(ha
->pdev
, 1);
1144 mmio_len
= pci_resource_len(ha
->pdev
, 1);
1145 mmio_flags
= pci_resource_flags(ha
->pdev
, 1);
1147 if (!(mmio_flags
& IORESOURCE_MEM
)) {
1148 dev_err(&ha
->pdev
->dev
,
1149 "region #0 not an MMIO resource, aborting\n");
1151 goto iospace_error_exit
;
1153 if (mmio_len
< MIN_IOBASE_LEN
) {
1154 dev_err(&ha
->pdev
->dev
,
1155 "Invalid PCI mem region size, aborting\n");
1156 goto iospace_error_exit
;
1159 if (pci_request_regions(ha
->pdev
, DRIVER_NAME
)) {
1160 dev_warn(&ha
->pdev
->dev
,
1161 "Failed to reserve PIO/MMIO regions\n");
1163 goto iospace_error_exit
;
1166 ha
->pio_address
= pio
;
1167 ha
->pio_length
= pio_len
;
1168 ha
->reg
= ioremap(mmio
, MIN_IOBASE_LEN
);
1170 dev_err(&ha
->pdev
->dev
,
1171 "cannot remap MMIO, aborting\n");
1173 goto iospace_error_exit
;
1183 * qla4xxx_probe_adapter - callback function to probe HBA
1184 * @pdev: pointer to pci_dev structure
1185 * @pci_device_id: pointer to pci_device entry
1187 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
1188 * It returns zero if successful. It also initializes all data necessary for
1191 static int __devinit
qla4xxx_probe_adapter(struct pci_dev
*pdev
,
1192 const struct pci_device_id
*ent
)
1194 int ret
= -ENODEV
, status
;
1195 struct Scsi_Host
*host
;
1196 struct scsi_qla_host
*ha
;
1197 uint8_t init_retry_count
= 0;
1200 if (pci_enable_device(pdev
))
1203 host
= scsi_host_alloc(&qla4xxx_driver_template
, sizeof(*ha
));
1206 "qla4xxx: Couldn't allocate host from scsi layer!\n");
1207 goto probe_disable_device
;
1210 /* Clear our data area */
1211 ha
= (struct scsi_qla_host
*) host
->hostdata
;
1212 memset(ha
, 0, sizeof(*ha
));
1214 /* Save the information from PCI BIOS. */
1217 ha
->host_no
= host
->host_no
;
1219 /* Configure PCI I/O space. */
1220 ret
= qla4xxx_iospace_config(ha
);
1224 dev_info(&ha
->pdev
->dev
, "Found an ISP%04x, irq %d, iobase 0x%p\n",
1225 pdev
->device
, pdev
->irq
, ha
->reg
);
1227 qla4xxx_config_dma_addressing(ha
);
1229 /* Initialize lists and spinlocks. */
1230 INIT_LIST_HEAD(&ha
->ddb_list
);
1231 INIT_LIST_HEAD(&ha
->free_srb_q
);
1233 mutex_init(&ha
->mbox_sem
);
1235 spin_lock_init(&ha
->hardware_lock
);
1237 /* Allocate dma buffers */
1238 if (qla4xxx_mem_alloc(ha
)) {
1239 dev_warn(&ha
->pdev
->dev
,
1240 "[ERROR] Failed to allocate memory for adapter\n");
1247 * Initialize the Host adapter request/response queues and
1249 * NOTE: interrupts enabled upon successful completion
1251 status
= qla4xxx_initialize_adapter(ha
, REBUILD_DDB_LIST
);
1252 while (status
== QLA_ERROR
&& init_retry_count
++ < MAX_INIT_RETRIES
) {
1253 DEBUG2(printk("scsi: %s: retrying adapter initialization "
1254 "(%d)\n", __func__
, init_retry_count
));
1255 qla4xxx_soft_reset(ha
);
1256 status
= qla4xxx_initialize_adapter(ha
, REBUILD_DDB_LIST
);
1258 if (status
== QLA_ERROR
) {
1259 dev_warn(&ha
->pdev
->dev
, "Failed to initialize adapter\n");
1265 host
->cmd_per_lun
= 3;
1266 host
->max_channel
= 0;
1267 host
->max_lun
= MAX_LUNS
- 1;
1268 host
->max_id
= MAX_TARGETS
;
1269 host
->max_cmd_len
= IOCB_MAX_CDB_LEN
;
1270 host
->can_queue
= MAX_SRBS
;
1271 host
->transportt
= qla4xxx_scsi_transport
;
1273 ret
= scsi_init_shared_tag_map(host
, MAX_SRBS
);
1275 dev_warn(&ha
->pdev
->dev
, "scsi_init_shared_tag_map failed\n");
1279 /* Startup the kernel thread for this host adapter. */
1280 DEBUG2(printk("scsi: %s: Starting kernel thread for "
1281 "qla4xxx_dpc\n", __func__
));
1282 sprintf(buf
, "qla4xxx_%lu_dpc", ha
->host_no
);
1283 ha
->dpc_thread
= create_singlethread_workqueue(buf
);
1284 if (!ha
->dpc_thread
) {
1285 dev_warn(&ha
->pdev
->dev
, "Unable to start DPC thread!\n");
1289 INIT_WORK(&ha
->dpc_work
, qla4xxx_do_dpc
);
1291 ret
= request_irq(pdev
->irq
, qla4xxx_intr_handler
,
1292 IRQF_DISABLED
| IRQF_SHARED
, "qla4xxx", ha
);
1294 dev_warn(&ha
->pdev
->dev
, "Failed to reserve interrupt %d"
1295 " already in use.\n", pdev
->irq
);
1298 set_bit(AF_IRQ_ATTACHED
, &ha
->flags
);
1299 host
->irq
= pdev
->irq
;
1300 DEBUG(printk("scsi%d: irq %d attached\n", ha
->host_no
, ha
->pdev
->irq
));
1302 qla4xxx_enable_intrs(ha
);
1304 /* Start timer thread. */
1305 qla4xxx_start_timer(ha
, qla4xxx_timer
, 1);
1307 set_bit(AF_INIT_DONE
, &ha
->flags
);
1309 pci_set_drvdata(pdev
, ha
);
1311 ret
= scsi_add_host(host
, &pdev
->dev
);
1316 " QLogic iSCSI HBA Driver version: %s\n"
1317 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
1318 qla4xxx_version_str
, ha
->pdev
->device
, pci_name(ha
->pdev
),
1319 ha
->host_no
, ha
->firmware_version
[0], ha
->firmware_version
[1],
1320 ha
->patch_number
, ha
->build_number
);
1321 scsi_scan_host(host
);
1325 qla4xxx_free_adapter(ha
);
1326 scsi_host_put(ha
->host
);
1328 probe_disable_device
:
1329 pci_disable_device(pdev
);
1335 * qla4xxx_remove_adapter - calback function to remove adapter.
1336 * @pci_dev: PCI device pointer
1338 static void __devexit
qla4xxx_remove_adapter(struct pci_dev
*pdev
)
1340 struct scsi_qla_host
*ha
;
1342 ha
= pci_get_drvdata(pdev
);
1344 qla4xxx_disable_intrs(ha
);
1346 while (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
))
1349 /* remove devs from iscsi_sessions to scsi_devices */
1350 qla4xxx_free_ddb_list(ha
);
1352 scsi_remove_host(ha
->host
);
1354 qla4xxx_free_adapter(ha
);
1356 scsi_host_put(ha
->host
);
1358 pci_set_drvdata(pdev
, NULL
);
1362 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
1365 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1366 * supported addressing method.
1368 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
)
1372 /* Update our PCI device dma_mask for full 64 bit mask */
1373 if (pci_set_dma_mask(ha
->pdev
, DMA_64BIT_MASK
) == 0) {
1374 if (pci_set_consistent_dma_mask(ha
->pdev
, DMA_64BIT_MASK
)) {
1375 dev_dbg(&ha
->pdev
->dev
,
1376 "Failed to set 64 bit PCI consistent mask; "
1378 retval
= pci_set_consistent_dma_mask(ha
->pdev
,
1382 retval
= pci_set_dma_mask(ha
->pdev
, DMA_32BIT_MASK
);
1385 static int qla4xxx_slave_alloc(struct scsi_device
*sdev
)
1387 struct iscsi_cls_session
*sess
= starget_to_session(sdev
->sdev_target
);
1388 struct ddb_entry
*ddb
= sess
->dd_data
;
1390 sdev
->hostdata
= ddb
;
1391 sdev
->tagged_supported
= 1;
1392 scsi_activate_tcq(sdev
, sdev
->host
->can_queue
);
1396 static int qla4xxx_slave_configure(struct scsi_device
*sdev
)
1398 sdev
->tagged_supported
= 1;
1402 static void qla4xxx_slave_destroy(struct scsi_device
*sdev
)
1404 scsi_deactivate_tcq(sdev
, 1);
1408 * qla4xxx_del_from_active_array - returns an active srb
1409 * @ha: Pointer to host adapter structure.
1410 * @index: index into to the active_array
1412 * This routine removes and returns the srb at the specified index
1414 struct srb
* qla4xxx_del_from_active_array(struct scsi_qla_host
*ha
, uint32_t index
)
1416 struct srb
*srb
= NULL
;
1417 struct scsi_cmnd
*cmd
;
1419 if (!(cmd
= scsi_host_find_tag(ha
->host
, index
)))
1422 if (!(srb
= (struct srb
*)cmd
->host_scribble
))
1425 /* update counters */
1426 if (srb
->flags
& SRB_DMA_VALID
) {
1427 ha
->req_q_count
+= srb
->iocb_cnt
;
1428 ha
->iocb_cnt
-= srb
->iocb_cnt
;
1430 srb
->cmd
->host_scribble
= NULL
;
1436 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
1437 * @ha: actual ha whose done queue will contain the comd returned by firmware.
1438 * @cmd: Scsi Command to wait on.
1440 * This routine waits for the command to be returned by the Firmware
1441 * for some max time.
1443 static int qla4xxx_eh_wait_on_command(struct scsi_qla_host
*ha
,
1444 struct scsi_cmnd
*cmd
)
1448 uint32_t max_wait_time
= EH_WAIT_CMD_TOV
;
1451 /* Checking to see if its returned to OS */
1452 rp
= (struct srb
*) cmd
->SCp
.ptr
;
1459 } while (max_wait_time
--);
1465 * qla4xxx_wait_for_hba_online - waits for HBA to come online
1466 * @ha: Pointer to host adapter structure
1468 static int qla4xxx_wait_for_hba_online(struct scsi_qla_host
*ha
)
1470 unsigned long wait_online
;
1472 wait_online
= jiffies
+ (30 * HZ
);
1473 while (time_before(jiffies
, wait_online
)) {
1477 else if (ha
->retry_reset_ha_cnt
== 0)
1487 * qla4xxx_eh_wait_for_commands - wait for active cmds to finish.
1488 * @ha: pointer to to HBA
1492 * This function waits for all outstanding commands to a lun to complete. It
1493 * returns 0 if all pending commands are returned and 1 otherwise.
1495 static int qla4xxx_eh_wait_for_commands(struct scsi_qla_host
*ha
,
1496 struct scsi_target
*stgt
,
1497 struct scsi_device
*sdev
)
1501 struct scsi_cmnd
*cmd
;
1504 * Waiting for all commands for the designated target or dev
1505 * in the active array
1507 for (cnt
= 0; cnt
< ha
->host
->can_queue
; cnt
++) {
1508 cmd
= scsi_host_find_tag(ha
->host
, cnt
);
1509 if (cmd
&& stgt
== scsi_target(cmd
->device
) &&
1510 (!sdev
|| sdev
== cmd
->device
)) {
1511 if (!qla4xxx_eh_wait_on_command(ha
, cmd
)) {
1521 * qla4xxx_eh_device_reset - callback for target reset.
1522 * @cmd: Pointer to Linux's SCSI command structure
1524 * This routine is called by the Linux OS to reset all luns on the
1527 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
1529 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
1530 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
1532 int ret
= FAILED
, stat
;
1534 sp
= (struct srb
*) cmd
->SCp
.ptr
;
1535 if (!sp
|| !ddb_entry
)
1538 dev_info(&ha
->pdev
->dev
,
1539 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha
->host_no
,
1540 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
1542 DEBUG2(printk(KERN_INFO
1543 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
1544 "dpc_flags=%lx, status=%x allowed=%d\n", ha
->host_no
,
1545 cmd
, jiffies
, cmd
->timeout_per_command
/ HZ
,
1546 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
1548 /* FIXME: wait for hba to go online */
1549 stat
= qla4xxx_reset_lun(ha
, ddb_entry
, cmd
->device
->lun
);
1550 if (stat
!= QLA_SUCCESS
) {
1551 dev_info(&ha
->pdev
->dev
, "DEVICE RESET FAILED. %d\n", stat
);
1552 goto eh_dev_reset_done
;
1555 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
1557 dev_info(&ha
->pdev
->dev
,
1558 "DEVICE RESET FAILED - waiting for "
1560 goto eh_dev_reset_done
;
1564 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
1565 MM_LUN_RESET
) != QLA_SUCCESS
)
1566 goto eh_dev_reset_done
;
1568 dev_info(&ha
->pdev
->dev
,
1569 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
1570 ha
->host_no
, cmd
->device
->channel
, cmd
->device
->id
,
1581 * qla4xxx_eh_target_reset - callback for target reset.
1582 * @cmd: Pointer to Linux's SCSI command structure
1584 * This routine is called by the Linux OS to reset the target.
1586 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
)
1588 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
1589 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
1595 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1596 "WARM TARGET RESET ISSUED.\n");
1598 DEBUG2(printk(KERN_INFO
1599 "scsi%ld: TARGET_DEVICE_RESET cmd=%p jiffies = 0x%lx, "
1600 "to=%x,dpc_flags=%lx, status=%x allowed=%d\n",
1601 ha
->host_no
, cmd
, jiffies
, cmd
->timeout_per_command
/ HZ
,
1602 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
1604 stat
= qla4xxx_reset_target(ha
, ddb_entry
);
1605 if (stat
!= QLA_SUCCESS
) {
1606 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1607 "WARM TARGET RESET FAILED.\n");
1611 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
1613 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1614 "WARM TARGET DEVICE RESET FAILED - "
1615 "waiting for commands.\n");
1620 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
1621 MM_TGT_WARM_RESET
) != QLA_SUCCESS
) {
1622 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1623 "WARM TARGET DEVICE RESET FAILED - "
1624 "marker iocb failed.\n");
1628 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1629 "WARM TARGET RESET SUCCEEDED.\n");
1634 * qla4xxx_eh_host_reset - kernel callback
1635 * @cmd: Pointer to Linux's SCSI command structure
1637 * This routine is invoked by the Linux kernel to perform fatal error
1638 * recovery on the specified adapter.
1640 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
1642 int return_status
= FAILED
;
1643 struct scsi_qla_host
*ha
;
1645 ha
= (struct scsi_qla_host
*) cmd
->device
->host
->hostdata
;
1647 dev_info(&ha
->pdev
->dev
,
1648 "scsi(%ld:%d:%d:%d): ADAPTER RESET ISSUED.\n", ha
->host_no
,
1649 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
1651 if (qla4xxx_wait_for_hba_online(ha
) != QLA_SUCCESS
) {
1652 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
1653 "DEAD.\n", ha
->host_no
, cmd
->device
->channel
,
1659 /* make sure the dpc thread is stopped while we reset the hba */
1660 clear_bit(AF_ONLINE
, &ha
->flags
);
1661 flush_workqueue(ha
->dpc_thread
);
1663 if (qla4xxx_recover_adapter(ha
, PRESERVE_DDB_LIST
) == QLA_SUCCESS
)
1664 return_status
= SUCCESS
;
1666 dev_info(&ha
->pdev
->dev
, "HOST RESET %s.\n",
1667 return_status
== FAILED
? "FAILED" : "SUCCEDED");
1669 return return_status
;
1673 static struct pci_device_id qla4xxx_pci_tbl
[] = {
1675 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1676 .device
= PCI_DEVICE_ID_QLOGIC_ISP4010
,
1677 .subvendor
= PCI_ANY_ID
,
1678 .subdevice
= PCI_ANY_ID
,
1681 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1682 .device
= PCI_DEVICE_ID_QLOGIC_ISP4022
,
1683 .subvendor
= PCI_ANY_ID
,
1684 .subdevice
= PCI_ANY_ID
,
1687 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1688 .device
= PCI_DEVICE_ID_QLOGIC_ISP4032
,
1689 .subvendor
= PCI_ANY_ID
,
1690 .subdevice
= PCI_ANY_ID
,
1694 MODULE_DEVICE_TABLE(pci
, qla4xxx_pci_tbl
);
1696 static struct pci_driver qla4xxx_pci_driver
= {
1697 .name
= DRIVER_NAME
,
1698 .id_table
= qla4xxx_pci_tbl
,
1699 .probe
= qla4xxx_probe_adapter
,
1700 .remove
= qla4xxx_remove_adapter
,
1703 static int __init
qla4xxx_module_init(void)
1707 /* Allocate cache for SRBs. */
1708 srb_cachep
= kmem_cache_create("qla4xxx_srbs", sizeof(struct srb
), 0,
1709 SLAB_HWCACHE_ALIGN
, NULL
);
1710 if (srb_cachep
== NULL
) {
1712 "%s: Unable to allocate SRB cache..."
1713 "Failing load!\n", DRIVER_NAME
);
1718 /* Derive version string. */
1719 strcpy(qla4xxx_version_str
, QLA4XXX_DRIVER_VERSION
);
1720 if (ql4xextended_error_logging
)
1721 strcat(qla4xxx_version_str
, "-debug");
1723 qla4xxx_scsi_transport
=
1724 iscsi_register_transport(&qla4xxx_iscsi_transport
);
1725 if (!qla4xxx_scsi_transport
){
1727 goto release_srb_cache
;
1730 ret
= pci_register_driver(&qla4xxx_pci_driver
);
1732 goto unregister_transport
;
1734 printk(KERN_INFO
"QLogic iSCSI HBA Driver\n");
1737 unregister_transport
:
1738 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
1740 kmem_cache_destroy(srb_cachep
);
1745 static void __exit
qla4xxx_module_exit(void)
1748 pci_unregister_driver(&qla4xxx_pci_driver
);
1749 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
1750 kmem_cache_destroy(srb_cachep
);
1753 module_init(qla4xxx_module_init
);
1754 module_exit(qla4xxx_module_exit
);
1756 MODULE_AUTHOR("QLogic Corporation");
1757 MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
1758 MODULE_LICENSE("GPL");
1759 MODULE_VERSION(QLA4XXX_DRIVER_VERSION
);