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 |
Giridhar Malavali | de7c5d0 | 2010-07-23 15:28:36 +0500 | [diff] [blame] | 3 | * Copyright (c) 2003-2010 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> |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 14 | #include <linux/kobject.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include <scsi/scsi_tcq.h> |
| 18 | #include <scsi/scsicam.h> |
| 19 | #include <scsi/scsi_transport.h> |
| 20 | #include <scsi/scsi_transport_fc.h> |
| 21 | |
| 22 | /* |
| 23 | * Driver version |
| 24 | */ |
| 25 | char qla2x00_version_str[40]; |
| 26 | |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 27 | static int apidev_major; |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* |
| 30 | * SRB allocation cache |
| 31 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 32 | static struct kmem_cache *srb_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 34 | /* |
| 35 | * CT6 CTX allocation cache |
| 36 | */ |
| 37 | static struct kmem_cache *ctx_cachep; |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | int ql2xlogintimeout = 20; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 40 | module_param(ql2xlogintimeout, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | MODULE_PARM_DESC(ql2xlogintimeout, |
| 42 | "Login timeout value in seconds."); |
| 43 | |
Andrew Vasquez | a7b6184 | 2007-05-07 07:42:59 -0700 | [diff] [blame] | 44 | int qlport_down_retry; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 45 | module_param(qlport_down_retry, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | MODULE_PARM_DESC(qlport_down_retry, |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 47 | "Maximum number of command retries to a port that returns " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | "a PORT-DOWN status."); |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | int ql2xplogiabsentdevice; |
| 51 | module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR); |
| 52 | MODULE_PARM_DESC(ql2xplogiabsentdevice, |
| 53 | "Option to enable PLOGI to devices that are not present after " |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 54 | "a Fabric scan. This is needed for several broken switches. " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | "Default is 0 - no PLOGI. 1 - perfom PLOGI."); |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | int ql2xloginretrycount = 0; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 58 | module_param(ql2xloginretrycount, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | MODULE_PARM_DESC(ql2xloginretrycount, |
| 60 | "Specify an alternate value for the NVRAM login retry count."); |
| 61 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 62 | int ql2xallocfwdump = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 63 | module_param(ql2xallocfwdump, int, S_IRUGO); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 64 | MODULE_PARM_DESC(ql2xallocfwdump, |
| 65 | "Option to enable allocation of memory for a firmware dump " |
| 66 | "during HBA initialization. Memory allocation requirements " |
| 67 | "vary by ISP type. Default is 1 - allocate memory."); |
| 68 | |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 69 | int ql2xextended_error_logging; |
Andrew Vasquez | 27d9403 | 2007-03-12 10:41:30 -0700 | [diff] [blame] | 70 | module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 71 | MODULE_PARM_DESC(ql2xextended_error_logging, |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 72 | "Option to enable extended error logging, " |
| 73 | "Default is 0 - no logging. 1 - log errors."); |
| 74 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 75 | int ql2xshiftctondsd = 6; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 76 | module_param(ql2xshiftctondsd, int, S_IRUGO); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 77 | MODULE_PARM_DESC(ql2xshiftctondsd, |
| 78 | "Set to control shifting of command type processing " |
| 79 | "based on total number of SG elements."); |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | static void qla2x00_free_device(scsi_qla_host_t *); |
| 82 | |
Andrew Vasquez | 7e47e5c | 2008-04-24 15:21:26 -0700 | [diff] [blame] | 83 | int ql2xfdmienable=1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 84 | module_param(ql2xfdmienable, int, S_IRUGO); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 85 | MODULE_PARM_DESC(ql2xfdmienable, |
Ferenc Wagner | 7794a5a | 2010-03-23 18:14:59 +0100 | [diff] [blame] | 86 | "Enables FDMI registrations. " |
| 87 | "0 - no FDMI. Default is 1 - perform FDMI."); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 88 | |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 89 | #define MAX_Q_DEPTH 32 |
| 90 | static int ql2xmaxqdepth = MAX_Q_DEPTH; |
| 91 | module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR); |
| 92 | MODULE_PARM_DESC(ql2xmaxqdepth, |
| 93 | "Maximum queue depth to report for target devices."); |
| 94 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 95 | /* Do not change the value of this after module load */ |
| 96 | int ql2xenabledif = 1; |
| 97 | module_param(ql2xenabledif, int, S_IRUGO|S_IWUSR); |
| 98 | MODULE_PARM_DESC(ql2xenabledif, |
| 99 | " Enable T10-CRC-DIF " |
| 100 | " Default is 0 - No DIF Support. 1 - Enable it"); |
| 101 | |
| 102 | int ql2xenablehba_err_chk; |
| 103 | module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR); |
| 104 | MODULE_PARM_DESC(ql2xenablehba_err_chk, |
| 105 | " Enable T10-CRC-DIF Error isolation by HBA" |
| 106 | " Default is 0 - Error isolation disabled, 1 - Enable it"); |
| 107 | |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 108 | int ql2xiidmaenable=1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 109 | module_param(ql2xiidmaenable, int, S_IRUGO); |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 110 | MODULE_PARM_DESC(ql2xiidmaenable, |
| 111 | "Enables iIDMA settings " |
| 112 | "Default is 1 - perform iIDMA. 0 - no iIDMA."); |
| 113 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 114 | int ql2xmaxqueues = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 115 | module_param(ql2xmaxqueues, int, S_IRUGO); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 116 | MODULE_PARM_DESC(ql2xmaxqueues, |
| 117 | "Enables MQ settings " |
Joe Perches | ae68230 | 2010-08-10 18:01:21 -0700 | [diff] [blame] | 118 | "Default is 1 for single queue. Set it to number " |
| 119 | "of queues in MQ mode."); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 120 | |
| 121 | int ql2xmultique_tag; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 122 | module_param(ql2xmultique_tag, int, S_IRUGO); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 123 | MODULE_PARM_DESC(ql2xmultique_tag, |
| 124 | "Enables CPU affinity settings for the driver " |
| 125 | "Default is 0 for no affinity of request and response IO. " |
| 126 | "Set it to 1 to turn on the cpu affinity."); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 127 | |
| 128 | int ql2xfwloadbin; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 129 | module_param(ql2xfwloadbin, int, S_IRUGO); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 130 | MODULE_PARM_DESC(ql2xfwloadbin, |
| 131 | "Option to specify location from which to load ISP firmware:\n" |
| 132 | " 2 -- load firmware via the request_firmware() (hotplug)\n" |
| 133 | " interface.\n" |
| 134 | " 1 -- load firmware from flash.\n" |
| 135 | " 0 -- use default semantics.\n"); |
| 136 | |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 137 | int ql2xetsenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 138 | module_param(ql2xetsenable, int, S_IRUGO); |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 139 | MODULE_PARM_DESC(ql2xetsenable, |
| 140 | "Enables firmware ETS burst." |
| 141 | "Default is 0 - skip ETS enablement."); |
| 142 | |
Giridhar Malavali | 6907869 | 2010-05-28 15:08:28 -0700 | [diff] [blame] | 143 | int ql2xdbwr = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 144 | module_param(ql2xdbwr, int, S_IRUGO); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 145 | MODULE_PARM_DESC(ql2xdbwr, |
| 146 | "Option to specify scheme for request queue posting\n" |
| 147 | " 0 -- Regular doorbell.\n" |
| 148 | " 1 -- CAMRAM doorbell (faster).\n"); |
| 149 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 150 | int ql2xtargetreset = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 151 | module_param(ql2xtargetreset, int, S_IRUGO); |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 152 | MODULE_PARM_DESC(ql2xtargetreset, |
| 153 | "Enable target reset." |
| 154 | "Default is 1 - use hw defaults."); |
| 155 | |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 156 | int ql2xgffidenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 157 | module_param(ql2xgffidenable, int, S_IRUGO); |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 158 | MODULE_PARM_DESC(ql2xgffidenable, |
| 159 | "Enables GFF_ID checks of port type. " |
| 160 | "Default is 0 - Do not use GFF_ID information."); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 161 | |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 162 | int ql2xasynctmfenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 163 | module_param(ql2xasynctmfenable, int, S_IRUGO); |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 164 | MODULE_PARM_DESC(ql2xasynctmfenable, |
| 165 | "Enables issue of TM IOCBs asynchronously via IOCB mechanism" |
| 166 | "Default is 0 - Issue TM IOCBs via mailbox mechanism."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 168 | * SCSI host template entry points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | */ |
| 170 | static int qla2xxx_slave_configure(struct scsi_device * device); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 171 | static int qla2xxx_slave_alloc(struct scsi_device *); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 172 | static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time); |
| 173 | static void qla2xxx_scan_start(struct Scsi_Host *); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 174 | static void qla2xxx_slave_destroy(struct scsi_device *); |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 175 | static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | static int qla2xxx_eh_abort(struct scsi_cmnd *); |
| 177 | static int qla2xxx_eh_device_reset(struct scsi_cmnd *); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 178 | static int qla2xxx_eh_target_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | static int qla2xxx_eh_bus_reset(struct scsi_cmnd *); |
| 180 | static int qla2xxx_eh_host_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 182 | static int qla2x00_change_queue_depth(struct scsi_device *, int, int); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 183 | static int qla2x00_change_queue_type(struct scsi_device *, int); |
| 184 | |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 185 | struct scsi_host_template qla2xxx_driver_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | .module = THIS_MODULE, |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 187 | .name = QLA2XXX_DRIVER_NAME, |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 188 | .queuecommand = qla2xxx_queuecommand, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 189 | |
| 190 | .eh_abort_handler = qla2xxx_eh_abort, |
| 191 | .eh_device_reset_handler = qla2xxx_eh_device_reset, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 192 | .eh_target_reset_handler = qla2xxx_eh_target_reset, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 193 | .eh_bus_reset_handler = qla2xxx_eh_bus_reset, |
| 194 | .eh_host_reset_handler = qla2xxx_eh_host_reset, |
| 195 | |
| 196 | .slave_configure = qla2xxx_slave_configure, |
| 197 | |
| 198 | .slave_alloc = qla2xxx_slave_alloc, |
| 199 | .slave_destroy = qla2xxx_slave_destroy, |
Andrew Vasquez | ed67708 | 2007-03-12 10:41:27 -0700 | [diff] [blame] | 200 | .scan_finished = qla2xxx_scan_finished, |
| 201 | .scan_start = qla2xxx_scan_start, |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 202 | .change_queue_depth = qla2x00_change_queue_depth, |
| 203 | .change_queue_type = qla2x00_change_queue_type, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 204 | .this_id = -1, |
| 205 | .cmd_per_lun = 3, |
| 206 | .use_clustering = ENABLE_CLUSTERING, |
| 207 | .sg_tablesize = SG_ALL, |
| 208 | |
| 209 | .max_sectors = 0xFFFF, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 210 | .shost_attrs = qla2x00_host_attrs, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | static struct scsi_transport_template *qla2xxx_transport_template = NULL; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 214 | struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | /* TODO Convert to inlines |
| 217 | * |
| 218 | * Timer routines |
| 219 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 221 | __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 222 | 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] | 223 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 224 | init_timer(&vha->timer); |
| 225 | vha->timer.expires = jiffies + interval * HZ; |
| 226 | vha->timer.data = (unsigned long)vha; |
| 227 | vha->timer.function = (void (*)(unsigned long))func; |
| 228 | add_timer(&vha->timer); |
| 229 | vha->timer_active = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 233 | qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 235 | /* Currently used for 82XX only. */ |
| 236 | if (vha->device_flags & DFLG_DEV_FAILED) |
| 237 | return; |
| 238 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 239 | mod_timer(&vha->timer, jiffies + interval * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 242 | static __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 243 | qla2x00_stop_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 245 | del_timer_sync(&vha->timer); |
| 246 | vha->timer_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | static int qla2x00_do_dpc(void *data); |
| 250 | |
| 251 | static void qla2x00_rst_aen(scsi_qla_host_t *); |
| 252 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 253 | static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, |
| 254 | struct req_que **, struct rsp_que **); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 255 | static void qla2x00_free_fw_dump(struct qla_hw_data *); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 256 | static void qla2x00_mem_free(struct qla_hw_data *); |
| 257 | static void qla2x00_sp_free_dma(srb_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | /* -------------------------------------------------------------------------- */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 260 | static int qla2x00_alloc_queues(struct qla_hw_data *ha) |
| 261 | { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 262 | 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] | 263 | GFP_KERNEL); |
| 264 | if (!ha->req_q_map) { |
| 265 | qla_printk(KERN_WARNING, ha, |
| 266 | "Unable to allocate memory for request queue ptrs\n"); |
| 267 | goto fail_req_map; |
| 268 | } |
| 269 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 270 | 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] | 271 | GFP_KERNEL); |
| 272 | if (!ha->rsp_q_map) { |
| 273 | qla_printk(KERN_WARNING, ha, |
| 274 | "Unable to allocate memory for response queue ptrs\n"); |
| 275 | goto fail_rsp_map; |
| 276 | } |
| 277 | set_bit(0, ha->rsp_qid_map); |
| 278 | set_bit(0, ha->req_qid_map); |
| 279 | return 1; |
| 280 | |
| 281 | fail_rsp_map: |
| 282 | kfree(ha->req_q_map); |
| 283 | ha->req_q_map = NULL; |
| 284 | fail_req_map: |
| 285 | return -ENOMEM; |
| 286 | } |
| 287 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 288 | 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] | 289 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 290 | if (req && req->ring) |
| 291 | dma_free_coherent(&ha->pdev->dev, |
| 292 | (req->length + 1) * sizeof(request_t), |
| 293 | req->ring, req->dma); |
| 294 | |
| 295 | kfree(req); |
| 296 | req = NULL; |
| 297 | } |
| 298 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 299 | static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) |
| 300 | { |
| 301 | if (rsp && rsp->ring) |
| 302 | dma_free_coherent(&ha->pdev->dev, |
| 303 | (rsp->length + 1) * sizeof(response_t), |
| 304 | rsp->ring, rsp->dma); |
| 305 | |
| 306 | kfree(rsp); |
| 307 | rsp = NULL; |
| 308 | } |
| 309 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 310 | static void qla2x00_free_queues(struct qla_hw_data *ha) |
| 311 | { |
| 312 | struct req_que *req; |
| 313 | struct rsp_que *rsp; |
| 314 | int cnt; |
| 315 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 316 | for (cnt = 0; cnt < ha->max_req_queues; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 317 | req = ha->req_q_map[cnt]; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 318 | qla2x00_free_req_que(ha, req); |
| 319 | } |
| 320 | kfree(ha->req_q_map); |
| 321 | ha->req_q_map = NULL; |
| 322 | |
| 323 | for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { |
| 324 | rsp = ha->rsp_q_map[cnt]; |
| 325 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 326 | } |
| 327 | kfree(ha->rsp_q_map); |
| 328 | ha->rsp_q_map = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 329 | } |
| 330 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 331 | static int qla25xx_setup_mode(struct scsi_qla_host *vha) |
| 332 | { |
| 333 | uint16_t options = 0; |
| 334 | int ques, req, ret; |
| 335 | struct qla_hw_data *ha = vha->hw; |
| 336 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 337 | if (!(ha->fw_attributes & BIT_6)) { |
| 338 | qla_printk(KERN_INFO, ha, |
| 339 | "Firmware is not multi-queue capable\n"); |
| 340 | goto fail; |
| 341 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 342 | if (ql2xmultique_tag) { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 343 | /* create a request queue for IO */ |
| 344 | options |= BIT_7; |
| 345 | req = qla25xx_create_req_que(ha, options, 0, 0, -1, |
| 346 | QLA_DEFAULT_QUE_QOS); |
| 347 | if (!req) { |
| 348 | qla_printk(KERN_WARNING, ha, |
| 349 | "Can't create request queue\n"); |
| 350 | goto fail; |
| 351 | } |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 352 | ha->wq = create_workqueue("qla2xxx_wq"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 353 | vha->req = ha->req_q_map[req]; |
| 354 | options |= BIT_1; |
| 355 | for (ques = 1; ques < ha->max_rsp_queues; ques++) { |
| 356 | ret = qla25xx_create_rsp_que(ha, options, 0, 0, req); |
| 357 | if (!ret) { |
| 358 | qla_printk(KERN_WARNING, ha, |
| 359 | "Response Queue create failed\n"); |
| 360 | goto fail2; |
| 361 | } |
| 362 | } |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 363 | ha->flags.cpu_affinity_enabled = 1; |
| 364 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 365 | DEBUG2(qla_printk(KERN_INFO, ha, |
| 366 | "CPU affinity mode enabled, no. of response" |
| 367 | " queues:%d, no. of request queues:%d\n", |
| 368 | ha->max_rsp_queues, ha->max_req_queues)); |
| 369 | } |
| 370 | return 0; |
| 371 | fail2: |
| 372 | qla25xx_delete_queues(vha); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 373 | destroy_workqueue(ha->wq); |
| 374 | ha->wq = NULL; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 375 | fail: |
| 376 | ha->mqenable = 0; |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 377 | kfree(ha->req_q_map); |
| 378 | kfree(ha->rsp_q_map); |
| 379 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 380 | return 1; |
| 381 | } |
| 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 384 | qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 386 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | static char *pci_bus_modes[] = { |
| 388 | "33", "66", "100", "133", |
| 389 | }; |
| 390 | uint16_t pci_bus; |
| 391 | |
| 392 | strcpy(str, "PCI"); |
| 393 | pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; |
| 394 | if (pci_bus) { |
| 395 | strcat(str, "-X ("); |
| 396 | strcat(str, pci_bus_modes[pci_bus]); |
| 397 | } else { |
| 398 | pci_bus = (ha->pci_attr & BIT_8) >> 8; |
| 399 | strcat(str, " ("); |
| 400 | strcat(str, pci_bus_modes[pci_bus]); |
| 401 | } |
| 402 | strcat(str, " MHz)"); |
| 403 | |
| 404 | return (str); |
| 405 | } |
| 406 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 407 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 408 | qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 409 | { |
| 410 | static char *pci_bus_modes[] = { "33", "66", "100", "133", }; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 411 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 412 | uint32_t pci_bus; |
| 413 | int pcie_reg; |
| 414 | |
| 415 | pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP); |
| 416 | if (pcie_reg) { |
| 417 | char lwstr[6]; |
| 418 | uint16_t pcie_lstat, lspeed, lwidth; |
| 419 | |
| 420 | pcie_reg += 0x12; |
| 421 | pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat); |
| 422 | lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3); |
| 423 | lwidth = (pcie_lstat & |
| 424 | (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4; |
| 425 | |
| 426 | strcpy(str, "PCIe ("); |
| 427 | if (lspeed == 1) |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 428 | strcat(str, "2.5GT/s "); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 429 | else if (lspeed == 2) |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 430 | strcat(str, "5.0GT/s "); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 431 | else |
| 432 | strcat(str, "<unknown> "); |
| 433 | snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); |
| 434 | strcat(str, lwstr); |
| 435 | |
| 436 | return str; |
| 437 | } |
| 438 | |
| 439 | strcpy(str, "PCI"); |
| 440 | pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; |
| 441 | if (pci_bus == 0 || pci_bus == 8) { |
| 442 | strcat(str, " ("); |
| 443 | strcat(str, pci_bus_modes[pci_bus >> 3]); |
| 444 | } else { |
| 445 | strcat(str, "-X "); |
| 446 | if (pci_bus & BIT_2) |
| 447 | strcat(str, "Mode 2"); |
| 448 | else |
| 449 | strcat(str, "Mode 1"); |
| 450 | strcat(str, " ("); |
| 451 | strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); |
| 452 | } |
| 453 | strcat(str, " MHz)"); |
| 454 | |
| 455 | return str; |
| 456 | } |
| 457 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 458 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 459 | qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
| 461 | char un_str[10]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 462 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | sprintf(str, "%d.%02d.%02d ", ha->fw_major_version, |
| 465 | ha->fw_minor_version, |
| 466 | ha->fw_subminor_version); |
| 467 | |
| 468 | if (ha->fw_attributes & BIT_9) { |
| 469 | strcat(str, "FLX"); |
| 470 | return (str); |
| 471 | } |
| 472 | |
| 473 | switch (ha->fw_attributes & 0xFF) { |
| 474 | case 0x7: |
| 475 | strcat(str, "EF"); |
| 476 | break; |
| 477 | case 0x17: |
| 478 | strcat(str, "TP"); |
| 479 | break; |
| 480 | case 0x37: |
| 481 | strcat(str, "IP"); |
| 482 | break; |
| 483 | case 0x77: |
| 484 | strcat(str, "VI"); |
| 485 | break; |
| 486 | default: |
| 487 | sprintf(un_str, "(%x)", ha->fw_attributes); |
| 488 | strcat(str, un_str); |
| 489 | break; |
| 490 | } |
| 491 | if (ha->fw_attributes & 0x100) |
| 492 | strcat(str, "X"); |
| 493 | |
| 494 | return (str); |
| 495 | } |
| 496 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 497 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 498 | qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 499 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 500 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | f0883ac | 2005-07-08 17:58:43 -0700 | [diff] [blame] | 501 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 502 | sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version, |
| 503 | ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 504 | return str; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | static inline srb_t * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 508 | qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport, |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 509 | struct scsi_cmnd *cmd) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 510 | { |
| 511 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 512 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 513 | |
| 514 | sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC); |
| 515 | if (!sp) |
| 516 | return sp; |
| 517 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 518 | atomic_set(&sp->ref_count, 1); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 519 | sp->fcport = fcport; |
| 520 | sp->cmd = cmd; |
| 521 | sp->flags = 0; |
| 522 | CMD_SP(cmd) = (void *)sp; |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 523 | sp->ctx = NULL; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 524 | |
| 525 | return sp; |
| 526 | } |
| 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | static int |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 529 | qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 530 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 531 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 532 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 533 | struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 534 | struct qla_hw_data *ha = vha->hw; |
| 535 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 536 | srb_t *sp; |
| 537 | int rval; |
| 538 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 539 | if (ha->flags.eeh_busy) { |
| 540 | if (ha->flags.pci_channel_io_perm_failure) |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 541 | cmd->result = DID_NO_CONNECT << 16; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 542 | else |
| 543 | cmd->result = DID_REQUEUE << 16; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 544 | goto qc24_fail_command; |
| 545 | } |
| 546 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 547 | rval = fc_remote_port_chkready(rport); |
| 548 | if (rval) { |
| 549 | cmd->result = rval; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 550 | goto qc24_fail_command; |
| 551 | } |
| 552 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 553 | if (!vha->flags.difdix_supported && |
| 554 | scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) { |
| 555 | DEBUG2(qla_printk(KERN_ERR, ha, |
| 556 | "DIF Cap Not Reg, fail DIF capable cmd's:%x\n", |
| 557 | cmd->cmnd[0])); |
| 558 | cmd->result = DID_NO_CONNECT << 16; |
| 559 | goto qc24_fail_command; |
| 560 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 561 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
| 562 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 563 | atomic_read(&fcport->state) == FCS_DEVICE_LOST || |
| 564 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 565 | cmd->result = DID_NO_CONNECT << 16; |
| 566 | goto qc24_fail_command; |
| 567 | } |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 568 | goto qc24_target_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 571 | sp = qla2x00_get_new_sp(base_vha, fcport, cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 572 | if (!sp) |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 573 | goto qc24_host_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 574 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 575 | rval = ha->isp_ops->start_scsi(sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 576 | if (rval != QLA_SUCCESS) |
| 577 | goto qc24_host_busy_free_sp; |
| 578 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 579 | return 0; |
| 580 | |
| 581 | qc24_host_busy_free_sp: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 582 | qla2x00_sp_free_dma(sp); |
| 583 | mempool_free(sp, ha->srb_mempool); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 584 | |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 585 | qc24_host_busy: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 586 | return SCSI_MLQUEUE_HOST_BUSY; |
| 587 | |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 588 | qc24_target_busy: |
| 589 | return SCSI_MLQUEUE_TARGET_BUSY; |
| 590 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 591 | qc24_fail_command: |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame^] | 592 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 593 | |
| 594 | return 0; |
| 595 | } |
| 596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | /* |
| 598 | * qla2x00_eh_wait_on_command |
| 599 | * Waits for the command to be returned by the Firmware for some |
| 600 | * max time. |
| 601 | * |
| 602 | * Input: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | * cmd = Scsi Command to wait on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | * |
| 605 | * Return: |
| 606 | * Not Found : 0 |
| 607 | * Found : 1 |
| 608 | */ |
| 609 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 610 | qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 612 | #define ABORT_POLLING_PERIOD 1000 |
| 613 | #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 614 | unsigned long wait_iter = ABORT_WAIT_ITER; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 615 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 616 | struct qla_hw_data *ha = vha->hw; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 617 | int ret = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 619 | if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) { |
| 620 | DEBUG17(qla_printk(KERN_WARNING, ha, "return:eh_wait\n")); |
| 621 | return ret; |
| 622 | } |
| 623 | |
Lalit Chandivade | d970432 | 2009-08-25 11:36:18 -0700 | [diff] [blame] | 624 | while (CMD_SP(cmd) && wait_iter--) { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 625 | msleep(ABORT_POLLING_PERIOD); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 626 | } |
| 627 | if (CMD_SP(cmd)) |
| 628 | ret = QLA_FUNCTION_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 630 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | /* |
| 634 | * qla2x00_wait_for_hba_online |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 635 | * Wait till the HBA is online after going through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 637 | * finally HBA is disabled ie marked offline |
| 638 | * |
| 639 | * Input: |
| 640 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 641 | * |
| 642 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | * Does context switching-Release SPIN_LOCK |
| 644 | * (if any) before calling this routine. |
| 645 | * |
| 646 | * Return: |
| 647 | * Success (Adapter is online) : 0 |
| 648 | * Failed (Adapter is offline/disabled) : 1 |
| 649 | */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 650 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 651 | qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 653 | int return_status; |
| 654 | unsigned long wait_online; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 655 | struct qla_hw_data *ha = vha->hw; |
| 656 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 658 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 659 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 660 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 661 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 662 | ha->dpc_active) && time_before(jiffies, wait_online)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
| 664 | msleep(1000); |
| 665 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 666 | if (base_vha->flags.online) |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 667 | return_status = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | else |
| 669 | return_status = QLA_FUNCTION_FAILED; |
| 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | return (return_status); |
| 672 | } |
| 673 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 674 | /* |
| 675 | * qla2x00_wait_for_reset_ready |
| 676 | * Wait till the HBA is online after going through |
| 677 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 678 | * finally HBA is disabled ie marked offline or flash |
| 679 | * operations are in progress. |
| 680 | * |
| 681 | * Input: |
| 682 | * ha - pointer to host adapter structure |
| 683 | * |
| 684 | * Note: |
| 685 | * Does context switching-Release SPIN_LOCK |
| 686 | * (if any) before calling this routine. |
| 687 | * |
| 688 | * Return: |
| 689 | * Success (Adapter is online/no flash ops) : 0 |
| 690 | * Failed (Adapter is offline/disabled/flash ops in progress) : 1 |
| 691 | */ |
Andrew Vasquez | 3dbe756 | 2010-07-23 15:28:37 +0500 | [diff] [blame] | 692 | static int |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 693 | qla2x00_wait_for_reset_ready(scsi_qla_host_t *vha) |
| 694 | { |
| 695 | int return_status; |
| 696 | unsigned long wait_online; |
| 697 | struct qla_hw_data *ha = vha->hw; |
| 698 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 699 | |
| 700 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 701 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 702 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 703 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 704 | ha->optrom_state != QLA_SWAITING || |
| 705 | ha->dpc_active) && time_before(jiffies, wait_online)) |
| 706 | msleep(1000); |
| 707 | |
| 708 | if (base_vha->flags.online && ha->optrom_state == QLA_SWAITING) |
| 709 | return_status = QLA_SUCCESS; |
| 710 | else |
| 711 | return_status = QLA_FUNCTION_FAILED; |
| 712 | |
| 713 | DEBUG2(printk("%s return_status=%d\n", __func__, return_status)); |
| 714 | |
| 715 | return return_status; |
| 716 | } |
| 717 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 718 | int |
| 719 | qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) |
| 720 | { |
| 721 | int return_status; |
| 722 | unsigned long wait_reset; |
| 723 | struct qla_hw_data *ha = vha->hw; |
| 724 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 725 | |
| 726 | wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 727 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 728 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 729 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 730 | ha->dpc_active) && time_before(jiffies, wait_reset)) { |
| 731 | |
| 732 | msleep(1000); |
| 733 | |
| 734 | if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && |
| 735 | ha->flags.chip_reset_done) |
| 736 | break; |
| 737 | } |
| 738 | if (ha->flags.chip_reset_done) |
| 739 | return_status = QLA_SUCCESS; |
| 740 | else |
| 741 | return_status = QLA_FUNCTION_FAILED; |
| 742 | |
| 743 | return return_status; |
| 744 | } |
| 745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | /* |
| 747 | * qla2x00_wait_for_loop_ready |
| 748 | * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 749 | * to be in LOOP_READY state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | * Input: |
| 751 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 752 | * |
| 753 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | * Does context switching-Release SPIN_LOCK |
| 755 | * (if any) before calling this routine. |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 756 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | * |
| 758 | * Return: |
| 759 | * Success (LOOP_READY) : 0 |
| 760 | * Failed (LOOP_NOT_READY) : 1 |
| 761 | */ |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 762 | static inline int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 763 | qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | { |
| 765 | int return_status = QLA_SUCCESS; |
| 766 | unsigned long loop_timeout ; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 767 | struct qla_hw_data *ha = vha->hw; |
| 768 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | /* wait for 5 min at the max for loop to be ready */ |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 771 | loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 773 | while ((!atomic_read(&base_vha->loop_down_timer) && |
| 774 | atomic_read(&base_vha->loop_state) == LOOP_DOWN) || |
| 775 | atomic_read(&base_vha->loop_state) != LOOP_READY) { |
| 776 | if (atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Ravi Anand | 5768008 | 2006-05-17 15:08:44 -0700 | [diff] [blame] | 777 | return_status = QLA_FUNCTION_FAILED; |
| 778 | break; |
| 779 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | msleep(1000); |
| 781 | if (time_after_eq(jiffies, loop_timeout)) { |
| 782 | return_status = QLA_FUNCTION_FAILED; |
| 783 | break; |
| 784 | } |
| 785 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 786 | return (return_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 789 | static void |
| 790 | sp_get(struct srb *sp) |
| 791 | { |
| 792 | atomic_inc(&sp->ref_count); |
| 793 | } |
| 794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | /************************************************************************** |
| 796 | * qla2xxx_eh_abort |
| 797 | * |
| 798 | * Description: |
| 799 | * The abort function will abort the specified command. |
| 800 | * |
| 801 | * Input: |
| 802 | * cmd = Linux SCSI command packet to be aborted. |
| 803 | * |
| 804 | * Returns: |
| 805 | * Either SUCCESS or FAILED. |
| 806 | * |
| 807 | * Note: |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 808 | * Only return FAILED if command not returned by firmware. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 810 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | qla2xxx_eh_abort(struct scsi_cmnd *cmd) |
| 812 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 813 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 814 | srb_t *sp; |
Saurav Kashyap | 69abf61 | 2010-11-23 16:52:49 -0800 | [diff] [blame] | 815 | int ret = SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 816 | unsigned int id, lun; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 817 | unsigned long flags; |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 818 | int wait = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 819 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
Christof Schmitt | 65d430f | 2009-10-30 17:59:29 +0100 | [diff] [blame] | 821 | fc_block_scsi_eh(cmd); |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 822 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 823 | if (!CMD_SP(cmd)) |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 824 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 826 | id = cmd->device->id; |
| 827 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 828 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 829 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 830 | sp = (srb_t *) CMD_SP(cmd); |
| 831 | if (!sp) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 832 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 833 | return SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 834 | } |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 835 | |
| 836 | DEBUG2(printk("%s(%ld): aborting sp %p from RISC.", |
| 837 | __func__, vha->host_no, sp)); |
| 838 | |
| 839 | /* Get a reference to the sp and drop the lock.*/ |
| 840 | sp_get(sp); |
| 841 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 842 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 843 | if (ha->isp_ops->abort_command(sp)) { |
| 844 | DEBUG2(printk("%s(%ld): abort_command " |
| 845 | "mbx failed.\n", __func__, vha->host_no)); |
| 846 | ret = FAILED; |
| 847 | } else { |
| 848 | DEBUG3(printk("%s(%ld): abort_command " |
| 849 | "mbx success.\n", __func__, vha->host_no)); |
| 850 | wait = 1; |
| 851 | } |
| 852 | qla2x00_sp_compl(ha, sp); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 853 | |
| 854 | /* Wait for the command to be returned. */ |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 855 | if (wait) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 856 | if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) { |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 857 | qla_printk(KERN_ERR, ha, |
Madhuranath Iyengar | 09d1dc2 | 2010-10-15 11:27:44 -0700 | [diff] [blame] | 858 | "scsi(%ld:%d:%d): Abort handler timed out -- %x.\n", |
| 859 | vha->host_no, id, lun, ret); |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 860 | ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 864 | qla_printk(KERN_INFO, ha, |
Madhuranath Iyengar | 09d1dc2 | 2010-10-15 11:27:44 -0700 | [diff] [blame] | 865 | "scsi(%ld:%d:%d): Abort command issued -- %d %x.\n", |
| 866 | vha->host_no, id, lun, wait, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 868 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 871 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 872 | qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t, |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 873 | unsigned int l, enum nexus_wait_type type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 875 | int cnt, match, status; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 876 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 877 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 878 | struct req_que *req; |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 879 | srb_t *sp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 881 | status = QLA_SUCCESS; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 882 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 883 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 884 | req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 885 | for (cnt = 1; status == QLA_SUCCESS && |
| 886 | cnt < MAX_OUTSTANDING_COMMANDS; cnt++) { |
| 887 | sp = req->outstanding_cmds[cnt]; |
| 888 | if (!sp) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 889 | continue; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 890 | if ((sp->ctx) && !IS_PROT_IO(sp)) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 891 | continue; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 892 | if (vha->vp_idx != sp->fcport->vha->vp_idx) |
| 893 | continue; |
| 894 | match = 0; |
| 895 | switch (type) { |
| 896 | case WAIT_HOST: |
| 897 | match = 1; |
| 898 | break; |
| 899 | case WAIT_TARGET: |
| 900 | match = sp->cmd->device->id == t; |
| 901 | break; |
| 902 | case WAIT_LUN: |
| 903 | match = (sp->cmd->device->id == t && |
| 904 | sp->cmd->device->lun == l); |
| 905 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 907 | if (!match) |
| 908 | continue; |
| 909 | |
| 910 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 911 | status = qla2x00_eh_wait_on_command(sp->cmd); |
| 912 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 914 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 915 | |
| 916 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
| 918 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 919 | static char *reset_errors[] = { |
| 920 | "HBA not online", |
| 921 | "HBA not ready", |
| 922 | "Task management failed", |
| 923 | "Waiting for command completions", |
| 924 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 926 | static int |
| 927 | __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 928 | 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] | 929 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 930 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 931 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
| 932 | int err; |
| 933 | |
Christof Schmitt | 65d430f | 2009-10-30 17:59:29 +0100 | [diff] [blame] | 934 | fc_block_scsi_eh(cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 935 | |
| 936 | if (!fcport) |
| 937 | return FAILED; |
| 938 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 939 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET ISSUED.\n", |
| 940 | vha->host_no, cmd->device->id, cmd->device->lun, name); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 941 | |
| 942 | err = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 943 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 944 | goto eh_reset_failed; |
| 945 | err = 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 946 | if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 947 | goto eh_reset_failed; |
| 948 | err = 2; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 949 | if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1) |
| 950 | != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 951 | goto eh_reset_failed; |
| 952 | err = 3; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 953 | if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 954 | cmd->device->lun, type) != QLA_SUCCESS) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 955 | goto eh_reset_failed; |
| 956 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 957 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n", |
| 958 | vha->host_no, cmd->device->id, cmd->device->lun, name); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 959 | |
| 960 | return SUCCESS; |
| 961 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 962 | eh_reset_failed: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 963 | qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n" |
| 964 | , vha->host_no, cmd->device->id, cmd->device->lun, name, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 965 | reset_errors[err]); |
| 966 | return FAILED; |
| 967 | } |
| 968 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 969 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) |
| 971 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 972 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 973 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 975 | return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, |
| 976 | ha->isp_ops->lun_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
| 978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | static int |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 980 | qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 982 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 983 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 985 | return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, |
| 986 | ha->isp_ops->target_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | } |
| 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | /************************************************************************** |
| 990 | * qla2xxx_eh_bus_reset |
| 991 | * |
| 992 | * Description: |
| 993 | * The bus reset function will reset the bus and abort any executing |
| 994 | * commands. |
| 995 | * |
| 996 | * Input: |
| 997 | * cmd = Linux SCSI command packet of the command that cause the |
| 998 | * bus reset. |
| 999 | * |
| 1000 | * Returns: |
| 1001 | * SUCCESS/FAILURE (defined as macro in scsi.h). |
| 1002 | * |
| 1003 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1004 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) |
| 1006 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1007 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1008 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1009 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1010 | unsigned int id, lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Christof Schmitt | 65d430f | 2009-10-30 17:59:29 +0100 | [diff] [blame] | 1012 | fc_block_scsi_eh(cmd); |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 1013 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1014 | id = cmd->device->id; |
| 1015 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1016 | |
Vladislav Bolkhovitin | b0328be | 2006-08-01 13:48:15 -0700 | [diff] [blame] | 1017 | if (!fcport) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1018 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1020 | qla_printk(KERN_INFO, vha->hw, |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1021 | "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] | 1022 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1023 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | DEBUG2(printk("%s failed:board disabled\n",__func__)); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1025 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | } |
| 1027 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1028 | if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) { |
| 1029 | if (qla2x00_loop_reset(vha) == QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1030 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | } |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1032 | if (ret == FAILED) |
| 1033 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1035 | /* Flush outstanding commands. */ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1036 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) != |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1037 | QLA_SUCCESS) |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1038 | ret = FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1040 | eh_bus_reset_done: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1041 | qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__, |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1042 | (ret == FAILED) ? "failed" : "succeded"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1044 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | /************************************************************************** |
| 1048 | * qla2xxx_eh_host_reset |
| 1049 | * |
| 1050 | * Description: |
| 1051 | * The reset function will reset the Adapter. |
| 1052 | * |
| 1053 | * Input: |
| 1054 | * cmd = Linux SCSI command packet of the command that cause the |
| 1055 | * adapter reset. |
| 1056 | * |
| 1057 | * Returns: |
| 1058 | * Either SUCCESS or FAILED. |
| 1059 | * |
| 1060 | * Note: |
| 1061 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1062 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) |
| 1064 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1065 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1066 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1067 | struct qla_hw_data *ha = vha->hw; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1068 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1069 | unsigned int id, lun; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1070 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | |
Christof Schmitt | 65d430f | 2009-10-30 17:59:29 +0100 | [diff] [blame] | 1072 | fc_block_scsi_eh(cmd); |
Andrew Vasquez | 07db518 | 2006-10-02 12:00:49 -0700 | [diff] [blame] | 1073 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1074 | id = cmd->device->id; |
| 1075 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1076 | |
Vladislav Bolkhovitin | b0328be | 2006-08-01 13:48:15 -0700 | [diff] [blame] | 1077 | if (!fcport) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1078 | return ret; |
| 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | qla_printk(KERN_INFO, ha, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1081 | "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] | 1082 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 1083 | if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1084 | goto eh_host_reset_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
| 1086 | /* |
| 1087 | * Fixme-may be dpc thread is active and processing |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1088 | * loop_resync,so wait a while for it to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | * be completed and then issue big hammer.Otherwise |
| 1090 | * it may cause I/O failure as big hammer marks the |
| 1091 | * devices as lost kicking of the port_down_timer |
| 1092 | * while dpc is stuck for the mailbox to complete. |
| 1093 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1094 | qla2x00_wait_for_loop_ready(vha); |
| 1095 | if (vha != base_vha) { |
| 1096 | if (qla2x00_vp_abort_isp(vha)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1097 | goto eh_host_reset_lock; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1098 | } else { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1099 | if (IS_QLA82XX(vha->hw)) { |
| 1100 | if (!qla82xx_fcoe_ctx_reset(vha)) { |
| 1101 | /* Ctx reset success */ |
| 1102 | ret = SUCCESS; |
| 1103 | goto eh_host_reset_lock; |
| 1104 | } |
| 1105 | /* fall thru if ctx reset failed */ |
| 1106 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1107 | if (ha->wq) |
| 1108 | flush_workqueue(ha->wq); |
| 1109 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1110 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1111 | if (ha->isp_ops->abort_isp(base_vha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1112 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1113 | /* failed. schedule dpc to try */ |
| 1114 | set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); |
| 1115 | |
| 1116 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) |
| 1117 | goto eh_host_reset_lock; |
| 1118 | } |
| 1119 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1122 | /* Waiting for command to be returned to OS.*/ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1123 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) == |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1124 | QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1125 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1127 | eh_host_reset_lock: |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1128 | qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__, |
| 1129 | (ret == FAILED) ? "failed" : "succeded"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1131 | return ret; |
| 1132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
| 1134 | /* |
| 1135 | * qla2x00_loop_reset |
| 1136 | * Issue loop reset. |
| 1137 | * |
| 1138 | * Input: |
| 1139 | * ha = adapter block pointer. |
| 1140 | * |
| 1141 | * Returns: |
| 1142 | * 0 = success |
| 1143 | */ |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 1144 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1145 | qla2x00_loop_reset(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | { |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1147 | int ret; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1148 | struct fc_port *fcport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1149 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 1151 | if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1152 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 1153 | if (fcport->port_type != FCT_TARGET) |
| 1154 | continue; |
| 1155 | |
| 1156 | ret = ha->isp_ops->target_reset(fcport, 0, 0); |
| 1157 | if (ret != QLA_SUCCESS) { |
| 1158 | DEBUG2_3(printk("%s(%ld): bus_reset failed: " |
| 1159 | "target_reset=%d d_id=%x.\n", __func__, |
| 1160 | vha->host_no, ret, fcport->d_id.b24)); |
| 1161 | } |
| 1162 | } |
| 1163 | } |
| 1164 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1165 | if (ha->flags.enable_lip_full_login && !IS_QLA8XXX_TYPE(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1166 | ret = qla2x00_full_login_lip(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1167 | if (ret != QLA_SUCCESS) { |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1168 | DEBUG2_3(printk("%s(%ld): failed: " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1169 | "full_login_lip=%d.\n", __func__, vha->host_no, |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1170 | ret)); |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1171 | } |
| 1172 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1173 | atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); |
| 1174 | qla2x00_mark_all_devices_lost(vha, 0); |
| 1175 | qla2x00_wait_for_loop_ready(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | } |
| 1177 | |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 1178 | if (ha->flags.enable_lip_reset) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1179 | ret = qla2x00_lip_reset(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1180 | if (ret != QLA_SUCCESS) { |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1181 | DEBUG2_3(printk("%s(%ld): failed: " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1182 | "lip_reset=%d.\n", __func__, vha->host_no, ret)); |
| 1183 | } else |
| 1184 | qla2x00_wait_for_loop_ready(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1185 | } |
| 1186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | /* 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] | 1188 | vha->marker_needed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1190 | return QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1193 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1194 | qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1195 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1196 | int que, cnt; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1197 | unsigned long flags; |
| 1198 | srb_t *sp; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 1199 | struct srb_ctx *ctx; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1200 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1201 | struct req_que *req; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1202 | |
| 1203 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1204 | for (que = 0; que < ha->max_req_queues; que++) { |
Anirban Chakraborty | 29bdccb | 2009-01-08 15:41:08 -0800 | [diff] [blame] | 1205 | req = ha->req_q_map[que]; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1206 | if (!req) |
| 1207 | continue; |
| 1208 | for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) { |
| 1209 | sp = req->outstanding_cmds[cnt]; |
Andrew Vasquez | e612d46 | 2009-03-24 09:08:04 -0700 | [diff] [blame] | 1210 | if (sp) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1211 | req->outstanding_cmds[cnt] = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1212 | if (!sp->ctx || |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1213 | (sp->flags & SRB_FCP_CMND_DMA_VALID) || |
| 1214 | IS_PROT_IO(sp)) { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 1215 | sp->cmd->result = res; |
| 1216 | qla2x00_sp_compl(ha, sp); |
| 1217 | } else { |
| 1218 | ctx = sp->ctx; |
Andrew Vasquez | 6c452a4 | 2010-03-19 17:04:02 -0700 | [diff] [blame] | 1219 | if (ctx->type == SRB_LOGIN_CMD || |
| 1220 | ctx->type == SRB_LOGOUT_CMD) { |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 1221 | ctx->u.iocb_cmd->free(sp); |
Giridhar Malavali | db3ad7f | 2010-02-18 10:07:24 -0800 | [diff] [blame] | 1222 | } else { |
Andrew Vasquez | 6c452a4 | 2010-03-19 17:04:02 -0700 | [diff] [blame] | 1223 | struct fc_bsg_job *bsg_job = |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 1224 | ctx->u.bsg_job; |
Andrew Vasquez | 6c452a4 | 2010-03-19 17:04:02 -0700 | [diff] [blame] | 1225 | if (bsg_job->request->msgcode |
| 1226 | == FC_BSG_HST_CT) |
Giridhar Malavali | db3ad7f | 2010-02-18 10:07:24 -0800 | [diff] [blame] | 1227 | kfree(sp->fcport); |
Andrew Vasquez | 6c452a4 | 2010-03-19 17:04:02 -0700 | [diff] [blame] | 1228 | bsg_job->req->errors = 0; |
| 1229 | bsg_job->reply->result = res; |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 1230 | bsg_job->job_done(bsg_job); |
Giridhar Malavali | db3ad7f | 2010-02-18 10:07:24 -0800 | [diff] [blame] | 1231 | kfree(sp->ctx); |
Andrew Vasquez | 6c452a4 | 2010-03-19 17:04:02 -0700 | [diff] [blame] | 1232 | mempool_free(sp, |
Madhuranath Iyengar | 4916392 | 2010-05-04 15:01:28 -0700 | [diff] [blame] | 1233 | ha->srb_mempool); |
Giridhar Malavali | db3ad7f | 2010-02-18 10:07:24 -0800 | [diff] [blame] | 1234 | } |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 1235 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1236 | } |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1237 | } |
| 1238 | } |
| 1239 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1240 | } |
| 1241 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1242 | static int |
| 1243 | qla2xxx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1245 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1247 | if (!rport || fc_remote_port_chkready(rport)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1248 | return -ENXIO; |
| 1249 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1250 | sdev->hostdata = *(fc_port_t **)rport->dd_data; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
| 1255 | static int |
| 1256 | qla2xxx_slave_configure(struct scsi_device *sdev) |
| 1257 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1258 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1259 | struct req_que *req = vha->req; |
| 8482e11 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1260 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1261 | if (sdev->tagged_supported) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1262 | scsi_activate_tcq(sdev, req->max_q_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | else |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1264 | scsi_deactivate_tcq(sdev, req->max_q_depth); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1265 | return 0; |
| 1266 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1268 | static void |
| 1269 | qla2xxx_slave_destroy(struct scsi_device *sdev) |
| 1270 | { |
| 1271 | sdev->hostdata = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1274 | static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth) |
| 1275 | { |
| 1276 | fc_port_t *fcport = (struct fc_port *) sdev->hostdata; |
| 1277 | |
| 1278 | if (!scsi_track_queue_full(sdev, qdepth)) |
| 1279 | return; |
| 1280 | |
| 1281 | DEBUG2(qla_printk(KERN_INFO, fcport->vha->hw, |
| 1282 | "scsi(%ld:%d:%d:%d): Queue depth adjusted-down to %d.\n", |
| 1283 | fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun, |
| 1284 | sdev->queue_depth)); |
| 1285 | } |
| 1286 | |
| 1287 | static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth) |
| 1288 | { |
| 1289 | fc_port_t *fcport = sdev->hostdata; |
| 1290 | struct scsi_qla_host *vha = fcport->vha; |
| 1291 | struct qla_hw_data *ha = vha->hw; |
| 1292 | struct req_que *req = NULL; |
| 1293 | |
| 1294 | req = vha->req; |
| 1295 | if (!req) |
| 1296 | return; |
| 1297 | |
| 1298 | if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth) |
| 1299 | return; |
| 1300 | |
| 1301 | if (sdev->ordered_tags) |
| 1302 | scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth); |
| 1303 | else |
| 1304 | scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth); |
| 1305 | |
| 1306 | DEBUG2(qla_printk(KERN_INFO, ha, |
| 1307 | "scsi(%ld:%d:%d:%d): Queue depth adjusted-up to %d.\n", |
| 1308 | fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun, |
| 1309 | sdev->queue_depth)); |
| 1310 | } |
| 1311 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1312 | static int |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1313 | qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason) |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1314 | { |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1315 | switch (reason) { |
| 1316 | case SCSI_QDEPTH_DEFAULT: |
| 1317 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth); |
| 1318 | break; |
| 1319 | case SCSI_QDEPTH_QFULL: |
| 1320 | qla2x00_handle_queue_full(sdev, qdepth); |
| 1321 | break; |
| 1322 | case SCSI_QDEPTH_RAMP_UP: |
| 1323 | qla2x00_adjust_sdev_qdepth_up(sdev, qdepth); |
| 1324 | break; |
| 1325 | default: |
Roel Kluin | 08002af | 2010-01-29 11:25:19 +0100 | [diff] [blame] | 1326 | return -EOPNOTSUPP; |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1327 | } |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1328 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1329 | return sdev->queue_depth; |
| 1330 | } |
| 1331 | |
| 1332 | static int |
| 1333 | qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type) |
| 1334 | { |
| 1335 | if (sdev->tagged_supported) { |
| 1336 | scsi_set_tag_type(sdev, tag_type); |
| 1337 | if (tag_type) |
| 1338 | scsi_activate_tcq(sdev, sdev->queue_depth); |
| 1339 | else |
| 1340 | scsi_deactivate_tcq(sdev, sdev->queue_depth); |
| 1341 | } else |
| 1342 | tag_type = 0; |
| 1343 | |
| 1344 | return tag_type; |
| 1345 | } |
| 1346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | /** |
| 1348 | * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. |
| 1349 | * @ha: HA context |
| 1350 | * |
| 1351 | * At exit, the @ha's flags.enable_64bit_addressing set to indicated |
| 1352 | * supported addressing method. |
| 1353 | */ |
| 1354 | static void |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1355 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1357 | /* Assume a 32bit DMA mask. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | ha->flags.enable_64bit_addressing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1360 | if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1361 | /* Any upper-dword bits set? */ |
| 1362 | if (MSD(dma_get_required_mask(&ha->pdev->dev)) && |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1363 | !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1364 | /* Ok, a 64bit DMA mask is applicable. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | ha->flags.enable_64bit_addressing = 1; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1366 | ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; |
| 1367 | ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1368 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | } |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1371 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1372 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
| 1373 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | } |
| 1375 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1376 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1377 | qla2x00_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1378 | { |
| 1379 | unsigned long flags = 0; |
| 1380 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1381 | |
| 1382 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1383 | ha->interrupts_on = 1; |
| 1384 | /* enable risc and host interrupts */ |
| 1385 | WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); |
| 1386 | RD_REG_WORD(®->ictrl); |
| 1387 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1388 | |
| 1389 | } |
| 1390 | |
| 1391 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1392 | qla2x00_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1393 | { |
| 1394 | unsigned long flags = 0; |
| 1395 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1396 | |
| 1397 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1398 | ha->interrupts_on = 0; |
| 1399 | /* disable risc and host interrupts */ |
| 1400 | WRT_REG_WORD(®->ictrl, 0); |
| 1401 | RD_REG_WORD(®->ictrl); |
| 1402 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1403 | } |
| 1404 | |
| 1405 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1406 | qla24xx_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1407 | { |
| 1408 | unsigned long flags = 0; |
| 1409 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1410 | |
| 1411 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1412 | ha->interrupts_on = 1; |
| 1413 | WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); |
| 1414 | RD_REG_DWORD(®->ictrl); |
| 1415 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1416 | } |
| 1417 | |
| 1418 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1419 | qla24xx_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1420 | { |
| 1421 | unsigned long flags = 0; |
| 1422 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1423 | |
Andrew Vasquez | 124f85e | 2009-01-05 11:18:06 -0800 | [diff] [blame] | 1424 | if (IS_NOPOLLING_TYPE(ha)) |
| 1425 | return; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1426 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1427 | ha->interrupts_on = 0; |
| 1428 | WRT_REG_DWORD(®->ictrl, 0); |
| 1429 | RD_REG_DWORD(®->ictrl); |
| 1430 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1431 | } |
| 1432 | |
| 1433 | static struct isp_operations qla2100_isp_ops = { |
| 1434 | .pci_config = qla2100_pci_config, |
| 1435 | .reset_chip = qla2x00_reset_chip, |
| 1436 | .chip_diag = qla2x00_chip_diag, |
| 1437 | .config_rings = qla2x00_config_rings, |
| 1438 | .reset_adapter = qla2x00_reset_adapter, |
| 1439 | .nvram_config = qla2x00_nvram_config, |
| 1440 | .update_fw_options = qla2x00_update_fw_options, |
| 1441 | .load_risc = qla2x00_load_risc, |
| 1442 | .pci_info_str = qla2x00_pci_info_str, |
| 1443 | .fw_version_str = qla2x00_fw_version_str, |
| 1444 | .intr_handler = qla2100_intr_handler, |
| 1445 | .enable_intrs = qla2x00_enable_intrs, |
| 1446 | .disable_intrs = qla2x00_disable_intrs, |
| 1447 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1448 | .target_reset = qla2x00_abort_target, |
| 1449 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1450 | .fabric_login = qla2x00_login_fabric, |
| 1451 | .fabric_logout = qla2x00_fabric_logout, |
| 1452 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1453 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1454 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1455 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1456 | .read_nvram = qla2x00_read_nvram_data, |
| 1457 | .write_nvram = qla2x00_write_nvram_data, |
| 1458 | .fw_dump = qla2100_fw_dump, |
| 1459 | .beacon_on = NULL, |
| 1460 | .beacon_off = NULL, |
| 1461 | .beacon_blink = NULL, |
| 1462 | .read_optrom = qla2x00_read_optrom_data, |
| 1463 | .write_optrom = qla2x00_write_optrom_data, |
| 1464 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1465 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1466 | .abort_isp = qla2x00_abort_isp, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1467 | }; |
| 1468 | |
| 1469 | static struct isp_operations qla2300_isp_ops = { |
| 1470 | .pci_config = qla2300_pci_config, |
| 1471 | .reset_chip = qla2x00_reset_chip, |
| 1472 | .chip_diag = qla2x00_chip_diag, |
| 1473 | .config_rings = qla2x00_config_rings, |
| 1474 | .reset_adapter = qla2x00_reset_adapter, |
| 1475 | .nvram_config = qla2x00_nvram_config, |
| 1476 | .update_fw_options = qla2x00_update_fw_options, |
| 1477 | .load_risc = qla2x00_load_risc, |
| 1478 | .pci_info_str = qla2x00_pci_info_str, |
| 1479 | .fw_version_str = qla2x00_fw_version_str, |
| 1480 | .intr_handler = qla2300_intr_handler, |
| 1481 | .enable_intrs = qla2x00_enable_intrs, |
| 1482 | .disable_intrs = qla2x00_disable_intrs, |
| 1483 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1484 | .target_reset = qla2x00_abort_target, |
| 1485 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1486 | .fabric_login = qla2x00_login_fabric, |
| 1487 | .fabric_logout = qla2x00_fabric_logout, |
| 1488 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1489 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1490 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1491 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1492 | .read_nvram = qla2x00_read_nvram_data, |
| 1493 | .write_nvram = qla2x00_write_nvram_data, |
| 1494 | .fw_dump = qla2300_fw_dump, |
| 1495 | .beacon_on = qla2x00_beacon_on, |
| 1496 | .beacon_off = qla2x00_beacon_off, |
| 1497 | .beacon_blink = qla2x00_beacon_blink, |
| 1498 | .read_optrom = qla2x00_read_optrom_data, |
| 1499 | .write_optrom = qla2x00_write_optrom_data, |
| 1500 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1501 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1502 | .abort_isp = qla2x00_abort_isp, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1503 | }; |
| 1504 | |
| 1505 | static struct isp_operations qla24xx_isp_ops = { |
| 1506 | .pci_config = qla24xx_pci_config, |
| 1507 | .reset_chip = qla24xx_reset_chip, |
| 1508 | .chip_diag = qla24xx_chip_diag, |
| 1509 | .config_rings = qla24xx_config_rings, |
| 1510 | .reset_adapter = qla24xx_reset_adapter, |
| 1511 | .nvram_config = qla24xx_nvram_config, |
| 1512 | .update_fw_options = qla24xx_update_fw_options, |
| 1513 | .load_risc = qla24xx_load_risc, |
| 1514 | .pci_info_str = qla24xx_pci_info_str, |
| 1515 | .fw_version_str = qla24xx_fw_version_str, |
| 1516 | .intr_handler = qla24xx_intr_handler, |
| 1517 | .enable_intrs = qla24xx_enable_intrs, |
| 1518 | .disable_intrs = qla24xx_disable_intrs, |
| 1519 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1520 | .target_reset = qla24xx_abort_target, |
| 1521 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1522 | .fabric_login = qla24xx_login_fabric, |
| 1523 | .fabric_logout = qla24xx_fabric_logout, |
| 1524 | .calc_req_entries = NULL, |
| 1525 | .build_iocbs = NULL, |
| 1526 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1527 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1528 | .read_nvram = qla24xx_read_nvram_data, |
| 1529 | .write_nvram = qla24xx_write_nvram_data, |
| 1530 | .fw_dump = qla24xx_fw_dump, |
| 1531 | .beacon_on = qla24xx_beacon_on, |
| 1532 | .beacon_off = qla24xx_beacon_off, |
| 1533 | .beacon_blink = qla24xx_beacon_blink, |
| 1534 | .read_optrom = qla24xx_read_optrom_data, |
| 1535 | .write_optrom = qla24xx_write_optrom_data, |
| 1536 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1537 | .start_scsi = qla24xx_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1538 | .abort_isp = qla2x00_abort_isp, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1539 | }; |
| 1540 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1541 | static struct isp_operations qla25xx_isp_ops = { |
| 1542 | .pci_config = qla25xx_pci_config, |
| 1543 | .reset_chip = qla24xx_reset_chip, |
| 1544 | .chip_diag = qla24xx_chip_diag, |
| 1545 | .config_rings = qla24xx_config_rings, |
| 1546 | .reset_adapter = qla24xx_reset_adapter, |
| 1547 | .nvram_config = qla24xx_nvram_config, |
| 1548 | .update_fw_options = qla24xx_update_fw_options, |
| 1549 | .load_risc = qla24xx_load_risc, |
| 1550 | .pci_info_str = qla24xx_pci_info_str, |
| 1551 | .fw_version_str = qla24xx_fw_version_str, |
| 1552 | .intr_handler = qla24xx_intr_handler, |
| 1553 | .enable_intrs = qla24xx_enable_intrs, |
| 1554 | .disable_intrs = qla24xx_disable_intrs, |
| 1555 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1556 | .target_reset = qla24xx_abort_target, |
| 1557 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1558 | .fabric_login = qla24xx_login_fabric, |
| 1559 | .fabric_logout = qla24xx_fabric_logout, |
| 1560 | .calc_req_entries = NULL, |
| 1561 | .build_iocbs = NULL, |
| 1562 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1563 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1564 | .read_nvram = qla25xx_read_nvram_data, |
| 1565 | .write_nvram = qla25xx_write_nvram_data, |
| 1566 | .fw_dump = qla25xx_fw_dump, |
| 1567 | .beacon_on = qla24xx_beacon_on, |
| 1568 | .beacon_off = qla24xx_beacon_off, |
| 1569 | .beacon_blink = qla24xx_beacon_blink, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1570 | .read_optrom = qla25xx_read_optrom_data, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1571 | .write_optrom = qla24xx_write_optrom_data, |
| 1572 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1573 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1574 | .abort_isp = qla2x00_abort_isp, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1575 | }; |
| 1576 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1577 | static struct isp_operations qla81xx_isp_ops = { |
| 1578 | .pci_config = qla25xx_pci_config, |
| 1579 | .reset_chip = qla24xx_reset_chip, |
| 1580 | .chip_diag = qla24xx_chip_diag, |
| 1581 | .config_rings = qla24xx_config_rings, |
| 1582 | .reset_adapter = qla24xx_reset_adapter, |
| 1583 | .nvram_config = qla81xx_nvram_config, |
| 1584 | .update_fw_options = qla81xx_update_fw_options, |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 1585 | .load_risc = qla81xx_load_risc, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1586 | .pci_info_str = qla24xx_pci_info_str, |
| 1587 | .fw_version_str = qla24xx_fw_version_str, |
| 1588 | .intr_handler = qla24xx_intr_handler, |
| 1589 | .enable_intrs = qla24xx_enable_intrs, |
| 1590 | .disable_intrs = qla24xx_disable_intrs, |
| 1591 | .abort_command = qla24xx_abort_command, |
| 1592 | .target_reset = qla24xx_abort_target, |
| 1593 | .lun_reset = qla24xx_lun_reset, |
| 1594 | .fabric_login = qla24xx_login_fabric, |
| 1595 | .fabric_logout = qla24xx_fabric_logout, |
| 1596 | .calc_req_entries = NULL, |
| 1597 | .build_iocbs = NULL, |
| 1598 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1599 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
Andrew Vasquez | 3d79038 | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 1600 | .read_nvram = NULL, |
| 1601 | .write_nvram = NULL, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1602 | .fw_dump = qla81xx_fw_dump, |
| 1603 | .beacon_on = qla24xx_beacon_on, |
| 1604 | .beacon_off = qla24xx_beacon_off, |
| 1605 | .beacon_blink = qla24xx_beacon_blink, |
| 1606 | .read_optrom = qla25xx_read_optrom_data, |
| 1607 | .write_optrom = qla24xx_write_optrom_data, |
| 1608 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | ba77ef5 | 2010-05-28 15:08:27 -0700 | [diff] [blame] | 1609 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1610 | .abort_isp = qla2x00_abort_isp, |
| 1611 | }; |
| 1612 | |
| 1613 | static struct isp_operations qla82xx_isp_ops = { |
| 1614 | .pci_config = qla82xx_pci_config, |
| 1615 | .reset_chip = qla82xx_reset_chip, |
| 1616 | .chip_diag = qla24xx_chip_diag, |
| 1617 | .config_rings = qla82xx_config_rings, |
| 1618 | .reset_adapter = qla24xx_reset_adapter, |
| 1619 | .nvram_config = qla81xx_nvram_config, |
| 1620 | .update_fw_options = qla24xx_update_fw_options, |
| 1621 | .load_risc = qla82xx_load_risc, |
| 1622 | .pci_info_str = qla82xx_pci_info_str, |
| 1623 | .fw_version_str = qla24xx_fw_version_str, |
| 1624 | .intr_handler = qla82xx_intr_handler, |
| 1625 | .enable_intrs = qla82xx_enable_intrs, |
| 1626 | .disable_intrs = qla82xx_disable_intrs, |
| 1627 | .abort_command = qla24xx_abort_command, |
| 1628 | .target_reset = qla24xx_abort_target, |
| 1629 | .lun_reset = qla24xx_lun_reset, |
| 1630 | .fabric_login = qla24xx_login_fabric, |
| 1631 | .fabric_logout = qla24xx_fabric_logout, |
| 1632 | .calc_req_entries = NULL, |
| 1633 | .build_iocbs = NULL, |
| 1634 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1635 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1636 | .read_nvram = qla24xx_read_nvram_data, |
| 1637 | .write_nvram = qla24xx_write_nvram_data, |
| 1638 | .fw_dump = qla24xx_fw_dump, |
| 1639 | .beacon_on = qla24xx_beacon_on, |
| 1640 | .beacon_off = qla24xx_beacon_off, |
| 1641 | .beacon_blink = qla24xx_beacon_blink, |
| 1642 | .read_optrom = qla82xx_read_optrom_data, |
| 1643 | .write_optrom = qla82xx_write_optrom_data, |
| 1644 | .get_flash_version = qla24xx_get_flash_version, |
| 1645 | .start_scsi = qla82xx_start_scsi, |
| 1646 | .abort_isp = qla82xx_abort_isp, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1647 | }; |
| 1648 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1649 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1650 | qla2x00_set_isp_flags(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1651 | { |
| 1652 | ha->device_type = DT_EXTENDED_IDS; |
| 1653 | switch (ha->pdev->device) { |
| 1654 | case PCI_DEVICE_ID_QLOGIC_ISP2100: |
| 1655 | ha->device_type |= DT_ISP2100; |
| 1656 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1657 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1658 | break; |
| 1659 | case PCI_DEVICE_ID_QLOGIC_ISP2200: |
| 1660 | ha->device_type |= DT_ISP2200; |
| 1661 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1662 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1663 | break; |
| 1664 | case PCI_DEVICE_ID_QLOGIC_ISP2300: |
| 1665 | ha->device_type |= DT_ISP2300; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1666 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1667 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1668 | break; |
| 1669 | case PCI_DEVICE_ID_QLOGIC_ISP2312: |
| 1670 | ha->device_type |= DT_ISP2312; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1671 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1672 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1673 | break; |
| 1674 | case PCI_DEVICE_ID_QLOGIC_ISP2322: |
| 1675 | ha->device_type |= DT_ISP2322; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1676 | ha->device_type |= DT_ZIO_SUPPORTED; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1677 | if (ha->pdev->subsystem_vendor == 0x1028 && |
| 1678 | ha->pdev->subsystem_device == 0x0170) |
| 1679 | ha->device_type |= DT_OEM_001; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1680 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1681 | break; |
| 1682 | case PCI_DEVICE_ID_QLOGIC_ISP6312: |
| 1683 | ha->device_type |= DT_ISP6312; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1684 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1685 | break; |
| 1686 | case PCI_DEVICE_ID_QLOGIC_ISP6322: |
| 1687 | ha->device_type |= DT_ISP6322; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1688 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1689 | break; |
| 1690 | case PCI_DEVICE_ID_QLOGIC_ISP2422: |
| 1691 | ha->device_type |= DT_ISP2422; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1692 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1693 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 1694 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1695 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1696 | break; |
| 1697 | case PCI_DEVICE_ID_QLOGIC_ISP2432: |
| 1698 | ha->device_type |= DT_ISP2432; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 1699 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1700 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 1701 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1702 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1703 | break; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 1704 | case PCI_DEVICE_ID_QLOGIC_ISP8432: |
| 1705 | ha->device_type |= DT_ISP8432; |
| 1706 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1707 | ha->device_type |= DT_FWI2; |
| 1708 | ha->device_type |= DT_IIDMA; |
| 1709 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1710 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 1711 | case PCI_DEVICE_ID_QLOGIC_ISP5422: |
| 1712 | ha->device_type |= DT_ISP5422; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1713 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1714 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1715 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 1716 | case PCI_DEVICE_ID_QLOGIC_ISP5432: |
| 1717 | ha->device_type |= DT_ISP5432; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1718 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 1719 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1720 | break; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1721 | case PCI_DEVICE_ID_QLOGIC_ISP2532: |
| 1722 | ha->device_type |= DT_ISP2532; |
| 1723 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1724 | ha->device_type |= DT_FWI2; |
| 1725 | ha->device_type |= DT_IIDMA; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1726 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1727 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1728 | case PCI_DEVICE_ID_QLOGIC_ISP8001: |
| 1729 | ha->device_type |= DT_ISP8001; |
| 1730 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1731 | ha->device_type |= DT_FWI2; |
| 1732 | ha->device_type |= DT_IIDMA; |
| 1733 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1734 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1735 | case PCI_DEVICE_ID_QLOGIC_ISP8021: |
| 1736 | ha->device_type |= DT_ISP8021; |
| 1737 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 1738 | ha->device_type |= DT_FWI2; |
| 1739 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 1740 | /* Initialize 82XX ISP flags */ |
| 1741 | qla82xx_init_flags(ha); |
| 1742 | break; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1743 | } |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 1744 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1745 | if (IS_QLA82XX(ha)) |
| 1746 | ha->port_no = !(ha->portnum & 1); |
| 1747 | else |
| 1748 | /* Get adapter physical port no from interrupt pin register. */ |
| 1749 | pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); |
| 1750 | |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 1751 | if (ha->port_no & 1) |
| 1752 | ha->flags.port0 = 1; |
| 1753 | else |
| 1754 | ha->flags.port0 = 0; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1755 | } |
| 1756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1758 | qla2x00_iospace_config(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | { |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1760 | resource_size_t pio; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1761 | uint16_t msix; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1762 | int cpus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1764 | if (IS_QLA82XX(ha)) |
| 1765 | return qla82xx_iospace_config(ha); |
| 1766 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1767 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1768 | QLA2XXX_DRIVER_NAME)) { |
| 1769 | qla_printk(KERN_WARNING, ha, |
| 1770 | "Failed to reserve PIO/MMIO regions (%s)\n", |
| 1771 | pci_name(ha->pdev)); |
| 1772 | |
| 1773 | goto iospace_error_exit; |
| 1774 | } |
| 1775 | if (!(ha->bars & 1)) |
| 1776 | goto skip_pio; |
| 1777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | /* We only need PIO for Flash operations on ISP2312 v2 chips. */ |
| 1779 | pio = pci_resource_start(ha->pdev, 0); |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1780 | if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { |
| 1781 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | qla_printk(KERN_WARNING, ha, |
| 1783 | "Invalid PCI I/O region size (%s)...\n", |
| 1784 | pci_name(ha->pdev)); |
| 1785 | pio = 0; |
| 1786 | } |
| 1787 | } else { |
| 1788 | qla_printk(KERN_WARNING, ha, |
| 1789 | "region #0 not a PIO resource (%s)...\n", |
| 1790 | pci_name(ha->pdev)); |
| 1791 | pio = 0; |
| 1792 | } |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1793 | ha->pio_address = pio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1795 | skip_pio: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | /* Use MMIO operations for all accesses. */ |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1797 | if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | qla_printk(KERN_ERR, ha, |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1799 | "region #1 not an MMIO resource (%s), aborting\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | pci_name(ha->pdev)); |
| 1801 | goto iospace_error_exit; |
| 1802 | } |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1803 | if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | qla_printk(KERN_ERR, ha, |
| 1805 | "Invalid PCI mem region size (%s), aborting\n", |
| 1806 | pci_name(ha->pdev)); |
| 1807 | goto iospace_error_exit; |
| 1808 | } |
| 1809 | |
Andrew Vasquez | 3776541 | 2008-01-17 09:02:09 -0800 | [diff] [blame] | 1810 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | if (!ha->iobase) { |
| 1812 | qla_printk(KERN_ERR, ha, |
| 1813 | "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev)); |
| 1814 | |
| 1815 | goto iospace_error_exit; |
| 1816 | } |
| 1817 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1818 | /* Determine queue resources */ |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1819 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Michael Hernandez | d84a47c | 2010-03-19 16:59:18 -0700 | [diff] [blame] | 1820 | if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) || |
| 1821 | (ql2xmaxqueues > 1 && ql2xmultique_tag) || |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1822 | (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1823 | goto mqiobase_exit; |
Michael Hernandez | d84a47c | 2010-03-19 16:59:18 -0700 | [diff] [blame] | 1824 | |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1825 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), |
| 1826 | pci_resource_len(ha->pdev, 3)); |
| 1827 | if (ha->mqiobase) { |
| 1828 | /* Read MSIX vector size of the board */ |
| 1829 | pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); |
| 1830 | ha->msix_count = msix; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1831 | /* Max queues are bounded by available msix vectors */ |
| 1832 | /* queue 0 uses two msix vectors */ |
| 1833 | if (ql2xmultique_tag) { |
| 1834 | cpus = num_online_cpus(); |
Anirban Chakraborty | 27dc9c5 | 2009-06-17 10:30:28 -0700 | [diff] [blame] | 1835 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1836 | (cpus + 1) : (ha->msix_count - 1); |
| 1837 | ha->max_req_queues = 2; |
| 1838 | } else if (ql2xmaxqueues > 1) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1839 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1840 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1841 | DEBUG2(qla_printk(KERN_INFO, ha, "QoS mode set, max no" |
| 1842 | " of request queues:%d\n", ha->max_req_queues)); |
| 1843 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1844 | qla_printk(KERN_INFO, ha, |
| 1845 | "MSI-X vector count: %d\n", msix); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1846 | } else |
| 1847 | qla_printk(KERN_INFO, ha, "BAR 3 not enabled\n"); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1848 | |
| 1849 | mqiobase_exit: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1850 | ha->msix_count = ha->max_rsp_queues + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | return (0); |
| 1852 | |
| 1853 | iospace_error_exit: |
| 1854 | return (-ENOMEM); |
| 1855 | } |
| 1856 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1857 | static void |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1858 | qla2xxx_scan_start(struct Scsi_Host *shost) |
| 1859 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1860 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1861 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 1862 | if (vha->hw->flags.running_gold_fw) |
| 1863 | return; |
| 1864 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1865 | set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); |
| 1866 | set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); |
| 1867 | set_bit(RSCN_UPDATE, &vha->dpc_flags); |
| 1868 | set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1869 | } |
| 1870 | |
| 1871 | static int |
| 1872 | qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) |
| 1873 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1874 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1875 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1876 | if (!vha->host) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1877 | return 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1878 | if (time > vha->hw->loop_reset_delay * HZ) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1879 | return 1; |
| 1880 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1881 | return atomic_read(&vha->loop_state) == LOOP_READY; |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 1882 | } |
| 1883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | /* |
| 1885 | * PCI driver interface |
| 1886 | */ |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 1887 | static int __devinit |
| 1888 | 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] | 1889 | { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1890 | int ret = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | struct Scsi_Host *host; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1892 | scsi_qla_host_t *base_vha = NULL; |
| 1893 | struct qla_hw_data *ha; |
Andrew Vasquez | 29856e2 | 2007-08-12 18:22:52 -0700 | [diff] [blame] | 1894 | char pci_info[30]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | char fw_str[30]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 1896 | struct scsi_host_template *sht; |
Anirban Chakraborty | c51da4e | 2008-11-10 15:53:20 -0800 | [diff] [blame] | 1897 | int bars, max_id, mem_only = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1898 | uint16_t req_length = 0, rsp_length = 0; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1899 | struct req_que *req = NULL; |
| 1900 | struct rsp_que *rsp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1902 | bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 1903 | sht = &qla2xxx_driver_template; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1904 | if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || |
| 1905 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 1906 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1907 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || |
| 1908 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1909 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1910 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 || |
| 1911 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021) { |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1912 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1913 | mem_only = 1; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1914 | } |
| 1915 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1916 | if (mem_only) { |
| 1917 | if (pci_enable_device_mem(pdev)) |
| 1918 | goto probe_out; |
| 1919 | } else { |
| 1920 | if (pci_enable_device(pdev)) |
| 1921 | goto probe_out; |
| 1922 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | |
Jesse Barnes | 0927678 | 2008-10-18 17:33:19 -0700 | [diff] [blame] | 1924 | /* This may fail but that's ok */ |
| 1925 | pci_enable_pcie_error_reporting(pdev); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 1926 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1927 | ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); |
| 1928 | if (!ha) { |
| 1929 | DEBUG(printk("Unable to allocate memory for ha\n")); |
| 1930 | goto probe_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1932 | ha->pdev = pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
| 1934 | /* Clear our data area */ |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 1935 | ha->bars = bars; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 1936 | ha->mem_only = mem_only; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1937 | spin_lock_init(&ha->hardware_lock); |
Andrew Vasquez | 339aa70 | 2010-10-15 11:27:45 -0700 | [diff] [blame] | 1938 | spin_lock_init(&ha->vport_slock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 1940 | /* Set ISP-type information. */ |
| 1941 | qla2x00_set_isp_flags(ha); |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 1942 | |
| 1943 | /* Set EEH reset type to fundamental if required by hba */ |
| 1944 | if ( IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) { |
| 1945 | pdev->needs_freset = 1; |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 1946 | } |
| 1947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | /* Configure PCI I/O space */ |
| 1949 | ret = qla2x00_iospace_config(ha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 1950 | if (ret) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1951 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | qla_printk(KERN_INFO, ha, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 1954 | "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq, |
| 1955 | ha->iobase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | ha->prev_topology = 0; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1958 | ha->init_cb_size = sizeof(init_cb_t); |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 1959 | ha->link_data_rate = PORT_SPEED_UNKNOWN; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1960 | ha->optrom_size = OPTROM_SIZE_2300; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1962 | /* Assign ISP specific operations. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1963 | max_id = MAX_TARGETS_2200; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | if (IS_QLA2100(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1965 | max_id = MAX_TARGETS_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1967 | req_length = REQUEST_ENTRY_CNT_2100; |
| 1968 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 1969 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1970 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1971 | ha->flash_conf_off = ~0; |
| 1972 | ha->flash_data_off = ~0; |
| 1973 | ha->nvram_conf_off = ~0; |
| 1974 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1975 | ha->isp_ops = &qla2100_isp_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | } else if (IS_QLA2200(ha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1978 | req_length = REQUEST_ENTRY_CNT_2200; |
| 1979 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 1980 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1981 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1982 | ha->flash_conf_off = ~0; |
| 1983 | ha->flash_data_off = ~0; |
| 1984 | ha->nvram_conf_off = ~0; |
| 1985 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1986 | ha->isp_ops = &qla2100_isp_ops; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 1987 | } else if (IS_QLA23XX(ha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1989 | req_length = REQUEST_ENTRY_CNT_2200; |
| 1990 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 1991 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 1992 | ha->gid_list_info_size = 6; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1993 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) |
| 1994 | ha->optrom_size = OPTROM_SIZE_2322; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1995 | ha->flash_conf_off = ~0; |
| 1996 | ha->flash_data_off = ~0; |
| 1997 | ha->nvram_conf_off = ~0; |
| 1998 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1999 | ha->isp_ops = &qla2300_isp_ops; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2000 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2001 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2002 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2003 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2004 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2005 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2006 | ha->gid_list_info_size = 8; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2007 | ha->optrom_size = OPTROM_SIZE_24XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2008 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2009 | ha->isp_ops = &qla24xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2010 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2011 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2012 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2013 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2014 | } else if (IS_QLA25XX(ha)) { |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2015 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2016 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2017 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2018 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2019 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2020 | ha->gid_list_info_size = 8; |
| 2021 | ha->optrom_size = OPTROM_SIZE_25XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2022 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2023 | ha->isp_ops = &qla25xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2024 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2025 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2026 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2027 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
| 2028 | } else if (IS_QLA81XX(ha)) { |
| 2029 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2030 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2031 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2032 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2033 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2034 | ha->gid_list_info_size = 8; |
| 2035 | ha->optrom_size = OPTROM_SIZE_81XX; |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 2036 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2037 | ha->isp_ops = &qla81xx_isp_ops; |
| 2038 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2039 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2040 | ha->nvram_conf_off = ~0; |
| 2041 | ha->nvram_data_off = ~0; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2042 | } else if (IS_QLA82XX(ha)) { |
| 2043 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2044 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2045 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2046 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2047 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2048 | ha->gid_list_info_size = 8; |
| 2049 | ha->optrom_size = OPTROM_SIZE_82XX; |
Andrew Vasquez | 087c621 | 2010-11-23 16:52:48 -0800 | [diff] [blame] | 2050 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2051 | ha->isp_ops = &qla82xx_isp_ops; |
| 2052 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2053 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2054 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2055 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | |
matthias@kaehlcke.net | 6c2f527 | 2008-05-12 22:21:11 -0700 | [diff] [blame] | 2058 | mutex_init(&ha->vport_lock); |
Marcus Barrow | 0b05a1f | 2008-01-17 09:02:13 -0800 | [diff] [blame] | 2059 | init_completion(&ha->mbx_cmd_comp); |
| 2060 | complete(&ha->mbx_cmd_comp); |
| 2061 | init_completion(&ha->mbx_intr_comp); |
Sarang Radke | 23f2ebd | 2010-05-28 15:08:21 -0700 | [diff] [blame] | 2062 | init_completion(&ha->dcbx_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2064 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 2066 | qla2x00_config_dma_addressing(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2067 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2068 | if (!ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | qla_printk(KERN_WARNING, ha, |
| 2070 | "[ERROR] Failed to allocate memory for adapter\n"); |
| 2071 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2072 | goto probe_hw_failed; |
| 2073 | } |
| 2074 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2075 | req->max_q_depth = MAX_Q_DEPTH; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2076 | if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2077 | req->max_q_depth = ql2xmaxqdepth; |
| 2078 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2079 | |
| 2080 | base_vha = qla2x00_create_host(sht, ha); |
| 2081 | if (!base_vha) { |
| 2082 | qla_printk(KERN_WARNING, ha, |
| 2083 | "[ERROR] Failed to allocate memory for scsi_host\n"); |
| 2084 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2085 | ret = -ENOMEM; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2086 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2087 | qla2x00_free_req_que(ha, req); |
| 2088 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2089 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | } |
| 2091 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2092 | pci_set_drvdata(pdev, base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2094 | host = base_vha->host; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2095 | base_vha->req = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2096 | host->can_queue = req->length + 128; |
| 2097 | if (IS_QLA2XXX_MIDTYPE(ha)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2098 | base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2099 | else |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2100 | base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + |
| 2101 | base_vha->vp_idx; |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2102 | |
| 2103 | /* Set the SG table size based on ISP type */ |
| 2104 | if (!IS_FWI2_CAPABLE(ha)) { |
| 2105 | if (IS_QLA2100(ha)) |
| 2106 | host->sg_tablesize = 32; |
| 2107 | } else { |
| 2108 | if (!IS_QLA82XX(ha)) |
| 2109 | host->sg_tablesize = QLA_SG_ALL; |
| 2110 | } |
| 2111 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2112 | host->max_id = max_id; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2113 | host->this_id = 255; |
| 2114 | host->cmd_per_lun = 3; |
Seokmann Ju | 711c1d9 | 2008-07-10 16:55:51 -0700 | [diff] [blame] | 2115 | host->unique_id = host->host_no; |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2116 | if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif) |
| 2117 | host->max_cmd_len = 32; |
| 2118 | else |
| 2119 | host->max_cmd_len = MAX_CMDSZ; |
Andrew Vasquez | 75bc419 | 2006-05-17 15:09:22 -0700 | [diff] [blame] | 2120 | host->max_channel = MAX_BUSES - 1; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2121 | host->max_lun = MAX_LUNS; |
| 2122 | host->transportt = qla2xxx_transport_template; |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 2123 | sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2124 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2125 | /* Set up the irqs */ |
| 2126 | ret = qla2x00_request_irqs(ha, rsp); |
| 2127 | if (ret) |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2128 | goto probe_init_failed; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 2129 | |
| 2130 | pci_save_state(pdev); |
| 2131 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2132 | /* Alloc arrays of request and response ring ptrs */ |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2133 | que_init: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2134 | if (!qla2x00_alloc_queues(ha)) { |
| 2135 | qla_printk(KERN_WARNING, ha, |
| 2136 | "[ERROR] Failed to allocate memory for queue" |
| 2137 | " pointers\n"); |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2138 | goto probe_init_failed; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2139 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2140 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2141 | ha->rsp_q_map[0] = rsp; |
| 2142 | ha->req_q_map[0] = req; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2143 | rsp->req = req; |
| 2144 | req->rsp = rsp; |
| 2145 | set_bit(0, ha->req_qid_map); |
| 2146 | set_bit(0, ha->rsp_qid_map); |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2147 | /* FWI2-capable only. */ |
| 2148 | req->req_q_in = &ha->iobase->isp24.req_q_in; |
| 2149 | req->req_q_out = &ha->iobase->isp24.req_q_out; |
| 2150 | rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; |
| 2151 | rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 2152 | if (ha->mqenable) { |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2153 | req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; |
| 2154 | req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; |
| 2155 | rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; |
| 2156 | rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 2157 | } |
| 2158 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2159 | if (IS_QLA82XX(ha)) { |
| 2160 | req->req_q_out = &ha->iobase->isp82.req_q_out[0]; |
| 2161 | rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0]; |
| 2162 | rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0]; |
| 2163 | } |
| 2164 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2165 | if (qla2x00_initialize_adapter(base_vha)) { |
| 2166 | qla_printk(KERN_WARNING, ha, |
| 2167 | "Failed to initialize adapter\n"); |
| 2168 | |
| 2169 | DEBUG2(printk("scsi(%ld): Failed to initialize adapter - " |
| 2170 | "Adapter flags %x.\n", |
| 2171 | base_vha->host_no, base_vha->device_flags)); |
| 2172 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2173 | if (IS_QLA82XX(ha)) { |
| 2174 | qla82xx_idc_lock(ha); |
| 2175 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 2176 | QLA82XX_DEV_FAILED); |
| 2177 | qla82xx_idc_unlock(ha); |
| 2178 | qla_printk(KERN_INFO, ha, "HW State: FAILED\n"); |
| 2179 | } |
| 2180 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2181 | ret = -ENODEV; |
| 2182 | goto probe_failed; |
| 2183 | } |
| 2184 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2185 | if (ha->mqenable) { |
| 2186 | if (qla25xx_setup_mode(base_vha)) { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2187 | qla_printk(KERN_WARNING, ha, |
| 2188 | "Can't create queues, falling back to single" |
| 2189 | " queue mode\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2190 | goto que_init; |
| 2191 | } |
| 2192 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2193 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2194 | if (ha->flags.running_gold_fw) |
| 2195 | goto skip_dpc; |
| 2196 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2197 | /* |
| 2198 | * Startup the kernel thread for this host adapter |
| 2199 | */ |
| 2200 | ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, |
| 2201 | "%s_dpc", base_vha->host_str); |
| 2202 | if (IS_ERR(ha->dpc_thread)) { |
| 2203 | qla_printk(KERN_WARNING, ha, |
| 2204 | "Unable to start DPC thread!\n"); |
| 2205 | ret = PTR_ERR(ha->dpc_thread); |
| 2206 | goto probe_failed; |
| 2207 | } |
| 2208 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2209 | skip_dpc: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2210 | list_add_tail(&base_vha->list, &ha->vp_list); |
| 2211 | base_vha->host->irq = ha->pdev->irq; |
| 2212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | /* Initialized the timer */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2214 | qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | |
| 2216 | DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2217 | base_vha->host_no, ha)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | |
Arun Easi | ba77ef5 | 2010-05-28 15:08:27 -0700 | [diff] [blame] | 2219 | if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif) { |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2220 | if (ha->fw_attributes & BIT_4) { |
| 2221 | base_vha->flags.difdix_supported = 1; |
| 2222 | DEBUG18(qla_printk(KERN_INFO, ha, |
| 2223 | "Registering for DIF/DIX type 1 and 3" |
| 2224 | " protection.\n")); |
| 2225 | scsi_host_set_prot(host, |
| 2226 | SHOST_DIF_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2227 | | SHOST_DIF_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2228 | | SHOST_DIF_TYPE3_PROTECTION |
| 2229 | | SHOST_DIX_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2230 | | SHOST_DIX_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2231 | | SHOST_DIX_TYPE3_PROTECTION); |
| 2232 | scsi_host_set_guard(host, SHOST_DIX_GUARD_CRC); |
| 2233 | } else |
| 2234 | base_vha->flags.difdix_supported = 0; |
| 2235 | } |
| 2236 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2237 | ha->isp_ops->enable_intrs(ha); |
| 2238 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2239 | ret = scsi_add_host(host, &pdev->dev); |
| 2240 | if (ret) |
| 2241 | goto probe_failed; |
| 2242 | |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2243 | base_vha->flags.init_done = 1; |
| 2244 | base_vha->flags.online = 1; |
| 2245 | |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2246 | scsi_scan_host(host); |
| 2247 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2248 | qla2x00_alloc_sysfs_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2249 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2250 | qla2x00_init_host_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2251 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2252 | qla2x00_dfs_setup(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | qla_printk(KERN_INFO, ha, "\n" |
| 2255 | " QLogic Fibre Channel HBA Driver: %s\n" |
| 2256 | " QLogic %s - %s\n" |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 2257 | " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n", |
| 2258 | qla2x00_version_str, ha->model_number, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2259 | ha->model_desc ? ha->model_desc : "", pdev->device, |
| 2260 | ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev), |
| 2261 | ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no, |
| 2262 | ha->isp_ops->fw_version_str(base_vha, fw_str)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | return 0; |
| 2265 | |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2266 | probe_init_failed: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2267 | qla2x00_free_req_que(ha, req); |
| 2268 | qla2x00_free_rsp_que(ha, rsp); |
| 2269 | ha->max_req_queues = ha->max_rsp_queues = 0; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | probe_failed: |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2272 | if (base_vha->timer_active) |
| 2273 | qla2x00_stop_timer(base_vha); |
| 2274 | base_vha->flags.online = 0; |
| 2275 | if (ha->dpc_thread) { |
| 2276 | struct task_struct *t = ha->dpc_thread; |
| 2277 | |
| 2278 | ha->dpc_thread = NULL; |
| 2279 | kthread_stop(t); |
| 2280 | } |
| 2281 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2282 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2284 | scsi_host_put(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2286 | probe_hw_failed: |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2287 | if (IS_QLA82XX(ha)) { |
| 2288 | qla82xx_idc_lock(ha); |
| 2289 | qla82xx_clear_drv_active(ha); |
| 2290 | qla82xx_idc_unlock(ha); |
| 2291 | iounmap((device_reg_t __iomem *)ha->nx_pcibase); |
| 2292 | if (!ql2xdbwr) |
| 2293 | iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr); |
| 2294 | } else { |
| 2295 | if (ha->iobase) |
| 2296 | iounmap(ha->iobase); |
| 2297 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2298 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2299 | kfree(ha); |
| 2300 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2302 | probe_out: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2303 | pci_disable_device(pdev); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2304 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 2307 | static void |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2308 | qla2x00_shutdown(struct pci_dev *pdev) |
| 2309 | { |
| 2310 | scsi_qla_host_t *vha; |
| 2311 | struct qla_hw_data *ha; |
| 2312 | |
| 2313 | vha = pci_get_drvdata(pdev); |
| 2314 | ha = vha->hw; |
| 2315 | |
| 2316 | /* Turn-off FCE trace */ |
| 2317 | if (ha->flags.fce_enabled) { |
| 2318 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
| 2319 | ha->flags.fce_enabled = 0; |
| 2320 | } |
| 2321 | |
| 2322 | /* Turn-off EFT trace */ |
| 2323 | if (ha->eft) |
| 2324 | qla2x00_disable_eft_trace(vha); |
| 2325 | |
| 2326 | /* Stop currently executing firmware. */ |
| 2327 | qla2x00_try_to_stop_firmware(vha); |
| 2328 | |
| 2329 | /* Turn adapter off line */ |
| 2330 | vha->flags.online = 0; |
| 2331 | |
| 2332 | /* turn-off interrupts on the card */ |
| 2333 | if (ha->interrupts_on) { |
| 2334 | vha->flags.init_done = 0; |
| 2335 | ha->isp_ops->disable_intrs(ha); |
| 2336 | } |
| 2337 | |
| 2338 | qla2x00_free_irqs(vha); |
| 2339 | |
| 2340 | qla2x00_free_fw_dump(ha); |
| 2341 | } |
| 2342 | |
| 2343 | static void |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 2344 | qla2x00_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | { |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2346 | scsi_qla_host_t *base_vha, *vha; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2347 | struct qla_hw_data *ha; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2348 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2350 | base_vha = pci_get_drvdata(pdev); |
| 2351 | ha = base_vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2353 | spin_lock_irqsave(&ha->vport_slock, flags); |
| 2354 | list_for_each_entry(vha, &ha->vp_list, list) { |
| 2355 | atomic_inc(&vha->vref_count); |
| 2356 | |
Dan Carpenter | 8ae598d | 2010-12-21 16:00:15 -0800 | [diff] [blame] | 2357 | if (vha->fc_vport) { |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2358 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
| 2359 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2360 | fc_vport_terminate(vha->fc_vport); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2361 | |
| 2362 | spin_lock_irqsave(&ha->vport_slock, flags); |
| 2363 | } |
| 2364 | |
| 2365 | atomic_dec(&vha->vref_count); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2366 | } |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2367 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2368 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2369 | set_bit(UNLOADING, &base_vha->dpc_flags); |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2370 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2371 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 2372 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2373 | qla2x00_dfs_remove(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2374 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2375 | qla84xx_put_chip(base_vha); |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2376 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2377 | /* Disable timer */ |
| 2378 | if (base_vha->timer_active) |
| 2379 | qla2x00_stop_timer(base_vha); |
| 2380 | |
| 2381 | base_vha->flags.online = 0; |
| 2382 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2383 | /* Flush the work queue and remove it */ |
| 2384 | if (ha->wq) { |
| 2385 | flush_workqueue(ha->wq); |
| 2386 | destroy_workqueue(ha->wq); |
| 2387 | ha->wq = NULL; |
| 2388 | } |
| 2389 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2390 | /* Kill the kernel thread for this host */ |
| 2391 | if (ha->dpc_thread) { |
| 2392 | struct task_struct *t = ha->dpc_thread; |
| 2393 | |
| 2394 | /* |
| 2395 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 2396 | * so we need to zero it out. |
| 2397 | */ |
| 2398 | ha->dpc_thread = NULL; |
| 2399 | kthread_stop(t); |
| 2400 | } |
| 2401 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2402 | qla2x00_free_sysfs_attr(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2404 | fc_remove_host(base_vha->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 2405 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2406 | scsi_remove_host(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2408 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2410 | scsi_host_put(base_vha->host); |
| 2411 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2412 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | b963752 | 2010-05-28 15:08:15 -0700 | [diff] [blame] | 2413 | qla82xx_idc_lock(ha); |
| 2414 | qla82xx_clear_drv_active(ha); |
| 2415 | qla82xx_idc_unlock(ha); |
| 2416 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2417 | iounmap((device_reg_t __iomem *)ha->nx_pcibase); |
| 2418 | if (!ql2xdbwr) |
| 2419 | iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr); |
| 2420 | } else { |
| 2421 | if (ha->iobase) |
| 2422 | iounmap(ha->iobase); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2423 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2424 | if (ha->mqiobase) |
| 2425 | iounmap(ha->mqiobase); |
| 2426 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2427 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2428 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2429 | kfree(ha); |
| 2430 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 2432 | pci_disable_pcie_error_reporting(pdev); |
| 2433 | |
Bernhard Walle | 665db93 | 2007-03-28 00:49:49 +0200 | [diff] [blame] | 2434 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2435 | pci_set_drvdata(pdev, NULL); |
| 2436 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | |
| 2438 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2439 | qla2x00_free_device(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2441 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 2443 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
| 2444 | |
| 2445 | /* Disable timer */ |
| 2446 | if (vha->timer_active) |
| 2447 | qla2x00_stop_timer(vha); |
| 2448 | |
| 2449 | /* Kill the kernel thread for this host */ |
| 2450 | if (ha->dpc_thread) { |
| 2451 | struct task_struct *t = ha->dpc_thread; |
| 2452 | |
| 2453 | /* |
| 2454 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 2455 | * so we need to zero it out. |
| 2456 | */ |
| 2457 | ha->dpc_thread = NULL; |
| 2458 | kthread_stop(t); |
| 2459 | } |
| 2460 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2461 | qla25xx_delete_queues(vha); |
| 2462 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2463 | if (ha->flags.fce_enabled) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2464 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2465 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2466 | if (ha->eft) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2467 | qla2x00_disable_eft_trace(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 2468 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2469 | /* Stop currently executing firmware. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2470 | qla2x00_try_to_stop_firmware(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 2472 | vha->flags.online = 0; |
| 2473 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2474 | /* turn-off interrupts on the card */ |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2475 | if (ha->interrupts_on) { |
| 2476 | vha->flags.init_done = 0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2477 | ha->isp_ops->disable_intrs(ha); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2478 | } |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2479 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2480 | qla2x00_free_irqs(vha); |
| 2481 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 2482 | qla2x00_free_fcports(vha); |
| 2483 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 2484 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2485 | |
| 2486 | qla2x00_free_queues(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | } |
| 2488 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 2489 | void qla2x00_free_fcports(struct scsi_qla_host *vha) |
| 2490 | { |
| 2491 | fc_port_t *fcport, *tfcport; |
| 2492 | |
| 2493 | list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) { |
| 2494 | list_del(&fcport->list); |
| 2495 | kfree(fcport); |
| 2496 | fcport = NULL; |
| 2497 | } |
| 2498 | } |
| 2499 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2500 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2501 | 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] | 2502 | int defer) |
| 2503 | { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2504 | struct fc_rport *rport; |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 2505 | scsi_qla_host_t *base_vha; |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2506 | |
| 2507 | if (!fcport->rport) |
| 2508 | return; |
| 2509 | |
| 2510 | rport = fcport->rport; |
| 2511 | if (defer) { |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 2512 | base_vha = pci_get_drvdata(vha->hw->pdev); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2513 | spin_lock_irq(vha->host->host_lock); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2514 | fcport->drport = rport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2515 | spin_unlock_irq(vha->host->host_lock); |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 2516 | set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
| 2517 | qla2xxx_wake_dpc(base_vha); |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 2518 | } else |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2519 | fc_remote_port_delete(rport); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 2520 | } |
| 2521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
| 2524 | * |
| 2525 | * Input: ha = adapter block pointer. fcport = port structure pointer. |
| 2526 | * |
| 2527 | * Return: None. |
| 2528 | * |
| 2529 | * Context: |
| 2530 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2531 | 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] | 2532 | int do_login, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2534 | if (atomic_read(&fcport->state) == FCS_ONLINE && |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2535 | vha->vp_idx == fcport->vp_idx) { |
| 2536 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
| 2537 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 2538 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 2539 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | * We may need to retry the login, so don't change the state of the |
| 2541 | * port but do the retries. |
| 2542 | */ |
| 2543 | if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) |
| 2544 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
| 2545 | |
| 2546 | if (!do_login) |
| 2547 | return; |
| 2548 | |
| 2549 | if (fcport->login_retry == 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2550 | fcport->login_retry = vha->hw->login_retry_count; |
| 2551 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | |
| 2553 | DEBUG(printk("scsi(%ld): Port login retry: " |
| 2554 | "%02x%02x%02x%02x%02x%02x%02x%02x, " |
| 2555 | "id = 0x%04x retry cnt=%d\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2556 | vha->host_no, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2557 | fcport->port_name[0], |
| 2558 | fcport->port_name[1], |
| 2559 | fcport->port_name[2], |
| 2560 | fcport->port_name[3], |
| 2561 | fcport->port_name[4], |
| 2562 | fcport->port_name[5], |
| 2563 | fcport->port_name[6], |
| 2564 | fcport->port_name[7], |
| 2565 | fcport->loop_id, |
| 2566 | fcport->login_retry)); |
| 2567 | } |
| 2568 | } |
| 2569 | |
| 2570 | /* |
| 2571 | * qla2x00_mark_all_devices_lost |
| 2572 | * Updates fcport state when device goes offline. |
| 2573 | * |
| 2574 | * Input: |
| 2575 | * ha = adapter block pointer. |
| 2576 | * fcport = port structure pointer. |
| 2577 | * |
| 2578 | * Return: |
| 2579 | * None. |
| 2580 | * |
| 2581 | * Context: |
| 2582 | */ |
| 2583 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2584 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | { |
| 2586 | fc_port_t *fcport; |
| 2587 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2588 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 2589 | if (vha->vp_idx != 0 && vha->vp_idx != fcport->vp_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | continue; |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 2591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | /* |
| 2593 | * No point in marking the device as lost, if the device is |
| 2594 | * already DEAD. |
| 2595 | */ |
| 2596 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
| 2597 | continue; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2598 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 2599 | atomic_set(&fcport->state, FCS_DEVICE_LOST); |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 2600 | if (defer) |
| 2601 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 2602 | else if (vha->vp_idx == fcport->vp_idx) |
| 2603 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 2604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | } |
| 2606 | } |
| 2607 | |
| 2608 | /* |
| 2609 | * qla2x00_mem_alloc |
| 2610 | * Allocates adapter memory. |
| 2611 | * |
| 2612 | * Returns: |
| 2613 | * 0 = success. |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2614 | * !0 = failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2616 | static int |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2617 | qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, |
| 2618 | struct req_que **req, struct rsp_que **rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | { |
| 2620 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2622 | 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] | 2623 | &ha->init_cb_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2624 | if (!ha->init_cb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2625 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2626 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2627 | ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE, |
| 2628 | &ha->gid_list_dma, GFP_KERNEL); |
| 2629 | if (!ha->gid_list) |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2630 | goto fail_free_init_cb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2631 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2632 | ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); |
| 2633 | if (!ha->srb_mempool) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2634 | goto fail_free_gid_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2636 | if (IS_QLA82XX(ha)) { |
| 2637 | /* Allocate cache for CT6 Ctx. */ |
| 2638 | if (!ctx_cachep) { |
| 2639 | ctx_cachep = kmem_cache_create("qla2xxx_ctx", |
| 2640 | sizeof(struct ct6_dsd), 0, |
| 2641 | SLAB_HWCACHE_ALIGN, NULL); |
| 2642 | if (!ctx_cachep) |
| 2643 | goto fail_free_gid_list; |
| 2644 | } |
| 2645 | ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ, |
| 2646 | ctx_cachep); |
| 2647 | if (!ha->ctx_mempool) |
| 2648 | goto fail_free_srb_mempool; |
| 2649 | } |
| 2650 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2651 | /* Get memory for cached NVRAM */ |
| 2652 | ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); |
| 2653 | if (!ha->nvram) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2654 | goto fail_free_ctx_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2656 | snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, |
| 2657 | ha->pdev->device); |
| 2658 | ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 2659 | DMA_POOL_SIZE, 8, 0); |
| 2660 | if (!ha->s_dma_pool) |
| 2661 | goto fail_free_nvram; |
| 2662 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2663 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2664 | ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 2665 | DSD_LIST_DMA_POOL_SIZE, 8, 0); |
| 2666 | if (!ha->dl_dma_pool) { |
| 2667 | qla_printk(KERN_WARNING, ha, |
| 2668 | "Memory Allocation failed - dl_dma_pool\n"); |
| 2669 | goto fail_s_dma_pool; |
| 2670 | } |
| 2671 | |
| 2672 | ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 2673 | FCP_CMND_DMA_POOL_SIZE, 8, 0); |
| 2674 | if (!ha->fcp_cmnd_dma_pool) { |
| 2675 | qla_printk(KERN_WARNING, ha, |
| 2676 | "Memory Allocation failed - fcp_cmnd_dma_pool\n"); |
| 2677 | goto fail_dl_dma_pool; |
| 2678 | } |
| 2679 | } |
| 2680 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2681 | /* Allocate memory for SNS commands */ |
| 2682 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2683 | /* Get consistent memory allocated for SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2684 | ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2685 | sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2686 | if (!ha->sns_cmd) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2687 | goto fail_dma_pool; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2688 | } else { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2689 | /* Get consistent memory allocated for MS IOCB */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2690 | ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2691 | &ha->ms_iocb_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2692 | if (!ha->ms_iocb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2693 | goto fail_dma_pool; |
| 2694 | /* Get consistent memory allocated for CT SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2695 | ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2696 | sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2697 | if (!ha->ct_sns) |
| 2698 | goto fail_free_ms_iocb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | } |
| 2700 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2701 | /* Allocate memory for request ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2702 | *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); |
| 2703 | if (!*req) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2704 | DEBUG(printk("Unable to allocate memory for req\n")); |
| 2705 | goto fail_req; |
| 2706 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2707 | (*req)->length = req_len; |
| 2708 | (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 2709 | ((*req)->length + 1) * sizeof(request_t), |
| 2710 | &(*req)->dma, GFP_KERNEL); |
| 2711 | if (!(*req)->ring) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2712 | DEBUG(printk("Unable to allocate memory for req_ring\n")); |
| 2713 | goto fail_req_ring; |
| 2714 | } |
| 2715 | /* Allocate memory for response ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2716 | *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); |
| 2717 | if (!*rsp) { |
| 2718 | qla_printk(KERN_WARNING, ha, |
| 2719 | "Unable to allocate memory for rsp\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2720 | goto fail_rsp; |
| 2721 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2722 | (*rsp)->hw = ha; |
| 2723 | (*rsp)->length = rsp_len; |
| 2724 | (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 2725 | ((*rsp)->length + 1) * sizeof(response_t), |
| 2726 | &(*rsp)->dma, GFP_KERNEL); |
| 2727 | if (!(*rsp)->ring) { |
| 2728 | qla_printk(KERN_WARNING, ha, |
| 2729 | "Unable to allocate memory for rsp_ring\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2730 | goto fail_rsp_ring; |
| 2731 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2732 | (*req)->rsp = *rsp; |
| 2733 | (*rsp)->req = *req; |
| 2734 | /* Allocate memory for NVRAM data for vports */ |
| 2735 | if (ha->nvram_npiv_size) { |
| 2736 | ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) * |
| 2737 | ha->nvram_npiv_size, GFP_KERNEL); |
| 2738 | if (!ha->npiv_info) { |
| 2739 | qla_printk(KERN_WARNING, ha, |
| 2740 | "Unable to allocate memory for npiv info\n"); |
| 2741 | goto fail_npiv_info; |
| 2742 | } |
| 2743 | } else |
| 2744 | ha->npiv_info = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2745 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2746 | /* Get consistent memory allocated for EX-INIT-CB. */ |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2747 | if (IS_QLA8XXX_TYPE(ha)) { |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2748 | ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 2749 | &ha->ex_init_cb_dma); |
| 2750 | if (!ha->ex_init_cb) |
| 2751 | goto fail_ex_init_cb; |
| 2752 | } |
| 2753 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2754 | INIT_LIST_HEAD(&ha->gbl_dsd_list); |
| 2755 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 2756 | /* Get consistent memory allocated for Async Port-Database. */ |
| 2757 | if (!IS_FWI2_CAPABLE(ha)) { |
| 2758 | ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 2759 | &ha->async_pd_dma); |
| 2760 | if (!ha->async_pd) |
| 2761 | goto fail_async_pd; |
| 2762 | } |
| 2763 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2764 | INIT_LIST_HEAD(&ha->vp_list); |
| 2765 | return 1; |
| 2766 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 2767 | fail_async_pd: |
| 2768 | dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2769 | fail_ex_init_cb: |
| 2770 | kfree(ha->npiv_info); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2771 | fail_npiv_info: |
| 2772 | dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * |
| 2773 | sizeof(response_t), (*rsp)->ring, (*rsp)->dma); |
| 2774 | (*rsp)->ring = NULL; |
| 2775 | (*rsp)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2776 | fail_rsp_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2777 | kfree(*rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2778 | fail_rsp: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2779 | dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * |
| 2780 | sizeof(request_t), (*req)->ring, (*req)->dma); |
| 2781 | (*req)->ring = NULL; |
| 2782 | (*req)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2783 | fail_req_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2784 | kfree(*req); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2785 | fail_req: |
| 2786 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
| 2787 | ha->ct_sns, ha->ct_sns_dma); |
| 2788 | ha->ct_sns = NULL; |
| 2789 | ha->ct_sns_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2790 | fail_free_ms_iocb: |
| 2791 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 2792 | ha->ms_iocb = NULL; |
| 2793 | ha->ms_iocb_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2794 | fail_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2795 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2796 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 2797 | ha->fcp_cmnd_dma_pool = NULL; |
| 2798 | } |
| 2799 | fail_dl_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2800 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2801 | dma_pool_destroy(ha->dl_dma_pool); |
| 2802 | ha->dl_dma_pool = NULL; |
| 2803 | } |
| 2804 | fail_s_dma_pool: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2805 | dma_pool_destroy(ha->s_dma_pool); |
| 2806 | ha->s_dma_pool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2807 | fail_free_nvram: |
| 2808 | kfree(ha->nvram); |
| 2809 | ha->nvram = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2810 | fail_free_ctx_mempool: |
| 2811 | mempool_destroy(ha->ctx_mempool); |
| 2812 | ha->ctx_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2813 | fail_free_srb_mempool: |
| 2814 | mempool_destroy(ha->srb_mempool); |
| 2815 | ha->srb_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2816 | fail_free_gid_list: |
| 2817 | dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2818 | ha->gid_list_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2819 | ha->gid_list = NULL; |
| 2820 | ha->gid_list_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2821 | fail_free_init_cb: |
| 2822 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, |
| 2823 | ha->init_cb_dma); |
| 2824 | ha->init_cb = NULL; |
| 2825 | ha->init_cb_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2826 | fail: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2827 | DEBUG(printk("%s: Memory allocation failure\n", __func__)); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2828 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2829 | } |
| 2830 | |
| 2831 | /* |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2832 | * qla2x00_free_fw_dump |
| 2833 | * Frees fw dump stuff. |
| 2834 | * |
| 2835 | * Input: |
| 2836 | * ha = adapter block pointer. |
| 2837 | */ |
| 2838 | static void |
| 2839 | qla2x00_free_fw_dump(struct qla_hw_data *ha) |
| 2840 | { |
| 2841 | if (ha->fce) |
| 2842 | dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce, |
| 2843 | ha->fce_dma); |
| 2844 | |
| 2845 | if (ha->fw_dump) { |
| 2846 | if (ha->eft) |
| 2847 | dma_free_coherent(&ha->pdev->dev, |
| 2848 | ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma); |
| 2849 | vfree(ha->fw_dump); |
| 2850 | } |
| 2851 | ha->fce = NULL; |
| 2852 | ha->fce_dma = 0; |
| 2853 | ha->eft = NULL; |
| 2854 | ha->eft_dma = 0; |
| 2855 | ha->fw_dump = NULL; |
| 2856 | ha->fw_dumped = 0; |
| 2857 | ha->fw_dump_reading = 0; |
| 2858 | } |
| 2859 | |
| 2860 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | * qla2x00_mem_free |
| 2862 | * Frees all adapter allocated memory. |
| 2863 | * |
| 2864 | * Input: |
| 2865 | * ha = adapter block pointer. |
| 2866 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 2867 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2868 | qla2x00_mem_free(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | { |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2870 | qla2x00_free_fw_dump(ha); |
| 2871 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2872 | if (ha->srb_mempool) |
| 2873 | mempool_destroy(ha->srb_mempool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2874 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 2875 | if (ha->dcbx_tlv) |
| 2876 | dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, |
| 2877 | ha->dcbx_tlv, ha->dcbx_tlv_dma); |
| 2878 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 2879 | if (ha->xgmac_data) |
| 2880 | dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 2881 | ha->xgmac_data, ha->xgmac_data_dma); |
| 2882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | if (ha->sns_cmd) |
| 2884 | dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2885 | ha->sns_cmd, ha->sns_cmd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | |
| 2887 | if (ha->ct_sns) |
| 2888 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2889 | ha->ct_sns, ha->ct_sns_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 2891 | if (ha->sfp_data) |
| 2892 | dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma); |
| 2893 | |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 2894 | if (ha->edc_data) |
| 2895 | dma_pool_free(ha->s_dma_pool, ha->edc_data, ha->edc_data_dma); |
| 2896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | if (ha->ms_iocb) |
| 2898 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 2899 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2900 | if (ha->ex_init_cb) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2901 | dma_pool_free(ha->s_dma_pool, |
| 2902 | ha->ex_init_cb, ha->ex_init_cb_dma); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2903 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 2904 | if (ha->async_pd) |
| 2905 | dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); |
| 2906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | if (ha->s_dma_pool) |
| 2908 | dma_pool_destroy(ha->s_dma_pool); |
| 2909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | if (ha->gid_list) |
| 2911 | dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2912 | ha->gid_list_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2914 | if (IS_QLA82XX(ha)) { |
| 2915 | if (!list_empty(&ha->gbl_dsd_list)) { |
| 2916 | struct dsd_dma *dsd_ptr, *tdsd_ptr; |
| 2917 | |
| 2918 | /* clean up allocated prev pool */ |
| 2919 | list_for_each_entry_safe(dsd_ptr, |
| 2920 | tdsd_ptr, &ha->gbl_dsd_list, list) { |
| 2921 | dma_pool_free(ha->dl_dma_pool, |
| 2922 | dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma); |
| 2923 | list_del(&dsd_ptr->list); |
| 2924 | kfree(dsd_ptr); |
| 2925 | } |
| 2926 | } |
| 2927 | } |
| 2928 | |
| 2929 | if (ha->dl_dma_pool) |
| 2930 | dma_pool_destroy(ha->dl_dma_pool); |
| 2931 | |
| 2932 | if (ha->fcp_cmnd_dma_pool) |
| 2933 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 2934 | |
| 2935 | if (ha->ctx_mempool) |
| 2936 | mempool_destroy(ha->ctx_mempool); |
| 2937 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2938 | if (ha->init_cb) |
| 2939 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2940 | ha->init_cb, ha->init_cb_dma); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2941 | vfree(ha->optrom_buffer); |
| 2942 | kfree(ha->nvram); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2943 | kfree(ha->npiv_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2944 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 2945 | ha->srb_mempool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2946 | ha->ctx_mempool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | ha->sns_cmd = NULL; |
| 2948 | ha->sns_cmd_dma = 0; |
| 2949 | ha->ct_sns = NULL; |
| 2950 | ha->ct_sns_dma = 0; |
| 2951 | ha->ms_iocb = NULL; |
| 2952 | ha->ms_iocb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | ha->init_cb = NULL; |
| 2954 | ha->init_cb_dma = 0; |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 2955 | ha->ex_init_cb = NULL; |
| 2956 | ha->ex_init_cb_dma = 0; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 2957 | ha->async_pd = NULL; |
| 2958 | ha->async_pd_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
| 2960 | ha->s_dma_pool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2961 | ha->dl_dma_pool = NULL; |
| 2962 | ha->fcp_cmnd_dma_pool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | ha->gid_list = NULL; |
| 2965 | ha->gid_list_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2966 | } |
| 2967 | |
| 2968 | struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, |
| 2969 | struct qla_hw_data *ha) |
| 2970 | { |
| 2971 | struct Scsi_Host *host; |
| 2972 | struct scsi_qla_host *vha = NULL; |
| 2973 | |
| 2974 | host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); |
| 2975 | if (host == NULL) { |
| 2976 | printk(KERN_WARNING |
| 2977 | "qla2xxx: Couldn't allocate host from scsi layer!\n"); |
| 2978 | goto fail; |
| 2979 | } |
| 2980 | |
| 2981 | /* Clear our data area */ |
| 2982 | vha = shost_priv(host); |
| 2983 | memset(vha, 0, sizeof(scsi_qla_host_t)); |
| 2984 | |
| 2985 | vha->host = host; |
| 2986 | vha->host_no = host->host_no; |
| 2987 | vha->hw = ha; |
| 2988 | |
| 2989 | INIT_LIST_HEAD(&vha->vp_fcports); |
| 2990 | INIT_LIST_HEAD(&vha->work_list); |
| 2991 | INIT_LIST_HEAD(&vha->list); |
| 2992 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 2993 | spin_lock_init(&vha->work_lock); |
| 2994 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2995 | sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); |
| 2996 | return vha; |
| 2997 | |
| 2998 | fail: |
| 2999 | return vha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | } |
| 3001 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3002 | static struct qla_work_evt * |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3003 | 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] | 3004 | { |
| 3005 | struct qla_work_evt *e; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3006 | uint8_t bail; |
| 3007 | |
| 3008 | QLA_VHA_MARK_BUSY(vha, bail); |
| 3009 | if (bail) |
| 3010 | return NULL; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3011 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3012 | e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3013 | if (!e) { |
| 3014 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3015 | return NULL; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3016 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3017 | |
| 3018 | INIT_LIST_HEAD(&e->list); |
| 3019 | e->type = type; |
| 3020 | e->flags = QLA_EVT_FLAG_FREE; |
| 3021 | return e; |
| 3022 | } |
| 3023 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3024 | static int |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3025 | qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3026 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3027 | unsigned long flags; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3028 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3029 | spin_lock_irqsave(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3030 | list_add_tail(&e->list, &vha->work_list); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3031 | spin_unlock_irqrestore(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3032 | qla2xxx_wake_dpc(vha); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3033 | |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3034 | return QLA_SUCCESS; |
| 3035 | } |
| 3036 | |
| 3037 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3038 | 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] | 3039 | u32 data) |
| 3040 | { |
| 3041 | struct qla_work_evt *e; |
| 3042 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3043 | e = qla2x00_alloc_work(vha, QLA_EVT_AEN); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3044 | if (!e) |
| 3045 | return QLA_FUNCTION_FAILED; |
| 3046 | |
| 3047 | e->u.aen.code = code; |
| 3048 | e->u.aen.data = data; |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3049 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3050 | } |
| 3051 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3052 | int |
| 3053 | qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) |
| 3054 | { |
| 3055 | struct qla_work_evt *e; |
| 3056 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3057 | e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3058 | if (!e) |
| 3059 | return QLA_FUNCTION_FAILED; |
| 3060 | |
| 3061 | memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t)); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3062 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3063 | } |
| 3064 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3065 | #define qla2x00_post_async_work(name, type) \ |
| 3066 | int qla2x00_post_async_##name##_work( \ |
| 3067 | struct scsi_qla_host *vha, \ |
| 3068 | fc_port_t *fcport, uint16_t *data) \ |
| 3069 | { \ |
| 3070 | struct qla_work_evt *e; \ |
| 3071 | \ |
| 3072 | e = qla2x00_alloc_work(vha, type); \ |
| 3073 | if (!e) \ |
| 3074 | return QLA_FUNCTION_FAILED; \ |
| 3075 | \ |
| 3076 | e->u.logio.fcport = fcport; \ |
| 3077 | if (data) { \ |
| 3078 | e->u.logio.data[0] = data[0]; \ |
| 3079 | e->u.logio.data[1] = data[1]; \ |
| 3080 | } \ |
| 3081 | return qla2x00_post_work(vha, e); \ |
| 3082 | } |
| 3083 | |
| 3084 | qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN); |
| 3085 | qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE); |
| 3086 | qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT); |
| 3087 | qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3088 | qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC); |
| 3089 | qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3090 | |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 3091 | int |
| 3092 | qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code) |
| 3093 | { |
| 3094 | struct qla_work_evt *e; |
| 3095 | |
| 3096 | e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT); |
| 3097 | if (!e) |
| 3098 | return QLA_FUNCTION_FAILED; |
| 3099 | |
| 3100 | e->u.uevent.code = code; |
| 3101 | return qla2x00_post_work(vha, e); |
| 3102 | } |
| 3103 | |
| 3104 | static void |
| 3105 | qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code) |
| 3106 | { |
| 3107 | char event_string[40]; |
| 3108 | char *envp[] = { event_string, NULL }; |
| 3109 | |
| 3110 | switch (code) { |
| 3111 | case QLA_UEVENT_CODE_FW_DUMP: |
| 3112 | snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld", |
| 3113 | vha->host_no); |
| 3114 | break; |
| 3115 | default: |
| 3116 | /* do nothing */ |
| 3117 | break; |
| 3118 | } |
| 3119 | kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp); |
| 3120 | } |
| 3121 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3122 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3123 | qla2x00_do_work(struct scsi_qla_host *vha) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3124 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3125 | struct qla_work_evt *e, *tmp; |
| 3126 | unsigned long flags; |
| 3127 | LIST_HEAD(work); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3128 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3129 | spin_lock_irqsave(&vha->work_lock, flags); |
| 3130 | list_splice_init(&vha->work_list, &work); |
| 3131 | spin_unlock_irqrestore(&vha->work_lock, flags); |
| 3132 | |
| 3133 | list_for_each_entry_safe(e, tmp, &work, list) { |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3134 | list_del_init(&e->list); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3135 | |
| 3136 | switch (e->type) { |
| 3137 | case QLA_EVT_AEN: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3138 | fc_host_post_event(vha->host, fc_get_event_number(), |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3139 | e->u.aen.code, e->u.aen.data); |
| 3140 | break; |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3141 | case QLA_EVT_IDC_ACK: |
| 3142 | qla81xx_idc_ack(vha, e->u.idc_ack.mb); |
| 3143 | break; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3144 | case QLA_EVT_ASYNC_LOGIN: |
| 3145 | qla2x00_async_login(vha, e->u.logio.fcport, |
| 3146 | e->u.logio.data); |
| 3147 | break; |
| 3148 | case QLA_EVT_ASYNC_LOGIN_DONE: |
| 3149 | qla2x00_async_login_done(vha, e->u.logio.fcport, |
| 3150 | e->u.logio.data); |
| 3151 | break; |
| 3152 | case QLA_EVT_ASYNC_LOGOUT: |
| 3153 | qla2x00_async_logout(vha, e->u.logio.fcport); |
| 3154 | break; |
| 3155 | case QLA_EVT_ASYNC_LOGOUT_DONE: |
| 3156 | qla2x00_async_logout_done(vha, e->u.logio.fcport, |
| 3157 | e->u.logio.data); |
| 3158 | break; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3159 | case QLA_EVT_ASYNC_ADISC: |
| 3160 | qla2x00_async_adisc(vha, e->u.logio.fcport, |
| 3161 | e->u.logio.data); |
| 3162 | break; |
| 3163 | case QLA_EVT_ASYNC_ADISC_DONE: |
| 3164 | qla2x00_async_adisc_done(vha, e->u.logio.fcport, |
| 3165 | e->u.logio.data); |
| 3166 | break; |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 3167 | case QLA_EVT_UEVENT: |
| 3168 | qla2x00_uevent_emit(vha, e->u.uevent.code); |
| 3169 | break; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3170 | } |
| 3171 | if (e->flags & QLA_EVT_FLAG_FREE) |
| 3172 | kfree(e); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3173 | |
| 3174 | /* For each work completed decrement vha ref count */ |
| 3175 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3176 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3177 | } |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3178 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3179 | /* Relogins all the fcports of a vport |
| 3180 | * Context: dpc thread |
| 3181 | */ |
| 3182 | void qla2x00_relogin(struct scsi_qla_host *vha) |
| 3183 | { |
| 3184 | fc_port_t *fcport; |
Andrew Vasquez | c6b2fca | 2009-03-05 11:07:03 -0800 | [diff] [blame] | 3185 | int status; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3186 | uint16_t next_loopid = 0; |
| 3187 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3188 | uint16_t data[2]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3189 | |
| 3190 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 3191 | /* |
| 3192 | * If the port is not ONLINE then try to login |
| 3193 | * to it if we haven't run out of retries. |
| 3194 | */ |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3195 | if (atomic_read(&fcport->state) != FCS_ONLINE && |
| 3196 | fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3197 | fcport->login_retry--; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3198 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 3199 | if (fcport->flags & FCF_FCP2_DEVICE) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3200 | ha->isp_ops->fabric_logout(vha, |
| 3201 | fcport->loop_id, |
| 3202 | fcport->d_id.b.domain, |
| 3203 | fcport->d_id.b.area, |
| 3204 | fcport->d_id.b.al_pa); |
| 3205 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3206 | if (IS_ALOGIO_CAPABLE(ha)) { |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3207 | fcport->flags |= FCF_ASYNC_SENT; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3208 | data[0] = 0; |
| 3209 | data[1] = QLA_LOGIO_LOGIN_RETRIED; |
| 3210 | status = qla2x00_post_async_login_work( |
| 3211 | vha, fcport, data); |
| 3212 | if (status == QLA_SUCCESS) |
| 3213 | continue; |
| 3214 | /* Attempt a retry. */ |
| 3215 | status = 1; |
| 3216 | } else |
| 3217 | status = qla2x00_fabric_login(vha, |
| 3218 | fcport, &next_loopid); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3219 | } else |
| 3220 | status = qla2x00_local_device_login(vha, |
| 3221 | fcport); |
| 3222 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3223 | if (status == QLA_SUCCESS) { |
| 3224 | fcport->old_loop_id = fcport->loop_id; |
| 3225 | |
| 3226 | DEBUG(printk("scsi(%ld): port login OK: logged " |
| 3227 | "in ID 0x%x\n", vha->host_no, fcport->loop_id)); |
| 3228 | |
| 3229 | qla2x00_update_fcport(vha, fcport); |
| 3230 | |
| 3231 | } else if (status == 1) { |
| 3232 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 3233 | /* retry the login again */ |
| 3234 | DEBUG(printk("scsi(%ld): Retrying" |
| 3235 | " %d login again loop_id 0x%x\n", |
| 3236 | vha->host_no, fcport->login_retry, |
| 3237 | fcport->loop_id)); |
| 3238 | } else { |
| 3239 | fcport->login_retry = 0; |
| 3240 | } |
| 3241 | |
| 3242 | if (fcport->login_retry == 0 && status != QLA_SUCCESS) |
| 3243 | fcport->loop_id = FC_NO_LOOP_ID; |
| 3244 | } |
| 3245 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| 3246 | break; |
| 3247 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3248 | } |
| 3249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3250 | /************************************************************************** |
| 3251 | * qla2x00_do_dpc |
| 3252 | * This kernel thread is a task that is schedule by the interrupt handler |
| 3253 | * to perform the background processing for interrupts. |
| 3254 | * |
| 3255 | * Notes: |
| 3256 | * This task always run in the context of a kernel thread. It |
| 3257 | * is kick-off by the driver's detect code and starts up |
| 3258 | * up one per adapter. It immediately goes to sleep and waits for |
| 3259 | * some fibre event. When either the interrupt handler or |
| 3260 | * the timer routine detects a event it will one of the task |
| 3261 | * bits then wake us up. |
| 3262 | **************************************************************************/ |
| 3263 | static int |
| 3264 | qla2x00_do_dpc(void *data) |
| 3265 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3266 | int rval; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3267 | scsi_qla_host_t *base_vha; |
| 3268 | struct qla_hw_data *ha; |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 3269 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3270 | ha = (struct qla_hw_data *)data; |
| 3271 | base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | set_user_nice(current, -20); |
| 3274 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 3275 | while (!kthread_should_stop()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3276 | DEBUG3(printk("qla2x00: DPC handler sleeping\n")); |
| 3277 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 3278 | set_current_state(TASK_INTERRUPTIBLE); |
| 3279 | schedule(); |
| 3280 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | |
| 3282 | DEBUG3(printk("qla2x00: DPC handler waking up\n")); |
| 3283 | |
| 3284 | /* Initialization not yet finished. Don't do anything yet. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3285 | if (!base_vha->flags.init_done) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | continue; |
| 3287 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3288 | if (ha->flags.eeh_busy) { |
| 3289 | DEBUG17(qla_printk(KERN_WARNING, ha, |
| 3290 | "qla2x00_do_dpc: dpc_flags: %lx\n", |
| 3291 | base_vha->dpc_flags)); |
| 3292 | continue; |
| 3293 | } |
| 3294 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3295 | DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | |
| 3297 | ha->dpc_active = 1; |
| 3298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | if (ha->flags.mbox_busy) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | ha->dpc_active = 0; |
| 3301 | continue; |
| 3302 | } |
| 3303 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3304 | qla2x00_do_work(base_vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3305 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3306 | if (IS_QLA82XX(ha)) { |
| 3307 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 3308 | &base_vha->dpc_flags)) { |
| 3309 | qla82xx_idc_lock(ha); |
| 3310 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 3311 | QLA82XX_DEV_FAILED); |
| 3312 | qla82xx_idc_unlock(ha); |
| 3313 | qla_printk(KERN_INFO, ha, |
| 3314 | "HW State: FAILED\n"); |
| 3315 | qla82xx_device_state_handler(base_vha); |
| 3316 | continue; |
| 3317 | } |
| 3318 | |
| 3319 | if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED, |
| 3320 | &base_vha->dpc_flags)) { |
| 3321 | |
| 3322 | DEBUG(printk(KERN_INFO |
| 3323 | "scsi(%ld): dpc: sched " |
| 3324 | "qla82xx_fcoe_ctx_reset ha = %p\n", |
| 3325 | base_vha->host_no, ha)); |
| 3326 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
| 3327 | &base_vha->dpc_flags))) { |
| 3328 | if (qla82xx_fcoe_ctx_reset(base_vha)) { |
| 3329 | /* FCoE-ctx reset failed. |
| 3330 | * Escalate to chip-reset |
| 3331 | */ |
| 3332 | set_bit(ISP_ABORT_NEEDED, |
| 3333 | &base_vha->dpc_flags); |
| 3334 | } |
| 3335 | clear_bit(ABORT_ISP_ACTIVE, |
| 3336 | &base_vha->dpc_flags); |
| 3337 | } |
| 3338 | |
| 3339 | DEBUG(printk("scsi(%ld): dpc:" |
| 3340 | " qla82xx_fcoe_ctx_reset end\n", |
| 3341 | base_vha->host_no)); |
| 3342 | } |
| 3343 | } |
| 3344 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3345 | if (test_and_clear_bit(ISP_ABORT_NEEDED, |
| 3346 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | |
| 3348 | DEBUG(printk("scsi(%ld): dpc: sched " |
| 3349 | "qla2x00_abort_isp ha = %p\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3350 | base_vha->host_no, ha)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3352 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3354 | if (ha->isp_ops->abort_isp(base_vha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3355 | /* failed. retry later */ |
| 3356 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3357 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3358 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3359 | clear_bit(ABORT_ISP_ACTIVE, |
| 3360 | &base_vha->dpc_flags); |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 3361 | } |
| 3362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3364 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | } |
| 3366 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3367 | if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) { |
| 3368 | qla2x00_update_fcports(base_vha); |
| 3369 | clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 3370 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3371 | |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 3372 | if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) { |
| 3373 | DEBUG(printk(KERN_INFO "scsi(%ld): dpc: sched " |
| 3374 | "qla2x00_quiesce_needed ha = %p\n", |
| 3375 | base_vha->host_no, ha)); |
| 3376 | qla82xx_device_state_handler(base_vha); |
| 3377 | clear_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags); |
| 3378 | if (!ha->flags.quiesce_owner) { |
| 3379 | qla2x00_perform_loop_resync(base_vha); |
| 3380 | |
| 3381 | qla82xx_idc_lock(ha); |
| 3382 | qla82xx_clear_qsnt_ready(base_vha); |
| 3383 | qla82xx_idc_unlock(ha); |
| 3384 | } |
| 3385 | } |
| 3386 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3387 | if (test_and_clear_bit(RESET_MARKER_NEEDED, |
| 3388 | &base_vha->dpc_flags) && |
| 3389 | (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3390 | |
| 3391 | DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3392 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3393 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3394 | qla2x00_rst_aen(base_vha); |
| 3395 | clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | } |
| 3397 | |
| 3398 | /* Retry each device up to login retry count */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3399 | if ((test_and_clear_bit(RELOGIN_NEEDED, |
| 3400 | &base_vha->dpc_flags)) && |
| 3401 | !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && |
| 3402 | atomic_read(&base_vha->loop_state) != LOOP_DOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3403 | |
| 3404 | DEBUG(printk("scsi(%ld): qla2x00_port_login()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3405 | base_vha->host_no)); |
| 3406 | qla2x00_relogin(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3409 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3410 | } |
| 3411 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3412 | if (test_and_clear_bit(LOOP_RESYNC_NEEDED, |
| 3413 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3414 | |
| 3415 | DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3416 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 | |
| 3418 | if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3419 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3420 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3421 | rval = qla2x00_loop_resync(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3422 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3423 | clear_bit(LOOP_RESYNC_ACTIVE, |
| 3424 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | } |
| 3426 | |
| 3427 | DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3428 | base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3429 | } |
| 3430 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3431 | if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && |
| 3432 | atomic_read(&base_vha->loop_state) == LOOP_READY) { |
| 3433 | clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); |
| 3434 | qla2xxx_flash_npiv_conf(base_vha); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 3435 | } |
| 3436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 | if (!ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 3438 | ha->isp_ops->enable_intrs(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3440 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, |
| 3441 | &base_vha->dpc_flags)) |
| 3442 | ha->isp_ops->beacon_blink(base_vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 3443 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3444 | qla2x00_do_dpc_all_vps(base_vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3446 | ha->dpc_active = 0; |
| 3447 | } /* End of while(1) */ |
| 3448 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3449 | DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | |
| 3451 | /* |
| 3452 | * Make sure that nobody tries to wake us up again. |
| 3453 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | ha->dpc_active = 0; |
| 3455 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3456 | /* Cleanup any residual CTX SRBs. */ |
| 3457 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 3458 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 3459 | return 0; |
| 3460 | } |
| 3461 | |
| 3462 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3463 | qla2xxx_wake_dpc(struct scsi_qla_host *vha) |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 3464 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3465 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 3466 | struct task_struct *t = ha->dpc_thread; |
| 3467 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3468 | if (!test_bit(UNLOADING, &vha->dpc_flags) && t) |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 3469 | wake_up_process(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3470 | } |
| 3471 | |
| 3472 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3473 | * qla2x00_rst_aen |
| 3474 | * Processes asynchronous reset. |
| 3475 | * |
| 3476 | * Input: |
| 3477 | * ha = adapter block pointer. |
| 3478 | */ |
| 3479 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3480 | qla2x00_rst_aen(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3481 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3482 | if (vha->flags.online && !vha->flags.reset_active && |
| 3483 | !atomic_read(&vha->loop_down_timer) && |
| 3484 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3485 | do { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3486 | clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | |
| 3488 | /* |
| 3489 | * Issue marker command only when we are going to start |
| 3490 | * the I/O. |
| 3491 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3492 | vha->marker_needed = 1; |
| 3493 | } while (!atomic_read(&vha->loop_down_timer) && |
| 3494 | (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | } |
| 3496 | } |
| 3497 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3498 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3499 | qla2x00_sp_free_dma(srb_t *sp) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3500 | { |
| 3501 | struct scsi_cmnd *cmd = sp->cmd; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3502 | struct qla_hw_data *ha = sp->fcport->vha->hw; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3503 | |
| 3504 | if (sp->flags & SRB_DMA_VALID) { |
FUJITA Tomonori | 385d70b | 2007-05-26 01:55:38 +0900 | [diff] [blame] | 3505 | scsi_dma_unmap(cmd); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3506 | sp->flags &= ~SRB_DMA_VALID; |
| 3507 | } |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3508 | |
| 3509 | if (sp->flags & SRB_CRC_PROT_DMA_VALID) { |
| 3510 | dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), |
| 3511 | scsi_prot_sg_count(cmd), cmd->sc_data_direction); |
| 3512 | sp->flags &= ~SRB_CRC_PROT_DMA_VALID; |
| 3513 | } |
| 3514 | |
| 3515 | if (sp->flags & SRB_CRC_CTX_DSD_VALID) { |
| 3516 | /* List assured to be having elements */ |
| 3517 | qla2x00_clean_dsd_pool(ha, sp); |
| 3518 | sp->flags &= ~SRB_CRC_CTX_DSD_VALID; |
| 3519 | } |
| 3520 | |
| 3521 | if (sp->flags & SRB_CRC_CTX_DMA_VALID) { |
| 3522 | dma_pool_free(ha->dl_dma_pool, sp->ctx, |
| 3523 | ((struct crc_context *)sp->ctx)->crc_ctx_dma); |
| 3524 | sp->flags &= ~SRB_CRC_CTX_DMA_VALID; |
| 3525 | } |
| 3526 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3527 | CMD_SP(cmd) = NULL; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3528 | } |
| 3529 | |
Andrew Vasquez | 3dbe756 | 2010-07-23 15:28:37 +0500 | [diff] [blame] | 3530 | static void |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 3531 | qla2x00_sp_final_compl(struct qla_hw_data *ha, srb_t *sp) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3532 | { |
| 3533 | struct scsi_cmnd *cmd = sp->cmd; |
| 3534 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3535 | qla2x00_sp_free_dma(sp); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3536 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3537 | if (sp->flags & SRB_FCP_CMND_DMA_VALID) { |
| 3538 | struct ct6_dsd *ctx = sp->ctx; |
| 3539 | dma_pool_free(ha->fcp_cmnd_dma_pool, ctx->fcp_cmnd, |
| 3540 | ctx->fcp_cmnd_dma); |
| 3541 | list_splice(&ctx->dsd_list, &ha->gbl_dsd_list); |
| 3542 | ha->gbl_dsd_inuse -= ctx->dsd_use_cnt; |
| 3543 | ha->gbl_dsd_avail += ctx->dsd_use_cnt; |
| 3544 | mempool_free(sp->ctx, ha->ctx_mempool); |
| 3545 | sp->ctx = NULL; |
| 3546 | } |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3547 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3548 | mempool_free(sp, ha->srb_mempool); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 3549 | cmd->scsi_done(cmd); |
| 3550 | } |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 3551 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 3552 | void |
| 3553 | qla2x00_sp_compl(struct qla_hw_data *ha, srb_t *sp) |
| 3554 | { |
| 3555 | if (atomic_read(&sp->ref_count) == 0) { |
| 3556 | DEBUG2(qla_printk(KERN_WARNING, ha, |
| 3557 | "SP reference-count to ZERO -- sp=%p\n", sp)); |
| 3558 | DEBUG2(BUG()); |
| 3559 | return; |
| 3560 | } |
| 3561 | if (!atomic_dec_and_test(&sp->ref_count)) |
| 3562 | return; |
| 3563 | qla2x00_sp_final_compl(ha, sp); |
| 3564 | } |
| 3565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3566 | /************************************************************************** |
| 3567 | * qla2x00_timer |
| 3568 | * |
| 3569 | * Description: |
| 3570 | * One second timer |
| 3571 | * |
| 3572 | * Context: Interrupt |
| 3573 | ***************************************************************************/ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3574 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3575 | qla2x00_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | unsigned long cpu_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | int start_dpc = 0; |
| 3579 | int index; |
| 3580 | srb_t *sp; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3581 | uint16_t w; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3582 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3583 | struct req_que *req; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3584 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 3585 | if (ha->flags.eeh_busy) { |
| 3586 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
| 3587 | return; |
| 3588 | } |
| 3589 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3590 | /* Hardware read to raise pending EEH errors during mailbox waits. */ |
| 3591 | if (!pci_channel_offline(ha->pdev)) |
| 3592 | pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 3594 | if (IS_QLA82XX(ha)) { |
| 3595 | if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) |
| 3596 | start_dpc++; |
| 3597 | qla82xx_watchdog(vha); |
| 3598 | } |
| 3599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | /* Loop down handler. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3601 | if (atomic_read(&vha->loop_down_timer) > 0 && |
| 3602 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) |
| 3603 | && vha->flags.online) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3605 | if (atomic_read(&vha->loop_down_timer) == |
| 3606 | vha->loop_down_abort_time) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | |
| 3608 | DEBUG(printk("scsi(%ld): Loop Down - aborting the " |
| 3609 | "queues before time expire\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3610 | vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3611 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3612 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 3613 | atomic_set(&vha->loop_state, LOOP_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 3615 | /* |
| 3616 | * Schedule an ISP abort to return any FCP2-device |
| 3617 | * commands. |
| 3618 | */ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3619 | /* NPIV - scan physical port only */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3620 | if (!vha->vp_idx) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3621 | spin_lock_irqsave(&ha->hardware_lock, |
| 3622 | cpu_flags); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3623 | req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3624 | for (index = 1; |
| 3625 | index < MAX_OUTSTANDING_COMMANDS; |
| 3626 | index++) { |
| 3627 | fc_port_t *sfcp; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 3628 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3629 | sp = req->outstanding_cmds[index]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3630 | if (!sp) |
| 3631 | continue; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3632 | if (sp->ctx && !IS_PROT_IO(sp)) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 3633 | continue; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3634 | sfcp = sp->fcport; |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 3635 | if (!(sfcp->flags & FCF_FCP2_DEVICE)) |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3636 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3637 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3638 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3639 | &vha->dpc_flags); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3640 | break; |
| 3641 | } |
| 3642 | spin_unlock_irqrestore(&ha->hardware_lock, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3643 | cpu_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | start_dpc++; |
| 3646 | } |
| 3647 | |
| 3648 | /* if the loop has been down for 4 minutes, reinit adapter */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3649 | if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3650 | if (!(vha->device_flags & DFLG_NO_CABLE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3651 | DEBUG(printk("scsi(%ld): Loop down - " |
| 3652 | "aborting ISP.\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3653 | vha->host_no)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | qla_printk(KERN_WARNING, ha, |
| 3655 | "Loop down - aborting ISP.\n"); |
| 3656 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3657 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | } |
| 3659 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 3660 | DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n", |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3661 | vha->host_no, |
| 3662 | atomic_read(&vha->loop_down_timer))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | } |
| 3664 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 3665 | /* Check if beacon LED needs to be blinked */ |
| 3666 | if (ha->beacon_blink_led == 1) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3667 | set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 3668 | start_dpc++; |
| 3669 | } |
| 3670 | |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 3671 | /* Process any deferred work. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3672 | if (!list_empty(&vha->work_list)) |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 3673 | start_dpc++; |
| 3674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3675 | /* Schedule the DPC routine if needed */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3676 | if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 3677 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || |
| 3678 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | start_dpc || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3680 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || |
| 3681 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3682 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) || |
| 3683 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3684 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || |
| 3685 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) |
| 3686 | qla2xxx_wake_dpc(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3688 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3689 | } |
| 3690 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3691 | /* Firmware interface routines. */ |
| 3692 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3693 | #define FW_BLOBS 8 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3694 | #define FW_ISP21XX 0 |
| 3695 | #define FW_ISP22XX 1 |
| 3696 | #define FW_ISP2300 2 |
| 3697 | #define FW_ISP2322 3 |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3698 | #define FW_ISP24XX 4 |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3699 | #define FW_ISP25XX 5 |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3700 | #define FW_ISP81XX 6 |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3701 | #define FW_ISP82XX 7 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3702 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3703 | #define FW_FILE_ISP21XX "ql2100_fw.bin" |
| 3704 | #define FW_FILE_ISP22XX "ql2200_fw.bin" |
| 3705 | #define FW_FILE_ISP2300 "ql2300_fw.bin" |
| 3706 | #define FW_FILE_ISP2322 "ql2322_fw.bin" |
| 3707 | #define FW_FILE_ISP24XX "ql2400_fw.bin" |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3708 | #define FW_FILE_ISP25XX "ql2500_fw.bin" |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3709 | #define FW_FILE_ISP81XX "ql8100_fw.bin" |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3710 | #define FW_FILE_ISP82XX "ql8200_fw.bin" |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3711 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3712 | static DEFINE_MUTEX(qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3713 | |
| 3714 | static struct fw_blob qla_fw_blobs[FW_BLOBS] = { |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 3715 | { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, |
| 3716 | { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, |
| 3717 | { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, |
| 3718 | { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, |
| 3719 | { .name = FW_FILE_ISP24XX, }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3720 | { .name = FW_FILE_ISP25XX, }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3721 | { .name = FW_FILE_ISP81XX, }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3722 | { .name = FW_FILE_ISP82XX, }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3723 | }; |
| 3724 | |
| 3725 | struct fw_blob * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3726 | qla2x00_request_firmware(scsi_qla_host_t *vha) |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3727 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3728 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3729 | struct fw_blob *blob; |
| 3730 | |
| 3731 | blob = NULL; |
| 3732 | if (IS_QLA2100(ha)) { |
| 3733 | blob = &qla_fw_blobs[FW_ISP21XX]; |
| 3734 | } else if (IS_QLA2200(ha)) { |
| 3735 | blob = &qla_fw_blobs[FW_ISP22XX]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3736 | } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3737 | blob = &qla_fw_blobs[FW_ISP2300]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 3738 | } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3739 | blob = &qla_fw_blobs[FW_ISP2322]; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 3740 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3741 | blob = &qla_fw_blobs[FW_ISP24XX]; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 3742 | } else if (IS_QLA25XX(ha)) { |
| 3743 | blob = &qla_fw_blobs[FW_ISP25XX]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3744 | } else if (IS_QLA81XX(ha)) { |
| 3745 | blob = &qla_fw_blobs[FW_ISP81XX]; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3746 | } else if (IS_QLA82XX(ha)) { |
| 3747 | blob = &qla_fw_blobs[FW_ISP82XX]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3748 | } |
| 3749 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3750 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3751 | if (blob->fw) |
| 3752 | goto out; |
| 3753 | |
| 3754 | if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { |
| 3755 | DEBUG2(printk("scsi(%ld): Failed to load firmware image " |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3756 | "(%s).\n", vha->host_no, blob->name)); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3757 | blob->fw = NULL; |
| 3758 | blob = NULL; |
| 3759 | goto out; |
| 3760 | } |
| 3761 | |
| 3762 | out: |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3763 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3764 | return blob; |
| 3765 | } |
| 3766 | |
| 3767 | static void |
| 3768 | qla2x00_release_firmware(void) |
| 3769 | { |
| 3770 | int idx; |
| 3771 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3772 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3773 | for (idx = 0; idx < FW_BLOBS; idx++) |
| 3774 | if (qla_fw_blobs[idx].fw) |
| 3775 | release_firmware(qla_fw_blobs[idx].fw); |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 3776 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 3777 | } |
| 3778 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3779 | static pci_ers_result_t |
| 3780 | qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) |
| 3781 | { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3782 | scsi_qla_host_t *vha = pci_get_drvdata(pdev); |
| 3783 | struct qla_hw_data *ha = vha->hw; |
| 3784 | |
| 3785 | DEBUG2(qla_printk(KERN_WARNING, ha, "error_detected:state %x\n", |
| 3786 | state)); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 3787 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3788 | switch (state) { |
| 3789 | case pci_channel_io_normal: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3790 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3791 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 3792 | case pci_channel_io_frozen: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3793 | ha->flags.eeh_busy = 1; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 3794 | /* For ISP82XX complete any pending mailbox cmd */ |
| 3795 | if (IS_QLA82XX(ha)) { |
| 3796 | ha->flags.fw_hung = 1; |
| 3797 | if (ha->flags.mbox_busy) { |
| 3798 | ha->flags.mbox_int = 1; |
| 3799 | DEBUG2(qla_printk(KERN_ERR, ha, |
| 3800 | "Due to pci channel io frozen, doing premature " |
| 3801 | "completion of mbx command\n")); |
| 3802 | complete(&ha->mbx_intr_comp); |
| 3803 | } |
| 3804 | } |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3805 | qla2x00_free_irqs(vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3806 | pci_disable_device(pdev); |
Lalit Chandivade | bddd2d6 | 2010-09-03 15:20:53 -0700 | [diff] [blame] | 3807 | /* Return back all IOs */ |
| 3808 | qla2x00_abort_all_cmds(vha, DID_RESET << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3809 | return PCI_ERS_RESULT_NEED_RESET; |
| 3810 | case pci_channel_io_perm_failure: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3811 | ha->flags.pci_channel_io_perm_failure = 1; |
| 3812 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3813 | return PCI_ERS_RESULT_DISCONNECT; |
| 3814 | } |
| 3815 | return PCI_ERS_RESULT_NEED_RESET; |
| 3816 | } |
| 3817 | |
| 3818 | static pci_ers_result_t |
| 3819 | qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) |
| 3820 | { |
| 3821 | int risc_paused = 0; |
| 3822 | uint32_t stat; |
| 3823 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3824 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3825 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3826 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 3827 | struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; |
| 3828 | |
Saurav Kashyap | bcc5b6d | 2010-09-03 15:20:57 -0700 | [diff] [blame] | 3829 | if (IS_QLA82XX(ha)) |
| 3830 | return PCI_ERS_RESULT_RECOVERED; |
| 3831 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3832 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 3833 | if (IS_QLA2100(ha) || IS_QLA2200(ha)){ |
| 3834 | stat = RD_REG_DWORD(®->hccr); |
| 3835 | if (stat & HCCR_RISC_PAUSE) |
| 3836 | risc_paused = 1; |
| 3837 | } else if (IS_QLA23XX(ha)) { |
| 3838 | stat = RD_REG_DWORD(®->u.isp2300.host_status); |
| 3839 | if (stat & HSR_RISC_PAUSED) |
| 3840 | risc_paused = 1; |
| 3841 | } else if (IS_FWI2_CAPABLE(ha)) { |
| 3842 | stat = RD_REG_DWORD(®24->host_status); |
| 3843 | if (stat & HSRX_RISC_PAUSED) |
| 3844 | risc_paused = 1; |
| 3845 | } |
| 3846 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 3847 | |
| 3848 | if (risc_paused) { |
| 3849 | qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, " |
| 3850 | "Dumping firmware!\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3851 | ha->isp_ops->fw_dump(base_vha, 0); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3852 | |
| 3853 | return PCI_ERS_RESULT_NEED_RESET; |
| 3854 | } else |
| 3855 | return PCI_ERS_RESULT_RECOVERED; |
| 3856 | } |
| 3857 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 3858 | uint32_t qla82xx_error_recovery(scsi_qla_host_t *base_vha) |
| 3859 | { |
| 3860 | uint32_t rval = QLA_FUNCTION_FAILED; |
| 3861 | uint32_t drv_active = 0; |
| 3862 | struct qla_hw_data *ha = base_vha->hw; |
| 3863 | int fn; |
| 3864 | struct pci_dev *other_pdev = NULL; |
| 3865 | |
| 3866 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3867 | "scsi(%ld): In qla82xx_error_recovery\n", base_vha->host_no)); |
| 3868 | |
| 3869 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 3870 | |
| 3871 | if (base_vha->flags.online) { |
| 3872 | /* Abort all outstanding commands, |
| 3873 | * so as to be requeued later */ |
| 3874 | qla2x00_abort_isp_cleanup(base_vha); |
| 3875 | } |
| 3876 | |
| 3877 | |
| 3878 | fn = PCI_FUNC(ha->pdev->devfn); |
| 3879 | while (fn > 0) { |
| 3880 | fn--; |
| 3881 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3882 | "Finding pci device at function = 0x%x\n", fn)); |
| 3883 | other_pdev = |
| 3884 | pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus), |
| 3885 | ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn), |
| 3886 | fn)); |
| 3887 | |
| 3888 | if (!other_pdev) |
| 3889 | continue; |
| 3890 | if (atomic_read(&other_pdev->enable_cnt)) { |
| 3891 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3892 | "Found PCI func availabe and enabled at 0x%x\n", |
| 3893 | fn)); |
| 3894 | pci_dev_put(other_pdev); |
| 3895 | break; |
| 3896 | } |
| 3897 | pci_dev_put(other_pdev); |
| 3898 | } |
| 3899 | |
| 3900 | if (!fn) { |
| 3901 | /* Reset owner */ |
| 3902 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3903 | "This devfn is reset owner = 0x%x\n", ha->pdev->devfn)); |
| 3904 | qla82xx_idc_lock(ha); |
| 3905 | |
| 3906 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 3907 | QLA82XX_DEV_INITIALIZING); |
| 3908 | |
| 3909 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION, |
| 3910 | QLA82XX_IDC_VERSION); |
| 3911 | |
| 3912 | drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE); |
| 3913 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3914 | "drv_active = 0x%x\n", drv_active)); |
| 3915 | |
| 3916 | qla82xx_idc_unlock(ha); |
| 3917 | /* Reset if device is not already reset |
| 3918 | * drv_active would be 0 if a reset has already been done |
| 3919 | */ |
| 3920 | if (drv_active) |
| 3921 | rval = qla82xx_start_firmware(base_vha); |
| 3922 | else |
| 3923 | rval = QLA_SUCCESS; |
| 3924 | qla82xx_idc_lock(ha); |
| 3925 | |
| 3926 | if (rval != QLA_SUCCESS) { |
| 3927 | qla_printk(KERN_INFO, ha, "HW State: FAILED\n"); |
| 3928 | qla82xx_clear_drv_active(ha); |
| 3929 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 3930 | QLA82XX_DEV_FAILED); |
| 3931 | } else { |
| 3932 | qla_printk(KERN_INFO, ha, "HW State: READY\n"); |
| 3933 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 3934 | QLA82XX_DEV_READY); |
| 3935 | qla82xx_idc_unlock(ha); |
| 3936 | ha->flags.fw_hung = 0; |
| 3937 | rval = qla82xx_restart_isp(base_vha); |
| 3938 | qla82xx_idc_lock(ha); |
| 3939 | /* Clear driver state register */ |
| 3940 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0); |
| 3941 | qla82xx_set_drv_active(base_vha); |
| 3942 | } |
| 3943 | qla82xx_idc_unlock(ha); |
| 3944 | } else { |
| 3945 | DEBUG17(qla_printk(KERN_INFO, ha, |
| 3946 | "This devfn is not reset owner = 0x%x\n", ha->pdev->devfn)); |
| 3947 | if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) == |
| 3948 | QLA82XX_DEV_READY)) { |
| 3949 | ha->flags.fw_hung = 0; |
| 3950 | rval = qla82xx_restart_isp(base_vha); |
| 3951 | qla82xx_idc_lock(ha); |
| 3952 | qla82xx_set_drv_active(base_vha); |
| 3953 | qla82xx_idc_unlock(ha); |
| 3954 | } |
| 3955 | } |
| 3956 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 3957 | |
| 3958 | return rval; |
| 3959 | } |
| 3960 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3961 | static pci_ers_result_t |
| 3962 | qla2xxx_pci_slot_reset(struct pci_dev *pdev) |
| 3963 | { |
| 3964 | pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3965 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 3966 | struct qla_hw_data *ha = base_vha->hw; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3967 | struct rsp_que *rsp; |
| 3968 | int rc, retries = 10; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3969 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3970 | DEBUG17(qla_printk(KERN_WARNING, ha, "slot_reset\n")); |
| 3971 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3972 | /* Workaround: qla2xxx driver which access hardware earlier |
| 3973 | * needs error state to be pci_channel_io_online. |
| 3974 | * Otherwise mailbox command timesout. |
| 3975 | */ |
| 3976 | pdev->error_state = pci_channel_io_normal; |
| 3977 | |
| 3978 | pci_restore_state(pdev); |
| 3979 | |
Richard Lary | 8c1496b | 2010-02-18 10:07:29 -0800 | [diff] [blame] | 3980 | /* pci_restore_state() clears the saved_state flag of the device |
| 3981 | * save restored state which resets saved_state flag |
| 3982 | */ |
| 3983 | pci_save_state(pdev); |
| 3984 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 3985 | if (ha->mem_only) |
| 3986 | rc = pci_enable_device_mem(pdev); |
| 3987 | else |
| 3988 | rc = pci_enable_device(pdev); |
| 3989 | |
| 3990 | if (rc) { |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3991 | qla_printk(KERN_WARNING, ha, |
| 3992 | "Can't re-enable PCI device after reset.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 3993 | goto exit_slot_reset; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3994 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 3995 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3996 | rsp = ha->rsp_q_map[0]; |
| 3997 | if (qla2x00_request_irqs(ha, rsp)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 3998 | goto exit_slot_reset; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3999 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4000 | if (ha->isp_ops->pci_config(base_vha)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 4001 | goto exit_slot_reset; |
| 4002 | |
| 4003 | if (IS_QLA82XX(ha)) { |
| 4004 | if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) { |
| 4005 | ret = PCI_ERS_RESULT_RECOVERED; |
| 4006 | goto exit_slot_reset; |
| 4007 | } else |
| 4008 | goto exit_slot_reset; |
| 4009 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4010 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 4011 | while (ha->flags.mbox_busy && retries--) |
| 4012 | msleep(1000); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4013 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4014 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4015 | if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4016 | ret = PCI_ERS_RESULT_RECOVERED; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4017 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4018 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 4019 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 4020 | exit_slot_reset: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4021 | DEBUG17(qla_printk(KERN_WARNING, ha, |
| 4022 | "slot_reset-return:ret=%x\n", ret)); |
| 4023 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4024 | return ret; |
| 4025 | } |
| 4026 | |
| 4027 | static void |
| 4028 | qla2xxx_pci_resume(struct pci_dev *pdev) |
| 4029 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4030 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 4031 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4032 | int ret; |
| 4033 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4034 | DEBUG17(qla_printk(KERN_WARNING, ha, "pci_resume\n")); |
| 4035 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4036 | ret = qla2x00_wait_for_hba_online(base_vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4037 | if (ret != QLA_SUCCESS) { |
| 4038 | qla_printk(KERN_ERR, ha, |
| 4039 | "the device failed to resume I/O " |
| 4040 | "from slot/link_reset"); |
| 4041 | } |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4042 | |
Lalit Chandivade | 3e46f03 | 2010-05-04 15:01:23 -0700 | [diff] [blame] | 4043 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 4044 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4045 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4046 | } |
| 4047 | |
| 4048 | static struct pci_error_handlers qla2xxx_err_handler = { |
| 4049 | .error_detected = qla2xxx_pci_error_detected, |
| 4050 | .mmio_enabled = qla2xxx_pci_mmio_enabled, |
| 4051 | .slot_reset = qla2xxx_pci_slot_reset, |
| 4052 | .resume = qla2xxx_pci_resume, |
| 4053 | }; |
| 4054 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 4055 | static struct pci_device_id qla2xxx_pci_tbl[] = { |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 4056 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, |
| 4057 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, |
| 4058 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, |
| 4059 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, |
| 4060 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, |
| 4061 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, |
| 4062 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, |
| 4063 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, |
| 4064 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 4065 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 4066 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, |
| 4067 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 4068 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 4069 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4070 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 4071 | { 0 }, |
| 4072 | }; |
| 4073 | MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); |
| 4074 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4075 | static struct pci_driver qla2xxx_pci_driver = { |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 4076 | .name = QLA2XXX_DRIVER_NAME, |
James Bottomley | 0a21ef1 | 2005-12-01 12:51:50 -0600 | [diff] [blame] | 4077 | .driver = { |
| 4078 | .owner = THIS_MODULE, |
| 4079 | }, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4080 | .id_table = qla2xxx_pci_tbl, |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 4081 | .probe = qla2x00_probe_one, |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 4082 | .remove = qla2x00_remove_one, |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 4083 | .shutdown = qla2x00_shutdown, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 4084 | .err_handler = &qla2xxx_err_handler, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4085 | }; |
| 4086 | |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 4087 | static struct file_operations apidev_fops = { |
| 4088 | .owner = THIS_MODULE, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 4089 | .llseek = noop_llseek, |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 4090 | }; |
| 4091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | /** |
| 4093 | * qla2x00_module_init - Module initialization. |
| 4094 | **/ |
| 4095 | static int __init |
| 4096 | qla2x00_module_init(void) |
| 4097 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4098 | int ret = 0; |
| 4099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4100 | /* Allocate cache for SRBs. */ |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 4101 | srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 4102 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4103 | if (srb_cachep == NULL) { |
| 4104 | printk(KERN_ERR |
| 4105 | "qla2xxx: Unable to allocate SRB cache...Failing load!\n"); |
| 4106 | return -ENOMEM; |
| 4107 | } |
| 4108 | |
| 4109 | /* Derive version string. */ |
| 4110 | strcpy(qla2x00_version_str, QLA2XXX_VERSION); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 4111 | if (ql2xextended_error_logging) |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 4112 | strcat(qla2x00_version_str, "-debug"); |
| 4113 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 4114 | qla2xxx_transport_template = |
| 4115 | fc_attach_transport(&qla2xxx_transport_functions); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4116 | if (!qla2xxx_transport_template) { |
| 4117 | kmem_cache_destroy(srb_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4118 | return -ENODEV; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4119 | } |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 4120 | |
| 4121 | apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops); |
| 4122 | if (apidev_major < 0) { |
| 4123 | printk(KERN_WARNING "qla2xxx: Unable to register char device " |
| 4124 | "%s\n", QLA2XXX_APIDEV); |
| 4125 | } |
| 4126 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4127 | qla2xxx_transport_vport_template = |
| 4128 | fc_attach_transport(&qla2xxx_transport_vport_functions); |
| 4129 | if (!qla2xxx_transport_vport_template) { |
| 4130 | kmem_cache_destroy(srb_cachep); |
| 4131 | fc_release_transport(qla2xxx_transport_template); |
| 4132 | return -ENODEV; |
| 4133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4134 | |
Andrew Vasquez | fd9a29f | 2008-05-12 22:21:08 -0700 | [diff] [blame] | 4135 | printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n", |
| 4136 | qla2x00_version_str); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 4137 | ret = pci_register_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4138 | if (ret) { |
| 4139 | kmem_cache_destroy(srb_cachep); |
| 4140 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4141 | fc_release_transport(qla2xxx_transport_vport_template); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 4142 | } |
| 4143 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | } |
| 4145 | |
| 4146 | /** |
| 4147 | * qla2x00_module_exit - Module cleanup. |
| 4148 | **/ |
| 4149 | static void __exit |
| 4150 | qla2x00_module_exit(void) |
| 4151 | { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 4152 | unregister_chrdev(apidev_major, QLA2XXX_APIDEV); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 4153 | pci_unregister_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 4154 | qla2x00_release_firmware(); |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 4155 | kmem_cache_destroy(srb_cachep); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4156 | if (ctx_cachep) |
| 4157 | kmem_cache_destroy(ctx_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4158 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4159 | fc_release_transport(qla2xxx_transport_vport_template); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | } |
| 4161 | |
| 4162 | module_init(qla2x00_module_init); |
| 4163 | module_exit(qla2x00_module_exit); |
| 4164 | |
| 4165 | MODULE_AUTHOR("QLogic Corporation"); |
| 4166 | MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); |
| 4167 | MODULE_LICENSE("GPL"); |
| 4168 | MODULE_VERSION(QLA2XXX_VERSION); |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 4169 | MODULE_FIRMWARE(FW_FILE_ISP21XX); |
| 4170 | MODULE_FIRMWARE(FW_FILE_ISP22XX); |
| 4171 | MODULE_FIRMWARE(FW_FILE_ISP2300); |
| 4172 | MODULE_FIRMWARE(FW_FILE_ISP2322); |
| 4173 | MODULE_FIRMWARE(FW_FILE_ISP24XX); |
Andrew Vasquez | 61623fc | 2008-01-31 12:33:45 -0800 | [diff] [blame] | 4174 | MODULE_FIRMWARE(FW_FILE_ISP25XX); |