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;
49 #define QL4_DEF_QDEPTH 32
52 * SCSI host template entry points
54 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
);
57 * iSCSI template entry points
59 static int qla4xxx_tgt_dscvr(struct Scsi_Host
*shost
,
60 enum iscsi_tgt_dscvr type
, uint32_t enable
,
61 struct sockaddr
*dst_addr
);
62 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*conn
,
63 enum iscsi_param param
, char *buf
);
64 static int qla4xxx_sess_get_param(struct iscsi_cls_session
*sess
,
65 enum iscsi_param param
, char *buf
);
66 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
67 enum iscsi_host_param param
, char *buf
);
68 static void qla4xxx_recovery_timedout(struct iscsi_cls_session
*session
);
69 static enum blk_eh_timer_return
qla4xxx_eh_cmd_timed_out(struct scsi_cmnd
*sc
);
72 * SCSI host template entry points
74 static int qla4xxx_queuecommand(struct scsi_cmnd
*cmd
,
75 void (*done
) (struct scsi_cmnd
*));
76 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
);
77 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
);
78 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
);
79 static int qla4xxx_slave_alloc(struct scsi_device
*device
);
80 static int qla4xxx_slave_configure(struct scsi_device
*device
);
81 static void qla4xxx_slave_destroy(struct scsi_device
*sdev
);
82 static void qla4xxx_scan_start(struct Scsi_Host
*shost
);
84 static struct scsi_host_template qla4xxx_driver_template
= {
85 .module
= THIS_MODULE
,
87 .proc_name
= DRIVER_NAME
,
88 .queuecommand
= qla4xxx_queuecommand
,
90 .eh_device_reset_handler
= qla4xxx_eh_device_reset
,
91 .eh_target_reset_handler
= qla4xxx_eh_target_reset
,
92 .eh_host_reset_handler
= qla4xxx_eh_host_reset
,
93 .eh_timed_out
= qla4xxx_eh_cmd_timed_out
,
95 .slave_configure
= qla4xxx_slave_configure
,
96 .slave_alloc
= qla4xxx_slave_alloc
,
97 .slave_destroy
= qla4xxx_slave_destroy
,
99 .scan_finished
= iscsi_scan_finished
,
100 .scan_start
= qla4xxx_scan_start
,
104 .use_clustering
= ENABLE_CLUSTERING
,
105 .sg_tablesize
= SG_ALL
,
107 .max_sectors
= 0xFFFF,
110 static struct iscsi_transport qla4xxx_iscsi_transport
= {
111 .owner
= THIS_MODULE
,
113 .caps
= CAP_FW_DB
| CAP_SENDTARGETS_OFFLOAD
|
114 CAP_DATA_PATH_OFFLOAD
,
115 .param_mask
= ISCSI_CONN_PORT
| ISCSI_CONN_ADDRESS
|
116 ISCSI_TARGET_NAME
| ISCSI_TPGT
,
117 .host_param_mask
= ISCSI_HOST_HWADDRESS
|
118 ISCSI_HOST_IPADDRESS
|
119 ISCSI_HOST_INITIATOR_NAME
,
120 .tgt_dscvr
= qla4xxx_tgt_dscvr
,
121 .get_conn_param
= qla4xxx_conn_get_param
,
122 .get_session_param
= qla4xxx_sess_get_param
,
123 .get_host_param
= qla4xxx_host_get_param
,
124 .session_recovery_timedout
= qla4xxx_recovery_timedout
,
127 static struct scsi_transport_template
*qla4xxx_scsi_transport
;
129 static enum blk_eh_timer_return
qla4xxx_eh_cmd_timed_out(struct scsi_cmnd
*sc
)
131 struct iscsi_cls_session
*session
;
132 struct ddb_entry
*ddb_entry
;
134 session
= starget_to_session(scsi_target(sc
->device
));
135 ddb_entry
= session
->dd_data
;
137 /* if we are not logged in then the LLD is going to clean up the cmd */
138 if (atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
)
139 return BLK_EH_RESET_TIMER
;
141 return BLK_EH_NOT_HANDLED
;
144 static void qla4xxx_recovery_timedout(struct iscsi_cls_session
*session
)
146 struct ddb_entry
*ddb_entry
= session
->dd_data
;
147 struct scsi_qla_host
*ha
= ddb_entry
->ha
;
149 if (atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
150 atomic_set(&ddb_entry
->state
, DDB_STATE_DEAD
);
152 DEBUG2(printk("scsi%ld: %s: index [%d] port down retry count "
153 "of (%d) secs exhausted, marking device DEAD.\n",
154 ha
->host_no
, __func__
, ddb_entry
->fw_ddb_index
,
155 ha
->port_down_retry_count
));
157 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine - dpc "
159 ha
->host_no
, __func__
, ha
->dpc_flags
));
160 queue_work(ha
->dpc_thread
, &ha
->dpc_work
);
164 static int qla4xxx_host_get_param(struct Scsi_Host
*shost
,
165 enum iscsi_host_param param
, char *buf
)
167 struct scsi_qla_host
*ha
= to_qla_host(shost
);
171 case ISCSI_HOST_PARAM_HWADDRESS
:
172 len
= sysfs_format_mac(buf
, ha
->my_mac
, MAC_ADDR_LEN
);
174 case ISCSI_HOST_PARAM_IPADDRESS
:
175 len
= sprintf(buf
, "%d.%d.%d.%d\n", ha
->ip_address
[0],
176 ha
->ip_address
[1], ha
->ip_address
[2],
179 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
180 len
= sprintf(buf
, "%s\n", ha
->name_string
);
189 static int qla4xxx_sess_get_param(struct iscsi_cls_session
*sess
,
190 enum iscsi_param param
, char *buf
)
192 struct ddb_entry
*ddb_entry
= sess
->dd_data
;
196 case ISCSI_PARAM_TARGET_NAME
:
197 len
= snprintf(buf
, PAGE_SIZE
- 1, "%s\n",
198 ddb_entry
->iscsi_name
);
200 case ISCSI_PARAM_TPGT
:
201 len
= sprintf(buf
, "%u\n", ddb_entry
->tpgt
);
210 static int qla4xxx_conn_get_param(struct iscsi_cls_conn
*conn
,
211 enum iscsi_param param
, char *buf
)
213 struct iscsi_cls_session
*session
;
214 struct ddb_entry
*ddb_entry
;
217 session
= iscsi_dev_to_session(conn
->dev
.parent
);
218 ddb_entry
= session
->dd_data
;
221 case ISCSI_PARAM_CONN_PORT
:
222 len
= sprintf(buf
, "%hu\n", ddb_entry
->port
);
224 case ISCSI_PARAM_CONN_ADDRESS
:
225 /* TODO: what are the ipv6 bits */
226 len
= sprintf(buf
, "%pI4\n", &ddb_entry
->ip_addr
);
235 static int qla4xxx_tgt_dscvr(struct Scsi_Host
*shost
,
236 enum iscsi_tgt_dscvr type
, uint32_t enable
,
237 struct sockaddr
*dst_addr
)
239 struct scsi_qla_host
*ha
;
240 struct sockaddr_in
*addr
;
241 struct sockaddr_in6
*addr6
;
244 ha
= (struct scsi_qla_host
*) shost
->hostdata
;
247 case ISCSI_TGT_DSCVR_SEND_TARGETS
:
248 if (dst_addr
->sa_family
== AF_INET
) {
249 addr
= (struct sockaddr_in
*)dst_addr
;
250 if (qla4xxx_send_tgts(ha
, (char *)&addr
->sin_addr
,
251 addr
->sin_port
) != QLA_SUCCESS
)
253 } else if (dst_addr
->sa_family
== AF_INET6
) {
255 * TODO: fix qla4xxx_send_tgts
257 addr6
= (struct sockaddr_in6
*)dst_addr
;
258 if (qla4xxx_send_tgts(ha
, (char *)&addr6
->sin6_addr
,
259 addr6
->sin6_port
) != QLA_SUCCESS
)
270 void qla4xxx_destroy_sess(struct ddb_entry
*ddb_entry
)
272 if (!ddb_entry
->sess
)
275 if (ddb_entry
->conn
) {
276 atomic_set(&ddb_entry
->state
, DDB_STATE_DEAD
);
277 iscsi_remove_session(ddb_entry
->sess
);
279 iscsi_free_session(ddb_entry
->sess
);
282 int qla4xxx_add_sess(struct ddb_entry
*ddb_entry
)
286 ddb_entry
->sess
->recovery_tmo
= ddb_entry
->ha
->port_down_retry_count
;
287 err
= iscsi_add_session(ddb_entry
->sess
, ddb_entry
->fw_ddb_index
);
289 DEBUG2(printk(KERN_ERR
"Could not add session.\n"));
293 ddb_entry
->conn
= iscsi_create_conn(ddb_entry
->sess
, 0, 0);
294 if (!ddb_entry
->conn
) {
295 iscsi_remove_session(ddb_entry
->sess
);
296 DEBUG2(printk(KERN_ERR
"Could not add connection.\n"));
300 /* finally ready to go */
301 iscsi_unblock_session(ddb_entry
->sess
);
305 struct ddb_entry
*qla4xxx_alloc_sess(struct scsi_qla_host
*ha
)
307 struct ddb_entry
*ddb_entry
;
308 struct iscsi_cls_session
*sess
;
310 sess
= iscsi_alloc_session(ha
->host
, &qla4xxx_iscsi_transport
,
311 sizeof(struct ddb_entry
));
315 ddb_entry
= sess
->dd_data
;
316 memset(ddb_entry
, 0, sizeof(*ddb_entry
));
318 ddb_entry
->sess
= sess
;
322 static void qla4xxx_scan_start(struct Scsi_Host
*shost
)
324 struct scsi_qla_host
*ha
= shost_priv(shost
);
325 struct ddb_entry
*ddb_entry
, *ddbtemp
;
327 /* finish setup of sessions that were already setup in firmware */
328 list_for_each_entry_safe(ddb_entry
, ddbtemp
, &ha
->ddb_list
, list
) {
329 if (ddb_entry
->fw_ddb_device_state
== DDB_DS_SESSION_ACTIVE
)
330 qla4xxx_add_sess(ddb_entry
);
338 static void qla4xxx_start_timer(struct scsi_qla_host
*ha
, void *func
,
339 unsigned long interval
)
341 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
342 __func__
, ha
->host
->host_no
));
343 init_timer(&ha
->timer
);
344 ha
->timer
.expires
= jiffies
+ interval
* HZ
;
345 ha
->timer
.data
= (unsigned long)ha
;
346 ha
->timer
.function
= (void (*)(unsigned long))func
;
347 add_timer(&ha
->timer
);
348 ha
->timer_active
= 1;
351 static void qla4xxx_stop_timer(struct scsi_qla_host
*ha
)
353 del_timer_sync(&ha
->timer
);
354 ha
->timer_active
= 0;
358 * qla4xxx_mark_device_missing - mark a device as missing.
359 * @ha: Pointer to host adapter structure.
360 * @ddb_entry: Pointer to device database entry
362 * This routine marks a device missing and resets the relogin retry count.
364 void qla4xxx_mark_device_missing(struct scsi_qla_host
*ha
,
365 struct ddb_entry
*ddb_entry
)
367 atomic_set(&ddb_entry
->state
, DDB_STATE_MISSING
);
368 DEBUG3(printk("scsi%d:%d:%d: index [%d] marked MISSING\n",
369 ha
->host_no
, ddb_entry
->bus
, ddb_entry
->target
,
370 ddb_entry
->fw_ddb_index
));
371 iscsi_block_session(ddb_entry
->sess
);
372 iscsi_conn_error_event(ddb_entry
->conn
, ISCSI_ERR_CONN_FAILED
);
375 static struct srb
* qla4xxx_get_new_srb(struct scsi_qla_host
*ha
,
376 struct ddb_entry
*ddb_entry
,
377 struct scsi_cmnd
*cmd
,
378 void (*done
)(struct scsi_cmnd
*))
382 srb
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
386 atomic_set(&srb
->ref_count
, 1);
388 srb
->ddb
= ddb_entry
;
391 cmd
->SCp
.ptr
= (void *)srb
;
392 cmd
->scsi_done
= done
;
397 static void qla4xxx_srb_free_dma(struct scsi_qla_host
*ha
, struct srb
*srb
)
399 struct scsi_cmnd
*cmd
= srb
->cmd
;
401 if (srb
->flags
& SRB_DMA_VALID
) {
403 srb
->flags
&= ~SRB_DMA_VALID
;
408 void qla4xxx_srb_compl(struct scsi_qla_host
*ha
, struct srb
*srb
)
410 struct scsi_cmnd
*cmd
= srb
->cmd
;
412 qla4xxx_srb_free_dma(ha
, srb
);
414 mempool_free(srb
, ha
->srb_mempool
);
420 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
421 * @cmd: Pointer to Linux's SCSI command structure
422 * @done_fn: Function that the driver calls to notify the SCSI mid-layer
423 * that the command has been processed.
426 * This routine is invoked by Linux to send a SCSI command to the driver.
427 * The mid-level driver tries to ensure that queuecommand never gets
428 * invoked concurrently with itself or the interrupt handler (although
429 * the interrupt handler may call this routine as part of request-
430 * completion handling). Unfortunely, it sometimes calls the scheduler
431 * in interrupt context which is a big NO! NO!.
433 static int qla4xxx_queuecommand(struct scsi_cmnd
*cmd
,
434 void (*done
)(struct scsi_cmnd
*))
436 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
437 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
438 struct iscsi_cls_session
*sess
= ddb_entry
->sess
;
443 cmd
->result
= DID_IMM_RETRY
<< 16;
444 goto qc_fail_command
;
447 rval
= iscsi_session_chkready(sess
);
450 goto qc_fail_command
;
453 if (atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
454 if (atomic_read(&ddb_entry
->state
) == DDB_STATE_DEAD
) {
455 cmd
->result
= DID_NO_CONNECT
<< 16;
456 goto qc_fail_command
;
458 return SCSI_MLQUEUE_TARGET_BUSY
;
461 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
))
464 spin_unlock_irq(ha
->host
->host_lock
);
466 srb
= qla4xxx_get_new_srb(ha
, ddb_entry
, cmd
, done
);
468 goto qc_host_busy_lock
;
470 rval
= qla4xxx_send_command_to_isp(ha
, srb
);
471 if (rval
!= QLA_SUCCESS
)
472 goto qc_host_busy_free_sp
;
474 spin_lock_irq(ha
->host
->host_lock
);
477 qc_host_busy_free_sp
:
478 qla4xxx_srb_free_dma(ha
, srb
);
479 mempool_free(srb
, ha
->srb_mempool
);
482 spin_lock_irq(ha
->host
->host_lock
);
485 return SCSI_MLQUEUE_HOST_BUSY
;
494 * qla4xxx_mem_free - frees memory allocated to adapter
495 * @ha: Pointer to host adapter structure.
497 * Frees memory previously allocated by qla4xxx_mem_alloc
499 static void qla4xxx_mem_free(struct scsi_qla_host
*ha
)
502 dma_free_coherent(&ha
->pdev
->dev
, ha
->queues_len
, ha
->queues
,
508 ha
->request_ring
= NULL
;
510 ha
->response_ring
= NULL
;
511 ha
->response_dma
= 0;
512 ha
->shadow_regs
= NULL
;
513 ha
->shadow_regs_dma
= 0;
517 mempool_destroy(ha
->srb_mempool
);
519 ha
->srb_mempool
= NULL
;
521 /* release io space registers */
524 pci_release_regions(ha
->pdev
);
528 * qla4xxx_mem_alloc - allocates memory for use by adapter.
529 * @ha: Pointer to host adapter structure
531 * Allocates DMA memory for request and response queues. Also allocates memory
534 static int qla4xxx_mem_alloc(struct scsi_qla_host
*ha
)
538 /* Allocate contiguous block of DMA memory for queues. */
539 ha
->queues_len
= ((REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
540 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
) +
541 sizeof(struct shadow_regs
) +
543 (PAGE_SIZE
- 1)) & ~(PAGE_SIZE
- 1);
544 ha
->queues
= dma_alloc_coherent(&ha
->pdev
->dev
, ha
->queues_len
,
545 &ha
->queues_dma
, GFP_KERNEL
);
546 if (ha
->queues
== NULL
) {
547 dev_warn(&ha
->pdev
->dev
,
548 "Memory Allocation failed - queues.\n");
550 goto mem_alloc_error_exit
;
552 memset(ha
->queues
, 0, ha
->queues_len
);
555 * As per RISC alignment requirements -- the bus-address must be a
556 * multiple of the request-ring size (in bytes).
559 if ((unsigned long)ha
->queues_dma
& (MEM_ALIGN_VALUE
- 1))
560 align
= MEM_ALIGN_VALUE
- ((unsigned long)ha
->queues_dma
&
561 (MEM_ALIGN_VALUE
- 1));
563 /* Update request and response queue pointers. */
564 ha
->request_dma
= ha
->queues_dma
+ align
;
565 ha
->request_ring
= (struct queue_entry
*) (ha
->queues
+ align
);
566 ha
->response_dma
= ha
->queues_dma
+ align
+
567 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
);
568 ha
->response_ring
= (struct queue_entry
*) (ha
->queues
+ align
+
569 (REQUEST_QUEUE_DEPTH
*
571 ha
->shadow_regs_dma
= ha
->queues_dma
+ align
+
572 (REQUEST_QUEUE_DEPTH
* QUEUE_SIZE
) +
573 (RESPONSE_QUEUE_DEPTH
* QUEUE_SIZE
);
574 ha
->shadow_regs
= (struct shadow_regs
*) (ha
->queues
+ align
+
575 (REQUEST_QUEUE_DEPTH
*
577 (RESPONSE_QUEUE_DEPTH
*
580 /* Allocate memory for srb pool. */
581 ha
->srb_mempool
= mempool_create(SRB_MIN_REQ
, mempool_alloc_slab
,
582 mempool_free_slab
, srb_cachep
);
583 if (ha
->srb_mempool
== NULL
) {
584 dev_warn(&ha
->pdev
->dev
,
585 "Memory Allocation failed - SRB Pool.\n");
587 goto mem_alloc_error_exit
;
592 mem_alloc_error_exit
:
593 qla4xxx_mem_free(ha
);
598 * qla4xxx_timer - checks every second for work to do.
599 * @ha: Pointer to host adapter structure.
601 static void qla4xxx_timer(struct scsi_qla_host
*ha
)
603 struct ddb_entry
*ddb_entry
, *dtemp
;
606 /* Search for relogin's to time-out and port down retry. */
607 list_for_each_entry_safe(ddb_entry
, dtemp
, &ha
->ddb_list
, list
) {
608 /* Count down time between sending relogins */
609 if (adapter_up(ha
) &&
610 !test_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
611 atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
) {
612 if (atomic_read(&ddb_entry
->retry_relogin_timer
) !=
614 if (atomic_read(&ddb_entry
->retry_relogin_timer
)
616 atomic_set(&ddb_entry
->
619 set_bit(DPC_RELOGIN_DEVICE
,
621 set_bit(DF_RELOGIN
, &ddb_entry
->flags
);
622 DEBUG2(printk("scsi%ld: %s: index [%d]"
624 ha
->host_no
, __func__
,
625 ddb_entry
->fw_ddb_index
));
627 atomic_dec(&ddb_entry
->
628 retry_relogin_timer
);
632 /* Wait for relogin to timeout */
633 if (atomic_read(&ddb_entry
->relogin_timer
) &&
634 (atomic_dec_and_test(&ddb_entry
->relogin_timer
) != 0)) {
636 * If the relogin times out and the device is
637 * still NOT ONLINE then try and relogin again.
639 if (atomic_read(&ddb_entry
->state
) !=
641 ddb_entry
->fw_ddb_device_state
==
642 DDB_DS_SESSION_FAILED
) {
643 /* Reset retry relogin timer */
644 atomic_inc(&ddb_entry
->relogin_retry_count
);
645 DEBUG2(printk("scsi%ld: index[%d] relogin"
646 " timed out-retrying"
649 ddb_entry
->fw_ddb_index
,
650 atomic_read(&ddb_entry
->
651 relogin_retry_count
))
654 DEBUG(printk("scsi%ld:%d:%d: index [%d] "
655 "initate relogin after"
657 ha
->host_no
, ddb_entry
->bus
,
659 ddb_entry
->fw_ddb_index
,
660 ddb_entry
->default_time2wait
+ 4)
663 atomic_set(&ddb_entry
->retry_relogin_timer
,
664 ddb_entry
->default_time2wait
+ 4);
669 /* Check for heartbeat interval. */
670 if (ha
->firmware_options
& FWOPT_HEARTBEAT_ENABLE
&&
671 ha
->heartbeat_interval
!= 0) {
672 ha
->seconds_since_last_heartbeat
++;
673 if (ha
->seconds_since_last_heartbeat
>
674 ha
->heartbeat_interval
+ 2)
675 set_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
679 /* Wakeup the dpc routine for this adapter, if needed. */
681 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
682 test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
) ||
683 test_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
) ||
684 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
) ||
685 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
686 test_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
) ||
687 test_bit(DPC_AEN
, &ha
->dpc_flags
)) &&
689 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
690 " - dpc flags = 0x%lx\n",
691 ha
->host_no
, __func__
, ha
->dpc_flags
));
692 queue_work(ha
->dpc_thread
, &ha
->dpc_work
);
695 /* Reschedule timer thread to call us back in one second */
696 mod_timer(&ha
->timer
, jiffies
+ HZ
);
698 DEBUG2(ha
->seconds_since_last_intr
++);
702 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
703 * @ha: Pointer to host adapter structure.
705 * This routine stalls the driver until all outstanding commands are returned.
706 * Caller must release the Hardware Lock prior to calling this routine.
708 static int qla4xxx_cmd_wait(struct scsi_qla_host
*ha
)
711 int stat
= QLA_SUCCESS
;
713 struct scsi_cmnd
*cmd
;
714 int wait_cnt
= WAIT_CMD_TOV
; /*
715 * Initialized for 30 seconds as we
716 * expect all commands to retuned
721 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
722 /* Find a command that hasn't completed. */
723 for (index
= 0; index
< ha
->host
->can_queue
; index
++) {
724 cmd
= scsi_host_find_tag(ha
->host
, index
);
728 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
730 /* If No Commands are pending, wait is complete */
731 if (index
== ha
->host
->can_queue
) {
735 /* If we timed out on waiting for commands to come back
744 } /* End of While (wait_cnt) */
749 void qla4xxx_hw_reset(struct scsi_qla_host
*ha
)
751 uint32_t ctrl_status
;
752 unsigned long flags
= 0;
754 DEBUG2(printk(KERN_ERR
"scsi%ld: %s\n", ha
->host_no
, __func__
));
756 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
759 * If the SCSI Reset Interrupt bit is set, clear it.
760 * Otherwise, the Soft Reset won't work.
762 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
763 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0)
764 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
766 /* Issue Soft Reset */
767 writel(set_rmask(CSR_SOFT_RESET
), &ha
->reg
->ctrl_status
);
768 readl(&ha
->reg
->ctrl_status
);
770 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
774 * qla4xxx_soft_reset - performs soft reset.
775 * @ha: Pointer to host adapter structure.
777 int qla4xxx_soft_reset(struct scsi_qla_host
*ha
)
779 uint32_t max_wait_time
;
780 unsigned long flags
= 0;
781 int status
= QLA_ERROR
;
782 uint32_t ctrl_status
;
784 qla4xxx_hw_reset(ha
);
786 /* Wait until the Network Reset Intr bit is cleared */
787 max_wait_time
= RESET_INTR_TOV
;
789 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
790 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
791 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
793 if ((ctrl_status
& CSR_NET_RESET_INTR
) == 0)
797 } while ((--max_wait_time
));
799 if ((ctrl_status
& CSR_NET_RESET_INTR
) != 0) {
800 DEBUG2(printk(KERN_WARNING
801 "scsi%ld: Network Reset Intr not cleared by "
802 "Network function, clearing it now!\n",
804 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
805 writel(set_rmask(CSR_NET_RESET_INTR
), &ha
->reg
->ctrl_status
);
806 readl(&ha
->reg
->ctrl_status
);
807 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
810 /* Wait until the firmware tells us the Soft Reset is done */
811 max_wait_time
= SOFT_RESET_TOV
;
813 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
814 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
815 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
817 if ((ctrl_status
& CSR_SOFT_RESET
) == 0) {
818 status
= QLA_SUCCESS
;
823 } while ((--max_wait_time
));
826 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
827 * after the soft reset has taken place.
829 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
830 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
831 if ((ctrl_status
& CSR_SCSI_RESET_INTR
) != 0) {
832 writel(set_rmask(CSR_SCSI_RESET_INTR
), &ha
->reg
->ctrl_status
);
833 readl(&ha
->reg
->ctrl_status
);
835 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
837 /* If soft reset fails then most probably the bios on other
838 * function is also enabled.
839 * Since the initialization is sequential the other fn
840 * wont be able to acknowledge the soft reset.
841 * Issue a force soft reset to workaround this scenario.
843 if (max_wait_time
== 0) {
844 /* Issue Force Soft Reset */
845 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
846 writel(set_rmask(CSR_FORCE_SOFT_RESET
), &ha
->reg
->ctrl_status
);
847 readl(&ha
->reg
->ctrl_status
);
848 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
849 /* Wait until the firmware tells us the Soft Reset is done */
850 max_wait_time
= SOFT_RESET_TOV
;
852 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
853 ctrl_status
= readw(&ha
->reg
->ctrl_status
);
854 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
856 if ((ctrl_status
& CSR_FORCE_SOFT_RESET
) == 0) {
857 status
= QLA_SUCCESS
;
862 } while ((--max_wait_time
));
869 * qla4xxx_flush_active_srbs - returns all outstanding i/o requests to O.S.
870 * @ha: Pointer to host adapter structure.
872 * This routine is called just prior to a HARD RESET to return all
873 * outstanding commands back to the Operating System.
874 * Caller should make sure that the following locks are released
875 * before this calling routine: Hardware lock, and io_request_lock.
877 static void qla4xxx_flush_active_srbs(struct scsi_qla_host
*ha
)
883 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
884 for (i
= 0; i
< ha
->host
->can_queue
; i
++) {
885 srb
= qla4xxx_del_from_active_array(ha
, i
);
887 srb
->cmd
->result
= DID_RESET
<< 16;
888 qla4xxx_srb_compl(ha
, srb
);
891 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
896 * qla4xxx_recover_adapter - recovers adapter after a fatal error
897 * @ha: Pointer to host adapter structure.
898 * @renew_ddb_list: Indicates what to do with the adapter's ddb list
900 * renew_ddb_list value can be 0=preserve ddb list, 1=destroy and rebuild
903 static int qla4xxx_recover_adapter(struct scsi_qla_host
*ha
,
904 uint8_t renew_ddb_list
)
908 /* Stall incoming I/O until we are done */
909 clear_bit(AF_ONLINE
, &ha
->flags
);
911 DEBUG2(printk("scsi%ld: %s calling qla4xxx_cmd_wait\n", ha
->host_no
,
914 /* Wait for outstanding commands to complete.
915 * Stalls the driver for max 30 secs
917 status
= qla4xxx_cmd_wait(ha
);
919 qla4xxx_disable_intrs(ha
);
921 /* Flush any pending ddb changed AENs */
922 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
924 qla4xxx_flush_active_srbs(ha
);
926 /* Reset the firmware. If successful, function
927 * returns with ISP interrupts enabled.
929 DEBUG2(printk("scsi%ld: %s - Performing soft reset..\n",
930 ha
->host_no
, __func__
));
931 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
)
932 status
= qla4xxx_soft_reset(ha
);
936 /* Flush any pending ddb changed AENs */
937 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
939 /* Re-initialize firmware. If successful, function returns
940 * with ISP interrupts enabled */
941 if (status
== QLA_SUCCESS
) {
942 DEBUG2(printk("scsi%ld: %s - Initializing adapter..\n",
943 ha
->host_no
, __func__
));
945 /* If successful, AF_ONLINE flag set in
946 * qla4xxx_initialize_adapter */
947 status
= qla4xxx_initialize_adapter(ha
, renew_ddb_list
);
950 /* Failed adapter initialization?
951 * Retry reset_ha only if invoked via DPC (DPC_RESET_HA) */
952 if ((test_bit(AF_ONLINE
, &ha
->flags
) == 0) &&
953 (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))) {
954 /* Adapter initialization failed, see if we can retry
955 * resetting the ha */
956 if (!test_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
)) {
957 ha
->retry_reset_ha_cnt
= MAX_RESET_HA_RETRIES
;
958 DEBUG2(printk("scsi%ld: recover adapter - retrying "
959 "(%d) more times\n", ha
->host_no
,
960 ha
->retry_reset_ha_cnt
));
961 set_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
964 if (ha
->retry_reset_ha_cnt
> 0) {
965 /* Schedule another Reset HA--DPC will retry */
966 ha
->retry_reset_ha_cnt
--;
967 DEBUG2(printk("scsi%ld: recover adapter - "
968 "retry remaining %d\n",
970 ha
->retry_reset_ha_cnt
));
974 if (ha
->retry_reset_ha_cnt
== 0) {
975 /* Recover adapter retries have been exhausted.
977 DEBUG2(printk("scsi%ld: recover adapter "
978 "failed - board disabled\n",
980 qla4xxx_flush_active_srbs(ha
);
981 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
982 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
983 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST
,
989 clear_bit(DPC_RESET_HA
, &ha
->dpc_flags
);
990 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
);
991 clear_bit(DPC_RETRY_RESET_HA
, &ha
->dpc_flags
);
994 ha
->adapter_error_count
++;
996 if (status
== QLA_SUCCESS
)
997 qla4xxx_enable_intrs(ha
);
999 DEBUG2(printk("scsi%ld: recover adapter .. DONE\n", ha
->host_no
));
1004 * qla4xxx_do_dpc - dpc routine
1005 * @data: in our case pointer to adapter structure
1007 * This routine is a task that is schedule by the interrupt handler
1008 * to perform the background processing for interrupts. We put it
1009 * on a task queue that is consumed whenever the scheduler runs; that's
1010 * so you can do anything (i.e. put the process to sleep etc). In fact,
1011 * the mid-level tries to sleep when it reaches the driver threshold
1012 * "host->can_queue". This can cause a panic if we were in our interrupt code.
1014 static void qla4xxx_do_dpc(struct work_struct
*work
)
1016 struct scsi_qla_host
*ha
=
1017 container_of(work
, struct scsi_qla_host
, dpc_work
);
1018 struct ddb_entry
*ddb_entry
, *dtemp
;
1019 int status
= QLA_ERROR
;
1021 DEBUG2(printk("scsi%ld: %s: DPC handler waking up."
1022 "flags = 0x%08lx, dpc_flags = 0x%08lx ctrl_stat = 0x%08x\n",
1023 ha
->host_no
, __func__
, ha
->flags
, ha
->dpc_flags
,
1024 readw(&ha
->reg
->ctrl_status
)));
1026 /* Initialization not yet finished. Don't do anything yet. */
1027 if (!test_bit(AF_INIT_DONE
, &ha
->flags
))
1030 if (adapter_up(ha
) ||
1031 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
) ||
1032 test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
) ||
1033 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
)) {
1034 if (test_bit(DPC_RESET_HA_DESTROY_DDB_LIST
, &ha
->dpc_flags
) ||
1035 test_bit(DPC_RESET_HA
, &ha
->dpc_flags
))
1036 qla4xxx_recover_adapter(ha
, PRESERVE_DDB_LIST
);
1038 if (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
)) {
1039 uint8_t wait_time
= RESET_INTR_TOV
;
1041 while ((readw(&ha
->reg
->ctrl_status
) &
1042 (CSR_SOFT_RESET
| CSR_FORCE_SOFT_RESET
)) != 0) {
1043 if (--wait_time
== 0)
1048 DEBUG2(printk("scsi%ld: %s: SR|FSR "
1049 "bit not cleared-- resetting\n",
1050 ha
->host_no
, __func__
));
1051 qla4xxx_flush_active_srbs(ha
);
1052 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
) {
1053 qla4xxx_process_aen(ha
, FLUSH_DDB_CHANGED_AENS
);
1054 status
= qla4xxx_initialize_adapter(ha
,
1057 clear_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
);
1058 if (status
== QLA_SUCCESS
)
1059 qla4xxx_enable_intrs(ha
);
1063 /* ---- process AEN? --- */
1064 if (test_and_clear_bit(DPC_AEN
, &ha
->dpc_flags
))
1065 qla4xxx_process_aen(ha
, PROCESS_ALL_AENS
);
1067 /* ---- Get DHCP IP Address? --- */
1068 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR
, &ha
->dpc_flags
))
1069 qla4xxx_get_dhcp_ip_address(ha
);
1071 /* ---- relogin device? --- */
1072 if (adapter_up(ha
) &&
1073 test_and_clear_bit(DPC_RELOGIN_DEVICE
, &ha
->dpc_flags
)) {
1074 list_for_each_entry_safe(ddb_entry
, dtemp
,
1075 &ha
->ddb_list
, list
) {
1076 if (test_and_clear_bit(DF_RELOGIN
, &ddb_entry
->flags
) &&
1077 atomic_read(&ddb_entry
->state
) != DDB_STATE_ONLINE
)
1078 qla4xxx_relogin_device(ha
, ddb_entry
);
1081 * If mbx cmd times out there is no point
1082 * in continuing further.
1083 * With large no of targets this can hang
1086 if (test_bit(DPC_RESET_HA
, &ha
->dpc_flags
)) {
1087 printk(KERN_WARNING
"scsi%ld: %s: "
1088 "need to reset hba\n",
1089 ha
->host_no
, __func__
);
1097 * qla4xxx_free_adapter - release the adapter
1098 * @ha: pointer to adapter structure
1100 static void qla4xxx_free_adapter(struct scsi_qla_host
*ha
)
1103 if (test_bit(AF_INTERRUPTS_ON
, &ha
->flags
)) {
1104 /* Turn-off interrupts on the card. */
1105 qla4xxx_disable_intrs(ha
);
1108 /* Kill the kernel thread for this host */
1110 destroy_workqueue(ha
->dpc_thread
);
1112 /* Issue Soft Reset to put firmware in unknown state */
1113 if (ql4xxx_lock_drvr_wait(ha
) == QLA_SUCCESS
)
1114 qla4xxx_hw_reset(ha
);
1116 /* Remove timer thread, if present */
1117 if (ha
->timer_active
)
1118 qla4xxx_stop_timer(ha
);
1120 /* Detach interrupts */
1121 if (test_and_clear_bit(AF_IRQ_ATTACHED
, &ha
->flags
))
1122 free_irq(ha
->pdev
->irq
, ha
);
1124 /* free extra memory */
1125 qla4xxx_mem_free(ha
);
1127 pci_disable_device(ha
->pdev
);
1132 * qla4xxx_iospace_config - maps registers
1133 * @ha: pointer to adapter structure
1135 * This routines maps HBA's registers from the pci address space
1136 * into the kernel virtual address space for memory mapped i/o.
1138 static int qla4xxx_iospace_config(struct scsi_qla_host
*ha
)
1140 unsigned long pio
, pio_len
, pio_flags
;
1141 unsigned long mmio
, mmio_len
, mmio_flags
;
1143 pio
= pci_resource_start(ha
->pdev
, 0);
1144 pio_len
= pci_resource_len(ha
->pdev
, 0);
1145 pio_flags
= pci_resource_flags(ha
->pdev
, 0);
1146 if (pio_flags
& IORESOURCE_IO
) {
1147 if (pio_len
< MIN_IOBASE_LEN
) {
1148 dev_warn(&ha
->pdev
->dev
,
1149 "Invalid PCI I/O region size\n");
1153 dev_warn(&ha
->pdev
->dev
, "region #0 not a PIO resource\n");
1157 /* Use MMIO operations for all accesses. */
1158 mmio
= pci_resource_start(ha
->pdev
, 1);
1159 mmio_len
= pci_resource_len(ha
->pdev
, 1);
1160 mmio_flags
= pci_resource_flags(ha
->pdev
, 1);
1162 if (!(mmio_flags
& IORESOURCE_MEM
)) {
1163 dev_err(&ha
->pdev
->dev
,
1164 "region #0 not an MMIO resource, aborting\n");
1166 goto iospace_error_exit
;
1168 if (mmio_len
< MIN_IOBASE_LEN
) {
1169 dev_err(&ha
->pdev
->dev
,
1170 "Invalid PCI mem region size, aborting\n");
1171 goto iospace_error_exit
;
1174 if (pci_request_regions(ha
->pdev
, DRIVER_NAME
)) {
1175 dev_warn(&ha
->pdev
->dev
,
1176 "Failed to reserve PIO/MMIO regions\n");
1178 goto iospace_error_exit
;
1181 ha
->pio_address
= pio
;
1182 ha
->pio_length
= pio_len
;
1183 ha
->reg
= ioremap(mmio
, MIN_IOBASE_LEN
);
1185 dev_err(&ha
->pdev
->dev
,
1186 "cannot remap MMIO, aborting\n");
1188 goto iospace_error_exit
;
1198 * qla4xxx_probe_adapter - callback function to probe HBA
1199 * @pdev: pointer to pci_dev structure
1200 * @pci_device_id: pointer to pci_device entry
1202 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
1203 * It returns zero if successful. It also initializes all data necessary for
1206 static int __devinit
qla4xxx_probe_adapter(struct pci_dev
*pdev
,
1207 const struct pci_device_id
*ent
)
1209 int ret
= -ENODEV
, status
;
1210 struct Scsi_Host
*host
;
1211 struct scsi_qla_host
*ha
;
1212 uint8_t init_retry_count
= 0;
1215 if (pci_enable_device(pdev
))
1218 host
= scsi_host_alloc(&qla4xxx_driver_template
, sizeof(*ha
));
1221 "qla4xxx: Couldn't allocate host from scsi layer!\n");
1222 goto probe_disable_device
;
1225 /* Clear our data area */
1226 ha
= (struct scsi_qla_host
*) host
->hostdata
;
1227 memset(ha
, 0, sizeof(*ha
));
1229 /* Save the information from PCI BIOS. */
1232 ha
->host_no
= host
->host_no
;
1234 /* Configure PCI I/O space. */
1235 ret
= qla4xxx_iospace_config(ha
);
1239 dev_info(&ha
->pdev
->dev
, "Found an ISP%04x, irq %d, iobase 0x%p\n",
1240 pdev
->device
, pdev
->irq
, ha
->reg
);
1242 qla4xxx_config_dma_addressing(ha
);
1244 /* Initialize lists and spinlocks. */
1245 INIT_LIST_HEAD(&ha
->ddb_list
);
1246 INIT_LIST_HEAD(&ha
->free_srb_q
);
1248 mutex_init(&ha
->mbox_sem
);
1250 spin_lock_init(&ha
->hardware_lock
);
1252 /* Allocate dma buffers */
1253 if (qla4xxx_mem_alloc(ha
)) {
1254 dev_warn(&ha
->pdev
->dev
,
1255 "[ERROR] Failed to allocate memory for adapter\n");
1262 * Initialize the Host adapter request/response queues and
1264 * NOTE: interrupts enabled upon successful completion
1266 status
= qla4xxx_initialize_adapter(ha
, REBUILD_DDB_LIST
);
1267 while (status
== QLA_ERROR
&& init_retry_count
++ < MAX_INIT_RETRIES
) {
1268 DEBUG2(printk("scsi: %s: retrying adapter initialization "
1269 "(%d)\n", __func__
, init_retry_count
));
1270 qla4xxx_soft_reset(ha
);
1271 status
= qla4xxx_initialize_adapter(ha
, REBUILD_DDB_LIST
);
1273 if (status
== QLA_ERROR
) {
1274 dev_warn(&ha
->pdev
->dev
, "Failed to initialize adapter\n");
1280 host
->cmd_per_lun
= 3;
1281 host
->max_channel
= 0;
1282 host
->max_lun
= MAX_LUNS
- 1;
1283 host
->max_id
= MAX_TARGETS
;
1284 host
->max_cmd_len
= IOCB_MAX_CDB_LEN
;
1285 host
->can_queue
= MAX_SRBS
;
1286 host
->transportt
= qla4xxx_scsi_transport
;
1288 ret
= scsi_init_shared_tag_map(host
, MAX_SRBS
);
1290 dev_warn(&ha
->pdev
->dev
, "scsi_init_shared_tag_map failed\n");
1294 /* Startup the kernel thread for this host adapter. */
1295 DEBUG2(printk("scsi: %s: Starting kernel thread for "
1296 "qla4xxx_dpc\n", __func__
));
1297 sprintf(buf
, "qla4xxx_%lu_dpc", ha
->host_no
);
1298 ha
->dpc_thread
= create_singlethread_workqueue(buf
);
1299 if (!ha
->dpc_thread
) {
1300 dev_warn(&ha
->pdev
->dev
, "Unable to start DPC thread!\n");
1304 INIT_WORK(&ha
->dpc_work
, qla4xxx_do_dpc
);
1306 ret
= request_irq(pdev
->irq
, qla4xxx_intr_handler
,
1307 IRQF_DISABLED
| IRQF_SHARED
, "qla4xxx", ha
);
1309 dev_warn(&ha
->pdev
->dev
, "Failed to reserve interrupt %d"
1310 " already in use.\n", pdev
->irq
);
1313 set_bit(AF_IRQ_ATTACHED
, &ha
->flags
);
1314 host
->irq
= pdev
->irq
;
1315 DEBUG(printk("scsi%d: irq %d attached\n", ha
->host_no
, ha
->pdev
->irq
));
1317 qla4xxx_enable_intrs(ha
);
1319 /* Start timer thread. */
1320 qla4xxx_start_timer(ha
, qla4xxx_timer
, 1);
1322 set_bit(AF_INIT_DONE
, &ha
->flags
);
1324 pci_set_drvdata(pdev
, ha
);
1326 ret
= scsi_add_host(host
, &pdev
->dev
);
1331 " QLogic iSCSI HBA Driver version: %s\n"
1332 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
1333 qla4xxx_version_str
, ha
->pdev
->device
, pci_name(ha
->pdev
),
1334 ha
->host_no
, ha
->firmware_version
[0], ha
->firmware_version
[1],
1335 ha
->patch_number
, ha
->build_number
);
1336 scsi_scan_host(host
);
1340 qla4xxx_free_adapter(ha
);
1341 scsi_host_put(ha
->host
);
1343 probe_disable_device
:
1344 pci_disable_device(pdev
);
1350 * qla4xxx_remove_adapter - calback function to remove adapter.
1351 * @pci_dev: PCI device pointer
1353 static void __devexit
qla4xxx_remove_adapter(struct pci_dev
*pdev
)
1355 struct scsi_qla_host
*ha
;
1357 ha
= pci_get_drvdata(pdev
);
1359 qla4xxx_disable_intrs(ha
);
1361 while (test_bit(DPC_RESET_HA_INTR
, &ha
->dpc_flags
))
1364 /* remove devs from iscsi_sessions to scsi_devices */
1365 qla4xxx_free_ddb_list(ha
);
1367 scsi_remove_host(ha
->host
);
1369 qla4xxx_free_adapter(ha
);
1371 scsi_host_put(ha
->host
);
1373 pci_set_drvdata(pdev
, NULL
);
1377 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
1380 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1381 * supported addressing method.
1383 static void qla4xxx_config_dma_addressing(struct scsi_qla_host
*ha
)
1387 /* Update our PCI device dma_mask for full 64 bit mask */
1388 if (pci_set_dma_mask(ha
->pdev
, DMA_BIT_MASK(64)) == 0) {
1389 if (pci_set_consistent_dma_mask(ha
->pdev
, DMA_BIT_MASK(64))) {
1390 dev_dbg(&ha
->pdev
->dev
,
1391 "Failed to set 64 bit PCI consistent mask; "
1393 retval
= pci_set_consistent_dma_mask(ha
->pdev
,
1397 retval
= pci_set_dma_mask(ha
->pdev
, DMA_BIT_MASK(32));
1400 static int qla4xxx_slave_alloc(struct scsi_device
*sdev
)
1402 struct iscsi_cls_session
*sess
= starget_to_session(sdev
->sdev_target
);
1403 struct ddb_entry
*ddb
= sess
->dd_data
;
1405 sdev
->hostdata
= ddb
;
1406 sdev
->tagged_supported
= 1;
1407 scsi_activate_tcq(sdev
, QL4_DEF_QDEPTH
);
1411 static int qla4xxx_slave_configure(struct scsi_device
*sdev
)
1413 sdev
->tagged_supported
= 1;
1417 static void qla4xxx_slave_destroy(struct scsi_device
*sdev
)
1419 scsi_deactivate_tcq(sdev
, 1);
1423 * qla4xxx_del_from_active_array - returns an active srb
1424 * @ha: Pointer to host adapter structure.
1425 * @index: index into the active_array
1427 * This routine removes and returns the srb at the specified index
1429 struct srb
* qla4xxx_del_from_active_array(struct scsi_qla_host
*ha
, uint32_t index
)
1431 struct srb
*srb
= NULL
;
1432 struct scsi_cmnd
*cmd
;
1434 if (!(cmd
= scsi_host_find_tag(ha
->host
, index
)))
1437 if (!(srb
= (struct srb
*)cmd
->host_scribble
))
1440 /* update counters */
1441 if (srb
->flags
& SRB_DMA_VALID
) {
1442 ha
->req_q_count
+= srb
->iocb_cnt
;
1443 ha
->iocb_cnt
-= srb
->iocb_cnt
;
1445 srb
->cmd
->host_scribble
= NULL
;
1451 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
1452 * @ha: actual ha whose done queue will contain the comd returned by firmware.
1453 * @cmd: Scsi Command to wait on.
1455 * This routine waits for the command to be returned by the Firmware
1456 * for some max time.
1458 static int qla4xxx_eh_wait_on_command(struct scsi_qla_host
*ha
,
1459 struct scsi_cmnd
*cmd
)
1463 uint32_t max_wait_time
= EH_WAIT_CMD_TOV
;
1466 /* Checking to see if its returned to OS */
1467 rp
= (struct srb
*) cmd
->SCp
.ptr
;
1474 } while (max_wait_time
--);
1480 * qla4xxx_wait_for_hba_online - waits for HBA to come online
1481 * @ha: Pointer to host adapter structure
1483 static int qla4xxx_wait_for_hba_online(struct scsi_qla_host
*ha
)
1485 unsigned long wait_online
;
1487 wait_online
= jiffies
+ (30 * HZ
);
1488 while (time_before(jiffies
, wait_online
)) {
1492 else if (ha
->retry_reset_ha_cnt
== 0)
1502 * qla4xxx_eh_wait_for_commands - wait for active cmds to finish.
1503 * @ha: pointer to HBA
1507 * This function waits for all outstanding commands to a lun to complete. It
1508 * returns 0 if all pending commands are returned and 1 otherwise.
1510 static int qla4xxx_eh_wait_for_commands(struct scsi_qla_host
*ha
,
1511 struct scsi_target
*stgt
,
1512 struct scsi_device
*sdev
)
1516 struct scsi_cmnd
*cmd
;
1519 * Waiting for all commands for the designated target or dev
1520 * in the active array
1522 for (cnt
= 0; cnt
< ha
->host
->can_queue
; cnt
++) {
1523 cmd
= scsi_host_find_tag(ha
->host
, cnt
);
1524 if (cmd
&& stgt
== scsi_target(cmd
->device
) &&
1525 (!sdev
|| sdev
== cmd
->device
)) {
1526 if (!qla4xxx_eh_wait_on_command(ha
, cmd
)) {
1536 * qla4xxx_eh_device_reset - callback for target reset.
1537 * @cmd: Pointer to Linux's SCSI command structure
1539 * This routine is called by the Linux OS to reset all luns on the
1542 static int qla4xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
1544 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
1545 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
1546 int ret
= FAILED
, stat
;
1551 dev_info(&ha
->pdev
->dev
,
1552 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha
->host_no
,
1553 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
1555 DEBUG2(printk(KERN_INFO
1556 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
1557 "dpc_flags=%lx, status=%x allowed=%d\n", ha
->host_no
,
1558 cmd
, jiffies
, cmd
->request
->timeout
/ HZ
,
1559 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
1561 /* FIXME: wait for hba to go online */
1562 stat
= qla4xxx_reset_lun(ha
, ddb_entry
, cmd
->device
->lun
);
1563 if (stat
!= QLA_SUCCESS
) {
1564 dev_info(&ha
->pdev
->dev
, "DEVICE RESET FAILED. %d\n", stat
);
1565 goto eh_dev_reset_done
;
1568 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
1570 dev_info(&ha
->pdev
->dev
,
1571 "DEVICE RESET FAILED - waiting for "
1573 goto eh_dev_reset_done
;
1577 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
1578 MM_LUN_RESET
) != QLA_SUCCESS
)
1579 goto eh_dev_reset_done
;
1581 dev_info(&ha
->pdev
->dev
,
1582 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
1583 ha
->host_no
, cmd
->device
->channel
, cmd
->device
->id
,
1594 * qla4xxx_eh_target_reset - callback for target reset.
1595 * @cmd: Pointer to Linux's SCSI command structure
1597 * This routine is called by the Linux OS to reset the target.
1599 static int qla4xxx_eh_target_reset(struct scsi_cmnd
*cmd
)
1601 struct scsi_qla_host
*ha
= to_qla_host(cmd
->device
->host
);
1602 struct ddb_entry
*ddb_entry
= cmd
->device
->hostdata
;
1608 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1609 "WARM TARGET RESET ISSUED.\n");
1611 DEBUG2(printk(KERN_INFO
1612 "scsi%ld: TARGET_DEVICE_RESET cmd=%p jiffies = 0x%lx, "
1613 "to=%x,dpc_flags=%lx, status=%x allowed=%d\n",
1614 ha
->host_no
, cmd
, jiffies
, cmd
->request
->timeout
/ HZ
,
1615 ha
->dpc_flags
, cmd
->result
, cmd
->allowed
));
1617 stat
= qla4xxx_reset_target(ha
, ddb_entry
);
1618 if (stat
!= QLA_SUCCESS
) {
1619 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1620 "WARM TARGET RESET FAILED.\n");
1624 if (qla4xxx_eh_wait_for_commands(ha
, scsi_target(cmd
->device
),
1626 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1627 "WARM TARGET DEVICE RESET FAILED - "
1628 "waiting for commands.\n");
1633 if (qla4xxx_send_marker_iocb(ha
, ddb_entry
, cmd
->device
->lun
,
1634 MM_TGT_WARM_RESET
) != QLA_SUCCESS
) {
1635 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1636 "WARM TARGET DEVICE RESET FAILED - "
1637 "marker iocb failed.\n");
1641 starget_printk(KERN_INFO
, scsi_target(cmd
->device
),
1642 "WARM TARGET RESET SUCCEEDED.\n");
1647 * qla4xxx_eh_host_reset - kernel callback
1648 * @cmd: Pointer to Linux's SCSI command structure
1650 * This routine is invoked by the Linux kernel to perform fatal error
1651 * recovery on the specified adapter.
1653 static int qla4xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
1655 int return_status
= FAILED
;
1656 struct scsi_qla_host
*ha
;
1658 ha
= (struct scsi_qla_host
*) cmd
->device
->host
->hostdata
;
1660 dev_info(&ha
->pdev
->dev
,
1661 "scsi(%ld:%d:%d:%d): HOST RESET ISSUED.\n", ha
->host_no
,
1662 cmd
->device
->channel
, cmd
->device
->id
, cmd
->device
->lun
);
1664 if (qla4xxx_wait_for_hba_online(ha
) != QLA_SUCCESS
) {
1665 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
1666 "DEAD.\n", ha
->host_no
, cmd
->device
->channel
,
1672 /* make sure the dpc thread is stopped while we reset the hba */
1673 clear_bit(AF_ONLINE
, &ha
->flags
);
1674 flush_workqueue(ha
->dpc_thread
);
1676 if (qla4xxx_recover_adapter(ha
, PRESERVE_DDB_LIST
) == QLA_SUCCESS
)
1677 return_status
= SUCCESS
;
1679 dev_info(&ha
->pdev
->dev
, "HOST RESET %s.\n",
1680 return_status
== FAILED
? "FAILED" : "SUCCEDED");
1682 return return_status
;
1686 static struct pci_device_id qla4xxx_pci_tbl
[] = {
1688 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1689 .device
= PCI_DEVICE_ID_QLOGIC_ISP4010
,
1690 .subvendor
= PCI_ANY_ID
,
1691 .subdevice
= PCI_ANY_ID
,
1694 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1695 .device
= PCI_DEVICE_ID_QLOGIC_ISP4022
,
1696 .subvendor
= PCI_ANY_ID
,
1697 .subdevice
= PCI_ANY_ID
,
1700 .vendor
= PCI_VENDOR_ID_QLOGIC
,
1701 .device
= PCI_DEVICE_ID_QLOGIC_ISP4032
,
1702 .subvendor
= PCI_ANY_ID
,
1703 .subdevice
= PCI_ANY_ID
,
1707 MODULE_DEVICE_TABLE(pci
, qla4xxx_pci_tbl
);
1709 static struct pci_driver qla4xxx_pci_driver
= {
1710 .name
= DRIVER_NAME
,
1711 .id_table
= qla4xxx_pci_tbl
,
1712 .probe
= qla4xxx_probe_adapter
,
1713 .remove
= qla4xxx_remove_adapter
,
1716 static int __init
qla4xxx_module_init(void)
1720 /* Allocate cache for SRBs. */
1721 srb_cachep
= kmem_cache_create("qla4xxx_srbs", sizeof(struct srb
), 0,
1722 SLAB_HWCACHE_ALIGN
, NULL
);
1723 if (srb_cachep
== NULL
) {
1725 "%s: Unable to allocate SRB cache..."
1726 "Failing load!\n", DRIVER_NAME
);
1731 /* Derive version string. */
1732 strcpy(qla4xxx_version_str
, QLA4XXX_DRIVER_VERSION
);
1733 if (ql4xextended_error_logging
)
1734 strcat(qla4xxx_version_str
, "-debug");
1736 qla4xxx_scsi_transport
=
1737 iscsi_register_transport(&qla4xxx_iscsi_transport
);
1738 if (!qla4xxx_scsi_transport
){
1740 goto release_srb_cache
;
1743 ret
= pci_register_driver(&qla4xxx_pci_driver
);
1745 goto unregister_transport
;
1747 printk(KERN_INFO
"QLogic iSCSI HBA Driver\n");
1750 unregister_transport
:
1751 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
1753 kmem_cache_destroy(srb_cachep
);
1758 static void __exit
qla4xxx_module_exit(void)
1761 pci_unregister_driver(&qla4xxx_pci_driver
);
1762 iscsi_unregister_transport(&qla4xxx_iscsi_transport
);
1763 kmem_cache_destroy(srb_cachep
);
1766 module_init(qla4xxx_module_init
);
1767 module_exit(qla4xxx_module_exit
);
1769 MODULE_AUTHOR("QLogic Corporation");
1770 MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
1771 MODULE_LICENSE("GPL");
1772 MODULE_VERSION(QLA4XXX_DRIVER_VERSION
);