2 * QLOGIC LINUX SOFTWARE
4 * QLogic ISP2x00 device driver for Linux 2.6.x
5 * Copyright (C) 2003-2005 QLogic Corporation
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
21 #include <linux/moduleparam.h>
22 #include <linux/vmalloc.h>
23 #include <linux/smp_lock.h>
24 #include <linux/delay.h>
26 #include <scsi/scsi_tcq.h>
27 #include <scsi/scsicam.h>
28 #include <scsi/scsi_transport.h>
29 #include <scsi/scsi_transport_fc.h>
34 char qla2x00_version_str
[40];
37 * SRB allocation cache
39 static kmem_cache_t
*srb_cachep
;
42 * Ioctl related information.
46 int ql2xlogintimeout
= 20;
47 module_param(ql2xlogintimeout
, int, S_IRUGO
|S_IRUSR
);
48 MODULE_PARM_DESC(ql2xlogintimeout
,
49 "Login timeout value in seconds.");
51 int qlport_down_retry
= 30;
52 module_param(qlport_down_retry
, int, S_IRUGO
|S_IRUSR
);
53 MODULE_PARM_DESC(qlport_down_retry
,
54 "Maximum number of command retries to a port that returns"
55 "a PORT-DOWN status.");
57 int ql2xplogiabsentdevice
;
58 module_param(ql2xplogiabsentdevice
, int, S_IRUGO
|S_IWUSR
);
59 MODULE_PARM_DESC(ql2xplogiabsentdevice
,
60 "Option to enable PLOGI to devices that are not present after "
61 "a Fabric scan. This is needed for several broken switches."
62 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
64 int ql2xenablezio
= 0;
65 module_param(ql2xenablezio
, int, S_IRUGO
|S_IRUSR
);
66 MODULE_PARM_DESC(ql2xenablezio
,
67 "Option to enable ZIO:If 1 then enable it otherwise"
68 " use the default set in the NVRAM."
69 " Default is 0 : disabled");
71 int ql2xintrdelaytimer
= 10;
72 module_param(ql2xintrdelaytimer
, int, S_IRUGO
|S_IRUSR
);
73 MODULE_PARM_DESC(ql2xintrdelaytimer
,
74 "ZIO: Waiting time for Firmware before it generates an "
75 "interrupt to the host to notify completion of request.");
77 int ql2xloginretrycount
= 0;
78 module_param(ql2xloginretrycount
, int, S_IRUGO
|S_IRUSR
);
79 MODULE_PARM_DESC(ql2xloginretrycount
,
80 "Specify an alternate value for the NVRAM login retry count.");
83 module_param(ql2xfwloadbin
, int, S_IRUGO
|S_IRUSR
);
84 MODULE_PARM_DESC(ql2xfwloadbin
,
85 "Load ISP2xxx firmware image via hotplug.");
87 static void qla2x00_free_device(scsi_qla_host_t
*);
89 static void qla2x00_config_dma_addressing(scsi_qla_host_t
*ha
);
92 * SCSI host template entry points
94 static int qla2xxx_slave_configure(struct scsi_device
* device
);
95 static int qla2xxx_slave_alloc(struct scsi_device
*);
96 static void qla2xxx_slave_destroy(struct scsi_device
*);
97 static int qla2x00_queuecommand(struct scsi_cmnd
*cmd
,
98 void (*fn
)(struct scsi_cmnd
*));
99 static int qla24xx_queuecommand(struct scsi_cmnd
*cmd
,
100 void (*fn
)(struct scsi_cmnd
*));
101 static int qla2xxx_eh_abort(struct scsi_cmnd
*);
102 static int qla2xxx_eh_device_reset(struct scsi_cmnd
*);
103 static int qla2xxx_eh_bus_reset(struct scsi_cmnd
*);
104 static int qla2xxx_eh_host_reset(struct scsi_cmnd
*);
105 static int qla2x00_loop_reset(scsi_qla_host_t
*ha
);
106 static int qla2x00_device_reset(scsi_qla_host_t
*, fc_port_t
*);
108 static struct scsi_host_template qla2x00_driver_template
= {
109 .module
= THIS_MODULE
,
111 .queuecommand
= qla2x00_queuecommand
,
113 .eh_abort_handler
= qla2xxx_eh_abort
,
114 .eh_device_reset_handler
= qla2xxx_eh_device_reset
,
115 .eh_bus_reset_handler
= qla2xxx_eh_bus_reset
,
116 .eh_host_reset_handler
= qla2xxx_eh_host_reset
,
118 .slave_configure
= qla2xxx_slave_configure
,
120 .slave_alloc
= qla2xxx_slave_alloc
,
121 .slave_destroy
= qla2xxx_slave_destroy
,
124 .use_clustering
= ENABLE_CLUSTERING
,
125 .sg_tablesize
= SG_ALL
,
128 * The RISC allows for each command to transfer (2^32-1) bytes of data,
129 * which equates to 0x800000 sectors.
131 .max_sectors
= 0xFFFF,
134 static struct scsi_host_template qla24xx_driver_template
= {
135 .module
= THIS_MODULE
,
137 .queuecommand
= qla24xx_queuecommand
,
139 .eh_abort_handler
= qla2xxx_eh_abort
,
140 .eh_device_reset_handler
= qla2xxx_eh_device_reset
,
141 .eh_bus_reset_handler
= qla2xxx_eh_bus_reset
,
142 .eh_host_reset_handler
= qla2xxx_eh_host_reset
,
144 .slave_configure
= qla2xxx_slave_configure
,
146 .slave_alloc
= qla2xxx_slave_alloc
,
147 .slave_destroy
= qla2xxx_slave_destroy
,
150 .use_clustering
= ENABLE_CLUSTERING
,
151 .sg_tablesize
= SG_ALL
,
153 .max_sectors
= 0xFFFF,
156 static struct scsi_transport_template
*qla2xxx_transport_template
= NULL
;
158 /* TODO Convert to inlines
162 #define WATCH_INTERVAL 1 /* number of seconds */
164 static void qla2x00_timer(scsi_qla_host_t
*);
166 static __inline__
void qla2x00_start_timer(scsi_qla_host_t
*,
167 void *, unsigned long);
168 static __inline__
void qla2x00_restart_timer(scsi_qla_host_t
*, unsigned long);
169 static __inline__
void qla2x00_stop_timer(scsi_qla_host_t
*);
172 qla2x00_start_timer(scsi_qla_host_t
*ha
, void *func
, unsigned long interval
)
174 init_timer(&ha
->timer
);
175 ha
->timer
.expires
= jiffies
+ interval
* HZ
;
176 ha
->timer
.data
= (unsigned long)ha
;
177 ha
->timer
.function
= (void (*)(unsigned long))func
;
178 add_timer(&ha
->timer
);
179 ha
->timer_active
= 1;
183 qla2x00_restart_timer(scsi_qla_host_t
*ha
, unsigned long interval
)
185 mod_timer(&ha
->timer
, jiffies
+ interval
* HZ
);
188 static __inline__
void
189 qla2x00_stop_timer(scsi_qla_host_t
*ha
)
191 del_timer_sync(&ha
->timer
);
192 ha
->timer_active
= 0;
195 static int qla2x00_do_dpc(void *data
);
197 static void qla2x00_rst_aen(scsi_qla_host_t
*);
199 static uint8_t qla2x00_mem_alloc(scsi_qla_host_t
*);
200 static void qla2x00_mem_free(scsi_qla_host_t
*ha
);
201 static int qla2x00_allocate_sp_pool( scsi_qla_host_t
*ha
);
202 static void qla2x00_free_sp_pool(scsi_qla_host_t
*ha
);
203 static void qla2x00_sp_free_dma(scsi_qla_host_t
*, srb_t
*);
204 void qla2x00_sp_compl(scsi_qla_host_t
*ha
, srb_t
*);
206 /* -------------------------------------------------------------------------- */
209 qla2x00_pci_info_str(struct scsi_qla_host
*ha
, char *str
)
211 static char *pci_bus_modes
[] = {
212 "33", "66", "100", "133",
217 pci_bus
= (ha
->pci_attr
& (BIT_9
| BIT_10
)) >> 9;
220 strcat(str
, pci_bus_modes
[pci_bus
]);
222 pci_bus
= (ha
->pci_attr
& BIT_8
) >> 8;
224 strcat(str
, pci_bus_modes
[pci_bus
]);
226 strcat(str
, " MHz)");
232 qla24xx_pci_info_str(struct scsi_qla_host
*ha
, char *str
)
234 static char *pci_bus_modes
[] = { "33", "66", "100", "133", };
238 pcie_reg
= pci_find_capability(ha
->pdev
, PCI_CAP_ID_EXP
);
241 uint16_t pcie_lstat
, lspeed
, lwidth
;
244 pci_read_config_word(ha
->pdev
, pcie_reg
, &pcie_lstat
);
245 lspeed
= pcie_lstat
& (BIT_0
| BIT_1
| BIT_2
| BIT_3
);
246 lwidth
= (pcie_lstat
&
247 (BIT_4
| BIT_5
| BIT_6
| BIT_7
| BIT_8
| BIT_9
)) >> 4;
249 strcpy(str
, "PCIe (");
251 strcat(str
, "2.5Gb/s ");
253 strcat(str
, "<unknown> ");
254 snprintf(lwstr
, sizeof(lwstr
), "x%d)", lwidth
);
261 pci_bus
= (ha
->pci_attr
& CSRX_PCIX_BUS_MODE_MASK
) >> 8;
262 if (pci_bus
== 0 || pci_bus
== 8) {
264 strcat(str
, pci_bus_modes
[pci_bus
>> 3]);
268 strcat(str
, "Mode 2");
270 strcat(str
, "Mode 1");
272 strcat(str
, pci_bus_modes
[pci_bus
& ~BIT_2
]);
274 strcat(str
, " MHz)");
280 qla2x00_fw_version_str(struct scsi_qla_host
*ha
, char *str
)
284 sprintf(str
, "%d.%02d.%02d ", ha
->fw_major_version
,
285 ha
->fw_minor_version
,
286 ha
->fw_subminor_version
);
288 if (ha
->fw_attributes
& BIT_9
) {
293 switch (ha
->fw_attributes
& 0xFF) {
307 sprintf(un_str
, "(%x)", ha
->fw_attributes
);
311 if (ha
->fw_attributes
& 0x100)
318 qla24xx_fw_version_str(struct scsi_qla_host
*ha
, char *str
)
320 sprintf(str
, "%d.%02d.%02d ", ha
->fw_major_version
,
321 ha
->fw_minor_version
,
322 ha
->fw_subminor_version
);
324 if (ha
->fw_attributes
& BIT_0
)
325 strcat(str
, "[Class 2] ");
326 if (ha
->fw_attributes
& BIT_1
)
327 strcat(str
, "[IP] ");
328 if (ha
->fw_attributes
& BIT_2
)
329 strcat(str
, "[Multi-ID] ");
330 if (ha
->fw_attributes
& BIT_13
)
331 strcat(str
, "[Experimental]");
335 static inline srb_t
*
336 qla2x00_get_new_sp(scsi_qla_host_t
*ha
, fc_port_t
*fcport
,
337 struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
341 sp
= mempool_alloc(ha
->srb_mempool
, GFP_ATOMIC
);
345 atomic_set(&sp
->ref_count
, 1);
350 CMD_SP(cmd
) = (void *)sp
;
351 cmd
->scsi_done
= done
;
357 qla2x00_queuecommand(struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
359 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
360 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
365 cmd
->result
= DID_NO_CONNECT
<< 16;
366 goto qc_fail_command
;
369 if (atomic_read(&fcport
->state
) != FCS_ONLINE
) {
370 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
||
371 atomic_read(&ha
->loop_state
) == LOOP_DEAD
) {
372 cmd
->result
= DID_NO_CONNECT
<< 16;
373 goto qc_fail_command
;
378 spin_unlock_irq(ha
->host
->host_lock
);
380 sp
= qla2x00_get_new_sp(ha
, fcport
, cmd
, done
);
382 goto qc_host_busy_lock
;
384 rval
= qla2x00_start_scsi(sp
);
385 if (rval
!= QLA_SUCCESS
)
386 goto qc_host_busy_free_sp
;
388 /* Manage unprocessed RIO/ZIO commands in response queue. */
389 if (ha
->flags
.online
&& ha
->flags
.process_response_queue
&&
390 ha
->response_ring_ptr
->signature
!= RESPONSE_PROCESSED
) {
393 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
394 qla2x00_process_response_queue(ha
);
395 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
398 spin_lock_irq(ha
->host
->host_lock
);
402 qc_host_busy_free_sp
:
403 qla2x00_sp_free_dma(ha
, sp
);
404 mempool_free(sp
, ha
->srb_mempool
);
407 spin_lock_irq(ha
->host
->host_lock
);
410 return SCSI_MLQUEUE_HOST_BUSY
;
420 qla24xx_queuecommand(struct scsi_cmnd
*cmd
, void (*done
)(struct scsi_cmnd
*))
422 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
423 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
428 cmd
->result
= DID_NO_CONNECT
<< 16;
429 goto qc24_fail_command
;
432 if (atomic_read(&fcport
->state
) != FCS_ONLINE
) {
433 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
||
434 atomic_read(&ha
->loop_state
) == LOOP_DEAD
) {
435 cmd
->result
= DID_NO_CONNECT
<< 16;
436 goto qc24_fail_command
;
441 spin_unlock_irq(ha
->host
->host_lock
);
443 sp
= qla2x00_get_new_sp(ha
, fcport
, cmd
, done
);
445 goto qc24_host_busy_lock
;
447 rval
= qla24xx_start_scsi(sp
);
448 if (rval
!= QLA_SUCCESS
)
449 goto qc24_host_busy_free_sp
;
451 spin_lock_irq(ha
->host
->host_lock
);
455 qc24_host_busy_free_sp
:
456 qla2x00_sp_free_dma(ha
, sp
);
457 mempool_free(sp
, ha
->srb_mempool
);
460 spin_lock_irq(ha
->host
->host_lock
);
463 return SCSI_MLQUEUE_HOST_BUSY
;
473 * qla2x00_eh_wait_on_command
474 * Waits for the command to be returned by the Firmware for some
478 * ha = actual ha whose done queue will contain the command
479 * returned by firmware.
480 * cmd = Scsi Command to wait on.
481 * flag = Abort/Reset(Bus or Device Reset)
488 qla2x00_eh_wait_on_command(scsi_qla_host_t
*ha
, struct scsi_cmnd
*cmd
)
490 #define ABORT_POLLING_PERIOD HZ
491 #define ABORT_WAIT_ITER ((10 * HZ) / (ABORT_POLLING_PERIOD))
492 unsigned long wait_iter
= ABORT_WAIT_ITER
;
493 int ret
= QLA_SUCCESS
;
495 while (CMD_SP(cmd
)) {
496 set_current_state(TASK_UNINTERRUPTIBLE
);
497 schedule_timeout(ABORT_POLLING_PERIOD
);
503 ret
= QLA_FUNCTION_FAILED
;
509 * qla2x00_wait_for_hba_online
510 * Wait till the HBA is online after going through
511 * <= MAX_RETRIES_OF_ISP_ABORT or
512 * finally HBA is disabled ie marked offline
515 * ha - pointer to host adapter structure
518 * Does context switching-Release SPIN_LOCK
519 * (if any) before calling this routine.
522 * Success (Adapter is online) : 0
523 * Failed (Adapter is offline/disabled) : 1
526 qla2x00_wait_for_hba_online(scsi_qla_host_t
*ha
)
529 unsigned long wait_online
;
531 wait_online
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
532 while (((test_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
)) ||
533 test_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
) ||
534 test_bit(ISP_ABORT_RETRY
, &ha
->dpc_flags
) ||
535 ha
->dpc_active
) && time_before(jiffies
, wait_online
)) {
539 if (ha
->flags
.online
)
540 return_status
= QLA_SUCCESS
;
542 return_status
= QLA_FUNCTION_FAILED
;
544 DEBUG2(printk("%s return_status=%d\n",__func__
,return_status
));
546 return (return_status
);
550 * qla2x00_wait_for_loop_ready
551 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
552 * to be in LOOP_READY state.
554 * ha - pointer to host adapter structure
557 * Does context switching-Release SPIN_LOCK
558 * (if any) before calling this routine.
562 * Success (LOOP_READY) : 0
563 * Failed (LOOP_NOT_READY) : 1
566 qla2x00_wait_for_loop_ready(scsi_qla_host_t
*ha
)
568 int return_status
= QLA_SUCCESS
;
569 unsigned long loop_timeout
;
571 /* wait for 5 min at the max for loop to be ready */
572 loop_timeout
= jiffies
+ (MAX_LOOP_TIMEOUT
* HZ
);
574 while ((!atomic_read(&ha
->loop_down_timer
) &&
575 atomic_read(&ha
->loop_state
) == LOOP_DOWN
) ||
576 atomic_read(&ha
->loop_state
) != LOOP_READY
) {
578 if (time_after_eq(jiffies
, loop_timeout
)) {
579 return_status
= QLA_FUNCTION_FAILED
;
583 return (return_status
);
586 /**************************************************************************
590 * The abort function will abort the specified command.
593 * cmd = Linux SCSI command packet to be aborted.
596 * Either SUCCESS or FAILED.
599 **************************************************************************/
601 qla2xxx_eh_abort(struct scsi_cmnd
*cmd
)
603 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
606 unsigned int id
, lun
;
607 unsigned long serial
;
615 id
= cmd
->device
->id
;
616 lun
= cmd
->device
->lun
;
617 serial
= cmd
->serial_number
;
619 /* Check active list for command command. */
620 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
621 for (i
= 1; i
< MAX_OUTSTANDING_COMMANDS
; i
++) {
622 sp
= ha
->outstanding_cmds
[i
];
630 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld "
631 "sp->state=%x\n", __func__
, ha
->host_no
, sp
, serial
,
633 DEBUG3(qla2x00_print_scsi_cmd(cmd
);)
635 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
636 if (ha
->isp_ops
.abort_command(ha
, sp
)) {
637 DEBUG2(printk("%s(%ld): abort_command "
638 "mbx failed.\n", __func__
, ha
->host_no
));
640 DEBUG3(printk("%s(%ld): abort_command "
641 "mbx success.\n", __func__
, ha
->host_no
));
644 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
648 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
650 /* Wait for the command to be returned. */
651 if (ret
== SUCCESS
) {
652 if (qla2x00_eh_wait_on_command(ha
, cmd
) != QLA_SUCCESS
) {
653 qla_printk(KERN_ERR
, ha
,
654 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
655 "%x.\n", ha
->host_no
, id
, lun
, serial
, ret
);
659 qla_printk(KERN_INFO
, ha
,
660 "scsi(%ld:%d:%d): Abort command issued -- %lx %x.\n", ha
->host_no
,
661 id
, lun
, serial
, ret
);
666 /**************************************************************************
667 * qla2x00_eh_wait_for_pending_target_commands
670 * Waits for all the commands to come back from the specified target.
673 * ha - pointer to scsi_qla_host structure.
676 * Either SUCCESS or FAILED.
679 **************************************************************************/
681 qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t
*ha
, unsigned int t
)
686 struct scsi_cmnd
*cmd
;
692 * Waiting for all commands for the designated target in the active
695 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
696 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
697 sp
= ha
->outstanding_cmds
[cnt
];
700 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
701 if (cmd
->device
->id
== t
) {
702 if (!qla2x00_eh_wait_on_command(ha
, cmd
)) {
708 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
715 /**************************************************************************
716 * qla2xxx_eh_device_reset
719 * The device reset function will reset the target and abort any
720 * executing commands.
722 * NOTE: The use of SP is undefined within this context. Do *NOT*
723 * attempt to use this value, even if you determine it is
727 * cmd = Linux SCSI command packet of the command that cause the
731 * SUCCESS/FAILURE (defined as macro in scsi.h).
733 **************************************************************************/
735 qla2xxx_eh_device_reset(struct scsi_cmnd
*cmd
)
737 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
738 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
741 unsigned int id
, lun
;
742 unsigned long serial
;
746 id
= cmd
->device
->id
;
747 lun
= cmd
->device
->lun
;
748 serial
= cmd
->serial_number
;
750 sp
= (srb_t
*) CMD_SP(cmd
);
754 qla_printk(KERN_INFO
, ha
,
755 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha
->host_no
, id
, lun
);
757 if (qla2x00_wait_for_hba_online(ha
) != QLA_SUCCESS
)
758 goto eh_dev_reset_done
;
760 if (qla2x00_wait_for_loop_ready(ha
) == QLA_SUCCESS
) {
761 if (qla2x00_device_reset(ha
, fcport
) == 0)
764 #if defined(LOGOUT_AFTER_DEVICE_RESET)
765 if (ret
== SUCCESS
) {
766 if (fcport
->flags
& FC_FABRIC_DEVICE
) {
767 ha
->isp_ops
.fabric_logout(ha
, fcport
->loop_id
);
768 qla2x00_mark_device_lost(ha
, fcport
);
773 DEBUG2(printk(KERN_INFO
774 "%s failed: loop not ready\n",__func__
);)
778 DEBUG3(printk("%s(%ld): device reset failed\n",
779 __func__
, ha
->host_no
));
780 qla_printk(KERN_INFO
, ha
, "%s: device reset failed\n",
783 goto eh_dev_reset_done
;
787 * If we are coming down the EH path, wait for all commands to
788 * complete for the device.
790 if (cmd
->device
->host
->eh_active
) {
791 if (qla2x00_eh_wait_for_pending_target_commands(ha
, id
))
795 DEBUG3(printk("%s(%ld): failed while waiting for "
796 "commands\n", __func__
, ha
->host_no
));
797 qla_printk(KERN_INFO
, ha
,
798 "%s: failed while waiting for commands\n",
801 goto eh_dev_reset_done
;
805 qla_printk(KERN_INFO
, ha
,
806 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha
->host_no
, id
, lun
);
812 /**************************************************************************
813 * qla2x00_eh_wait_for_pending_commands
816 * Waits for all the commands to come back from the specified host.
819 * ha - pointer to scsi_qla_host structure.
826 **************************************************************************/
828 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t
*ha
)
833 struct scsi_cmnd
*cmd
;
839 * Waiting for all commands for the designated target in the active
842 for (cnt
= 1; cnt
< MAX_OUTSTANDING_COMMANDS
; cnt
++) {
843 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
844 sp
= ha
->outstanding_cmds
[cnt
];
847 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
848 status
= qla2x00_eh_wait_on_command(ha
, cmd
);
853 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
860 /**************************************************************************
861 * qla2xxx_eh_bus_reset
864 * The bus reset function will reset the bus and abort any executing
868 * cmd = Linux SCSI command packet of the command that cause the
872 * SUCCESS/FAILURE (defined as macro in scsi.h).
874 **************************************************************************/
876 qla2xxx_eh_bus_reset(struct scsi_cmnd
*cmd
)
878 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
879 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
882 unsigned int id
, lun
;
883 unsigned long serial
;
887 id
= cmd
->device
->id
;
888 lun
= cmd
->device
->lun
;
889 serial
= cmd
->serial_number
;
891 sp
= (srb_t
*) CMD_SP(cmd
);
895 qla_printk(KERN_INFO
, ha
,
896 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha
->host_no
, id
, lun
);
898 if (qla2x00_wait_for_hba_online(ha
) != QLA_SUCCESS
) {
899 DEBUG2(printk("%s failed:board disabled\n",__func__
));
900 goto eh_bus_reset_done
;
903 if (qla2x00_wait_for_loop_ready(ha
) == QLA_SUCCESS
) {
904 if (qla2x00_loop_reset(ha
) == QLA_SUCCESS
)
908 goto eh_bus_reset_done
;
910 /* Waiting for our command in done_queue to be returned to OS.*/
911 if (cmd
->device
->host
->eh_active
)
912 if (!qla2x00_eh_wait_for_pending_commands(ha
))
916 qla_printk(KERN_INFO
, ha
, "%s: reset %s\n", __func__
,
917 (ret
== FAILED
) ? "failed" : "succeded");
922 /**************************************************************************
923 * qla2xxx_eh_host_reset
926 * The reset function will reset the Adapter.
929 * cmd = Linux SCSI command packet of the command that cause the
933 * Either SUCCESS or FAILED.
936 **************************************************************************/
938 qla2xxx_eh_host_reset(struct scsi_cmnd
*cmd
)
940 scsi_qla_host_t
*ha
= to_qla_host(cmd
->device
->host
);
941 fc_port_t
*fcport
= (struct fc_port
*) cmd
->device
->hostdata
;
944 unsigned int id
, lun
;
945 unsigned long serial
;
949 id
= cmd
->device
->id
;
950 lun
= cmd
->device
->lun
;
951 serial
= cmd
->serial_number
;
953 sp
= (srb_t
*) CMD_SP(cmd
);
957 qla_printk(KERN_INFO
, ha
,
958 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha
->host_no
, id
, lun
);
960 if (qla2x00_wait_for_hba_online(ha
) != QLA_SUCCESS
)
961 goto eh_host_reset_lock
;
964 * Fixme-may be dpc thread is active and processing
965 * loop_resync,so wait a while for it to
966 * be completed and then issue big hammer.Otherwise
967 * it may cause I/O failure as big hammer marks the
968 * devices as lost kicking of the port_down_timer
969 * while dpc is stuck for the mailbox to complete.
971 qla2x00_wait_for_loop_ready(ha
);
972 set_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
973 if (qla2x00_abort_isp(ha
)) {
974 clear_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
975 /* failed. schedule dpc to try */
976 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
978 if (qla2x00_wait_for_hba_online(ha
) != QLA_SUCCESS
)
979 goto eh_host_reset_lock
;
981 clear_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
983 /* Waiting for our command in done_queue to be returned to OS.*/
984 if (qla2x00_eh_wait_for_pending_commands(ha
))
988 qla_printk(KERN_INFO
, ha
, "%s: reset %s\n", __func__
,
989 (ret
== FAILED
) ? "failed" : "succeded");
999 * ha = adapter block pointer.
1005 qla2x00_loop_reset(scsi_qla_host_t
*ha
)
1007 int status
= QLA_SUCCESS
;
1008 struct fc_port
*fcport
;
1010 if (ha
->flags
.enable_lip_reset
) {
1011 status
= qla2x00_lip_reset(ha
);
1014 if (status
== QLA_SUCCESS
&& ha
->flags
.enable_target_reset
) {
1015 list_for_each_entry(fcport
, &ha
->fcports
, list
) {
1016 if (fcport
->port_type
!= FCT_TARGET
)
1019 status
= qla2x00_target_reset(ha
, fcport
);
1020 if (status
!= QLA_SUCCESS
)
1025 if (status
== QLA_SUCCESS
&&
1026 ((!ha
->flags
.enable_target_reset
&&
1027 !ha
->flags
.enable_lip_reset
) ||
1028 ha
->flags
.enable_lip_full_login
)) {
1030 status
= qla2x00_full_login_lip(ha
);
1033 /* Issue marker command only when we are going to start the I/O */
1034 ha
->marker_needed
= 1;
1038 DEBUG2_3(printk("%s(%ld): **** FAILED ****\n",
1043 DEBUG3(printk("%s(%ld): exiting normally.\n",
1052 * qla2x00_device_reset
1053 * Issue bus device reset message to the target.
1056 * ha = adapter block pointer.
1058 * TARGET_QUEUE_LOCK must be released.
1059 * ADAPTER_STATE_LOCK must be released.
1065 qla2x00_device_reset(scsi_qla_host_t
*ha
, fc_port_t
*reset_fcport
)
1067 /* Abort Target command will clear Reservation */
1068 return ha
->isp_ops
.abort_target(reset_fcport
);
1072 qla2xxx_slave_alloc(struct scsi_device
*sdev
)
1074 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1079 sdev
->hostdata
= rport
->dd_data
;
1085 qla2xxx_slave_configure(struct scsi_device
*sdev
)
1087 scsi_qla_host_t
*ha
= to_qla_host(sdev
->host
);
1088 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
1090 if (sdev
->tagged_supported
)
1091 scsi_activate_tcq(sdev
, 32);
1093 scsi_deactivate_tcq(sdev
, 32);
1095 rport
->dev_loss_tmo
= ha
->port_down_retry_count
+ 5;
1101 qla2xxx_slave_destroy(struct scsi_device
*sdev
)
1103 sdev
->hostdata
= NULL
;
1107 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1110 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1111 * supported addressing method.
1114 qla2x00_config_dma_addressing(scsi_qla_host_t
*ha
)
1116 /* Assume 32bit DMA address */
1117 ha
->flags
.enable_64bit_addressing
= 0;
1120 * Given the two variants pci_set_dma_mask(), allow the compiler to
1121 * assist in setting the proper dma mask.
1123 if (sizeof(dma_addr_t
) > 4) {
1124 if (pci_set_dma_mask(ha
->pdev
, DMA_64BIT_MASK
) == 0) {
1125 ha
->flags
.enable_64bit_addressing
= 1;
1126 ha
->isp_ops
.calc_req_entries
= qla2x00_calc_iocbs_64
;
1127 ha
->isp_ops
.build_iocbs
= qla2x00_build_scsi_iocbs_64
;
1129 if (pci_set_consistent_dma_mask(ha
->pdev
,
1131 qla_printk(KERN_DEBUG
, ha
,
1132 "Failed to set 64 bit PCI consistent mask; "
1134 pci_set_consistent_dma_mask(ha
->pdev
,
1138 qla_printk(KERN_DEBUG
, ha
,
1139 "Failed to set 64 bit PCI DMA mask, falling back "
1140 "to 32 bit MASK.\n");
1141 pci_set_dma_mask(ha
->pdev
, DMA_32BIT_MASK
);
1144 pci_set_dma_mask(ha
->pdev
, DMA_32BIT_MASK
);
1149 qla2x00_iospace_config(scsi_qla_host_t
*ha
)
1151 unsigned long pio
, pio_len
, pio_flags
;
1152 unsigned long mmio
, mmio_len
, mmio_flags
;
1154 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1155 pio
= pci_resource_start(ha
->pdev
, 0);
1156 pio_len
= pci_resource_len(ha
->pdev
, 0);
1157 pio_flags
= pci_resource_flags(ha
->pdev
, 0);
1158 if (pio_flags
& IORESOURCE_IO
) {
1159 if (pio_len
< MIN_IOBASE_LEN
) {
1160 qla_printk(KERN_WARNING
, ha
,
1161 "Invalid PCI I/O region size (%s)...\n",
1162 pci_name(ha
->pdev
));
1166 qla_printk(KERN_WARNING
, ha
,
1167 "region #0 not a PIO resource (%s)...\n",
1168 pci_name(ha
->pdev
));
1172 /* Use MMIO operations for all accesses. */
1173 mmio
= pci_resource_start(ha
->pdev
, 1);
1174 mmio_len
= pci_resource_len(ha
->pdev
, 1);
1175 mmio_flags
= pci_resource_flags(ha
->pdev
, 1);
1177 if (!(mmio_flags
& IORESOURCE_MEM
)) {
1178 qla_printk(KERN_ERR
, ha
,
1179 "region #0 not an MMIO resource (%s), aborting\n",
1180 pci_name(ha
->pdev
));
1181 goto iospace_error_exit
;
1183 if (mmio_len
< MIN_IOBASE_LEN
) {
1184 qla_printk(KERN_ERR
, ha
,
1185 "Invalid PCI mem region size (%s), aborting\n",
1186 pci_name(ha
->pdev
));
1187 goto iospace_error_exit
;
1190 if (pci_request_regions(ha
->pdev
, ha
->brd_info
->drv_name
)) {
1191 qla_printk(KERN_WARNING
, ha
,
1192 "Failed to reserve PIO/MMIO regions (%s)\n",
1193 pci_name(ha
->pdev
));
1195 goto iospace_error_exit
;
1198 ha
->pio_address
= pio
;
1199 ha
->pio_length
= pio_len
;
1200 ha
->iobase
= ioremap(mmio
, MIN_IOBASE_LEN
);
1202 qla_printk(KERN_ERR
, ha
,
1203 "cannot remap MMIO (%s), aborting\n", pci_name(ha
->pdev
));
1205 goto iospace_error_exit
;
1215 qla2x00_enable_intrs(scsi_qla_host_t
*ha
)
1217 unsigned long flags
= 0;
1218 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1220 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1221 ha
->interrupts_on
= 1;
1222 /* enable risc and host interrupts */
1223 WRT_REG_WORD(®
->ictrl
, ICR_EN_INT
| ICR_EN_RISC
);
1224 RD_REG_WORD(®
->ictrl
);
1225 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1230 qla2x00_disable_intrs(scsi_qla_host_t
*ha
)
1232 unsigned long flags
= 0;
1233 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1235 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1236 ha
->interrupts_on
= 0;
1237 /* disable risc and host interrupts */
1238 WRT_REG_WORD(®
->ictrl
, 0);
1239 RD_REG_WORD(®
->ictrl
);
1240 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1244 qla24xx_enable_intrs(scsi_qla_host_t
*ha
)
1246 unsigned long flags
= 0;
1247 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1249 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1250 ha
->interrupts_on
= 1;
1251 WRT_REG_DWORD(®
->ictrl
, ICRX_EN_RISC_INT
);
1252 RD_REG_DWORD(®
->ictrl
);
1253 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1257 qla24xx_disable_intrs(scsi_qla_host_t
*ha
)
1259 unsigned long flags
= 0;
1260 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1262 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1263 ha
->interrupts_on
= 0;
1264 WRT_REG_DWORD(®
->ictrl
, 0);
1265 RD_REG_DWORD(®
->ictrl
);
1266 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1270 * PCI driver interface
1272 int qla2x00_probe_one(struct pci_dev
*pdev
, struct qla_board_info
*brd_info
)
1275 device_reg_t __iomem
*reg
;
1276 struct Scsi_Host
*host
;
1277 scsi_qla_host_t
*ha
;
1278 unsigned long flags
= 0;
1279 unsigned long wait_switch
= 0;
1284 if (pci_enable_device(pdev
))
1287 host
= scsi_host_alloc(brd_info
->sht
? brd_info
->sht
:
1288 &qla2x00_driver_template
, sizeof(scsi_qla_host_t
));
1291 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1292 goto probe_disable_device
;
1295 /* Clear our data area */
1296 ha
= (scsi_qla_host_t
*)host
->hostdata
;
1297 memset(ha
, 0, sizeof(scsi_qla_host_t
));
1301 ha
->host_no
= host
->host_no
;
1302 ha
->brd_info
= brd_info
;
1303 sprintf(ha
->host_str
, "%s_%ld", ha
->brd_info
->drv_name
, ha
->host_no
);
1305 /* Configure PCI I/O space */
1306 ret
= qla2x00_iospace_config(ha
);
1310 qla_printk(KERN_INFO
, ha
,
1311 "Found an %s, irq %d, iobase 0x%p\n", ha
->brd_info
->isp_name
,
1312 pdev
->irq
, ha
->iobase
);
1314 spin_lock_init(&ha
->hardware_lock
);
1316 ha
->prev_topology
= 0;
1317 ha
->ports
= MAX_BUSES
;
1318 ha
->init_cb_size
= sizeof(init_cb_t
);
1320 /* Assign ISP specific operations. */
1321 ha
->isp_ops
.pci_config
= qla2100_pci_config
;
1322 ha
->isp_ops
.reset_chip
= qla2x00_reset_chip
;
1323 ha
->isp_ops
.chip_diag
= qla2x00_chip_diag
;
1324 ha
->isp_ops
.config_rings
= qla2x00_config_rings
;
1325 ha
->isp_ops
.reset_adapter
= qla2x00_reset_adapter
;
1326 ha
->isp_ops
.nvram_config
= qla2x00_nvram_config
;
1327 ha
->isp_ops
.update_fw_options
= qla2x00_update_fw_options
;
1328 ha
->isp_ops
.load_risc
= qla2x00_load_risc
;
1329 ha
->isp_ops
.pci_info_str
= qla2x00_pci_info_str
;
1330 ha
->isp_ops
.fw_version_str
= qla2x00_fw_version_str
;
1331 ha
->isp_ops
.intr_handler
= qla2100_intr_handler
;
1332 ha
->isp_ops
.enable_intrs
= qla2x00_enable_intrs
;
1333 ha
->isp_ops
.disable_intrs
= qla2x00_disable_intrs
;
1334 ha
->isp_ops
.abort_command
= qla2x00_abort_command
;
1335 ha
->isp_ops
.abort_target
= qla2x00_abort_target
;
1336 ha
->isp_ops
.fabric_login
= qla2x00_login_fabric
;
1337 ha
->isp_ops
.fabric_logout
= qla2x00_fabric_logout
;
1338 ha
->isp_ops
.calc_req_entries
= qla2x00_calc_iocbs_32
;
1339 ha
->isp_ops
.build_iocbs
= qla2x00_build_scsi_iocbs_32
;
1340 ha
->isp_ops
.prep_ms_iocb
= qla2x00_prep_ms_iocb
;
1341 ha
->isp_ops
.read_nvram
= qla2x00_read_nvram_data
;
1342 ha
->isp_ops
.write_nvram
= qla2x00_write_nvram_data
;
1343 ha
->isp_ops
.fw_dump
= qla2100_fw_dump
;
1344 ha
->isp_ops
.ascii_fw_dump
= qla2100_ascii_fw_dump
;
1345 if (IS_QLA2100(ha
)) {
1346 host
->max_id
= MAX_TARGETS_2100
;
1347 ha
->mbx_count
= MAILBOX_REGISTER_COUNT_2100
;
1348 ha
->request_q_length
= REQUEST_ENTRY_CNT_2100
;
1349 ha
->response_q_length
= RESPONSE_ENTRY_CNT_2100
;
1350 ha
->last_loop_id
= SNS_LAST_LOOP_ID_2100
;
1351 host
->sg_tablesize
= 32;
1352 ha
->gid_list_info_size
= 4;
1353 } else if (IS_QLA2200(ha
)) {
1354 host
->max_id
= MAX_TARGETS_2200
;
1355 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1356 ha
->request_q_length
= REQUEST_ENTRY_CNT_2200
;
1357 ha
->response_q_length
= RESPONSE_ENTRY_CNT_2100
;
1358 ha
->last_loop_id
= SNS_LAST_LOOP_ID_2100
;
1359 ha
->gid_list_info_size
= 4;
1360 } else if (IS_QLA23XX(ha
)) {
1361 host
->max_id
= MAX_TARGETS_2200
;
1362 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1363 ha
->request_q_length
= REQUEST_ENTRY_CNT_2200
;
1364 ha
->response_q_length
= RESPONSE_ENTRY_CNT_2300
;
1365 ha
->last_loop_id
= SNS_LAST_LOOP_ID_2300
;
1366 ha
->isp_ops
.pci_config
= qla2300_pci_config
;
1367 ha
->isp_ops
.intr_handler
= qla2300_intr_handler
;
1368 ha
->isp_ops
.fw_dump
= qla2300_fw_dump
;
1369 ha
->isp_ops
.ascii_fw_dump
= qla2300_ascii_fw_dump
;
1370 ha
->gid_list_info_size
= 6;
1371 } else if (IS_QLA24XX(ha
) || IS_QLA25XX(ha
)) {
1372 host
->max_id
= MAX_TARGETS_2200
;
1373 ha
->mbx_count
= MAILBOX_REGISTER_COUNT
;
1374 ha
->request_q_length
= REQUEST_ENTRY_CNT_24XX
;
1375 ha
->response_q_length
= RESPONSE_ENTRY_CNT_2300
;
1376 ha
->last_loop_id
= SNS_LAST_LOOP_ID_2300
;
1377 ha
->init_cb_size
= sizeof(struct init_cb_24xx
);
1378 ha
->isp_ops
.pci_config
= qla24xx_pci_config
;
1379 ha
->isp_ops
.reset_chip
= qla24xx_reset_chip
;
1380 ha
->isp_ops
.chip_diag
= qla24xx_chip_diag
;
1381 ha
->isp_ops
.config_rings
= qla24xx_config_rings
;
1382 ha
->isp_ops
.reset_adapter
= qla24xx_reset_adapter
;
1383 ha
->isp_ops
.nvram_config
= qla24xx_nvram_config
;
1384 ha
->isp_ops
.update_fw_options
= qla24xx_update_fw_options
;
1385 ha
->isp_ops
.load_risc
= qla24xx_load_risc_flash
;
1387 ha
->isp_ops
.load_risc
= qla24xx_load_risc_hotplug
;
1388 ha
->isp_ops
.pci_info_str
= qla24xx_pci_info_str
;
1389 ha
->isp_ops
.fw_version_str
= qla24xx_fw_version_str
;
1390 ha
->isp_ops
.intr_handler
= qla24xx_intr_handler
;
1391 ha
->isp_ops
.enable_intrs
= qla24xx_enable_intrs
;
1392 ha
->isp_ops
.disable_intrs
= qla24xx_disable_intrs
;
1393 ha
->isp_ops
.abort_command
= qla24xx_abort_command
;
1394 ha
->isp_ops
.abort_target
= qla24xx_abort_target
;
1395 ha
->isp_ops
.fabric_login
= qla24xx_login_fabric
;
1396 ha
->isp_ops
.fabric_logout
= qla24xx_fabric_logout
;
1397 ha
->isp_ops
.prep_ms_iocb
= qla24xx_prep_ms_iocb
;
1398 ha
->isp_ops
.read_nvram
= qla24xx_read_nvram_data
;
1399 ha
->isp_ops
.write_nvram
= qla24xx_write_nvram_data
;
1400 ha
->isp_ops
.fw_dump
= qla24xx_fw_dump
;
1401 ha
->isp_ops
.ascii_fw_dump
= qla24xx_ascii_fw_dump
;
1402 ha
->gid_list_info_size
= 8;
1404 host
->can_queue
= ha
->request_q_length
+ 128;
1406 /* load the F/W, read paramaters, and init the H/W */
1407 ha
->instance
= num_hosts
;
1409 init_MUTEX(&ha
->mbx_cmd_sem
);
1410 init_MUTEX_LOCKED(&ha
->mbx_intr_sem
);
1412 INIT_LIST_HEAD(&ha
->list
);
1413 INIT_LIST_HEAD(&ha
->fcports
);
1414 INIT_LIST_HEAD(&ha
->rscn_fcports
);
1417 * These locks are used to prevent more than one CPU
1418 * from modifying the queue at the same time. The
1419 * higher level "host_lock" will reduce most
1420 * contention for these locks.
1422 spin_lock_init(&ha
->mbx_reg_lock
);
1425 init_completion(&ha
->dpc_inited
);
1426 init_completion(&ha
->dpc_exited
);
1428 qla2x00_config_dma_addressing(ha
);
1429 if (qla2x00_mem_alloc(ha
)) {
1430 qla_printk(KERN_WARNING
, ha
,
1431 "[ERROR] Failed to allocate memory for adapter\n");
1437 if (qla2x00_initialize_adapter(ha
) &&
1438 !(ha
->device_flags
& DFLG_NO_CABLE
)) {
1440 qla_printk(KERN_WARNING
, ha
,
1441 "Failed to initialize adapter\n");
1443 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1444 "Adapter flags %x.\n",
1445 ha
->host_no
, ha
->device_flags
));
1452 * Startup the kernel thread for this host adapter
1454 ha
->dpc_should_die
= 0;
1455 ha
->dpc_pid
= kernel_thread(qla2x00_do_dpc
, ha
, 0);
1456 if (ha
->dpc_pid
< 0) {
1457 qla_printk(KERN_WARNING
, ha
,
1458 "Unable to start DPC thread!\n");
1463 wait_for_completion(&ha
->dpc_inited
);
1465 host
->this_id
= 255;
1466 host
->cmd_per_lun
= 3;
1467 host
->unique_id
= ha
->instance
;
1468 host
->max_cmd_len
= MAX_CMDSZ
;
1469 host
->max_channel
= ha
->ports
- 1;
1470 host
->max_lun
= MAX_LUNS
;
1471 host
->transportt
= qla2xxx_transport_template
;
1473 ret
= request_irq(pdev
->irq
, ha
->isp_ops
.intr_handler
,
1474 SA_INTERRUPT
|SA_SHIRQ
, ha
->brd_info
->drv_name
, ha
);
1476 qla_printk(KERN_WARNING
, ha
,
1477 "Failed to reserve interrupt %d already in use.\n",
1481 host
->irq
= pdev
->irq
;
1483 /* Initialized the timer */
1484 qla2x00_start_timer(ha
, qla2x00_timer
, WATCH_INTERVAL
);
1486 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1489 ha
->isp_ops
.disable_intrs(ha
);
1491 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1493 if (IS_QLA24XX(ha
) || IS_QLA25XX(ha
)) {
1494 WRT_REG_DWORD(®
->isp24
.hccr
, HCCRX_CLR_HOST_INT
);
1495 WRT_REG_DWORD(®
->isp24
.hccr
, HCCRX_CLR_RISC_INT
);
1497 WRT_REG_WORD(®
->isp
.semaphore
, 0);
1498 WRT_REG_WORD(®
->isp
.hccr
, HCCR_CLR_RISC_INT
);
1499 WRT_REG_WORD(®
->isp
.hccr
, HCCR_CLR_HOST_INT
);
1501 /* Enable proper parity */
1502 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
)) {
1505 WRT_REG_WORD(®
->isp
.hccr
,
1506 (HCCR_ENABLE_PARITY
+ 0x1));
1508 /* SRAM, Instruction RAM and GP RAM parity */
1509 WRT_REG_WORD(®
->isp
.hccr
,
1510 (HCCR_ENABLE_PARITY
+ 0x7));
1513 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1515 ha
->isp_ops
.enable_intrs(ha
);
1519 * Wait around max loop_reset_delay secs for the devices to come
1520 * on-line. We don't want Linux scanning before we are ready.
1523 for (wait_switch
= jiffies
+ (ha
->loop_reset_delay
* HZ
);
1524 time_before(jiffies
,wait_switch
) &&
1525 !(ha
->device_flags
& (DFLG_NO_CABLE
| DFLG_FABRIC_DEVICES
))
1526 && (ha
->device_flags
& SWITCH_FOUND
) ;) {
1528 qla2x00_check_fabric_devices(ha
);
1533 pci_set_drvdata(pdev
, ha
);
1534 ha
->flags
.init_done
= 1;
1537 ret
= scsi_add_host(host
, &pdev
->dev
);
1541 qla2x00_alloc_sysfs_attr(ha
);
1543 qla2x00_init_host_attr(ha
);
1545 qla_printk(KERN_INFO
, ha
, "\n"
1546 " QLogic Fibre Channel HBA Driver: %s\n"
1548 " %s: %s @ %s hdma%c, host#=%ld, fw=%s\n", qla2x00_version_str
,
1549 ha
->model_number
, ha
->model_desc
? ha
->model_desc
: "",
1550 ha
->brd_info
->isp_name
, ha
->isp_ops
.pci_info_str(ha
, pci_info
),
1551 pci_name(pdev
), ha
->flags
.enable_64bit_addressing
? '+': '-',
1552 ha
->host_no
, ha
->isp_ops
.fw_version_str(ha
, fw_str
));
1554 /* Go with fc_rport registration. */
1555 list_for_each_entry(fcport
, &ha
->fcports
, list
)
1556 qla2x00_reg_remote_port(ha
, fcport
);
1561 fc_remove_host(ha
->host
);
1563 qla2x00_free_device(ha
);
1565 scsi_host_put(host
);
1567 probe_disable_device
:
1568 pci_disable_device(pdev
);
1573 EXPORT_SYMBOL_GPL(qla2x00_probe_one
);
1575 void qla2x00_remove_one(struct pci_dev
*pdev
)
1577 scsi_qla_host_t
*ha
;
1579 ha
= pci_get_drvdata(pdev
);
1581 qla2x00_free_sysfs_attr(ha
);
1583 fc_remove_host(ha
->host
);
1585 scsi_remove_host(ha
->host
);
1587 qla2x00_free_device(ha
);
1589 scsi_host_put(ha
->host
);
1591 pci_set_drvdata(pdev
, NULL
);
1593 EXPORT_SYMBOL_GPL(qla2x00_remove_one
);
1596 qla2x00_free_device(scsi_qla_host_t
*ha
)
1600 /* Abort any outstanding IO descriptors. */
1601 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
))
1602 qla2x00_cancel_io_descriptors(ha
);
1604 /* turn-off interrupts on the card */
1605 if (ha
->interrupts_on
)
1606 ha
->isp_ops
.disable_intrs(ha
);
1609 if (ha
->timer_active
)
1610 qla2x00_stop_timer(ha
);
1612 /* Kill the kernel thread for this host */
1613 if (ha
->dpc_pid
>= 0) {
1614 ha
->dpc_should_die
= 1;
1616 ret
= kill_proc(ha
->dpc_pid
, SIGHUP
, 1);
1618 qla_printk(KERN_ERR
, ha
,
1619 "Unable to signal DPC thread -- (%d)\n", ret
);
1621 /* TODO: SOMETHING MORE??? */
1623 wait_for_completion(&ha
->dpc_exited
);
1627 qla2x00_mem_free(ha
);
1630 ha
->flags
.online
= 0;
1632 /* Detach interrupts */
1634 free_irq(ha
->pdev
->irq
, ha
);
1636 /* release io space registers */
1638 iounmap(ha
->iobase
);
1639 pci_release_regions(ha
->pdev
);
1641 pci_disable_device(ha
->pdev
);
1645 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1647 * Input: ha = adapter block pointer. fcport = port structure pointer.
1653 void qla2x00_mark_device_lost(scsi_qla_host_t
*ha
, fc_port_t
*fcport
,
1656 if (atomic_read(&fcport
->state
) == FCS_ONLINE
&& fcport
->rport
)
1657 fc_remote_port_block(fcport
->rport
);
1659 * We may need to retry the login, so don't change the state of the
1660 * port but do the retries.
1662 if (atomic_read(&fcport
->state
) != FCS_DEVICE_DEAD
)
1663 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
1668 if (fcport
->login_retry
== 0) {
1669 fcport
->login_retry
= ha
->login_retry_count
;
1670 set_bit(RELOGIN_NEEDED
, &ha
->dpc_flags
);
1672 DEBUG(printk("scsi(%ld): Port login retry: "
1673 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1674 "id = 0x%04x retry cnt=%d\n",
1676 fcport
->port_name
[0],
1677 fcport
->port_name
[1],
1678 fcport
->port_name
[2],
1679 fcport
->port_name
[3],
1680 fcport
->port_name
[4],
1681 fcport
->port_name
[5],
1682 fcport
->port_name
[6],
1683 fcport
->port_name
[7],
1685 fcport
->login_retry
));
1690 * qla2x00_mark_all_devices_lost
1691 * Updates fcport state when device goes offline.
1694 * ha = adapter block pointer.
1695 * fcport = port structure pointer.
1703 qla2x00_mark_all_devices_lost(scsi_qla_host_t
*ha
)
1707 list_for_each_entry(fcport
, &ha
->fcports
, list
) {
1708 if (fcport
->port_type
!= FCT_TARGET
)
1712 * No point in marking the device as lost, if the device is
1715 if (atomic_read(&fcport
->state
) == FCS_DEVICE_DEAD
)
1717 if (atomic_read(&fcport
->state
) == FCS_ONLINE
&& fcport
->rport
)
1718 fc_remote_port_block(fcport
->rport
);
1719 atomic_set(&fcport
->state
, FCS_DEVICE_LOST
);
1725 * Allocates adapter memory.
1732 qla2x00_mem_alloc(scsi_qla_host_t
*ha
)
1740 * This will loop only once if everything goes well, else some
1741 * number of retries will be performed to get around a kernel
1742 * bug where available mem is not allocated until after a
1743 * little delay and a retry.
1745 ha
->request_ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
1746 (ha
->request_q_length
+ 1) * sizeof(request_t
),
1747 &ha
->request_dma
, GFP_KERNEL
);
1748 if (ha
->request_ring
== NULL
) {
1749 qla_printk(KERN_WARNING
, ha
,
1750 "Memory Allocation failed - request_ring\n");
1752 qla2x00_mem_free(ha
);
1758 ha
->response_ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
1759 (ha
->response_q_length
+ 1) * sizeof(response_t
),
1760 &ha
->response_dma
, GFP_KERNEL
);
1761 if (ha
->response_ring
== NULL
) {
1762 qla_printk(KERN_WARNING
, ha
,
1763 "Memory Allocation failed - response_ring\n");
1765 qla2x00_mem_free(ha
);
1771 ha
->gid_list
= dma_alloc_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
,
1772 &ha
->gid_list_dma
, GFP_KERNEL
);
1773 if (ha
->gid_list
== NULL
) {
1774 qla_printk(KERN_WARNING
, ha
,
1775 "Memory Allocation failed - gid_list\n");
1777 qla2x00_mem_free(ha
);
1783 ha
->rlc_rsp
= dma_alloc_coherent(&ha
->pdev
->dev
,
1784 sizeof(rpt_lun_cmd_rsp_t
), &ha
->rlc_rsp_dma
, GFP_KERNEL
);
1785 if (ha
->rlc_rsp
== NULL
) {
1786 qla_printk(KERN_WARNING
, ha
,
1787 "Memory Allocation failed - rlc");
1789 qla2x00_mem_free(ha
);
1795 snprintf(name
, sizeof(name
), "qla2xxx_%ld", ha
->host_no
);
1796 ha
->s_dma_pool
= dma_pool_create(name
, &ha
->pdev
->dev
,
1797 DMA_POOL_SIZE
, 8, 0);
1798 if (ha
->s_dma_pool
== NULL
) {
1799 qla_printk(KERN_WARNING
, ha
,
1800 "Memory Allocation failed - s_dma_pool\n");
1802 qla2x00_mem_free(ha
);
1808 /* get consistent memory allocated for init control block */
1809 ha
->init_cb
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
1811 if (ha
->init_cb
== NULL
) {
1812 qla_printk(KERN_WARNING
, ha
,
1813 "Memory Allocation failed - init_cb\n");
1815 qla2x00_mem_free(ha
);
1820 memset(ha
->init_cb
, 0, ha
->init_cb_size
);
1822 /* Get consistent memory allocated for Get Port Database cmd */
1823 ha
->iodesc_pd
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
1824 &ha
->iodesc_pd_dma
);
1825 if (ha
->iodesc_pd
== NULL
) {
1827 qla_printk(KERN_WARNING
, ha
,
1828 "Memory Allocation failed - iodesc_pd\n");
1830 qla2x00_mem_free(ha
);
1835 memset(ha
->iodesc_pd
, 0, PORT_DATABASE_SIZE
);
1837 /* Allocate ioctl related memory. */
1838 if (qla2x00_alloc_ioctl_mem(ha
)) {
1839 qla_printk(KERN_WARNING
, ha
,
1840 "Memory Allocation failed - ioctl_mem\n");
1842 qla2x00_mem_free(ha
);
1848 if (qla2x00_allocate_sp_pool(ha
)) {
1849 qla_printk(KERN_WARNING
, ha
,
1850 "Memory Allocation failed - "
1851 "qla2x00_allocate_sp_pool()\n");
1853 qla2x00_mem_free(ha
);
1859 /* Allocate memory for SNS commands */
1860 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
1861 /* Get consistent memory allocated for SNS commands */
1862 ha
->sns_cmd
= dma_alloc_coherent(&ha
->pdev
->dev
,
1863 sizeof(struct sns_cmd_pkt
), &ha
->sns_cmd_dma
,
1865 if (ha
->sns_cmd
== NULL
) {
1867 qla_printk(KERN_WARNING
, ha
,
1868 "Memory Allocation failed - sns_cmd\n");
1870 qla2x00_mem_free(ha
);
1875 memset(ha
->sns_cmd
, 0, sizeof(struct sns_cmd_pkt
));
1877 /* Get consistent memory allocated for MS IOCB */
1878 ha
->ms_iocb
= dma_pool_alloc(ha
->s_dma_pool
, GFP_KERNEL
,
1880 if (ha
->ms_iocb
== NULL
) {
1882 qla_printk(KERN_WARNING
, ha
,
1883 "Memory Allocation failed - ms_iocb\n");
1885 qla2x00_mem_free(ha
);
1890 memset(ha
->ms_iocb
, 0, sizeof(ms_iocb_entry_t
));
1893 * Get consistent memory allocated for CT SNS
1896 ha
->ct_sns
= dma_alloc_coherent(&ha
->pdev
->dev
,
1897 sizeof(struct ct_sns_pkt
), &ha
->ct_sns_dma
,
1899 if (ha
->ct_sns
== NULL
) {
1901 qla_printk(KERN_WARNING
, ha
,
1902 "Memory Allocation failed - ct_sns\n");
1904 qla2x00_mem_free(ha
);
1909 memset(ha
->ct_sns
, 0, sizeof(struct ct_sns_pkt
));
1912 /* Done all allocations without any error. */
1915 } while (retry
-- && status
!= 0);
1919 "%s(): **** FAILED ****\n", __func__
);
1927 * Frees all adapter allocated memory.
1930 * ha = adapter block pointer.
1933 qla2x00_mem_free(scsi_qla_host_t
*ha
)
1935 struct list_head
*fcpl
, *fcptemp
;
1937 unsigned long wtime
;/* max wait time if mbx cmd is busy. */
1941 DEBUG2(printk("%s(): ERROR invalid ha pointer.\n", __func__
));
1945 /* Make sure all other threads are stopped. */
1947 while (ha
->dpc_wait
&& wtime
) {
1948 set_current_state(TASK_INTERRUPTIBLE
);
1949 wtime
= schedule_timeout(wtime
);
1952 /* free ioctl memory */
1953 qla2x00_free_ioctl_mem(ha
);
1956 qla2x00_free_sp_pool(ha
);
1959 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct sns_cmd_pkt
),
1960 ha
->sns_cmd
, ha
->sns_cmd_dma
);
1963 dma_free_coherent(&ha
->pdev
->dev
, sizeof(struct ct_sns_pkt
),
1964 ha
->ct_sns
, ha
->ct_sns_dma
);
1967 dma_pool_free(ha
->s_dma_pool
, ha
->ms_iocb
, ha
->ms_iocb_dma
);
1970 dma_pool_free(ha
->s_dma_pool
, ha
->iodesc_pd
, ha
->iodesc_pd_dma
);
1973 dma_pool_free(ha
->s_dma_pool
, ha
->init_cb
, ha
->init_cb_dma
);
1976 dma_pool_destroy(ha
->s_dma_pool
);
1979 dma_free_coherent(&ha
->pdev
->dev
,
1980 sizeof(rpt_lun_cmd_rsp_t
), ha
->rlc_rsp
,
1984 dma_free_coherent(&ha
->pdev
->dev
, GID_LIST_SIZE
, ha
->gid_list
,
1987 if (ha
->response_ring
)
1988 dma_free_coherent(&ha
->pdev
->dev
,
1989 (ha
->response_q_length
+ 1) * sizeof(response_t
),
1990 ha
->response_ring
, ha
->response_dma
);
1992 if (ha
->request_ring
)
1993 dma_free_coherent(&ha
->pdev
->dev
,
1994 (ha
->request_q_length
+ 1) * sizeof(request_t
),
1995 ha
->request_ring
, ha
->request_dma
);
1998 ha
->sns_cmd_dma
= 0;
2002 ha
->ms_iocb_dma
= 0;
2003 ha
->iodesc_pd
= NULL
;
2004 ha
->iodesc_pd_dma
= 0;
2006 ha
->init_cb_dma
= 0;
2008 ha
->s_dma_pool
= NULL
;
2011 ha
->rlc_rsp_dma
= 0;
2012 ha
->gid_list
= NULL
;
2013 ha
->gid_list_dma
= 0;
2015 ha
->response_ring
= NULL
;
2016 ha
->response_dma
= 0;
2017 ha
->request_ring
= NULL
;
2018 ha
->request_dma
= 0;
2020 list_for_each_safe(fcpl
, fcptemp
, &ha
->fcports
) {
2021 fcport
= list_entry(fcpl
, fc_port_t
, list
);
2024 list_del_init(&fcport
->list
);
2027 INIT_LIST_HEAD(&ha
->fcports
);
2030 free_pages((unsigned long)ha
->fw_dump
, ha
->fw_dump_order
);
2032 vfree(ha
->fw_dump24
);
2034 vfree(ha
->fw_dump_buffer
);
2037 ha
->fw_dump24
= NULL
;
2039 ha
->fw_dump_reading
= 0;
2040 ha
->fw_dump_buffer
= NULL
;
2044 * qla2x00_allocate_sp_pool
2045 * This routine is called during initialization to allocate
2046 * memory for local srb_t.
2049 * ha = adapter block pointer.
2054 * Note: Sets the ref_count for non Null sp to one.
2057 qla2x00_allocate_sp_pool(scsi_qla_host_t
*ha
)
2062 ha
->srb_mempool
= mempool_create(SRB_MIN_REQ
, mempool_alloc_slab
,
2063 mempool_free_slab
, srb_cachep
);
2064 if (ha
->srb_mempool
== NULL
) {
2065 qla_printk(KERN_INFO
, ha
, "Unable to allocate SRB mempool.\n");
2066 rval
= QLA_FUNCTION_FAILED
;
2072 * This routine frees all adapter allocated memory.
2076 qla2x00_free_sp_pool( scsi_qla_host_t
*ha
)
2078 if (ha
->srb_mempool
) {
2079 mempool_destroy(ha
->srb_mempool
);
2080 ha
->srb_mempool
= NULL
;
2084 /**************************************************************************
2086 * This kernel thread is a task that is schedule by the interrupt handler
2087 * to perform the background processing for interrupts.
2090 * This task always run in the context of a kernel thread. It
2091 * is kick-off by the driver's detect code and starts up
2092 * up one per adapter. It immediately goes to sleep and waits for
2093 * some fibre event. When either the interrupt handler or
2094 * the timer routine detects a event it will one of the task
2095 * bits then wake us up.
2096 **************************************************************************/
2098 qla2x00_do_dpc(void *data
)
2100 DECLARE_MUTEX_LOCKED(sem
);
2101 scsi_qla_host_t
*ha
;
2104 uint16_t next_loopid
;
2106 ha
= (scsi_qla_host_t
*)data
;
2110 daemonize("%s_dpc", ha
->host_str
);
2111 allow_signal(SIGHUP
);
2113 ha
->dpc_wait
= &sem
;
2115 set_user_nice(current
, -20);
2119 complete(&ha
->dpc_inited
);
2122 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2124 if (down_interruptible(&sem
))
2127 if (ha
->dpc_should_die
)
2130 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2132 /* Initialization not yet finished. Don't do anything yet. */
2133 if (!ha
->flags
.init_done
|| ha
->dpc_active
)
2136 DEBUG3(printk("scsi(%ld): DPC handler\n", ha
->host_no
));
2140 if (ha
->flags
.mbox_busy
) {
2145 if (test_and_clear_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
)) {
2147 DEBUG(printk("scsi(%ld): dpc: sched "
2148 "qla2x00_abort_isp ha = %p\n",
2150 if (!(test_and_set_bit(ABORT_ISP_ACTIVE
,
2153 if (qla2x00_abort_isp(ha
)) {
2154 /* failed. retry later */
2155 set_bit(ISP_ABORT_NEEDED
,
2158 clear_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
);
2160 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2164 if (test_and_clear_bit(RESET_MARKER_NEEDED
, &ha
->dpc_flags
) &&
2165 (!(test_and_set_bit(RESET_ACTIVE
, &ha
->dpc_flags
)))) {
2167 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2170 qla2x00_rst_aen(ha
);
2171 clear_bit(RESET_ACTIVE
, &ha
->dpc_flags
);
2174 /* Retry each device up to login retry count */
2175 if ((test_and_clear_bit(RELOGIN_NEEDED
, &ha
->dpc_flags
)) &&
2176 !test_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
) &&
2177 atomic_read(&ha
->loop_state
) != LOOP_DOWN
) {
2179 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2183 list_for_each_entry(fcport
, &ha
->fcports
, list
) {
2184 if (fcport
->port_type
!= FCT_TARGET
)
2188 * If the port is not ONLINE then try to login
2189 * to it if we haven't run out of retries.
2191 if (atomic_read(&fcport
->state
) != FCS_ONLINE
&&
2192 fcport
->login_retry
) {
2194 fcport
->login_retry
--;
2195 if (fcport
->flags
& FCF_FABRIC_DEVICE
) {
2198 ha
->isp_ops
.fabric_logout(
2199 ha
, fcport
->loop_id
,
2200 fcport
->d_id
.b
.domain
,
2201 fcport
->d_id
.b
.area
,
2202 fcport
->d_id
.b
.al_pa
);
2203 status
= qla2x00_fabric_login(
2204 ha
, fcport
, &next_loopid
);
2207 qla2x00_local_device_login(
2208 ha
, fcport
->loop_id
);
2210 if (status
== QLA_SUCCESS
) {
2211 fcport
->old_loop_id
= fcport
->loop_id
;
2213 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2214 ha
->host_no
, fcport
->loop_id
));
2216 fcport
->port_login_retry_count
=
2217 ha
->port_down_retry_count
* PORT_RETRY_TIME
;
2218 atomic_set(&fcport
->state
, FCS_ONLINE
);
2219 atomic_set(&fcport
->port_down_timer
,
2220 ha
->port_down_retry_count
* PORT_RETRY_TIME
);
2222 fcport
->login_retry
= 0;
2223 } else if (status
== 1) {
2224 set_bit(RELOGIN_NEEDED
, &ha
->dpc_flags
);
2225 /* retry the login again */
2226 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2228 fcport
->login_retry
, fcport
->loop_id
));
2230 fcport
->login_retry
= 0;
2233 if (test_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
))
2236 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2240 if ((test_bit(LOGIN_RETRY_NEEDED
, &ha
->dpc_flags
)) &&
2241 atomic_read(&ha
->loop_state
) != LOOP_DOWN
) {
2243 clear_bit(LOGIN_RETRY_NEEDED
, &ha
->dpc_flags
);
2244 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2247 set_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
);
2249 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2253 if (test_and_clear_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
)) {
2255 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2258 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE
,
2261 qla2x00_loop_resync(ha
);
2263 clear_bit(LOOP_RESYNC_ACTIVE
, &ha
->dpc_flags
);
2266 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2270 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED
, &ha
->dpc_flags
)) {
2272 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2275 qla2x00_rescan_fcports(ha
);
2277 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2282 if (!ha
->interrupts_on
)
2283 ha
->isp_ops
.enable_intrs(ha
);
2286 } /* End of while(1) */
2288 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha
->host_no
));
2291 * Make sure that nobody tries to wake us up again.
2293 ha
->dpc_wait
= NULL
;
2296 complete_and_exit(&ha
->dpc_exited
, 0);
2301 * Processes asynchronous reset.
2304 * ha = adapter block pointer.
2307 qla2x00_rst_aen(scsi_qla_host_t
*ha
)
2309 if (ha
->flags
.online
&& !ha
->flags
.reset_active
&&
2310 !atomic_read(&ha
->loop_down_timer
) &&
2311 !(test_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
))) {
2313 clear_bit(RESET_MARKER_NEEDED
, &ha
->dpc_flags
);
2316 * Issue marker command only when we are going to start
2319 ha
->marker_needed
= 1;
2320 } while (!atomic_read(&ha
->loop_down_timer
) &&
2321 (test_bit(RESET_MARKER_NEEDED
, &ha
->dpc_flags
)));
2326 qla2x00_sp_free_dma(scsi_qla_host_t
*ha
, srb_t
*sp
)
2328 struct scsi_cmnd
*cmd
= sp
->cmd
;
2330 if (sp
->flags
& SRB_DMA_VALID
) {
2332 dma_unmap_sg(&ha
->pdev
->dev
, cmd
->request_buffer
,
2333 cmd
->use_sg
, cmd
->sc_data_direction
);
2334 } else if (cmd
->request_bufflen
) {
2335 dma_unmap_single(&ha
->pdev
->dev
, sp
->dma_handle
,
2336 cmd
->request_bufflen
, cmd
->sc_data_direction
);
2338 sp
->flags
&= ~SRB_DMA_VALID
;
2344 qla2x00_sp_compl(scsi_qla_host_t
*ha
, srb_t
*sp
)
2346 struct scsi_cmnd
*cmd
= sp
->cmd
;
2348 qla2x00_sp_free_dma(ha
, sp
);
2350 mempool_free(sp
, ha
->srb_mempool
);
2352 cmd
->scsi_done(cmd
);
2355 /**************************************************************************
2361 * Context: Interrupt
2362 ***************************************************************************/
2364 qla2x00_timer(scsi_qla_host_t
*ha
)
2366 unsigned long cpu_flags
= 0;
2374 * Ports - Port down timer.
2376 * Whenever, a port is in the LOST state we start decrementing its port
2377 * down timer every second until it reaches zero. Once it reaches zero
2378 * the port it marked DEAD.
2381 list_for_each_entry(fcport
, &ha
->fcports
, list
) {
2382 if (fcport
->port_type
!= FCT_TARGET
)
2385 if (atomic_read(&fcport
->state
) == FCS_DEVICE_LOST
) {
2387 if (atomic_read(&fcport
->port_down_timer
) == 0)
2390 if (atomic_dec_and_test(&fcport
->port_down_timer
) != 0)
2391 atomic_set(&fcport
->state
, FCS_DEVICE_DEAD
);
2393 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
2396 t
, atomic_read(&fcport
->port_down_timer
)));
2399 } /* End of for fcport */
2402 /* Loop down handler. */
2403 if (atomic_read(&ha
->loop_down_timer
) > 0 &&
2404 !(test_bit(ABORT_ISP_ACTIVE
, &ha
->dpc_flags
)) && ha
->flags
.online
) {
2406 if (atomic_read(&ha
->loop_down_timer
) ==
2407 ha
->loop_down_abort_time
) {
2409 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2410 "queues before time expire\n",
2413 if (!IS_QLA2100(ha
) && ha
->link_down_timeout
)
2414 atomic_set(&ha
->loop_state
, LOOP_DEAD
);
2416 /* Schedule an ISP abort to return any tape commands. */
2417 spin_lock_irqsave(&ha
->hardware_lock
, cpu_flags
);
2418 for (index
= 1; index
< MAX_OUTSTANDING_COMMANDS
;
2422 sp
= ha
->outstanding_cmds
[index
];
2426 if (!(sfcp
->flags
& FCF_TAPE_PRESENT
))
2429 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
2432 spin_unlock_irqrestore(&ha
->hardware_lock
, cpu_flags
);
2434 set_bit(ABORT_QUEUES_NEEDED
, &ha
->dpc_flags
);
2438 /* if the loop has been down for 4 minutes, reinit adapter */
2439 if (atomic_dec_and_test(&ha
->loop_down_timer
) != 0) {
2440 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2441 "restarting queues.\n",
2444 set_bit(RESTART_QUEUES_NEEDED
, &ha
->dpc_flags
);
2447 if (!(ha
->device_flags
& DFLG_NO_CABLE
)) {
2448 DEBUG(printk("scsi(%ld): Loop down - "
2451 qla_printk(KERN_WARNING
, ha
,
2452 "Loop down - aborting ISP.\n");
2454 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
2457 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
2459 atomic_read(&ha
->loop_down_timer
)));
2462 /* Schedule the DPC routine if needed */
2463 if ((test_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
) ||
2464 test_bit(LOOP_RESYNC_NEEDED
, &ha
->dpc_flags
) ||
2466 test_bit(LOGIN_RETRY_NEEDED
, &ha
->dpc_flags
) ||
2467 test_bit(RESET_MARKER_NEEDED
, &ha
->dpc_flags
) ||
2468 test_bit(RELOGIN_NEEDED
, &ha
->dpc_flags
)) &&
2469 ha
->dpc_wait
&& !ha
->dpc_active
) {
2474 qla2x00_restart_timer(ha
, WATCH_INTERVAL
);
2477 /* XXX(hch): crude hack to emulate a down_timeout() */
2479 qla2x00_down_timeout(struct semaphore
*sema
, unsigned long timeout
)
2481 const unsigned int step
= HZ
/10;
2484 if (!down_trylock(sema
))
2486 set_current_state(TASK_INTERRUPTIBLE
);
2487 if (schedule_timeout(step
))
2489 } while ((timeout
-= step
) > 0);
2494 static struct qla_board_info qla_board_tbl
[] = {
2496 .drv_name
= "qla2400",
2497 .isp_name
= "ISP2422",
2498 .fw_fname
= "ql2400_fw.bin",
2499 .sht
= &qla24xx_driver_template
,
2502 .drv_name
= "qla2400",
2503 .isp_name
= "ISP2432",
2504 .fw_fname
= "ql2400_fw.bin",
2505 .sht
= &qla24xx_driver_template
,
2509 static struct pci_device_id qla2xxx_pci_tbl
[] = {
2511 .vendor
= PCI_VENDOR_ID_QLOGIC
,
2512 .device
= PCI_DEVICE_ID_QLOGIC_ISP2422
,
2513 .subvendor
= PCI_ANY_ID
,
2514 .subdevice
= PCI_ANY_ID
,
2515 .driver_data
= (unsigned long)&qla_board_tbl
[0],
2518 .vendor
= PCI_VENDOR_ID_QLOGIC
,
2519 .device
= PCI_DEVICE_ID_QLOGIC_ISP2432
,
2520 .subvendor
= PCI_ANY_ID
,
2521 .subdevice
= PCI_ANY_ID
,
2522 .driver_data
= (unsigned long)&qla_board_tbl
[1],
2526 MODULE_DEVICE_TABLE(pci
, qla2xxx_pci_tbl
);
2528 static int __devinit
2529 qla2xxx_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
2531 return qla2x00_probe_one(pdev
,
2532 (struct qla_board_info
*)id
->driver_data
);
2535 static void __devexit
2536 qla2xxx_remove_one(struct pci_dev
*pdev
)
2538 qla2x00_remove_one(pdev
);
2541 static struct pci_driver qla2xxx_pci_driver
= {
2543 .id_table
= qla2xxx_pci_tbl
,
2544 .probe
= qla2xxx_probe_one
,
2545 .remove
= __devexit_p(qla2xxx_remove_one
),
2549 * qla2x00_module_init - Module initialization.
2552 qla2x00_module_init(void)
2556 /* Allocate cache for SRBs. */
2557 srb_cachep
= kmem_cache_create("qla2xxx_srbs", sizeof(srb_t
), 0,
2558 SLAB_HWCACHE_ALIGN
, NULL
, NULL
);
2559 if (srb_cachep
== NULL
) {
2561 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2565 /* Derive version string. */
2566 strcpy(qla2x00_version_str
, QLA2XXX_VERSION
);
2568 strcat(qla2x00_version_str
, "-debug");
2570 qla2xxx_transport_template
=
2571 fc_attach_transport(&qla2xxx_transport_functions
);
2572 if (!qla2xxx_transport_template
)
2575 printk(KERN_INFO
"QLogic Fibre Channel HBA Driver\n");
2576 ret
= pci_module_init(&qla2xxx_pci_driver
);
2578 kmem_cache_destroy(srb_cachep
);
2579 fc_release_transport(qla2xxx_transport_template
);
2585 * qla2x00_module_exit - Module cleanup.
2588 qla2x00_module_exit(void)
2590 pci_unregister_driver(&qla2xxx_pci_driver
);
2591 kmem_cache_destroy(srb_cachep
);
2592 fc_release_transport(qla2xxx_transport_template
);
2595 module_init(qla2x00_module_init
);
2596 module_exit(qla2x00_module_exit
);
2598 MODULE_AUTHOR("QLogic Corporation");
2599 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2600 MODULE_LICENSE("GPL");
2601 MODULE_VERSION(QLA2XXX_VERSION
);