Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 2 | * QLogic Fibre Channel HBA Driver |
Andrew Vasquez | 01e58d8 | 2008-04-03 13:13:13 -0700 | [diff] [blame] | 3 | * Copyright (c) 2003-2008 QLogic Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 5 | * See LICENSE.qla2xxx for copyright and licensing details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | #include "qla_def.h" |
| 8 | |
| 9 | #include <linux/moduleparam.h> |
| 10 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/delay.h> |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 12 | #include <linux/kthread.h> |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 13 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #include <scsi/scsi_tcq.h> |
| 16 | #include <scsi/scsicam.h> |
| 17 | #include <scsi/scsi_transport.h> |
| 18 | #include <scsi/scsi_transport_fc.h> |
| 19 | |
| 20 | /* |
| 21 | * Driver version |
| 22 | */ |
| 23 | char qla2x00_version_str[40]; |
| 24 | |
| 25 | /* |
| 26 | * SRB allocation cache |
| 27 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 28 | static struct kmem_cache *srb_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | int ql2xlogintimeout = 20; |
| 31 | module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR); |
| 32 | MODULE_PARM_DESC(ql2xlogintimeout, |
| 33 | "Login timeout value in seconds."); |
| 34 | |
Andrew Vasquez | a7b6184 | 2007-05-07 07:42:59 -0700 | [diff] [blame] | 35 | int qlport_down_retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR); |
| 37 | MODULE_PARM_DESC(qlport_down_retry, |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 38 | "Maximum number of command retries to a port that returns " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | "a PORT-DOWN status."); |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 " |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 45 | "a Fabric scan. This is needed for several broken switches. " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | "Default is 0 - no PLOGI. 1 - perfom PLOGI."); |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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."); |
| 52 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 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."); |
| 59 | |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 60 | int ql2xextended_error_logging; |
Andrew Vasquez | 27d9403 | 2007-03-12 10:41:30 -0700 | [diff] [blame] | 61 | module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 62 | MODULE_PARM_DESC(ql2xextended_error_logging, |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 63 | "Option to enable extended error logging, " |
| 64 | "Default is 0 - no logging. 1 - log errors."); |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | static void qla2x00_free_device(scsi_qla_host_t *); |
| 67 | |
Andrew Vasquez | 7e47e5c | 2008-04-24 15:21:26 -0700 | [diff] [blame] | 68 | int ql2xfdmienable=1; |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 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."); |
| 73 | |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 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."); |
| 79 | |
Michael Reed | a13d8ac | 2009-04-06 22:33:47 -0700 | [diff] [blame] | 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."); |
| 87 | |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 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."); |
| 94 | |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 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."); |
| 100 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 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."); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 107 | |
| 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."); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 114 | |
| 115 | int ql2xfwloadbin; |
| 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" |
| 120 | " interface.\n" |
| 121 | " 1 -- load firmware from flash.\n" |
| 122 | " 0 -- use default semantics.\n"); |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 125 | * SCSI host template entry points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | */ |
| 127 | static int qla2xxx_slave_configure(struct scsi_device * device); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 128 | static int qla2xxx_slave_alloc(struct scsi_device *); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 129 | static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time); |
| 130 | static void qla2xxx_scan_start(struct Scsi_Host *); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 131 | static void qla2xxx_slave_destroy(struct scsi_device *); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 132 | static int qla2xxx_queuecommand(struct scsi_cmnd *cmd, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 133 | void (*fn)(struct scsi_cmnd *)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | static int qla2xxx_eh_abort(struct scsi_cmnd *); |
| 135 | static int qla2xxx_eh_device_reset(struct scsi_cmnd *); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 136 | static int qla2xxx_eh_target_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | static int qla2xxx_eh_bus_reset(struct scsi_cmnd *); |
| 138 | static int qla2xxx_eh_host_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 140 | static int qla2x00_change_queue_depth(struct scsi_device *, int); |
| 141 | static int qla2x00_change_queue_type(struct scsi_device *, int); |
| 142 | |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 143 | struct scsi_host_template qla2xxx_driver_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | .module = THIS_MODULE, |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 145 | .name = QLA2XXX_DRIVER_NAME, |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 146 | .queuecommand = qla2xxx_queuecommand, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 147 | |
| 148 | .eh_abort_handler = qla2xxx_eh_abort, |
| 149 | .eh_device_reset_handler = qla2xxx_eh_device_reset, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 150 | .eh_target_reset_handler = qla2xxx_eh_target_reset, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 151 | .eh_bus_reset_handler = qla2xxx_eh_bus_reset, |
| 152 | .eh_host_reset_handler = qla2xxx_eh_host_reset, |
| 153 | |
| 154 | .slave_configure = qla2xxx_slave_configure, |
| 155 | |
| 156 | .slave_alloc = qla2xxx_slave_alloc, |
| 157 | .slave_destroy = qla2xxx_slave_destroy, |
Andrew Vasquez | ed67708 | 2007-03-12 10:41:27 -0700 | [diff] [blame] | 158 | .scan_finished = qla2xxx_scan_finished, |
| 159 | .scan_start = qla2xxx_scan_start, |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 160 | .change_queue_depth = qla2x00_change_queue_depth, |
| 161 | .change_queue_type = qla2x00_change_queue_type, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 162 | .this_id = -1, |
| 163 | .cmd_per_lun = 3, |
| 164 | .use_clustering = ENABLE_CLUSTERING, |
| 165 | .sg_tablesize = SG_ALL, |
| 166 | |
| 167 | .max_sectors = 0xFFFF, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 168 | .shost_attrs = qla2x00_host_attrs, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | static struct scsi_transport_template *qla2xxx_transport_template = NULL; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 172 | struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* TODO Convert to inlines |
| 175 | * |
| 176 | * Timer routines |
| 177 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 179 | __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 180 | qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 191 | qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 193 | mod_timer(&vha->timer, jiffies + interval * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 196 | static __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 197 | qla2x00_stop_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 199 | del_timer_sync(&vha->timer); |
| 200 | vha->timer_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | static int qla2x00_do_dpc(void *data); |
| 204 | |
| 205 | static void qla2x00_rst_aen(scsi_qla_host_t *); |
| 206 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 207 | static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, |
| 208 | struct req_que **, struct rsp_que **); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 209 | static void qla2x00_mem_free(struct qla_hw_data *); |
| 210 | static void qla2x00_sp_free_dma(srb_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | /* -------------------------------------------------------------------------- */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 213 | static int qla2x00_alloc_queues(struct qla_hw_data *ha) |
| 214 | { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 215 | ha->req_q_map = kzalloc(sizeof(struct req_que *) * ha->max_req_queues, |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 216 | GFP_KERNEL); |
| 217 | if (!ha->req_q_map) { |
| 218 | qla_printk(KERN_WARNING, ha, |
| 219 | "Unable to allocate memory for request queue ptrs\n"); |
| 220 | goto fail_req_map; |
| 221 | } |
| 222 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 223 | ha->rsp_q_map = kzalloc(sizeof(struct rsp_que *) * ha->max_rsp_queues, |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 224 | GFP_KERNEL); |
| 225 | if (!ha->rsp_q_map) { |
| 226 | qla_printk(KERN_WARNING, ha, |
| 227 | "Unable to allocate memory for response queue ptrs\n"); |
| 228 | goto fail_rsp_map; |
| 229 | } |
| 230 | set_bit(0, ha->rsp_qid_map); |
| 231 | set_bit(0, ha->req_qid_map); |
| 232 | return 1; |
| 233 | |
| 234 | fail_rsp_map: |
| 235 | kfree(ha->req_q_map); |
| 236 | ha->req_q_map = NULL; |
| 237 | fail_req_map: |
| 238 | return -ENOMEM; |
| 239 | } |
| 240 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 241 | static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 242 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 243 | if (req && req->ring) |
| 244 | dma_free_coherent(&ha->pdev->dev, |
| 245 | (req->length + 1) * sizeof(request_t), |
| 246 | req->ring, req->dma); |
| 247 | |
| 248 | kfree(req); |
| 249 | req = NULL; |
| 250 | } |
| 251 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 252 | static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) |
| 253 | { |
| 254 | if (rsp && rsp->ring) |
| 255 | dma_free_coherent(&ha->pdev->dev, |
| 256 | (rsp->length + 1) * sizeof(response_t), |
| 257 | rsp->ring, rsp->dma); |
| 258 | |
| 259 | kfree(rsp); |
| 260 | rsp = NULL; |
| 261 | } |
| 262 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 263 | static void qla2x00_free_queues(struct qla_hw_data *ha) |
| 264 | { |
| 265 | struct req_que *req; |
| 266 | struct rsp_que *rsp; |
| 267 | int cnt; |
| 268 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 269 | for (cnt = 0; cnt < ha->max_req_queues; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 270 | req = ha->req_q_map[cnt]; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 271 | qla2x00_free_req_que(ha, req); |
| 272 | } |
| 273 | kfree(ha->req_q_map); |
| 274 | ha->req_q_map = NULL; |
| 275 | |
| 276 | for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { |
| 277 | rsp = ha->rsp_q_map[cnt]; |
| 278 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 279 | } |
| 280 | kfree(ha->rsp_q_map); |
| 281 | ha->rsp_q_map = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 284 | static int qla25xx_setup_mode(struct scsi_qla_host *vha) |
| 285 | { |
| 286 | uint16_t options = 0; |
| 287 | int ques, req, ret; |
| 288 | struct qla_hw_data *ha = vha->hw; |
| 289 | |
| 290 | if (ql2xmultique_tag) { |
| 291 | /* CPU affinity mode */ |
| 292 | ha->wq = create_workqueue("qla2xxx_wq"); |
| 293 | /* create a request queue for IO */ |
| 294 | options |= BIT_7; |
| 295 | req = qla25xx_create_req_que(ha, options, 0, 0, -1, |
| 296 | QLA_DEFAULT_QUE_QOS); |
| 297 | if (!req) { |
| 298 | qla_printk(KERN_WARNING, ha, |
| 299 | "Can't create request queue\n"); |
| 300 | goto fail; |
| 301 | } |
| 302 | vha->req = ha->req_q_map[req]; |
| 303 | options |= BIT_1; |
| 304 | for (ques = 1; ques < ha->max_rsp_queues; ques++) { |
| 305 | ret = qla25xx_create_rsp_que(ha, options, 0, 0, req); |
| 306 | if (!ret) { |
| 307 | qla_printk(KERN_WARNING, ha, |
| 308 | "Response Queue create failed\n"); |
| 309 | goto fail2; |
| 310 | } |
| 311 | } |
| 312 | DEBUG2(qla_printk(KERN_INFO, ha, |
| 313 | "CPU affinity mode enabled, no. of response" |
| 314 | " queues:%d, no. of request queues:%d\n", |
| 315 | ha->max_rsp_queues, ha->max_req_queues)); |
| 316 | } |
| 317 | return 0; |
| 318 | fail2: |
| 319 | qla25xx_delete_queues(vha); |
| 320 | fail: |
| 321 | ha->mqenable = 0; |
| 322 | return 1; |
| 323 | } |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 326 | qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 328 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | static char *pci_bus_modes[] = { |
| 330 | "33", "66", "100", "133", |
| 331 | }; |
| 332 | uint16_t pci_bus; |
| 333 | |
| 334 | strcpy(str, "PCI"); |
| 335 | pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; |
| 336 | if (pci_bus) { |
| 337 | strcat(str, "-X ("); |
| 338 | strcat(str, pci_bus_modes[pci_bus]); |
| 339 | } else { |
| 340 | pci_bus = (ha->pci_attr & BIT_8) >> 8; |
| 341 | strcat(str, " ("); |
| 342 | strcat(str, pci_bus_modes[pci_bus]); |
| 343 | } |
| 344 | strcat(str, " MHz)"); |
| 345 | |
| 346 | return (str); |
| 347 | } |
| 348 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 349 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 350 | qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 351 | { |
| 352 | static char *pci_bus_modes[] = { "33", "66", "100", "133", }; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 353 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 354 | uint32_t pci_bus; |
| 355 | int pcie_reg; |
| 356 | |
| 357 | pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP); |
| 358 | if (pcie_reg) { |
| 359 | char lwstr[6]; |
| 360 | uint16_t pcie_lstat, lspeed, lwidth; |
| 361 | |
| 362 | pcie_reg += 0x12; |
| 363 | pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat); |
| 364 | lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3); |
| 365 | lwidth = (pcie_lstat & |
| 366 | (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4; |
| 367 | |
| 368 | strcpy(str, "PCIe ("); |
| 369 | if (lspeed == 1) |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 370 | strcat(str, "2.5GT/s "); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 371 | else if (lspeed == 2) |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 372 | strcat(str, "5.0GT/s "); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 373 | else |
| 374 | strcat(str, "<unknown> "); |
| 375 | snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); |
| 376 | strcat(str, lwstr); |
| 377 | |
| 378 | return str; |
| 379 | } |
| 380 | |
| 381 | strcpy(str, "PCI"); |
| 382 | pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; |
| 383 | if (pci_bus == 0 || pci_bus == 8) { |
| 384 | strcat(str, " ("); |
| 385 | strcat(str, pci_bus_modes[pci_bus >> 3]); |
| 386 | } else { |
| 387 | strcat(str, "-X "); |
| 388 | if (pci_bus & BIT_2) |
| 389 | strcat(str, "Mode 2"); |
| 390 | else |
| 391 | strcat(str, "Mode 1"); |
| 392 | strcat(str, " ("); |
| 393 | strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); |
| 394 | } |
| 395 | strcat(str, " MHz)"); |
| 396 | |
| 397 | return str; |
| 398 | } |
| 399 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 400 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 401 | qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
| 403 | char un_str[10]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 404 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | sprintf(str, "%d.%02d.%02d ", ha->fw_major_version, |
| 407 | ha->fw_minor_version, |
| 408 | ha->fw_subminor_version); |
| 409 | |
| 410 | if (ha->fw_attributes & BIT_9) { |
| 411 | strcat(str, "FLX"); |
| 412 | return (str); |
| 413 | } |
| 414 | |
| 415 | switch (ha->fw_attributes & 0xFF) { |
| 416 | case 0x7: |
| 417 | strcat(str, "EF"); |
| 418 | break; |
| 419 | case 0x17: |
| 420 | strcat(str, "TP"); |
| 421 | break; |
| 422 | case 0x37: |
| 423 | strcat(str, "IP"); |
| 424 | break; |
| 425 | case 0x77: |
| 426 | strcat(str, "VI"); |
| 427 | break; |
| 428 | default: |
| 429 | sprintf(un_str, "(%x)", ha->fw_attributes); |
| 430 | strcat(str, un_str); |
| 431 | break; |
| 432 | } |
| 433 | if (ha->fw_attributes & 0x100) |
| 434 | strcat(str, "X"); |
| 435 | |
| 436 | return (str); |
| 437 | } |
| 438 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 439 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 440 | qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 441 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 442 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | f0883ac | 2005-07-08 17:58:43 -0700 | [diff] [blame] | 443 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 444 | sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version, |
| 445 | ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 446 | return str; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | static inline srb_t * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 450 | qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 451 | struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) |
| 452 | { |
| 453 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 454 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 455 | |
| 456 | sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC); |
| 457 | if (!sp) |
| 458 | return sp; |
| 459 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 460 | sp->fcport = fcport; |
| 461 | sp->cmd = cmd; |
| 462 | sp->flags = 0; |
| 463 | CMD_SP(cmd) = (void *)sp; |
| 464 | cmd->scsi_done = done; |
| 465 | |
| 466 | return sp; |
| 467 | } |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | static int |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 470 | qla2xxx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 471 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 472 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 473 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 474 | struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 475 | struct qla_hw_data *ha = vha->hw; |
| 476 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 477 | srb_t *sp; |
| 478 | int rval; |
| 479 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 480 | if (unlikely(pci_channel_offline(ha->pdev))) { |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 481 | if (ha->pdev->error_state == pci_channel_io_frozen) |
| 482 | cmd->result = DID_REQUEUE << 16; |
| 483 | else |
| 484 | cmd->result = DID_NO_CONNECT << 16; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 485 | goto qc24_fail_command; |
| 486 | } |
| 487 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 488 | rval = fc_remote_port_chkready(rport); |
| 489 | if (rval) { |
| 490 | cmd->result = rval; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 491 | goto qc24_fail_command; |
| 492 | } |
| 493 | |
andrew.vasquez@qlogic.com | 387f96b | 2006-02-07 08:45:45 -0800 | [diff] [blame] | 494 | /* Close window on fcport/rport state-transitioning. */ |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 495 | if (fcport->drport) |
| 496 | goto qc24_target_busy; |
andrew.vasquez@qlogic.com | 387f96b | 2006-02-07 08:45:45 -0800 | [diff] [blame] | 497 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 498 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
| 499 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 500 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 501 | cmd->result = DID_NO_CONNECT << 16; |
| 502 | goto qc24_fail_command; |
| 503 | } |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 504 | goto qc24_target_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 505 | } |
| 506 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 507 | spin_unlock_irq(vha->host->host_lock); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 508 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 509 | sp = qla2x00_get_new_sp(base_vha, fcport, cmd, done); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 510 | if (!sp) |
| 511 | goto qc24_host_busy_lock; |
| 512 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 513 | rval = ha->isp_ops->start_scsi(sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 514 | if (rval != QLA_SUCCESS) |
| 515 | goto qc24_host_busy_free_sp; |
| 516 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 517 | spin_lock_irq(vha->host->host_lock); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 518 | |
| 519 | return 0; |
| 520 | |
| 521 | qc24_host_busy_free_sp: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 522 | qla2x00_sp_free_dma(sp); |
| 523 | mempool_free(sp, ha->srb_mempool); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 524 | |
| 525 | qc24_host_busy_lock: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 526 | spin_lock_irq(vha->host->host_lock); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 527 | return SCSI_MLQUEUE_HOST_BUSY; |
| 528 | |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 529 | qc24_target_busy: |
| 530 | return SCSI_MLQUEUE_TARGET_BUSY; |
| 531 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 532 | qc24_fail_command: |
| 533 | done(cmd); |
| 534 | |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* |
| 540 | * qla2x00_eh_wait_on_command |
| 541 | * Waits for the command to be returned by the Firmware for some |
| 542 | * max time. |
| 543 | * |
| 544 | * Input: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | * cmd = Scsi Command to wait on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | * |
| 547 | * Return: |
| 548 | * Not Found : 0 |
| 549 | * Found : 1 |
| 550 | */ |
| 551 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 552 | qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 554 | #define ABORT_POLLING_PERIOD 1000 |
| 555 | #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 556 | unsigned long wait_iter = ABORT_WAIT_ITER; |
| 557 | int ret = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 559 | while (CMD_SP(cmd)) { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 560 | msleep(ABORT_POLLING_PERIOD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 562 | if (--wait_iter) |
| 563 | break; |
| 564 | } |
| 565 | if (CMD_SP(cmd)) |
| 566 | ret = QLA_FUNCTION_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 568 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | /* |
| 572 | * qla2x00_wait_for_hba_online |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 573 | * Wait till the HBA is online after going through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 575 | * finally HBA is disabled ie marked offline |
| 576 | * |
| 577 | * Input: |
| 578 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 579 | * |
| 580 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | * Does context switching-Release SPIN_LOCK |
| 582 | * (if any) before calling this routine. |
| 583 | * |
| 584 | * Return: |
| 585 | * Success (Adapter is online) : 0 |
| 586 | * Failed (Adapter is offline/disabled) : 1 |
| 587 | */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 588 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 589 | qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 591 | int return_status; |
| 592 | unsigned long wait_online; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 593 | struct qla_hw_data *ha = vha->hw; |
| 594 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 596 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 597 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 598 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 599 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 600 | ha->dpc_active) && time_before(jiffies, wait_online)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | msleep(1000); |
| 603 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 604 | if (base_vha->flags.online) |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 605 | return_status = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | else |
| 607 | return_status = QLA_FUNCTION_FAILED; |
| 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | return (return_status); |
| 610 | } |
| 611 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 612 | int |
| 613 | qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) |
| 614 | { |
| 615 | int return_status; |
| 616 | unsigned long wait_reset; |
| 617 | struct qla_hw_data *ha = vha->hw; |
| 618 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 619 | |
| 620 | wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 621 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 622 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 623 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 624 | ha->dpc_active) && time_before(jiffies, wait_reset)) { |
| 625 | |
| 626 | msleep(1000); |
| 627 | |
| 628 | if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && |
| 629 | ha->flags.chip_reset_done) |
| 630 | break; |
| 631 | } |
| 632 | if (ha->flags.chip_reset_done) |
| 633 | return_status = QLA_SUCCESS; |
| 634 | else |
| 635 | return_status = QLA_FUNCTION_FAILED; |
| 636 | |
| 637 | return return_status; |
| 638 | } |
| 639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | /* |
| 641 | * qla2x00_wait_for_loop_ready |
| 642 | * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 643 | * to be in LOOP_READY state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | * Input: |
| 645 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 646 | * |
| 647 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | * Does context switching-Release SPIN_LOCK |
| 649 | * (if any) before calling this routine. |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 650 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | * |
| 652 | * Return: |
| 653 | * Success (LOOP_READY) : 0 |
| 654 | * Failed (LOOP_NOT_READY) : 1 |
| 655 | */ |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 656 | static inline int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 657 | qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | { |
| 659 | int return_status = QLA_SUCCESS; |
| 660 | unsigned long loop_timeout ; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 661 | struct qla_hw_data *ha = vha->hw; |
| 662 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
| 664 | /* wait for 5 min at the max for loop to be ready */ |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 665 | loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 667 | while ((!atomic_read(&base_vha->loop_down_timer) && |
| 668 | atomic_read(&base_vha->loop_state) == LOOP_DOWN) || |
| 669 | atomic_read(&base_vha->loop_state) != LOOP_READY) { |
| 670 | if (atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Ravi Anand | 5768008 | 2006-05-17 15:08:44 -0700 | [diff] [blame] | 671 | return_status = QLA_FUNCTION_FAILED; |
| 672 | break; |
| 673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | msleep(1000); |
| 675 | if (time_after_eq(jiffies, loop_timeout)) { |
| 676 | return_status = QLA_FUNCTION_FAILED; |
| 677 | break; |
| 678 | } |
| 679 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 680 | return (return_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 683 | void |
| 684 | qla2x00_abort_fcport_cmds(fc_port_t *fcport) |
| 685 | { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 686 | int cnt; |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 687 | unsigned long flags; |
| 688 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 689 | scsi_qla_host_t *vha = fcport->vha; |
| 690 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 691 | struct req_que *req; |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 692 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 693 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 694 | req = vha->req; |
| 695 | for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) { |
| 696 | sp = req->outstanding_cmds[cnt]; |
| 697 | if (!sp) |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 698 | continue; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 699 | if (sp->fcport != fcport) |
| 700 | continue; |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 701 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 702 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 703 | if (ha->isp_ops->abort_command(sp)) { |
| 704 | DEBUG2(qla_printk(KERN_WARNING, ha, |
| 705 | "Abort failed -- %lx\n", |
| 706 | sp->cmd->serial_number)); |
| 707 | } else { |
| 708 | if (qla2x00_eh_wait_on_command(sp->cmd) != |
| 709 | QLA_SUCCESS) |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 710 | DEBUG2(qla_printk(KERN_WARNING, ha, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 711 | "Abort failed while waiting -- %lx\n", |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 712 | sp->cmd->serial_number)); |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 713 | } |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 714 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 715 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 716 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 719 | static void |
| 720 | qla2x00_block_error_handler(struct scsi_cmnd *cmnd) |
| 721 | { |
| 722 | struct Scsi_Host *shost = cmnd->device->host; |
| 723 | struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device)); |
| 724 | unsigned long flags; |
| 725 | |
| 726 | spin_lock_irqsave(shost->host_lock, flags); |
| 727 | while (rport->port_state == FC_PORTSTATE_BLOCKED) { |
| 728 | spin_unlock_irqrestore(shost->host_lock, flags); |
| 729 | msleep(1000); |
| 730 | spin_lock_irqsave(shost->host_lock, flags); |
| 731 | } |
| 732 | spin_unlock_irqrestore(shost->host_lock, flags); |
| 733 | return; |
| 734 | } |
| 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | /************************************************************************** |
| 737 | * qla2xxx_eh_abort |
| 738 | * |
| 739 | * Description: |
| 740 | * The abort function will abort the specified command. |
| 741 | * |
| 742 | * Input: |
| 743 | * cmd = Linux SCSI command packet to be aborted. |
| 744 | * |
| 745 | * Returns: |
| 746 | * Either SUCCESS or FAILED. |
| 747 | * |
| 748 | * Note: |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 749 | * Only return FAILED if command not returned by firmware. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 751 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | qla2xxx_eh_abort(struct scsi_cmnd *cmd) |
| 753 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 754 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 755 | srb_t *sp; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 756 | int ret, i; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 757 | unsigned int id, lun; |
| 758 | unsigned long serial; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 759 | unsigned long flags; |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 760 | int wait = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 761 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 762 | struct req_que *req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 763 | srb_t *spt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 765 | qla2x00_block_error_handler(cmd); |
| 766 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 767 | if (!CMD_SP(cmd)) |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 768 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 770 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 772 | id = cmd->device->id; |
| 773 | lun = cmd->device->lun; |
| 774 | serial = cmd->serial_number; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 775 | spt = (srb_t *) CMD_SP(cmd); |
| 776 | if (!spt) |
| 777 | return SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 778 | |
| 779 | /* Check active list for command command. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 780 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 781 | for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) { |
| 782 | sp = req->outstanding_cmds[i]; |
| 783 | |
| 784 | if (sp == NULL) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 785 | continue; |
| 786 | |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 787 | if (sp->cmd != cmd) |
| 788 | continue; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 789 | |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 790 | DEBUG2(printk("%s(%ld): aborting sp %p from RISC." |
| 791 | " pid=%ld.\n", __func__, vha->host_no, sp, serial)); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 792 | |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 793 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 794 | if (ha->isp_ops->abort_command(sp)) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 795 | DEBUG2(printk("%s(%ld): abort_command " |
| 796 | "mbx failed.\n", __func__, vha->host_no)); |
Andrew Vasquez | 2ac4b64 | 2009-01-22 09:45:35 -0800 | [diff] [blame] | 797 | ret = FAILED; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 798 | } else { |
| 799 | DEBUG3(printk("%s(%ld): abort_command " |
| 800 | "mbx success.\n", __func__, vha->host_no)); |
| 801 | wait = 1; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 802 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 803 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 804 | break; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 805 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 806 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 807 | |
| 808 | /* Wait for the command to be returned. */ |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 809 | if (wait) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 810 | if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) { |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 811 | qla_printk(KERN_ERR, ha, |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 812 | "scsi(%ld:%d:%d): Abort handler timed out -- %lx " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 813 | "%x.\n", vha->host_no, id, lun, serial, ret); |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 814 | ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 815 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 818 | qla_printk(KERN_INFO, ha, |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 819 | "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 820 | vha->host_no, id, lun, wait, serial, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 822 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 825 | enum nexus_wait_type { |
| 826 | WAIT_HOST = 0, |
| 827 | WAIT_TARGET, |
| 828 | WAIT_LUN, |
| 829 | }; |
| 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 832 | qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t, |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 833 | unsigned int l, srb_t *sp, enum nexus_wait_type type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 835 | int cnt, match, status; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 836 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 837 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 838 | struct req_que *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 840 | status = QLA_SUCCESS; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 841 | if (!sp) |
| 842 | return status; |
| 843 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 844 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 845 | req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 846 | for (cnt = 1; status == QLA_SUCCESS && |
| 847 | cnt < MAX_OUTSTANDING_COMMANDS; cnt++) { |
| 848 | sp = req->outstanding_cmds[cnt]; |
| 849 | if (!sp) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 850 | continue; |
Andrew Vasquez | 19851f1 | 2008-08-13 21:37:00 -0700 | [diff] [blame] | 851 | |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 852 | if (vha->vp_idx != sp->fcport->vha->vp_idx) |
| 853 | continue; |
| 854 | match = 0; |
| 855 | switch (type) { |
| 856 | case WAIT_HOST: |
| 857 | match = 1; |
| 858 | break; |
| 859 | case WAIT_TARGET: |
| 860 | match = sp->cmd->device->id == t; |
| 861 | break; |
| 862 | case WAIT_LUN: |
| 863 | match = (sp->cmd->device->id == t && |
| 864 | sp->cmd->device->lun == l); |
| 865 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 867 | if (!match) |
| 868 | continue; |
| 869 | |
| 870 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 871 | status = qla2x00_eh_wait_on_command(sp->cmd); |
| 872 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 874 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 875 | |
| 876 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | } |
| 878 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 879 | static char *reset_errors[] = { |
| 880 | "HBA not online", |
| 881 | "HBA not ready", |
| 882 | "Task management failed", |
| 883 | "Waiting for command completions", |
| 884 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 886 | static int |
| 887 | __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 888 | struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int, int)) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 889 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 890 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 891 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
| 892 | int err; |
| 893 | |
| 894 | qla2x00_block_error_handler(cmd); |
| 895 | |
| 896 | if (!fcport) |
| 897 | return FAILED; |
| 898 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 899 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET ISSUED.\n", |
| 900 | vha->host_no, cmd->device->id, cmd->device->lun, name); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 901 | |
| 902 | err = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 903 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 904 | goto eh_reset_failed; |
| 905 | err = 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 906 | if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 907 | goto eh_reset_failed; |
| 908 | err = 2; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 909 | if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1) |
| 910 | != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 911 | goto eh_reset_failed; |
| 912 | err = 3; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 913 | if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 914 | cmd->device->lun, (srb_t *) CMD_SP(cmd), type) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 915 | goto eh_reset_failed; |
| 916 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 917 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n", |
| 918 | vha->host_no, cmd->device->id, cmd->device->lun, name); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 919 | |
| 920 | return SUCCESS; |
| 921 | |
| 922 | eh_reset_failed: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 923 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n" |
| 924 | , vha->host_no, cmd->device->id, cmd->device->lun, name, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 925 | reset_errors[err]); |
| 926 | return FAILED; |
| 927 | } |
| 928 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 929 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) |
| 931 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 932 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 933 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 935 | return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, |
| 936 | ha->isp_ops->lun_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | } |
| 938 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | static int |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 940 | qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 942 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 943 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 945 | return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, |
| 946 | ha->isp_ops->target_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | } |
| 948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | /************************************************************************** |
| 950 | * qla2xxx_eh_bus_reset |
| 951 | * |
| 952 | * Description: |
| 953 | * The bus reset function will reset the bus and abort any executing |
| 954 | * commands. |
| 955 | * |
| 956 | * Input: |
| 957 | * cmd = Linux SCSI command packet of the command that cause the |
| 958 | * bus reset. |
| 959 | * |
| 960 | * Returns: |
| 961 | * SUCCESS/FAILURE (defined as macro in scsi.h). |
| 962 | * |
| 963 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 964 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) |
| 966 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 967 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 968 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 969 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 970 | unsigned int id, lun; |
| 971 | unsigned long serial; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 972 | srb_t *sp = (srb_t *) CMD_SP(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 974 | qla2x00_block_error_handler(cmd); |
| 975 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 976 | id = cmd->device->id; |
| 977 | lun = cmd->device->lun; |
| 978 | serial = cmd->serial_number; |
| 979 | |
Vladislav Bolkhovitin | b0328be | 2006-08-01 13:48:15 -0700 | [diff] [blame] | 980 | if (!fcport) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 981 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 983 | qla_printk(KERN_INFO, vha->hw, |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 984 | "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 986 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | DEBUG2(printk("%s failed:board disabled\n",__func__)); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 988 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 991 | if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) { |
| 992 | if (qla2x00_loop_reset(vha) == QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 993 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 995 | if (ret == FAILED) |
| 996 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 998 | /* Flush outstanding commands. */ |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 999 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, sp, WAIT_HOST) != |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1000 | QLA_SUCCESS) |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1001 | ret = FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1003 | eh_bus_reset_done: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1004 | qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__, |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1005 | (ret == FAILED) ? "failed" : "succeded"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1007 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | /************************************************************************** |
| 1011 | * qla2xxx_eh_host_reset |
| 1012 | * |
| 1013 | * Description: |
| 1014 | * The reset function will reset the Adapter. |
| 1015 | * |
| 1016 | * Input: |
| 1017 | * cmd = Linux SCSI command packet of the command that cause the |
| 1018 | * adapter reset. |
| 1019 | * |
| 1020 | * Returns: |
| 1021 | * Either SUCCESS or FAILED. |
| 1022 | * |
| 1023 | * Note: |
| 1024 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1025 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) |
| 1027 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1028 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1029 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1030 | struct qla_hw_data *ha = vha->hw; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1031 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1032 | unsigned int id, lun; |
| 1033 | unsigned long serial; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1034 | srb_t *sp = (srb_t *) CMD_SP(cmd); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1035 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 1037 | qla2x00_block_error_handler(cmd); |
| 1038 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1039 | id = cmd->device->id; |
| 1040 | lun = cmd->device->lun; |
| 1041 | serial = cmd->serial_number; |
| 1042 | |
Vladislav Bolkhovitin | b0328be | 2006-08-01 13:48:15 -0700 | [diff] [blame] | 1043 | if (!fcport) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1044 | return ret; |
| 1045 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | qla_printk(KERN_INFO, ha, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1047 | "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1049 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1050 | goto eh_host_reset_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | /* |
| 1053 | * Fixme-may be dpc thread is active and processing |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1054 | * loop_resync,so wait a while for it to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | * be completed and then issue big hammer.Otherwise |
| 1056 | * it may cause I/O failure as big hammer marks the |
| 1057 | * devices as lost kicking of the port_down_timer |
| 1058 | * while dpc is stuck for the mailbox to complete. |
| 1059 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1060 | qla2x00_wait_for_loop_ready(vha); |
| 1061 | if (vha != base_vha) { |
| 1062 | if (qla2x00_vp_abort_isp(vha)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1063 | goto eh_host_reset_lock; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1064 | } else { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1065 | if (ha->wq) |
| 1066 | flush_workqueue(ha->wq); |
| 1067 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1068 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1069 | if (qla2x00_abort_isp(base_vha)) { |
| 1070 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1071 | /* failed. schedule dpc to try */ |
| 1072 | set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); |
| 1073 | |
| 1074 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) |
| 1075 | goto eh_host_reset_lock; |
| 1076 | } |
| 1077 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1078 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1080 | /* Waiting for command to be returned to OS.*/ |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1081 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, sp, WAIT_HOST) == |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1082 | QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1083 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1085 | eh_host_reset_lock: |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1086 | qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__, |
| 1087 | (ret == FAILED) ? "failed" : "succeded"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1089 | return ret; |
| 1090 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | |
| 1092 | /* |
| 1093 | * qla2x00_loop_reset |
| 1094 | * Issue loop reset. |
| 1095 | * |
| 1096 | * Input: |
| 1097 | * ha = adapter block pointer. |
| 1098 | * |
| 1099 | * Returns: |
| 1100 | * 0 = success |
| 1101 | */ |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 1102 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1103 | qla2x00_loop_reset(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | { |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1105 | int ret; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1106 | struct fc_port *fcport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1107 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | |
Seokmann Ju | d53b48d | 2009-04-06 22:33:37 -0700 | [diff] [blame] | 1109 | if (ha->flags.enable_lip_full_login && !vha->vp_idx && |
| 1110 | !IS_QLA81XX(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1111 | ret = qla2x00_full_login_lip(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1112 | if (ret != QLA_SUCCESS) { |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1113 | DEBUG2_3(printk("%s(%ld): failed: " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1114 | "full_login_lip=%d.\n", __func__, vha->host_no, |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1115 | ret)); |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1116 | } |
| 1117 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1118 | atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); |
| 1119 | qla2x00_mark_all_devices_lost(vha, 0); |
| 1120 | qla2x00_wait_for_loop_ready(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | } |
| 1122 | |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1123 | if (ha->flags.enable_lip_reset && !vha->vp_idx) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1124 | ret = qla2x00_lip_reset(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1125 | if (ret != QLA_SUCCESS) { |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1126 | DEBUG2_3(printk("%s(%ld): failed: " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1127 | "lip_reset=%d.\n", __func__, vha->host_no, ret)); |
| 1128 | } else |
| 1129 | qla2x00_wait_for_loop_ready(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1130 | } |
| 1131 | |
| 1132 | if (ha->flags.enable_target_reset) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1133 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1134 | if (fcport->port_type != FCT_TARGET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | continue; |
| 1136 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1137 | ret = ha->isp_ops->target_reset(fcport, 0, 0); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1138 | if (ret != QLA_SUCCESS) { |
| 1139 | DEBUG2_3(printk("%s(%ld): bus_reset failed: " |
| 1140 | "target_reset=%d d_id=%x.\n", __func__, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1141 | vha->host_no, ret, fcport->d_id.b24)); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1142 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | } |
| 1144 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | /* Issue marker command only when we are going to start the I/O */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1146 | vha->marker_needed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1148 | return QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | } |
| 1150 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1151 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1152 | qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1153 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1154 | int que, cnt; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1155 | unsigned long flags; |
| 1156 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1157 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1158 | struct req_que *req; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1159 | |
| 1160 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1161 | for (que = 0; que < ha->max_req_queues; que++) { |
Anirban Chakraborty | 29bdccb | 2009-01-08 15:41:08 -0800 | [diff] [blame] | 1162 | req = ha->req_q_map[que]; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1163 | if (!req) |
| 1164 | continue; |
| 1165 | for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) { |
| 1166 | sp = req->outstanding_cmds[cnt]; |
Andrew Vasquez | e612d46 | 2009-03-24 09:08:04 -0700 | [diff] [blame] | 1167 | if (sp) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1168 | req->outstanding_cmds[cnt] = NULL; |
| 1169 | sp->cmd->result = res; |
| 1170 | qla2x00_sp_compl(ha, sp); |
| 1171 | } |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1172 | } |
| 1173 | } |
| 1174 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1175 | } |
| 1176 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1177 | static int |
| 1178 | qla2xxx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1180 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1182 | if (!rport || fc_remote_port_chkready(rport)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1183 | return -ENXIO; |
| 1184 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1185 | sdev->hostdata = *(fc_port_t **)rport->dd_data; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1186 | |
| 1187 | return 0; |
| 1188 | } |
| 1189 | |
| 1190 | static int |
| 1191 | qla2xxx_slave_configure(struct scsi_device *sdev) |
| 1192 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1193 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
| 1194 | struct qla_hw_data *ha = vha->hw; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1195 | struct fc_rport *rport = starget_to_rport(sdev->sdev_target); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1196 | struct req_que *req = vha->req; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1197 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1198 | if (sdev->tagged_supported) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1199 | scsi_activate_tcq(sdev, req->max_q_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | else |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1201 | scsi_deactivate_tcq(sdev, req->max_q_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
Andrew Vasquez | 85821c9 | 2008-07-10 16:55:48 -0700 | [diff] [blame] | 1203 | rport->dev_loss_tmo = ha->port_down_retry_count; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1204 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1205 | return 0; |
| 1206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1208 | static void |
| 1209 | qla2xxx_slave_destroy(struct scsi_device *sdev) |
| 1210 | { |
| 1211 | sdev->hostdata = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | } |
| 1213 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1214 | static int |
| 1215 | qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth) |
| 1216 | { |
| 1217 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth); |
| 1218 | return sdev->queue_depth; |
| 1219 | } |
| 1220 | |
| 1221 | static int |
| 1222 | qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type) |
| 1223 | { |
| 1224 | if (sdev->tagged_supported) { |
| 1225 | scsi_set_tag_type(sdev, tag_type); |
| 1226 | if (tag_type) |
| 1227 | scsi_activate_tcq(sdev, sdev->queue_depth); |
| 1228 | else |
| 1229 | scsi_deactivate_tcq(sdev, sdev->queue_depth); |
| 1230 | } else |
| 1231 | tag_type = 0; |
| 1232 | |
| 1233 | return tag_type; |
| 1234 | } |
| 1235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | /** |
| 1237 | * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. |
| 1238 | * @ha: HA context |
| 1239 | * |
| 1240 | * At exit, the @ha's flags.enable_64bit_addressing set to indicated |
| 1241 | * supported addressing method. |
| 1242 | */ |
| 1243 | static void |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1244 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1246 | /* Assume a 32bit DMA mask. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | ha->flags.enable_64bit_addressing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1249 | if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1250 | /* Any upper-dword bits set? */ |
| 1251 | if (MSD(dma_get_required_mask(&ha->pdev->dev)) && |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1252 | !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1253 | /* Ok, a 64bit DMA mask is applicable. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | ha->flags.enable_64bit_addressing = 1; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1255 | ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; |
| 1256 | ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1257 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | } |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1260 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1261 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
| 1262 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | } |
| 1264 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1265 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1266 | qla2x00_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1267 | { |
| 1268 | unsigned long flags = 0; |
| 1269 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1270 | |
| 1271 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1272 | ha->interrupts_on = 1; |
| 1273 | /* enable risc and host interrupts */ |
| 1274 | WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); |
| 1275 | RD_REG_WORD(®->ictrl); |
| 1276 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1277 | |
| 1278 | } |
| 1279 | |
| 1280 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1281 | qla2x00_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1282 | { |
| 1283 | unsigned long flags = 0; |
| 1284 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1285 | |
| 1286 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1287 | ha->interrupts_on = 0; |
| 1288 | /* disable risc and host interrupts */ |
| 1289 | WRT_REG_WORD(®->ictrl, 0); |
| 1290 | RD_REG_WORD(®->ictrl); |
| 1291 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1292 | } |
| 1293 | |
| 1294 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1295 | qla24xx_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1296 | { |
| 1297 | unsigned long flags = 0; |
| 1298 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1299 | |
| 1300 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1301 | ha->interrupts_on = 1; |
| 1302 | WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); |
| 1303 | RD_REG_DWORD(®->ictrl); |
| 1304 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1305 | } |
| 1306 | |
| 1307 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1308 | qla24xx_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1309 | { |
| 1310 | unsigned long flags = 0; |
| 1311 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1312 | |
Andrew Vasquez | 124f85e | 2009-01-05 11:18:06 -0800 | [diff] [blame] | 1313 | if (IS_NOPOLLING_TYPE(ha)) |
| 1314 | return; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1315 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1316 | ha->interrupts_on = 0; |
| 1317 | WRT_REG_DWORD(®->ictrl, 0); |
| 1318 | RD_REG_DWORD(®->ictrl); |
| 1319 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1320 | } |
| 1321 | |
| 1322 | static struct isp_operations qla2100_isp_ops = { |
| 1323 | .pci_config = qla2100_pci_config, |
| 1324 | .reset_chip = qla2x00_reset_chip, |
| 1325 | .chip_diag = qla2x00_chip_diag, |
| 1326 | .config_rings = qla2x00_config_rings, |
| 1327 | .reset_adapter = qla2x00_reset_adapter, |
| 1328 | .nvram_config = qla2x00_nvram_config, |
| 1329 | .update_fw_options = qla2x00_update_fw_options, |
| 1330 | .load_risc = qla2x00_load_risc, |
| 1331 | .pci_info_str = qla2x00_pci_info_str, |
| 1332 | .fw_version_str = qla2x00_fw_version_str, |
| 1333 | .intr_handler = qla2100_intr_handler, |
| 1334 | .enable_intrs = qla2x00_enable_intrs, |
| 1335 | .disable_intrs = qla2x00_disable_intrs, |
| 1336 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1337 | .target_reset = qla2x00_abort_target, |
| 1338 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1339 | .fabric_login = qla2x00_login_fabric, |
| 1340 | .fabric_logout = qla2x00_fabric_logout, |
| 1341 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1342 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1343 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1344 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1345 | .read_nvram = qla2x00_read_nvram_data, |
| 1346 | .write_nvram = qla2x00_write_nvram_data, |
| 1347 | .fw_dump = qla2100_fw_dump, |
| 1348 | .beacon_on = NULL, |
| 1349 | .beacon_off = NULL, |
| 1350 | .beacon_blink = NULL, |
| 1351 | .read_optrom = qla2x00_read_optrom_data, |
| 1352 | .write_optrom = qla2x00_write_optrom_data, |
| 1353 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1354 | .start_scsi = qla2x00_start_scsi, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1355 | }; |
| 1356 | |
| 1357 | static struct isp_operations qla2300_isp_ops = { |
| 1358 | .pci_config = qla2300_pci_config, |
| 1359 | .reset_chip = qla2x00_reset_chip, |
| 1360 | .chip_diag = qla2x00_chip_diag, |
| 1361 | .config_rings = qla2x00_config_rings, |
| 1362 | .reset_adapter = qla2x00_reset_adapter, |
| 1363 | .nvram_config = qla2x00_nvram_config, |
| 1364 | .update_fw_options = qla2x00_update_fw_options, |
| 1365 | .load_risc = qla2x00_load_risc, |
| 1366 | .pci_info_str = qla2x00_pci_info_str, |
| 1367 | .fw_version_str = qla2x00_fw_version_str, |
| 1368 | .intr_handler = qla2300_intr_handler, |
| 1369 | .enable_intrs = qla2x00_enable_intrs, |
| 1370 | .disable_intrs = qla2x00_disable_intrs, |
| 1371 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1372 | .target_reset = qla2x00_abort_target, |
| 1373 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1374 | .fabric_login = qla2x00_login_fabric, |
| 1375 | .fabric_logout = qla2x00_fabric_logout, |
| 1376 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1377 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1378 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1379 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1380 | .read_nvram = qla2x00_read_nvram_data, |
| 1381 | .write_nvram = qla2x00_write_nvram_data, |
| 1382 | .fw_dump = qla2300_fw_dump, |
| 1383 | .beacon_on = qla2x00_beacon_on, |
| 1384 | .beacon_off = qla2x00_beacon_off, |
| 1385 | .beacon_blink = qla2x00_beacon_blink, |
| 1386 | .read_optrom = qla2x00_read_optrom_data, |
| 1387 | .write_optrom = qla2x00_write_optrom_data, |
| 1388 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1389 | .start_scsi = qla2x00_start_scsi, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1390 | }; |
| 1391 | |
| 1392 | static struct isp_operations qla24xx_isp_ops = { |
| 1393 | .pci_config = qla24xx_pci_config, |
| 1394 | .reset_chip = qla24xx_reset_chip, |
| 1395 | .chip_diag = qla24xx_chip_diag, |
| 1396 | .config_rings = qla24xx_config_rings, |
| 1397 | .reset_adapter = qla24xx_reset_adapter, |
| 1398 | .nvram_config = qla24xx_nvram_config, |
| 1399 | .update_fw_options = qla24xx_update_fw_options, |
| 1400 | .load_risc = qla24xx_load_risc, |
| 1401 | .pci_info_str = qla24xx_pci_info_str, |
| 1402 | .fw_version_str = qla24xx_fw_version_str, |
| 1403 | .intr_handler = qla24xx_intr_handler, |
| 1404 | .enable_intrs = qla24xx_enable_intrs, |
| 1405 | .disable_intrs = qla24xx_disable_intrs, |
| 1406 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1407 | .target_reset = qla24xx_abort_target, |
| 1408 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1409 | .fabric_login = qla24xx_login_fabric, |
| 1410 | .fabric_logout = qla24xx_fabric_logout, |
| 1411 | .calc_req_entries = NULL, |
| 1412 | .build_iocbs = NULL, |
| 1413 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1414 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1415 | .read_nvram = qla24xx_read_nvram_data, |
| 1416 | .write_nvram = qla24xx_write_nvram_data, |
| 1417 | .fw_dump = qla24xx_fw_dump, |
| 1418 | .beacon_on = qla24xx_beacon_on, |
| 1419 | .beacon_off = qla24xx_beacon_off, |
| 1420 | .beacon_blink = qla24xx_beacon_blink, |
| 1421 | .read_optrom = qla24xx_read_optrom_data, |
| 1422 | .write_optrom = qla24xx_write_optrom_data, |
| 1423 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1424 | .start_scsi = qla24xx_start_scsi, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1425 | }; |
| 1426 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1427 | static struct isp_operations qla25xx_isp_ops = { |
| 1428 | .pci_config = qla25xx_pci_config, |
| 1429 | .reset_chip = qla24xx_reset_chip, |
| 1430 | .chip_diag = qla24xx_chip_diag, |
| 1431 | .config_rings = qla24xx_config_rings, |
| 1432 | .reset_adapter = qla24xx_reset_adapter, |
| 1433 | .nvram_config = qla24xx_nvram_config, |
| 1434 | .update_fw_options = qla24xx_update_fw_options, |
| 1435 | .load_risc = qla24xx_load_risc, |
| 1436 | .pci_info_str = qla24xx_pci_info_str, |
| 1437 | .fw_version_str = qla24xx_fw_version_str, |
| 1438 | .intr_handler = qla24xx_intr_handler, |
| 1439 | .enable_intrs = qla24xx_enable_intrs, |
| 1440 | .disable_intrs = qla24xx_disable_intrs, |
| 1441 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1442 | .target_reset = qla24xx_abort_target, |
| 1443 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1444 | .fabric_login = qla24xx_login_fabric, |
| 1445 | .fabric_logout = qla24xx_fabric_logout, |
| 1446 | .calc_req_entries = NULL, |
| 1447 | .build_iocbs = NULL, |
| 1448 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1449 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1450 | .read_nvram = qla25xx_read_nvram_data, |
| 1451 | .write_nvram = qla25xx_write_nvram_data, |
| 1452 | .fw_dump = qla25xx_fw_dump, |
| 1453 | .beacon_on = qla24xx_beacon_on, |
| 1454 | .beacon_off = qla24xx_beacon_off, |
| 1455 | .beacon_blink = qla24xx_beacon_blink, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1456 | .read_optrom = qla25xx_read_optrom_data, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1457 | .write_optrom = qla24xx_write_optrom_data, |
| 1458 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1459 | .start_scsi = qla24xx_start_scsi, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1460 | }; |
| 1461 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1462 | static struct isp_operations qla81xx_isp_ops = { |
| 1463 | .pci_config = qla25xx_pci_config, |
| 1464 | .reset_chip = qla24xx_reset_chip, |
| 1465 | .chip_diag = qla24xx_chip_diag, |
| 1466 | .config_rings = qla24xx_config_rings, |
| 1467 | .reset_adapter = qla24xx_reset_adapter, |
| 1468 | .nvram_config = qla81xx_nvram_config, |
| 1469 | .update_fw_options = qla81xx_update_fw_options, |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 1470 | .load_risc = qla81xx_load_risc, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1471 | .pci_info_str = qla24xx_pci_info_str, |
| 1472 | .fw_version_str = qla24xx_fw_version_str, |
| 1473 | .intr_handler = qla24xx_intr_handler, |
| 1474 | .enable_intrs = qla24xx_enable_intrs, |
| 1475 | .disable_intrs = qla24xx_disable_intrs, |
| 1476 | .abort_command = qla24xx_abort_command, |
| 1477 | .target_reset = qla24xx_abort_target, |
| 1478 | .lun_reset = qla24xx_lun_reset, |
| 1479 | .fabric_login = qla24xx_login_fabric, |
| 1480 | .fabric_logout = qla24xx_fabric_logout, |
| 1481 | .calc_req_entries = NULL, |
| 1482 | .build_iocbs = NULL, |
| 1483 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1484 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 1485 | .read_nvram = NULL, |
| 1486 | .write_nvram = NULL, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1487 | .fw_dump = qla81xx_fw_dump, |
| 1488 | .beacon_on = qla24xx_beacon_on, |
| 1489 | .beacon_off = qla24xx_beacon_off, |
| 1490 | .beacon_blink = qla24xx_beacon_blink, |
| 1491 | .read_optrom = qla25xx_read_optrom_data, |
| 1492 | .write_optrom = qla24xx_write_optrom_data, |
| 1493 | .get_flash_version = qla24xx_get_flash_version, |
| 1494 | .start_scsi = qla24xx_start_scsi, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1495 | }; |
| 1496 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1497 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1498 | qla2x00_set_isp_flags(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1499 | { |
| 1500 | ha->device_type = DT_EXTENDED_IDS; |
| 1501 | switch (ha->pdev->device) { |
| 1502 | case PCI_DEVICE_ID_QLOGIC_ISP2100: |
| 1503 | ha->device_type |= DT_ISP2100; |
| 1504 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1505 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1506 | break; |
| 1507 | case PCI_DEVICE_ID_QLOGIC_ISP2200: |
| 1508 | ha->device_type |= DT_ISP2200; |
| 1509 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1510 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1511 | break; |
| 1512 | case PCI_DEVICE_ID_QLOGIC_ISP2300: |
| 1513 | ha->device_type |= DT_ISP2300; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1514 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1515 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1516 | break; |
| 1517 | case PCI_DEVICE_ID_QLOGIC_ISP2312: |
| 1518 | ha->device_type |= DT_ISP2312; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1519 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1520 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1521 | break; |
| 1522 | case PCI_DEVICE_ID_QLOGIC_ISP2322: |
| 1523 | ha->device_type |= DT_ISP2322; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1524 | ha->device_type |= DT_ZIO_SUPPORTED; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1525 | if (ha->pdev->subsystem_vendor == 0x1028 && |
| 1526 | ha->pdev->subsystem_device == 0x0170) |
| 1527 | ha->device_type |= DT_OEM_001; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1528 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1529 | break; |
| 1530 | case PCI_DEVICE_ID_QLOGIC_ISP6312: |
| 1531 | ha->device_type |= DT_ISP6312; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1532 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1533 | break; |
| 1534 | case PCI_DEVICE_ID_QLOGIC_ISP6322: |
| 1535 | ha->device_type |= DT_ISP6322; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1536 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1537 | break; |
| 1538 | case PCI_DEVICE_ID_QLOGIC_ISP2422: |
| 1539 | ha->device_type |= DT_ISP2422; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1540 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1541 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 1542 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1543 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1544 | break; |
| 1545 | case PCI_DEVICE_ID_QLOGIC_ISP2432: |
| 1546 | ha->device_type |= DT_ISP2432; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1547 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1548 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 1549 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1550 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1551 | break; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 1552 | case PCI_DEVICE_ID_QLOGIC_ISP8432: |
| 1553 | ha->device_type |= DT_ISP8432; |
| 1554 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1555 | ha->device_type |= DT_FWI2; |
| 1556 | ha->device_type |= DT_IIDMA; |
| 1557 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1558 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 1559 | case PCI_DEVICE_ID_QLOGIC_ISP5422: |
| 1560 | ha->device_type |= DT_ISP5422; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1561 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1562 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1563 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 1564 | case PCI_DEVICE_ID_QLOGIC_ISP5432: |
| 1565 | ha->device_type |= DT_ISP5432; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1566 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1567 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1568 | break; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1569 | case PCI_DEVICE_ID_QLOGIC_ISP2532: |
| 1570 | ha->device_type |= DT_ISP2532; |
| 1571 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1572 | ha->device_type |= DT_FWI2; |
| 1573 | ha->device_type |= DT_IIDMA; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1574 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1575 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1576 | case PCI_DEVICE_ID_QLOGIC_ISP8001: |
| 1577 | ha->device_type |= DT_ISP8001; |
| 1578 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1579 | ha->device_type |= DT_FWI2; |
| 1580 | ha->device_type |= DT_IIDMA; |
| 1581 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1582 | break; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1583 | } |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 1584 | |
| 1585 | /* Get adapter physical port no from interrupt pin register. */ |
| 1586 | pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); |
| 1587 | if (ha->port_no & 1) |
| 1588 | ha->flags.port0 = 1; |
| 1589 | else |
| 1590 | ha->flags.port0 = 0; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1591 | } |
| 1592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1594 | qla2x00_iospace_config(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | { |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1596 | resource_size_t pio; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1597 | uint16_t msix; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1598 | int cpus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1600 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1601 | QLA2XXX_DRIVER_NAME)) { |
| 1602 | qla_printk(KERN_WARNING, ha, |
| 1603 | "Failed to reserve PIO/MMIO regions (%s)\n", |
| 1604 | pci_name(ha->pdev)); |
| 1605 | |
| 1606 | goto iospace_error_exit; |
| 1607 | } |
| 1608 | if (!(ha->bars & 1)) |
| 1609 | goto skip_pio; |
| 1610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | /* We only need PIO for Flash operations on ISP2312 v2 chips. */ |
| 1612 | pio = pci_resource_start(ha->pdev, 0); |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1613 | if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { |
| 1614 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | qla_printk(KERN_WARNING, ha, |
| 1616 | "Invalid PCI I/O region size (%s)...\n", |
| 1617 | pci_name(ha->pdev)); |
| 1618 | pio = 0; |
| 1619 | } |
| 1620 | } else { |
| 1621 | qla_printk(KERN_WARNING, ha, |
| 1622 | "region #0 not a PIO resource (%s)...\n", |
| 1623 | pci_name(ha->pdev)); |
| 1624 | pio = 0; |
| 1625 | } |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1626 | ha->pio_address = pio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1628 | skip_pio: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | /* Use MMIO operations for all accesses. */ |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1630 | if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | qla_printk(KERN_ERR, ha, |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1632 | "region #1 not an MMIO resource (%s), aborting\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | pci_name(ha->pdev)); |
| 1634 | goto iospace_error_exit; |
| 1635 | } |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1636 | if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | qla_printk(KERN_ERR, ha, |
| 1638 | "Invalid PCI mem region size (%s), aborting\n", |
| 1639 | pci_name(ha->pdev)); |
| 1640 | goto iospace_error_exit; |
| 1641 | } |
| 1642 | |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1643 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | if (!ha->iobase) { |
| 1645 | qla_printk(KERN_ERR, ha, |
| 1646 | "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev)); |
| 1647 | |
| 1648 | goto iospace_error_exit; |
| 1649 | } |
| 1650 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1651 | /* Determine queue resources */ |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1652 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1653 | if ((ql2xmaxqueues <= 1 || ql2xmultique_tag < 1) && |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1654 | (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1655 | goto mqiobase_exit; |
| 1656 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), |
| 1657 | pci_resource_len(ha->pdev, 3)); |
| 1658 | if (ha->mqiobase) { |
| 1659 | /* Read MSIX vector size of the board */ |
| 1660 | pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); |
| 1661 | ha->msix_count = msix; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1662 | /* Max queues are bounded by available msix vectors */ |
| 1663 | /* queue 0 uses two msix vectors */ |
| 1664 | if (ql2xmultique_tag) { |
| 1665 | cpus = num_online_cpus(); |
| 1666 | ha->max_rsp_queues = (ha->msix_count - 1 - cpus) ? |
| 1667 | (cpus + 1) : (ha->msix_count - 1); |
| 1668 | ha->max_req_queues = 2; |
| 1669 | } else if (ql2xmaxqueues > 1) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1670 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1671 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1672 | DEBUG2(qla_printk(KERN_INFO, ha, "QoS mode set, max no" |
| 1673 | " of request queues:%d\n", ha->max_req_queues)); |
| 1674 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1675 | qla_printk(KERN_INFO, ha, |
| 1676 | "MSI-X vector count: %d\n", msix); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1677 | } else |
| 1678 | qla_printk(KERN_INFO, ha, "BAR 3 not enabled\n"); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1679 | |
| 1680 | mqiobase_exit: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1681 | ha->msix_count = ha->max_rsp_queues + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | return (0); |
| 1683 | |
| 1684 | iospace_error_exit: |
| 1685 | return (-ENOMEM); |
| 1686 | } |
| 1687 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1688 | static void |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1689 | qla2xxx_scan_start(struct Scsi_Host *shost) |
| 1690 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1691 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1692 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1693 | set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); |
| 1694 | set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); |
| 1695 | set_bit(RSCN_UPDATE, &vha->dpc_flags); |
| 1696 | set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1697 | } |
| 1698 | |
| 1699 | static int |
| 1700 | qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) |
| 1701 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1702 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1703 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1704 | if (!vha->host) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1705 | return 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1706 | if (time > vha->hw->loop_reset_delay * HZ) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1707 | return 1; |
| 1708 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1709 | return atomic_read(&vha->loop_state) == LOOP_READY; |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1710 | } |
| 1711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | /* |
| 1713 | * PCI driver interface |
| 1714 | */ |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 1715 | static int __devinit |
| 1716 | qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1718 | int ret = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | struct Scsi_Host *host; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1720 | scsi_qla_host_t *base_vha = NULL; |
| 1721 | struct qla_hw_data *ha; |
Andrew Vasquez | 29856e2 | 2007-08-12 18:22:52 -0700 | [diff] [blame] | 1722 | char pci_info[30]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | char fw_str[30]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 1724 | struct scsi_host_template *sht; |
Anirban Chakraborty | c51da4e | 2008-11-10 15:53:20 -0800 | [diff] [blame] | 1725 | int bars, max_id, mem_only = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1726 | uint16_t req_length = 0, rsp_length = 0; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1727 | struct req_que *req = NULL; |
| 1728 | struct rsp_que *rsp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1730 | bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 1731 | sht = &qla2xxx_driver_template; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1732 | if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || |
| 1733 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 1734 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1735 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || |
| 1736 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1737 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || |
| 1738 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001) { |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1739 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1740 | mem_only = 1; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1741 | } |
| 1742 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1743 | if (mem_only) { |
| 1744 | if (pci_enable_device_mem(pdev)) |
| 1745 | goto probe_out; |
| 1746 | } else { |
| 1747 | if (pci_enable_device(pdev)) |
| 1748 | goto probe_out; |
| 1749 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | |
Jesse Barnes | 0927678 | 2008-10-18 17:33:19 -0700 | [diff] [blame] | 1751 | /* This may fail but that's ok */ |
| 1752 | pci_enable_pcie_error_reporting(pdev); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 1753 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1754 | ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); |
| 1755 | if (!ha) { |
| 1756 | DEBUG(printk("Unable to allocate memory for ha\n")); |
| 1757 | goto probe_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1759 | ha->pdev = pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | |
| 1761 | /* Clear our data area */ |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1762 | ha->bars = bars; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1763 | ha->mem_only = mem_only; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1764 | spin_lock_init(&ha->hardware_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1766 | /* Set ISP-type information. */ |
| 1767 | qla2x00_set_isp_flags(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | /* Configure PCI I/O space */ |
| 1769 | ret = qla2x00_iospace_config(ha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1770 | if (ret) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1771 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | qla_printk(KERN_INFO, ha, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 1774 | "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq, |
| 1775 | ha->iobase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | ha->prev_topology = 0; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1778 | ha->init_cb_size = sizeof(init_cb_t); |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 1779 | ha->link_data_rate = PORT_SPEED_UNKNOWN; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1780 | ha->optrom_size = OPTROM_SIZE_2300; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1782 | /* Assign ISP specific operations. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1783 | max_id = MAX_TARGETS_2200; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | if (IS_QLA2100(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1785 | max_id = MAX_TARGETS_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1787 | req_length = REQUEST_ENTRY_CNT_2100; |
| 1788 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 1789 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1790 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1791 | ha->flash_conf_off = ~0; |
| 1792 | ha->flash_data_off = ~0; |
| 1793 | ha->nvram_conf_off = ~0; |
| 1794 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1795 | ha->isp_ops = &qla2100_isp_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | } else if (IS_QLA2200(ha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1798 | req_length = REQUEST_ENTRY_CNT_2200; |
| 1799 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 1800 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1801 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1802 | ha->flash_conf_off = ~0; |
| 1803 | ha->flash_data_off = ~0; |
| 1804 | ha->nvram_conf_off = ~0; |
| 1805 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1806 | ha->isp_ops = &qla2100_isp_ops; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1807 | } else if (IS_QLA23XX(ha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1809 | req_length = REQUEST_ENTRY_CNT_2200; |
| 1810 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 1811 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1812 | ha->gid_list_info_size = 6; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1813 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) |
| 1814 | ha->optrom_size = OPTROM_SIZE_2322; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1815 | ha->flash_conf_off = ~0; |
| 1816 | ha->flash_data_off = ~0; |
| 1817 | ha->nvram_conf_off = ~0; |
| 1818 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1819 | ha->isp_ops = &qla2300_isp_ops; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 1820 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1821 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1822 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 1823 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 1824 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1825 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1826 | ha->gid_list_info_size = 8; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1827 | ha->optrom_size = OPTROM_SIZE_24XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1828 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1829 | ha->isp_ops = &qla24xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1830 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 1831 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 1832 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 1833 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1834 | } else if (IS_QLA25XX(ha)) { |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1835 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1836 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 1837 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 1838 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1839 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1840 | ha->gid_list_info_size = 8; |
| 1841 | ha->optrom_size = OPTROM_SIZE_25XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1842 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1843 | ha->isp_ops = &qla25xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1844 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 1845 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 1846 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 1847 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
| 1848 | } else if (IS_QLA81XX(ha)) { |
| 1849 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 1850 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 1851 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 1852 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 1853 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 1854 | ha->gid_list_info_size = 8; |
| 1855 | ha->optrom_size = OPTROM_SIZE_81XX; |
| 1856 | ha->isp_ops = &qla81xx_isp_ops; |
| 1857 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 1858 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 1859 | ha->nvram_conf_off = ~0; |
| 1860 | ha->nvram_data_off = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | |
matthias@kaehlcke.net | 6c2f527 | 2008-05-12 22:21:11 -0700 | [diff] [blame] | 1863 | mutex_init(&ha->vport_lock); |
Marcus Barrow | 0b05a1f | 2008-01-17 09:02:13 -0800 | [diff] [blame] | 1864 | init_completion(&ha->mbx_cmd_comp); |
| 1865 | complete(&ha->mbx_cmd_comp); |
| 1866 | init_completion(&ha->mbx_intr_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1868 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1870 | qla2x00_config_dma_addressing(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1871 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1872 | if (!ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | qla_printk(KERN_WARNING, ha, |
| 1874 | "[ERROR] Failed to allocate memory for adapter\n"); |
| 1875 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1876 | goto probe_hw_failed; |
| 1877 | } |
| 1878 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1879 | req->max_q_depth = MAX_Q_DEPTH; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1880 | if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1881 | req->max_q_depth = ql2xmaxqdepth; |
| 1882 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1883 | |
| 1884 | base_vha = qla2x00_create_host(sht, ha); |
| 1885 | if (!base_vha) { |
| 1886 | qla_printk(KERN_WARNING, ha, |
| 1887 | "[ERROR] Failed to allocate memory for scsi_host\n"); |
| 1888 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1889 | ret = -ENOMEM; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 1890 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1891 | qla2x00_free_req_que(ha, req); |
| 1892 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1893 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | } |
| 1895 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1896 | pci_set_drvdata(pdev, base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1898 | host = base_vha->host; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1899 | base_vha->req = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1900 | host->can_queue = req->length + 128; |
| 1901 | if (IS_QLA2XXX_MIDTYPE(ha)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1902 | base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1903 | else |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1904 | base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + |
| 1905 | base_vha->vp_idx; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1906 | if (IS_QLA2100(ha)) |
| 1907 | host->sg_tablesize = 32; |
| 1908 | host->max_id = max_id; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1909 | host->this_id = 255; |
| 1910 | host->cmd_per_lun = 3; |
Seokmann Ju | 711c1d9 | 2008-07-10 16:55:51 -0700 | [diff] [blame] | 1911 | host->unique_id = host->host_no; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1912 | host->max_cmd_len = MAX_CMDSZ; |
Andrew Vasquez | 75bc419 | 2006-05-17 15:09:22 -0700 | [diff] [blame] | 1913 | host->max_channel = MAX_BUSES - 1; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1914 | host->max_lun = MAX_LUNS; |
| 1915 | host->transportt = qla2xxx_transport_template; |
| 1916 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1917 | /* Set up the irqs */ |
| 1918 | ret = qla2x00_request_irqs(ha, rsp); |
| 1919 | if (ret) |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 1920 | goto probe_init_failed; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1921 | /* Alloc arrays of request and response ring ptrs */ |
| 1922 | if (!qla2x00_alloc_queues(ha)) { |
| 1923 | qla_printk(KERN_WARNING, ha, |
| 1924 | "[ERROR] Failed to allocate memory for queue" |
| 1925 | " pointers\n"); |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 1926 | goto probe_init_failed; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1927 | } |
| 1928 | ha->rsp_q_map[0] = rsp; |
| 1929 | ha->req_q_map[0] = req; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1930 | rsp->req = req; |
| 1931 | req->rsp = rsp; |
| 1932 | set_bit(0, ha->req_qid_map); |
| 1933 | set_bit(0, ha->rsp_qid_map); |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 1934 | /* FWI2-capable only. */ |
| 1935 | req->req_q_in = &ha->iobase->isp24.req_q_in; |
| 1936 | req->req_q_out = &ha->iobase->isp24.req_q_out; |
| 1937 | rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; |
| 1938 | rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1939 | if (ha->mqenable) { |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 1940 | req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; |
| 1941 | req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; |
| 1942 | rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; |
| 1943 | rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1944 | } |
| 1945 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1946 | if (qla2x00_initialize_adapter(base_vha)) { |
| 1947 | qla_printk(KERN_WARNING, ha, |
| 1948 | "Failed to initialize adapter\n"); |
| 1949 | |
| 1950 | DEBUG2(printk("scsi(%ld): Failed to initialize adapter - " |
| 1951 | "Adapter flags %x.\n", |
| 1952 | base_vha->host_no, base_vha->device_flags)); |
| 1953 | |
| 1954 | ret = -ENODEV; |
| 1955 | goto probe_failed; |
| 1956 | } |
| 1957 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1958 | if (ha->mqenable) |
| 1959 | if (qla25xx_setup_mode(base_vha)) |
| 1960 | qla_printk(KERN_WARNING, ha, |
| 1961 | "Can't create queues, falling back to single" |
| 1962 | " queue mode\n"); |
| 1963 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1964 | /* |
| 1965 | * Startup the kernel thread for this host adapter |
| 1966 | */ |
| 1967 | ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, |
| 1968 | "%s_dpc", base_vha->host_str); |
| 1969 | if (IS_ERR(ha->dpc_thread)) { |
| 1970 | qla_printk(KERN_WARNING, ha, |
| 1971 | "Unable to start DPC thread!\n"); |
| 1972 | ret = PTR_ERR(ha->dpc_thread); |
| 1973 | goto probe_failed; |
| 1974 | } |
| 1975 | |
| 1976 | list_add_tail(&base_vha->list, &ha->vp_list); |
| 1977 | base_vha->host->irq = ha->pdev->irq; |
| 1978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | /* Initialized the timer */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1980 | qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | |
| 1982 | DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1983 | base_vha->host_no, ha)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1985 | base_vha->flags.init_done = 1; |
| 1986 | base_vha->flags.online = 1; |
Andrew Vasquez | d19044c | 2006-11-22 08:22:19 -0800 | [diff] [blame] | 1987 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1988 | ret = scsi_add_host(host, &pdev->dev); |
| 1989 | if (ret) |
| 1990 | goto probe_failed; |
| 1991 | |
Andrew Vasquez | 048feec | 2008-09-11 22:19:45 -0700 | [diff] [blame] | 1992 | ha->isp_ops->enable_intrs(ha); |
| 1993 | |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1994 | scsi_scan_host(host); |
| 1995 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1996 | qla2x00_alloc_sysfs_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1997 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1998 | qla2x00_init_host_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1999 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2000 | qla2x00_dfs_setup(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | qla_printk(KERN_INFO, ha, "\n" |
| 2003 | " QLogic Fibre Channel HBA Driver: %s\n" |
| 2004 | " QLogic %s - %s\n" |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 2005 | " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n", |
| 2006 | qla2x00_version_str, ha->model_number, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2007 | ha->model_desc ? ha->model_desc : "", pdev->device, |
| 2008 | ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev), |
| 2009 | ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no, |
| 2010 | ha->isp_ops->fw_version_str(base_vha, fw_str)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | return 0; |
| 2013 | |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2014 | probe_init_failed: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2015 | qla2x00_free_req_que(ha, req); |
| 2016 | qla2x00_free_rsp_que(ha, rsp); |
| 2017 | ha->max_req_queues = ha->max_rsp_queues = 0; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | probe_failed: |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2020 | if (base_vha->timer_active) |
| 2021 | qla2x00_stop_timer(base_vha); |
| 2022 | base_vha->flags.online = 0; |
| 2023 | if (ha->dpc_thread) { |
| 2024 | struct task_struct *t = ha->dpc_thread; |
| 2025 | |
| 2026 | ha->dpc_thread = NULL; |
| 2027 | kthread_stop(t); |
| 2028 | } |
| 2029 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2030 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2032 | scsi_host_put(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2034 | probe_hw_failed: |
| 2035 | if (ha->iobase) |
| 2036 | iounmap(ha->iobase); |
| 2037 | |
| 2038 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2039 | kfree(ha); |
| 2040 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2042 | probe_out: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2043 | pci_disable_device(pdev); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2044 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 2047 | static void |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 2048 | qla2x00_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2050 | scsi_qla_host_t *base_vha, *vha, *temp; |
| 2051 | struct qla_hw_data *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2053 | base_vha = pci_get_drvdata(pdev); |
| 2054 | ha = base_vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2056 | list_for_each_entry_safe(vha, temp, &ha->vp_list, list) { |
| 2057 | if (vha && vha->fc_vport) |
| 2058 | fc_vport_terminate(vha->fc_vport); |
| 2059 | } |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2060 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2061 | set_bit(UNLOADING, &base_vha->dpc_flags); |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2062 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2063 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 2064 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2065 | qla2x00_dfs_remove(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2066 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2067 | qla84xx_put_chip(base_vha); |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2068 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2069 | /* Disable timer */ |
| 2070 | if (base_vha->timer_active) |
| 2071 | qla2x00_stop_timer(base_vha); |
| 2072 | |
| 2073 | base_vha->flags.online = 0; |
| 2074 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2075 | /* Flush the work queue and remove it */ |
| 2076 | if (ha->wq) { |
| 2077 | flush_workqueue(ha->wq); |
| 2078 | destroy_workqueue(ha->wq); |
| 2079 | ha->wq = NULL; |
| 2080 | } |
| 2081 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2082 | /* Kill the kernel thread for this host */ |
| 2083 | if (ha->dpc_thread) { |
| 2084 | struct task_struct *t = ha->dpc_thread; |
| 2085 | |
| 2086 | /* |
| 2087 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 2088 | * so we need to zero it out. |
| 2089 | */ |
| 2090 | ha->dpc_thread = NULL; |
| 2091 | kthread_stop(t); |
| 2092 | } |
| 2093 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2094 | qla2x00_free_sysfs_attr(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2096 | fc_remove_host(base_vha->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 2097 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2098 | scsi_remove_host(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2100 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2102 | scsi_host_put(base_vha->host); |
| 2103 | |
| 2104 | if (ha->iobase) |
| 2105 | iounmap(ha->iobase); |
| 2106 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2107 | if (ha->mqiobase) |
| 2108 | iounmap(ha->mqiobase); |
| 2109 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2110 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2111 | kfree(ha); |
| 2112 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | |
Bernhard Walle | 665db93 | 2007-03-28 00:49:49 +0200 | [diff] [blame] | 2114 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | pci_set_drvdata(pdev, NULL); |
| 2116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | |
| 2118 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2119 | qla2x00_free_device(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2121 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2123 | qla25xx_delete_queues(vha); |
| 2124 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2125 | if (ha->flags.fce_enabled) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2126 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2127 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2128 | if (ha->eft) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2129 | qla2x00_disable_eft_trace(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2130 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2131 | /* Stop currently executing firmware. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2132 | qla2x00_try_to_stop_firmware(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2134 | /* turn-off interrupts on the card */ |
| 2135 | if (ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2136 | ha->isp_ops->disable_intrs(ha); |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2137 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2138 | qla2x00_free_irqs(vha); |
| 2139 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2140 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2141 | |
| 2142 | qla2x00_free_queues(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | } |
| 2144 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2145 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2146 | qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport, |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2147 | int defer) |
| 2148 | { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2149 | struct fc_rport *rport; |
| 2150 | |
| 2151 | if (!fcport->rport) |
| 2152 | return; |
| 2153 | |
| 2154 | rport = fcport->rport; |
| 2155 | if (defer) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2156 | spin_lock_irq(vha->host->host_lock); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2157 | fcport->drport = rport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2158 | spin_unlock_irq(vha->host->host_lock); |
| 2159 | set_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags); |
| 2160 | qla2xxx_wake_dpc(vha); |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 2161 | } else |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2162 | fc_remote_port_delete(rport); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2163 | } |
| 2164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
| 2167 | * |
| 2168 | * Input: ha = adapter block pointer. fcport = port structure pointer. |
| 2169 | * |
| 2170 | * Return: None. |
| 2171 | * |
| 2172 | * Context: |
| 2173 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2174 | void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport, |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2175 | int do_login, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2177 | if (atomic_read(&fcport->state) == FCS_ONLINE && |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2178 | vha->vp_idx == fcport->vp_idx) { |
| 2179 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
| 2180 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 2181 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 2182 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | * We may need to retry the login, so don't change the state of the |
| 2184 | * port but do the retries. |
| 2185 | */ |
| 2186 | if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) |
| 2187 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
| 2188 | |
| 2189 | if (!do_login) |
| 2190 | return; |
| 2191 | |
| 2192 | if (fcport->login_retry == 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2193 | fcport->login_retry = vha->hw->login_retry_count; |
| 2194 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | |
| 2196 | DEBUG(printk("scsi(%ld): Port login retry: " |
| 2197 | "%02x%02x%02x%02x%02x%02x%02x%02x, " |
| 2198 | "id = 0x%04x retry cnt=%d\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2199 | vha->host_no, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | fcport->port_name[0], |
| 2201 | fcport->port_name[1], |
| 2202 | fcport->port_name[2], |
| 2203 | fcport->port_name[3], |
| 2204 | fcport->port_name[4], |
| 2205 | fcport->port_name[5], |
| 2206 | fcport->port_name[6], |
| 2207 | fcport->port_name[7], |
| 2208 | fcport->loop_id, |
| 2209 | fcport->login_retry)); |
| 2210 | } |
| 2211 | } |
| 2212 | |
| 2213 | /* |
| 2214 | * qla2x00_mark_all_devices_lost |
| 2215 | * Updates fcport state when device goes offline. |
| 2216 | * |
| 2217 | * Input: |
| 2218 | * ha = adapter block pointer. |
| 2219 | * fcport = port structure pointer. |
| 2220 | * |
| 2221 | * Return: |
| 2222 | * None. |
| 2223 | * |
| 2224 | * Context: |
| 2225 | */ |
| 2226 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2227 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | { |
| 2229 | fc_port_t *fcport; |
| 2230 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2231 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 2232 | if (vha->vp_idx != fcport->vp_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | /* |
| 2235 | * No point in marking the device as lost, if the device is |
| 2236 | * already DEAD. |
| 2237 | */ |
| 2238 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
| 2239 | continue; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2240 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
| 2241 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
| 2242 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 2243 | } else |
| 2244 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | } |
| 2246 | } |
| 2247 | |
| 2248 | /* |
| 2249 | * qla2x00_mem_alloc |
| 2250 | * Allocates adapter memory. |
| 2251 | * |
| 2252 | * Returns: |
| 2253 | * 0 = success. |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2254 | * !0 = failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2255 | */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2256 | static int |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2257 | qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, |
| 2258 | struct req_que **req, struct rsp_que **rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | { |
| 2260 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2262 | ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2263 | &ha->init_cb_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2264 | if (!ha->init_cb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2265 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2267 | ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE, |
| 2268 | &ha->gid_list_dma, GFP_KERNEL); |
| 2269 | if (!ha->gid_list) |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2270 | goto fail_free_init_cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2272 | ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); |
| 2273 | if (!ha->srb_mempool) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2274 | goto fail_free_gid_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2276 | /* Get memory for cached NVRAM */ |
| 2277 | ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); |
| 2278 | if (!ha->nvram) |
| 2279 | goto fail_free_srb_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2281 | snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, |
| 2282 | ha->pdev->device); |
| 2283 | ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 2284 | DMA_POOL_SIZE, 8, 0); |
| 2285 | if (!ha->s_dma_pool) |
| 2286 | goto fail_free_nvram; |
| 2287 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2288 | /* Allocate memory for SNS commands */ |
| 2289 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2290 | /* Get consistent memory allocated for SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2291 | ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2292 | sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2293 | if (!ha->sns_cmd) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2294 | goto fail_dma_pool; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2295 | } else { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2296 | /* Get consistent memory allocated for MS IOCB */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2297 | ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2298 | &ha->ms_iocb_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2299 | if (!ha->ms_iocb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2300 | goto fail_dma_pool; |
| 2301 | /* Get consistent memory allocated for CT SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2302 | ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2303 | sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2304 | if (!ha->ct_sns) |
| 2305 | goto fail_free_ms_iocb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | } |
| 2307 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2308 | /* Allocate memory for request ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2309 | *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); |
| 2310 | if (!*req) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2311 | DEBUG(printk("Unable to allocate memory for req\n")); |
| 2312 | goto fail_req; |
| 2313 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2314 | (*req)->length = req_len; |
| 2315 | (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 2316 | ((*req)->length + 1) * sizeof(request_t), |
| 2317 | &(*req)->dma, GFP_KERNEL); |
| 2318 | if (!(*req)->ring) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2319 | DEBUG(printk("Unable to allocate memory for req_ring\n")); |
| 2320 | goto fail_req_ring; |
| 2321 | } |
| 2322 | /* Allocate memory for response ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2323 | *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); |
| 2324 | if (!*rsp) { |
| 2325 | qla_printk(KERN_WARNING, ha, |
| 2326 | "Unable to allocate memory for rsp\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2327 | goto fail_rsp; |
| 2328 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2329 | (*rsp)->hw = ha; |
| 2330 | (*rsp)->length = rsp_len; |
| 2331 | (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 2332 | ((*rsp)->length + 1) * sizeof(response_t), |
| 2333 | &(*rsp)->dma, GFP_KERNEL); |
| 2334 | if (!(*rsp)->ring) { |
| 2335 | qla_printk(KERN_WARNING, ha, |
| 2336 | "Unable to allocate memory for rsp_ring\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2337 | goto fail_rsp_ring; |
| 2338 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2339 | (*req)->rsp = *rsp; |
| 2340 | (*rsp)->req = *req; |
| 2341 | /* Allocate memory for NVRAM data for vports */ |
| 2342 | if (ha->nvram_npiv_size) { |
| 2343 | ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) * |
| 2344 | ha->nvram_npiv_size, GFP_KERNEL); |
| 2345 | if (!ha->npiv_info) { |
| 2346 | qla_printk(KERN_WARNING, ha, |
| 2347 | "Unable to allocate memory for npiv info\n"); |
| 2348 | goto fail_npiv_info; |
| 2349 | } |
| 2350 | } else |
| 2351 | ha->npiv_info = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2352 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2353 | /* Get consistent memory allocated for EX-INIT-CB. */ |
| 2354 | if (IS_QLA81XX(ha)) { |
| 2355 | ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 2356 | &ha->ex_init_cb_dma); |
| 2357 | if (!ha->ex_init_cb) |
| 2358 | goto fail_ex_init_cb; |
| 2359 | } |
| 2360 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2361 | INIT_LIST_HEAD(&ha->vp_list); |
| 2362 | return 1; |
| 2363 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2364 | fail_ex_init_cb: |
| 2365 | kfree(ha->npiv_info); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2366 | fail_npiv_info: |
| 2367 | dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * |
| 2368 | sizeof(response_t), (*rsp)->ring, (*rsp)->dma); |
| 2369 | (*rsp)->ring = NULL; |
| 2370 | (*rsp)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2371 | fail_rsp_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2372 | kfree(*rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2373 | fail_rsp: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2374 | dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * |
| 2375 | sizeof(request_t), (*req)->ring, (*req)->dma); |
| 2376 | (*req)->ring = NULL; |
| 2377 | (*req)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2378 | fail_req_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2379 | kfree(*req); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2380 | fail_req: |
| 2381 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
| 2382 | ha->ct_sns, ha->ct_sns_dma); |
| 2383 | ha->ct_sns = NULL; |
| 2384 | ha->ct_sns_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2385 | fail_free_ms_iocb: |
| 2386 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 2387 | ha->ms_iocb = NULL; |
| 2388 | ha->ms_iocb_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2389 | fail_dma_pool: |
| 2390 | dma_pool_destroy(ha->s_dma_pool); |
| 2391 | ha->s_dma_pool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2392 | fail_free_nvram: |
| 2393 | kfree(ha->nvram); |
| 2394 | ha->nvram = NULL; |
| 2395 | fail_free_srb_mempool: |
| 2396 | mempool_destroy(ha->srb_mempool); |
| 2397 | ha->srb_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2398 | fail_free_gid_list: |
| 2399 | dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2400 | ha->gid_list_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2401 | ha->gid_list = NULL; |
| 2402 | ha->gid_list_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2403 | fail_free_init_cb: |
| 2404 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, |
| 2405 | ha->init_cb_dma); |
| 2406 | ha->init_cb = NULL; |
| 2407 | ha->init_cb_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2408 | fail: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2409 | DEBUG(printk("%s: Memory allocation failure\n", __func__)); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2410 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | } |
| 2412 | |
| 2413 | /* |
| 2414 | * qla2x00_mem_free |
| 2415 | * Frees all adapter allocated memory. |
| 2416 | * |
| 2417 | * Input: |
| 2418 | * ha = adapter block pointer. |
| 2419 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 2420 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2421 | qla2x00_mem_free(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | { |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2423 | if (ha->srb_mempool) |
| 2424 | mempool_destroy(ha->srb_mempool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2426 | if (ha->fce) |
| 2427 | dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2428 | ha->fce_dma); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2429 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2430 | if (ha->fw_dump) { |
| 2431 | if (ha->eft) |
| 2432 | dma_free_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2433 | ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2434 | vfree(ha->fw_dump); |
| 2435 | } |
| 2436 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame^] | 2437 | if (ha->xgmac_data) |
| 2438 | dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 2439 | ha->xgmac_data, ha->xgmac_data_dma); |
| 2440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | if (ha->sns_cmd) |
| 2442 | dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2443 | ha->sns_cmd, ha->sns_cmd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | |
| 2445 | if (ha->ct_sns) |
| 2446 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2447 | ha->ct_sns, ha->ct_sns_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 2449 | if (ha->sfp_data) |
| 2450 | dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma); |
| 2451 | |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 2452 | if (ha->edc_data) |
| 2453 | dma_pool_free(ha->s_dma_pool, ha->edc_data, ha->edc_data_dma); |
| 2454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | if (ha->ms_iocb) |
| 2456 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 2457 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2458 | if (ha->ex_init_cb) |
| 2459 | dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma); |
| 2460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | if (ha->s_dma_pool) |
| 2462 | dma_pool_destroy(ha->s_dma_pool); |
| 2463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2464 | if (ha->gid_list) |
| 2465 | dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2466 | ha->gid_list_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2468 | if (ha->init_cb) |
| 2469 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, |
| 2470 | ha->init_cb, ha->init_cb_dma); |
| 2471 | vfree(ha->optrom_buffer); |
| 2472 | kfree(ha->nvram); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2473 | kfree(ha->npiv_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2474 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2475 | ha->srb_mempool = NULL; |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2476 | ha->eft = NULL; |
| 2477 | ha->eft_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2478 | ha->sns_cmd = NULL; |
| 2479 | ha->sns_cmd_dma = 0; |
| 2480 | ha->ct_sns = NULL; |
| 2481 | ha->ct_sns_dma = 0; |
| 2482 | ha->ms_iocb = NULL; |
| 2483 | ha->ms_iocb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | ha->init_cb = NULL; |
| 2485 | ha->init_cb_dma = 0; |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2486 | ha->ex_init_cb = NULL; |
| 2487 | ha->ex_init_cb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2488 | |
| 2489 | ha->s_dma_pool = NULL; |
| 2490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | ha->gid_list = NULL; |
| 2492 | ha->gid_list_dma = 0; |
| 2493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | ha->fw_dump = NULL; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2495 | ha->fw_dumped = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | ha->fw_dump_reading = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2497 | } |
| 2498 | |
| 2499 | struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, |
| 2500 | struct qla_hw_data *ha) |
| 2501 | { |
| 2502 | struct Scsi_Host *host; |
| 2503 | struct scsi_qla_host *vha = NULL; |
| 2504 | |
| 2505 | host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); |
| 2506 | if (host == NULL) { |
| 2507 | printk(KERN_WARNING |
| 2508 | "qla2xxx: Couldn't allocate host from scsi layer!\n"); |
| 2509 | goto fail; |
| 2510 | } |
| 2511 | |
| 2512 | /* Clear our data area */ |
| 2513 | vha = shost_priv(host); |
| 2514 | memset(vha, 0, sizeof(scsi_qla_host_t)); |
| 2515 | |
| 2516 | vha->host = host; |
| 2517 | vha->host_no = host->host_no; |
| 2518 | vha->hw = ha; |
| 2519 | |
| 2520 | INIT_LIST_HEAD(&vha->vp_fcports); |
| 2521 | INIT_LIST_HEAD(&vha->work_list); |
| 2522 | INIT_LIST_HEAD(&vha->list); |
| 2523 | |
| 2524 | sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); |
| 2525 | return vha; |
| 2526 | |
| 2527 | fail: |
| 2528 | return vha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | } |
| 2530 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 2531 | static struct qla_work_evt * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2532 | qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type, |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2533 | int locked) |
| 2534 | { |
| 2535 | struct qla_work_evt *e; |
| 2536 | |
| 2537 | e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC: |
| 2538 | GFP_KERNEL); |
| 2539 | if (!e) |
| 2540 | return NULL; |
| 2541 | |
| 2542 | INIT_LIST_HEAD(&e->list); |
| 2543 | e->type = type; |
| 2544 | e->flags = QLA_EVT_FLAG_FREE; |
| 2545 | return e; |
| 2546 | } |
| 2547 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 2548 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2549 | qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e, int locked) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2550 | { |
Andrew Morton | bf6583b | 2008-07-24 08:31:48 -0700 | [diff] [blame] | 2551 | unsigned long uninitialized_var(flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2552 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2553 | |
| 2554 | if (!locked) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2555 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 2556 | list_add_tail(&e->list, &vha->work_list); |
| 2557 | qla2xxx_wake_dpc(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2558 | if (!locked) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2559 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2560 | return QLA_SUCCESS; |
| 2561 | } |
| 2562 | |
| 2563 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2564 | qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code, |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2565 | u32 data) |
| 2566 | { |
| 2567 | struct qla_work_evt *e; |
| 2568 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2569 | e = qla2x00_alloc_work(vha, QLA_EVT_AEN, 1); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2570 | if (!e) |
| 2571 | return QLA_FUNCTION_FAILED; |
| 2572 | |
| 2573 | e->u.aen.code = code; |
| 2574 | e->u.aen.data = data; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2575 | return qla2x00_post_work(vha, e, 1); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2576 | } |
| 2577 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 2578 | int |
| 2579 | qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) |
| 2580 | { |
| 2581 | struct qla_work_evt *e; |
| 2582 | |
| 2583 | e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK, 1); |
| 2584 | if (!e) |
| 2585 | return QLA_FUNCTION_FAILED; |
| 2586 | |
| 2587 | memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t)); |
| 2588 | return qla2x00_post_work(vha, e, 1); |
| 2589 | } |
| 2590 | |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2591 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2592 | qla2x00_do_work(struct scsi_qla_host *vha) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2593 | { |
| 2594 | struct qla_work_evt *e; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2595 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2596 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2597 | spin_lock_irq(&ha->hardware_lock); |
| 2598 | while (!list_empty(&vha->work_list)) { |
| 2599 | e = list_entry(vha->work_list.next, struct qla_work_evt, list); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2600 | list_del_init(&e->list); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2601 | spin_unlock_irq(&ha->hardware_lock); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2602 | |
| 2603 | switch (e->type) { |
| 2604 | case QLA_EVT_AEN: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2605 | fc_host_post_event(vha->host, fc_get_event_number(), |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2606 | e->u.aen.code, e->u.aen.data); |
| 2607 | break; |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 2608 | case QLA_EVT_IDC_ACK: |
| 2609 | qla81xx_idc_ack(vha, e->u.idc_ack.mb); |
| 2610 | break; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2611 | } |
| 2612 | if (e->flags & QLA_EVT_FLAG_FREE) |
| 2613 | kfree(e); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2614 | spin_lock_irq(&ha->hardware_lock); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2615 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2616 | spin_unlock_irq(&ha->hardware_lock); |
| 2617 | } |
| 2618 | /* Relogins all the fcports of a vport |
| 2619 | * Context: dpc thread |
| 2620 | */ |
| 2621 | void qla2x00_relogin(struct scsi_qla_host *vha) |
| 2622 | { |
| 2623 | fc_port_t *fcport; |
Andrew Vasquez | c6b2fca | 2009-03-05 11:07:03 -0800 | [diff] [blame] | 2624 | int status; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2625 | uint16_t next_loopid = 0; |
| 2626 | struct qla_hw_data *ha = vha->hw; |
| 2627 | |
| 2628 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 2629 | /* |
| 2630 | * If the port is not ONLINE then try to login |
| 2631 | * to it if we haven't run out of retries. |
| 2632 | */ |
| 2633 | if (atomic_read(&fcport->state) != |
| 2634 | FCS_ONLINE && fcport->login_retry) { |
| 2635 | |
| 2636 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
| 2637 | if (fcport->flags & FCF_TAPE_PRESENT) |
| 2638 | ha->isp_ops->fabric_logout(vha, |
| 2639 | fcport->loop_id, |
| 2640 | fcport->d_id.b.domain, |
| 2641 | fcport->d_id.b.area, |
| 2642 | fcport->d_id.b.al_pa); |
| 2643 | |
| 2644 | status = qla2x00_fabric_login(vha, fcport, |
| 2645 | &next_loopid); |
| 2646 | } else |
| 2647 | status = qla2x00_local_device_login(vha, |
| 2648 | fcport); |
| 2649 | |
| 2650 | fcport->login_retry--; |
| 2651 | if (status == QLA_SUCCESS) { |
| 2652 | fcport->old_loop_id = fcport->loop_id; |
| 2653 | |
| 2654 | DEBUG(printk("scsi(%ld): port login OK: logged " |
| 2655 | "in ID 0x%x\n", vha->host_no, fcport->loop_id)); |
| 2656 | |
| 2657 | qla2x00_update_fcport(vha, fcport); |
| 2658 | |
| 2659 | } else if (status == 1) { |
| 2660 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 2661 | /* retry the login again */ |
| 2662 | DEBUG(printk("scsi(%ld): Retrying" |
| 2663 | " %d login again loop_id 0x%x\n", |
| 2664 | vha->host_no, fcport->login_retry, |
| 2665 | fcport->loop_id)); |
| 2666 | } else { |
| 2667 | fcport->login_retry = 0; |
| 2668 | } |
| 2669 | |
| 2670 | if (fcport->login_retry == 0 && status != QLA_SUCCESS) |
| 2671 | fcport->loop_id = FC_NO_LOOP_ID; |
| 2672 | } |
| 2673 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| 2674 | break; |
| 2675 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2676 | } |
| 2677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | /************************************************************************** |
| 2679 | * qla2x00_do_dpc |
| 2680 | * This kernel thread is a task that is schedule by the interrupt handler |
| 2681 | * to perform the background processing for interrupts. |
| 2682 | * |
| 2683 | * Notes: |
| 2684 | * This task always run in the context of a kernel thread. It |
| 2685 | * is kick-off by the driver's detect code and starts up |
| 2686 | * up one per adapter. It immediately goes to sleep and waits for |
| 2687 | * some fibre event. When either the interrupt handler or |
| 2688 | * the timer routine detects a event it will one of the task |
| 2689 | * bits then wake us up. |
| 2690 | **************************************************************************/ |
| 2691 | static int |
| 2692 | qla2x00_do_dpc(void *data) |
| 2693 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2694 | int rval; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2695 | scsi_qla_host_t *base_vha; |
| 2696 | struct qla_hw_data *ha; |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 2697 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2698 | ha = (struct qla_hw_data *)data; |
| 2699 | base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | set_user_nice(current, -20); |
| 2702 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 2703 | while (!kthread_should_stop()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | DEBUG3(printk("qla2x00: DPC handler sleeping\n")); |
| 2705 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 2706 | set_current_state(TASK_INTERRUPTIBLE); |
| 2707 | schedule(); |
| 2708 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | |
| 2710 | DEBUG3(printk("qla2x00: DPC handler waking up\n")); |
| 2711 | |
| 2712 | /* Initialization not yet finished. Don't do anything yet. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2713 | if (!base_vha->flags.init_done) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | continue; |
| 2715 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2716 | DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | |
| 2718 | ha->dpc_active = 1; |
| 2719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | if (ha->flags.mbox_busy) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | ha->dpc_active = 0; |
| 2722 | continue; |
| 2723 | } |
| 2724 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2725 | qla2x00_do_work(base_vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 2726 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2727 | if (test_and_clear_bit(ISP_ABORT_NEEDED, |
| 2728 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | |
| 2730 | DEBUG(printk("scsi(%ld): dpc: sched " |
| 2731 | "qla2x00_abort_isp ha = %p\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2732 | base_vha->host_no, ha)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2734 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2736 | if (qla2x00_abort_isp(base_vha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | /* failed. retry later */ |
| 2738 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2739 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2741 | clear_bit(ABORT_ISP_ACTIVE, |
| 2742 | &base_vha->dpc_flags); |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 2743 | } |
| 2744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2746 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2747 | } |
| 2748 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2749 | if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) { |
| 2750 | qla2x00_update_fcports(base_vha); |
| 2751 | clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 2752 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2753 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2754 | if (test_and_clear_bit(RESET_MARKER_NEEDED, |
| 2755 | &base_vha->dpc_flags) && |
| 2756 | (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | |
| 2758 | DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2759 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2761 | qla2x00_rst_aen(base_vha); |
| 2762 | clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | } |
| 2764 | |
| 2765 | /* Retry each device up to login retry count */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2766 | if ((test_and_clear_bit(RELOGIN_NEEDED, |
| 2767 | &base_vha->dpc_flags)) && |
| 2768 | !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && |
| 2769 | atomic_read(&base_vha->loop_state) != LOOP_DOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | |
| 2771 | DEBUG(printk("scsi(%ld): qla2x00_port_login()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2772 | base_vha->host_no)); |
| 2773 | qla2x00_relogin(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2776 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | } |
| 2778 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2779 | if (test_and_clear_bit(LOOP_RESYNC_NEEDED, |
| 2780 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | |
| 2782 | DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2783 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2784 | |
| 2785 | if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2786 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2788 | rval = qla2x00_loop_resync(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2790 | clear_bit(LOOP_RESYNC_ACTIVE, |
| 2791 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | } |
| 2793 | |
| 2794 | DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2795 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | } |
| 2797 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2798 | if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && |
| 2799 | atomic_read(&base_vha->loop_state) == LOOP_READY) { |
| 2800 | clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); |
| 2801 | qla2xxx_flash_npiv_conf(base_vha); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 2802 | } |
| 2803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | if (!ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2805 | ha->isp_ops->enable_intrs(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2807 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, |
| 2808 | &base_vha->dpc_flags)) |
| 2809 | ha->isp_ops->beacon_blink(base_vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 2810 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2811 | qla2x00_do_dpc_all_vps(base_vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | ha->dpc_active = 0; |
| 2814 | } /* End of while(1) */ |
| 2815 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2816 | DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | |
| 2818 | /* |
| 2819 | * Make sure that nobody tries to wake us up again. |
| 2820 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | ha->dpc_active = 0; |
| 2822 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 2823 | return 0; |
| 2824 | } |
| 2825 | |
| 2826 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2827 | qla2xxx_wake_dpc(struct scsi_qla_host *vha) |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 2828 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2829 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2830 | struct task_struct *t = ha->dpc_thread; |
| 2831 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2832 | if (!test_bit(UNLOADING, &vha->dpc_flags) && t) |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2833 | wake_up_process(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | } |
| 2835 | |
| 2836 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | * qla2x00_rst_aen |
| 2838 | * Processes asynchronous reset. |
| 2839 | * |
| 2840 | * Input: |
| 2841 | * ha = adapter block pointer. |
| 2842 | */ |
| 2843 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2844 | qla2x00_rst_aen(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2846 | if (vha->flags.online && !vha->flags.reset_active && |
| 2847 | !atomic_read(&vha->loop_down_timer) && |
| 2848 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | do { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2850 | clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | |
| 2852 | /* |
| 2853 | * Issue marker command only when we are going to start |
| 2854 | * the I/O. |
| 2855 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2856 | vha->marker_needed = 1; |
| 2857 | } while (!atomic_read(&vha->loop_down_timer) && |
| 2858 | (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | } |
| 2860 | } |
| 2861 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2862 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2863 | qla2x00_sp_free_dma(srb_t *sp) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2864 | { |
| 2865 | struct scsi_cmnd *cmd = sp->cmd; |
| 2866 | |
| 2867 | if (sp->flags & SRB_DMA_VALID) { |
FUJITA Tomonori | 385d70b | 2007-05-26 01:55:38 +0900 | [diff] [blame] | 2868 | scsi_dma_unmap(cmd); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2869 | sp->flags &= ~SRB_DMA_VALID; |
| 2870 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2871 | CMD_SP(cmd) = NULL; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2872 | } |
| 2873 | |
| 2874 | void |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2875 | qla2x00_sp_compl(struct qla_hw_data *ha, srb_t *sp) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2876 | { |
| 2877 | struct scsi_cmnd *cmd = sp->cmd; |
| 2878 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2879 | qla2x00_sp_free_dma(sp); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2880 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2881 | mempool_free(sp, ha->srb_mempool); |
| 2882 | |
| 2883 | cmd->scsi_done(cmd); |
| 2884 | } |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 2885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | /************************************************************************** |
| 2887 | * qla2x00_timer |
| 2888 | * |
| 2889 | * Description: |
| 2890 | * One second timer |
| 2891 | * |
| 2892 | * Context: Interrupt |
| 2893 | ***************************************************************************/ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2894 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2895 | qla2x00_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | unsigned long cpu_flags = 0; |
| 2898 | fc_port_t *fcport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2899 | int start_dpc = 0; |
| 2900 | int index; |
| 2901 | srb_t *sp; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 2902 | int t; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2903 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2904 | struct req_que *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | /* |
| 2906 | * Ports - Port down timer. |
| 2907 | * |
| 2908 | * Whenever, a port is in the LOST state we start decrementing its port |
| 2909 | * down timer every second until it reaches zero. Once it reaches zero |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 2910 | * the port it marked DEAD. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | */ |
| 2912 | t = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2913 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | if (fcport->port_type != FCT_TARGET) |
| 2915 | continue; |
| 2916 | |
| 2917 | if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) { |
| 2918 | |
| 2919 | if (atomic_read(&fcport->port_down_timer) == 0) |
| 2920 | continue; |
| 2921 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 2922 | if (atomic_dec_and_test(&fcport->port_down_timer) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | atomic_set(&fcport->state, FCS_DEVICE_DEAD); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 2924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | DEBUG(printk("scsi(%ld): fcport-%d - port retry count: " |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2926 | "%d remaining\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2927 | vha->host_no, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | t, atomic_read(&fcport->port_down_timer))); |
| 2929 | } |
| 2930 | t++; |
| 2931 | } /* End of for fcport */ |
| 2932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | |
| 2934 | /* Loop down handler. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2935 | if (atomic_read(&vha->loop_down_timer) > 0 && |
| 2936 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) |
| 2937 | && vha->flags.online) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2939 | if (atomic_read(&vha->loop_down_timer) == |
| 2940 | vha->loop_down_abort_time) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | |
| 2942 | DEBUG(printk("scsi(%ld): Loop Down - aborting the " |
| 2943 | "queues before time expire\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2944 | vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2946 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 2947 | atomic_set(&vha->loop_state, LOOP_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | |
| 2949 | /* Schedule an ISP abort to return any tape commands. */ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2950 | /* NPIV - scan physical port only */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2951 | if (!vha->vp_idx) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2952 | spin_lock_irqsave(&ha->hardware_lock, |
| 2953 | cpu_flags); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2954 | req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2955 | for (index = 1; |
| 2956 | index < MAX_OUTSTANDING_COMMANDS; |
| 2957 | index++) { |
| 2958 | fc_port_t *sfcp; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 2959 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2960 | sp = req->outstanding_cmds[index]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2961 | if (!sp) |
| 2962 | continue; |
| 2963 | sfcp = sp->fcport; |
| 2964 | if (!(sfcp->flags & FCF_TAPE_PRESENT)) |
| 2965 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2967 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2968 | &vha->dpc_flags); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2969 | break; |
| 2970 | } |
| 2971 | spin_unlock_irqrestore(&ha->hardware_lock, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2972 | cpu_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | start_dpc++; |
| 2975 | } |
| 2976 | |
| 2977 | /* if the loop has been down for 4 minutes, reinit adapter */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2978 | if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2979 | if (!(vha->device_flags & DFLG_NO_CABLE) && |
| 2980 | !vha->vp_idx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | DEBUG(printk("scsi(%ld): Loop down - " |
| 2982 | "aborting ISP.\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2983 | vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | qla_printk(KERN_WARNING, ha, |
| 2985 | "Loop down - aborting ISP.\n"); |
| 2986 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2987 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | } |
| 2989 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2990 | DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2991 | vha->host_no, |
| 2992 | atomic_read(&vha->loop_down_timer))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | } |
| 2994 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 2995 | /* Check if beacon LED needs to be blinked */ |
| 2996 | if (ha->beacon_blink_led == 1) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2997 | set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 2998 | start_dpc++; |
| 2999 | } |
| 3000 | |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 3001 | /* Process any deferred work. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3002 | if (!list_empty(&vha->work_list)) |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 3003 | start_dpc++; |
| 3004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | /* Schedule the DPC routine if needed */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3006 | if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 3007 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || |
| 3008 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | start_dpc || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3010 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || |
| 3011 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || |
| 3012 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || |
| 3013 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) |
| 3014 | qla2xxx_wake_dpc(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3016 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | } |
| 3018 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3019 | /* Firmware interface routines. */ |
| 3020 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3021 | #define FW_BLOBS 7 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3022 | #define FW_ISP21XX 0 |
| 3023 | #define FW_ISP22XX 1 |
| 3024 | #define FW_ISP2300 2 |
| 3025 | #define FW_ISP2322 3 |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3026 | #define FW_ISP24XX 4 |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3027 | #define FW_ISP25XX 5 |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3028 | #define FW_ISP81XX 6 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3029 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3030 | #define FW_FILE_ISP21XX "ql2100_fw.bin" |
| 3031 | #define FW_FILE_ISP22XX "ql2200_fw.bin" |
| 3032 | #define FW_FILE_ISP2300 "ql2300_fw.bin" |
| 3033 | #define FW_FILE_ISP2322 "ql2322_fw.bin" |
| 3034 | #define FW_FILE_ISP24XX "ql2400_fw.bin" |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3035 | #define FW_FILE_ISP25XX "ql2500_fw.bin" |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3036 | #define FW_FILE_ISP81XX "ql8100_fw.bin" |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3037 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3038 | static DEFINE_MUTEX(qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3039 | |
| 3040 | static struct fw_blob qla_fw_blobs[FW_BLOBS] = { |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3041 | { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, |
| 3042 | { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, |
| 3043 | { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, |
| 3044 | { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, |
| 3045 | { .name = FW_FILE_ISP24XX, }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3046 | { .name = FW_FILE_ISP25XX, }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3047 | { .name = FW_FILE_ISP81XX, }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3048 | }; |
| 3049 | |
| 3050 | struct fw_blob * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3051 | qla2x00_request_firmware(scsi_qla_host_t *vha) |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3052 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3053 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3054 | struct fw_blob *blob; |
| 3055 | |
| 3056 | blob = NULL; |
| 3057 | if (IS_QLA2100(ha)) { |
| 3058 | blob = &qla_fw_blobs[FW_ISP21XX]; |
| 3059 | } else if (IS_QLA2200(ha)) { |
| 3060 | blob = &qla_fw_blobs[FW_ISP22XX]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3061 | } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3062 | blob = &qla_fw_blobs[FW_ISP2300]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3063 | } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3064 | blob = &qla_fw_blobs[FW_ISP2322]; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 3065 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3066 | blob = &qla_fw_blobs[FW_ISP24XX]; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3067 | } else if (IS_QLA25XX(ha)) { |
| 3068 | blob = &qla_fw_blobs[FW_ISP25XX]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3069 | } else if (IS_QLA81XX(ha)) { |
| 3070 | blob = &qla_fw_blobs[FW_ISP81XX]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3071 | } |
| 3072 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3073 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3074 | if (blob->fw) |
| 3075 | goto out; |
| 3076 | |
| 3077 | if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { |
| 3078 | DEBUG2(printk("scsi(%ld): Failed to load firmware image " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3079 | "(%s).\n", vha->host_no, blob->name)); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3080 | blob->fw = NULL; |
| 3081 | blob = NULL; |
| 3082 | goto out; |
| 3083 | } |
| 3084 | |
| 3085 | out: |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3086 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3087 | return blob; |
| 3088 | } |
| 3089 | |
| 3090 | static void |
| 3091 | qla2x00_release_firmware(void) |
| 3092 | { |
| 3093 | int idx; |
| 3094 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3095 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3096 | for (idx = 0; idx < FW_BLOBS; idx++) |
| 3097 | if (qla_fw_blobs[idx].fw) |
| 3098 | release_firmware(qla_fw_blobs[idx].fw); |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3099 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3100 | } |
| 3101 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3102 | static pci_ers_result_t |
| 3103 | qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) |
| 3104 | { |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 3105 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3106 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3107 | switch (state) { |
| 3108 | case pci_channel_io_normal: |
| 3109 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 3110 | case pci_channel_io_frozen: |
| 3111 | pci_disable_device(pdev); |
| 3112 | return PCI_ERS_RESULT_NEED_RESET; |
| 3113 | case pci_channel_io_perm_failure: |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 3114 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3115 | return PCI_ERS_RESULT_DISCONNECT; |
| 3116 | } |
| 3117 | return PCI_ERS_RESULT_NEED_RESET; |
| 3118 | } |
| 3119 | |
| 3120 | static pci_ers_result_t |
| 3121 | qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) |
| 3122 | { |
| 3123 | int risc_paused = 0; |
| 3124 | uint32_t stat; |
| 3125 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3126 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3127 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3128 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 3129 | struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; |
| 3130 | |
| 3131 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 3132 | if (IS_QLA2100(ha) || IS_QLA2200(ha)){ |
| 3133 | stat = RD_REG_DWORD(®->hccr); |
| 3134 | if (stat & HCCR_RISC_PAUSE) |
| 3135 | risc_paused = 1; |
| 3136 | } else if (IS_QLA23XX(ha)) { |
| 3137 | stat = RD_REG_DWORD(®->u.isp2300.host_status); |
| 3138 | if (stat & HSR_RISC_PAUSED) |
| 3139 | risc_paused = 1; |
| 3140 | } else if (IS_FWI2_CAPABLE(ha)) { |
| 3141 | stat = RD_REG_DWORD(®24->host_status); |
| 3142 | if (stat & HSRX_RISC_PAUSED) |
| 3143 | risc_paused = 1; |
| 3144 | } |
| 3145 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 3146 | |
| 3147 | if (risc_paused) { |
| 3148 | qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, " |
| 3149 | "Dumping firmware!\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3150 | ha->isp_ops->fw_dump(base_vha, 0); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3151 | |
| 3152 | return PCI_ERS_RESULT_NEED_RESET; |
| 3153 | } else |
| 3154 | return PCI_ERS_RESULT_RECOVERED; |
| 3155 | } |
| 3156 | |
| 3157 | static pci_ers_result_t |
| 3158 | qla2xxx_pci_slot_reset(struct pci_dev *pdev) |
| 3159 | { |
| 3160 | pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3161 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3162 | struct qla_hw_data *ha = base_vha->hw; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 3163 | int rc; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3164 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 3165 | if (ha->mem_only) |
| 3166 | rc = pci_enable_device_mem(pdev); |
| 3167 | else |
| 3168 | rc = pci_enable_device(pdev); |
| 3169 | |
| 3170 | if (rc) { |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3171 | qla_printk(KERN_WARNING, ha, |
| 3172 | "Can't re-enable PCI device after reset.\n"); |
| 3173 | |
| 3174 | return ret; |
| 3175 | } |
| 3176 | pci_set_master(pdev); |
| 3177 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3178 | if (ha->isp_ops->pci_config(base_vha)) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3179 | return ret; |
| 3180 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3181 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 3182 | if (qla2x00_abort_isp(base_vha) == QLA_SUCCESS) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3183 | ret = PCI_ERS_RESULT_RECOVERED; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3184 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3185 | |
| 3186 | return ret; |
| 3187 | } |
| 3188 | |
| 3189 | static void |
| 3190 | qla2xxx_pci_resume(struct pci_dev *pdev) |
| 3191 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3192 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3193 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3194 | int ret; |
| 3195 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3196 | ret = qla2x00_wait_for_hba_online(base_vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3197 | if (ret != QLA_SUCCESS) { |
| 3198 | qla_printk(KERN_ERR, ha, |
| 3199 | "the device failed to resume I/O " |
| 3200 | "from slot/link_reset"); |
| 3201 | } |
| 3202 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 3203 | } |
| 3204 | |
| 3205 | static struct pci_error_handlers qla2xxx_err_handler = { |
| 3206 | .error_detected = qla2xxx_pci_error_detected, |
| 3207 | .mmio_enabled = qla2xxx_pci_mmio_enabled, |
| 3208 | .slot_reset = qla2xxx_pci_slot_reset, |
| 3209 | .resume = qla2xxx_pci_resume, |
| 3210 | }; |
| 3211 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3212 | static struct pci_device_id qla2xxx_pci_tbl[] = { |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 3213 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, |
| 3214 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, |
| 3215 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, |
| 3216 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, |
| 3217 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, |
| 3218 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, |
| 3219 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, |
| 3220 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, |
| 3221 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 3222 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 3223 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, |
| 3224 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3225 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3226 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3227 | { 0 }, |
| 3228 | }; |
| 3229 | MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); |
| 3230 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3231 | static struct pci_driver qla2xxx_pci_driver = { |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 3232 | .name = QLA2XXX_DRIVER_NAME, |
James Bottomley | 0a21ef1 | 2005-12-01 12:51:50 -0600 | [diff] [blame] | 3233 | .driver = { |
| 3234 | .owner = THIS_MODULE, |
| 3235 | }, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3236 | .id_table = qla2xxx_pci_tbl, |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 3237 | .probe = qla2x00_probe_one, |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 3238 | .remove = qla2x00_remove_one, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3239 | .err_handler = &qla2xxx_err_handler, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3240 | }; |
| 3241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | /** |
| 3243 | * qla2x00_module_init - Module initialization. |
| 3244 | **/ |
| 3245 | static int __init |
| 3246 | qla2x00_module_init(void) |
| 3247 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3248 | int ret = 0; |
| 3249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3250 | /* Allocate cache for SRBs. */ |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 3251 | srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 3252 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | if (srb_cachep == NULL) { |
| 3254 | printk(KERN_ERR |
| 3255 | "qla2xxx: Unable to allocate SRB cache...Failing load!\n"); |
| 3256 | return -ENOMEM; |
| 3257 | } |
| 3258 | |
| 3259 | /* Derive version string. */ |
| 3260 | strcpy(qla2x00_version_str, QLA2XXX_VERSION); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 3261 | if (ql2xextended_error_logging) |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 3262 | strcat(qla2x00_version_str, "-debug"); |
| 3263 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 3264 | qla2xxx_transport_template = |
| 3265 | fc_attach_transport(&qla2xxx_transport_functions); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3266 | if (!qla2xxx_transport_template) { |
| 3267 | kmem_cache_destroy(srb_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | return -ENODEV; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3269 | } |
| 3270 | qla2xxx_transport_vport_template = |
| 3271 | fc_attach_transport(&qla2xxx_transport_vport_functions); |
| 3272 | if (!qla2xxx_transport_vport_template) { |
| 3273 | kmem_cache_destroy(srb_cachep); |
| 3274 | fc_release_transport(qla2xxx_transport_template); |
| 3275 | return -ENODEV; |
| 3276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | |
Andrew Vasquez | fd9a29f0 | 2008-05-12 22:21:08 -0700 | [diff] [blame] | 3278 | printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n", |
| 3279 | qla2x00_version_str); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 3280 | ret = pci_register_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3281 | if (ret) { |
| 3282 | kmem_cache_destroy(srb_cachep); |
| 3283 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3284 | fc_release_transport(qla2xxx_transport_vport_template); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3285 | } |
| 3286 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | } |
| 3288 | |
| 3289 | /** |
| 3290 | * qla2x00_module_exit - Module cleanup. |
| 3291 | **/ |
| 3292 | static void __exit |
| 3293 | qla2x00_module_exit(void) |
| 3294 | { |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 3295 | pci_unregister_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3296 | qla2x00_release_firmware(); |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 3297 | kmem_cache_destroy(srb_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3299 | fc_release_transport(qla2xxx_transport_vport_template); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | } |
| 3301 | |
| 3302 | module_init(qla2x00_module_init); |
| 3303 | module_exit(qla2x00_module_exit); |
| 3304 | |
| 3305 | MODULE_AUTHOR("QLogic Corporation"); |
| 3306 | MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); |
| 3307 | MODULE_LICENSE("GPL"); |
| 3308 | MODULE_VERSION(QLA2XXX_VERSION); |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3309 | MODULE_FIRMWARE(FW_FILE_ISP21XX); |
| 3310 | MODULE_FIRMWARE(FW_FILE_ISP22XX); |
| 3311 | MODULE_FIRMWARE(FW_FILE_ISP2300); |
| 3312 | MODULE_FIRMWARE(FW_FILE_ISP2322); |
| 3313 | MODULE_FIRMWARE(FW_FILE_ISP24XX); |
Andrew Vasquez | 61623fc | 2008-01-31 12:33:45 -0800 | [diff] [blame] | 3314 | MODULE_FIRMWARE(FW_FILE_ISP25XX); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3315 | MODULE_FIRMWARE(FW_FILE_ISP81XX); |