2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2008 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/moduleparam.h>
10 #include <linux/vmalloc.h>
11 #include <linux/delay.h>
12 #include <linux/kthread.h>
13 #include <linux/mutex.h>
15 #include <scsi/scsi_tcq.h>
16 #include <scsi/scsicam.h>
17 #include <scsi/scsi_transport.h>
18 #include <scsi/scsi_transport_fc.h>
23 char qla2x00_version_str
[40];
26 * SRB allocation cache
28 static struct kmem_cache
*srb_cachep
;
30 int ql2xlogintimeout
= 20;
31 module_param(ql2xlogintimeout
, int, S_IRUGO
|S_IRUSR
);
32 MODULE_PARM_DESC(ql2xlogintimeout
,
33 "Login timeout value in seconds.");
35 int qlport_down_retry
;
36 module_param(qlport_down_retry
, int, S_IRUGO
|S_IRUSR
);
37 MODULE_PARM_DESC(qlport_down_retry
,
38 "Maximum number of command retries to a port that returns "
39 "a PORT-DOWN status.");
41 int ql2xplogiabsentdevice
;
42 module_param(ql2xplogiabsentdevice
, int, S_IRUGO
|S_IWUSR
);
43 MODULE_PARM_DESC(ql2xplogiabsentdevice
,
44 "Option to enable PLOGI to devices that are not present after "
45 "a Fabric scan. This is needed for several broken switches. "
46 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
48 int ql2xloginretrycount
= 0;
49 module_param(ql2xloginretrycount
, int, S_IRUGO
|S_IRUSR
);
50 MODULE_PARM_DESC(ql2xloginretrycount
,
51 "Specify an alternate value for the NVRAM login retry count.");
53 int ql2xallocfwdump
= 1;
54 module_param(ql2xallocfwdump
, int, S_IRUGO
|S_IRUSR
);
55 MODULE_PARM_DESC(ql2xallocfwdump
,
56 "Option to enable allocation of memory for a firmware dump "
57 "during HBA initialization. Memory allocation requirements "
58 "vary by ISP type. Default is 1 - allocate memory.");
60 int ql2xextended_error_logging
;
61 module_param(ql2xextended_error_logging
, int, S_IRUGO
|S_IWUSR
);
62 MODULE_PARM_DESC(ql2xextended_error_logging
,
63 "Option to enable extended error logging, "
64 "Default is 0 - no logging. 1 - log errors.");
66 static void qla2x00_free_device(scsi_qla_host_t
*);
69 module_param(ql2xfdmienable
, int, S_IRUGO
|S_IRUSR
);
70 MODULE_PARM_DESC(ql2xfdmienable
,
71 "Enables FDMI registratons "
72 "Default is 0 - no FDMI. 1 - perfom FDMI.");
74 #define MAX_Q_DEPTH 32
75 static int ql2xmaxqdepth
= MAX_Q_DEPTH
;
76 module_param(ql2xmaxqdepth
, int, S_IRUGO
|S_IWUSR
);
77 MODULE_PARM_DESC(ql2xmaxqdepth
,
78 "Maximum queue depth to report for target devices.");
80 int ql2xqfullrampup
= 120;
81 module_param(ql2xqfullrampup
, int, S_IRUGO
|S_IWUSR
);
82 MODULE_PARM_DESC(ql2xqfullrampup
,
83 "Number of seconds to wait to begin to ramp-up the queue "
84 "depth for a device after a queue-full condition has been "
85 "detected. Default is 120 seconds.");
87 int ql2xiidmaenable
=1;
88 module_param(ql2xiidmaenable
, int, S_IRUGO
|S_IRUSR
);
89 MODULE_PARM_DESC(ql2xiidmaenable
,
90 "Enables iIDMA settings "
91 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
93 int ql2xmaxqueues
= 1;
94 module_param(ql2xmaxqueues
, int, S_IRUGO
|S_IRUSR
);
95 MODULE_PARM_DESC(ql2xmaxqueues
,
96 "Enables MQ settings "
97 "Default is 1 for single queue. Set it to number \
98 of queues in MQ mode.");
100 * SCSI host template entry points
102 static int qla2xxx_slave_configure(struct scsi_device
* device
);
103 static int qla2xxx_slave_alloc(struct scsi_device
*);
104 static int qla2xxx_scan_finished(struct Scsi_Host
*, unsigned long time
);
105 static void qla2xxx_scan_start(struct Scsi_Host
*);
106 static void qla2xxx_slave_destroy(struct scsi_device
*);
107 static int qla2xxx_queuecommand(struct scsi_cmnd
*cmd
,
108 void (*fn
)(struct scsi_cmnd
*));
109 static int qla2xxx_eh_abort(struct scsi_cmnd
*);
110 static int qla2xxx_eh_device_reset(struct scsi_cmnd
*);
111 static int qla2xxx_eh_target_reset(struct scsi_cmnd
*);
112 static int qla2xxx_eh_bus_reset(struct scsi_cmnd
*);
113 static int qla2xxx_eh_host_reset(struct scsi_cmnd
*);
115 static int qla2x00_change_queue_depth(struct scsi_device
*, int);
116 static int qla2x00_change_queue_type(struct scsi_device
*, int);
118 struct scsi_host_template qla2xxx_driver_template
= {
119 .module
= THIS_MODULE
,
120 .name
= QLA2XXX_DRIVER_NAME
,
121 .queuecommand
= qla2xxx_queuecommand
,
123 .eh_abort_handler
= qla2xxx_eh_abort
,
124 .eh_device_reset_handler
= qla2xxx_eh_device_reset
,
125 .eh_target_reset_handler
= qla2xxx_eh_target_reset
,
126 .eh_bus_reset_handler
= qla2xxx_eh_bus_reset
,
127 .eh_host_reset_handler
= qla2xxx_eh_host_reset
,
129 .slave_configure
= qla2xxx_slave_configure
,
131 .slave_alloc
= qla2xxx_slave_alloc
,
132 .slave_destroy
= qla2xxx_slave_destroy
,
133 .scan_finished
= qla2xxx_scan_finished
,
134 .scan_start
= qla2xxx_scan_start
,
135 .change_queue_depth
= qla2x00_change_queue_depth
,
136 .change_queue_type
= qla2x00_change_queue_type
,
139 .use_clustering
= ENABLE_CLUSTERING
,
140 .sg_tablesize
= SG_ALL
,
142 .max_sectors
= 0xFFFF,
143 .shost_attrs
= qla2x00_host_attrs
,
146 static struct scsi_transport_template
*qla2xxx_transport_template
= NULL
;
147 struct scsi_transport_template
*qla2xxx_transport_vport_template
= NULL
;
149 /* TODO Convert to inlines
155 qla2x00_start_timer(scsi_qla_host_t
*vha
, void *func
, unsigned long interval
)
157 init_timer(&vha
->timer
);
158 vha
->timer
.expires
= jiffies
+ interval
* HZ
;
159 vha
->timer
.data
= (unsigned long)vha
;
160 vha
->timer
.function
= (void (*)(unsigned long))func
;
161 add_timer(&vha
->timer
);
162 vha
->timer_active
= 1;
166 qla2x00_restart_timer(scsi_qla_host_t
*vha
, unsigned long interval
)
168 mod_timer(&vha
->timer
, jiffies
+ interval
* HZ
);
171 static __inline__
void
172 qla2x00_stop_timer(scsi_qla_host_t
*vha
)
174 del_timer_sync(&vha
->timer
);
175 vha
->timer_active
= 0;
178 static int qla2x00_do_dpc(void *data
);
180 static void qla2x00_rst_aen(scsi_qla_host_t
*);
182 static int qla2x00_mem_alloc(struct qla_hw_data
*, uint16_t, uint16_t,
183 struct req_que
**, struct rsp_que
**);
184 static void qla2x00_mem_free(struct qla_hw_data
*);
185 static void qla2x00_sp_free_dma(srb_t
*);
187 /* -------------------------------------------------------------------------- */
188 static int qla2x00_alloc_queues(struct qla_hw_data
*ha
)
190 ha
->req_q_map
= kzalloc(sizeof(struct req_que
*) * ha
->max_queues
,
192 if (!ha
->req_q_map
) {
193 qla_printk(KERN_WARNING
, ha
,
194 "Unable to allocate memory for request queue ptrs\n");
198 ha
->rsp_q_map
= kzalloc(sizeof(struct rsp_que
*) * ha
->max_queues
,
200 if (!ha
->rsp_q_map
) {
201 qla_printk(KERN_WARNING
, ha
,
202 "Unable to allocate memory for response queue ptrs\n");
205 set_bit(0, ha
->rsp_qid_map
);
206 set_bit(0, ha
->req_qid_map
);
210 kfree(ha
->req_q_map
);
211 ha
->req_q_map
= NULL
;
216 static void qla2x00_free_que(struct qla_hw_data
*ha
, struct req_que
*req
,
219 if (rsp
&& rsp
->ring
)
220 dma_free_coherent(&ha
->pdev
->dev
,
221 (rsp
->length
+ 1) * sizeof(response_t
),
222 rsp
->ring
, rsp
->dma
);
226 if (req
&& req
->ring
)
227 dma_free_coherent(&ha
->pdev
->dev
,
228 (req
->length
+ 1) * sizeof(request_t
),
229 req
->ring
, req
->dma
);
235 static void qla2x00_free_queues(struct qla_hw_data
*ha
)
241 for (cnt
= 0; cnt
< ha
->max_queues
; cnt
++) {
242 rsp
= ha
->rsp_q_map
[cnt
];
243 req
= ha
->req_q_map
[cnt
];
244 qla2x00_free_que(ha
, req
, rsp
);
246 kfree(ha
->rsp_q_map
);
247 ha
->rsp_q_map
= NULL
;
249 kfree(ha
->req_q_map
);
250 ha
->req_q_map
= NULL
;
254 qla2x00_pci_info_str(struct scsi_qla_host
*vha
, char *str
)
256 struct qla_hw_data
*ha
= vha
->hw
;
257 static char *pci_bus_modes
[] = {
258 "33", "66", "100", "133",
263 pci_bus
= (ha
->pci_attr
& (BIT_9
| BIT_10
)) >> 9;
266 strcat(str
, pci_bus_modes
[pci_bus
]);
268 pci_bus
= (ha
->pci_attr
& BIT_8
) >> 8;
270 strcat(str
, pci_bus_modes
[pci_bus
]);
272 strcat(str
, " MHz)");
278 qla24xx_pci_info_str(struct scsi_qla_host
*vha
, char *str
)
280 static char *pci_bus_modes
[] = { "33", "66", "100", "133", };
281 struct qla_hw_data
*ha
= vha
->hw
;
285 pcie_reg
= pci_find_capability(ha
->pdev
, PCI_CAP_ID_EXP
);
288 uint16_t pcie_lstat
, lspeed
, lwidth
;
291 pci_read_config_word(ha
->pdev
, pcie_reg
, &pcie_lstat
);
292 lspeed
= pcie_lstat
& (BIT_0
| BIT_1
| BIT_2
| BIT_3
);
293 lwidth
= (pcie_lstat
&
294 (BIT_4
| BIT_5
| BIT_6
| BIT_7
| BIT_8
| BIT_9
)) >> 4;
296 strcpy(str
, "PCIe (");
298 strcat(str
, "2.5GT/s ");
299 else if (lspeed
== 2)
300 strcat(str
, "5.0GT/s ");
302 strcat(str
, "<unknown> ");
303 snprintf(lwstr
, sizeof(lwstr
), "x%d)", lwidth
);
310 pci_bus
= (ha
->pci_attr
& CSRX_PCIX_BUS_MODE_MASK
) >> 8;
311 if (pci_bus
== 0 || pci_bus
== 8) {
313 strcat(str
, pci_bus_modes
[pci_bus
>> 3]);
317 strcat(str
, "Mode 2");
319 strcat(str
, "Mode 1");
321 strcat(str
, pci_bus_modes
[pci_bus
& ~BIT_2
]);
323 strcat(str
, " MHz)");
329 qla2x00_fw_version_str(struct scsi_qla_host
*vha
, char *str
)
332 struct qla_hw_data
*ha
= vha
->hw
;
334 sprintf(str
, "%d.%02d.%02d ", ha
->fw_major_version
,
335 ha
->fw_minor_version
,
336 ha
->fw_subminor_version
);
338 if (ha
->fw_attributes
& BIT_9
) {
343 switch (ha
->fw_attributes
& 0xFF) {
357 sprintf(un_str
, "(%x)", ha
->fw_attributes
);
361 if (ha
->fw_attributes
& 0x100)
368 qla24xx_fw_version_str(struct scsi_qla_host
*vha
, char *str
)
370 struct qla_hw_data
*ha
= vha
->hw
;
372 sprintf(str
, "%d.%02d.%02d (%x)", ha
->fw_major_version
,
373 ha
->fw_minor_version
, ha
->fw_subminor_version
, ha
->fw_attributes
);
377 static inline srb_t
*
378 qla2x00_get_new_sp(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
379 struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
382 struct qla_hw_data
*ha
= vha
->hw
;
384 sp
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
390 sp
->que
= ha
->req_q_map
[0];
392 CMD_SP(cmd
) = (void *)sp
;
393 cmd
->scsi_done
= done
;
399 qla2xxx_queuecommand(struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
401 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
402 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
403 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmd
->device
));
404 struct qla_hw_data
*ha
= vha
->hw
;
405 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
409 if (unlikely(pci_channel_offline(ha
->pdev
))) {
410 cmd
->result
= DID_REQUEUE
<< 16;
411 goto qc24_fail_command
;
414 rval
= fc_remote_port_chkready(rport
);
417 goto qc24_fail_command
;
420 /* Close window on fcport/rport state-transitioning. */
422 goto qc24_target_busy
;
424 if (atomic_read(&fcport
->state
) != FCS_ONLINE
) {
425 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
||
426 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
427 cmd
->result
= DID_NO_CONNECT
<< 16;
428 goto qc24_fail_command
;
430 goto qc24_target_busy
;
433 spin_unlock_irq(vha
->host
->host_lock
);
435 sp
= qla2x00_get_new_sp(base_vha
, fcport
, cmd
, done
);
437 goto qc24_host_busy_lock
;
439 rval
= ha
->isp_ops
->start_scsi(sp
);
440 if (rval
!= QLA_SUCCESS
)
441 goto qc24_host_busy_free_sp
;
443 spin_lock_irq(vha
->host
->host_lock
);
447 qc24_host_busy_free_sp
:
448 qla2x00_sp_free_dma(sp
);
449 mempool_free(sp
, ha
->srb_mempool
);
452 spin_lock_irq(vha
->host
->host_lock
);
453 return SCSI_MLQUEUE_HOST_BUSY
;
456 return SCSI_MLQUEUE_TARGET_BUSY
;
466 * qla2x00_eh_wait_on_command
467 * Waits for the command to be returned by the Firmware for some
471 * cmd = Scsi Command to wait on.
478 qla2x00_eh_wait_on_command(struct scsi_cmnd
*cmd
)
480 #define ABORT_POLLING_PERIOD 1000
481 #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
482 unsigned long wait_iter
= ABORT_WAIT_ITER
;
483 int ret
= QLA_SUCCESS
;
485 while (CMD_SP(cmd
)) {
486 msleep(ABORT_POLLING_PERIOD
);
492 ret
= QLA_FUNCTION_FAILED
;
498 * qla2x00_wait_for_hba_online
499 * Wait till the HBA is online after going through
500 * <= MAX_RETRIES_OF_ISP_ABORT or
501 * finally HBA is disabled ie marked offline
504 * ha - pointer to host adapter structure
507 * Does context switching-Release SPIN_LOCK
508 * (if any) before calling this routine.
511 * Success (Adapter is online) : 0
512 * Failed (Adapter is offline/disabled) : 1
515 qla2x00_wait_for_hba_online(scsi_qla_host_t
*vha
)
518 unsigned long wait_online
;
519 struct qla_hw_data
*ha
= vha
->hw
;
520 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
522 wait_online
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
523 while (((test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
)) ||
524 test_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
) ||
525 test_bit(ISP_ABORT_RETRY
, &base_vha
->dpc_flags
) ||
526 ha
->dpc_active
) && time_before(jiffies
, wait_online
)) {
530 if (base_vha
->flags
.online
)
531 return_status
= QLA_SUCCESS
;
533 return_status
= QLA_FUNCTION_FAILED
;
535 return (return_status
);
539 * qla2x00_wait_for_loop_ready
540 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
541 * to be in LOOP_READY state.
543 * ha - pointer to host adapter structure
546 * Does context switching-Release SPIN_LOCK
547 * (if any) before calling this routine.
551 * Success (LOOP_READY) : 0
552 * Failed (LOOP_NOT_READY) : 1
555 qla2x00_wait_for_loop_ready(scsi_qla_host_t
*vha
)
557 int return_status
= QLA_SUCCESS
;
558 unsigned long loop_timeout
;
559 struct qla_hw_data
*ha
= vha
->hw
;
560 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
562 /* wait for 5 min at the max for loop to be ready */
563 loop_timeout
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
565 while ((!atomic_read(&base_vha
->loop_down_timer
) &&
566 atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
) ||
567 atomic_read(&base_vha
->loop_state
) != LOOP_READY
) {
568 if (atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
569 return_status
= QLA_FUNCTION_FAILED
;
573 if (time_after_eq(jiffies
, loop_timeout
)) {
574 return_status
= QLA_FUNCTION_FAILED
;
578 return (return_status
);
582 qla2x00_abort_fcport_cmds(fc_port_t
*fcport
)
587 scsi_qla_host_t
*vha
= fcport
->vha
;
588 struct qla_hw_data
*ha
= vha
->hw
;
591 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
592 for (que
= 0; que
< QLA_MAX_HOST_QUES
; que
++) {
593 id
= vha
->req_ques
[que
];
594 req
= ha
->req_q_map
[id
];
597 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
598 sp
= req
->outstanding_cmds
[cnt
];
601 if (sp
->fcport
!= fcport
)
604 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
605 if (ha
->isp_ops
->abort_command(vha
, sp
, req
)) {
606 DEBUG2(qla_printk(KERN_WARNING
, ha
,
607 "Abort failed -- %lx\n",
608 sp
->cmd
->serial_number
));
610 if (qla2x00_eh_wait_on_command(sp
->cmd
) !=
612 DEBUG2(qla_printk(KERN_WARNING
, ha
,
613 "Abort failed while waiting -- %lx\n",
614 sp
->cmd
->serial_number
));
616 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
619 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
623 qla2x00_block_error_handler(struct scsi_cmnd
*cmnd
)
625 struct Scsi_Host
*shost
= cmnd
->device
->host
;
626 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
629 spin_lock_irqsave(shost
->host_lock
, flags
);
630 while (rport
->port_state
== FC_PORTSTATE_BLOCKED
) {
631 spin_unlock_irqrestore(shost
->host_lock
, flags
);
633 spin_lock_irqsave(shost
->host_lock
, flags
);
635 spin_unlock_irqrestore(shost
->host_lock
, flags
);
639 /**************************************************************************
643 * The abort function will abort the specified command.
646 * cmd = Linux SCSI command packet to be aborted.
649 * Either SUCCESS or FAILED.
652 * Only return FAILED if command not returned by firmware.
653 **************************************************************************/
655 qla2xxx_eh_abort(struct scsi_cmnd
*cmd
)
657 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
660 unsigned int id
, lun
;
661 unsigned long serial
;
664 struct qla_hw_data
*ha
= vha
->hw
;
668 qla2x00_block_error_handler(cmd
);
675 id
= cmd
->device
->id
;
676 lun
= cmd
->device
->lun
;
677 serial
= cmd
->serial_number
;
678 spt
= (srb_t
*) CMD_SP(cmd
);
683 /* Check active list for command command. */
684 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
685 for (i
= 1; i
< MAX_OUTSTANDING_COMMANDS
; i
++) {
686 sp
= req
->outstanding_cmds
[i
];
694 DEBUG2(printk("%s(%ld): aborting sp %p from RISC."
695 " pid=%ld.\n", __func__
, vha
->host_no
, sp
, serial
));
697 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
698 if (ha
->isp_ops
->abort_command(vha
, sp
, req
)) {
699 DEBUG2(printk("%s(%ld): abort_command "
700 "mbx failed.\n", __func__
, vha
->host_no
));
703 DEBUG3(printk("%s(%ld): abort_command "
704 "mbx success.\n", __func__
, vha
->host_no
));
707 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
710 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
712 /* Wait for the command to be returned. */
714 if (qla2x00_eh_wait_on_command(cmd
) != QLA_SUCCESS
) {
715 qla_printk(KERN_ERR
, ha
,
716 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
717 "%x.\n", vha
->host_no
, id
, lun
, serial
, ret
);
722 qla_printk(KERN_INFO
, ha
,
723 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
724 vha
->host_no
, id
, lun
, wait
, serial
, ret
);
729 enum nexus_wait_type
{
736 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t
*vha
, unsigned int t
,
737 unsigned int l
, srb_t
*sp
, enum nexus_wait_type type
)
739 int cnt
, match
, status
;
741 struct qla_hw_data
*ha
= vha
->hw
;
744 status
= QLA_SUCCESS
;
748 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
750 for (cnt
= 1; status
== QLA_SUCCESS
&&
751 cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
752 sp
= req
->outstanding_cmds
[cnt
];
756 if (vha
->vp_idx
!= sp
->fcport
->vha
->vp_idx
)
764 match
= sp
->cmd
->device
->id
== t
;
767 match
= (sp
->cmd
->device
->id
== t
&&
768 sp
->cmd
->device
->lun
== l
);
774 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
775 status
= qla2x00_eh_wait_on_command(sp
->cmd
);
776 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
778 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
783 static char *reset_errors
[] = {
786 "Task management failed",
787 "Waiting for command completions",
791 __qla2xxx_eh_generic_reset(char *name
, enum nexus_wait_type type
,
792 struct scsi_cmnd
*cmd
, int (*do_reset
)(struct fc_port
*, unsigned int))
794 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
795 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
798 qla2x00_block_error_handler(cmd
);
803 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
804 vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
);
807 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
808 goto eh_reset_failed
;
810 if (qla2x00_wait_for_loop_ready(vha
) != QLA_SUCCESS
)
811 goto eh_reset_failed
;
813 if (do_reset(fcport
, cmd
->device
->lun
) != QLA_SUCCESS
)
814 goto eh_reset_failed
;
816 if (qla2x00_eh_wait_for_pending_commands(vha
, cmd
->device
->id
,
817 cmd
->device
->lun
, (srb_t
*) CMD_SP(cmd
), type
) != QLA_SUCCESS
)
818 goto eh_reset_failed
;
820 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
821 vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
);
826 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n"
827 , vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
,
833 qla2xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
835 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
836 struct qla_hw_data
*ha
= vha
->hw
;
838 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN
, cmd
,
839 ha
->isp_ops
->lun_reset
);
843 qla2xxx_eh_target_reset(struct scsi_cmnd
*cmd
)
845 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
846 struct qla_hw_data
*ha
= vha
->hw
;
848 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET
, cmd
,
849 ha
->isp_ops
->target_reset
);
852 /**************************************************************************
853 * qla2xxx_eh_bus_reset
856 * The bus reset function will reset the bus and abort any executing
860 * cmd = Linux SCSI command packet of the command that cause the
864 * SUCCESS/FAILURE (defined as macro in scsi.h).
866 **************************************************************************/
868 qla2xxx_eh_bus_reset(struct scsi_cmnd
*cmd
)
870 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
871 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
873 unsigned int id
, lun
;
874 unsigned long serial
;
875 srb_t
*sp
= (srb_t
*) CMD_SP(cmd
);
877 qla2x00_block_error_handler(cmd
);
879 id
= cmd
->device
->id
;
880 lun
= cmd
->device
->lun
;
881 serial
= cmd
->serial_number
;
886 qla_printk(KERN_INFO
, vha
->hw
,
887 "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha
->host_no
, id
, lun
);
889 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
890 DEBUG2(printk("%s failed:board disabled\n",__func__
));
891 goto eh_bus_reset_done
;
894 if (qla2x00_wait_for_loop_ready(vha
) == QLA_SUCCESS
) {
895 if (qla2x00_loop_reset(vha
) == QLA_SUCCESS
)
899 goto eh_bus_reset_done
;
901 /* Flush outstanding commands. */
902 if (qla2x00_eh_wait_for_pending_commands(vha
, 0, 0, sp
, WAIT_HOST
) !=
907 qla_printk(KERN_INFO
, vha
->hw
, "%s: reset %s\n", __func__
,
908 (ret
== FAILED
) ? "failed" : "succeded");
913 /**************************************************************************
914 * qla2xxx_eh_host_reset
917 * The reset function will reset the Adapter.
920 * cmd = Linux SCSI command packet of the command that cause the
924 * Either SUCCESS or FAILED.
927 **************************************************************************/
929 qla2xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
931 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
932 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
933 struct qla_hw_data
*ha
= vha
->hw
;
935 unsigned int id
, lun
;
936 unsigned long serial
;
937 srb_t
*sp
= (srb_t
*) CMD_SP(cmd
);
938 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
940 qla2x00_block_error_handler(cmd
);
942 id
= cmd
->device
->id
;
943 lun
= cmd
->device
->lun
;
944 serial
= cmd
->serial_number
;
949 qla_printk(KERN_INFO
, ha
,
950 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha
->host_no
, id
, lun
);
952 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
953 goto eh_host_reset_lock
;
956 * Fixme-may be dpc thread is active and processing
957 * loop_resync,so wait a while for it to
958 * be completed and then issue big hammer.Otherwise
959 * it may cause I/O failure as big hammer marks the
960 * devices as lost kicking of the port_down_timer
961 * while dpc is stuck for the mailbox to complete.
963 qla2x00_wait_for_loop_ready(vha
);
964 if (vha
!= base_vha
) {
965 if (qla2x00_vp_abort_isp(vha
))
966 goto eh_host_reset_lock
;
968 set_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
969 if (qla2x00_abort_isp(base_vha
)) {
970 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
971 /* failed. schedule dpc to try */
972 set_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
);
974 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
975 goto eh_host_reset_lock
;
977 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
980 /* Waiting for command to be returned to OS.*/
981 if (qla2x00_eh_wait_for_pending_commands(vha
, 0, 0, sp
, WAIT_HOST
) ==
986 qla_printk(KERN_INFO
, ha
, "%s: reset %s\n", __func__
,
987 (ret
== FAILED
) ? "failed" : "succeded");
997 * ha = adapter block pointer.
1003 qla2x00_loop_reset(scsi_qla_host_t
*vha
)
1006 struct fc_port
*fcport
;
1007 struct qla_hw_data
*ha
= vha
->hw
;
1009 if (ha
->flags
.enable_lip_full_login
&& !vha
->vp_idx
) {
1010 ret
= qla2x00_full_login_lip(vha
);
1011 if (ret
!= QLA_SUCCESS
) {
1012 DEBUG2_3(printk("%s(%ld): failed: "
1013 "full_login_lip=%d.\n", __func__
, vha
->host_no
,
1016 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1017 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
1018 qla2x00_mark_all_devices_lost(vha
, 0);
1019 qla2x00_wait_for_loop_ready(vha
);
1022 if (ha
->flags
.enable_lip_reset
&& !vha
->vp_idx
) {
1023 ret
= qla2x00_lip_reset(vha
);
1024 if (ret
!= QLA_SUCCESS
) {
1025 DEBUG2_3(printk("%s(%ld): failed: "
1026 "lip_reset=%d.\n", __func__
, vha
->host_no
, ret
));
1028 qla2x00_wait_for_loop_ready(vha
);
1031 if (ha
->flags
.enable_target_reset
) {
1032 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1033 if (fcport
->port_type
!= FCT_TARGET
)
1036 ret
= ha
->isp_ops
->target_reset(fcport
, 0);
1037 if (ret
!= QLA_SUCCESS
) {
1038 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1039 "target_reset=%d d_id=%x.\n", __func__
,
1040 vha
->host_no
, ret
, fcport
->d_id
.b24
));
1044 /* Issue marker command only when we are going to start the I/O */
1045 vha
->marker_needed
= 1;
1051 qla2x00_abort_all_cmds(scsi_qla_host_t
*vha
, int res
)
1054 unsigned long flags
;
1056 struct qla_hw_data
*ha
= vha
->hw
;
1057 struct req_que
*req
;
1059 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1060 for (que
= 0; que
< ha
->max_queues
; que
++) {
1061 req
= ha
->req_q_map
[que
];
1064 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
1065 sp
= req
->outstanding_cmds
[cnt
];
1066 if (sp
&& sp
->fcport
->vha
== vha
) {
1067 req
->outstanding_cmds
[cnt
] = NULL
;
1068 sp
->cmd
->result
= res
;
1069 qla2x00_sp_compl(ha
, sp
);
1073 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1077 qla2xxx_slave_alloc(struct scsi_device
*sdev
)
1079 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1081 if (!rport
|| fc_remote_port_chkready(rport
))
1084 sdev
->hostdata
= *(fc_port_t
**)rport
->dd_data
;
1090 qla2xxx_slave_configure(struct scsi_device
*sdev
)
1092 scsi_qla_host_t
*vha
= shost_priv(sdev
->host
);
1093 struct qla_hw_data
*ha
= vha
->hw
;
1094 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
1095 struct req_que
*req
= ha
->req_q_map
[vha
->req_ques
[0]];
1097 if (sdev
->tagged_supported
)
1098 scsi_activate_tcq(sdev
, req
->max_q_depth
);
1100 scsi_deactivate_tcq(sdev
, req
->max_q_depth
);
1102 rport
->dev_loss_tmo
= ha
->port_down_retry_count
;
1108 qla2xxx_slave_destroy(struct scsi_device
*sdev
)
1110 sdev
->hostdata
= NULL
;
1114 qla2x00_change_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1116 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), qdepth
);
1117 return sdev
->queue_depth
;
1121 qla2x00_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
1123 if (sdev
->tagged_supported
) {
1124 scsi_set_tag_type(sdev
, tag_type
);
1126 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
1128 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
1136 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1139 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1140 * supported addressing method.
1143 qla2x00_config_dma_addressing(struct qla_hw_data
*ha
)
1145 /* Assume a 32bit DMA mask. */
1146 ha
->flags
.enable_64bit_addressing
= 0;
1148 if (!dma_set_mask(&ha
->pdev
->dev
, DMA_64BIT_MASK
)) {
1149 /* Any upper-dword bits set? */
1150 if (MSD(dma_get_required_mask(&ha
->pdev
->dev
)) &&
1151 !pci_set_consistent_dma_mask(ha
->pdev
, DMA_64BIT_MASK
)) {
1152 /* Ok, a 64bit DMA mask is applicable. */
1153 ha
->flags
.enable_64bit_addressing
= 1;
1154 ha
->isp_ops
->calc_req_entries
= qla2x00_calc_iocbs_64
;
1155 ha
->isp_ops
->build_iocbs
= qla2x00_build_scsi_iocbs_64
;
1160 dma_set_mask(&ha
->pdev
->dev
, DMA_32BIT_MASK
);
1161 pci_set_consistent_dma_mask(ha
->pdev
, DMA_32BIT_MASK
);
1165 qla2x00_enable_intrs(struct qla_hw_data
*ha
)
1167 unsigned long flags
= 0;
1168 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1170 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1171 ha
->interrupts_on
= 1;
1172 /* enable risc and host interrupts */
1173 WRT_REG_WORD(®
->ictrl
, ICR_EN_INT
| ICR_EN_RISC
);
1174 RD_REG_WORD(®
->ictrl
);
1175 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1180 qla2x00_disable_intrs(struct qla_hw_data
*ha
)
1182 unsigned long flags
= 0;
1183 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1185 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1186 ha
->interrupts_on
= 0;
1187 /* disable risc and host interrupts */
1188 WRT_REG_WORD(®
->ictrl
, 0);
1189 RD_REG_WORD(®
->ictrl
);
1190 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1194 qla24xx_enable_intrs(struct qla_hw_data
*ha
)
1196 unsigned long flags
= 0;
1197 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1199 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1200 ha
->interrupts_on
= 1;
1201 WRT_REG_DWORD(®
->ictrl
, ICRX_EN_RISC_INT
);
1202 RD_REG_DWORD(®
->ictrl
);
1203 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1207 qla24xx_disable_intrs(struct qla_hw_data
*ha
)
1209 unsigned long flags
= 0;
1210 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1212 if (IS_NOPOLLING_TYPE(ha
))
1214 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1215 ha
->interrupts_on
= 0;
1216 WRT_REG_DWORD(®
->ictrl
, 0);
1217 RD_REG_DWORD(®
->ictrl
);
1218 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1221 static struct isp_operations qla2100_isp_ops
= {
1222 .pci_config
= qla2100_pci_config
,
1223 .reset_chip
= qla2x00_reset_chip
,
1224 .chip_diag
= qla2x00_chip_diag
,
1225 .config_rings
= qla2x00_config_rings
,
1226 .reset_adapter
= qla2x00_reset_adapter
,
1227 .nvram_config
= qla2x00_nvram_config
,
1228 .update_fw_options
= qla2x00_update_fw_options
,
1229 .load_risc
= qla2x00_load_risc
,
1230 .pci_info_str
= qla2x00_pci_info_str
,
1231 .fw_version_str
= qla2x00_fw_version_str
,
1232 .intr_handler
= qla2100_intr_handler
,
1233 .enable_intrs
= qla2x00_enable_intrs
,
1234 .disable_intrs
= qla2x00_disable_intrs
,
1235 .abort_command
= qla2x00_abort_command
,
1236 .target_reset
= qla2x00_abort_target
,
1237 .lun_reset
= qla2x00_lun_reset
,
1238 .fabric_login
= qla2x00_login_fabric
,
1239 .fabric_logout
= qla2x00_fabric_logout
,
1240 .calc_req_entries
= qla2x00_calc_iocbs_32
,
1241 .build_iocbs
= qla2x00_build_scsi_iocbs_32
,
1242 .prep_ms_iocb
= qla2x00_prep_ms_iocb
,
1243 .prep_ms_fdmi_iocb
= qla2x00_prep_ms_fdmi_iocb
,
1244 .read_nvram
= qla2x00_read_nvram_data
,
1245 .write_nvram
= qla2x00_write_nvram_data
,
1246 .fw_dump
= qla2100_fw_dump
,
1249 .beacon_blink
= NULL
,
1250 .read_optrom
= qla2x00_read_optrom_data
,
1251 .write_optrom
= qla2x00_write_optrom_data
,
1252 .get_flash_version
= qla2x00_get_flash_version
,
1253 .start_scsi
= qla2x00_start_scsi
,
1256 static struct isp_operations qla2300_isp_ops
= {
1257 .pci_config
= qla2300_pci_config
,
1258 .reset_chip
= qla2x00_reset_chip
,
1259 .chip_diag
= qla2x00_chip_diag
,
1260 .config_rings
= qla2x00_config_rings
,
1261 .reset_adapter
= qla2x00_reset_adapter
,
1262 .nvram_config
= qla2x00_nvram_config
,
1263 .update_fw_options
= qla2x00_update_fw_options
,
1264 .load_risc
= qla2x00_load_risc
,
1265 .pci_info_str
= qla2x00_pci_info_str
,
1266 .fw_version_str
= qla2x00_fw_version_str
,
1267 .intr_handler
= qla2300_intr_handler
,
1268 .enable_intrs
= qla2x00_enable_intrs
,
1269 .disable_intrs
= qla2x00_disable_intrs
,
1270 .abort_command
= qla2x00_abort_command
,
1271 .target_reset
= qla2x00_abort_target
,
1272 .lun_reset
= qla2x00_lun_reset
,
1273 .fabric_login
= qla2x00_login_fabric
,
1274 .fabric_logout
= qla2x00_fabric_logout
,
1275 .calc_req_entries
= qla2x00_calc_iocbs_32
,
1276 .build_iocbs
= qla2x00_build_scsi_iocbs_32
,
1277 .prep_ms_iocb
= qla2x00_prep_ms_iocb
,
1278 .prep_ms_fdmi_iocb
= qla2x00_prep_ms_fdmi_iocb
,
1279 .read_nvram
= qla2x00_read_nvram_data
,
1280 .write_nvram
= qla2x00_write_nvram_data
,
1281 .fw_dump
= qla2300_fw_dump
,
1282 .beacon_on
= qla2x00_beacon_on
,
1283 .beacon_off
= qla2x00_beacon_off
,
1284 .beacon_blink
= qla2x00_beacon_blink
,
1285 .read_optrom
= qla2x00_read_optrom_data
,
1286 .write_optrom
= qla2x00_write_optrom_data
,
1287 .get_flash_version
= qla2x00_get_flash_version
,
1288 .start_scsi
= qla2x00_start_scsi
,
1291 static struct isp_operations qla24xx_isp_ops
= {
1292 .pci_config
= qla24xx_pci_config
,
1293 .reset_chip
= qla24xx_reset_chip
,
1294 .chip_diag
= qla24xx_chip_diag
,
1295 .config_rings
= qla24xx_config_rings
,
1296 .reset_adapter
= qla24xx_reset_adapter
,
1297 .nvram_config
= qla24xx_nvram_config
,
1298 .update_fw_options
= qla24xx_update_fw_options
,
1299 .load_risc
= qla24xx_load_risc
,
1300 .pci_info_str
= qla24xx_pci_info_str
,
1301 .fw_version_str
= qla24xx_fw_version_str
,
1302 .intr_handler
= qla24xx_intr_handler
,
1303 .enable_intrs
= qla24xx_enable_intrs
,
1304 .disable_intrs
= qla24xx_disable_intrs
,
1305 .abort_command
= qla24xx_abort_command
,
1306 .target_reset
= qla24xx_abort_target
,
1307 .lun_reset
= qla24xx_lun_reset
,
1308 .fabric_login
= qla24xx_login_fabric
,
1309 .fabric_logout
= qla24xx_fabric_logout
,
1310 .calc_req_entries
= NULL
,
1311 .build_iocbs
= NULL
,
1312 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1313 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1314 .read_nvram
= qla24xx_read_nvram_data
,
1315 .write_nvram
= qla24xx_write_nvram_data
,
1316 .fw_dump
= qla24xx_fw_dump
,
1317 .beacon_on
= qla24xx_beacon_on
,
1318 .beacon_off
= qla24xx_beacon_off
,
1319 .beacon_blink
= qla24xx_beacon_blink
,
1320 .read_optrom
= qla24xx_read_optrom_data
,
1321 .write_optrom
= qla24xx_write_optrom_data
,
1322 .get_flash_version
= qla24xx_get_flash_version
,
1323 .start_scsi
= qla24xx_start_scsi
,
1326 static struct isp_operations qla25xx_isp_ops
= {
1327 .pci_config
= qla25xx_pci_config
,
1328 .reset_chip
= qla24xx_reset_chip
,
1329 .chip_diag
= qla24xx_chip_diag
,
1330 .config_rings
= qla24xx_config_rings
,
1331 .reset_adapter
= qla24xx_reset_adapter
,
1332 .nvram_config
= qla24xx_nvram_config
,
1333 .update_fw_options
= qla24xx_update_fw_options
,
1334 .load_risc
= qla24xx_load_risc
,
1335 .pci_info_str
= qla24xx_pci_info_str
,
1336 .fw_version_str
= qla24xx_fw_version_str
,
1337 .intr_handler
= qla24xx_intr_handler
,
1338 .enable_intrs
= qla24xx_enable_intrs
,
1339 .disable_intrs
= qla24xx_disable_intrs
,
1340 .abort_command
= qla24xx_abort_command
,
1341 .target_reset
= qla24xx_abort_target
,
1342 .lun_reset
= qla24xx_lun_reset
,
1343 .fabric_login
= qla24xx_login_fabric
,
1344 .fabric_logout
= qla24xx_fabric_logout
,
1345 .calc_req_entries
= NULL
,
1346 .build_iocbs
= NULL
,
1347 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1348 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1349 .read_nvram
= qla25xx_read_nvram_data
,
1350 .write_nvram
= qla25xx_write_nvram_data
,
1351 .fw_dump
= qla25xx_fw_dump
,
1352 .beacon_on
= qla24xx_beacon_on
,
1353 .beacon_off
= qla24xx_beacon_off
,
1354 .beacon_blink
= qla24xx_beacon_blink
,
1355 .read_optrom
= qla25xx_read_optrom_data
,
1356 .write_optrom
= qla24xx_write_optrom_data
,
1357 .get_flash_version
= qla24xx_get_flash_version
,
1358 .start_scsi
= qla24xx_start_scsi
,
1361 static struct isp_operations qla81xx_isp_ops
= {
1362 .pci_config
= qla25xx_pci_config
,
1363 .reset_chip
= qla24xx_reset_chip
,
1364 .chip_diag
= qla24xx_chip_diag
,
1365 .config_rings
= qla24xx_config_rings
,
1366 .reset_adapter
= qla24xx_reset_adapter
,
1367 .nvram_config
= qla81xx_nvram_config
,
1368 .update_fw_options
= qla81xx_update_fw_options
,
1369 .load_risc
= qla81xx_load_risc
,
1370 .pci_info_str
= qla24xx_pci_info_str
,
1371 .fw_version_str
= qla24xx_fw_version_str
,
1372 .intr_handler
= qla24xx_intr_handler
,
1373 .enable_intrs
= qla24xx_enable_intrs
,
1374 .disable_intrs
= qla24xx_disable_intrs
,
1375 .abort_command
= qla24xx_abort_command
,
1376 .target_reset
= qla24xx_abort_target
,
1377 .lun_reset
= qla24xx_lun_reset
,
1378 .fabric_login
= qla24xx_login_fabric
,
1379 .fabric_logout
= qla24xx_fabric_logout
,
1380 .calc_req_entries
= NULL
,
1381 .build_iocbs
= NULL
,
1382 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1383 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1384 .read_nvram
= qla25xx_read_nvram_data
,
1385 .write_nvram
= qla25xx_write_nvram_data
,
1386 .fw_dump
= qla81xx_fw_dump
,
1387 .beacon_on
= qla24xx_beacon_on
,
1388 .beacon_off
= qla24xx_beacon_off
,
1389 .beacon_blink
= qla24xx_beacon_blink
,
1390 .read_optrom
= qla25xx_read_optrom_data
,
1391 .write_optrom
= qla24xx_write_optrom_data
,
1392 .get_flash_version
= qla24xx_get_flash_version
,
1393 .start_scsi
= qla24xx_start_scsi
,
1397 qla2x00_set_isp_flags(struct qla_hw_data
*ha
)
1399 ha
->device_type
= DT_EXTENDED_IDS
;
1400 switch (ha
->pdev
->device
) {
1401 case PCI_DEVICE_ID_QLOGIC_ISP2100
:
1402 ha
->device_type
|= DT_ISP2100
;
1403 ha
->device_type
&= ~DT_EXTENDED_IDS
;
1404 ha
->fw_srisc_address
= RISC_START_ADDRESS_2100
;
1406 case PCI_DEVICE_ID_QLOGIC_ISP2200
:
1407 ha
->device_type
|= DT_ISP2200
;
1408 ha
->device_type
&= ~DT_EXTENDED_IDS
;
1409 ha
->fw_srisc_address
= RISC_START_ADDRESS_2100
;
1411 case PCI_DEVICE_ID_QLOGIC_ISP2300
:
1412 ha
->device_type
|= DT_ISP2300
;
1413 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1414 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1416 case PCI_DEVICE_ID_QLOGIC_ISP2312
:
1417 ha
->device_type
|= DT_ISP2312
;
1418 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1419 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1421 case PCI_DEVICE_ID_QLOGIC_ISP2322
:
1422 ha
->device_type
|= DT_ISP2322
;
1423 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1424 if (ha
->pdev
->subsystem_vendor
== 0x1028 &&
1425 ha
->pdev
->subsystem_device
== 0x0170)
1426 ha
->device_type
|= DT_OEM_001
;
1427 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1429 case PCI_DEVICE_ID_QLOGIC_ISP6312
:
1430 ha
->device_type
|= DT_ISP6312
;
1431 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1433 case PCI_DEVICE_ID_QLOGIC_ISP6322
:
1434 ha
->device_type
|= DT_ISP6322
;
1435 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1437 case PCI_DEVICE_ID_QLOGIC_ISP2422
:
1438 ha
->device_type
|= DT_ISP2422
;
1439 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1440 ha
->device_type
|= DT_FWI2
;
1441 ha
->device_type
|= DT_IIDMA
;
1442 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1444 case PCI_DEVICE_ID_QLOGIC_ISP2432
:
1445 ha
->device_type
|= DT_ISP2432
;
1446 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1447 ha
->device_type
|= DT_FWI2
;
1448 ha
->device_type
|= DT_IIDMA
;
1449 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1451 case PCI_DEVICE_ID_QLOGIC_ISP8432
:
1452 ha
->device_type
|= DT_ISP8432
;
1453 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1454 ha
->device_type
|= DT_FWI2
;
1455 ha
->device_type
|= DT_IIDMA
;
1456 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1458 case PCI_DEVICE_ID_QLOGIC_ISP5422
:
1459 ha
->device_type
|= DT_ISP5422
;
1460 ha
->device_type
|= DT_FWI2
;
1461 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1463 case PCI_DEVICE_ID_QLOGIC_ISP5432
:
1464 ha
->device_type
|= DT_ISP5432
;
1465 ha
->device_type
|= DT_FWI2
;
1466 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1468 case PCI_DEVICE_ID_QLOGIC_ISP2532
:
1469 ha
->device_type
|= DT_ISP2532
;
1470 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1471 ha
->device_type
|= DT_FWI2
;
1472 ha
->device_type
|= DT_IIDMA
;
1473 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1475 case PCI_DEVICE_ID_QLOGIC_ISP8001
:
1476 ha
->device_type
|= DT_ISP8001
;
1477 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1478 ha
->device_type
|= DT_FWI2
;
1479 ha
->device_type
|= DT_IIDMA
;
1480 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1486 qla2x00_iospace_config(struct qla_hw_data
*ha
)
1488 resource_size_t pio
;
1491 if (pci_request_selected_regions(ha
->pdev
, ha
->bars
,
1492 QLA2XXX_DRIVER_NAME
)) {
1493 qla_printk(KERN_WARNING
, ha
,
1494 "Failed to reserve PIO/MMIO regions (%s)\n",
1495 pci_name(ha
->pdev
));
1497 goto iospace_error_exit
;
1499 if (!(ha
->bars
& 1))
1502 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1503 pio
= pci_resource_start(ha
->pdev
, 0);
1504 if (pci_resource_flags(ha
->pdev
, 0) & IORESOURCE_IO
) {
1505 if (pci_resource_len(ha
->pdev
, 0) < MIN_IOBASE_LEN
) {
1506 qla_printk(KERN_WARNING
, ha
,
1507 "Invalid PCI I/O region size (%s)...\n",
1508 pci_name(ha
->pdev
));
1512 qla_printk(KERN_WARNING
, ha
,
1513 "region #0 not a PIO resource (%s)...\n",
1514 pci_name(ha
->pdev
));
1517 ha
->pio_address
= pio
;
1520 /* Use MMIO operations for all accesses. */
1521 if (!(pci_resource_flags(ha
->pdev
, 1) & IORESOURCE_MEM
)) {
1522 qla_printk(KERN_ERR
, ha
,
1523 "region #1 not an MMIO resource (%s), aborting\n",
1524 pci_name(ha
->pdev
));
1525 goto iospace_error_exit
;
1527 if (pci_resource_len(ha
->pdev
, 1) < MIN_IOBASE_LEN
) {
1528 qla_printk(KERN_ERR
, ha
,
1529 "Invalid PCI mem region size (%s), aborting\n",
1530 pci_name(ha
->pdev
));
1531 goto iospace_error_exit
;
1534 ha
->iobase
= ioremap(pci_resource_start(ha
->pdev
, 1), MIN_IOBASE_LEN
);
1536 qla_printk(KERN_ERR
, ha
,
1537 "cannot remap MMIO (%s), aborting\n", pci_name(ha
->pdev
));
1539 goto iospace_error_exit
;
1542 /* Determine queue resources */
1544 if (ql2xmaxqueues
<= 1 || (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
)))
1546 ha
->mqiobase
= ioremap(pci_resource_start(ha
->pdev
, 3),
1547 pci_resource_len(ha
->pdev
, 3));
1549 /* Read MSIX vector size of the board */
1550 pci_read_config_word(ha
->pdev
, QLA_PCI_MSIX_CONTROL
, &msix
);
1551 ha
->msix_count
= msix
;
1552 /* Max queues are bounded by available msix vectors */
1553 /* queue 0 uses two msix vectors */
1554 if (ha
->msix_count
- 1 < ql2xmaxqueues
)
1555 ha
->max_queues
= ha
->msix_count
- 1;
1556 else if (ql2xmaxqueues
> QLA_MQ_SIZE
)
1557 ha
->max_queues
= QLA_MQ_SIZE
;
1559 ha
->max_queues
= ql2xmaxqueues
;
1560 qla_printk(KERN_INFO
, ha
,
1561 "MSI-X vector count: %d\n", msix
);
1565 ha
->msix_count
= ha
->max_queues
+ 1;
1573 qla2xxx_scan_start(struct Scsi_Host
*shost
)
1575 scsi_qla_host_t
*vha
= shost_priv(shost
);
1577 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1578 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
1579 set_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
1580 set_bit(NPIV_CONFIG_NEEDED
, &vha
->dpc_flags
);
1584 qla2xxx_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
1586 scsi_qla_host_t
*vha
= shost_priv(shost
);
1590 if (time
> vha
->hw
->loop_reset_delay
* HZ
)
1593 return atomic_read(&vha
->loop_state
) == LOOP_READY
;
1597 * PCI driver interface
1599 static int __devinit
1600 qla2x00_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
1603 struct Scsi_Host
*host
;
1604 scsi_qla_host_t
*base_vha
= NULL
;
1605 struct qla_hw_data
*ha
;
1608 struct scsi_host_template
*sht
;
1609 int bars
, max_id
, mem_only
= 0;
1610 uint16_t req_length
= 0, rsp_length
= 0;
1611 struct req_que
*req
= NULL
;
1612 struct rsp_que
*rsp
= NULL
;
1614 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
| IORESOURCE_IO
);
1615 sht
= &qla2xxx_driver_template
;
1616 if (pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2422
||
1617 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2432
||
1618 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP8432
||
1619 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP5422
||
1620 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP5432
||
1621 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2532
||
1622 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP8001
) {
1623 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
1628 if (pci_enable_device_mem(pdev
))
1631 if (pci_enable_device(pdev
))
1635 /* This may fail but that's ok */
1636 pci_enable_pcie_error_reporting(pdev
);
1638 ha
= kzalloc(sizeof(struct qla_hw_data
), GFP_KERNEL
);
1640 DEBUG(printk("Unable to allocate memory for ha\n"));
1645 /* Clear our data area */
1647 ha
->mem_only
= mem_only
;
1648 spin_lock_init(&ha
->hardware_lock
);
1650 /* Set ISP-type information. */
1651 qla2x00_set_isp_flags(ha
);
1652 /* Configure PCI I/O space */
1653 ret
= qla2x00_iospace_config(ha
);
1655 goto probe_hw_failed
;
1657 qla_printk(KERN_INFO
, ha
,
1658 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev
->device
, pdev
->irq
,
1661 ha
->prev_topology
= 0;
1662 ha
->init_cb_size
= sizeof(init_cb_t
);
1663 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
1664 ha
->optrom_size
= OPTROM_SIZE_2300
;
1666 /* Assign ISP specific operations. */
1667 max_id
= MAX_TARGETS_2200
;
1668 if (IS_QLA2100(ha
)) {
1669 max_id
= MAX_TARGETS_2100
;
1670 ha
->mbx_count
= MAILBOX_REGISTER_COUNT_2100
;
1671 req_length
= REQUEST_ENTRY_CNT_2100
;
1672 rsp_length
= RESPONSE_ENTRY_CNT_2100
;
1673 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2100
;
1674 ha
->gid_list_info_size
= 4;
1675 ha
->flash_conf_off
= ~0;
1676 ha
->flash_data_off
= ~0;
1677 ha
->nvram_conf_off
= ~0;
1678 ha
->nvram_data_off
= ~0;
1679 ha
->isp_ops
= &qla2100_isp_ops
;
1680 } else if (IS_QLA2200(ha
)) {
1681 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1682 req_length
= REQUEST_ENTRY_CNT_2200
;
1683 rsp_length
= RESPONSE_ENTRY_CNT_2100
;
1684 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2100
;
1685 ha
->gid_list_info_size
= 4;
1686 ha
->flash_conf_off
= ~0;
1687 ha
->flash_data_off
= ~0;
1688 ha
->nvram_conf_off
= ~0;
1689 ha
->nvram_data_off
= ~0;
1690 ha
->isp_ops
= &qla2100_isp_ops
;
1691 } else if (IS_QLA23XX(ha
)) {
1692 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1693 req_length
= REQUEST_ENTRY_CNT_2200
;
1694 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1695 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1696 ha
->gid_list_info_size
= 6;
1697 if (IS_QLA2322(ha
) || IS_QLA6322(ha
))
1698 ha
->optrom_size
= OPTROM_SIZE_2322
;
1699 ha
->flash_conf_off
= ~0;
1700 ha
->flash_data_off
= ~0;
1701 ha
->nvram_conf_off
= ~0;
1702 ha
->nvram_data_off
= ~0;
1703 ha
->isp_ops
= &qla2300_isp_ops
;
1704 } else if (IS_QLA24XX_TYPE(ha
)) {
1705 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1706 req_length
= REQUEST_ENTRY_CNT_24XX
;
1707 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1708 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1709 ha
->init_cb_size
= sizeof(struct mid_init_cb_24xx
);
1710 ha
->gid_list_info_size
= 8;
1711 ha
->optrom_size
= OPTROM_SIZE_24XX
;
1712 ha
->nvram_npiv_size
= QLA_MAX_VPORTS_QLA24XX
;
1713 ha
->isp_ops
= &qla24xx_isp_ops
;
1714 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF
;
1715 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA
;
1716 ha
->nvram_conf_off
= FARX_ACCESS_NVRAM_CONF
;
1717 ha
->nvram_data_off
= FARX_ACCESS_NVRAM_DATA
;
1718 } else if (IS_QLA25XX(ha
)) {
1719 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1720 req_length
= REQUEST_ENTRY_CNT_24XX
;
1721 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1722 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1723 ha
->init_cb_size
= sizeof(struct mid_init_cb_24xx
);
1724 ha
->gid_list_info_size
= 8;
1725 ha
->optrom_size
= OPTROM_SIZE_25XX
;
1726 ha
->nvram_npiv_size
= QLA_MAX_VPORTS_QLA25XX
;
1727 ha
->isp_ops
= &qla25xx_isp_ops
;
1728 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF
;
1729 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA
;
1730 ha
->nvram_conf_off
= FARX_ACCESS_NVRAM_CONF
;
1731 ha
->nvram_data_off
= FARX_ACCESS_NVRAM_DATA
;
1732 } else if (IS_QLA81XX(ha
)) {
1733 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1734 req_length
= REQUEST_ENTRY_CNT_24XX
;
1735 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1736 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1737 ha
->init_cb_size
= sizeof(struct mid_init_cb_81xx
);
1738 ha
->gid_list_info_size
= 8;
1739 ha
->optrom_size
= OPTROM_SIZE_81XX
;
1740 ha
->isp_ops
= &qla81xx_isp_ops
;
1741 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF_81XX
;
1742 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA_81XX
;
1743 ha
->nvram_conf_off
= ~0;
1744 ha
->nvram_data_off
= ~0;
1747 mutex_init(&ha
->vport_lock
);
1748 init_completion(&ha
->mbx_cmd_comp
);
1749 complete(&ha
->mbx_cmd_comp
);
1750 init_completion(&ha
->mbx_intr_comp
);
1752 set_bit(0, (unsigned long *) ha
->vp_idx_map
);
1754 qla2x00_config_dma_addressing(ha
);
1755 ret
= qla2x00_mem_alloc(ha
, req_length
, rsp_length
, &req
, &rsp
);
1757 qla_printk(KERN_WARNING
, ha
,
1758 "[ERROR] Failed to allocate memory for adapter\n");
1760 goto probe_hw_failed
;
1763 req
->max_q_depth
= MAX_Q_DEPTH
;
1764 if (ql2xmaxqdepth
!= 0 && ql2xmaxqdepth
<= 0xffffU
)
1765 req
->max_q_depth
= ql2xmaxqdepth
;
1768 base_vha
= qla2x00_create_host(sht
, ha
);
1770 qla_printk(KERN_WARNING
, ha
,
1771 "[ERROR] Failed to allocate memory for scsi_host\n");
1774 qla2x00_mem_free(ha
);
1775 qla2x00_free_que(ha
, req
, rsp
);
1776 goto probe_hw_failed
;
1779 pci_set_drvdata(pdev
, base_vha
);
1781 host
= base_vha
->host
;
1782 base_vha
->req_ques
[0] = req
->id
;
1783 host
->can_queue
= req
->length
+ 128;
1784 if (IS_QLA2XXX_MIDTYPE(ha
))
1785 base_vha
->mgmt_svr_loop_id
= 10 + base_vha
->vp_idx
;
1787 base_vha
->mgmt_svr_loop_id
= MANAGEMENT_SERVER
+
1790 host
->sg_tablesize
= 32;
1791 host
->max_id
= max_id
;
1792 host
->this_id
= 255;
1793 host
->cmd_per_lun
= 3;
1794 host
->unique_id
= host
->host_no
;
1795 host
->max_cmd_len
= MAX_CMDSZ
;
1796 host
->max_channel
= MAX_BUSES
- 1;
1797 host
->max_lun
= MAX_LUNS
;
1798 host
->transportt
= qla2xxx_transport_template
;
1800 /* Set up the irqs */
1801 ret
= qla2x00_request_irqs(ha
, rsp
);
1803 goto probe_init_failed
;
1804 /* Alloc arrays of request and response ring ptrs */
1805 if (!qla2x00_alloc_queues(ha
)) {
1806 qla_printk(KERN_WARNING
, ha
,
1807 "[ERROR] Failed to allocate memory for queue"
1809 goto probe_init_failed
;
1811 ha
->rsp_q_map
[0] = rsp
;
1812 ha
->req_q_map
[0] = req
;
1814 /* FWI2-capable only. */
1815 req
->req_q_in
= &ha
->iobase
->isp24
.req_q_in
;
1816 req
->req_q_out
= &ha
->iobase
->isp24
.req_q_out
;
1817 rsp
->rsp_q_in
= &ha
->iobase
->isp24
.rsp_q_in
;
1818 rsp
->rsp_q_out
= &ha
->iobase
->isp24
.rsp_q_out
;
1820 req
->req_q_in
= &ha
->mqiobase
->isp25mq
.req_q_in
;
1821 req
->req_q_out
= &ha
->mqiobase
->isp25mq
.req_q_out
;
1822 rsp
->rsp_q_in
= &ha
->mqiobase
->isp25mq
.rsp_q_in
;
1823 rsp
->rsp_q_out
= &ha
->mqiobase
->isp25mq
.rsp_q_out
;
1826 if (qla2x00_initialize_adapter(base_vha
)) {
1827 qla_printk(KERN_WARNING
, ha
,
1828 "Failed to initialize adapter\n");
1830 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1831 "Adapter flags %x.\n",
1832 base_vha
->host_no
, base_vha
->device_flags
));
1839 * Startup the kernel thread for this host adapter
1841 ha
->dpc_thread
= kthread_create(qla2x00_do_dpc
, ha
,
1842 "%s_dpc", base_vha
->host_str
);
1843 if (IS_ERR(ha
->dpc_thread
)) {
1844 qla_printk(KERN_WARNING
, ha
,
1845 "Unable to start DPC thread!\n");
1846 ret
= PTR_ERR(ha
->dpc_thread
);
1850 list_add_tail(&base_vha
->list
, &ha
->vp_list
);
1851 base_vha
->host
->irq
= ha
->pdev
->irq
;
1853 /* Initialized the timer */
1854 qla2x00_start_timer(base_vha
, qla2x00_timer
, WATCH_INTERVAL
);
1856 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1857 base_vha
->host_no
, ha
));
1859 base_vha
->flags
.init_done
= 1;
1860 base_vha
->flags
.online
= 1;
1862 ret
= scsi_add_host(host
, &pdev
->dev
);
1866 ha
->isp_ops
->enable_intrs(ha
);
1868 scsi_scan_host(host
);
1870 qla2x00_alloc_sysfs_attr(base_vha
);
1872 qla2x00_init_host_attr(base_vha
);
1874 qla2x00_dfs_setup(base_vha
);
1876 qla_printk(KERN_INFO
, ha
, "\n"
1877 " QLogic Fibre Channel HBA Driver: %s\n"
1879 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1880 qla2x00_version_str
, ha
->model_number
,
1881 ha
->model_desc
? ha
->model_desc
: "", pdev
->device
,
1882 ha
->isp_ops
->pci_info_str(base_vha
, pci_info
), pci_name(pdev
),
1883 ha
->flags
.enable_64bit_addressing
? '+' : '-', base_vha
->host_no
,
1884 ha
->isp_ops
->fw_version_str(base_vha
, fw_str
));
1889 qla2x00_free_que(ha
, req
, rsp
);
1893 qla2x00_free_device(base_vha
);
1895 scsi_host_put(base_vha
->host
);
1899 iounmap(ha
->iobase
);
1901 pci_release_selected_regions(ha
->pdev
, ha
->bars
);
1906 pci_disable_device(pdev
);
1911 qla2x00_remove_one(struct pci_dev
*pdev
)
1913 scsi_qla_host_t
*base_vha
, *vha
, *temp
;
1914 struct qla_hw_data
*ha
;
1916 base_vha
= pci_get_drvdata(pdev
);
1919 list_for_each_entry_safe(vha
, temp
, &ha
->vp_list
, list
) {
1920 if (vha
&& vha
->fc_vport
)
1921 fc_vport_terminate(vha
->fc_vport
);
1924 set_bit(UNLOADING
, &base_vha
->dpc_flags
);
1926 qla2x00_dfs_remove(base_vha
);
1928 qla84xx_put_chip(base_vha
);
1930 qla2x00_free_sysfs_attr(base_vha
);
1932 fc_remove_host(base_vha
->host
);
1934 scsi_remove_host(base_vha
->host
);
1936 qla2x00_free_device(base_vha
);
1938 scsi_host_put(base_vha
->host
);
1941 iounmap(ha
->iobase
);
1944 iounmap(ha
->mqiobase
);
1946 pci_release_selected_regions(ha
->pdev
, ha
->bars
);
1950 pci_disable_device(pdev
);
1951 pci_set_drvdata(pdev
, NULL
);
1955 qla2x00_free_device(scsi_qla_host_t
*vha
)
1957 struct qla_hw_data
*ha
= vha
->hw
;
1958 qla2x00_abort_all_cmds(vha
, DID_NO_CONNECT
<< 16);
1961 if (vha
->timer_active
)
1962 qla2x00_stop_timer(vha
);
1964 vha
->flags
.online
= 0;
1966 /* Kill the kernel thread for this host */
1967 if (ha
->dpc_thread
) {
1968 struct task_struct
*t
= ha
->dpc_thread
;
1971 * qla2xxx_wake_dpc checks for ->dpc_thread
1972 * so we need to zero it out.
1974 ha
->dpc_thread
= NULL
;
1978 if (ha
->flags
.fce_enabled
)
1979 qla2x00_disable_fce_trace(vha
, NULL
, NULL
);
1982 qla2x00_disable_eft_trace(vha
);
1984 /* Stop currently executing firmware. */
1985 qla2x00_try_to_stop_firmware(vha
);
1987 /* turn-off interrupts on the card */
1988 if (ha
->interrupts_on
)
1989 ha
->isp_ops
->disable_intrs(ha
);
1991 qla2x00_free_irqs(vha
);
1993 qla2x00_mem_free(ha
);
1995 qla2x00_free_queues(ha
);
1999 qla2x00_schedule_rport_del(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
2002 struct fc_rport
*rport
;
2007 rport
= fcport
->rport
;
2009 spin_lock_irq(vha
->host
->host_lock
);
2010 fcport
->drport
= rport
;
2011 spin_unlock_irq(vha
->host
->host_lock
);
2012 set_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
);
2013 qla2xxx_wake_dpc(vha
);
2015 fc_remote_port_delete(rport
);
2019 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
2021 * Input: ha = adapter block pointer. fcport = port structure pointer.
2027 void qla2x00_mark_device_lost(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
2028 int do_login
, int defer
)
2030 if (atomic_read(&fcport
->state
) == FCS_ONLINE
&&
2031 vha
->vp_idx
== fcport
->vp_idx
) {
2032 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2033 qla2x00_schedule_rport_del(vha
, fcport
, defer
);
2036 * We may need to retry the login, so don't change the state of the
2037 * port but do the retries.
2039 if (atomic_read(&fcport
->state
) != FCS_DEVICE_DEAD
)
2040 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2045 if (fcport
->login_retry
== 0) {
2046 fcport
->login_retry
= vha
->hw
->login_retry_count
;
2047 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
2049 DEBUG(printk("scsi(%ld): Port login retry: "
2050 "%02x%02x%02x%02x%02x%02x%02x%02x, "
2051 "id = 0x%04x retry cnt=%d\n",
2053 fcport
->port_name
[0],
2054 fcport
->port_name
[1],
2055 fcport
->port_name
[2],
2056 fcport
->port_name
[3],
2057 fcport
->port_name
[4],
2058 fcport
->port_name
[5],
2059 fcport
->port_name
[6],
2060 fcport
->port_name
[7],
2062 fcport
->login_retry
));
2067 * qla2x00_mark_all_devices_lost
2068 * Updates fcport state when device goes offline.
2071 * ha = adapter block pointer.
2072 * fcport = port structure pointer.
2080 qla2x00_mark_all_devices_lost(scsi_qla_host_t
*vha
, int defer
)
2084 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2085 if (vha
->vp_idx
!= fcport
->vp_idx
)
2088 * No point in marking the device as lost, if the device is
2091 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
)
2093 if (atomic_read(&fcport
->state
) == FCS_ONLINE
) {
2094 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2095 qla2x00_schedule_rport_del(vha
, fcport
, defer
);
2097 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2103 * Allocates adapter memory.
2110 qla2x00_mem_alloc(struct qla_hw_data
*ha
, uint16_t req_len
, uint16_t rsp_len
,
2111 struct req_que
**req
, struct rsp_que
**rsp
)
2115 ha
->init_cb
= dma_alloc_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
,
2116 &ha
->init_cb_dma
, GFP_KERNEL
);
2120 ha
->gid_list
= dma_alloc_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
,
2121 &ha
->gid_list_dma
, GFP_KERNEL
);
2123 goto fail_free_init_cb
;
2125 ha
->srb_mempool
= mempool_create_slab_pool(SRB_MIN_REQ
, srb_cachep
);
2126 if (!ha
->srb_mempool
)
2127 goto fail_free_gid_list
;
2129 /* Get memory for cached NVRAM */
2130 ha
->nvram
= kzalloc(MAX_NVRAM_SIZE
, GFP_KERNEL
);
2132 goto fail_free_srb_mempool
;
2134 snprintf(name
, sizeof(name
), "%s_%d", QLA2XXX_DRIVER_NAME
,
2136 ha
->s_dma_pool
= dma_pool_create(name
, &ha
->pdev
->dev
,
2137 DMA_POOL_SIZE
, 8, 0);
2138 if (!ha
->s_dma_pool
)
2139 goto fail_free_nvram
;
2141 /* Allocate memory for SNS commands */
2142 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
2143 /* Get consistent memory allocated for SNS commands */
2144 ha
->sns_cmd
= dma_alloc_coherent(&ha
->pdev
->dev
,
2145 sizeof(struct sns_cmd_pkt
), &ha
->sns_cmd_dma
, GFP_KERNEL
);
2149 /* Get consistent memory allocated for MS IOCB */
2150 ha
->ms_iocb
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
2154 /* Get consistent memory allocated for CT SNS commands */
2155 ha
->ct_sns
= dma_alloc_coherent(&ha
->pdev
->dev
,
2156 sizeof(struct ct_sns_pkt
), &ha
->ct_sns_dma
, GFP_KERNEL
);
2158 goto fail_free_ms_iocb
;
2161 /* Allocate memory for request ring */
2162 *req
= kzalloc(sizeof(struct req_que
), GFP_KERNEL
);
2164 DEBUG(printk("Unable to allocate memory for req\n"));
2167 (*req
)->length
= req_len
;
2168 (*req
)->ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
2169 ((*req
)->length
+ 1) * sizeof(request_t
),
2170 &(*req
)->dma
, GFP_KERNEL
);
2171 if (!(*req
)->ring
) {
2172 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2175 /* Allocate memory for response ring */
2176 *rsp
= kzalloc(sizeof(struct rsp_que
), GFP_KERNEL
);
2178 qla_printk(KERN_WARNING
, ha
,
2179 "Unable to allocate memory for rsp\n");
2183 (*rsp
)->length
= rsp_len
;
2184 (*rsp
)->ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
2185 ((*rsp
)->length
+ 1) * sizeof(response_t
),
2186 &(*rsp
)->dma
, GFP_KERNEL
);
2187 if (!(*rsp
)->ring
) {
2188 qla_printk(KERN_WARNING
, ha
,
2189 "Unable to allocate memory for rsp_ring\n");
2194 /* Allocate memory for NVRAM data for vports */
2195 if (ha
->nvram_npiv_size
) {
2196 ha
->npiv_info
= kzalloc(sizeof(struct qla_npiv_entry
) *
2197 ha
->nvram_npiv_size
, GFP_KERNEL
);
2198 if (!ha
->npiv_info
) {
2199 qla_printk(KERN_WARNING
, ha
,
2200 "Unable to allocate memory for npiv info\n");
2201 goto fail_npiv_info
;
2204 ha
->npiv_info
= NULL
;
2206 INIT_LIST_HEAD(&ha
->vp_list
);
2210 dma_free_coherent(&ha
->pdev
->dev
, ((*rsp
)->length
+ 1) *
2211 sizeof(response_t
), (*rsp
)->ring
, (*rsp
)->dma
);
2212 (*rsp
)->ring
= NULL
;
2217 dma_free_coherent(&ha
->pdev
->dev
, ((*req
)->length
+ 1) *
2218 sizeof(request_t
), (*req
)->ring
, (*req
)->dma
);
2219 (*req
)->ring
= NULL
;
2224 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct ct_sns_pkt
),
2225 ha
->ct_sns
, ha
->ct_sns_dma
);
2229 dma_pool_free(ha
->s_dma_pool
, ha
->ms_iocb
, ha
->ms_iocb_dma
);
2231 ha
->ms_iocb_dma
= 0;
2233 dma_pool_destroy(ha
->s_dma_pool
);
2234 ha
->s_dma_pool
= NULL
;
2238 fail_free_srb_mempool
:
2239 mempool_destroy(ha
->srb_mempool
);
2240 ha
->srb_mempool
= NULL
;
2242 dma_free_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
, ha
->gid_list
,
2244 ha
->gid_list
= NULL
;
2245 ha
->gid_list_dma
= 0;
2247 dma_free_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
, ha
->init_cb
,
2250 ha
->init_cb_dma
= 0;
2252 DEBUG(printk("%s: Memory allocation failure\n", __func__
));
2258 * Frees all adapter allocated memory.
2261 * ha = adapter block pointer.
2264 qla2x00_mem_free(struct qla_hw_data
*ha
)
2266 if (ha
->srb_mempool
)
2267 mempool_destroy(ha
->srb_mempool
);
2270 dma_free_coherent(&ha
->pdev
->dev
, FCE_SIZE
, ha
->fce
,
2275 dma_free_coherent(&ha
->pdev
->dev
,
2276 ntohl(ha
->fw_dump
->eft_size
), ha
->eft
, ha
->eft_dma
);
2281 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct sns_cmd_pkt
),
2282 ha
->sns_cmd
, ha
->sns_cmd_dma
);
2285 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct ct_sns_pkt
),
2286 ha
->ct_sns
, ha
->ct_sns_dma
);
2289 dma_pool_free(ha
->s_dma_pool
, ha
->sfp_data
, ha
->sfp_data_dma
);
2292 dma_pool_free(ha
->s_dma_pool
, ha
->ms_iocb
, ha
->ms_iocb_dma
);
2295 dma_pool_destroy(ha
->s_dma_pool
);
2299 dma_free_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
, ha
->gid_list
,
2304 dma_free_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
,
2305 ha
->init_cb
, ha
->init_cb_dma
);
2306 vfree(ha
->optrom_buffer
);
2308 kfree(ha
->npiv_info
);
2310 ha
->srb_mempool
= NULL
;
2314 ha
->sns_cmd_dma
= 0;
2318 ha
->ms_iocb_dma
= 0;
2320 ha
->init_cb_dma
= 0;
2322 ha
->s_dma_pool
= NULL
;
2324 ha
->gid_list
= NULL
;
2325 ha
->gid_list_dma
= 0;
2329 ha
->fw_dump_reading
= 0;
2332 struct scsi_qla_host
*qla2x00_create_host(struct scsi_host_template
*sht
,
2333 struct qla_hw_data
*ha
)
2335 struct Scsi_Host
*host
;
2336 struct scsi_qla_host
*vha
= NULL
;
2338 host
= scsi_host_alloc(sht
, sizeof(scsi_qla_host_t
));
2341 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2345 /* Clear our data area */
2346 vha
= shost_priv(host
);
2347 memset(vha
, 0, sizeof(scsi_qla_host_t
));
2350 vha
->host_no
= host
->host_no
;
2353 INIT_LIST_HEAD(&vha
->vp_fcports
);
2354 INIT_LIST_HEAD(&vha
->work_list
);
2355 INIT_LIST_HEAD(&vha
->list
);
2357 sprintf(vha
->host_str
, "%s_%ld", QLA2XXX_DRIVER_NAME
, vha
->host_no
);
2364 static struct qla_work_evt
*
2365 qla2x00_alloc_work(struct scsi_qla_host
*vha
, enum qla_work_type type
,
2368 struct qla_work_evt
*e
;
2370 e
= kzalloc(sizeof(struct qla_work_evt
), locked
? GFP_ATOMIC
:
2375 INIT_LIST_HEAD(&e
->list
);
2377 e
->flags
= QLA_EVT_FLAG_FREE
;
2382 qla2x00_post_work(struct scsi_qla_host
*vha
, struct qla_work_evt
*e
, int locked
)
2384 unsigned long uninitialized_var(flags
);
2385 struct qla_hw_data
*ha
= vha
->hw
;
2388 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2389 list_add_tail(&e
->list
, &vha
->work_list
);
2390 qla2xxx_wake_dpc(vha
);
2392 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2397 qla2x00_post_aen_work(struct scsi_qla_host
*vha
, enum fc_host_event_code code
,
2400 struct qla_work_evt
*e
;
2402 e
= qla2x00_alloc_work(vha
, QLA_EVT_AEN
, 1);
2404 return QLA_FUNCTION_FAILED
;
2406 e
->u
.aen
.code
= code
;
2407 e
->u
.aen
.data
= data
;
2408 return qla2x00_post_work(vha
, e
, 1);
2412 qla2x00_post_idc_ack_work(struct scsi_qla_host
*vha
, uint16_t *mb
)
2414 struct qla_work_evt
*e
;
2416 e
= qla2x00_alloc_work(vha
, QLA_EVT_IDC_ACK
, 1);
2418 return QLA_FUNCTION_FAILED
;
2420 memcpy(e
->u
.idc_ack
.mb
, mb
, QLA_IDC_ACK_REGS
* sizeof(uint16_t));
2421 return qla2x00_post_work(vha
, e
, 1);
2425 qla2x00_do_work(struct scsi_qla_host
*vha
)
2427 struct qla_work_evt
*e
;
2428 struct qla_hw_data
*ha
= vha
->hw
;
2430 spin_lock_irq(&ha
->hardware_lock
);
2431 while (!list_empty(&vha
->work_list
)) {
2432 e
= list_entry(vha
->work_list
.next
, struct qla_work_evt
, list
);
2433 list_del_init(&e
->list
);
2434 spin_unlock_irq(&ha
->hardware_lock
);
2438 fc_host_post_event(vha
->host
, fc_get_event_number(),
2439 e
->u
.aen
.code
, e
->u
.aen
.data
);
2441 case QLA_EVT_IDC_ACK
:
2442 qla81xx_idc_ack(vha
, e
->u
.idc_ack
.mb
);
2445 if (e
->flags
& QLA_EVT_FLAG_FREE
)
2447 spin_lock_irq(&ha
->hardware_lock
);
2449 spin_unlock_irq(&ha
->hardware_lock
);
2451 /* Relogins all the fcports of a vport
2452 * Context: dpc thread
2454 void qla2x00_relogin(struct scsi_qla_host
*vha
)
2458 uint16_t next_loopid
= 0;
2459 struct qla_hw_data
*ha
= vha
->hw
;
2461 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2463 * If the port is not ONLINE then try to login
2464 * to it if we haven't run out of retries.
2466 if (atomic_read(&fcport
->state
) !=
2467 FCS_ONLINE
&& fcport
->login_retry
) {
2469 if (fcport
->flags
& FCF_FABRIC_DEVICE
) {
2470 if (fcport
->flags
& FCF_TAPE_PRESENT
)
2471 ha
->isp_ops
->fabric_logout(vha
,
2473 fcport
->d_id
.b
.domain
,
2474 fcport
->d_id
.b
.area
,
2475 fcport
->d_id
.b
.al_pa
);
2477 status
= qla2x00_fabric_login(vha
, fcport
,
2480 status
= qla2x00_local_device_login(vha
,
2483 fcport
->login_retry
--;
2484 if (status
== QLA_SUCCESS
) {
2485 fcport
->old_loop_id
= fcport
->loop_id
;
2487 DEBUG(printk("scsi(%ld): port login OK: logged "
2488 "in ID 0x%x\n", vha
->host_no
, fcport
->loop_id
));
2490 qla2x00_update_fcport(vha
, fcport
);
2492 } else if (status
== 1) {
2493 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
2494 /* retry the login again */
2495 DEBUG(printk("scsi(%ld): Retrying"
2496 " %d login again loop_id 0x%x\n",
2497 vha
->host_no
, fcport
->login_retry
,
2500 fcport
->login_retry
= 0;
2503 if (fcport
->login_retry
== 0 && status
!= QLA_SUCCESS
)
2504 fcport
->loop_id
= FC_NO_LOOP_ID
;
2506 if (test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
))
2511 /**************************************************************************
2513 * This kernel thread is a task that is schedule by the interrupt handler
2514 * to perform the background processing for interrupts.
2517 * This task always run in the context of a kernel thread. It
2518 * is kick-off by the driver's detect code and starts up
2519 * up one per adapter. It immediately goes to sleep and waits for
2520 * some fibre event. When either the interrupt handler or
2521 * the timer routine detects a event it will one of the task
2522 * bits then wake us up.
2523 **************************************************************************/
2525 qla2x00_do_dpc(void *data
)
2528 scsi_qla_host_t
*base_vha
;
2529 struct qla_hw_data
*ha
;
2531 ha
= (struct qla_hw_data
*)data
;
2532 base_vha
= pci_get_drvdata(ha
->pdev
);
2534 set_user_nice(current
, -20);
2536 while (!kthread_should_stop()) {
2537 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2539 set_current_state(TASK_INTERRUPTIBLE
);
2541 __set_current_state(TASK_RUNNING
);
2543 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2545 /* Initialization not yet finished. Don't do anything yet. */
2546 if (!base_vha
->flags
.init_done
)
2549 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha
->host_no
));
2553 if (ha
->flags
.mbox_busy
) {
2558 qla2x00_do_work(base_vha
);
2560 if (test_and_clear_bit(ISP_ABORT_NEEDED
,
2561 &base_vha
->dpc_flags
)) {
2563 DEBUG(printk("scsi(%ld): dpc: sched "
2564 "qla2x00_abort_isp ha = %p\n",
2565 base_vha
->host_no
, ha
));
2566 if (!(test_and_set_bit(ABORT_ISP_ACTIVE
,
2567 &base_vha
->dpc_flags
))) {
2569 if (qla2x00_abort_isp(base_vha
)) {
2570 /* failed. retry later */
2571 set_bit(ISP_ABORT_NEEDED
,
2572 &base_vha
->dpc_flags
);
2574 clear_bit(ABORT_ISP_ACTIVE
,
2575 &base_vha
->dpc_flags
);
2578 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2579 base_vha
->host_no
));
2582 if (test_bit(FCPORT_UPDATE_NEEDED
, &base_vha
->dpc_flags
)) {
2583 qla2x00_update_fcports(base_vha
);
2584 clear_bit(FCPORT_UPDATE_NEEDED
, &base_vha
->dpc_flags
);
2587 if (test_and_clear_bit(RESET_MARKER_NEEDED
,
2588 &base_vha
->dpc_flags
) &&
2589 (!(test_and_set_bit(RESET_ACTIVE
, &base_vha
->dpc_flags
)))) {
2591 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2592 base_vha
->host_no
));
2594 qla2x00_rst_aen(base_vha
);
2595 clear_bit(RESET_ACTIVE
, &base_vha
->dpc_flags
);
2598 /* Retry each device up to login retry count */
2599 if ((test_and_clear_bit(RELOGIN_NEEDED
,
2600 &base_vha
->dpc_flags
)) &&
2601 !test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
) &&
2602 atomic_read(&base_vha
->loop_state
) != LOOP_DOWN
) {
2604 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2605 base_vha
->host_no
));
2606 qla2x00_relogin(base_vha
);
2608 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2609 base_vha
->host_no
));
2612 if (test_and_clear_bit(LOOP_RESYNC_NEEDED
,
2613 &base_vha
->dpc_flags
)) {
2615 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2616 base_vha
->host_no
));
2618 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE
,
2619 &base_vha
->dpc_flags
))) {
2621 rval
= qla2x00_loop_resync(base_vha
);
2623 clear_bit(LOOP_RESYNC_ACTIVE
,
2624 &base_vha
->dpc_flags
);
2627 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2628 base_vha
->host_no
));
2631 if (test_bit(NPIV_CONFIG_NEEDED
, &base_vha
->dpc_flags
) &&
2632 atomic_read(&base_vha
->loop_state
) == LOOP_READY
) {
2633 clear_bit(NPIV_CONFIG_NEEDED
, &base_vha
->dpc_flags
);
2634 qla2xxx_flash_npiv_conf(base_vha
);
2637 if (!ha
->interrupts_on
)
2638 ha
->isp_ops
->enable_intrs(ha
);
2640 if (test_and_clear_bit(BEACON_BLINK_NEEDED
,
2641 &base_vha
->dpc_flags
))
2642 ha
->isp_ops
->beacon_blink(base_vha
);
2644 qla2x00_do_dpc_all_vps(base_vha
);
2647 } /* End of while(1) */
2649 DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha
->host_no
));
2652 * Make sure that nobody tries to wake us up again.
2660 qla2xxx_wake_dpc(struct scsi_qla_host
*vha
)
2662 struct qla_hw_data
*ha
= vha
->hw
;
2663 struct task_struct
*t
= ha
->dpc_thread
;
2665 if (!test_bit(UNLOADING
, &vha
->dpc_flags
) && t
)
2671 * Processes asynchronous reset.
2674 * ha = adapter block pointer.
2677 qla2x00_rst_aen(scsi_qla_host_t
*vha
)
2679 if (vha
->flags
.online
&& !vha
->flags
.reset_active
&&
2680 !atomic_read(&vha
->loop_down_timer
) &&
2681 !(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
))) {
2683 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
2686 * Issue marker command only when we are going to start
2689 vha
->marker_needed
= 1;
2690 } while (!atomic_read(&vha
->loop_down_timer
) &&
2691 (test_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
)));
2696 qla2x00_sp_free_dma(srb_t
*sp
)
2698 struct scsi_cmnd
*cmd
= sp
->cmd
;
2700 if (sp
->flags
& SRB_DMA_VALID
) {
2701 scsi_dma_unmap(cmd
);
2702 sp
->flags
&= ~SRB_DMA_VALID
;
2708 qla2x00_sp_compl(struct qla_hw_data
*ha
, srb_t
*sp
)
2710 struct scsi_cmnd
*cmd
= sp
->cmd
;
2712 qla2x00_sp_free_dma(sp
);
2714 mempool_free(sp
, ha
->srb_mempool
);
2716 cmd
->scsi_done(cmd
);
2719 /**************************************************************************
2725 * Context: Interrupt
2726 ***************************************************************************/
2728 qla2x00_timer(scsi_qla_host_t
*vha
)
2730 unsigned long cpu_flags
= 0;
2736 struct qla_hw_data
*ha
= vha
->hw
;
2737 struct req_que
*req
;
2739 * Ports - Port down timer.
2741 * Whenever, a port is in the LOST state we start decrementing its port
2742 * down timer every second until it reaches zero. Once it reaches zero
2743 * the port it marked DEAD.
2746 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2747 if (fcport
->port_type
!= FCT_TARGET
)
2750 if (atomic_read(&fcport
->state
) == FCS_DEVICE_LOST
) {
2752 if (atomic_read(&fcport
->port_down_timer
) == 0)
2755 if (atomic_dec_and_test(&fcport
->port_down_timer
) != 0)
2756 atomic_set(&fcport
->state
, FCS_DEVICE_DEAD
);
2758 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
2761 t
, atomic_read(&fcport
->port_down_timer
)));
2764 } /* End of for fcport */
2767 /* Loop down handler. */
2768 if (atomic_read(&vha
->loop_down_timer
) > 0 &&
2769 !(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
))
2770 && vha
->flags
.online
) {
2772 if (atomic_read(&vha
->loop_down_timer
) ==
2773 vha
->loop_down_abort_time
) {
2775 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2776 "queues before time expire\n",
2779 if (!IS_QLA2100(ha
) && vha
->link_down_timeout
)
2780 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
2782 /* Schedule an ISP abort to return any tape commands. */
2783 /* NPIV - scan physical port only */
2785 spin_lock_irqsave(&ha
->hardware_lock
,
2787 req
= ha
->req_q_map
[0];
2789 index
< MAX_OUTSTANDING_COMMANDS
;
2793 sp
= req
->outstanding_cmds
[index
];
2797 if (!(sfcp
->flags
& FCF_TAPE_PRESENT
))
2800 set_bit(ISP_ABORT_NEEDED
,
2804 spin_unlock_irqrestore(&ha
->hardware_lock
,
2807 set_bit(ABORT_QUEUES_NEEDED
, &vha
->dpc_flags
);
2811 /* if the loop has been down for 4 minutes, reinit adapter */
2812 if (atomic_dec_and_test(&vha
->loop_down_timer
) != 0) {
2813 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2814 "restarting queues.\n",
2817 set_bit(RESTART_QUEUES_NEEDED
, &vha
->dpc_flags
);
2820 if (!(vha
->device_flags
& DFLG_NO_CABLE
) &&
2822 DEBUG(printk("scsi(%ld): Loop down - "
2825 qla_printk(KERN_WARNING
, ha
,
2826 "Loop down - aborting ISP.\n");
2828 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
2831 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
2833 atomic_read(&vha
->loop_down_timer
)));
2836 /* Check if beacon LED needs to be blinked */
2837 if (ha
->beacon_blink_led
== 1) {
2838 set_bit(BEACON_BLINK_NEEDED
, &vha
->dpc_flags
);
2842 /* Process any deferred work. */
2843 if (!list_empty(&vha
->work_list
))
2846 /* Schedule the DPC routine if needed */
2847 if ((test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
) ||
2848 test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
) ||
2849 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
) ||
2851 test_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
) ||
2852 test_bit(BEACON_BLINK_NEEDED
, &vha
->dpc_flags
) ||
2853 test_bit(VP_DPC_NEEDED
, &vha
->dpc_flags
) ||
2854 test_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
)))
2855 qla2xxx_wake_dpc(vha
);
2857 qla2x00_restart_timer(vha
, WATCH_INTERVAL
);
2860 /* Firmware interface routines. */
2863 #define FW_ISP21XX 0
2864 #define FW_ISP22XX 1
2865 #define FW_ISP2300 2
2866 #define FW_ISP2322 3
2867 #define FW_ISP24XX 4
2868 #define FW_ISP25XX 5
2869 #define FW_ISP81XX 6
2871 #define FW_FILE_ISP21XX "ql2100_fw.bin"
2872 #define FW_FILE_ISP22XX "ql2200_fw.bin"
2873 #define FW_FILE_ISP2300 "ql2300_fw.bin"
2874 #define FW_FILE_ISP2322 "ql2322_fw.bin"
2875 #define FW_FILE_ISP24XX "ql2400_fw.bin"
2876 #define FW_FILE_ISP25XX "ql2500_fw.bin"
2877 #define FW_FILE_ISP81XX "ql8100_fw.bin"
2879 static DEFINE_MUTEX(qla_fw_lock
);
2881 static struct fw_blob qla_fw_blobs
[FW_BLOBS
] = {
2882 { .name
= FW_FILE_ISP21XX
, .segs
= { 0x1000, 0 }, },
2883 { .name
= FW_FILE_ISP22XX
, .segs
= { 0x1000, 0 }, },
2884 { .name
= FW_FILE_ISP2300
, .segs
= { 0x800, 0 }, },
2885 { .name
= FW_FILE_ISP2322
, .segs
= { 0x800, 0x1c000, 0x1e000, 0 }, },
2886 { .name
= FW_FILE_ISP24XX
, },
2887 { .name
= FW_FILE_ISP25XX
, },
2888 { .name
= FW_FILE_ISP81XX
, },
2892 qla2x00_request_firmware(scsi_qla_host_t
*vha
)
2894 struct qla_hw_data
*ha
= vha
->hw
;
2895 struct fw_blob
*blob
;
2898 if (IS_QLA2100(ha
)) {
2899 blob
= &qla_fw_blobs
[FW_ISP21XX
];
2900 } else if (IS_QLA2200(ha
)) {
2901 blob
= &qla_fw_blobs
[FW_ISP22XX
];
2902 } else if (IS_QLA2300(ha
) || IS_QLA2312(ha
) || IS_QLA6312(ha
)) {
2903 blob
= &qla_fw_blobs
[FW_ISP2300
];
2904 } else if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
2905 blob
= &qla_fw_blobs
[FW_ISP2322
];
2906 } else if (IS_QLA24XX_TYPE(ha
)) {
2907 blob
= &qla_fw_blobs
[FW_ISP24XX
];
2908 } else if (IS_QLA25XX(ha
)) {
2909 blob
= &qla_fw_blobs
[FW_ISP25XX
];
2910 } else if (IS_QLA81XX(ha
)) {
2911 blob
= &qla_fw_blobs
[FW_ISP81XX
];
2914 mutex_lock(&qla_fw_lock
);
2918 if (request_firmware(&blob
->fw
, blob
->name
, &ha
->pdev
->dev
)) {
2919 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2920 "(%s).\n", vha
->host_no
, blob
->name
));
2927 mutex_unlock(&qla_fw_lock
);
2932 qla2x00_release_firmware(void)
2936 mutex_lock(&qla_fw_lock
);
2937 for (idx
= 0; idx
< FW_BLOBS
; idx
++)
2938 if (qla_fw_blobs
[idx
].fw
)
2939 release_firmware(qla_fw_blobs
[idx
].fw
);
2940 mutex_unlock(&qla_fw_lock
);
2943 static pci_ers_result_t
2944 qla2xxx_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
2947 case pci_channel_io_normal
:
2948 return PCI_ERS_RESULT_CAN_RECOVER
;
2949 case pci_channel_io_frozen
:
2950 pci_disable_device(pdev
);
2951 return PCI_ERS_RESULT_NEED_RESET
;
2952 case pci_channel_io_perm_failure
:
2953 qla2x00_remove_one(pdev
);
2954 return PCI_ERS_RESULT_DISCONNECT
;
2956 return PCI_ERS_RESULT_NEED_RESET
;
2959 static pci_ers_result_t
2960 qla2xxx_pci_mmio_enabled(struct pci_dev
*pdev
)
2962 int risc_paused
= 0;
2964 unsigned long flags
;
2965 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
2966 struct qla_hw_data
*ha
= base_vha
->hw
;
2967 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
2968 struct device_reg_24xx __iomem
*reg24
= &ha
->iobase
->isp24
;
2970 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
2971 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)){
2972 stat
= RD_REG_DWORD(®
->hccr
);
2973 if (stat
& HCCR_RISC_PAUSE
)
2975 } else if (IS_QLA23XX(ha
)) {
2976 stat
= RD_REG_DWORD(®
->u
.isp2300
.host_status
);
2977 if (stat
& HSR_RISC_PAUSED
)
2979 } else if (IS_FWI2_CAPABLE(ha
)) {
2980 stat
= RD_REG_DWORD(®24
->host_status
);
2981 if (stat
& HSRX_RISC_PAUSED
)
2984 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
2987 qla_printk(KERN_INFO
, ha
, "RISC paused -- mmio_enabled, "
2988 "Dumping firmware!\n");
2989 ha
->isp_ops
->fw_dump(base_vha
, 0);
2991 return PCI_ERS_RESULT_NEED_RESET
;
2993 return PCI_ERS_RESULT_RECOVERED
;
2996 static pci_ers_result_t
2997 qla2xxx_pci_slot_reset(struct pci_dev
*pdev
)
2999 pci_ers_result_t ret
= PCI_ERS_RESULT_DISCONNECT
;
3000 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3001 struct qla_hw_data
*ha
= base_vha
->hw
;
3005 rc
= pci_enable_device_mem(pdev
);
3007 rc
= pci_enable_device(pdev
);
3010 qla_printk(KERN_WARNING
, ha
,
3011 "Can't re-enable PCI device after reset.\n");
3015 pci_set_master(pdev
);
3017 if (ha
->isp_ops
->pci_config(base_vha
))
3020 set_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
3021 if (qla2x00_abort_isp(base_vha
) == QLA_SUCCESS
)
3022 ret
= PCI_ERS_RESULT_RECOVERED
;
3023 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
3029 qla2xxx_pci_resume(struct pci_dev
*pdev
)
3031 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3032 struct qla_hw_data
*ha
= base_vha
->hw
;
3035 ret
= qla2x00_wait_for_hba_online(base_vha
);
3036 if (ret
!= QLA_SUCCESS
) {
3037 qla_printk(KERN_ERR
, ha
,
3038 "the device failed to resume I/O "
3039 "from slot/link_reset");
3041 pci_cleanup_aer_uncorrect_error_status(pdev
);
3044 static struct pci_error_handlers qla2xxx_err_handler
= {
3045 .error_detected
= qla2xxx_pci_error_detected
,
3046 .mmio_enabled
= qla2xxx_pci_mmio_enabled
,
3047 .slot_reset
= qla2xxx_pci_slot_reset
,
3048 .resume
= qla2xxx_pci_resume
,
3051 static struct pci_device_id qla2xxx_pci_tbl
[] = {
3052 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2100
) },
3053 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2200
) },
3054 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2300
) },
3055 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2312
) },
3056 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2322
) },
3057 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP6312
) },
3058 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP6322
) },
3059 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2422
) },
3060 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2432
) },
3061 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP8432
) },
3062 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP5422
) },
3063 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP5432
) },
3064 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2532
) },
3065 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP8001
) },
3068 MODULE_DEVICE_TABLE(pci
, qla2xxx_pci_tbl
);
3070 static struct pci_driver qla2xxx_pci_driver
= {
3071 .name
= QLA2XXX_DRIVER_NAME
,
3073 .owner
= THIS_MODULE
,
3075 .id_table
= qla2xxx_pci_tbl
,
3076 .probe
= qla2x00_probe_one
,
3077 .remove
= qla2x00_remove_one
,
3078 .err_handler
= &qla2xxx_err_handler
,
3082 * qla2x00_module_init - Module initialization.
3085 qla2x00_module_init(void)
3089 /* Allocate cache for SRBs. */
3090 srb_cachep
= kmem_cache_create("qla2xxx_srbs", sizeof(srb_t
), 0,
3091 SLAB_HWCACHE_ALIGN
, NULL
);
3092 if (srb_cachep
== NULL
) {
3094 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
3098 /* Derive version string. */
3099 strcpy(qla2x00_version_str
, QLA2XXX_VERSION
);
3100 if (ql2xextended_error_logging
)
3101 strcat(qla2x00_version_str
, "-debug");
3103 qla2xxx_transport_template
=
3104 fc_attach_transport(&qla2xxx_transport_functions
);
3105 if (!qla2xxx_transport_template
) {
3106 kmem_cache_destroy(srb_cachep
);
3109 qla2xxx_transport_vport_template
=
3110 fc_attach_transport(&qla2xxx_transport_vport_functions
);
3111 if (!qla2xxx_transport_vport_template
) {
3112 kmem_cache_destroy(srb_cachep
);
3113 fc_release_transport(qla2xxx_transport_template
);
3117 printk(KERN_INFO
"QLogic Fibre Channel HBA Driver: %s\n",
3118 qla2x00_version_str
);
3119 ret
= pci_register_driver(&qla2xxx_pci_driver
);
3121 kmem_cache_destroy(srb_cachep
);
3122 fc_release_transport(qla2xxx_transport_template
);
3123 fc_release_transport(qla2xxx_transport_vport_template
);
3129 * qla2x00_module_exit - Module cleanup.
3132 qla2x00_module_exit(void)
3134 pci_unregister_driver(&qla2xxx_pci_driver
);
3135 qla2x00_release_firmware();
3136 kmem_cache_destroy(srb_cachep
);
3137 fc_release_transport(qla2xxx_transport_template
);
3138 fc_release_transport(qla2xxx_transport_vport_template
);
3141 module_init(qla2x00_module_init
);
3142 module_exit(qla2x00_module_exit
);
3144 MODULE_AUTHOR("QLogic Corporation");
3145 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
3146 MODULE_LICENSE("GPL");
3147 MODULE_VERSION(QLA2XXX_VERSION
);
3148 MODULE_FIRMWARE(FW_FILE_ISP21XX
);
3149 MODULE_FIRMWARE(FW_FILE_ISP22XX
);
3150 MODULE_FIRMWARE(FW_FILE_ISP2300
);
3151 MODULE_FIRMWARE(FW_FILE_ISP2322
);
3152 MODULE_FIRMWARE(FW_FILE_ISP24XX
);
3153 MODULE_FIRMWARE(FW_FILE_ISP25XX
);
3154 MODULE_FIRMWARE(FW_FILE_ISP81XX
);