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 ql2xqfulltracking
= 1;
81 module_param(ql2xqfulltracking
, int, S_IRUGO
|S_IWUSR
);
82 MODULE_PARM_DESC(ql2xqfulltracking
,
83 "Controls whether the driver tracks queue full status "
84 "returns and dynamically adjusts a scsi device's queue "
85 "depth. Default is 1, perform tracking. Set to 0 to "
86 "disable dynamic tracking and adjustment of queue depth.");
88 int ql2xqfullrampup
= 120;
89 module_param(ql2xqfullrampup
, int, S_IRUGO
|S_IWUSR
);
90 MODULE_PARM_DESC(ql2xqfullrampup
,
91 "Number of seconds to wait to begin to ramp-up the queue "
92 "depth for a device after a queue-full condition has been "
93 "detected. Default is 120 seconds.");
95 int ql2xiidmaenable
=1;
96 module_param(ql2xiidmaenable
, int, S_IRUGO
|S_IRUSR
);
97 MODULE_PARM_DESC(ql2xiidmaenable
,
98 "Enables iIDMA settings "
99 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
101 int ql2xmaxqueues
= 1;
102 module_param(ql2xmaxqueues
, int, S_IRUGO
|S_IRUSR
);
103 MODULE_PARM_DESC(ql2xmaxqueues
,
104 "Enables MQ settings "
105 "Default is 1 for single queue. Set it to number \
106 of queues in MQ mode.");
108 int ql2xmultique_tag
;
109 module_param(ql2xmultique_tag
, int, S_IRUGO
|S_IRUSR
);
110 MODULE_PARM_DESC(ql2xmultique_tag
,
111 "Enables CPU affinity settings for the driver "
112 "Default is 0 for no affinity of request and response IO. "
113 "Set it to 1 to turn on the cpu affinity.");
116 module_param(ql2xfwloadbin
, int, S_IRUGO
|S_IRUSR
);
117 MODULE_PARM_DESC(ql2xfwloadbin
,
118 "Option to specify location from which to load ISP firmware:\n"
119 " 2 -- load firmware via the request_firmware() (hotplug)\n"
121 " 1 -- load firmware from flash.\n"
122 " 0 -- use default semantics.\n");
125 * SCSI host template entry points
127 static int qla2xxx_slave_configure(struct scsi_device
* device
);
128 static int qla2xxx_slave_alloc(struct scsi_device
*);
129 static int qla2xxx_scan_finished(struct Scsi_Host
*, unsigned long time
);
130 static void qla2xxx_scan_start(struct Scsi_Host
*);
131 static void qla2xxx_slave_destroy(struct scsi_device
*);
132 static int qla2xxx_queuecommand(struct scsi_cmnd
*cmd
,
133 void (*fn
)(struct scsi_cmnd
*));
134 static int qla2xxx_eh_abort(struct scsi_cmnd
*);
135 static int qla2xxx_eh_device_reset(struct scsi_cmnd
*);
136 static int qla2xxx_eh_target_reset(struct scsi_cmnd
*);
137 static int qla2xxx_eh_bus_reset(struct scsi_cmnd
*);
138 static int qla2xxx_eh_host_reset(struct scsi_cmnd
*);
140 static int qla2x00_change_queue_depth(struct scsi_device
*, int);
141 static int qla2x00_change_queue_type(struct scsi_device
*, int);
143 struct scsi_host_template qla2xxx_driver_template
= {
144 .module
= THIS_MODULE
,
145 .name
= QLA2XXX_DRIVER_NAME
,
146 .queuecommand
= qla2xxx_queuecommand
,
148 .eh_abort_handler
= qla2xxx_eh_abort
,
149 .eh_device_reset_handler
= qla2xxx_eh_device_reset
,
150 .eh_target_reset_handler
= qla2xxx_eh_target_reset
,
151 .eh_bus_reset_handler
= qla2xxx_eh_bus_reset
,
152 .eh_host_reset_handler
= qla2xxx_eh_host_reset
,
154 .slave_configure
= qla2xxx_slave_configure
,
156 .slave_alloc
= qla2xxx_slave_alloc
,
157 .slave_destroy
= qla2xxx_slave_destroy
,
158 .scan_finished
= qla2xxx_scan_finished
,
159 .scan_start
= qla2xxx_scan_start
,
160 .change_queue_depth
= qla2x00_change_queue_depth
,
161 .change_queue_type
= qla2x00_change_queue_type
,
164 .use_clustering
= ENABLE_CLUSTERING
,
165 .sg_tablesize
= SG_ALL
,
167 .max_sectors
= 0xFFFF,
168 .shost_attrs
= qla2x00_host_attrs
,
171 static struct scsi_transport_template
*qla2xxx_transport_template
= NULL
;
172 struct scsi_transport_template
*qla2xxx_transport_vport_template
= NULL
;
174 /* TODO Convert to inlines
180 qla2x00_start_timer(scsi_qla_host_t
*vha
, void *func
, unsigned long interval
)
182 init_timer(&vha
->timer
);
183 vha
->timer
.expires
= jiffies
+ interval
* HZ
;
184 vha
->timer
.data
= (unsigned long)vha
;
185 vha
->timer
.function
= (void (*)(unsigned long))func
;
186 add_timer(&vha
->timer
);
187 vha
->timer_active
= 1;
191 qla2x00_restart_timer(scsi_qla_host_t
*vha
, unsigned long interval
)
193 mod_timer(&vha
->timer
, jiffies
+ interval
* HZ
);
196 static __inline__
void
197 qla2x00_stop_timer(scsi_qla_host_t
*vha
)
199 del_timer_sync(&vha
->timer
);
200 vha
->timer_active
= 0;
203 static int qla2x00_do_dpc(void *data
);
205 static void qla2x00_rst_aen(scsi_qla_host_t
*);
207 static int qla2x00_mem_alloc(struct qla_hw_data
*, uint16_t, uint16_t,
208 struct req_que
**, struct rsp_que
**);
209 static void qla2x00_mem_free(struct qla_hw_data
*);
210 static void qla2x00_sp_free_dma(srb_t
*);
212 /* -------------------------------------------------------------------------- */
213 static int qla2x00_alloc_queues(struct qla_hw_data
*ha
)
215 ha
->req_q_map
= kzalloc(sizeof(struct req_que
*) * ha
->max_req_queues
,
217 if (!ha
->req_q_map
) {
218 qla_printk(KERN_WARNING
, ha
,
219 "Unable to allocate memory for request queue ptrs\n");
223 ha
->rsp_q_map
= kzalloc(sizeof(struct rsp_que
*) * ha
->max_rsp_queues
,
225 if (!ha
->rsp_q_map
) {
226 qla_printk(KERN_WARNING
, ha
,
227 "Unable to allocate memory for response queue ptrs\n");
230 set_bit(0, ha
->rsp_qid_map
);
231 set_bit(0, ha
->req_qid_map
);
235 kfree(ha
->req_q_map
);
236 ha
->req_q_map
= NULL
;
241 static void qla2x00_free_req_que(struct qla_hw_data
*ha
, struct req_que
*req
)
243 if (req
&& req
->ring
)
244 dma_free_coherent(&ha
->pdev
->dev
,
245 (req
->length
+ 1) * sizeof(request_t
),
246 req
->ring
, req
->dma
);
252 static void qla2x00_free_rsp_que(struct qla_hw_data
*ha
, struct rsp_que
*rsp
)
254 if (rsp
&& rsp
->ring
)
255 dma_free_coherent(&ha
->pdev
->dev
,
256 (rsp
->length
+ 1) * sizeof(response_t
),
257 rsp
->ring
, rsp
->dma
);
263 static void qla2x00_free_queues(struct qla_hw_data
*ha
)
269 for (cnt
= 0; cnt
< ha
->max_req_queues
; cnt
++) {
270 req
= ha
->req_q_map
[cnt
];
271 qla2x00_free_req_que(ha
, req
);
273 kfree(ha
->req_q_map
);
274 ha
->req_q_map
= NULL
;
276 for (cnt
= 0; cnt
< ha
->max_rsp_queues
; cnt
++) {
277 rsp
= ha
->rsp_q_map
[cnt
];
278 qla2x00_free_rsp_que(ha
, rsp
);
280 kfree(ha
->rsp_q_map
);
281 ha
->rsp_q_map
= NULL
;
284 static int qla25xx_setup_mode(struct scsi_qla_host
*vha
)
286 uint16_t options
= 0;
288 struct qla_hw_data
*ha
= vha
->hw
;
290 if (!(ha
->fw_attributes
& BIT_6
)) {
291 qla_printk(KERN_INFO
, ha
,
292 "Firmware is not multi-queue capable\n");
295 if (ql2xmultique_tag
) {
296 /* create a request queue for IO */
298 req
= qla25xx_create_req_que(ha
, options
, 0, 0, -1,
299 QLA_DEFAULT_QUE_QOS
);
301 qla_printk(KERN_WARNING
, ha
,
302 "Can't create request queue\n");
305 ha
->wq
= create_workqueue("qla2xxx_wq");
306 vha
->req
= ha
->req_q_map
[req
];
308 for (ques
= 1; ques
< ha
->max_rsp_queues
; ques
++) {
309 ret
= qla25xx_create_rsp_que(ha
, options
, 0, 0, req
);
311 qla_printk(KERN_WARNING
, ha
,
312 "Response Queue create failed\n");
316 ha
->flags
.cpu_affinity_enabled
= 1;
318 DEBUG2(qla_printk(KERN_INFO
, ha
,
319 "CPU affinity mode enabled, no. of response"
320 " queues:%d, no. of request queues:%d\n",
321 ha
->max_rsp_queues
, ha
->max_req_queues
));
325 qla25xx_delete_queues(vha
);
326 destroy_workqueue(ha
->wq
);
330 kfree(ha
->req_q_map
);
331 kfree(ha
->rsp_q_map
);
332 ha
->max_req_queues
= ha
->max_rsp_queues
= 1;
337 qla2x00_pci_info_str(struct scsi_qla_host
*vha
, char *str
)
339 struct qla_hw_data
*ha
= vha
->hw
;
340 static char *pci_bus_modes
[] = {
341 "33", "66", "100", "133",
346 pci_bus
= (ha
->pci_attr
& (BIT_9
| BIT_10
)) >> 9;
349 strcat(str
, pci_bus_modes
[pci_bus
]);
351 pci_bus
= (ha
->pci_attr
& BIT_8
) >> 8;
353 strcat(str
, pci_bus_modes
[pci_bus
]);
355 strcat(str
, " MHz)");
361 qla24xx_pci_info_str(struct scsi_qla_host
*vha
, char *str
)
363 static char *pci_bus_modes
[] = { "33", "66", "100", "133", };
364 struct qla_hw_data
*ha
= vha
->hw
;
368 pcie_reg
= pci_find_capability(ha
->pdev
, PCI_CAP_ID_EXP
);
371 uint16_t pcie_lstat
, lspeed
, lwidth
;
374 pci_read_config_word(ha
->pdev
, pcie_reg
, &pcie_lstat
);
375 lspeed
= pcie_lstat
& (BIT_0
| BIT_1
| BIT_2
| BIT_3
);
376 lwidth
= (pcie_lstat
&
377 (BIT_4
| BIT_5
| BIT_6
| BIT_7
| BIT_8
| BIT_9
)) >> 4;
379 strcpy(str
, "PCIe (");
381 strcat(str
, "2.5GT/s ");
382 else if (lspeed
== 2)
383 strcat(str
, "5.0GT/s ");
385 strcat(str
, "<unknown> ");
386 snprintf(lwstr
, sizeof(lwstr
), "x%d)", lwidth
);
393 pci_bus
= (ha
->pci_attr
& CSRX_PCIX_BUS_MODE_MASK
) >> 8;
394 if (pci_bus
== 0 || pci_bus
== 8) {
396 strcat(str
, pci_bus_modes
[pci_bus
>> 3]);
400 strcat(str
, "Mode 2");
402 strcat(str
, "Mode 1");
404 strcat(str
, pci_bus_modes
[pci_bus
& ~BIT_2
]);
406 strcat(str
, " MHz)");
412 qla2x00_fw_version_str(struct scsi_qla_host
*vha
, char *str
)
415 struct qla_hw_data
*ha
= vha
->hw
;
417 sprintf(str
, "%d.%02d.%02d ", ha
->fw_major_version
,
418 ha
->fw_minor_version
,
419 ha
->fw_subminor_version
);
421 if (ha
->fw_attributes
& BIT_9
) {
426 switch (ha
->fw_attributes
& 0xFF) {
440 sprintf(un_str
, "(%x)", ha
->fw_attributes
);
444 if (ha
->fw_attributes
& 0x100)
451 qla24xx_fw_version_str(struct scsi_qla_host
*vha
, char *str
)
453 struct qla_hw_data
*ha
= vha
->hw
;
455 sprintf(str
, "%d.%02d.%02d (%x)", ha
->fw_major_version
,
456 ha
->fw_minor_version
, ha
->fw_subminor_version
, ha
->fw_attributes
);
460 static inline srb_t
*
461 qla2x00_get_new_sp(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
462 struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
465 struct qla_hw_data
*ha
= vha
->hw
;
467 sp
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
474 CMD_SP(cmd
) = (void *)sp
;
475 cmd
->scsi_done
= done
;
482 qla2xxx_queuecommand(struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
484 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
485 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
486 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmd
->device
));
487 struct qla_hw_data
*ha
= vha
->hw
;
488 struct scsi_qla_host
*base_vha
= pci_get_drvdata(ha
->pdev
);
492 if (unlikely(pci_channel_offline(ha
->pdev
))) {
493 if (ha
->pdev
->error_state
== pci_channel_io_frozen
)
494 cmd
->result
= DID_REQUEUE
<< 16;
496 cmd
->result
= DID_NO_CONNECT
<< 16;
497 goto qc24_fail_command
;
500 rval
= fc_remote_port_chkready(rport
);
503 goto qc24_fail_command
;
506 /* Close window on fcport/rport state-transitioning. */
508 goto qc24_target_busy
;
510 if (atomic_read(&fcport
->state
) != FCS_ONLINE
) {
511 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
||
512 atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
513 cmd
->result
= DID_NO_CONNECT
<< 16;
514 goto qc24_fail_command
;
516 goto qc24_target_busy
;
519 spin_unlock_irq(vha
->host
->host_lock
);
521 sp
= qla2x00_get_new_sp(base_vha
, fcport
, cmd
, done
);
523 goto qc24_host_busy_lock
;
525 rval
= ha
->isp_ops
->start_scsi(sp
);
526 if (rval
!= QLA_SUCCESS
)
527 goto qc24_host_busy_free_sp
;
529 spin_lock_irq(vha
->host
->host_lock
);
533 qc24_host_busy_free_sp
:
534 qla2x00_sp_free_dma(sp
);
535 mempool_free(sp
, ha
->srb_mempool
);
538 spin_lock_irq(vha
->host
->host_lock
);
539 return SCSI_MLQUEUE_HOST_BUSY
;
542 return SCSI_MLQUEUE_TARGET_BUSY
;
552 * qla2x00_eh_wait_on_command
553 * Waits for the command to be returned by the Firmware for some
557 * cmd = Scsi Command to wait on.
564 qla2x00_eh_wait_on_command(struct scsi_cmnd
*cmd
)
566 #define ABORT_POLLING_PERIOD 1000
567 #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
568 unsigned long wait_iter
= ABORT_WAIT_ITER
;
569 int ret
= QLA_SUCCESS
;
571 while (CMD_SP(cmd
) && wait_iter
--) {
572 msleep(ABORT_POLLING_PERIOD
);
575 ret
= QLA_FUNCTION_FAILED
;
581 * qla2x00_wait_for_hba_online
582 * Wait till the HBA is online after going through
583 * <= MAX_RETRIES_OF_ISP_ABORT or
584 * finally HBA is disabled ie marked offline
587 * ha - pointer to host adapter structure
590 * Does context switching-Release SPIN_LOCK
591 * (if any) before calling this routine.
594 * Success (Adapter is online) : 0
595 * Failed (Adapter is offline/disabled) : 1
598 qla2x00_wait_for_hba_online(scsi_qla_host_t
*vha
)
601 unsigned long wait_online
;
602 struct qla_hw_data
*ha
= vha
->hw
;
603 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
605 wait_online
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
606 while (((test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
)) ||
607 test_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
) ||
608 test_bit(ISP_ABORT_RETRY
, &base_vha
->dpc_flags
) ||
609 ha
->dpc_active
) && time_before(jiffies
, wait_online
)) {
613 if (base_vha
->flags
.online
)
614 return_status
= QLA_SUCCESS
;
616 return_status
= QLA_FUNCTION_FAILED
;
618 return (return_status
);
622 qla2x00_wait_for_chip_reset(scsi_qla_host_t
*vha
)
625 unsigned long wait_reset
;
626 struct qla_hw_data
*ha
= vha
->hw
;
627 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
629 wait_reset
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
630 while (((test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
)) ||
631 test_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
) ||
632 test_bit(ISP_ABORT_RETRY
, &base_vha
->dpc_flags
) ||
633 ha
->dpc_active
) && time_before(jiffies
, wait_reset
)) {
637 if (!test_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
) &&
638 ha
->flags
.chip_reset_done
)
641 if (ha
->flags
.chip_reset_done
)
642 return_status
= QLA_SUCCESS
;
644 return_status
= QLA_FUNCTION_FAILED
;
646 return return_status
;
650 * qla2x00_wait_for_loop_ready
651 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
652 * to be in LOOP_READY state.
654 * ha - pointer to host adapter structure
657 * Does context switching-Release SPIN_LOCK
658 * (if any) before calling this routine.
662 * Success (LOOP_READY) : 0
663 * Failed (LOOP_NOT_READY) : 1
666 qla2x00_wait_for_loop_ready(scsi_qla_host_t
*vha
)
668 int return_status
= QLA_SUCCESS
;
669 unsigned long loop_timeout
;
670 struct qla_hw_data
*ha
= vha
->hw
;
671 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
673 /* wait for 5 min at the max for loop to be ready */
674 loop_timeout
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
676 while ((!atomic_read(&base_vha
->loop_down_timer
) &&
677 atomic_read(&base_vha
->loop_state
) == LOOP_DOWN
) ||
678 atomic_read(&base_vha
->loop_state
) != LOOP_READY
) {
679 if (atomic_read(&base_vha
->loop_state
) == LOOP_DEAD
) {
680 return_status
= QLA_FUNCTION_FAILED
;
684 if (time_after_eq(jiffies
, loop_timeout
)) {
685 return_status
= QLA_FUNCTION_FAILED
;
689 return (return_status
);
693 qla2x00_abort_fcport_cmds(fc_port_t
*fcport
)
698 scsi_qla_host_t
*vha
= fcport
->vha
;
699 struct qla_hw_data
*ha
= vha
->hw
;
702 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
704 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
705 sp
= req
->outstanding_cmds
[cnt
];
708 if (sp
->fcport
!= fcport
)
713 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
714 if (ha
->isp_ops
->abort_command(sp
)) {
715 DEBUG2(qla_printk(KERN_WARNING
, ha
,
716 "Abort failed -- %lx\n",
717 sp
->cmd
->serial_number
));
719 if (qla2x00_eh_wait_on_command(sp
->cmd
) !=
721 DEBUG2(qla_printk(KERN_WARNING
, ha
,
722 "Abort failed while waiting -- %lx\n",
723 sp
->cmd
->serial_number
));
725 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
727 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
731 qla2x00_block_error_handler(struct scsi_cmnd
*cmnd
)
733 struct Scsi_Host
*shost
= cmnd
->device
->host
;
734 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
737 spin_lock_irqsave(shost
->host_lock
, flags
);
738 while (rport
->port_state
== FC_PORTSTATE_BLOCKED
) {
739 spin_unlock_irqrestore(shost
->host_lock
, flags
);
741 spin_lock_irqsave(shost
->host_lock
, flags
);
743 spin_unlock_irqrestore(shost
->host_lock
, flags
);
747 /**************************************************************************
751 * The abort function will abort the specified command.
754 * cmd = Linux SCSI command packet to be aborted.
757 * Either SUCCESS or FAILED.
760 * Only return FAILED if command not returned by firmware.
761 **************************************************************************/
763 qla2xxx_eh_abort(struct scsi_cmnd
*cmd
)
765 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
768 unsigned int id
, lun
;
769 unsigned long serial
;
772 struct qla_hw_data
*ha
= vha
->hw
;
773 struct req_que
*req
= vha
->req
;
776 qla2x00_block_error_handler(cmd
);
783 id
= cmd
->device
->id
;
784 lun
= cmd
->device
->lun
;
785 serial
= cmd
->serial_number
;
786 spt
= (srb_t
*) CMD_SP(cmd
);
790 /* Check active list for command command. */
791 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
792 for (i
= 1; i
< MAX_OUTSTANDING_COMMANDS
; i
++) {
793 sp
= req
->outstanding_cmds
[i
];
802 DEBUG2(printk("%s(%ld): aborting sp %p from RISC."
803 " pid=%ld.\n", __func__
, vha
->host_no
, sp
, serial
));
805 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
806 if (ha
->isp_ops
->abort_command(sp
)) {
807 DEBUG2(printk("%s(%ld): abort_command "
808 "mbx failed.\n", __func__
, vha
->host_no
));
811 DEBUG3(printk("%s(%ld): abort_command "
812 "mbx success.\n", __func__
, vha
->host_no
));
815 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
818 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
820 /* Wait for the command to be returned. */
822 if (qla2x00_eh_wait_on_command(cmd
) != QLA_SUCCESS
) {
823 qla_printk(KERN_ERR
, ha
,
824 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
825 "%x.\n", vha
->host_no
, id
, lun
, serial
, ret
);
830 qla_printk(KERN_INFO
, ha
,
831 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
832 vha
->host_no
, id
, lun
, wait
, serial
, ret
);
837 enum nexus_wait_type
{
844 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t
*vha
, unsigned int t
,
845 unsigned int l
, srb_t
*sp
, enum nexus_wait_type type
)
847 int cnt
, match
, status
;
849 struct qla_hw_data
*ha
= vha
->hw
;
852 status
= QLA_SUCCESS
;
856 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
858 for (cnt
= 1; status
== QLA_SUCCESS
&&
859 cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
860 sp
= req
->outstanding_cmds
[cnt
];
865 if (vha
->vp_idx
!= sp
->fcport
->vha
->vp_idx
)
873 match
= sp
->cmd
->device
->id
== t
;
876 match
= (sp
->cmd
->device
->id
== t
&&
877 sp
->cmd
->device
->lun
== l
);
883 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
884 status
= qla2x00_eh_wait_on_command(sp
->cmd
);
885 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
887 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
892 static char *reset_errors
[] = {
895 "Task management failed",
896 "Waiting for command completions",
900 __qla2xxx_eh_generic_reset(char *name
, enum nexus_wait_type type
,
901 struct scsi_cmnd
*cmd
, int (*do_reset
)(struct fc_port
*, unsigned int, int))
903 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
904 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
907 qla2x00_block_error_handler(cmd
);
912 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
913 vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
);
916 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
917 goto eh_reset_failed
;
919 if (qla2x00_wait_for_loop_ready(vha
) != QLA_SUCCESS
)
920 goto eh_reset_failed
;
922 if (do_reset(fcport
, cmd
->device
->lun
, cmd
->request
->cpu
+ 1)
924 goto eh_reset_failed
;
926 if (qla2x00_eh_wait_for_pending_commands(vha
, cmd
->device
->id
,
927 cmd
->device
->lun
, (srb_t
*) CMD_SP(cmd
), type
) != QLA_SUCCESS
)
928 goto eh_reset_failed
;
930 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
931 vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
);
936 qla_printk(KERN_INFO
, vha
->hw
, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n"
937 , vha
->host_no
, cmd
->device
->id
, cmd
->device
->lun
, name
,
943 qla2xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
945 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
946 struct qla_hw_data
*ha
= vha
->hw
;
948 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN
, cmd
,
949 ha
->isp_ops
->lun_reset
);
953 qla2xxx_eh_target_reset(struct scsi_cmnd
*cmd
)
955 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
956 struct qla_hw_data
*ha
= vha
->hw
;
958 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET
, cmd
,
959 ha
->isp_ops
->target_reset
);
962 /**************************************************************************
963 * qla2xxx_eh_bus_reset
966 * The bus reset function will reset the bus and abort any executing
970 * cmd = Linux SCSI command packet of the command that cause the
974 * SUCCESS/FAILURE (defined as macro in scsi.h).
976 **************************************************************************/
978 qla2xxx_eh_bus_reset(struct scsi_cmnd
*cmd
)
980 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
981 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
983 unsigned int id
, lun
;
984 unsigned long serial
;
985 srb_t
*sp
= (srb_t
*) CMD_SP(cmd
);
987 qla2x00_block_error_handler(cmd
);
989 id
= cmd
->device
->id
;
990 lun
= cmd
->device
->lun
;
991 serial
= cmd
->serial_number
;
996 qla_printk(KERN_INFO
, vha
->hw
,
997 "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha
->host_no
, id
, lun
);
999 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
) {
1000 DEBUG2(printk("%s failed:board disabled\n",__func__
));
1001 goto eh_bus_reset_done
;
1004 if (qla2x00_wait_for_loop_ready(vha
) == QLA_SUCCESS
) {
1005 if (qla2x00_loop_reset(vha
) == QLA_SUCCESS
)
1009 goto eh_bus_reset_done
;
1011 /* Flush outstanding commands. */
1012 if (qla2x00_eh_wait_for_pending_commands(vha
, 0, 0, sp
, WAIT_HOST
) !=
1017 qla_printk(KERN_INFO
, vha
->hw
, "%s: reset %s\n", __func__
,
1018 (ret
== FAILED
) ? "failed" : "succeded");
1023 /**************************************************************************
1024 * qla2xxx_eh_host_reset
1027 * The reset function will reset the Adapter.
1030 * cmd = Linux SCSI command packet of the command that cause the
1034 * Either SUCCESS or FAILED.
1037 **************************************************************************/
1039 qla2xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
1041 scsi_qla_host_t
*vha
= shost_priv(cmd
->device
->host
);
1042 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
1043 struct qla_hw_data
*ha
= vha
->hw
;
1045 unsigned int id
, lun
;
1046 unsigned long serial
;
1047 srb_t
*sp
= (srb_t
*) CMD_SP(cmd
);
1048 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
1050 qla2x00_block_error_handler(cmd
);
1052 id
= cmd
->device
->id
;
1053 lun
= cmd
->device
->lun
;
1054 serial
= cmd
->serial_number
;
1059 qla_printk(KERN_INFO
, ha
,
1060 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha
->host_no
, id
, lun
);
1062 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
1063 goto eh_host_reset_lock
;
1066 * Fixme-may be dpc thread is active and processing
1067 * loop_resync,so wait a while for it to
1068 * be completed and then issue big hammer.Otherwise
1069 * it may cause I/O failure as big hammer marks the
1070 * devices as lost kicking of the port_down_timer
1071 * while dpc is stuck for the mailbox to complete.
1073 qla2x00_wait_for_loop_ready(vha
);
1074 if (vha
!= base_vha
) {
1075 if (qla2x00_vp_abort_isp(vha
))
1076 goto eh_host_reset_lock
;
1079 flush_workqueue(ha
->wq
);
1081 set_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
1082 if (qla2x00_abort_isp(base_vha
)) {
1083 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
1084 /* failed. schedule dpc to try */
1085 set_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
);
1087 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
1088 goto eh_host_reset_lock
;
1090 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
1093 /* Waiting for command to be returned to OS.*/
1094 if (qla2x00_eh_wait_for_pending_commands(vha
, 0, 0, sp
, WAIT_HOST
) ==
1099 qla_printk(KERN_INFO
, ha
, "%s: reset %s\n", __func__
,
1100 (ret
== FAILED
) ? "failed" : "succeded");
1106 * qla2x00_loop_reset
1110 * ha = adapter block pointer.
1116 qla2x00_loop_reset(scsi_qla_host_t
*vha
)
1119 struct fc_port
*fcport
;
1120 struct qla_hw_data
*ha
= vha
->hw
;
1122 if (ha
->flags
.enable_lip_full_login
&& !IS_QLA81XX(ha
)) {
1123 ret
= qla2x00_full_login_lip(vha
);
1124 if (ret
!= QLA_SUCCESS
) {
1125 DEBUG2_3(printk("%s(%ld): failed: "
1126 "full_login_lip=%d.\n", __func__
, vha
->host_no
,
1129 atomic_set(&vha
->loop_state
, LOOP_DOWN
);
1130 atomic_set(&vha
->loop_down_timer
, LOOP_DOWN_TIME
);
1131 qla2x00_mark_all_devices_lost(vha
, 0);
1132 qla2x00_wait_for_loop_ready(vha
);
1135 if (ha
->flags
.enable_lip_reset
) {
1136 ret
= qla2x00_lip_reset(vha
);
1137 if (ret
!= QLA_SUCCESS
) {
1138 DEBUG2_3(printk("%s(%ld): failed: "
1139 "lip_reset=%d.\n", __func__
, vha
->host_no
, ret
));
1141 qla2x00_wait_for_loop_ready(vha
);
1144 if (ha
->flags
.enable_target_reset
) {
1145 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
1146 if (fcport
->port_type
!= FCT_TARGET
)
1149 ret
= ha
->isp_ops
->target_reset(fcport
, 0, 0);
1150 if (ret
!= QLA_SUCCESS
) {
1151 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1152 "target_reset=%d d_id=%x.\n", __func__
,
1153 vha
->host_no
, ret
, fcport
->d_id
.b24
));
1157 /* Issue marker command only when we are going to start the I/O */
1158 vha
->marker_needed
= 1;
1164 qla2x00_abort_all_cmds(scsi_qla_host_t
*vha
, int res
)
1167 unsigned long flags
;
1169 struct srb_ctx
*ctx
;
1170 struct qla_hw_data
*ha
= vha
->hw
;
1171 struct req_que
*req
;
1173 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1174 for (que
= 0; que
< ha
->max_req_queues
; que
++) {
1175 req
= ha
->req_q_map
[que
];
1178 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
1179 sp
= req
->outstanding_cmds
[cnt
];
1181 req
->outstanding_cmds
[cnt
] = NULL
;
1183 sp
->cmd
->result
= res
;
1184 qla2x00_sp_compl(ha
, sp
);
1187 del_timer_sync(&ctx
->timer
);
1193 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1197 qla2xxx_slave_alloc(struct scsi_device
*sdev
)
1199 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1201 if (!rport
|| fc_remote_port_chkready(rport
))
1204 sdev
->hostdata
= *(fc_port_t
**)rport
->dd_data
;
1210 qla2xxx_slave_configure(struct scsi_device
*sdev
)
1212 scsi_qla_host_t
*vha
= shost_priv(sdev
->host
);
1213 struct qla_hw_data
*ha
= vha
->hw
;
1214 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
1215 fc_port_t
*fcport
= *(fc_port_t
**)rport
->dd_data
;
1216 struct req_que
*req
= vha
->req
;
1218 if (sdev
->tagged_supported
)
1219 scsi_activate_tcq(sdev
, req
->max_q_depth
);
1221 scsi_deactivate_tcq(sdev
, req
->max_q_depth
);
1223 rport
->dev_loss_tmo
= ha
->port_down_retry_count
;
1224 if (sdev
->type
== TYPE_TAPE
)
1225 fcport
->flags
|= FCF_TAPE_PRESENT
;
1231 qla2xxx_slave_destroy(struct scsi_device
*sdev
)
1233 sdev
->hostdata
= NULL
;
1237 qla2x00_change_queue_depth(struct scsi_device
*sdev
, int qdepth
)
1239 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), qdepth
);
1240 return sdev
->queue_depth
;
1244 qla2x00_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
1246 if (sdev
->tagged_supported
) {
1247 scsi_set_tag_type(sdev
, tag_type
);
1249 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
1251 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
1259 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1262 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1263 * supported addressing method.
1266 qla2x00_config_dma_addressing(struct qla_hw_data
*ha
)
1268 /* Assume a 32bit DMA mask. */
1269 ha
->flags
.enable_64bit_addressing
= 0;
1271 if (!dma_set_mask(&ha
->pdev
->dev
, DMA_BIT_MASK(64))) {
1272 /* Any upper-dword bits set? */
1273 if (MSD(dma_get_required_mask(&ha
->pdev
->dev
)) &&
1274 !pci_set_consistent_dma_mask(ha
->pdev
, DMA_BIT_MASK(64))) {
1275 /* Ok, a 64bit DMA mask is applicable. */
1276 ha
->flags
.enable_64bit_addressing
= 1;
1277 ha
->isp_ops
->calc_req_entries
= qla2x00_calc_iocbs_64
;
1278 ha
->isp_ops
->build_iocbs
= qla2x00_build_scsi_iocbs_64
;
1283 dma_set_mask(&ha
->pdev
->dev
, DMA_BIT_MASK(32));
1284 pci_set_consistent_dma_mask(ha
->pdev
, DMA_BIT_MASK(32));
1288 qla2x00_enable_intrs(struct qla_hw_data
*ha
)
1290 unsigned long flags
= 0;
1291 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1293 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1294 ha
->interrupts_on
= 1;
1295 /* enable risc and host interrupts */
1296 WRT_REG_WORD(®
->ictrl
, ICR_EN_INT
| ICR_EN_RISC
);
1297 RD_REG_WORD(®
->ictrl
);
1298 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1303 qla2x00_disable_intrs(struct qla_hw_data
*ha
)
1305 unsigned long flags
= 0;
1306 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1308 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1309 ha
->interrupts_on
= 0;
1310 /* disable risc and host interrupts */
1311 WRT_REG_WORD(®
->ictrl
, 0);
1312 RD_REG_WORD(®
->ictrl
);
1313 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1317 qla24xx_enable_intrs(struct qla_hw_data
*ha
)
1319 unsigned long flags
= 0;
1320 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1322 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1323 ha
->interrupts_on
= 1;
1324 WRT_REG_DWORD(®
->ictrl
, ICRX_EN_RISC_INT
);
1325 RD_REG_DWORD(®
->ictrl
);
1326 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1330 qla24xx_disable_intrs(struct qla_hw_data
*ha
)
1332 unsigned long flags
= 0;
1333 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1335 if (IS_NOPOLLING_TYPE(ha
))
1337 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1338 ha
->interrupts_on
= 0;
1339 WRT_REG_DWORD(®
->ictrl
, 0);
1340 RD_REG_DWORD(®
->ictrl
);
1341 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1344 static struct isp_operations qla2100_isp_ops
= {
1345 .pci_config
= qla2100_pci_config
,
1346 .reset_chip
= qla2x00_reset_chip
,
1347 .chip_diag
= qla2x00_chip_diag
,
1348 .config_rings
= qla2x00_config_rings
,
1349 .reset_adapter
= qla2x00_reset_adapter
,
1350 .nvram_config
= qla2x00_nvram_config
,
1351 .update_fw_options
= qla2x00_update_fw_options
,
1352 .load_risc
= qla2x00_load_risc
,
1353 .pci_info_str
= qla2x00_pci_info_str
,
1354 .fw_version_str
= qla2x00_fw_version_str
,
1355 .intr_handler
= qla2100_intr_handler
,
1356 .enable_intrs
= qla2x00_enable_intrs
,
1357 .disable_intrs
= qla2x00_disable_intrs
,
1358 .abort_command
= qla2x00_abort_command
,
1359 .target_reset
= qla2x00_abort_target
,
1360 .lun_reset
= qla2x00_lun_reset
,
1361 .fabric_login
= qla2x00_login_fabric
,
1362 .fabric_logout
= qla2x00_fabric_logout
,
1363 .calc_req_entries
= qla2x00_calc_iocbs_32
,
1364 .build_iocbs
= qla2x00_build_scsi_iocbs_32
,
1365 .prep_ms_iocb
= qla2x00_prep_ms_iocb
,
1366 .prep_ms_fdmi_iocb
= qla2x00_prep_ms_fdmi_iocb
,
1367 .read_nvram
= qla2x00_read_nvram_data
,
1368 .write_nvram
= qla2x00_write_nvram_data
,
1369 .fw_dump
= qla2100_fw_dump
,
1372 .beacon_blink
= NULL
,
1373 .read_optrom
= qla2x00_read_optrom_data
,
1374 .write_optrom
= qla2x00_write_optrom_data
,
1375 .get_flash_version
= qla2x00_get_flash_version
,
1376 .start_scsi
= qla2x00_start_scsi
,
1379 static struct isp_operations qla2300_isp_ops
= {
1380 .pci_config
= qla2300_pci_config
,
1381 .reset_chip
= qla2x00_reset_chip
,
1382 .chip_diag
= qla2x00_chip_diag
,
1383 .config_rings
= qla2x00_config_rings
,
1384 .reset_adapter
= qla2x00_reset_adapter
,
1385 .nvram_config
= qla2x00_nvram_config
,
1386 .update_fw_options
= qla2x00_update_fw_options
,
1387 .load_risc
= qla2x00_load_risc
,
1388 .pci_info_str
= qla2x00_pci_info_str
,
1389 .fw_version_str
= qla2x00_fw_version_str
,
1390 .intr_handler
= qla2300_intr_handler
,
1391 .enable_intrs
= qla2x00_enable_intrs
,
1392 .disable_intrs
= qla2x00_disable_intrs
,
1393 .abort_command
= qla2x00_abort_command
,
1394 .target_reset
= qla2x00_abort_target
,
1395 .lun_reset
= qla2x00_lun_reset
,
1396 .fabric_login
= qla2x00_login_fabric
,
1397 .fabric_logout
= qla2x00_fabric_logout
,
1398 .calc_req_entries
= qla2x00_calc_iocbs_32
,
1399 .build_iocbs
= qla2x00_build_scsi_iocbs_32
,
1400 .prep_ms_iocb
= qla2x00_prep_ms_iocb
,
1401 .prep_ms_fdmi_iocb
= qla2x00_prep_ms_fdmi_iocb
,
1402 .read_nvram
= qla2x00_read_nvram_data
,
1403 .write_nvram
= qla2x00_write_nvram_data
,
1404 .fw_dump
= qla2300_fw_dump
,
1405 .beacon_on
= qla2x00_beacon_on
,
1406 .beacon_off
= qla2x00_beacon_off
,
1407 .beacon_blink
= qla2x00_beacon_blink
,
1408 .read_optrom
= qla2x00_read_optrom_data
,
1409 .write_optrom
= qla2x00_write_optrom_data
,
1410 .get_flash_version
= qla2x00_get_flash_version
,
1411 .start_scsi
= qla2x00_start_scsi
,
1414 static struct isp_operations qla24xx_isp_ops
= {
1415 .pci_config
= qla24xx_pci_config
,
1416 .reset_chip
= qla24xx_reset_chip
,
1417 .chip_diag
= qla24xx_chip_diag
,
1418 .config_rings
= qla24xx_config_rings
,
1419 .reset_adapter
= qla24xx_reset_adapter
,
1420 .nvram_config
= qla24xx_nvram_config
,
1421 .update_fw_options
= qla24xx_update_fw_options
,
1422 .load_risc
= qla24xx_load_risc
,
1423 .pci_info_str
= qla24xx_pci_info_str
,
1424 .fw_version_str
= qla24xx_fw_version_str
,
1425 .intr_handler
= qla24xx_intr_handler
,
1426 .enable_intrs
= qla24xx_enable_intrs
,
1427 .disable_intrs
= qla24xx_disable_intrs
,
1428 .abort_command
= qla24xx_abort_command
,
1429 .target_reset
= qla24xx_abort_target
,
1430 .lun_reset
= qla24xx_lun_reset
,
1431 .fabric_login
= qla24xx_login_fabric
,
1432 .fabric_logout
= qla24xx_fabric_logout
,
1433 .calc_req_entries
= NULL
,
1434 .build_iocbs
= NULL
,
1435 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1436 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1437 .read_nvram
= qla24xx_read_nvram_data
,
1438 .write_nvram
= qla24xx_write_nvram_data
,
1439 .fw_dump
= qla24xx_fw_dump
,
1440 .beacon_on
= qla24xx_beacon_on
,
1441 .beacon_off
= qla24xx_beacon_off
,
1442 .beacon_blink
= qla24xx_beacon_blink
,
1443 .read_optrom
= qla24xx_read_optrom_data
,
1444 .write_optrom
= qla24xx_write_optrom_data
,
1445 .get_flash_version
= qla24xx_get_flash_version
,
1446 .start_scsi
= qla24xx_start_scsi
,
1449 static struct isp_operations qla25xx_isp_ops
= {
1450 .pci_config
= qla25xx_pci_config
,
1451 .reset_chip
= qla24xx_reset_chip
,
1452 .chip_diag
= qla24xx_chip_diag
,
1453 .config_rings
= qla24xx_config_rings
,
1454 .reset_adapter
= qla24xx_reset_adapter
,
1455 .nvram_config
= qla24xx_nvram_config
,
1456 .update_fw_options
= qla24xx_update_fw_options
,
1457 .load_risc
= qla24xx_load_risc
,
1458 .pci_info_str
= qla24xx_pci_info_str
,
1459 .fw_version_str
= qla24xx_fw_version_str
,
1460 .intr_handler
= qla24xx_intr_handler
,
1461 .enable_intrs
= qla24xx_enable_intrs
,
1462 .disable_intrs
= qla24xx_disable_intrs
,
1463 .abort_command
= qla24xx_abort_command
,
1464 .target_reset
= qla24xx_abort_target
,
1465 .lun_reset
= qla24xx_lun_reset
,
1466 .fabric_login
= qla24xx_login_fabric
,
1467 .fabric_logout
= qla24xx_fabric_logout
,
1468 .calc_req_entries
= NULL
,
1469 .build_iocbs
= NULL
,
1470 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1471 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1472 .read_nvram
= qla25xx_read_nvram_data
,
1473 .write_nvram
= qla25xx_write_nvram_data
,
1474 .fw_dump
= qla25xx_fw_dump
,
1475 .beacon_on
= qla24xx_beacon_on
,
1476 .beacon_off
= qla24xx_beacon_off
,
1477 .beacon_blink
= qla24xx_beacon_blink
,
1478 .read_optrom
= qla25xx_read_optrom_data
,
1479 .write_optrom
= qla24xx_write_optrom_data
,
1480 .get_flash_version
= qla24xx_get_flash_version
,
1481 .start_scsi
= qla24xx_start_scsi
,
1484 static struct isp_operations qla81xx_isp_ops
= {
1485 .pci_config
= qla25xx_pci_config
,
1486 .reset_chip
= qla24xx_reset_chip
,
1487 .chip_diag
= qla24xx_chip_diag
,
1488 .config_rings
= qla24xx_config_rings
,
1489 .reset_adapter
= qla24xx_reset_adapter
,
1490 .nvram_config
= qla81xx_nvram_config
,
1491 .update_fw_options
= qla81xx_update_fw_options
,
1492 .load_risc
= qla81xx_load_risc
,
1493 .pci_info_str
= qla24xx_pci_info_str
,
1494 .fw_version_str
= qla24xx_fw_version_str
,
1495 .intr_handler
= qla24xx_intr_handler
,
1496 .enable_intrs
= qla24xx_enable_intrs
,
1497 .disable_intrs
= qla24xx_disable_intrs
,
1498 .abort_command
= qla24xx_abort_command
,
1499 .target_reset
= qla24xx_abort_target
,
1500 .lun_reset
= qla24xx_lun_reset
,
1501 .fabric_login
= qla24xx_login_fabric
,
1502 .fabric_logout
= qla24xx_fabric_logout
,
1503 .calc_req_entries
= NULL
,
1504 .build_iocbs
= NULL
,
1505 .prep_ms_iocb
= qla24xx_prep_ms_iocb
,
1506 .prep_ms_fdmi_iocb
= qla24xx_prep_ms_fdmi_iocb
,
1508 .write_nvram
= NULL
,
1509 .fw_dump
= qla81xx_fw_dump
,
1510 .beacon_on
= qla24xx_beacon_on
,
1511 .beacon_off
= qla24xx_beacon_off
,
1512 .beacon_blink
= qla24xx_beacon_blink
,
1513 .read_optrom
= qla25xx_read_optrom_data
,
1514 .write_optrom
= qla24xx_write_optrom_data
,
1515 .get_flash_version
= qla24xx_get_flash_version
,
1516 .start_scsi
= qla24xx_start_scsi
,
1520 qla2x00_set_isp_flags(struct qla_hw_data
*ha
)
1522 ha
->device_type
= DT_EXTENDED_IDS
;
1523 switch (ha
->pdev
->device
) {
1524 case PCI_DEVICE_ID_QLOGIC_ISP2100
:
1525 ha
->device_type
|= DT_ISP2100
;
1526 ha
->device_type
&= ~DT_EXTENDED_IDS
;
1527 ha
->fw_srisc_address
= RISC_START_ADDRESS_2100
;
1529 case PCI_DEVICE_ID_QLOGIC_ISP2200
:
1530 ha
->device_type
|= DT_ISP2200
;
1531 ha
->device_type
&= ~DT_EXTENDED_IDS
;
1532 ha
->fw_srisc_address
= RISC_START_ADDRESS_2100
;
1534 case PCI_DEVICE_ID_QLOGIC_ISP2300
:
1535 ha
->device_type
|= DT_ISP2300
;
1536 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1537 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1539 case PCI_DEVICE_ID_QLOGIC_ISP2312
:
1540 ha
->device_type
|= DT_ISP2312
;
1541 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1542 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1544 case PCI_DEVICE_ID_QLOGIC_ISP2322
:
1545 ha
->device_type
|= DT_ISP2322
;
1546 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1547 if (ha
->pdev
->subsystem_vendor
== 0x1028 &&
1548 ha
->pdev
->subsystem_device
== 0x0170)
1549 ha
->device_type
|= DT_OEM_001
;
1550 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1552 case PCI_DEVICE_ID_QLOGIC_ISP6312
:
1553 ha
->device_type
|= DT_ISP6312
;
1554 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1556 case PCI_DEVICE_ID_QLOGIC_ISP6322
:
1557 ha
->device_type
|= DT_ISP6322
;
1558 ha
->fw_srisc_address
= RISC_START_ADDRESS_2300
;
1560 case PCI_DEVICE_ID_QLOGIC_ISP2422
:
1561 ha
->device_type
|= DT_ISP2422
;
1562 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1563 ha
->device_type
|= DT_FWI2
;
1564 ha
->device_type
|= DT_IIDMA
;
1565 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1567 case PCI_DEVICE_ID_QLOGIC_ISP2432
:
1568 ha
->device_type
|= DT_ISP2432
;
1569 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1570 ha
->device_type
|= DT_FWI2
;
1571 ha
->device_type
|= DT_IIDMA
;
1572 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1574 case PCI_DEVICE_ID_QLOGIC_ISP8432
:
1575 ha
->device_type
|= DT_ISP8432
;
1576 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1577 ha
->device_type
|= DT_FWI2
;
1578 ha
->device_type
|= DT_IIDMA
;
1579 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1581 case PCI_DEVICE_ID_QLOGIC_ISP5422
:
1582 ha
->device_type
|= DT_ISP5422
;
1583 ha
->device_type
|= DT_FWI2
;
1584 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1586 case PCI_DEVICE_ID_QLOGIC_ISP5432
:
1587 ha
->device_type
|= DT_ISP5432
;
1588 ha
->device_type
|= DT_FWI2
;
1589 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1591 case PCI_DEVICE_ID_QLOGIC_ISP2532
:
1592 ha
->device_type
|= DT_ISP2532
;
1593 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1594 ha
->device_type
|= DT_FWI2
;
1595 ha
->device_type
|= DT_IIDMA
;
1596 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1598 case PCI_DEVICE_ID_QLOGIC_ISP8001
:
1599 ha
->device_type
|= DT_ISP8001
;
1600 ha
->device_type
|= DT_ZIO_SUPPORTED
;
1601 ha
->device_type
|= DT_FWI2
;
1602 ha
->device_type
|= DT_IIDMA
;
1603 ha
->fw_srisc_address
= RISC_START_ADDRESS_2400
;
1607 /* Get adapter physical port no from interrupt pin register. */
1608 pci_read_config_byte(ha
->pdev
, PCI_INTERRUPT_PIN
, &ha
->port_no
);
1609 if (ha
->port_no
& 1)
1610 ha
->flags
.port0
= 1;
1612 ha
->flags
.port0
= 0;
1616 qla2x00_iospace_config(struct qla_hw_data
*ha
)
1618 resource_size_t pio
;
1622 if (pci_request_selected_regions(ha
->pdev
, ha
->bars
,
1623 QLA2XXX_DRIVER_NAME
)) {
1624 qla_printk(KERN_WARNING
, ha
,
1625 "Failed to reserve PIO/MMIO regions (%s)\n",
1626 pci_name(ha
->pdev
));
1628 goto iospace_error_exit
;
1630 if (!(ha
->bars
& 1))
1633 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1634 pio
= pci_resource_start(ha
->pdev
, 0);
1635 if (pci_resource_flags(ha
->pdev
, 0) & IORESOURCE_IO
) {
1636 if (pci_resource_len(ha
->pdev
, 0) < MIN_IOBASE_LEN
) {
1637 qla_printk(KERN_WARNING
, ha
,
1638 "Invalid PCI I/O region size (%s)...\n",
1639 pci_name(ha
->pdev
));
1643 qla_printk(KERN_WARNING
, ha
,
1644 "region #0 not a PIO resource (%s)...\n",
1645 pci_name(ha
->pdev
));
1648 ha
->pio_address
= pio
;
1651 /* Use MMIO operations for all accesses. */
1652 if (!(pci_resource_flags(ha
->pdev
, 1) & IORESOURCE_MEM
)) {
1653 qla_printk(KERN_ERR
, ha
,
1654 "region #1 not an MMIO resource (%s), aborting\n",
1655 pci_name(ha
->pdev
));
1656 goto iospace_error_exit
;
1658 if (pci_resource_len(ha
->pdev
, 1) < MIN_IOBASE_LEN
) {
1659 qla_printk(KERN_ERR
, ha
,
1660 "Invalid PCI mem region size (%s), aborting\n",
1661 pci_name(ha
->pdev
));
1662 goto iospace_error_exit
;
1665 ha
->iobase
= ioremap(pci_resource_start(ha
->pdev
, 1), MIN_IOBASE_LEN
);
1667 qla_printk(KERN_ERR
, ha
,
1668 "cannot remap MMIO (%s), aborting\n", pci_name(ha
->pdev
));
1670 goto iospace_error_exit
;
1673 /* Determine queue resources */
1674 ha
->max_req_queues
= ha
->max_rsp_queues
= 1;
1675 if ((ql2xmaxqueues
<= 1 || ql2xmultique_tag
< 1) &&
1676 (!IS_QLA25XX(ha
) && !IS_QLA81XX(ha
)))
1678 ha
->mqiobase
= ioremap(pci_resource_start(ha
->pdev
, 3),
1679 pci_resource_len(ha
->pdev
, 3));
1681 /* Read MSIX vector size of the board */
1682 pci_read_config_word(ha
->pdev
, QLA_PCI_MSIX_CONTROL
, &msix
);
1683 ha
->msix_count
= msix
;
1684 /* Max queues are bounded by available msix vectors */
1685 /* queue 0 uses two msix vectors */
1686 if (ql2xmultique_tag
) {
1687 cpus
= num_online_cpus();
1688 ha
->max_rsp_queues
= (ha
->msix_count
- 1 > cpus
) ?
1689 (cpus
+ 1) : (ha
->msix_count
- 1);
1690 ha
->max_req_queues
= 2;
1691 } else if (ql2xmaxqueues
> 1) {
1692 ha
->max_req_queues
= ql2xmaxqueues
> QLA_MQ_SIZE
?
1693 QLA_MQ_SIZE
: ql2xmaxqueues
;
1694 DEBUG2(qla_printk(KERN_INFO
, ha
, "QoS mode set, max no"
1695 " of request queues:%d\n", ha
->max_req_queues
));
1697 qla_printk(KERN_INFO
, ha
,
1698 "MSI-X vector count: %d\n", msix
);
1700 qla_printk(KERN_INFO
, ha
, "BAR 3 not enabled\n");
1703 ha
->msix_count
= ha
->max_rsp_queues
+ 1;
1711 qla2xxx_scan_start(struct Scsi_Host
*shost
)
1713 scsi_qla_host_t
*vha
= shost_priv(shost
);
1715 if (vha
->hw
->flags
.running_gold_fw
)
1718 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
1719 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
1720 set_bit(RSCN_UPDATE
, &vha
->dpc_flags
);
1721 set_bit(NPIV_CONFIG_NEEDED
, &vha
->dpc_flags
);
1725 qla2xxx_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
1727 scsi_qla_host_t
*vha
= shost_priv(shost
);
1731 if (time
> vha
->hw
->loop_reset_delay
* HZ
)
1734 return atomic_read(&vha
->loop_state
) == LOOP_READY
;
1738 * PCI driver interface
1740 static int __devinit
1741 qla2x00_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
1744 struct Scsi_Host
*host
;
1745 scsi_qla_host_t
*base_vha
= NULL
;
1746 struct qla_hw_data
*ha
;
1749 struct scsi_host_template
*sht
;
1750 int bars
, max_id
, mem_only
= 0;
1751 uint16_t req_length
= 0, rsp_length
= 0;
1752 struct req_que
*req
= NULL
;
1753 struct rsp_que
*rsp
= NULL
;
1755 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
| IORESOURCE_IO
);
1756 sht
= &qla2xxx_driver_template
;
1757 if (pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2422
||
1758 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2432
||
1759 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP8432
||
1760 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP5422
||
1761 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP5432
||
1762 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP2532
||
1763 pdev
->device
== PCI_DEVICE_ID_QLOGIC_ISP8001
) {
1764 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
1769 if (pci_enable_device_mem(pdev
))
1772 if (pci_enable_device(pdev
))
1776 /* This may fail but that's ok */
1777 pci_enable_pcie_error_reporting(pdev
);
1779 ha
= kzalloc(sizeof(struct qla_hw_data
), GFP_KERNEL
);
1781 DEBUG(printk("Unable to allocate memory for ha\n"));
1786 /* Clear our data area */
1788 ha
->mem_only
= mem_only
;
1789 spin_lock_init(&ha
->hardware_lock
);
1791 /* Set ISP-type information. */
1792 qla2x00_set_isp_flags(ha
);
1793 /* Configure PCI I/O space */
1794 ret
= qla2x00_iospace_config(ha
);
1796 goto probe_hw_failed
;
1798 qla_printk(KERN_INFO
, ha
,
1799 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev
->device
, pdev
->irq
,
1802 ha
->prev_topology
= 0;
1803 ha
->init_cb_size
= sizeof(init_cb_t
);
1804 ha
->link_data_rate
= PORT_SPEED_UNKNOWN
;
1805 ha
->optrom_size
= OPTROM_SIZE_2300
;
1807 /* Assign ISP specific operations. */
1808 max_id
= MAX_TARGETS_2200
;
1809 if (IS_QLA2100(ha
)) {
1810 max_id
= MAX_TARGETS_2100
;
1811 ha
->mbx_count
= MAILBOX_REGISTER_COUNT_2100
;
1812 req_length
= REQUEST_ENTRY_CNT_2100
;
1813 rsp_length
= RESPONSE_ENTRY_CNT_2100
;
1814 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2100
;
1815 ha
->gid_list_info_size
= 4;
1816 ha
->flash_conf_off
= ~0;
1817 ha
->flash_data_off
= ~0;
1818 ha
->nvram_conf_off
= ~0;
1819 ha
->nvram_data_off
= ~0;
1820 ha
->isp_ops
= &qla2100_isp_ops
;
1821 } else if (IS_QLA2200(ha
)) {
1822 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1823 req_length
= REQUEST_ENTRY_CNT_2200
;
1824 rsp_length
= RESPONSE_ENTRY_CNT_2100
;
1825 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2100
;
1826 ha
->gid_list_info_size
= 4;
1827 ha
->flash_conf_off
= ~0;
1828 ha
->flash_data_off
= ~0;
1829 ha
->nvram_conf_off
= ~0;
1830 ha
->nvram_data_off
= ~0;
1831 ha
->isp_ops
= &qla2100_isp_ops
;
1832 } else if (IS_QLA23XX(ha
)) {
1833 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1834 req_length
= REQUEST_ENTRY_CNT_2200
;
1835 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1836 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1837 ha
->gid_list_info_size
= 6;
1838 if (IS_QLA2322(ha
) || IS_QLA6322(ha
))
1839 ha
->optrom_size
= OPTROM_SIZE_2322
;
1840 ha
->flash_conf_off
= ~0;
1841 ha
->flash_data_off
= ~0;
1842 ha
->nvram_conf_off
= ~0;
1843 ha
->nvram_data_off
= ~0;
1844 ha
->isp_ops
= &qla2300_isp_ops
;
1845 } else if (IS_QLA24XX_TYPE(ha
)) {
1846 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1847 req_length
= REQUEST_ENTRY_CNT_24XX
;
1848 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1849 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1850 ha
->init_cb_size
= sizeof(struct mid_init_cb_24xx
);
1851 ha
->gid_list_info_size
= 8;
1852 ha
->optrom_size
= OPTROM_SIZE_24XX
;
1853 ha
->nvram_npiv_size
= QLA_MAX_VPORTS_QLA24XX
;
1854 ha
->isp_ops
= &qla24xx_isp_ops
;
1855 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF
;
1856 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA
;
1857 ha
->nvram_conf_off
= FARX_ACCESS_NVRAM_CONF
;
1858 ha
->nvram_data_off
= FARX_ACCESS_NVRAM_DATA
;
1859 } else if (IS_QLA25XX(ha
)) {
1860 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1861 req_length
= REQUEST_ENTRY_CNT_24XX
;
1862 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1863 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1864 ha
->init_cb_size
= sizeof(struct mid_init_cb_24xx
);
1865 ha
->gid_list_info_size
= 8;
1866 ha
->optrom_size
= OPTROM_SIZE_25XX
;
1867 ha
->nvram_npiv_size
= QLA_MAX_VPORTS_QLA25XX
;
1868 ha
->isp_ops
= &qla25xx_isp_ops
;
1869 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF
;
1870 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA
;
1871 ha
->nvram_conf_off
= FARX_ACCESS_NVRAM_CONF
;
1872 ha
->nvram_data_off
= FARX_ACCESS_NVRAM_DATA
;
1873 } else if (IS_QLA81XX(ha
)) {
1874 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1875 req_length
= REQUEST_ENTRY_CNT_24XX
;
1876 rsp_length
= RESPONSE_ENTRY_CNT_2300
;
1877 ha
->max_loop_id
= SNS_LAST_LOOP_ID_2300
;
1878 ha
->init_cb_size
= sizeof(struct mid_init_cb_81xx
);
1879 ha
->gid_list_info_size
= 8;
1880 ha
->optrom_size
= OPTROM_SIZE_81XX
;
1881 ha
->nvram_npiv_size
= QLA_MAX_VPORTS_QLA25XX
;
1882 ha
->isp_ops
= &qla81xx_isp_ops
;
1883 ha
->flash_conf_off
= FARX_ACCESS_FLASH_CONF_81XX
;
1884 ha
->flash_data_off
= FARX_ACCESS_FLASH_DATA_81XX
;
1885 ha
->nvram_conf_off
= ~0;
1886 ha
->nvram_data_off
= ~0;
1889 mutex_init(&ha
->vport_lock
);
1890 init_completion(&ha
->mbx_cmd_comp
);
1891 complete(&ha
->mbx_cmd_comp
);
1892 init_completion(&ha
->mbx_intr_comp
);
1894 set_bit(0, (unsigned long *) ha
->vp_idx_map
);
1896 qla2x00_config_dma_addressing(ha
);
1897 ret
= qla2x00_mem_alloc(ha
, req_length
, rsp_length
, &req
, &rsp
);
1899 qla_printk(KERN_WARNING
, ha
,
1900 "[ERROR] Failed to allocate memory for adapter\n");
1902 goto probe_hw_failed
;
1905 req
->max_q_depth
= MAX_Q_DEPTH
;
1906 if (ql2xmaxqdepth
!= 0 && ql2xmaxqdepth
<= 0xffffU
)
1907 req
->max_q_depth
= ql2xmaxqdepth
;
1910 base_vha
= qla2x00_create_host(sht
, ha
);
1912 qla_printk(KERN_WARNING
, ha
,
1913 "[ERROR] Failed to allocate memory for scsi_host\n");
1916 qla2x00_mem_free(ha
);
1917 qla2x00_free_req_que(ha
, req
);
1918 qla2x00_free_rsp_que(ha
, rsp
);
1919 goto probe_hw_failed
;
1922 pci_set_drvdata(pdev
, base_vha
);
1924 host
= base_vha
->host
;
1925 base_vha
->req
= req
;
1926 host
->can_queue
= req
->length
+ 128;
1927 if (IS_QLA2XXX_MIDTYPE(ha
))
1928 base_vha
->mgmt_svr_loop_id
= 10 + base_vha
->vp_idx
;
1930 base_vha
->mgmt_svr_loop_id
= MANAGEMENT_SERVER
+
1933 host
->sg_tablesize
= 32;
1934 host
->max_id
= max_id
;
1935 host
->this_id
= 255;
1936 host
->cmd_per_lun
= 3;
1937 host
->unique_id
= host
->host_no
;
1938 host
->max_cmd_len
= MAX_CMDSZ
;
1939 host
->max_channel
= MAX_BUSES
- 1;
1940 host
->max_lun
= MAX_LUNS
;
1941 host
->transportt
= qla2xxx_transport_template
;
1943 /* Set up the irqs */
1944 ret
= qla2x00_request_irqs(ha
, rsp
);
1946 goto probe_init_failed
;
1947 /* Alloc arrays of request and response ring ptrs */
1949 if (!qla2x00_alloc_queues(ha
)) {
1950 qla_printk(KERN_WARNING
, ha
,
1951 "[ERROR] Failed to allocate memory for queue"
1953 goto probe_init_failed
;
1955 ha
->rsp_q_map
[0] = rsp
;
1956 ha
->req_q_map
[0] = req
;
1959 set_bit(0, ha
->req_qid_map
);
1960 set_bit(0, ha
->rsp_qid_map
);
1961 /* FWI2-capable only. */
1962 req
->req_q_in
= &ha
->iobase
->isp24
.req_q_in
;
1963 req
->req_q_out
= &ha
->iobase
->isp24
.req_q_out
;
1964 rsp
->rsp_q_in
= &ha
->iobase
->isp24
.rsp_q_in
;
1965 rsp
->rsp_q_out
= &ha
->iobase
->isp24
.rsp_q_out
;
1967 req
->req_q_in
= &ha
->mqiobase
->isp25mq
.req_q_in
;
1968 req
->req_q_out
= &ha
->mqiobase
->isp25mq
.req_q_out
;
1969 rsp
->rsp_q_in
= &ha
->mqiobase
->isp25mq
.rsp_q_in
;
1970 rsp
->rsp_q_out
= &ha
->mqiobase
->isp25mq
.rsp_q_out
;
1973 if (qla2x00_initialize_adapter(base_vha
)) {
1974 qla_printk(KERN_WARNING
, ha
,
1975 "Failed to initialize adapter\n");
1977 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1978 "Adapter flags %x.\n",
1979 base_vha
->host_no
, base_vha
->device_flags
));
1986 if (qla25xx_setup_mode(base_vha
)) {
1987 qla_printk(KERN_WARNING
, ha
,
1988 "Can't create queues, falling back to single"
1994 if (ha
->flags
.running_gold_fw
)
1998 * Startup the kernel thread for this host adapter
2000 ha
->dpc_thread
= kthread_create(qla2x00_do_dpc
, ha
,
2001 "%s_dpc", base_vha
->host_str
);
2002 if (IS_ERR(ha
->dpc_thread
)) {
2003 qla_printk(KERN_WARNING
, ha
,
2004 "Unable to start DPC thread!\n");
2005 ret
= PTR_ERR(ha
->dpc_thread
);
2010 list_add_tail(&base_vha
->list
, &ha
->vp_list
);
2011 base_vha
->host
->irq
= ha
->pdev
->irq
;
2013 /* Initialized the timer */
2014 qla2x00_start_timer(base_vha
, qla2x00_timer
, WATCH_INTERVAL
);
2016 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
2017 base_vha
->host_no
, ha
));
2019 base_vha
->flags
.init_done
= 1;
2020 base_vha
->flags
.online
= 1;
2022 ret
= scsi_add_host(host
, &pdev
->dev
);
2026 ha
->isp_ops
->enable_intrs(ha
);
2028 scsi_scan_host(host
);
2030 qla2x00_alloc_sysfs_attr(base_vha
);
2032 qla2x00_init_host_attr(base_vha
);
2034 qla2x00_dfs_setup(base_vha
);
2036 qla_printk(KERN_INFO
, ha
, "\n"
2037 " QLogic Fibre Channel HBA Driver: %s\n"
2039 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
2040 qla2x00_version_str
, ha
->model_number
,
2041 ha
->model_desc
? ha
->model_desc
: "", pdev
->device
,
2042 ha
->isp_ops
->pci_info_str(base_vha
, pci_info
), pci_name(pdev
),
2043 ha
->flags
.enable_64bit_addressing
? '+' : '-', base_vha
->host_no
,
2044 ha
->isp_ops
->fw_version_str(base_vha
, fw_str
));
2049 qla2x00_free_req_que(ha
, req
);
2050 qla2x00_free_rsp_que(ha
, rsp
);
2051 ha
->max_req_queues
= ha
->max_rsp_queues
= 0;
2054 if (base_vha
->timer_active
)
2055 qla2x00_stop_timer(base_vha
);
2056 base_vha
->flags
.online
= 0;
2057 if (ha
->dpc_thread
) {
2058 struct task_struct
*t
= ha
->dpc_thread
;
2060 ha
->dpc_thread
= NULL
;
2064 qla2x00_free_device(base_vha
);
2066 scsi_host_put(base_vha
->host
);
2070 iounmap(ha
->iobase
);
2072 pci_release_selected_regions(ha
->pdev
, ha
->bars
);
2077 pci_disable_device(pdev
);
2082 qla2x00_remove_one(struct pci_dev
*pdev
)
2084 scsi_qla_host_t
*base_vha
, *vha
, *temp
;
2085 struct qla_hw_data
*ha
;
2087 base_vha
= pci_get_drvdata(pdev
);
2090 list_for_each_entry_safe(vha
, temp
, &ha
->vp_list
, list
) {
2091 if (vha
&& vha
->fc_vport
)
2092 fc_vport_terminate(vha
->fc_vport
);
2095 set_bit(UNLOADING
, &base_vha
->dpc_flags
);
2097 qla2x00_abort_all_cmds(base_vha
, DID_NO_CONNECT
<< 16);
2099 qla2x00_dfs_remove(base_vha
);
2101 qla84xx_put_chip(base_vha
);
2104 if (base_vha
->timer_active
)
2105 qla2x00_stop_timer(base_vha
);
2107 base_vha
->flags
.online
= 0;
2109 /* Flush the work queue and remove it */
2111 flush_workqueue(ha
->wq
);
2112 destroy_workqueue(ha
->wq
);
2116 /* Kill the kernel thread for this host */
2117 if (ha
->dpc_thread
) {
2118 struct task_struct
*t
= ha
->dpc_thread
;
2121 * qla2xxx_wake_dpc checks for ->dpc_thread
2122 * so we need to zero it out.
2124 ha
->dpc_thread
= NULL
;
2128 qla2x00_free_sysfs_attr(base_vha
);
2130 fc_remove_host(base_vha
->host
);
2132 scsi_remove_host(base_vha
->host
);
2134 qla2x00_free_device(base_vha
);
2136 scsi_host_put(base_vha
->host
);
2139 iounmap(ha
->iobase
);
2142 iounmap(ha
->mqiobase
);
2144 pci_release_selected_regions(ha
->pdev
, ha
->bars
);
2148 pci_disable_device(pdev
);
2149 pci_set_drvdata(pdev
, NULL
);
2153 qla2x00_free_device(scsi_qla_host_t
*vha
)
2155 struct qla_hw_data
*ha
= vha
->hw
;
2157 qla25xx_delete_queues(vha
);
2159 if (ha
->flags
.fce_enabled
)
2160 qla2x00_disable_fce_trace(vha
, NULL
, NULL
);
2163 qla2x00_disable_eft_trace(vha
);
2165 /* Stop currently executing firmware. */
2166 qla2x00_try_to_stop_firmware(vha
);
2168 /* turn-off interrupts on the card */
2169 if (ha
->interrupts_on
)
2170 ha
->isp_ops
->disable_intrs(ha
);
2172 qla2x00_free_irqs(vha
);
2174 qla2x00_mem_free(ha
);
2176 qla2x00_free_queues(ha
);
2180 qla2x00_schedule_rport_del(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
2183 struct fc_rport
*rport
;
2184 scsi_qla_host_t
*base_vha
;
2189 rport
= fcport
->rport
;
2191 base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
2192 spin_lock_irq(vha
->host
->host_lock
);
2193 fcport
->drport
= rport
;
2194 spin_unlock_irq(vha
->host
->host_lock
);
2195 set_bit(FCPORT_UPDATE_NEEDED
, &base_vha
->dpc_flags
);
2196 qla2xxx_wake_dpc(base_vha
);
2198 fc_remote_port_delete(rport
);
2202 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
2204 * Input: ha = adapter block pointer. fcport = port structure pointer.
2210 void qla2x00_mark_device_lost(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
2211 int do_login
, int defer
)
2213 if (atomic_read(&fcport
->state
) == FCS_ONLINE
&&
2214 vha
->vp_idx
== fcport
->vp_idx
) {
2215 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2216 qla2x00_schedule_rport_del(vha
, fcport
, defer
);
2219 * We may need to retry the login, so don't change the state of the
2220 * port but do the retries.
2222 if (atomic_read(&fcport
->state
) != FCS_DEVICE_DEAD
)
2223 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2228 if (fcport
->login_retry
== 0) {
2229 fcport
->login_retry
= vha
->hw
->login_retry_count
;
2230 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
2232 DEBUG(printk("scsi(%ld): Port login retry: "
2233 "%02x%02x%02x%02x%02x%02x%02x%02x, "
2234 "id = 0x%04x retry cnt=%d\n",
2236 fcport
->port_name
[0],
2237 fcport
->port_name
[1],
2238 fcport
->port_name
[2],
2239 fcport
->port_name
[3],
2240 fcport
->port_name
[4],
2241 fcport
->port_name
[5],
2242 fcport
->port_name
[6],
2243 fcport
->port_name
[7],
2245 fcport
->login_retry
));
2250 * qla2x00_mark_all_devices_lost
2251 * Updates fcport state when device goes offline.
2254 * ha = adapter block pointer.
2255 * fcport = port structure pointer.
2263 qla2x00_mark_all_devices_lost(scsi_qla_host_t
*vha
, int defer
)
2267 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2268 if (vha
->vp_idx
!= 0 && vha
->vp_idx
!= fcport
->vp_idx
)
2272 * No point in marking the device as lost, if the device is
2275 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
)
2277 if (atomic_read(&fcport
->state
) == FCS_ONLINE
) {
2279 qla2x00_schedule_rport_del(vha
, fcport
, defer
);
2280 else if (vha
->vp_idx
== fcport
->vp_idx
)
2281 qla2x00_schedule_rport_del(vha
, fcport
, defer
);
2283 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
2289 * Allocates adapter memory.
2296 qla2x00_mem_alloc(struct qla_hw_data
*ha
, uint16_t req_len
, uint16_t rsp_len
,
2297 struct req_que
**req
, struct rsp_que
**rsp
)
2301 ha
->init_cb
= dma_alloc_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
,
2302 &ha
->init_cb_dma
, GFP_KERNEL
);
2306 ha
->gid_list
= dma_alloc_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
,
2307 &ha
->gid_list_dma
, GFP_KERNEL
);
2309 goto fail_free_init_cb
;
2311 ha
->srb_mempool
= mempool_create_slab_pool(SRB_MIN_REQ
, srb_cachep
);
2312 if (!ha
->srb_mempool
)
2313 goto fail_free_gid_list
;
2315 /* Get memory for cached NVRAM */
2316 ha
->nvram
= kzalloc(MAX_NVRAM_SIZE
, GFP_KERNEL
);
2318 goto fail_free_srb_mempool
;
2320 snprintf(name
, sizeof(name
), "%s_%d", QLA2XXX_DRIVER_NAME
,
2322 ha
->s_dma_pool
= dma_pool_create(name
, &ha
->pdev
->dev
,
2323 DMA_POOL_SIZE
, 8, 0);
2324 if (!ha
->s_dma_pool
)
2325 goto fail_free_nvram
;
2327 /* Allocate memory for SNS commands */
2328 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
2329 /* Get consistent memory allocated for SNS commands */
2330 ha
->sns_cmd
= dma_alloc_coherent(&ha
->pdev
->dev
,
2331 sizeof(struct sns_cmd_pkt
), &ha
->sns_cmd_dma
, GFP_KERNEL
);
2335 /* Get consistent memory allocated for MS IOCB */
2336 ha
->ms_iocb
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
2340 /* Get consistent memory allocated for CT SNS commands */
2341 ha
->ct_sns
= dma_alloc_coherent(&ha
->pdev
->dev
,
2342 sizeof(struct ct_sns_pkt
), &ha
->ct_sns_dma
, GFP_KERNEL
);
2344 goto fail_free_ms_iocb
;
2347 /* Allocate memory for request ring */
2348 *req
= kzalloc(sizeof(struct req_que
), GFP_KERNEL
);
2350 DEBUG(printk("Unable to allocate memory for req\n"));
2353 (*req
)->length
= req_len
;
2354 (*req
)->ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
2355 ((*req
)->length
+ 1) * sizeof(request_t
),
2356 &(*req
)->dma
, GFP_KERNEL
);
2357 if (!(*req
)->ring
) {
2358 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2361 /* Allocate memory for response ring */
2362 *rsp
= kzalloc(sizeof(struct rsp_que
), GFP_KERNEL
);
2364 qla_printk(KERN_WARNING
, ha
,
2365 "Unable to allocate memory for rsp\n");
2369 (*rsp
)->length
= rsp_len
;
2370 (*rsp
)->ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
2371 ((*rsp
)->length
+ 1) * sizeof(response_t
),
2372 &(*rsp
)->dma
, GFP_KERNEL
);
2373 if (!(*rsp
)->ring
) {
2374 qla_printk(KERN_WARNING
, ha
,
2375 "Unable to allocate memory for rsp_ring\n");
2380 /* Allocate memory for NVRAM data for vports */
2381 if (ha
->nvram_npiv_size
) {
2382 ha
->npiv_info
= kzalloc(sizeof(struct qla_npiv_entry
) *
2383 ha
->nvram_npiv_size
, GFP_KERNEL
);
2384 if (!ha
->npiv_info
) {
2385 qla_printk(KERN_WARNING
, ha
,
2386 "Unable to allocate memory for npiv info\n");
2387 goto fail_npiv_info
;
2390 ha
->npiv_info
= NULL
;
2392 /* Get consistent memory allocated for EX-INIT-CB. */
2393 if (IS_QLA81XX(ha
)) {
2394 ha
->ex_init_cb
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
2395 &ha
->ex_init_cb_dma
);
2396 if (!ha
->ex_init_cb
)
2397 goto fail_ex_init_cb
;
2400 INIT_LIST_HEAD(&ha
->vp_list
);
2404 kfree(ha
->npiv_info
);
2406 dma_free_coherent(&ha
->pdev
->dev
, ((*rsp
)->length
+ 1) *
2407 sizeof(response_t
), (*rsp
)->ring
, (*rsp
)->dma
);
2408 (*rsp
)->ring
= NULL
;
2413 dma_free_coherent(&ha
->pdev
->dev
, ((*req
)->length
+ 1) *
2414 sizeof(request_t
), (*req
)->ring
, (*req
)->dma
);
2415 (*req
)->ring
= NULL
;
2420 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct ct_sns_pkt
),
2421 ha
->ct_sns
, ha
->ct_sns_dma
);
2425 dma_pool_free(ha
->s_dma_pool
, ha
->ms_iocb
, ha
->ms_iocb_dma
);
2427 ha
->ms_iocb_dma
= 0;
2429 dma_pool_destroy(ha
->s_dma_pool
);
2430 ha
->s_dma_pool
= NULL
;
2434 fail_free_srb_mempool
:
2435 mempool_destroy(ha
->srb_mempool
);
2436 ha
->srb_mempool
= NULL
;
2438 dma_free_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
, ha
->gid_list
,
2440 ha
->gid_list
= NULL
;
2441 ha
->gid_list_dma
= 0;
2443 dma_free_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
, ha
->init_cb
,
2446 ha
->init_cb_dma
= 0;
2448 DEBUG(printk("%s: Memory allocation failure\n", __func__
));
2454 * Frees all adapter allocated memory.
2457 * ha = adapter block pointer.
2460 qla2x00_mem_free(struct qla_hw_data
*ha
)
2462 if (ha
->srb_mempool
)
2463 mempool_destroy(ha
->srb_mempool
);
2466 dma_free_coherent(&ha
->pdev
->dev
, FCE_SIZE
, ha
->fce
,
2471 dma_free_coherent(&ha
->pdev
->dev
,
2472 ntohl(ha
->fw_dump
->eft_size
), ha
->eft
, ha
->eft_dma
);
2477 dma_free_coherent(&ha
->pdev
->dev
, DCBX_TLV_DATA_SIZE
,
2478 ha
->dcbx_tlv
, ha
->dcbx_tlv_dma
);
2481 dma_free_coherent(&ha
->pdev
->dev
, XGMAC_DATA_SIZE
,
2482 ha
->xgmac_data
, ha
->xgmac_data_dma
);
2485 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct sns_cmd_pkt
),
2486 ha
->sns_cmd
, ha
->sns_cmd_dma
);
2489 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct ct_sns_pkt
),
2490 ha
->ct_sns
, ha
->ct_sns_dma
);
2493 dma_pool_free(ha
->s_dma_pool
, ha
->sfp_data
, ha
->sfp_data_dma
);
2496 dma_pool_free(ha
->s_dma_pool
, ha
->edc_data
, ha
->edc_data_dma
);
2499 dma_pool_free(ha
->s_dma_pool
, ha
->ms_iocb
, ha
->ms_iocb_dma
);
2502 dma_pool_free(ha
->s_dma_pool
, ha
->ex_init_cb
, ha
->ex_init_cb_dma
);
2505 dma_pool_destroy(ha
->s_dma_pool
);
2508 dma_free_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
, ha
->gid_list
,
2512 dma_free_coherent(&ha
->pdev
->dev
, ha
->init_cb_size
,
2513 ha
->init_cb
, ha
->init_cb_dma
);
2514 vfree(ha
->optrom_buffer
);
2516 kfree(ha
->npiv_info
);
2518 ha
->srb_mempool
= NULL
;
2522 ha
->sns_cmd_dma
= 0;
2526 ha
->ms_iocb_dma
= 0;
2528 ha
->init_cb_dma
= 0;
2529 ha
->ex_init_cb
= NULL
;
2530 ha
->ex_init_cb_dma
= 0;
2532 ha
->s_dma_pool
= NULL
;
2534 ha
->gid_list
= NULL
;
2535 ha
->gid_list_dma
= 0;
2539 ha
->fw_dump_reading
= 0;
2542 struct scsi_qla_host
*qla2x00_create_host(struct scsi_host_template
*sht
,
2543 struct qla_hw_data
*ha
)
2545 struct Scsi_Host
*host
;
2546 struct scsi_qla_host
*vha
= NULL
;
2548 host
= scsi_host_alloc(sht
, sizeof(scsi_qla_host_t
));
2551 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2555 /* Clear our data area */
2556 vha
= shost_priv(host
);
2557 memset(vha
, 0, sizeof(scsi_qla_host_t
));
2560 vha
->host_no
= host
->host_no
;
2563 INIT_LIST_HEAD(&vha
->vp_fcports
);
2564 INIT_LIST_HEAD(&vha
->work_list
);
2565 INIT_LIST_HEAD(&vha
->list
);
2567 spin_lock_init(&vha
->work_lock
);
2569 sprintf(vha
->host_str
, "%s_%ld", QLA2XXX_DRIVER_NAME
, vha
->host_no
);
2576 static struct qla_work_evt
*
2577 qla2x00_alloc_work(struct scsi_qla_host
*vha
, enum qla_work_type type
)
2579 struct qla_work_evt
*e
;
2581 e
= kzalloc(sizeof(struct qla_work_evt
), GFP_ATOMIC
);
2585 INIT_LIST_HEAD(&e
->list
);
2587 e
->flags
= QLA_EVT_FLAG_FREE
;
2592 qla2x00_post_work(struct scsi_qla_host
*vha
, struct qla_work_evt
*e
)
2594 unsigned long flags
;
2596 spin_lock_irqsave(&vha
->work_lock
, flags
);
2597 list_add_tail(&e
->list
, &vha
->work_list
);
2598 spin_unlock_irqrestore(&vha
->work_lock
, flags
);
2599 qla2xxx_wake_dpc(vha
);
2605 qla2x00_post_aen_work(struct scsi_qla_host
*vha
, enum fc_host_event_code code
,
2608 struct qla_work_evt
*e
;
2610 e
= qla2x00_alloc_work(vha
, QLA_EVT_AEN
);
2612 return QLA_FUNCTION_FAILED
;
2614 e
->u
.aen
.code
= code
;
2615 e
->u
.aen
.data
= data
;
2616 return qla2x00_post_work(vha
, e
);
2620 qla2x00_post_idc_ack_work(struct scsi_qla_host
*vha
, uint16_t *mb
)
2622 struct qla_work_evt
*e
;
2624 e
= qla2x00_alloc_work(vha
, QLA_EVT_IDC_ACK
);
2626 return QLA_FUNCTION_FAILED
;
2628 memcpy(e
->u
.idc_ack
.mb
, mb
, QLA_IDC_ACK_REGS
* sizeof(uint16_t));
2629 return qla2x00_post_work(vha
, e
);
2632 #define qla2x00_post_async_work(name, type) \
2633 int qla2x00_post_async_##name##_work( \
2634 struct scsi_qla_host *vha, \
2635 fc_port_t *fcport, uint16_t *data) \
2637 struct qla_work_evt *e; \
2639 e = qla2x00_alloc_work(vha, type); \
2641 return QLA_FUNCTION_FAILED; \
2643 e->u.logio.fcport = fcport; \
2645 e->u.logio.data[0] = data[0]; \
2646 e->u.logio.data[1] = data[1]; \
2648 return qla2x00_post_work(vha, e); \
2651 qla2x00_post_async_work(login
, QLA_EVT_ASYNC_LOGIN
);
2652 qla2x00_post_async_work(login_done
, QLA_EVT_ASYNC_LOGIN_DONE
);
2653 qla2x00_post_async_work(logout
, QLA_EVT_ASYNC_LOGOUT
);
2654 qla2x00_post_async_work(logout_done
, QLA_EVT_ASYNC_LOGOUT_DONE
);
2657 qla2x00_do_work(struct scsi_qla_host
*vha
)
2659 struct qla_work_evt
*e
, *tmp
;
2660 unsigned long flags
;
2663 spin_lock_irqsave(&vha
->work_lock
, flags
);
2664 list_splice_init(&vha
->work_list
, &work
);
2665 spin_unlock_irqrestore(&vha
->work_lock
, flags
);
2667 list_for_each_entry_safe(e
, tmp
, &work
, list
) {
2668 list_del_init(&e
->list
);
2672 fc_host_post_event(vha
->host
, fc_get_event_number(),
2673 e
->u
.aen
.code
, e
->u
.aen
.data
);
2675 case QLA_EVT_IDC_ACK
:
2676 qla81xx_idc_ack(vha
, e
->u
.idc_ack
.mb
);
2678 case QLA_EVT_ASYNC_LOGIN
:
2679 qla2x00_async_login(vha
, e
->u
.logio
.fcport
,
2682 case QLA_EVT_ASYNC_LOGIN_DONE
:
2683 qla2x00_async_login_done(vha
, e
->u
.logio
.fcport
,
2686 case QLA_EVT_ASYNC_LOGOUT
:
2687 qla2x00_async_logout(vha
, e
->u
.logio
.fcport
);
2689 case QLA_EVT_ASYNC_LOGOUT_DONE
:
2690 qla2x00_async_logout_done(vha
, e
->u
.logio
.fcport
,
2694 if (e
->flags
& QLA_EVT_FLAG_FREE
)
2699 /* Relogins all the fcports of a vport
2700 * Context: dpc thread
2702 void qla2x00_relogin(struct scsi_qla_host
*vha
)
2706 uint16_t next_loopid
= 0;
2707 struct qla_hw_data
*ha
= vha
->hw
;
2710 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
2712 * If the port is not ONLINE then try to login
2713 * to it if we haven't run out of retries.
2715 if (atomic_read(&fcport
->state
) !=
2716 FCS_ONLINE
&& fcport
->login_retry
) {
2718 fcport
->login_retry
--;
2719 if (fcport
->flags
& FCF_FABRIC_DEVICE
) {
2720 if (fcport
->flags
& FCF_TAPE_PRESENT
)
2721 ha
->isp_ops
->fabric_logout(vha
,
2723 fcport
->d_id
.b
.domain
,
2724 fcport
->d_id
.b
.area
,
2725 fcport
->d_id
.b
.al_pa
);
2727 if (IS_ALOGIO_CAPABLE(ha
)) {
2729 data
[1] = QLA_LOGIO_LOGIN_RETRIED
;
2730 status
= qla2x00_post_async_login_work(
2732 if (status
== QLA_SUCCESS
)
2734 /* Attempt a retry. */
2737 status
= qla2x00_fabric_login(vha
,
2738 fcport
, &next_loopid
);
2740 status
= qla2x00_local_device_login(vha
,
2743 if (status
== QLA_SUCCESS
) {
2744 fcport
->old_loop_id
= fcport
->loop_id
;
2746 DEBUG(printk("scsi(%ld): port login OK: logged "
2747 "in ID 0x%x\n", vha
->host_no
, fcport
->loop_id
));
2749 qla2x00_update_fcport(vha
, fcport
);
2751 } else if (status
== 1) {
2752 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
2753 /* retry the login again */
2754 DEBUG(printk("scsi(%ld): Retrying"
2755 " %d login again loop_id 0x%x\n",
2756 vha
->host_no
, fcport
->login_retry
,
2759 fcport
->login_retry
= 0;
2762 if (fcport
->login_retry
== 0 && status
!= QLA_SUCCESS
)
2763 fcport
->loop_id
= FC_NO_LOOP_ID
;
2765 if (test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
))
2770 /**************************************************************************
2772 * This kernel thread is a task that is schedule by the interrupt handler
2773 * to perform the background processing for interrupts.
2776 * This task always run in the context of a kernel thread. It
2777 * is kick-off by the driver's detect code and starts up
2778 * up one per adapter. It immediately goes to sleep and waits for
2779 * some fibre event. When either the interrupt handler or
2780 * the timer routine detects a event it will one of the task
2781 * bits then wake us up.
2782 **************************************************************************/
2784 qla2x00_do_dpc(void *data
)
2787 scsi_qla_host_t
*base_vha
;
2788 struct qla_hw_data
*ha
;
2790 ha
= (struct qla_hw_data
*)data
;
2791 base_vha
= pci_get_drvdata(ha
->pdev
);
2793 set_user_nice(current
, -20);
2795 while (!kthread_should_stop()) {
2796 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2798 set_current_state(TASK_INTERRUPTIBLE
);
2800 __set_current_state(TASK_RUNNING
);
2802 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2804 /* Initialization not yet finished. Don't do anything yet. */
2805 if (!base_vha
->flags
.init_done
)
2808 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha
->host_no
));
2812 if (ha
->flags
.mbox_busy
) {
2817 qla2x00_do_work(base_vha
);
2819 if (test_and_clear_bit(ISP_ABORT_NEEDED
,
2820 &base_vha
->dpc_flags
)) {
2822 DEBUG(printk("scsi(%ld): dpc: sched "
2823 "qla2x00_abort_isp ha = %p\n",
2824 base_vha
->host_no
, ha
));
2825 if (!(test_and_set_bit(ABORT_ISP_ACTIVE
,
2826 &base_vha
->dpc_flags
))) {
2828 if (qla2x00_abort_isp(base_vha
)) {
2829 /* failed. retry later */
2830 set_bit(ISP_ABORT_NEEDED
,
2831 &base_vha
->dpc_flags
);
2833 clear_bit(ABORT_ISP_ACTIVE
,
2834 &base_vha
->dpc_flags
);
2837 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2838 base_vha
->host_no
));
2841 if (test_bit(FCPORT_UPDATE_NEEDED
, &base_vha
->dpc_flags
)) {
2842 qla2x00_update_fcports(base_vha
);
2843 clear_bit(FCPORT_UPDATE_NEEDED
, &base_vha
->dpc_flags
);
2846 if (test_and_clear_bit(RESET_MARKER_NEEDED
,
2847 &base_vha
->dpc_flags
) &&
2848 (!(test_and_set_bit(RESET_ACTIVE
, &base_vha
->dpc_flags
)))) {
2850 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2851 base_vha
->host_no
));
2853 qla2x00_rst_aen(base_vha
);
2854 clear_bit(RESET_ACTIVE
, &base_vha
->dpc_flags
);
2857 /* Retry each device up to login retry count */
2858 if ((test_and_clear_bit(RELOGIN_NEEDED
,
2859 &base_vha
->dpc_flags
)) &&
2860 !test_bit(LOOP_RESYNC_NEEDED
, &base_vha
->dpc_flags
) &&
2861 atomic_read(&base_vha
->loop_state
) != LOOP_DOWN
) {
2863 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2864 base_vha
->host_no
));
2865 qla2x00_relogin(base_vha
);
2867 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2868 base_vha
->host_no
));
2871 if (test_and_clear_bit(LOOP_RESYNC_NEEDED
,
2872 &base_vha
->dpc_flags
)) {
2874 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2875 base_vha
->host_no
));
2877 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE
,
2878 &base_vha
->dpc_flags
))) {
2880 rval
= qla2x00_loop_resync(base_vha
);
2882 clear_bit(LOOP_RESYNC_ACTIVE
,
2883 &base_vha
->dpc_flags
);
2886 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2887 base_vha
->host_no
));
2890 if (test_bit(NPIV_CONFIG_NEEDED
, &base_vha
->dpc_flags
) &&
2891 atomic_read(&base_vha
->loop_state
) == LOOP_READY
) {
2892 clear_bit(NPIV_CONFIG_NEEDED
, &base_vha
->dpc_flags
);
2893 qla2xxx_flash_npiv_conf(base_vha
);
2896 if (!ha
->interrupts_on
)
2897 ha
->isp_ops
->enable_intrs(ha
);
2899 if (test_and_clear_bit(BEACON_BLINK_NEEDED
,
2900 &base_vha
->dpc_flags
))
2901 ha
->isp_ops
->beacon_blink(base_vha
);
2903 qla2x00_do_dpc_all_vps(base_vha
);
2906 } /* End of while(1) */
2908 DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha
->host_no
));
2911 * Make sure that nobody tries to wake us up again.
2915 /* Cleanup any residual CTX SRBs. */
2916 qla2x00_abort_all_cmds(base_vha
, DID_NO_CONNECT
<< 16);
2922 qla2xxx_wake_dpc(struct scsi_qla_host
*vha
)
2924 struct qla_hw_data
*ha
= vha
->hw
;
2925 struct task_struct
*t
= ha
->dpc_thread
;
2927 if (!test_bit(UNLOADING
, &vha
->dpc_flags
) && t
)
2933 * Processes asynchronous reset.
2936 * ha = adapter block pointer.
2939 qla2x00_rst_aen(scsi_qla_host_t
*vha
)
2941 if (vha
->flags
.online
&& !vha
->flags
.reset_active
&&
2942 !atomic_read(&vha
->loop_down_timer
) &&
2943 !(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
))) {
2945 clear_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
);
2948 * Issue marker command only when we are going to start
2951 vha
->marker_needed
= 1;
2952 } while (!atomic_read(&vha
->loop_down_timer
) &&
2953 (test_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
)));
2958 qla2x00_sp_free_dma(srb_t
*sp
)
2960 struct scsi_cmnd
*cmd
= sp
->cmd
;
2962 if (sp
->flags
& SRB_DMA_VALID
) {
2963 scsi_dma_unmap(cmd
);
2964 sp
->flags
&= ~SRB_DMA_VALID
;
2970 qla2x00_sp_compl(struct qla_hw_data
*ha
, srb_t
*sp
)
2972 struct scsi_cmnd
*cmd
= sp
->cmd
;
2974 qla2x00_sp_free_dma(sp
);
2976 mempool_free(sp
, ha
->srb_mempool
);
2978 cmd
->scsi_done(cmd
);
2981 /**************************************************************************
2987 * Context: Interrupt
2988 ***************************************************************************/
2990 qla2x00_timer(scsi_qla_host_t
*vha
)
2992 unsigned long cpu_flags
= 0;
2998 struct qla_hw_data
*ha
= vha
->hw
;
2999 struct req_que
*req
;
3001 * Ports - Port down timer.
3003 * Whenever, a port is in the LOST state we start decrementing its port
3004 * down timer every second until it reaches zero. Once it reaches zero
3005 * the port it marked DEAD.
3008 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
3009 if (fcport
->port_type
!= FCT_TARGET
)
3012 if (atomic_read(&fcport
->state
) == FCS_DEVICE_LOST
) {
3014 if (atomic_read(&fcport
->port_down_timer
) == 0)
3017 if (atomic_dec_and_test(&fcport
->port_down_timer
) != 0)
3018 atomic_set(&fcport
->state
, FCS_DEVICE_DEAD
);
3020 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
3023 t
, atomic_read(&fcport
->port_down_timer
)));
3026 } /* End of for fcport */
3029 /* Loop down handler. */
3030 if (atomic_read(&vha
->loop_down_timer
) > 0 &&
3031 !(test_bit(ABORT_ISP_ACTIVE
, &vha
->dpc_flags
))
3032 && vha
->flags
.online
) {
3034 if (atomic_read(&vha
->loop_down_timer
) ==
3035 vha
->loop_down_abort_time
) {
3037 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
3038 "queues before time expire\n",
3041 if (!IS_QLA2100(ha
) && vha
->link_down_timeout
)
3042 atomic_set(&vha
->loop_state
, LOOP_DEAD
);
3044 /* Schedule an ISP abort to return any tape commands. */
3045 /* NPIV - scan physical port only */
3047 spin_lock_irqsave(&ha
->hardware_lock
,
3049 req
= ha
->req_q_map
[0];
3051 index
< MAX_OUTSTANDING_COMMANDS
;
3055 sp
= req
->outstanding_cmds
[index
];
3061 if (!(sfcp
->flags
& FCF_TAPE_PRESENT
))
3064 set_bit(ISP_ABORT_NEEDED
,
3068 spin_unlock_irqrestore(&ha
->hardware_lock
,
3074 /* if the loop has been down for 4 minutes, reinit adapter */
3075 if (atomic_dec_and_test(&vha
->loop_down_timer
) != 0) {
3076 if (!(vha
->device_flags
& DFLG_NO_CABLE
)) {
3077 DEBUG(printk("scsi(%ld): Loop down - "
3080 qla_printk(KERN_WARNING
, ha
,
3081 "Loop down - aborting ISP.\n");
3083 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
3086 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
3088 atomic_read(&vha
->loop_down_timer
)));
3091 /* Check if beacon LED needs to be blinked */
3092 if (ha
->beacon_blink_led
== 1) {
3093 set_bit(BEACON_BLINK_NEEDED
, &vha
->dpc_flags
);
3097 /* Process any deferred work. */
3098 if (!list_empty(&vha
->work_list
))
3101 /* Schedule the DPC routine if needed */
3102 if ((test_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
) ||
3103 test_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
) ||
3104 test_bit(FCPORT_UPDATE_NEEDED
, &vha
->dpc_flags
) ||
3106 test_bit(RESET_MARKER_NEEDED
, &vha
->dpc_flags
) ||
3107 test_bit(BEACON_BLINK_NEEDED
, &vha
->dpc_flags
) ||
3108 test_bit(VP_DPC_NEEDED
, &vha
->dpc_flags
) ||
3109 test_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
)))
3110 qla2xxx_wake_dpc(vha
);
3112 qla2x00_restart_timer(vha
, WATCH_INTERVAL
);
3115 /* Firmware interface routines. */
3118 #define FW_ISP21XX 0
3119 #define FW_ISP22XX 1
3120 #define FW_ISP2300 2
3121 #define FW_ISP2322 3
3122 #define FW_ISP24XX 4
3123 #define FW_ISP25XX 5
3124 #define FW_ISP81XX 6
3126 #define FW_FILE_ISP21XX "ql2100_fw.bin"
3127 #define FW_FILE_ISP22XX "ql2200_fw.bin"
3128 #define FW_FILE_ISP2300 "ql2300_fw.bin"
3129 #define FW_FILE_ISP2322 "ql2322_fw.bin"
3130 #define FW_FILE_ISP24XX "ql2400_fw.bin"
3131 #define FW_FILE_ISP25XX "ql2500_fw.bin"
3132 #define FW_FILE_ISP81XX "ql8100_fw.bin"
3134 static DEFINE_MUTEX(qla_fw_lock
);
3136 static struct fw_blob qla_fw_blobs
[FW_BLOBS
] = {
3137 { .name
= FW_FILE_ISP21XX
, .segs
= { 0x1000, 0 }, },
3138 { .name
= FW_FILE_ISP22XX
, .segs
= { 0x1000, 0 }, },
3139 { .name
= FW_FILE_ISP2300
, .segs
= { 0x800, 0 }, },
3140 { .name
= FW_FILE_ISP2322
, .segs
= { 0x800, 0x1c000, 0x1e000, 0 }, },
3141 { .name
= FW_FILE_ISP24XX
, },
3142 { .name
= FW_FILE_ISP25XX
, },
3143 { .name
= FW_FILE_ISP81XX
, },
3147 qla2x00_request_firmware(scsi_qla_host_t
*vha
)
3149 struct qla_hw_data
*ha
= vha
->hw
;
3150 struct fw_blob
*blob
;
3153 if (IS_QLA2100(ha
)) {
3154 blob
= &qla_fw_blobs
[FW_ISP21XX
];
3155 } else if (IS_QLA2200(ha
)) {
3156 blob
= &qla_fw_blobs
[FW_ISP22XX
];
3157 } else if (IS_QLA2300(ha
) || IS_QLA2312(ha
) || IS_QLA6312(ha
)) {
3158 blob
= &qla_fw_blobs
[FW_ISP2300
];
3159 } else if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
3160 blob
= &qla_fw_blobs
[FW_ISP2322
];
3161 } else if (IS_QLA24XX_TYPE(ha
)) {
3162 blob
= &qla_fw_blobs
[FW_ISP24XX
];
3163 } else if (IS_QLA25XX(ha
)) {
3164 blob
= &qla_fw_blobs
[FW_ISP25XX
];
3165 } else if (IS_QLA81XX(ha
)) {
3166 blob
= &qla_fw_blobs
[FW_ISP81XX
];
3169 mutex_lock(&qla_fw_lock
);
3173 if (request_firmware(&blob
->fw
, blob
->name
, &ha
->pdev
->dev
)) {
3174 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
3175 "(%s).\n", vha
->host_no
, blob
->name
));
3182 mutex_unlock(&qla_fw_lock
);
3187 qla2x00_release_firmware(void)
3191 mutex_lock(&qla_fw_lock
);
3192 for (idx
= 0; idx
< FW_BLOBS
; idx
++)
3193 if (qla_fw_blobs
[idx
].fw
)
3194 release_firmware(qla_fw_blobs
[idx
].fw
);
3195 mutex_unlock(&qla_fw_lock
);
3198 static pci_ers_result_t
3199 qla2xxx_pci_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
3201 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3204 case pci_channel_io_normal
:
3205 return PCI_ERS_RESULT_CAN_RECOVER
;
3206 case pci_channel_io_frozen
:
3207 pci_disable_device(pdev
);
3208 return PCI_ERS_RESULT_NEED_RESET
;
3209 case pci_channel_io_perm_failure
:
3210 qla2x00_abort_all_cmds(base_vha
, DID_NO_CONNECT
<< 16);
3211 return PCI_ERS_RESULT_DISCONNECT
;
3213 return PCI_ERS_RESULT_NEED_RESET
;
3216 static pci_ers_result_t
3217 qla2xxx_pci_mmio_enabled(struct pci_dev
*pdev
)
3219 int risc_paused
= 0;
3221 unsigned long flags
;
3222 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3223 struct qla_hw_data
*ha
= base_vha
->hw
;
3224 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
3225 struct device_reg_24xx __iomem
*reg24
= &ha
->iobase
->isp24
;
3227 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
3228 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)){
3229 stat
= RD_REG_DWORD(®
->hccr
);
3230 if (stat
& HCCR_RISC_PAUSE
)
3232 } else if (IS_QLA23XX(ha
)) {
3233 stat
= RD_REG_DWORD(®
->u
.isp2300
.host_status
);
3234 if (stat
& HSR_RISC_PAUSED
)
3236 } else if (IS_FWI2_CAPABLE(ha
)) {
3237 stat
= RD_REG_DWORD(®24
->host_status
);
3238 if (stat
& HSRX_RISC_PAUSED
)
3241 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
3244 qla_printk(KERN_INFO
, ha
, "RISC paused -- mmio_enabled, "
3245 "Dumping firmware!\n");
3246 ha
->isp_ops
->fw_dump(base_vha
, 0);
3248 return PCI_ERS_RESULT_NEED_RESET
;
3250 return PCI_ERS_RESULT_RECOVERED
;
3253 static pci_ers_result_t
3254 qla2xxx_pci_slot_reset(struct pci_dev
*pdev
)
3256 pci_ers_result_t ret
= PCI_ERS_RESULT_DISCONNECT
;
3257 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3258 struct qla_hw_data
*ha
= base_vha
->hw
;
3262 rc
= pci_enable_device_mem(pdev
);
3264 rc
= pci_enable_device(pdev
);
3267 qla_printk(KERN_WARNING
, ha
,
3268 "Can't re-enable PCI device after reset.\n");
3272 pci_set_master(pdev
);
3274 if (ha
->isp_ops
->pci_config(base_vha
))
3277 set_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
3278 if (qla2x00_abort_isp(base_vha
) == QLA_SUCCESS
)
3279 ret
= PCI_ERS_RESULT_RECOVERED
;
3280 clear_bit(ABORT_ISP_ACTIVE
, &base_vha
->dpc_flags
);
3286 qla2xxx_pci_resume(struct pci_dev
*pdev
)
3288 scsi_qla_host_t
*base_vha
= pci_get_drvdata(pdev
);
3289 struct qla_hw_data
*ha
= base_vha
->hw
;
3292 ret
= qla2x00_wait_for_hba_online(base_vha
);
3293 if (ret
!= QLA_SUCCESS
) {
3294 qla_printk(KERN_ERR
, ha
,
3295 "the device failed to resume I/O "
3296 "from slot/link_reset");
3298 pci_cleanup_aer_uncorrect_error_status(pdev
);
3301 static struct pci_error_handlers qla2xxx_err_handler
= {
3302 .error_detected
= qla2xxx_pci_error_detected
,
3303 .mmio_enabled
= qla2xxx_pci_mmio_enabled
,
3304 .slot_reset
= qla2xxx_pci_slot_reset
,
3305 .resume
= qla2xxx_pci_resume
,
3308 static struct pci_device_id qla2xxx_pci_tbl
[] = {
3309 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2100
) },
3310 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2200
) },
3311 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2300
) },
3312 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2312
) },
3313 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2322
) },
3314 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP6312
) },
3315 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP6322
) },
3316 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2422
) },
3317 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2432
) },
3318 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP8432
) },
3319 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP5422
) },
3320 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP5432
) },
3321 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP2532
) },
3322 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP8001
) },
3325 MODULE_DEVICE_TABLE(pci
, qla2xxx_pci_tbl
);
3327 static struct pci_driver qla2xxx_pci_driver
= {
3328 .name
= QLA2XXX_DRIVER_NAME
,
3330 .owner
= THIS_MODULE
,
3332 .id_table
= qla2xxx_pci_tbl
,
3333 .probe
= qla2x00_probe_one
,
3334 .remove
= qla2x00_remove_one
,
3335 .err_handler
= &qla2xxx_err_handler
,
3339 * qla2x00_module_init - Module initialization.
3342 qla2x00_module_init(void)
3346 /* Allocate cache for SRBs. */
3347 srb_cachep
= kmem_cache_create("qla2xxx_srbs", sizeof(srb_t
), 0,
3348 SLAB_HWCACHE_ALIGN
, NULL
);
3349 if (srb_cachep
== NULL
) {
3351 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
3355 /* Derive version string. */
3356 strcpy(qla2x00_version_str
, QLA2XXX_VERSION
);
3357 if (ql2xextended_error_logging
)
3358 strcat(qla2x00_version_str
, "-debug");
3360 qla2xxx_transport_template
=
3361 fc_attach_transport(&qla2xxx_transport_functions
);
3362 if (!qla2xxx_transport_template
) {
3363 kmem_cache_destroy(srb_cachep
);
3366 qla2xxx_transport_vport_template
=
3367 fc_attach_transport(&qla2xxx_transport_vport_functions
);
3368 if (!qla2xxx_transport_vport_template
) {
3369 kmem_cache_destroy(srb_cachep
);
3370 fc_release_transport(qla2xxx_transport_template
);
3374 printk(KERN_INFO
"QLogic Fibre Channel HBA Driver: %s\n",
3375 qla2x00_version_str
);
3376 ret
= pci_register_driver(&qla2xxx_pci_driver
);
3378 kmem_cache_destroy(srb_cachep
);
3379 fc_release_transport(qla2xxx_transport_template
);
3380 fc_release_transport(qla2xxx_transport_vport_template
);
3386 * qla2x00_module_exit - Module cleanup.
3389 qla2x00_module_exit(void)
3391 pci_unregister_driver(&qla2xxx_pci_driver
);
3392 qla2x00_release_firmware();
3393 kmem_cache_destroy(srb_cachep
);
3394 fc_release_transport(qla2xxx_transport_template
);
3395 fc_release_transport(qla2xxx_transport_vport_template
);
3398 module_init(qla2x00_module_init
);
3399 module_exit(qla2x00_module_exit
);
3401 MODULE_AUTHOR("QLogic Corporation");
3402 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
3403 MODULE_LICENSE("GPL");
3404 MODULE_VERSION(QLA2XXX_VERSION
);
3405 MODULE_FIRMWARE(FW_FILE_ISP21XX
);
3406 MODULE_FIRMWARE(FW_FILE_ISP22XX
);
3407 MODULE_FIRMWARE(FW_FILE_ISP2300
);
3408 MODULE_FIRMWARE(FW_FILE_ISP2322
);
3409 MODULE_FIRMWARE(FW_FILE_ISP24XX
);
3410 MODULE_FIRMWARE(FW_FILE_ISP25XX
);
3411 MODULE_FIRMWARE(FW_FILE_ISP81XX
);