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 |
Saurav Kashyap | 1e63395 | 2013-02-08 01:57:54 -0500 | [diff] [blame] | 3 | * Copyright (c) 2003-2013 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 | #include <scsi/scsi_tcq.h> |
| 17 | #include <scsi/scsicam.h> |
| 18 | #include <scsi/scsi_transport.h> |
| 19 | #include <scsi/scsi_transport_fc.h> |
| 20 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 21 | #include "qla_target.h" |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | /* |
| 24 | * Driver version |
| 25 | */ |
| 26 | char qla2x00_version_str[40]; |
| 27 | |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 28 | static int apidev_major; |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* |
| 31 | * SRB allocation cache |
| 32 | */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 33 | static struct kmem_cache *srb_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 35 | /* |
| 36 | * CT6 CTX allocation cache |
| 37 | */ |
| 38 | static struct kmem_cache *ctx_cachep; |
Saurav Kashyap | 3ce8866 | 2011-07-14 12:00:12 -0700 | [diff] [blame] | 39 | /* |
| 40 | * error level for logging |
| 41 | */ |
| 42 | int ql_errlev = ql_log_all; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 43 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 44 | static int ql2xenableclass2; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 45 | module_param(ql2xenableclass2, int, S_IRUGO|S_IRUSR); |
| 46 | MODULE_PARM_DESC(ql2xenableclass2, |
| 47 | "Specify if Class 2 operations are supported from the very " |
| 48 | "beginning. Default is 0 - class 2 not supported."); |
| 49 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | int ql2xlogintimeout = 20; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 52 | module_param(ql2xlogintimeout, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | MODULE_PARM_DESC(ql2xlogintimeout, |
| 54 | "Login timeout value in seconds."); |
| 55 | |
Andrew Vasquez | a7b6184 | 2007-05-07 07:42:59 -0700 | [diff] [blame] | 56 | int qlport_down_retry; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 57 | module_param(qlport_down_retry, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | MODULE_PARM_DESC(qlport_down_retry, |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 59 | "Maximum number of command retries to a port that returns " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | "a PORT-DOWN status."); |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | int ql2xplogiabsentdevice; |
| 63 | module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR); |
| 64 | MODULE_PARM_DESC(ql2xplogiabsentdevice, |
| 65 | "Option to enable PLOGI to devices that are not present after " |
Jesper Juhl | 900d9f9 | 2006-06-30 02:33:07 -0700 | [diff] [blame] | 66 | "a Fabric scan. This is needed for several broken switches. " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | "Default is 0 - no PLOGI. 1 - perfom PLOGI."); |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | int ql2xloginretrycount = 0; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 70 | module_param(ql2xloginretrycount, int, S_IRUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | MODULE_PARM_DESC(ql2xloginretrycount, |
| 72 | "Specify an alternate value for the NVRAM login retry count."); |
| 73 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 74 | int ql2xallocfwdump = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 75 | module_param(ql2xallocfwdump, int, S_IRUGO); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 76 | MODULE_PARM_DESC(ql2xallocfwdump, |
| 77 | "Option to enable allocation of memory for a firmware dump " |
| 78 | "during HBA initialization. Memory allocation requirements " |
| 79 | "vary by ISP type. Default is 1 - allocate memory."); |
| 80 | |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 81 | int ql2xextended_error_logging; |
Andrew Vasquez | 27d9403 | 2007-03-12 10:41:30 -0700 | [diff] [blame] | 82 | module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 83 | MODULE_PARM_DESC(ql2xextended_error_logging, |
Saurav Kashyap | 3ce8866 | 2011-07-14 12:00:12 -0700 | [diff] [blame] | 84 | "Option to enable extended error logging,\n" |
| 85 | "\t\tDefault is 0 - no logging. 0x40000000 - Module Init & Probe.\n" |
| 86 | "\t\t0x20000000 - Mailbox Cmnds. 0x10000000 - Device Discovery.\n" |
| 87 | "\t\t0x08000000 - IO tracing. 0x04000000 - DPC Thread.\n" |
| 88 | "\t\t0x02000000 - Async events. 0x01000000 - Timer routines.\n" |
| 89 | "\t\t0x00800000 - User space. 0x00400000 - Task Management.\n" |
| 90 | "\t\t0x00200000 - AER/EEH. 0x00100000 - Multi Q.\n" |
| 91 | "\t\t0x00080000 - P3P Specific. 0x00040000 - Virtual Port.\n" |
| 92 | "\t\t0x00020000 - Buffer Dump. 0x00010000 - Misc.\n" |
Chad Dupuis | 29f9f90 | 2012-11-21 02:40:41 -0500 | [diff] [blame] | 93 | "\t\t0x00008000 - Verbose. 0x00004000 - Target.\n" |
| 94 | "\t\t0x00002000 - Target Mgmt. 0x00001000 - Target TMF.\n" |
Saurav Kashyap | 3ce8866 | 2011-07-14 12:00:12 -0700 | [diff] [blame] | 95 | "\t\t0x7fffffff - For enabling all logs, can be too many logs.\n" |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 96 | "\t\t0x1e400000 - Preferred value for capturing essential " |
| 97 | "debug information (equivalent to old " |
| 98 | "ql2xextended_error_logging=1).\n" |
Saurav Kashyap | 3ce8866 | 2011-07-14 12:00:12 -0700 | [diff] [blame] | 99 | "\t\tDo LOGICAL OR of the value to enable more than one level"); |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 100 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 101 | int ql2xshiftctondsd = 6; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 102 | module_param(ql2xshiftctondsd, int, S_IRUGO); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 103 | MODULE_PARM_DESC(ql2xshiftctondsd, |
| 104 | "Set to control shifting of command type processing " |
| 105 | "based on total number of SG elements."); |
| 106 | |
Andrew Vasquez | 7e47e5c | 2008-04-24 15:21:26 -0700 | [diff] [blame] | 107 | int ql2xfdmienable=1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 108 | module_param(ql2xfdmienable, int, S_IRUGO); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 109 | MODULE_PARM_DESC(ql2xfdmienable, |
Ferenc Wagner | 7794a5a | 2010-03-23 18:14:59 +0100 | [diff] [blame] | 110 | "Enables FDMI registrations. " |
| 111 | "0 - no FDMI. Default is 1 - perform FDMI."); |
Andrew Vasquez | cca5335 | 2005-08-26 19:08:30 -0700 | [diff] [blame] | 112 | |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 113 | #define MAX_Q_DEPTH 32 |
| 114 | static int ql2xmaxqdepth = MAX_Q_DEPTH; |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 115 | module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR); |
| 116 | MODULE_PARM_DESC(ql2xmaxqdepth, |
Chad Dupuis | e92e4a8 | 2012-08-22 14:21:23 -0400 | [diff] [blame] | 117 | "Maximum queue depth to set for each LUN. " |
| 118 | "Default is 32."); |
Andrew Vasquez | df7baa5 | 2006-10-13 09:33:39 -0700 | [diff] [blame] | 119 | |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 120 | int ql2xenabledif = 2; |
| 121 | module_param(ql2xenabledif, int, S_IRUGO); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 122 | MODULE_PARM_DESC(ql2xenabledif, |
| 123 | " Enable T10-CRC-DIF " |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 124 | " Default is 0 - No DIF Support. 1 - Enable it" |
| 125 | ", 2 - Enable DIF for all types, except Type 0."); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 126 | |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 127 | int ql2xenablehba_err_chk = 2; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 128 | module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR); |
| 129 | MODULE_PARM_DESC(ql2xenablehba_err_chk, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 130 | " Enable T10-CRC-DIF Error isolation by HBA:\n" |
| 131 | " Default is 1.\n" |
| 132 | " 0 -- Error isolation disabled\n" |
| 133 | " 1 -- Error isolation enabled only for DIX Type 0\n" |
| 134 | " 2 -- Error isolation enabled for all Types\n"); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 135 | |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 136 | int ql2xiidmaenable=1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 137 | module_param(ql2xiidmaenable, int, S_IRUGO); |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 138 | MODULE_PARM_DESC(ql2xiidmaenable, |
| 139 | "Enables iIDMA settings " |
| 140 | "Default is 1 - perform iIDMA. 0 - no iIDMA."); |
| 141 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 142 | int ql2xmaxqueues = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 143 | module_param(ql2xmaxqueues, int, S_IRUGO); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 144 | MODULE_PARM_DESC(ql2xmaxqueues, |
| 145 | "Enables MQ settings " |
Joe Perches | ae68230 | 2010-08-10 18:01:21 -0700 | [diff] [blame] | 146 | "Default is 1 for single queue. Set it to number " |
| 147 | "of queues in MQ mode."); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 148 | |
| 149 | int ql2xmultique_tag; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 150 | module_param(ql2xmultique_tag, int, S_IRUGO); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 151 | MODULE_PARM_DESC(ql2xmultique_tag, |
| 152 | "Enables CPU affinity settings for the driver " |
| 153 | "Default is 0 for no affinity of request and response IO. " |
| 154 | "Set it to 1 to turn on the cpu affinity."); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 155 | |
| 156 | int ql2xfwloadbin; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 157 | module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 158 | MODULE_PARM_DESC(ql2xfwloadbin, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 159 | "Option to specify location from which to load ISP firmware:.\n" |
| 160 | " 2 -- load firmware via the request_firmware() (hotplug).\n" |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 161 | " interface.\n" |
| 162 | " 1 -- load firmware from flash.\n" |
| 163 | " 0 -- use default semantics.\n"); |
| 164 | |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 165 | int ql2xetsenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 166 | module_param(ql2xetsenable, int, S_IRUGO); |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 167 | MODULE_PARM_DESC(ql2xetsenable, |
| 168 | "Enables firmware ETS burst." |
| 169 | "Default is 0 - skip ETS enablement."); |
| 170 | |
Giridhar Malavali | 6907869 | 2010-05-28 15:08:28 -0700 | [diff] [blame] | 171 | int ql2xdbwr = 1; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 172 | module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 173 | MODULE_PARM_DESC(ql2xdbwr, |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 174 | "Option to specify scheme for request queue posting.\n" |
| 175 | " 0 -- Regular doorbell.\n" |
| 176 | " 1 -- CAMRAM doorbell (faster).\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 177 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 178 | int ql2xtargetreset = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 179 | module_param(ql2xtargetreset, int, S_IRUGO); |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 180 | MODULE_PARM_DESC(ql2xtargetreset, |
| 181 | "Enable target reset." |
| 182 | "Default is 1 - use hw defaults."); |
| 183 | |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 184 | int ql2xgffidenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 185 | module_param(ql2xgffidenable, int, S_IRUGO); |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 186 | MODULE_PARM_DESC(ql2xgffidenable, |
| 187 | "Enables GFF_ID checks of port type. " |
| 188 | "Default is 0 - Do not use GFF_ID information."); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 189 | |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 190 | int ql2xasynctmfenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 191 | module_param(ql2xasynctmfenable, int, S_IRUGO); |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 192 | MODULE_PARM_DESC(ql2xasynctmfenable, |
| 193 | "Enables issue of TM IOCBs asynchronously via IOCB mechanism" |
| 194 | "Default is 0 - Issue TM IOCBs via mailbox mechanism."); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 195 | |
| 196 | int ql2xdontresethba; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 197 | module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 198 | MODULE_PARM_DESC(ql2xdontresethba, |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 199 | "Option to specify reset behaviour.\n" |
| 200 | " 0 (Default) -- Reset on failure.\n" |
| 201 | " 1 -- Do not reset on failure.\n"); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 202 | |
Andrew Vasquez | 8251592 | 2011-05-10 11:30:13 -0700 | [diff] [blame] | 203 | uint ql2xmaxlun = MAX_LUNS; |
| 204 | module_param(ql2xmaxlun, uint, S_IRUGO); |
| 205 | MODULE_PARM_DESC(ql2xmaxlun, |
| 206 | "Defines the maximum LU number to register with the SCSI " |
| 207 | "midlayer. Default is 65535."); |
| 208 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 209 | int ql2xmdcapmask = 0x1F; |
| 210 | module_param(ql2xmdcapmask, int, S_IRUGO); |
| 211 | MODULE_PARM_DESC(ql2xmdcapmask, |
| 212 | "Set the Minidump driver capture mask level. " |
Giridhar Malavali | 6e96fa7 | 2011-11-18 09:03:14 -0800 | [diff] [blame] | 213 | "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F."); |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 214 | |
Giridhar Malavali | 3aadff3 | 2011-11-18 09:02:14 -0800 | [diff] [blame] | 215 | int ql2xmdenable = 1; |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 216 | module_param(ql2xmdenable, int, S_IRUGO); |
| 217 | MODULE_PARM_DESC(ql2xmdenable, |
| 218 | "Enable/disable MiniDump. " |
Giridhar Malavali | 3aadff3 | 2011-11-18 09:02:14 -0800 | [diff] [blame] | 219 | "0 - MiniDump disabled. " |
| 220 | "1 (Default) - MiniDump enabled."); |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | /* |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 223 | * SCSI host template entry points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | */ |
| 225 | static int qla2xxx_slave_configure(struct scsi_device * device); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 226 | static int qla2xxx_slave_alloc(struct scsi_device *); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 227 | static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time); |
| 228 | static void qla2xxx_scan_start(struct Scsi_Host *); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 229 | static void qla2xxx_slave_destroy(struct scsi_device *); |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 230 | static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | static int qla2xxx_eh_abort(struct scsi_cmnd *); |
| 232 | static int qla2xxx_eh_device_reset(struct scsi_cmnd *); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 233 | static int qla2xxx_eh_target_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | static int qla2xxx_eh_bus_reset(struct scsi_cmnd *); |
| 235 | static int qla2xxx_eh_host_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 237 | static int qla2x00_change_queue_depth(struct scsi_device *, int, int); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 238 | static int qla2x00_change_queue_type(struct scsi_device *, int); |
Saurav Kashyap | 3491255 | 2013-06-25 11:27:18 -0400 | [diff] [blame] | 239 | static void qla2x00_free_device(scsi_qla_host_t *); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 240 | |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 241 | struct scsi_host_template qla2xxx_driver_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | .module = THIS_MODULE, |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 243 | .name = QLA2XXX_DRIVER_NAME, |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 244 | .queuecommand = qla2xxx_queuecommand, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 245 | |
| 246 | .eh_abort_handler = qla2xxx_eh_abort, |
| 247 | .eh_device_reset_handler = qla2xxx_eh_device_reset, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 248 | .eh_target_reset_handler = qla2xxx_eh_target_reset, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 249 | .eh_bus_reset_handler = qla2xxx_eh_bus_reset, |
| 250 | .eh_host_reset_handler = qla2xxx_eh_host_reset, |
| 251 | |
| 252 | .slave_configure = qla2xxx_slave_configure, |
| 253 | |
| 254 | .slave_alloc = qla2xxx_slave_alloc, |
| 255 | .slave_destroy = qla2xxx_slave_destroy, |
Andrew Vasquez | ed67708 | 2007-03-12 10:41:27 -0700 | [diff] [blame] | 256 | .scan_finished = qla2xxx_scan_finished, |
| 257 | .scan_start = qla2xxx_scan_start, |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 258 | .change_queue_depth = qla2x00_change_queue_depth, |
| 259 | .change_queue_type = qla2x00_change_queue_type, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 260 | .this_id = -1, |
| 261 | .cmd_per_lun = 3, |
| 262 | .use_clustering = ENABLE_CLUSTERING, |
| 263 | .sg_tablesize = SG_ALL, |
| 264 | |
| 265 | .max_sectors = 0xFFFF, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 266 | .shost_attrs = qla2x00_host_attrs, |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 267 | |
| 268 | .supported_mode = MODE_INITIATOR, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 269 | }; |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | static struct scsi_transport_template *qla2xxx_transport_template = NULL; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 272 | struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* TODO Convert to inlines |
| 275 | * |
| 276 | * Timer routines |
| 277 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 279 | __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 280 | 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] | 281 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 282 | init_timer(&vha->timer); |
| 283 | vha->timer.expires = jiffies + interval * HZ; |
| 284 | vha->timer.data = (unsigned long)vha; |
| 285 | vha->timer.function = (void (*)(unsigned long))func; |
| 286 | add_timer(&vha->timer); |
| 287 | vha->timer_active = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 291 | qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 293 | /* Currently used for 82XX only. */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 294 | if (vha->device_flags & DFLG_DEV_FAILED) { |
| 295 | ql_dbg(ql_dbg_timer, vha, 0x600d, |
| 296 | "Device in a failed state, returning.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 297 | return; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 298 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 299 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 300 | mod_timer(&vha->timer, jiffies + interval * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 303 | static __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 304 | qla2x00_stop_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 306 | del_timer_sync(&vha->timer); |
| 307 | vha->timer_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | static int qla2x00_do_dpc(void *data); |
| 311 | |
| 312 | static void qla2x00_rst_aen(scsi_qla_host_t *); |
| 313 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 314 | static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, |
| 315 | struct req_que **, struct rsp_que **); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 316 | static void qla2x00_free_fw_dump(struct qla_hw_data *); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 317 | static void qla2x00_mem_free(struct qla_hw_data *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | /* -------------------------------------------------------------------------- */ |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 320 | static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req, |
| 321 | struct rsp_que *rsp) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 322 | { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 323 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 324 | 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] | 325 | GFP_KERNEL); |
| 326 | if (!ha->req_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 327 | ql_log(ql_log_fatal, vha, 0x003b, |
| 328 | "Unable to allocate memory for request queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 329 | goto fail_req_map; |
| 330 | } |
| 331 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 332 | 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] | 333 | GFP_KERNEL); |
| 334 | if (!ha->rsp_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 335 | ql_log(ql_log_fatal, vha, 0x003c, |
| 336 | "Unable to allocate memory for response queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 337 | goto fail_rsp_map; |
| 338 | } |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 339 | /* |
| 340 | * Make sure we record at least the request and response queue zero in |
| 341 | * case we need to free them if part of the probe fails. |
| 342 | */ |
| 343 | ha->rsp_q_map[0] = rsp; |
| 344 | ha->req_q_map[0] = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 345 | set_bit(0, ha->rsp_qid_map); |
| 346 | set_bit(0, ha->req_qid_map); |
| 347 | return 1; |
| 348 | |
| 349 | fail_rsp_map: |
| 350 | kfree(ha->req_q_map); |
| 351 | ha->req_q_map = NULL; |
| 352 | fail_req_map: |
| 353 | return -ENOMEM; |
| 354 | } |
| 355 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 356 | 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] | 357 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 358 | if (IS_QLAFX00(ha)) { |
| 359 | if (req && req->ring_fx00) |
| 360 | dma_free_coherent(&ha->pdev->dev, |
| 361 | (req->length_fx00 + 1) * sizeof(request_t), |
| 362 | req->ring_fx00, req->dma_fx00); |
| 363 | } else if (req && req->ring) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 364 | dma_free_coherent(&ha->pdev->dev, |
| 365 | (req->length + 1) * sizeof(request_t), |
| 366 | req->ring, req->dma); |
| 367 | |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 368 | if (req) |
| 369 | kfree(req->outstanding_cmds); |
| 370 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 371 | kfree(req); |
| 372 | req = NULL; |
| 373 | } |
| 374 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 375 | static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) |
| 376 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 377 | if (IS_QLAFX00(ha)) { |
| 378 | if (rsp && rsp->ring) |
| 379 | dma_free_coherent(&ha->pdev->dev, |
| 380 | (rsp->length_fx00 + 1) * sizeof(request_t), |
| 381 | rsp->ring_fx00, rsp->dma_fx00); |
| 382 | } else if (rsp && rsp->ring) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 383 | dma_free_coherent(&ha->pdev->dev, |
| 384 | (rsp->length + 1) * sizeof(response_t), |
| 385 | rsp->ring, rsp->dma); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 386 | } |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 387 | kfree(rsp); |
| 388 | rsp = NULL; |
| 389 | } |
| 390 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 391 | static void qla2x00_free_queues(struct qla_hw_data *ha) |
| 392 | { |
| 393 | struct req_que *req; |
| 394 | struct rsp_que *rsp; |
| 395 | int cnt; |
| 396 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 397 | for (cnt = 0; cnt < ha->max_req_queues; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 398 | req = ha->req_q_map[cnt]; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 399 | qla2x00_free_req_que(ha, req); |
| 400 | } |
| 401 | kfree(ha->req_q_map); |
| 402 | ha->req_q_map = NULL; |
| 403 | |
| 404 | for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { |
| 405 | rsp = ha->rsp_q_map[cnt]; |
| 406 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 407 | } |
| 408 | kfree(ha->rsp_q_map); |
| 409 | ha->rsp_q_map = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 410 | } |
| 411 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 412 | static int qla25xx_setup_mode(struct scsi_qla_host *vha) |
| 413 | { |
| 414 | uint16_t options = 0; |
| 415 | int ques, req, ret; |
| 416 | struct qla_hw_data *ha = vha->hw; |
| 417 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 418 | if (!(ha->fw_attributes & BIT_6)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 419 | ql_log(ql_log_warn, vha, 0x00d8, |
| 420 | "Firmware is not multi-queue capable.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 421 | goto fail; |
| 422 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 423 | if (ql2xmultique_tag) { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 424 | /* create a request queue for IO */ |
| 425 | options |= BIT_7; |
| 426 | req = qla25xx_create_req_que(ha, options, 0, 0, -1, |
| 427 | QLA_DEFAULT_QUE_QOS); |
| 428 | if (!req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 429 | ql_log(ql_log_warn, vha, 0x00e0, |
| 430 | "Failed to create request queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 431 | goto fail; |
| 432 | } |
Tejun Heo | 278274d | 2011-02-01 11:42:42 +0100 | [diff] [blame] | 433 | ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 1); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 434 | vha->req = ha->req_q_map[req]; |
| 435 | options |= BIT_1; |
| 436 | for (ques = 1; ques < ha->max_rsp_queues; ques++) { |
| 437 | ret = qla25xx_create_rsp_que(ha, options, 0, 0, req); |
| 438 | if (!ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 439 | ql_log(ql_log_warn, vha, 0x00e8, |
| 440 | "Failed to create response queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 441 | goto fail2; |
| 442 | } |
| 443 | } |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 444 | ha->flags.cpu_affinity_enabled = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 445 | ql_dbg(ql_dbg_multiq, vha, 0xc007, |
| 446 | "CPU affinity mode enalbed, " |
| 447 | "no. of response queues:%d no. of request queues:%d.\n", |
| 448 | ha->max_rsp_queues, ha->max_req_queues); |
| 449 | ql_dbg(ql_dbg_init, vha, 0x00e9, |
| 450 | "CPU affinity mode enalbed, " |
| 451 | "no. of response queues:%d no. of request queues:%d.\n", |
| 452 | ha->max_rsp_queues, ha->max_req_queues); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 453 | } |
| 454 | return 0; |
| 455 | fail2: |
| 456 | qla25xx_delete_queues(vha); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 457 | destroy_workqueue(ha->wq); |
| 458 | ha->wq = NULL; |
Giridhar Malavali | 0cd33fc | 2011-11-18 09:02:12 -0800 | [diff] [blame] | 459 | vha->req = ha->req_q_map[0]; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 460 | fail: |
| 461 | ha->mqenable = 0; |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 462 | kfree(ha->req_q_map); |
| 463 | kfree(ha->rsp_q_map); |
| 464 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 465 | return 1; |
| 466 | } |
| 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 469 | qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 471 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | static char *pci_bus_modes[] = { |
| 473 | "33", "66", "100", "133", |
| 474 | }; |
| 475 | uint16_t pci_bus; |
| 476 | |
| 477 | strcpy(str, "PCI"); |
| 478 | pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; |
| 479 | if (pci_bus) { |
| 480 | strcat(str, "-X ("); |
| 481 | strcat(str, pci_bus_modes[pci_bus]); |
| 482 | } else { |
| 483 | pci_bus = (ha->pci_attr & BIT_8) >> 8; |
| 484 | strcat(str, " ("); |
| 485 | strcat(str, pci_bus_modes[pci_bus]); |
| 486 | } |
| 487 | strcat(str, " MHz)"); |
| 488 | |
| 489 | return (str); |
| 490 | } |
| 491 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 492 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 493 | qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 494 | { |
| 495 | static char *pci_bus_modes[] = { "33", "66", "100", "133", }; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 496 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 497 | uint32_t pci_bus; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 498 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 499 | if (pci_is_pcie(ha->pdev)) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 500 | char lwstr[6]; |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 501 | uint32_t lstat, lspeed, lwidth; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 502 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 503 | pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat); |
| 504 | lspeed = lstat & PCI_EXP_LNKCAP_SLS; |
| 505 | lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 506 | |
| 507 | strcpy(str, "PCIe ("); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 508 | switch (lspeed) { |
| 509 | case 1: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 510 | strcat(str, "2.5GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 511 | break; |
| 512 | case 2: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 513 | strcat(str, "5.0GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 514 | break; |
| 515 | case 3: |
| 516 | strcat(str, "8.0GT/s "); |
| 517 | break; |
| 518 | default: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 519 | strcat(str, "<unknown> "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 520 | break; |
| 521 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 522 | snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); |
| 523 | strcat(str, lwstr); |
| 524 | |
| 525 | return str; |
| 526 | } |
| 527 | |
| 528 | strcpy(str, "PCI"); |
| 529 | pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; |
| 530 | if (pci_bus == 0 || pci_bus == 8) { |
| 531 | strcat(str, " ("); |
| 532 | strcat(str, pci_bus_modes[pci_bus >> 3]); |
| 533 | } else { |
| 534 | strcat(str, "-X "); |
| 535 | if (pci_bus & BIT_2) |
| 536 | strcat(str, "Mode 2"); |
| 537 | else |
| 538 | strcat(str, "Mode 1"); |
| 539 | strcat(str, " ("); |
| 540 | strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); |
| 541 | } |
| 542 | strcat(str, " MHz)"); |
| 543 | |
| 544 | return str; |
| 545 | } |
| 546 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 547 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 548 | qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | { |
| 550 | char un_str[10]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 551 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | sprintf(str, "%d.%02d.%02d ", ha->fw_major_version, |
| 554 | ha->fw_minor_version, |
| 555 | ha->fw_subminor_version); |
| 556 | |
| 557 | if (ha->fw_attributes & BIT_9) { |
| 558 | strcat(str, "FLX"); |
| 559 | return (str); |
| 560 | } |
| 561 | |
| 562 | switch (ha->fw_attributes & 0xFF) { |
| 563 | case 0x7: |
| 564 | strcat(str, "EF"); |
| 565 | break; |
| 566 | case 0x17: |
| 567 | strcat(str, "TP"); |
| 568 | break; |
| 569 | case 0x37: |
| 570 | strcat(str, "IP"); |
| 571 | break; |
| 572 | case 0x77: |
| 573 | strcat(str, "VI"); |
| 574 | break; |
| 575 | default: |
| 576 | sprintf(un_str, "(%x)", ha->fw_attributes); |
| 577 | strcat(str, un_str); |
| 578 | break; |
| 579 | } |
| 580 | if (ha->fw_attributes & 0x100) |
| 581 | strcat(str, "X"); |
| 582 | |
| 583 | return (str); |
| 584 | } |
| 585 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 586 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 587 | qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 588 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 589 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | f0883ac | 2005-07-08 17:58:43 -0700 | [diff] [blame] | 590 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 591 | sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version, |
| 592 | ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 593 | return str; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 596 | void |
| 597 | qla2x00_sp_free_dma(void *vha, void *ptr) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 598 | { |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 599 | srb_t *sp = (srb_t *)ptr; |
| 600 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 601 | struct qla_hw_data *ha = sp->fcport->vha->hw; |
| 602 | void *ctx = GET_CMD_CTX_SP(sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 603 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 604 | if (sp->flags & SRB_DMA_VALID) { |
| 605 | scsi_dma_unmap(cmd); |
| 606 | sp->flags &= ~SRB_DMA_VALID; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 607 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 608 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 609 | if (sp->flags & SRB_CRC_PROT_DMA_VALID) { |
| 610 | dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), |
| 611 | scsi_prot_sg_count(cmd), cmd->sc_data_direction); |
| 612 | sp->flags &= ~SRB_CRC_PROT_DMA_VALID; |
| 613 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 614 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 615 | if (sp->flags & SRB_CRC_CTX_DSD_VALID) { |
| 616 | /* List assured to be having elements */ |
| 617 | qla2x00_clean_dsd_pool(ha, sp); |
| 618 | sp->flags &= ~SRB_CRC_CTX_DSD_VALID; |
| 619 | } |
| 620 | |
| 621 | if (sp->flags & SRB_CRC_CTX_DMA_VALID) { |
| 622 | dma_pool_free(ha->dl_dma_pool, ctx, |
| 623 | ((struct crc_context *)ctx)->crc_ctx_dma); |
| 624 | sp->flags &= ~SRB_CRC_CTX_DMA_VALID; |
| 625 | } |
| 626 | |
| 627 | if (sp->flags & SRB_FCP_CMND_DMA_VALID) { |
| 628 | struct ct6_dsd *ctx1 = (struct ct6_dsd *)ctx; |
| 629 | |
| 630 | dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd, |
| 631 | ctx1->fcp_cmnd_dma); |
| 632 | list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list); |
| 633 | ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt; |
| 634 | ha->gbl_dsd_avail += ctx1->dsd_use_cnt; |
| 635 | mempool_free(ctx1, ha->ctx_mempool); |
| 636 | ctx1 = NULL; |
| 637 | } |
| 638 | |
| 639 | CMD_SP(cmd) = NULL; |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 640 | qla2x00_rel_sp(sp->fcport->vha, sp); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 641 | } |
| 642 | |
Fengguang Wu | 14b0680 | 2013-04-25 01:29:19 -0400 | [diff] [blame] | 643 | static void |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 644 | qla2x00_sp_compl(void *data, void *ptr, int res) |
| 645 | { |
| 646 | struct qla_hw_data *ha = (struct qla_hw_data *)data; |
| 647 | srb_t *sp = (srb_t *)ptr; |
| 648 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 649 | |
| 650 | cmd->result = res; |
| 651 | |
| 652 | if (atomic_read(&sp->ref_count) == 0) { |
| 653 | ql_dbg(ql_dbg_io, sp->fcport->vha, 0x3015, |
| 654 | "SP reference-count to ZERO -- sp=%p cmd=%p.\n", |
| 655 | sp, GET_CMD_SP(sp)); |
| 656 | if (ql2xextended_error_logging & ql_dbg_io) |
| 657 | BUG(); |
| 658 | return; |
| 659 | } |
| 660 | if (!atomic_dec_and_test(&sp->ref_count)) |
| 661 | return; |
| 662 | |
| 663 | qla2x00_sp_free_dma(ha, sp); |
| 664 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 665 | } |
| 666 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 667 | /* If we are SP1 here, we need to still take and release the host_lock as SP1 |
| 668 | * does not have the changes necessary to avoid taking host->host_lock. |
| 669 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | static int |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 671 | qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 672 | { |
Madhuranath Iyengar | 134ae07 | 2011-05-10 11:30:08 -0700 | [diff] [blame] | 673 | scsi_qla_host_t *vha = shost_priv(host); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 674 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 675 | struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 676 | struct qla_hw_data *ha = vha->hw; |
| 677 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 678 | srb_t *sp; |
| 679 | int rval; |
| 680 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 681 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 682 | if (ha->flags.pci_channel_io_perm_failure) { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 683 | ql_dbg(ql_dbg_aer, vha, 0x9010, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 684 | "PCI Channel IO permanent failure, exiting " |
| 685 | "cmd=%p.\n", cmd); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 686 | cmd->result = DID_NO_CONNECT << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 687 | } else { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 688 | ql_dbg(ql_dbg_aer, vha, 0x9011, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 689 | "EEH_Busy, Requeuing the cmd=%p.\n", cmd); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 690 | cmd->result = DID_REQUEUE << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 691 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 692 | goto qc24_fail_command; |
| 693 | } |
| 694 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 695 | rval = fc_remote_port_chkready(rport); |
| 696 | if (rval) { |
| 697 | cmd->result = rval; |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 698 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 699 | "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n", |
| 700 | cmd, rval); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 701 | goto qc24_fail_command; |
| 702 | } |
| 703 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 704 | if (!vha->flags.difdix_supported && |
| 705 | scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 706 | ql_dbg(ql_dbg_io, vha, 0x3004, |
| 707 | "DIF Cap not reg, fail DIF capable cmd's:%p.\n", |
| 708 | cmd); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 709 | cmd->result = DID_NO_CONNECT << 16; |
| 710 | goto qc24_fail_command; |
| 711 | } |
Chad Dupuis | aa651be | 2012-02-09 11:14:04 -0800 | [diff] [blame] | 712 | |
| 713 | if (!fcport) { |
| 714 | cmd->result = DID_NO_CONNECT << 16; |
| 715 | goto qc24_fail_command; |
| 716 | } |
| 717 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 718 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
| 719 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 720 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 721 | ql_dbg(ql_dbg_io, vha, 0x3005, |
| 722 | "Returning DNC, fcport_state=%d loop_state=%d.\n", |
| 723 | atomic_read(&fcport->state), |
| 724 | atomic_read(&base_vha->loop_state)); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 725 | cmd->result = DID_NO_CONNECT << 16; |
| 726 | goto qc24_fail_command; |
| 727 | } |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 728 | goto qc24_target_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 729 | } |
| 730 | |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 731 | sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC); |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 732 | if (!sp) |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 733 | goto qc24_host_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 734 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 735 | sp->u.scmd.cmd = cmd; |
| 736 | sp->type = SRB_SCSI_CMD; |
| 737 | atomic_set(&sp->ref_count, 1); |
| 738 | CMD_SP(cmd) = (void *)sp; |
| 739 | sp->free = qla2x00_sp_free_dma; |
| 740 | sp->done = qla2x00_sp_compl; |
| 741 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 742 | rval = ha->isp_ops->start_scsi(sp); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 743 | if (rval != QLA_SUCCESS) { |
Chad Dupuis | 53016ed | 2012-11-21 02:40:32 -0500 | [diff] [blame] | 744 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 745 | "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 746 | goto qc24_host_busy_free_sp; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 747 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 748 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 749 | return 0; |
| 750 | |
| 751 | qc24_host_busy_free_sp: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 752 | qla2x00_sp_free_dma(ha, sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 753 | |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 754 | qc24_host_busy: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 755 | return SCSI_MLQUEUE_HOST_BUSY; |
| 756 | |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 757 | qc24_target_busy: |
| 758 | return SCSI_MLQUEUE_TARGET_BUSY; |
| 759 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 760 | qc24_fail_command: |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 761 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 762 | |
| 763 | return 0; |
| 764 | } |
| 765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | /* |
| 767 | * qla2x00_eh_wait_on_command |
| 768 | * Waits for the command to be returned by the Firmware for some |
| 769 | * max time. |
| 770 | * |
| 771 | * Input: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | * cmd = Scsi Command to wait on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | * |
| 774 | * Return: |
| 775 | * Not Found : 0 |
| 776 | * Found : 1 |
| 777 | */ |
| 778 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 779 | qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 781 | #define ABORT_POLLING_PERIOD 1000 |
| 782 | #define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 783 | unsigned long wait_iter = ABORT_WAIT_ITER; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 784 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 785 | struct qla_hw_data *ha = vha->hw; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 786 | int ret = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 788 | if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 789 | ql_dbg(ql_dbg_taskm, vha, 0x8005, |
| 790 | "Return:eh_wait.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 791 | return ret; |
| 792 | } |
| 793 | |
Lalit Chandivade | d970432 | 2009-08-25 11:36:18 -0700 | [diff] [blame] | 794 | while (CMD_SP(cmd) && wait_iter--) { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 795 | msleep(ABORT_POLLING_PERIOD); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 796 | } |
| 797 | if (CMD_SP(cmd)) |
| 798 | ret = QLA_FUNCTION_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 800 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /* |
| 804 | * qla2x00_wait_for_hba_online |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 805 | * Wait till the HBA is online after going through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 807 | * finally HBA is disabled ie marked offline |
| 808 | * |
| 809 | * Input: |
| 810 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 811 | * |
| 812 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | * Does context switching-Release SPIN_LOCK |
| 814 | * (if any) before calling this routine. |
| 815 | * |
| 816 | * Return: |
| 817 | * Success (Adapter is online) : 0 |
| 818 | * Failed (Adapter is offline/disabled) : 1 |
| 819 | */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 820 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 821 | qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 823 | int return_status; |
| 824 | unsigned long wait_online; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 825 | struct qla_hw_data *ha = vha->hw; |
| 826 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 828 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 829 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 830 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 831 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 832 | ha->dpc_active) && time_before(jiffies, wait_online)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
| 834 | msleep(1000); |
| 835 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 836 | if (base_vha->flags.online) |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 837 | return_status = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | else |
| 839 | return_status = QLA_FUNCTION_FAILED; |
| 840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | return (return_status); |
| 842 | } |
| 843 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 844 | /* |
| 845 | * qla2x00_wait_for_reset_ready |
| 846 | * Wait till the HBA is online after going through |
| 847 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 848 | * finally HBA is disabled ie marked offline or flash |
| 849 | * operations are in progress. |
| 850 | * |
| 851 | * Input: |
| 852 | * ha - pointer to host adapter structure |
| 853 | * |
| 854 | * Note: |
| 855 | * Does context switching-Release SPIN_LOCK |
| 856 | * (if any) before calling this routine. |
| 857 | * |
| 858 | * Return: |
| 859 | * Success (Adapter is online/no flash ops) : 0 |
| 860 | * Failed (Adapter is offline/disabled/flash ops in progress) : 1 |
| 861 | */ |
Andrew Vasquez | 3dbe756 | 2010-07-23 15:28:37 +0500 | [diff] [blame] | 862 | static int |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 863 | qla2x00_wait_for_reset_ready(scsi_qla_host_t *vha) |
| 864 | { |
| 865 | int return_status; |
| 866 | unsigned long wait_online; |
| 867 | struct qla_hw_data *ha = vha->hw; |
| 868 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 869 | |
| 870 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 871 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 872 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 873 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 874 | ha->optrom_state != QLA_SWAITING || |
| 875 | ha->dpc_active) && time_before(jiffies, wait_online)) |
| 876 | msleep(1000); |
| 877 | |
| 878 | if (base_vha->flags.online && ha->optrom_state == QLA_SWAITING) |
| 879 | return_status = QLA_SUCCESS; |
| 880 | else |
| 881 | return_status = QLA_FUNCTION_FAILED; |
| 882 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 883 | ql_dbg(ql_dbg_taskm, vha, 0x8019, |
| 884 | "%s return status=%d.\n", __func__, return_status); |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 885 | |
| 886 | return return_status; |
| 887 | } |
| 888 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 889 | int |
| 890 | qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) |
| 891 | { |
| 892 | int return_status; |
| 893 | unsigned long wait_reset; |
| 894 | struct qla_hw_data *ha = vha->hw; |
| 895 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 896 | |
| 897 | wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 898 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 899 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 900 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 901 | ha->dpc_active) && time_before(jiffies, wait_reset)) { |
| 902 | |
| 903 | msleep(1000); |
| 904 | |
| 905 | if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && |
| 906 | ha->flags.chip_reset_done) |
| 907 | break; |
| 908 | } |
| 909 | if (ha->flags.chip_reset_done) |
| 910 | return_status = QLA_SUCCESS; |
| 911 | else |
| 912 | return_status = QLA_FUNCTION_FAILED; |
| 913 | |
| 914 | return return_status; |
| 915 | } |
| 916 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 917 | static void |
| 918 | sp_get(struct srb *sp) |
| 919 | { |
| 920 | atomic_inc(&sp->ref_count); |
| 921 | } |
| 922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | /************************************************************************** |
| 924 | * qla2xxx_eh_abort |
| 925 | * |
| 926 | * Description: |
| 927 | * The abort function will abort the specified command. |
| 928 | * |
| 929 | * Input: |
| 930 | * cmd = Linux SCSI command packet to be aborted. |
| 931 | * |
| 932 | * Returns: |
| 933 | * Either SUCCESS or FAILED. |
| 934 | * |
| 935 | * Note: |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 936 | * Only return FAILED if command not returned by firmware. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 938 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | qla2xxx_eh_abort(struct scsi_cmnd *cmd) |
| 940 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 941 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 942 | srb_t *sp; |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 943 | int ret; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 944 | unsigned int id, lun; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 945 | unsigned long flags; |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 946 | int wait = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 947 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 949 | if (!CMD_SP(cmd)) |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 950 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 952 | ret = fc_block_scsi_eh(cmd); |
| 953 | if (ret != 0) |
| 954 | return ret; |
| 955 | ret = SUCCESS; |
| 956 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 957 | id = cmd->device->id; |
| 958 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 959 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 960 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 961 | sp = (srb_t *) CMD_SP(cmd); |
| 962 | if (!sp) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 963 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 964 | return SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 965 | } |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 966 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 967 | ql_dbg(ql_dbg_taskm, vha, 0x8002, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 968 | "Aborting from RISC nexus=%ld:%d:%d sp=%p cmd=%p\n", |
| 969 | vha->host_no, id, lun, sp, cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 970 | |
| 971 | /* Get a reference to the sp and drop the lock.*/ |
| 972 | sp_get(sp); |
| 973 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 974 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 975 | if (ha->isp_ops->abort_command(sp)) { |
Arun Easi | a55aac7 | 2012-02-09 11:14:03 -0800 | [diff] [blame] | 976 | ret = FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 977 | ql_dbg(ql_dbg_taskm, vha, 0x8003, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 978 | "Abort command mbx failed cmd=%p.\n", cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 979 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 980 | ql_dbg(ql_dbg_taskm, vha, 0x8004, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 981 | "Abort command mbx success cmd=%p.\n", cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 982 | wait = 1; |
| 983 | } |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 984 | |
| 985 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 986 | sp->done(ha, sp, 0); |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 987 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 988 | |
Chad Dupuis | bc91ade | 2011-08-16 11:29:26 -0700 | [diff] [blame] | 989 | /* Did the command return during mailbox execution? */ |
| 990 | if (ret == FAILED && !CMD_SP(cmd)) |
| 991 | ret = SUCCESS; |
| 992 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 993 | /* Wait for the command to be returned. */ |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 994 | if (wait) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 995 | if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 996 | ql_log(ql_log_warn, vha, 0x8006, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 997 | "Abort handler timed out cmd=%p.\n", cmd); |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 998 | ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 999 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1002 | ql_log(ql_log_info, vha, 0x801c, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1003 | "Abort command issued nexus=%ld:%d:%d -- %d %x.\n", |
| 1004 | vha->host_no, id, lun, wait, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1006 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1009 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1010 | 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] | 1011 | unsigned int l, enum nexus_wait_type type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1013 | int cnt, match, status; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 1014 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1015 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1016 | struct req_que *req; |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1017 | srb_t *sp; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1018 | struct scsi_cmnd *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1020 | status = QLA_SUCCESS; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1021 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1022 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 1023 | req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1024 | for (cnt = 1; status == QLA_SUCCESS && |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1025 | cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1026 | sp = req->outstanding_cmds[cnt]; |
| 1027 | if (!sp) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1028 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1029 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 1030 | continue; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1031 | if (vha->vp_idx != sp->fcport->vha->vp_idx) |
| 1032 | continue; |
| 1033 | match = 0; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1034 | cmd = GET_CMD_SP(sp); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1035 | switch (type) { |
| 1036 | case WAIT_HOST: |
| 1037 | match = 1; |
| 1038 | break; |
| 1039 | case WAIT_TARGET: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1040 | match = cmd->device->id == t; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1041 | break; |
| 1042 | case WAIT_LUN: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1043 | match = (cmd->device->id == t && |
| 1044 | cmd->device->lun == l); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1045 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1047 | if (!match) |
| 1048 | continue; |
| 1049 | |
| 1050 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1051 | status = qla2x00_eh_wait_on_command(cmd); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1052 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1054 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1055 | |
| 1056 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1059 | static char *reset_errors[] = { |
| 1060 | "HBA not online", |
| 1061 | "HBA not ready", |
| 1062 | "Task management failed", |
| 1063 | "Waiting for command completions", |
| 1064 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1066 | static int |
| 1067 | __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1068 | 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] | 1069 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1070 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1071 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
| 1072 | int err; |
| 1073 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1074 | if (!fcport) { |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1075 | return FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1076 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1077 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1078 | err = fc_block_scsi_eh(cmd); |
| 1079 | if (err != 0) |
| 1080 | return err; |
| 1081 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1082 | ql_log(ql_log_info, vha, 0x8009, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1083 | "%s RESET ISSUED nexus=%ld:%d:%d cmd=%p.\n", name, vha->host_no, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1084 | cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1085 | |
| 1086 | err = 0; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1087 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1088 | ql_log(ql_log_warn, vha, 0x800a, |
| 1089 | "Wait for hba online failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1090 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1091 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1092 | err = 2; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1093 | if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1094 | != QLA_SUCCESS) { |
| 1095 | ql_log(ql_log_warn, vha, 0x800c, |
| 1096 | "do_reset failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1097 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1098 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1099 | err = 3; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1100 | if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1101 | cmd->device->lun, type) != QLA_SUCCESS) { |
| 1102 | ql_log(ql_log_warn, vha, 0x800d, |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1103 | "wait for pending cmds failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1104 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1105 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1106 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1107 | ql_log(ql_log_info, vha, 0x800e, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1108 | "%s RESET SUCCEEDED nexus:%ld:%d:%d cmd=%p.\n", name, |
| 1109 | vha->host_no, cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1110 | |
| 1111 | return SUCCESS; |
| 1112 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1113 | eh_reset_failed: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1114 | ql_log(ql_log_info, vha, 0x800f, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1115 | "%s RESET FAILED: %s nexus=%ld:%d:%d cmd=%p.\n", name, |
| 1116 | reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun, |
| 1117 | cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1118 | return FAILED; |
| 1119 | } |
| 1120 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1121 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) |
| 1123 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1124 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1125 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1127 | return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, |
| 1128 | ha->isp_ops->lun_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | } |
| 1130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | static int |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1132 | qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1134 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1135 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1137 | return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, |
| 1138 | ha->isp_ops->target_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | } |
| 1140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | /************************************************************************** |
| 1142 | * qla2xxx_eh_bus_reset |
| 1143 | * |
| 1144 | * Description: |
| 1145 | * The bus reset function will reset the bus and abort any executing |
| 1146 | * commands. |
| 1147 | * |
| 1148 | * Input: |
| 1149 | * cmd = Linux SCSI command packet of the command that cause the |
| 1150 | * bus reset. |
| 1151 | * |
| 1152 | * Returns: |
| 1153 | * SUCCESS/FAILURE (defined as macro in scsi.h). |
| 1154 | * |
| 1155 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1156 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) |
| 1158 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1159 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1160 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1161 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1162 | unsigned int id, lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1164 | id = cmd->device->id; |
| 1165 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1166 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1167 | if (!fcport) { |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1168 | return ret; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1171 | ret = fc_block_scsi_eh(cmd); |
| 1172 | if (ret != 0) |
| 1173 | return ret; |
| 1174 | ret = FAILED; |
| 1175 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1176 | ql_log(ql_log_info, vha, 0x8012, |
Andrew Vasquez | 46270af | 2012-05-15 14:34:17 -0400 | [diff] [blame] | 1177 | "BUS RESET ISSUED nexus=%ld:%d:%d.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1179 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1180 | ql_log(ql_log_fatal, vha, 0x8013, |
| 1181 | "Wait for hba online failed board disabled.\n"); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1182 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | } |
| 1184 | |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1185 | if (qla2x00_loop_reset(vha) == QLA_SUCCESS) |
| 1186 | ret = SUCCESS; |
| 1187 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1188 | if (ret == FAILED) |
| 1189 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1191 | /* Flush outstanding commands. */ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1192 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) != |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1193 | QLA_SUCCESS) { |
| 1194 | ql_log(ql_log_warn, vha, 0x8014, |
| 1195 | "Wait for pending commands failed.\n"); |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1196 | ret = FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1199 | eh_bus_reset_done: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1200 | ql_log(ql_log_warn, vha, 0x802b, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1201 | "BUS RESET %s nexus=%ld:%d:%d.\n", |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1202 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1204 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | /************************************************************************** |
| 1208 | * qla2xxx_eh_host_reset |
| 1209 | * |
| 1210 | * Description: |
| 1211 | * The reset function will reset the Adapter. |
| 1212 | * |
| 1213 | * Input: |
| 1214 | * cmd = Linux SCSI command packet of the command that cause the |
| 1215 | * adapter reset. |
| 1216 | * |
| 1217 | * Returns: |
| 1218 | * Either SUCCESS or FAILED. |
| 1219 | * |
| 1220 | * Note: |
| 1221 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1222 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) |
| 1224 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1225 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1226 | struct qla_hw_data *ha = vha->hw; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1227 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1228 | unsigned int id, lun; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1229 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1231 | id = cmd->device->id; |
| 1232 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1233 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1234 | ql_log(ql_log_info, vha, 0x8018, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1235 | "ADAPTER RESET ISSUED nexus=%ld:%d:%d.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 1237 | if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1238 | goto eh_host_reset_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1240 | if (vha != base_vha) { |
| 1241 | if (qla2x00_vp_abort_isp(vha)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1242 | goto eh_host_reset_lock; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1243 | } else { |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1244 | if (IS_P3P_TYPE(vha->hw)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1245 | if (!qla82xx_fcoe_ctx_reset(vha)) { |
| 1246 | /* Ctx reset success */ |
| 1247 | ret = SUCCESS; |
| 1248 | goto eh_host_reset_lock; |
| 1249 | } |
| 1250 | /* fall thru if ctx reset failed */ |
| 1251 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1252 | if (ha->wq) |
| 1253 | flush_workqueue(ha->wq); |
| 1254 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1255 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1256 | if (ha->isp_ops->abort_isp(base_vha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1257 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1258 | /* failed. schedule dpc to try */ |
| 1259 | set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); |
| 1260 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1261 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1262 | ql_log(ql_log_warn, vha, 0x802a, |
| 1263 | "wait for hba online failed.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1264 | goto eh_host_reset_lock; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1265 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1266 | } |
| 1267 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1270 | /* Waiting for command to be returned to OS.*/ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1271 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) == |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1272 | QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1273 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1275 | eh_host_reset_lock: |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1276 | ql_log(ql_log_info, vha, 0x8017, |
| 1277 | "ADAPTER RESET %s nexus=%ld:%d:%d.\n", |
| 1278 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1280 | return ret; |
| 1281 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | |
| 1283 | /* |
| 1284 | * qla2x00_loop_reset |
| 1285 | * Issue loop reset. |
| 1286 | * |
| 1287 | * Input: |
| 1288 | * ha = adapter block pointer. |
| 1289 | * |
| 1290 | * Returns: |
| 1291 | * 0 = success |
| 1292 | */ |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 1293 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1294 | qla2x00_loop_reset(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | { |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1296 | int ret; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1297 | struct fc_port *fcport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1298 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1300 | if (IS_QLAFX00(ha)) { |
| 1301 | return qlafx00_loop_reset(vha); |
| 1302 | } |
| 1303 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 1304 | if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1305 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 1306 | if (fcport->port_type != FCT_TARGET) |
| 1307 | continue; |
| 1308 | |
| 1309 | ret = ha->isp_ops->target_reset(fcport, 0, 0); |
| 1310 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1311 | ql_dbg(ql_dbg_taskm, vha, 0x802c, |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1312 | "Bus Reset failed: Reset=%d " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1313 | "d_id=%x.\n", ret, fcport->d_id.b24); |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1314 | } |
| 1315 | } |
| 1316 | } |
| 1317 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1318 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1319 | if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) { |
Andrew Vasquez | 0b7e7c5 | 2013-02-08 01:57:42 -0500 | [diff] [blame] | 1320 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1321 | atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); |
| 1322 | qla2x00_mark_all_devices_lost(vha, 0); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1323 | ret = qla2x00_full_login_lip(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1324 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1325 | ql_dbg(ql_dbg_taskm, vha, 0x802d, |
| 1326 | "full_login_lip=%d.\n", ret); |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 1330 | if (ha->flags.enable_lip_reset) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1331 | ret = qla2x00_lip_reset(vha); |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1332 | if (ret != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1333 | ql_dbg(ql_dbg_taskm, vha, 0x802e, |
| 1334 | "lip_reset failed (%d).\n", ret); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1335 | } |
| 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | /* 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] | 1338 | vha->marker_needed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1340 | return QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | } |
| 1342 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1343 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1344 | qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1345 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1346 | int que, cnt; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1347 | unsigned long flags; |
| 1348 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1349 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1350 | struct req_que *req; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1351 | |
| 1352 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1353 | for (que = 0; que < ha->max_req_queues; que++) { |
Anirban Chakraborty | 29bdccb | 2009-01-08 15:41:08 -0800 | [diff] [blame] | 1354 | req = ha->req_q_map[que]; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1355 | if (!req) |
| 1356 | continue; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1357 | if (!req->outstanding_cmds) |
| 1358 | continue; |
| 1359 | for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1360 | sp = req->outstanding_cmds[cnt]; |
Andrew Vasquez | e612d46 | 2009-03-24 09:08:04 -0700 | [diff] [blame] | 1361 | if (sp) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1362 | req->outstanding_cmds[cnt] = NULL; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1363 | sp->done(vha, sp, res); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1364 | } |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1365 | } |
| 1366 | } |
| 1367 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1368 | } |
| 1369 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1370 | static int |
| 1371 | qla2xxx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1373 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1375 | if (!rport || fc_remote_port_chkready(rport)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1376 | return -ENXIO; |
| 1377 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1378 | sdev->hostdata = *(fc_port_t **)rport->dd_data; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1379 | |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
| 1383 | static int |
| 1384 | qla2xxx_slave_configure(struct scsi_device *sdev) |
| 1385 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1386 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1387 | struct req_que *req = vha->req; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1388 | |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 1389 | if (IS_T10_PI_CAPABLE(vha->hw)) |
| 1390 | blk_queue_update_dma_alignment(sdev->request_queue, 0x7); |
| 1391 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1392 | if (sdev->tagged_supported) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1393 | scsi_activate_tcq(sdev, req->max_q_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | else |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1395 | scsi_deactivate_tcq(sdev, req->max_q_depth); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1396 | return 0; |
| 1397 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1399 | static void |
| 1400 | qla2xxx_slave_destroy(struct scsi_device *sdev) |
| 1401 | { |
| 1402 | sdev->hostdata = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | } |
| 1404 | |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1405 | static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth) |
| 1406 | { |
| 1407 | fc_port_t *fcport = (struct fc_port *) sdev->hostdata; |
| 1408 | |
| 1409 | if (!scsi_track_queue_full(sdev, qdepth)) |
| 1410 | return; |
| 1411 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1412 | ql_dbg(ql_dbg_io, fcport->vha, 0x3029, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1413 | "Queue depth adjusted-down to %d for nexus=%ld:%d:%d.\n", |
| 1414 | sdev->queue_depth, fcport->vha->host_no, sdev->id, sdev->lun); |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth) |
| 1418 | { |
| 1419 | fc_port_t *fcport = sdev->hostdata; |
| 1420 | struct scsi_qla_host *vha = fcport->vha; |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1421 | struct req_que *req = NULL; |
| 1422 | |
| 1423 | req = vha->req; |
| 1424 | if (!req) |
| 1425 | return; |
| 1426 | |
| 1427 | if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth) |
| 1428 | return; |
| 1429 | |
| 1430 | if (sdev->ordered_tags) |
| 1431 | scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth); |
| 1432 | else |
| 1433 | scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth); |
| 1434 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1435 | ql_dbg(ql_dbg_io, vha, 0x302a, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1436 | "Queue depth adjusted-up to %d for nexus=%ld:%d:%d.\n", |
| 1437 | sdev->queue_depth, fcport->vha->host_no, sdev->id, sdev->lun); |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1438 | } |
| 1439 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1440 | static int |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1441 | qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason) |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1442 | { |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1443 | switch (reason) { |
| 1444 | case SCSI_QDEPTH_DEFAULT: |
| 1445 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth); |
| 1446 | break; |
| 1447 | case SCSI_QDEPTH_QFULL: |
| 1448 | qla2x00_handle_queue_full(sdev, qdepth); |
| 1449 | break; |
| 1450 | case SCSI_QDEPTH_RAMP_UP: |
| 1451 | qla2x00_adjust_sdev_qdepth_up(sdev, qdepth); |
| 1452 | break; |
| 1453 | default: |
Roel Kluin | 08002af | 2010-01-29 11:25:19 +0100 | [diff] [blame] | 1454 | return -EOPNOTSUPP; |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1455 | } |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1456 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1457 | return sdev->queue_depth; |
| 1458 | } |
| 1459 | |
| 1460 | static int |
| 1461 | qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type) |
| 1462 | { |
| 1463 | if (sdev->tagged_supported) { |
| 1464 | scsi_set_tag_type(sdev, tag_type); |
| 1465 | if (tag_type) |
| 1466 | scsi_activate_tcq(sdev, sdev->queue_depth); |
| 1467 | else |
| 1468 | scsi_deactivate_tcq(sdev, sdev->queue_depth); |
| 1469 | } else |
| 1470 | tag_type = 0; |
| 1471 | |
| 1472 | return tag_type; |
| 1473 | } |
| 1474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | /** |
| 1476 | * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. |
| 1477 | * @ha: HA context |
| 1478 | * |
| 1479 | * At exit, the @ha's flags.enable_64bit_addressing set to indicated |
| 1480 | * supported addressing method. |
| 1481 | */ |
| 1482 | static void |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1483 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1485 | /* Assume a 32bit DMA mask. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | ha->flags.enable_64bit_addressing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1488 | if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1489 | /* Any upper-dword bits set? */ |
| 1490 | if (MSD(dma_get_required_mask(&ha->pdev->dev)) && |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1491 | !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1492 | /* Ok, a 64bit DMA mask is applicable. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | ha->flags.enable_64bit_addressing = 1; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1494 | ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; |
| 1495 | ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1496 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | } |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1499 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1500 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
| 1501 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | } |
| 1503 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1504 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1505 | qla2x00_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1506 | { |
| 1507 | unsigned long flags = 0; |
| 1508 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1509 | |
| 1510 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1511 | ha->interrupts_on = 1; |
| 1512 | /* enable risc and host interrupts */ |
| 1513 | WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); |
| 1514 | RD_REG_WORD(®->ictrl); |
| 1515 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1516 | |
| 1517 | } |
| 1518 | |
| 1519 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1520 | qla2x00_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1521 | { |
| 1522 | unsigned long flags = 0; |
| 1523 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1524 | |
| 1525 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1526 | ha->interrupts_on = 0; |
| 1527 | /* disable risc and host interrupts */ |
| 1528 | WRT_REG_WORD(®->ictrl, 0); |
| 1529 | RD_REG_WORD(®->ictrl); |
| 1530 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1531 | } |
| 1532 | |
| 1533 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1534 | qla24xx_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1535 | { |
| 1536 | unsigned long flags = 0; |
| 1537 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1538 | |
| 1539 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1540 | ha->interrupts_on = 1; |
| 1541 | WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); |
| 1542 | RD_REG_DWORD(®->ictrl); |
| 1543 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1544 | } |
| 1545 | |
| 1546 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1547 | qla24xx_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1548 | { |
| 1549 | unsigned long flags = 0; |
| 1550 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1551 | |
Andrew Vasquez | 124f85e | 2009-01-05 11:18:06 -0800 | [diff] [blame] | 1552 | if (IS_NOPOLLING_TYPE(ha)) |
| 1553 | return; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1554 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1555 | ha->interrupts_on = 0; |
| 1556 | WRT_REG_DWORD(®->ictrl, 0); |
| 1557 | RD_REG_DWORD(®->ictrl); |
| 1558 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1559 | } |
| 1560 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1561 | static int |
| 1562 | qla2x00_iospace_config(struct qla_hw_data *ha) |
| 1563 | { |
| 1564 | resource_size_t pio; |
| 1565 | uint16_t msix; |
| 1566 | int cpus; |
| 1567 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1568 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1569 | QLA2XXX_DRIVER_NAME)) { |
| 1570 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0011, |
| 1571 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1572 | pci_name(ha->pdev)); |
| 1573 | goto iospace_error_exit; |
| 1574 | } |
| 1575 | if (!(ha->bars & 1)) |
| 1576 | goto skip_pio; |
| 1577 | |
| 1578 | /* We only need PIO for Flash operations on ISP2312 v2 chips. */ |
| 1579 | pio = pci_resource_start(ha->pdev, 0); |
| 1580 | if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { |
| 1581 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1582 | ql_log_pci(ql_log_warn, ha->pdev, 0x0012, |
| 1583 | "Invalid pci I/O region size (%s).\n", |
| 1584 | pci_name(ha->pdev)); |
| 1585 | pio = 0; |
| 1586 | } |
| 1587 | } else { |
| 1588 | ql_log_pci(ql_log_warn, ha->pdev, 0x0013, |
| 1589 | "Region #0 no a PIO resource (%s).\n", |
| 1590 | pci_name(ha->pdev)); |
| 1591 | pio = 0; |
| 1592 | } |
| 1593 | ha->pio_address = pio; |
| 1594 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014, |
| 1595 | "PIO address=%llu.\n", |
| 1596 | (unsigned long long)ha->pio_address); |
| 1597 | |
| 1598 | skip_pio: |
| 1599 | /* Use MMIO operations for all accesses. */ |
| 1600 | if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { |
| 1601 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0015, |
| 1602 | "Region #1 not an MMIO resource (%s), aborting.\n", |
| 1603 | pci_name(ha->pdev)); |
| 1604 | goto iospace_error_exit; |
| 1605 | } |
| 1606 | if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { |
| 1607 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0016, |
| 1608 | "Invalid PCI mem region size (%s), aborting.\n", |
| 1609 | pci_name(ha->pdev)); |
| 1610 | goto iospace_error_exit; |
| 1611 | } |
| 1612 | |
| 1613 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); |
| 1614 | if (!ha->iobase) { |
| 1615 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0017, |
| 1616 | "Cannot remap MMIO (%s), aborting.\n", |
| 1617 | pci_name(ha->pdev)); |
| 1618 | goto iospace_error_exit; |
| 1619 | } |
| 1620 | |
| 1621 | /* Determine queue resources */ |
| 1622 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1623 | if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) || |
| 1624 | (ql2xmaxqueues > 1 && ql2xmultique_tag) || |
| 1625 | (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) |
| 1626 | goto mqiobase_exit; |
| 1627 | |
| 1628 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), |
| 1629 | pci_resource_len(ha->pdev, 3)); |
| 1630 | if (ha->mqiobase) { |
| 1631 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018, |
| 1632 | "MQIO Base=%p.\n", ha->mqiobase); |
| 1633 | /* Read MSIX vector size of the board */ |
| 1634 | pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); |
| 1635 | ha->msix_count = msix; |
| 1636 | /* Max queues are bounded by available msix vectors */ |
| 1637 | /* queue 0 uses two msix vectors */ |
| 1638 | if (ql2xmultique_tag) { |
| 1639 | cpus = num_online_cpus(); |
| 1640 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1641 | (cpus + 1) : (ha->msix_count - 1); |
| 1642 | ha->max_req_queues = 2; |
| 1643 | } else if (ql2xmaxqueues > 1) { |
| 1644 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1645 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1646 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc008, |
| 1647 | "QoS mode set, max no of request queues:%d.\n", |
| 1648 | ha->max_req_queues); |
| 1649 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0019, |
| 1650 | "QoS mode set, max no of request queues:%d.\n", |
| 1651 | ha->max_req_queues); |
| 1652 | } |
| 1653 | ql_log_pci(ql_log_info, ha->pdev, 0x001a, |
| 1654 | "MSI-X vector count: %d.\n", msix); |
| 1655 | } else |
| 1656 | ql_log_pci(ql_log_info, ha->pdev, 0x001b, |
| 1657 | "BAR 3 not enabled.\n"); |
| 1658 | |
| 1659 | mqiobase_exit: |
| 1660 | ha->msix_count = ha->max_rsp_queues + 1; |
| 1661 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c, |
| 1662 | "MSIX Count:%d.\n", ha->msix_count); |
| 1663 | return (0); |
| 1664 | |
| 1665 | iospace_error_exit: |
| 1666 | return (-ENOMEM); |
| 1667 | } |
| 1668 | |
| 1669 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1670 | static int |
| 1671 | qla83xx_iospace_config(struct qla_hw_data *ha) |
| 1672 | { |
| 1673 | uint16_t msix; |
| 1674 | int cpus; |
| 1675 | |
| 1676 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1677 | QLA2XXX_DRIVER_NAME)) { |
| 1678 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0117, |
| 1679 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1680 | pci_name(ha->pdev)); |
| 1681 | |
| 1682 | goto iospace_error_exit; |
| 1683 | } |
| 1684 | |
| 1685 | /* Use MMIO operations for all accesses. */ |
| 1686 | if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) { |
| 1687 | ql_log_pci(ql_log_warn, ha->pdev, 0x0118, |
| 1688 | "Invalid pci I/O region size (%s).\n", |
| 1689 | pci_name(ha->pdev)); |
| 1690 | goto iospace_error_exit; |
| 1691 | } |
| 1692 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1693 | ql_log_pci(ql_log_warn, ha->pdev, 0x0119, |
| 1694 | "Invalid PCI mem region size (%s), aborting\n", |
| 1695 | pci_name(ha->pdev)); |
| 1696 | goto iospace_error_exit; |
| 1697 | } |
| 1698 | |
| 1699 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN); |
| 1700 | if (!ha->iobase) { |
| 1701 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011a, |
| 1702 | "Cannot remap MMIO (%s), aborting.\n", |
| 1703 | pci_name(ha->pdev)); |
| 1704 | goto iospace_error_exit; |
| 1705 | } |
| 1706 | |
| 1707 | /* 64bit PCI BAR - BAR2 will correspoond to region 4 */ |
| 1708 | /* 83XX 26XX always use MQ type access for queues |
| 1709 | * - mbar 2, a.k.a region 4 */ |
| 1710 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1711 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4), |
| 1712 | pci_resource_len(ha->pdev, 4)); |
| 1713 | |
| 1714 | if (!ha->mqiobase) { |
| 1715 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011d, |
| 1716 | "BAR2/region4 not enabled\n"); |
| 1717 | goto mqiobase_exit; |
| 1718 | } |
| 1719 | |
| 1720 | ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2), |
| 1721 | pci_resource_len(ha->pdev, 2)); |
| 1722 | if (ha->msixbase) { |
| 1723 | /* Read MSIX vector size of the board */ |
| 1724 | pci_read_config_word(ha->pdev, |
| 1725 | QLA_83XX_PCI_MSIX_CONTROL, &msix); |
| 1726 | ha->msix_count = msix; |
| 1727 | /* Max queues are bounded by available msix vectors */ |
| 1728 | /* queue 0 uses two msix vectors */ |
| 1729 | if (ql2xmultique_tag) { |
| 1730 | cpus = num_online_cpus(); |
| 1731 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1732 | (cpus + 1) : (ha->msix_count - 1); |
| 1733 | ha->max_req_queues = 2; |
| 1734 | } else if (ql2xmaxqueues > 1) { |
| 1735 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1736 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1737 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc00c, |
| 1738 | "QoS mode set, max no of request queues:%d.\n", |
| 1739 | ha->max_req_queues); |
| 1740 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b, |
| 1741 | "QoS mode set, max no of request queues:%d.\n", |
| 1742 | ha->max_req_queues); |
| 1743 | } |
| 1744 | ql_log_pci(ql_log_info, ha->pdev, 0x011c, |
| 1745 | "MSI-X vector count: %d.\n", msix); |
| 1746 | } else |
| 1747 | ql_log_pci(ql_log_info, ha->pdev, 0x011e, |
| 1748 | "BAR 1 not enabled.\n"); |
| 1749 | |
| 1750 | mqiobase_exit: |
| 1751 | ha->msix_count = ha->max_rsp_queues + 1; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 1752 | |
| 1753 | qlt_83xx_iospace_config(ha); |
| 1754 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1755 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f, |
| 1756 | "MSIX Count:%d.\n", ha->msix_count); |
| 1757 | return 0; |
| 1758 | |
| 1759 | iospace_error_exit: |
| 1760 | return -ENOMEM; |
| 1761 | } |
| 1762 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1763 | static struct isp_operations qla2100_isp_ops = { |
| 1764 | .pci_config = qla2100_pci_config, |
| 1765 | .reset_chip = qla2x00_reset_chip, |
| 1766 | .chip_diag = qla2x00_chip_diag, |
| 1767 | .config_rings = qla2x00_config_rings, |
| 1768 | .reset_adapter = qla2x00_reset_adapter, |
| 1769 | .nvram_config = qla2x00_nvram_config, |
| 1770 | .update_fw_options = qla2x00_update_fw_options, |
| 1771 | .load_risc = qla2x00_load_risc, |
| 1772 | .pci_info_str = qla2x00_pci_info_str, |
| 1773 | .fw_version_str = qla2x00_fw_version_str, |
| 1774 | .intr_handler = qla2100_intr_handler, |
| 1775 | .enable_intrs = qla2x00_enable_intrs, |
| 1776 | .disable_intrs = qla2x00_disable_intrs, |
| 1777 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1778 | .target_reset = qla2x00_abort_target, |
| 1779 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1780 | .fabric_login = qla2x00_login_fabric, |
| 1781 | .fabric_logout = qla2x00_fabric_logout, |
| 1782 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1783 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1784 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1785 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1786 | .read_nvram = qla2x00_read_nvram_data, |
| 1787 | .write_nvram = qla2x00_write_nvram_data, |
| 1788 | .fw_dump = qla2100_fw_dump, |
| 1789 | .beacon_on = NULL, |
| 1790 | .beacon_off = NULL, |
| 1791 | .beacon_blink = NULL, |
| 1792 | .read_optrom = qla2x00_read_optrom_data, |
| 1793 | .write_optrom = qla2x00_write_optrom_data, |
| 1794 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1795 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1796 | .abort_isp = qla2x00_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1797 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1798 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1799 | }; |
| 1800 | |
| 1801 | static struct isp_operations qla2300_isp_ops = { |
| 1802 | .pci_config = qla2300_pci_config, |
| 1803 | .reset_chip = qla2x00_reset_chip, |
| 1804 | .chip_diag = qla2x00_chip_diag, |
| 1805 | .config_rings = qla2x00_config_rings, |
| 1806 | .reset_adapter = qla2x00_reset_adapter, |
| 1807 | .nvram_config = qla2x00_nvram_config, |
| 1808 | .update_fw_options = qla2x00_update_fw_options, |
| 1809 | .load_risc = qla2x00_load_risc, |
| 1810 | .pci_info_str = qla2x00_pci_info_str, |
| 1811 | .fw_version_str = qla2x00_fw_version_str, |
| 1812 | .intr_handler = qla2300_intr_handler, |
| 1813 | .enable_intrs = qla2x00_enable_intrs, |
| 1814 | .disable_intrs = qla2x00_disable_intrs, |
| 1815 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1816 | .target_reset = qla2x00_abort_target, |
| 1817 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1818 | .fabric_login = qla2x00_login_fabric, |
| 1819 | .fabric_logout = qla2x00_fabric_logout, |
| 1820 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1821 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1822 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1823 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1824 | .read_nvram = qla2x00_read_nvram_data, |
| 1825 | .write_nvram = qla2x00_write_nvram_data, |
| 1826 | .fw_dump = qla2300_fw_dump, |
| 1827 | .beacon_on = qla2x00_beacon_on, |
| 1828 | .beacon_off = qla2x00_beacon_off, |
| 1829 | .beacon_blink = qla2x00_beacon_blink, |
| 1830 | .read_optrom = qla2x00_read_optrom_data, |
| 1831 | .write_optrom = qla2x00_write_optrom_data, |
| 1832 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1833 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1834 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1835 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1836 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1837 | }; |
| 1838 | |
| 1839 | static struct isp_operations qla24xx_isp_ops = { |
| 1840 | .pci_config = qla24xx_pci_config, |
| 1841 | .reset_chip = qla24xx_reset_chip, |
| 1842 | .chip_diag = qla24xx_chip_diag, |
| 1843 | .config_rings = qla24xx_config_rings, |
| 1844 | .reset_adapter = qla24xx_reset_adapter, |
| 1845 | .nvram_config = qla24xx_nvram_config, |
| 1846 | .update_fw_options = qla24xx_update_fw_options, |
| 1847 | .load_risc = qla24xx_load_risc, |
| 1848 | .pci_info_str = qla24xx_pci_info_str, |
| 1849 | .fw_version_str = qla24xx_fw_version_str, |
| 1850 | .intr_handler = qla24xx_intr_handler, |
| 1851 | .enable_intrs = qla24xx_enable_intrs, |
| 1852 | .disable_intrs = qla24xx_disable_intrs, |
| 1853 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1854 | .target_reset = qla24xx_abort_target, |
| 1855 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1856 | .fabric_login = qla24xx_login_fabric, |
| 1857 | .fabric_logout = qla24xx_fabric_logout, |
| 1858 | .calc_req_entries = NULL, |
| 1859 | .build_iocbs = NULL, |
| 1860 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1861 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1862 | .read_nvram = qla24xx_read_nvram_data, |
| 1863 | .write_nvram = qla24xx_write_nvram_data, |
| 1864 | .fw_dump = qla24xx_fw_dump, |
| 1865 | .beacon_on = qla24xx_beacon_on, |
| 1866 | .beacon_off = qla24xx_beacon_off, |
| 1867 | .beacon_blink = qla24xx_beacon_blink, |
| 1868 | .read_optrom = qla24xx_read_optrom_data, |
| 1869 | .write_optrom = qla24xx_write_optrom_data, |
| 1870 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1871 | .start_scsi = qla24xx_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1872 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1873 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1874 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1875 | }; |
| 1876 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1877 | static struct isp_operations qla25xx_isp_ops = { |
| 1878 | .pci_config = qla25xx_pci_config, |
| 1879 | .reset_chip = qla24xx_reset_chip, |
| 1880 | .chip_diag = qla24xx_chip_diag, |
| 1881 | .config_rings = qla24xx_config_rings, |
| 1882 | .reset_adapter = qla24xx_reset_adapter, |
| 1883 | .nvram_config = qla24xx_nvram_config, |
| 1884 | .update_fw_options = qla24xx_update_fw_options, |
| 1885 | .load_risc = qla24xx_load_risc, |
| 1886 | .pci_info_str = qla24xx_pci_info_str, |
| 1887 | .fw_version_str = qla24xx_fw_version_str, |
| 1888 | .intr_handler = qla24xx_intr_handler, |
| 1889 | .enable_intrs = qla24xx_enable_intrs, |
| 1890 | .disable_intrs = qla24xx_disable_intrs, |
| 1891 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1892 | .target_reset = qla24xx_abort_target, |
| 1893 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1894 | .fabric_login = qla24xx_login_fabric, |
| 1895 | .fabric_logout = qla24xx_fabric_logout, |
| 1896 | .calc_req_entries = NULL, |
| 1897 | .build_iocbs = NULL, |
| 1898 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1899 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1900 | .read_nvram = qla25xx_read_nvram_data, |
| 1901 | .write_nvram = qla25xx_write_nvram_data, |
| 1902 | .fw_dump = qla25xx_fw_dump, |
| 1903 | .beacon_on = qla24xx_beacon_on, |
| 1904 | .beacon_off = qla24xx_beacon_off, |
| 1905 | .beacon_blink = qla24xx_beacon_blink, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1906 | .read_optrom = qla25xx_read_optrom_data, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1907 | .write_optrom = qla24xx_write_optrom_data, |
| 1908 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1909 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1910 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1911 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1912 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1913 | }; |
| 1914 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1915 | static struct isp_operations qla81xx_isp_ops = { |
| 1916 | .pci_config = qla25xx_pci_config, |
| 1917 | .reset_chip = qla24xx_reset_chip, |
| 1918 | .chip_diag = qla24xx_chip_diag, |
| 1919 | .config_rings = qla24xx_config_rings, |
| 1920 | .reset_adapter = qla24xx_reset_adapter, |
| 1921 | .nvram_config = qla81xx_nvram_config, |
| 1922 | .update_fw_options = qla81xx_update_fw_options, |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 1923 | .load_risc = qla81xx_load_risc, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1924 | .pci_info_str = qla24xx_pci_info_str, |
| 1925 | .fw_version_str = qla24xx_fw_version_str, |
| 1926 | .intr_handler = qla24xx_intr_handler, |
| 1927 | .enable_intrs = qla24xx_enable_intrs, |
| 1928 | .disable_intrs = qla24xx_disable_intrs, |
| 1929 | .abort_command = qla24xx_abort_command, |
| 1930 | .target_reset = qla24xx_abort_target, |
| 1931 | .lun_reset = qla24xx_lun_reset, |
| 1932 | .fabric_login = qla24xx_login_fabric, |
| 1933 | .fabric_logout = qla24xx_fabric_logout, |
| 1934 | .calc_req_entries = NULL, |
| 1935 | .build_iocbs = NULL, |
| 1936 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1937 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 1938 | .read_nvram = NULL, |
| 1939 | .write_nvram = NULL, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1940 | .fw_dump = qla81xx_fw_dump, |
| 1941 | .beacon_on = qla24xx_beacon_on, |
| 1942 | .beacon_off = qla24xx_beacon_off, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1943 | .beacon_blink = qla83xx_beacon_blink, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1944 | .read_optrom = qla25xx_read_optrom_data, |
| 1945 | .write_optrom = qla24xx_write_optrom_data, |
| 1946 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | ba77ef5 | 2010-05-28 15:08:27 -0700 | [diff] [blame] | 1947 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1948 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1949 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1950 | .initialize_adapter = qla2x00_initialize_adapter, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1951 | }; |
| 1952 | |
| 1953 | static struct isp_operations qla82xx_isp_ops = { |
| 1954 | .pci_config = qla82xx_pci_config, |
| 1955 | .reset_chip = qla82xx_reset_chip, |
| 1956 | .chip_diag = qla24xx_chip_diag, |
| 1957 | .config_rings = qla82xx_config_rings, |
| 1958 | .reset_adapter = qla24xx_reset_adapter, |
| 1959 | .nvram_config = qla81xx_nvram_config, |
| 1960 | .update_fw_options = qla24xx_update_fw_options, |
| 1961 | .load_risc = qla82xx_load_risc, |
Atul Deshmukh | 9d55ca6 | 2012-08-22 14:21:14 -0400 | [diff] [blame] | 1962 | .pci_info_str = qla24xx_pci_info_str, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1963 | .fw_version_str = qla24xx_fw_version_str, |
| 1964 | .intr_handler = qla82xx_intr_handler, |
| 1965 | .enable_intrs = qla82xx_enable_intrs, |
| 1966 | .disable_intrs = qla82xx_disable_intrs, |
| 1967 | .abort_command = qla24xx_abort_command, |
| 1968 | .target_reset = qla24xx_abort_target, |
| 1969 | .lun_reset = qla24xx_lun_reset, |
| 1970 | .fabric_login = qla24xx_login_fabric, |
| 1971 | .fabric_logout = qla24xx_fabric_logout, |
| 1972 | .calc_req_entries = NULL, |
| 1973 | .build_iocbs = NULL, |
| 1974 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1975 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1976 | .read_nvram = qla24xx_read_nvram_data, |
| 1977 | .write_nvram = qla24xx_write_nvram_data, |
| 1978 | .fw_dump = qla24xx_fw_dump, |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 1979 | .beacon_on = qla82xx_beacon_on, |
| 1980 | .beacon_off = qla82xx_beacon_off, |
| 1981 | .beacon_blink = NULL, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1982 | .read_optrom = qla82xx_read_optrom_data, |
| 1983 | .write_optrom = qla82xx_write_optrom_data, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1984 | .get_flash_version = qla82xx_get_flash_version, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1985 | .start_scsi = qla82xx_start_scsi, |
| 1986 | .abort_isp = qla82xx_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1987 | .iospace_config = qla82xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1988 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1989 | }; |
| 1990 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1991 | static struct isp_operations qla8044_isp_ops = { |
| 1992 | .pci_config = qla82xx_pci_config, |
| 1993 | .reset_chip = qla82xx_reset_chip, |
| 1994 | .chip_diag = qla24xx_chip_diag, |
| 1995 | .config_rings = qla82xx_config_rings, |
| 1996 | .reset_adapter = qla24xx_reset_adapter, |
| 1997 | .nvram_config = qla81xx_nvram_config, |
| 1998 | .update_fw_options = qla24xx_update_fw_options, |
| 1999 | .load_risc = qla82xx_load_risc, |
| 2000 | .pci_info_str = qla24xx_pci_info_str, |
| 2001 | .fw_version_str = qla24xx_fw_version_str, |
| 2002 | .intr_handler = qla8044_intr_handler, |
| 2003 | .enable_intrs = qla82xx_enable_intrs, |
| 2004 | .disable_intrs = qla82xx_disable_intrs, |
| 2005 | .abort_command = qla24xx_abort_command, |
| 2006 | .target_reset = qla24xx_abort_target, |
| 2007 | .lun_reset = qla24xx_lun_reset, |
| 2008 | .fabric_login = qla24xx_login_fabric, |
| 2009 | .fabric_logout = qla24xx_fabric_logout, |
| 2010 | .calc_req_entries = NULL, |
| 2011 | .build_iocbs = NULL, |
| 2012 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2013 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2014 | .read_nvram = NULL, |
| 2015 | .write_nvram = NULL, |
| 2016 | .fw_dump = qla24xx_fw_dump, |
| 2017 | .beacon_on = qla82xx_beacon_on, |
| 2018 | .beacon_off = qla82xx_beacon_off, |
| 2019 | .beacon_blink = NULL, |
| 2020 | .read_optrom = qla82xx_read_optrom_data, |
| 2021 | .write_optrom = qla8044_write_optrom_data, |
| 2022 | .get_flash_version = qla82xx_get_flash_version, |
| 2023 | .start_scsi = qla82xx_start_scsi, |
| 2024 | .abort_isp = qla8044_abort_isp, |
| 2025 | .iospace_config = qla82xx_iospace_config, |
| 2026 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2027 | }; |
| 2028 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2029 | static struct isp_operations qla83xx_isp_ops = { |
| 2030 | .pci_config = qla25xx_pci_config, |
| 2031 | .reset_chip = qla24xx_reset_chip, |
| 2032 | .chip_diag = qla24xx_chip_diag, |
| 2033 | .config_rings = qla24xx_config_rings, |
| 2034 | .reset_adapter = qla24xx_reset_adapter, |
| 2035 | .nvram_config = qla81xx_nvram_config, |
| 2036 | .update_fw_options = qla81xx_update_fw_options, |
| 2037 | .load_risc = qla81xx_load_risc, |
| 2038 | .pci_info_str = qla24xx_pci_info_str, |
| 2039 | .fw_version_str = qla24xx_fw_version_str, |
| 2040 | .intr_handler = qla24xx_intr_handler, |
| 2041 | .enable_intrs = qla24xx_enable_intrs, |
| 2042 | .disable_intrs = qla24xx_disable_intrs, |
| 2043 | .abort_command = qla24xx_abort_command, |
| 2044 | .target_reset = qla24xx_abort_target, |
| 2045 | .lun_reset = qla24xx_lun_reset, |
| 2046 | .fabric_login = qla24xx_login_fabric, |
| 2047 | .fabric_logout = qla24xx_fabric_logout, |
| 2048 | .calc_req_entries = NULL, |
| 2049 | .build_iocbs = NULL, |
| 2050 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2051 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2052 | .read_nvram = NULL, |
| 2053 | .write_nvram = NULL, |
| 2054 | .fw_dump = qla83xx_fw_dump, |
| 2055 | .beacon_on = qla24xx_beacon_on, |
| 2056 | .beacon_off = qla24xx_beacon_off, |
| 2057 | .beacon_blink = qla83xx_beacon_blink, |
| 2058 | .read_optrom = qla25xx_read_optrom_data, |
| 2059 | .write_optrom = qla24xx_write_optrom_data, |
| 2060 | .get_flash_version = qla24xx_get_flash_version, |
| 2061 | .start_scsi = qla24xx_dif_start_scsi, |
| 2062 | .abort_isp = qla2x00_abort_isp, |
| 2063 | .iospace_config = qla83xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2064 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2065 | }; |
| 2066 | |
| 2067 | static struct isp_operations qlafx00_isp_ops = { |
| 2068 | .pci_config = qlafx00_pci_config, |
| 2069 | .reset_chip = qlafx00_soft_reset, |
| 2070 | .chip_diag = qlafx00_chip_diag, |
| 2071 | .config_rings = qlafx00_config_rings, |
| 2072 | .reset_adapter = qlafx00_soft_reset, |
| 2073 | .nvram_config = NULL, |
| 2074 | .update_fw_options = NULL, |
| 2075 | .load_risc = NULL, |
| 2076 | .pci_info_str = qlafx00_pci_info_str, |
| 2077 | .fw_version_str = qlafx00_fw_version_str, |
| 2078 | .intr_handler = qlafx00_intr_handler, |
| 2079 | .enable_intrs = qlafx00_enable_intrs, |
| 2080 | .disable_intrs = qlafx00_disable_intrs, |
| 2081 | .abort_command = qlafx00_abort_command, |
| 2082 | .target_reset = qlafx00_abort_target, |
| 2083 | .lun_reset = qlafx00_lun_reset, |
| 2084 | .fabric_login = NULL, |
| 2085 | .fabric_logout = NULL, |
| 2086 | .calc_req_entries = NULL, |
| 2087 | .build_iocbs = NULL, |
| 2088 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2089 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2090 | .read_nvram = qla24xx_read_nvram_data, |
| 2091 | .write_nvram = qla24xx_write_nvram_data, |
| 2092 | .fw_dump = NULL, |
| 2093 | .beacon_on = qla24xx_beacon_on, |
| 2094 | .beacon_off = qla24xx_beacon_off, |
| 2095 | .beacon_blink = NULL, |
| 2096 | .read_optrom = qla24xx_read_optrom_data, |
| 2097 | .write_optrom = qla24xx_write_optrom_data, |
| 2098 | .get_flash_version = qla24xx_get_flash_version, |
| 2099 | .start_scsi = qlafx00_start_scsi, |
| 2100 | .abort_isp = qlafx00_abort_isp, |
| 2101 | .iospace_config = qlafx00_iospace_config, |
| 2102 | .initialize_adapter = qlafx00_initialize_adapter, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2103 | }; |
| 2104 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2105 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2106 | qla2x00_set_isp_flags(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2107 | { |
| 2108 | ha->device_type = DT_EXTENDED_IDS; |
| 2109 | switch (ha->pdev->device) { |
| 2110 | case PCI_DEVICE_ID_QLOGIC_ISP2100: |
| 2111 | ha->device_type |= DT_ISP2100; |
| 2112 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2113 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2114 | break; |
| 2115 | case PCI_DEVICE_ID_QLOGIC_ISP2200: |
| 2116 | ha->device_type |= DT_ISP2200; |
| 2117 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2118 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2119 | break; |
| 2120 | case PCI_DEVICE_ID_QLOGIC_ISP2300: |
| 2121 | ha->device_type |= DT_ISP2300; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2122 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2123 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2124 | break; |
| 2125 | case PCI_DEVICE_ID_QLOGIC_ISP2312: |
| 2126 | ha->device_type |= DT_ISP2312; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2127 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2128 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2129 | break; |
| 2130 | case PCI_DEVICE_ID_QLOGIC_ISP2322: |
| 2131 | ha->device_type |= DT_ISP2322; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2132 | ha->device_type |= DT_ZIO_SUPPORTED; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2133 | if (ha->pdev->subsystem_vendor == 0x1028 && |
| 2134 | ha->pdev->subsystem_device == 0x0170) |
| 2135 | ha->device_type |= DT_OEM_001; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2136 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2137 | break; |
| 2138 | case PCI_DEVICE_ID_QLOGIC_ISP6312: |
| 2139 | ha->device_type |= DT_ISP6312; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2140 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2141 | break; |
| 2142 | case PCI_DEVICE_ID_QLOGIC_ISP6322: |
| 2143 | ha->device_type |= DT_ISP6322; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2144 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2145 | break; |
| 2146 | case PCI_DEVICE_ID_QLOGIC_ISP2422: |
| 2147 | ha->device_type |= DT_ISP2422; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2148 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2149 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2150 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2151 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2152 | break; |
| 2153 | case PCI_DEVICE_ID_QLOGIC_ISP2432: |
| 2154 | ha->device_type |= DT_ISP2432; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2155 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2156 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2157 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2158 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2159 | break; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2160 | case PCI_DEVICE_ID_QLOGIC_ISP8432: |
| 2161 | ha->device_type |= DT_ISP8432; |
| 2162 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2163 | ha->device_type |= DT_FWI2; |
| 2164 | ha->device_type |= DT_IIDMA; |
| 2165 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2166 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2167 | case PCI_DEVICE_ID_QLOGIC_ISP5422: |
| 2168 | ha->device_type |= DT_ISP5422; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2169 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2170 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2171 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2172 | case PCI_DEVICE_ID_QLOGIC_ISP5432: |
| 2173 | ha->device_type |= DT_ISP5432; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2174 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2175 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2176 | break; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2177 | case PCI_DEVICE_ID_QLOGIC_ISP2532: |
| 2178 | ha->device_type |= DT_ISP2532; |
| 2179 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2180 | ha->device_type |= DT_FWI2; |
| 2181 | ha->device_type |= DT_IIDMA; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2182 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2183 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2184 | case PCI_DEVICE_ID_QLOGIC_ISP8001: |
| 2185 | ha->device_type |= DT_ISP8001; |
| 2186 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2187 | ha->device_type |= DT_FWI2; |
| 2188 | ha->device_type |= DT_IIDMA; |
| 2189 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2190 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2191 | case PCI_DEVICE_ID_QLOGIC_ISP8021: |
| 2192 | ha->device_type |= DT_ISP8021; |
| 2193 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2194 | ha->device_type |= DT_FWI2; |
| 2195 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2196 | /* Initialize 82XX ISP flags */ |
| 2197 | qla82xx_init_flags(ha); |
| 2198 | break; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2199 | case PCI_DEVICE_ID_QLOGIC_ISP8044: |
| 2200 | ha->device_type |= DT_ISP8044; |
| 2201 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2202 | ha->device_type |= DT_FWI2; |
| 2203 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2204 | /* Initialize 82XX ISP flags */ |
| 2205 | qla82xx_init_flags(ha); |
| 2206 | break; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2207 | case PCI_DEVICE_ID_QLOGIC_ISP2031: |
| 2208 | ha->device_type |= DT_ISP2031; |
| 2209 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2210 | ha->device_type |= DT_FWI2; |
| 2211 | ha->device_type |= DT_IIDMA; |
| 2212 | ha->device_type |= DT_T10_PI; |
| 2213 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2214 | break; |
| 2215 | case PCI_DEVICE_ID_QLOGIC_ISP8031: |
| 2216 | ha->device_type |= DT_ISP8031; |
| 2217 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2218 | ha->device_type |= DT_FWI2; |
| 2219 | ha->device_type |= DT_IIDMA; |
| 2220 | ha->device_type |= DT_T10_PI; |
| 2221 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2222 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2223 | case PCI_DEVICE_ID_QLOGIC_ISPF001: |
| 2224 | ha->device_type |= DT_ISPFX00; |
| 2225 | break; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2226 | } |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 2227 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2228 | if (IS_QLA82XX(ha)) |
| 2229 | ha->port_no = !(ha->portnum & 1); |
| 2230 | else |
| 2231 | /* Get adapter physical port no from interrupt pin register. */ |
| 2232 | pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); |
| 2233 | |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 2234 | if (ha->port_no & 1) |
| 2235 | ha->flags.port0 = 1; |
| 2236 | else |
| 2237 | ha->flags.port0 = 0; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2238 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 2239 | "device_type=0x%x port=%d fw_srisc_address=0x%x.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2240 | ha->device_type, ha->flags.port0, ha->fw_srisc_address); |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2241 | } |
| 2242 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2243 | static void |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2244 | qla2xxx_scan_start(struct Scsi_Host *shost) |
| 2245 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2246 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2247 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2248 | if (vha->hw->flags.running_gold_fw) |
| 2249 | return; |
| 2250 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2251 | set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); |
| 2252 | set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); |
| 2253 | set_bit(RSCN_UPDATE, &vha->dpc_flags); |
| 2254 | set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2255 | } |
| 2256 | |
| 2257 | static int |
| 2258 | qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) |
| 2259 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2260 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2261 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2262 | if (!vha->host) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2263 | return 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2264 | if (time > vha->hw->loop_reset_delay * HZ) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2265 | return 1; |
| 2266 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2267 | return atomic_read(&vha->loop_state) == LOOP_READY; |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2268 | } |
| 2269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | /* |
| 2271 | * PCI driver interface |
| 2272 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 2273 | static int |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 2274 | 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] | 2275 | { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2276 | int ret = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | struct Scsi_Host *host; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2278 | scsi_qla_host_t *base_vha = NULL; |
| 2279 | struct qla_hw_data *ha; |
Andrew Vasquez | 29856e2 | 2007-08-12 18:22:52 -0700 | [diff] [blame] | 2280 | char pci_info[30]; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2281 | char fw_str[30], wq_name[30]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 2282 | struct scsi_host_template *sht; |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2283 | int bars, mem_only = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2284 | uint16_t req_length = 0, rsp_length = 0; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2285 | struct req_que *req = NULL; |
| 2286 | struct rsp_que *rsp = NULL; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2287 | bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 2288 | sht = &qla2xxx_driver_template; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2289 | if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || |
| 2290 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2291 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2292 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || |
| 2293 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2294 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2295 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 || |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2296 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 || |
| 2297 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 || |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2298 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 || |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2299 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 || |
| 2300 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044) { |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2301 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2302 | mem_only = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2303 | ql_dbg_pci(ql_dbg_init, pdev, 0x0007, |
| 2304 | "Mem only adapter.\n"); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2305 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2306 | ql_dbg_pci(ql_dbg_init, pdev, 0x0008, |
| 2307 | "Bars=%d.\n", bars); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2308 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2309 | if (mem_only) { |
| 2310 | if (pci_enable_device_mem(pdev)) |
| 2311 | goto probe_out; |
| 2312 | } else { |
| 2313 | if (pci_enable_device(pdev)) |
| 2314 | goto probe_out; |
| 2315 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | |
Jesse Barnes | 0927678 | 2008-10-18 17:33:19 -0700 | [diff] [blame] | 2317 | /* This may fail but that's ok */ |
| 2318 | pci_enable_pcie_error_reporting(pdev); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 2319 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2320 | ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); |
| 2321 | if (!ha) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2322 | ql_log_pci(ql_log_fatal, pdev, 0x0009, |
| 2323 | "Unable to allocate memory for ha.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2324 | goto probe_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2326 | ql_dbg_pci(ql_dbg_init, pdev, 0x000a, |
| 2327 | "Memory allocated for ha=%p.\n", ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2328 | ha->pdev = pdev; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2329 | ha->tgt.enable_class_2 = ql2xenableclass2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | |
| 2331 | /* Clear our data area */ |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2332 | ha->bars = bars; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2333 | ha->mem_only = mem_only; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 2334 | spin_lock_init(&ha->hardware_lock); |
Andrew Vasquez | 339aa70 | 2010-10-15 11:27:45 -0700 | [diff] [blame] | 2335 | spin_lock_init(&ha->vport_slock); |
Saurav Kashyap | a9b6f72 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 2336 | mutex_init(&ha->selflogin_lock); |
Chad Dupuis | 7a8ab9c | 2014-02-26 04:14:56 -0500 | [diff] [blame] | 2337 | mutex_init(&ha->optrom_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2338 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2339 | /* Set ISP-type information. */ |
| 2340 | qla2x00_set_isp_flags(ha); |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2341 | |
| 2342 | /* Set EEH reset type to fundamental if required by hba */ |
Joe Carnuccio | 9567611 | 2012-08-22 14:21:20 -0400 | [diff] [blame] | 2343 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) || |
| 2344 | IS_QLA83XX(ha)) |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2345 | pdev->needs_freset = 1; |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2346 | |
Chad Dupuis | cba1e47 | 2011-11-18 09:03:21 -0800 | [diff] [blame] | 2347 | ha->prev_topology = 0; |
| 2348 | ha->init_cb_size = sizeof(init_cb_t); |
| 2349 | ha->link_data_rate = PORT_SPEED_UNKNOWN; |
| 2350 | ha->optrom_size = OPTROM_SIZE_2300; |
| 2351 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2352 | /* Assign ISP specific operations. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | if (IS_QLA2100(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2354 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2356 | req_length = REQUEST_ENTRY_CNT_2100; |
| 2357 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2358 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2359 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2360 | ha->flash_conf_off = ~0; |
| 2361 | ha->flash_data_off = ~0; |
| 2362 | ha->nvram_conf_off = ~0; |
| 2363 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2364 | ha->isp_ops = &qla2100_isp_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | } else if (IS_QLA2200(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2366 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Andrew Vasquez | 67ddda3 | 2012-02-09 11:14:08 -0800 | [diff] [blame] | 2367 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2200; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2368 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2369 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2370 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2371 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2372 | ha->flash_conf_off = ~0; |
| 2373 | ha->flash_data_off = ~0; |
| 2374 | ha->nvram_conf_off = ~0; |
| 2375 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2376 | ha->isp_ops = &qla2100_isp_ops; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2377 | } else if (IS_QLA23XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2378 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2380 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2381 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2382 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2383 | ha->gid_list_info_size = 6; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2384 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) |
| 2385 | ha->optrom_size = OPTROM_SIZE_2322; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2386 | ha->flash_conf_off = ~0; |
| 2387 | ha->flash_data_off = ~0; |
| 2388 | ha->nvram_conf_off = ~0; |
| 2389 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2390 | ha->isp_ops = &qla2300_isp_ops; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2391 | } else if (IS_QLA24XX_TYPE(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2392 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2393 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2394 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2395 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2396 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2397 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2398 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2399 | ha->gid_list_info_size = 8; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2400 | ha->optrom_size = OPTROM_SIZE_24XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2401 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2402 | ha->isp_ops = &qla24xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2403 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2404 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2405 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2406 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2407 | } else if (IS_QLA25XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2408 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2409 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2410 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2411 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2412 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2413 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2414 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2415 | ha->gid_list_info_size = 8; |
| 2416 | ha->optrom_size = OPTROM_SIZE_25XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2417 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2418 | ha->isp_ops = &qla25xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2419 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2420 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2421 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2422 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
| 2423 | } else if (IS_QLA81XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2424 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2425 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2426 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2427 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 2428 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2429 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2430 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2431 | ha->gid_list_info_size = 8; |
| 2432 | ha->optrom_size = OPTROM_SIZE_81XX; |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 2433 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2434 | ha->isp_ops = &qla81xx_isp_ops; |
| 2435 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2436 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2437 | ha->nvram_conf_off = ~0; |
| 2438 | ha->nvram_data_off = ~0; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2439 | } else if (IS_QLA82XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2440 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2441 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2442 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2443 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2444 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2445 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2446 | ha->gid_list_info_size = 8; |
| 2447 | ha->optrom_size = OPTROM_SIZE_82XX; |
Andrew Vasquez | 087c621 | 2010-11-23 16:52:48 -0800 | [diff] [blame] | 2448 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2449 | ha->isp_ops = &qla82xx_isp_ops; |
| 2450 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2451 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2452 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2453 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2454 | } else if (IS_QLA8044(ha)) { |
| 2455 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
| 2456 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2457 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2458 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2459 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2460 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2461 | ha->gid_list_info_size = 8; |
| 2462 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2463 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2464 | ha->isp_ops = &qla8044_isp_ops; |
| 2465 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2466 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2467 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2468 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2469 | } else if (IS_QLA83XX(ha)) { |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2470 | ha->portnum = PCI_FUNC(ha->pdev->devfn); |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2471 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2472 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2473 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2474 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | b8aa4bd | 2013-01-30 03:34:40 -0500 | [diff] [blame] | 2475 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2476 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2477 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2478 | ha->gid_list_info_size = 8; |
| 2479 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2480 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2481 | ha->isp_ops = &qla83xx_isp_ops; |
| 2482 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2483 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2484 | ha->nvram_conf_off = ~0; |
| 2485 | ha->nvram_data_off = ~0; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2486 | } else if (IS_QLAFX00(ha)) { |
| 2487 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00; |
| 2488 | ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00; |
| 2489 | ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00; |
| 2490 | req_length = REQUEST_ENTRY_CNT_FX00; |
| 2491 | rsp_length = RESPONSE_ENTRY_CNT_FX00; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2492 | ha->isp_ops = &qlafx00_isp_ops; |
| 2493 | ha->port_down_retry_count = 30; /* default value */ |
| 2494 | ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL; |
| 2495 | ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL; |
Armen Baloyan | 71e5600 | 2013-08-27 01:37:38 -0400 | [diff] [blame] | 2496 | ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2497 | ha->mr.fw_hbt_en = 1; |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 2498 | ha->mr.host_info_resend = false; |
| 2499 | ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | } |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2501 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2502 | ql_dbg_pci(ql_dbg_init, pdev, 0x001e, |
| 2503 | "mbx_count=%d, req_length=%d, " |
| 2504 | "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, " |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2505 | "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, " |
| 2506 | "max_fibre_devices=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2507 | ha->mbx_count, req_length, rsp_length, ha->max_loop_id, |
| 2508 | ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size, |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2509 | ha->nvram_npiv_size, ha->max_fibre_devices); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2510 | ql_dbg_pci(ql_dbg_init, pdev, 0x001f, |
| 2511 | "isp_ops=%p, flash_conf_off=%d, " |
| 2512 | "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n", |
| 2513 | ha->isp_ops, ha->flash_conf_off, ha->flash_data_off, |
| 2514 | ha->nvram_conf_off, ha->nvram_data_off); |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2515 | |
| 2516 | /* Configure PCI I/O space */ |
| 2517 | ret = ha->isp_ops->iospace_config(ha); |
| 2518 | if (ret) |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2519 | goto iospace_config_failed; |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2520 | |
| 2521 | ql_log_pci(ql_log_info, pdev, 0x001d, |
| 2522 | "Found an ISP%04X irq %d iobase 0x%p.\n", |
| 2523 | pdev->device, pdev->irq, ha->iobase); |
matthias@kaehlcke.net | 6c2f527 | 2008-05-12 22:21:11 -0700 | [diff] [blame] | 2524 | mutex_init(&ha->vport_lock); |
Marcus Barrow | 0b05a1f | 2008-01-17 09:02:13 -0800 | [diff] [blame] | 2525 | init_completion(&ha->mbx_cmd_comp); |
| 2526 | complete(&ha->mbx_cmd_comp); |
| 2527 | init_completion(&ha->mbx_intr_comp); |
Sarang Radke | 23f2ebd | 2010-05-28 15:08:21 -0700 | [diff] [blame] | 2528 | init_completion(&ha->dcbx_comp); |
Chad Dupuis | f356bef | 2013-02-08 01:58:04 -0500 | [diff] [blame] | 2529 | init_completion(&ha->lb_portup_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2531 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 2533 | qla2x00_config_dma_addressing(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2534 | ql_dbg_pci(ql_dbg_init, pdev, 0x0020, |
| 2535 | "64 Bit addressing is %s.\n", |
| 2536 | ha->flags.enable_64bit_addressing ? "enable" : |
| 2537 | "disable"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2538 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2539 | if (!ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2540 | ql_log_pci(ql_log_fatal, pdev, 0x0031, |
| 2541 | "Failed to allocate memory for adapter, aborting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2543 | goto probe_hw_failed; |
| 2544 | } |
| 2545 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2546 | req->max_q_depth = MAX_Q_DEPTH; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2547 | if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2548 | req->max_q_depth = ql2xmaxqdepth; |
| 2549 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2550 | |
| 2551 | base_vha = qla2x00_create_host(sht, ha); |
| 2552 | if (!base_vha) { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2553 | ret = -ENOMEM; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2554 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2555 | qla2x00_free_req_que(ha, req); |
| 2556 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2557 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | } |
| 2559 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2560 | pci_set_drvdata(pdev, base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2562 | host = base_vha->host; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2563 | base_vha->req = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2564 | if (IS_QLA2XXX_MIDTYPE(ha)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2565 | base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2566 | else |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2567 | base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + |
| 2568 | base_vha->vp_idx; |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2569 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2570 | /* Setup fcport template structure. */ |
| 2571 | ha->mr.fcport.vha = base_vha; |
| 2572 | ha->mr.fcport.port_type = FCT_UNKNOWN; |
| 2573 | ha->mr.fcport.loop_id = FC_NO_LOOP_ID; |
| 2574 | qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED); |
| 2575 | ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED; |
| 2576 | ha->mr.fcport.scan_state = 1; |
| 2577 | |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2578 | /* Set the SG table size based on ISP type */ |
| 2579 | if (!IS_FWI2_CAPABLE(ha)) { |
| 2580 | if (IS_QLA2100(ha)) |
| 2581 | host->sg_tablesize = 32; |
| 2582 | } else { |
| 2583 | if (!IS_QLA82XX(ha)) |
| 2584 | host->sg_tablesize = QLA_SG_ALL; |
| 2585 | } |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2586 | host->max_id = ha->max_fibre_devices; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2587 | host->cmd_per_lun = 3; |
Seokmann Ju | 711c1d9 | 2008-07-10 16:55:51 -0700 | [diff] [blame] | 2588 | host->unique_id = host->host_no; |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2589 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2590 | host->max_cmd_len = 32; |
| 2591 | else |
| 2592 | host->max_cmd_len = MAX_CMDSZ; |
Andrew Vasquez | 75bc419 | 2006-05-17 15:09:22 -0700 | [diff] [blame] | 2593 | host->max_channel = MAX_BUSES - 1; |
Andrew Vasquez | 8251592 | 2011-05-10 11:30:13 -0700 | [diff] [blame] | 2594 | host->max_lun = ql2xmaxlun; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2595 | host->transportt = qla2xxx_transport_template; |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 2596 | sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2597 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2598 | ql_dbg(ql_dbg_init, base_vha, 0x0033, |
| 2599 | "max_id=%d this_id=%d " |
| 2600 | "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d " |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 2601 | "max_lun=%d transportt=%p, vendor_id=%llu.\n", host->max_id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2602 | host->this_id, host->cmd_per_lun, host->unique_id, |
| 2603 | host->max_cmd_len, host->max_channel, host->max_lun, |
| 2604 | host->transportt, sht->vendor_id); |
| 2605 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2606 | que_init: |
| 2607 | /* Alloc arrays of request and response ring ptrs */ |
| 2608 | if (!qla2x00_alloc_queues(ha, req, rsp)) { |
| 2609 | ql_log(ql_log_fatal, base_vha, 0x003d, |
| 2610 | "Failed to allocate memory for queue pointers..." |
| 2611 | "aborting.\n"); |
| 2612 | goto probe_init_failed; |
| 2613 | } |
| 2614 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2615 | qlt_probe_one_stage1(base_vha, ha); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2616 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2617 | /* Set up the irqs */ |
| 2618 | ret = qla2x00_request_irqs(ha, rsp); |
| 2619 | if (ret) |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2620 | goto probe_init_failed; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 2621 | |
| 2622 | pci_save_state(pdev); |
| 2623 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2624 | /* Assign back pointers */ |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2625 | rsp->req = req; |
| 2626 | req->rsp = rsp; |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2627 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2628 | if (IS_QLAFX00(ha)) { |
| 2629 | ha->rsp_q_map[0] = rsp; |
| 2630 | ha->req_q_map[0] = req; |
| 2631 | set_bit(0, ha->req_qid_map); |
| 2632 | set_bit(0, ha->rsp_qid_map); |
| 2633 | } |
| 2634 | |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2635 | /* FWI2-capable only. */ |
| 2636 | req->req_q_in = &ha->iobase->isp24.req_q_in; |
| 2637 | req->req_q_out = &ha->iobase->isp24.req_q_out; |
| 2638 | rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; |
| 2639 | rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2640 | if (ha->mqenable || IS_QLA83XX(ha)) { |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2641 | req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; |
| 2642 | req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; |
| 2643 | rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; |
| 2644 | rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 2645 | } |
| 2646 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2647 | if (IS_QLAFX00(ha)) { |
| 2648 | req->req_q_in = &ha->iobase->ispfx00.req_q_in; |
| 2649 | req->req_q_out = &ha->iobase->ispfx00.req_q_out; |
| 2650 | rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in; |
| 2651 | rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out; |
| 2652 | } |
| 2653 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2654 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2655 | req->req_q_out = &ha->iobase->isp82.req_q_out[0]; |
| 2656 | rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0]; |
| 2657 | rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0]; |
| 2658 | } |
| 2659 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2660 | ql_dbg(ql_dbg_multiq, base_vha, 0xc009, |
| 2661 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2662 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2663 | ql_dbg(ql_dbg_multiq, base_vha, 0xc00a, |
| 2664 | "req->req_q_in=%p req->req_q_out=%p " |
| 2665 | "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2666 | req->req_q_in, req->req_q_out, |
| 2667 | rsp->rsp_q_in, rsp->rsp_q_out); |
| 2668 | ql_dbg(ql_dbg_init, base_vha, 0x003e, |
| 2669 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2670 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2671 | ql_dbg(ql_dbg_init, base_vha, 0x003f, |
| 2672 | "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2673 | req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2674 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2675 | if (ha->isp_ops->initialize_adapter(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2676 | ql_log(ql_log_fatal, base_vha, 0x00d6, |
| 2677 | "Failed to initialize adapter - Adapter flags %x.\n", |
| 2678 | base_vha->device_flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2679 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2680 | if (IS_QLA82XX(ha)) { |
| 2681 | qla82xx_idc_lock(ha); |
| 2682 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2683 | QLA8XXX_DEV_FAILED); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2684 | qla82xx_idc_unlock(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2685 | ql_log(ql_log_fatal, base_vha, 0x00d7, |
| 2686 | "HW State: FAILED.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2687 | } else if (IS_QLA8044(ha)) { |
| 2688 | qla8044_idc_lock(ha); |
| 2689 | qla8044_wr_direct(base_vha, |
| 2690 | QLA8044_CRB_DEV_STATE_INDEX, |
| 2691 | QLA8XXX_DEV_FAILED); |
| 2692 | qla8044_idc_unlock(ha); |
| 2693 | ql_log(ql_log_fatal, base_vha, 0x0150, |
| 2694 | "HW State: FAILED.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2695 | } |
| 2696 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2697 | ret = -ENODEV; |
| 2698 | goto probe_failed; |
| 2699 | } |
| 2700 | |
Chad Dupuis | 3b1bef6 | 2014-02-26 04:15:04 -0500 | [diff] [blame^] | 2701 | if (IS_QLAFX00(ha)) |
| 2702 | host->can_queue = QLAFX00_MAX_CANQUEUE; |
| 2703 | else |
| 2704 | host->can_queue = req->num_outstanding_cmds - 10; |
| 2705 | |
| 2706 | ql_dbg(ql_dbg_init, base_vha, 0x0032, |
| 2707 | "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n", |
| 2708 | host->can_queue, base_vha->req, |
| 2709 | base_vha->mgmt_svr_loop_id, host->sg_tablesize); |
| 2710 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2711 | if (ha->mqenable) { |
| 2712 | if (qla25xx_setup_mode(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2713 | ql_log(ql_log_warn, base_vha, 0x00ec, |
| 2714 | "Failed to create queues, falling back to single queue mode.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2715 | goto que_init; |
| 2716 | } |
| 2717 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2718 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2719 | if (ha->flags.running_gold_fw) |
| 2720 | goto skip_dpc; |
| 2721 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2722 | /* |
| 2723 | * Startup the kernel thread for this host adapter |
| 2724 | */ |
| 2725 | ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2726 | "%s_dpc", base_vha->host_str); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2727 | if (IS_ERR(ha->dpc_thread)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2728 | ql_log(ql_log_fatal, base_vha, 0x00ed, |
| 2729 | "Failed to start DPC thread.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2730 | ret = PTR_ERR(ha->dpc_thread); |
| 2731 | goto probe_failed; |
| 2732 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2733 | ql_dbg(ql_dbg_init, base_vha, 0x00ee, |
| 2734 | "DPC thread started successfully.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2735 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2736 | /* |
| 2737 | * If we're not coming up in initiator mode, we might sit for |
| 2738 | * a while without waking up the dpc thread, which leads to a |
| 2739 | * stuck process warning. So just kick the dpc once here and |
| 2740 | * let the kthread start (and go back to sleep in qla2x00_do_dpc). |
| 2741 | */ |
| 2742 | qla2xxx_wake_dpc(base_vha); |
| 2743 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 2744 | INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error); |
| 2745 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 2746 | if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) { |
| 2747 | sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no); |
| 2748 | ha->dpc_lp_wq = create_singlethread_workqueue(wq_name); |
| 2749 | INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen); |
| 2750 | |
| 2751 | sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no); |
| 2752 | ha->dpc_hp_wq = create_singlethread_workqueue(wq_name); |
| 2753 | INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work); |
| 2754 | INIT_WORK(&ha->idc_state_handler, |
| 2755 | qla83xx_idc_state_handler_work); |
| 2756 | INIT_WORK(&ha->nic_core_unrecoverable, |
| 2757 | qla83xx_nic_core_unrecoverable_work); |
| 2758 | } |
| 2759 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2760 | skip_dpc: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2761 | list_add_tail(&base_vha->list, &ha->vp_list); |
| 2762 | base_vha->host->irq = ha->pdev->irq; |
| 2763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | /* Initialized the timer */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2765 | qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2766 | ql_dbg(ql_dbg_init, base_vha, 0x00ef, |
| 2767 | "Started qla2x00_timer with " |
| 2768 | "interval=%d.\n", WATCH_INTERVAL); |
| 2769 | ql_dbg(ql_dbg_init, base_vha, 0x00f0, |
| 2770 | "Detected hba at address=%p.\n", |
| 2771 | ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2773 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2774 | if (ha->fw_attributes & BIT_4) { |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2775 | int prot = 0, guard; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2776 | base_vha->flags.difdix_supported = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2777 | ql_dbg(ql_dbg_init, base_vha, 0x00f1, |
| 2778 | "Registering for DIF/DIX type 1 and 3 protection.\n"); |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2779 | if (ql2xenabledif == 1) |
| 2780 | prot = SHOST_DIX_TYPE0_PROTECTION; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2781 | scsi_host_set_prot(host, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2782 | prot | SHOST_DIF_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2783 | | SHOST_DIF_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2784 | | SHOST_DIF_TYPE3_PROTECTION |
| 2785 | | SHOST_DIX_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2786 | | SHOST_DIX_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2787 | | SHOST_DIX_TYPE3_PROTECTION); |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2788 | |
| 2789 | guard = SHOST_DIX_GUARD_CRC; |
| 2790 | |
| 2791 | if (IS_PI_IPGUARD_CAPABLE(ha) && |
| 2792 | (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha))) |
| 2793 | guard |= SHOST_DIX_GUARD_IP; |
| 2794 | |
| 2795 | scsi_host_set_guard(host, guard); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2796 | } else |
| 2797 | base_vha->flags.difdix_supported = 0; |
| 2798 | } |
| 2799 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2800 | ha->isp_ops->enable_intrs(ha); |
| 2801 | |
Armen Baloyan | 1fe19ee | 2013-08-27 01:37:41 -0400 | [diff] [blame] | 2802 | if (IS_QLAFX00(ha)) { |
| 2803 | ret = qlafx00_fx_disc(base_vha, |
| 2804 | &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO); |
| 2805 | host->sg_tablesize = (ha->mr.extended_io_enabled) ? |
| 2806 | QLA_SG_ALL : 128; |
| 2807 | } |
| 2808 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2809 | ret = scsi_add_host(host, &pdev->dev); |
| 2810 | if (ret) |
| 2811 | goto probe_failed; |
| 2812 | |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2813 | base_vha->flags.init_done = 1; |
| 2814 | base_vha->flags.online = 1; |
| 2815 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2816 | ql_dbg(ql_dbg_init, base_vha, 0x00f2, |
| 2817 | "Init done and hba is online.\n"); |
| 2818 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2819 | if (qla_ini_mode_enabled(base_vha)) |
| 2820 | scsi_scan_host(host); |
| 2821 | else |
| 2822 | ql_dbg(ql_dbg_init, base_vha, 0x0122, |
| 2823 | "skipping scsi_scan_host() for non-initiator port\n"); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2824 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2825 | qla2x00_alloc_sysfs_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2826 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2827 | if (IS_QLAFX00(ha)) { |
| 2828 | ret = qlafx00_fx_disc(base_vha, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2829 | &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO); |
| 2830 | |
| 2831 | /* Register system information */ |
| 2832 | ret = qlafx00_fx_disc(base_vha, |
| 2833 | &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO); |
| 2834 | } |
| 2835 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2836 | qla2x00_init_host_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2837 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2838 | qla2x00_dfs_setup(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2839 | |
Armen Baloyan | 03eb912 | 2013-10-30 03:38:22 -0400 | [diff] [blame] | 2840 | ql_log(ql_log_info, base_vha, 0x00fb, |
| 2841 | "QLogic %s - %s.\n", ha->model_number, ha->model_desc); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2842 | ql_log(ql_log_info, base_vha, 0x00fc, |
| 2843 | "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n", |
| 2844 | pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info), |
| 2845 | pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-', |
| 2846 | base_vha->host_no, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2847 | ha->isp_ops->fw_version_str(base_vha, fw_str)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2849 | qlt_add_target(ha, base_vha); |
| 2850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | return 0; |
| 2852 | |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2853 | probe_init_failed: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2854 | qla2x00_free_req_que(ha, req); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2855 | ha->req_q_map[0] = NULL; |
| 2856 | clear_bit(0, ha->req_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2857 | qla2x00_free_rsp_que(ha, rsp); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2858 | ha->rsp_q_map[0] = NULL; |
| 2859 | clear_bit(0, ha->rsp_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2860 | ha->max_req_queues = ha->max_rsp_queues = 0; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | probe_failed: |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2863 | if (base_vha->timer_active) |
| 2864 | qla2x00_stop_timer(base_vha); |
| 2865 | base_vha->flags.online = 0; |
| 2866 | if (ha->dpc_thread) { |
| 2867 | struct task_struct *t = ha->dpc_thread; |
| 2868 | |
| 2869 | ha->dpc_thread = NULL; |
| 2870 | kthread_stop(t); |
| 2871 | } |
| 2872 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2873 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2874 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2875 | scsi_host_put(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2877 | probe_hw_failed: |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2878 | if (IS_QLA82XX(ha)) { |
| 2879 | qla82xx_idc_lock(ha); |
| 2880 | qla82xx_clear_drv_active(ha); |
| 2881 | qla82xx_idc_unlock(ha); |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2882 | } |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2883 | if (IS_QLA8044(ha)) { |
| 2884 | qla8044_idc_lock(ha); |
Saurav Kashyap | c41afc9 | 2013-11-07 02:54:56 -0500 | [diff] [blame] | 2885 | qla8044_clear_drv_active(ha); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2886 | qla8044_idc_unlock(ha); |
| 2887 | } |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2888 | iospace_config_failed: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2889 | if (IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2890 | if (!ha->nx_pcibase) |
| 2891 | iounmap((device_reg_t __iomem *)ha->nx_pcibase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2892 | if (!ql2xdbwr) |
| 2893 | iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr); |
| 2894 | } else { |
| 2895 | if (ha->iobase) |
| 2896 | iounmap(ha->iobase); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2897 | if (ha->cregbase) |
| 2898 | iounmap(ha->cregbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2899 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2900 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2901 | kfree(ha); |
| 2902 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2904 | probe_out: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2905 | pci_disable_device(pdev); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2906 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 2909 | static void |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2910 | qla2x00_shutdown(struct pci_dev *pdev) |
| 2911 | { |
| 2912 | scsi_qla_host_t *vha; |
| 2913 | struct qla_hw_data *ha; |
| 2914 | |
Masanari Iida | 552f3f9 | 2013-02-08 01:57:44 -0500 | [diff] [blame] | 2915 | if (!atomic_read(&pdev->enable_cnt)) |
| 2916 | return; |
| 2917 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2918 | vha = pci_get_drvdata(pdev); |
| 2919 | ha = vha->hw; |
| 2920 | |
Armen Baloyan | 4247934 | 2013-08-27 01:37:37 -0400 | [diff] [blame] | 2921 | /* Notify ISPFX00 firmware */ |
| 2922 | if (IS_QLAFX00(ha)) |
| 2923 | qlafx00_driver_shutdown(vha, 20); |
| 2924 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2925 | /* Turn-off FCE trace */ |
| 2926 | if (ha->flags.fce_enabled) { |
| 2927 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
| 2928 | ha->flags.fce_enabled = 0; |
| 2929 | } |
| 2930 | |
| 2931 | /* Turn-off EFT trace */ |
| 2932 | if (ha->eft) |
| 2933 | qla2x00_disable_eft_trace(vha); |
| 2934 | |
| 2935 | /* Stop currently executing firmware. */ |
| 2936 | qla2x00_try_to_stop_firmware(vha); |
| 2937 | |
| 2938 | /* Turn adapter off line */ |
| 2939 | vha->flags.online = 0; |
| 2940 | |
| 2941 | /* turn-off interrupts on the card */ |
| 2942 | if (ha->interrupts_on) { |
| 2943 | vha->flags.init_done = 0; |
| 2944 | ha->isp_ops->disable_intrs(ha); |
| 2945 | } |
| 2946 | |
| 2947 | qla2x00_free_irqs(vha); |
| 2948 | |
| 2949 | qla2x00_free_fw_dump(ha); |
| 2950 | } |
| 2951 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2952 | /* Deletes all the virtual ports for a given ha */ |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2953 | static void |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2954 | qla2x00_delete_all_vps(struct qla_hw_data *ha, scsi_qla_host_t *base_vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | { |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2956 | struct Scsi_Host *scsi_host; |
| 2957 | scsi_qla_host_t *vha; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2958 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2960 | mutex_lock(&ha->vport_lock); |
| 2961 | while (ha->cur_vport_count) { |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2962 | spin_lock_irqsave(&ha->vport_slock, flags); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2963 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2964 | BUG_ON(base_vha->list.next == &ha->vp_list); |
| 2965 | /* This assumes first entry in ha->vp_list is always base vha */ |
| 2966 | vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2967 | scsi_host = scsi_host_get(vha->host); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2968 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2969 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
| 2970 | mutex_unlock(&ha->vport_lock); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2971 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2972 | fc_vport_terminate(vha->fc_vport); |
| 2973 | scsi_host_put(vha->host); |
| 2974 | |
| 2975 | mutex_lock(&ha->vport_lock); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2976 | } |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2977 | mutex_unlock(&ha->vport_lock); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2978 | } |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 2979 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2980 | /* Stops all deferred work threads */ |
| 2981 | static void |
| 2982 | qla2x00_destroy_deferred_work(struct qla_hw_data *ha) |
| 2983 | { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2984 | /* Flush the work queue and remove it */ |
| 2985 | if (ha->wq) { |
| 2986 | flush_workqueue(ha->wq); |
| 2987 | destroy_workqueue(ha->wq); |
| 2988 | ha->wq = NULL; |
| 2989 | } |
| 2990 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2991 | /* Cancel all work and destroy DPC workqueues */ |
| 2992 | if (ha->dpc_lp_wq) { |
| 2993 | cancel_work_sync(&ha->idc_aen); |
| 2994 | destroy_workqueue(ha->dpc_lp_wq); |
| 2995 | ha->dpc_lp_wq = NULL; |
| 2996 | } |
| 2997 | |
| 2998 | if (ha->dpc_hp_wq) { |
| 2999 | cancel_work_sync(&ha->nic_core_reset); |
| 3000 | cancel_work_sync(&ha->idc_state_handler); |
| 3001 | cancel_work_sync(&ha->nic_core_unrecoverable); |
| 3002 | destroy_workqueue(ha->dpc_hp_wq); |
| 3003 | ha->dpc_hp_wq = NULL; |
| 3004 | } |
| 3005 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3006 | /* Kill the kernel thread for this host */ |
| 3007 | if (ha->dpc_thread) { |
| 3008 | struct task_struct *t = ha->dpc_thread; |
| 3009 | |
| 3010 | /* |
| 3011 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 3012 | * so we need to zero it out. |
| 3013 | */ |
| 3014 | ha->dpc_thread = NULL; |
| 3015 | kthread_stop(t); |
| 3016 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3017 | } |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3018 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3019 | static void |
| 3020 | qla2x00_unmap_iobases(struct qla_hw_data *ha) |
| 3021 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3022 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | b963752 | 2010-05-28 15:08:15 -0700 | [diff] [blame] | 3023 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3024 | iounmap((device_reg_t __iomem *)ha->nx_pcibase); |
| 3025 | if (!ql2xdbwr) |
| 3026 | iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr); |
| 3027 | } else { |
| 3028 | if (ha->iobase) |
| 3029 | iounmap(ha->iobase); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3030 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3031 | if (ha->cregbase) |
| 3032 | iounmap(ha->cregbase); |
| 3033 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3034 | if (ha->mqiobase) |
| 3035 | iounmap(ha->mqiobase); |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3036 | |
| 3037 | if (IS_QLA83XX(ha) && ha->msixbase) |
| 3038 | iounmap(ha->msixbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3039 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3040 | } |
| 3041 | |
| 3042 | static void |
| 3043 | qla2x00_clear_drv_active(scsi_qla_host_t *vha) |
| 3044 | { |
| 3045 | struct qla_hw_data *ha = vha->hw; |
| 3046 | |
| 3047 | if (IS_QLA8044(ha)) { |
| 3048 | qla8044_idc_lock(ha); |
Saurav Kashyap | c41afc9 | 2013-11-07 02:54:56 -0500 | [diff] [blame] | 3049 | qla8044_clear_drv_active(ha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3050 | qla8044_idc_unlock(ha); |
| 3051 | } else if (IS_QLA82XX(ha)) { |
| 3052 | qla82xx_idc_lock(ha); |
| 3053 | qla82xx_clear_drv_active(ha); |
| 3054 | qla82xx_idc_unlock(ha); |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | static void |
| 3059 | qla2x00_remove_one(struct pci_dev *pdev) |
| 3060 | { |
| 3061 | scsi_qla_host_t *base_vha; |
| 3062 | struct qla_hw_data *ha; |
| 3063 | |
| 3064 | /* |
| 3065 | * If the PCI device is disabled that means that probe failed and any |
| 3066 | * resources should be have cleaned up on probe exit. |
| 3067 | */ |
| 3068 | if (!atomic_read(&pdev->enable_cnt)) |
| 3069 | return; |
| 3070 | |
| 3071 | base_vha = pci_get_drvdata(pdev); |
| 3072 | ha = base_vha->hw; |
| 3073 | |
| 3074 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 3075 | |
| 3076 | if (IS_QLAFX00(ha)) |
| 3077 | qlafx00_driver_shutdown(base_vha, 20); |
| 3078 | |
| 3079 | qla2x00_delete_all_vps(ha, base_vha); |
| 3080 | |
| 3081 | if (IS_QLA8031(ha)) { |
| 3082 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07e, |
| 3083 | "Clearing fcoe driver presence.\n"); |
| 3084 | if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS) |
| 3085 | ql_dbg(ql_dbg_p3p, base_vha, 0xb079, |
| 3086 | "Error while clearing DRV-Presence.\n"); |
| 3087 | } |
| 3088 | |
| 3089 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 3090 | |
| 3091 | qla2x00_dfs_remove(base_vha); |
| 3092 | |
| 3093 | qla84xx_put_chip(base_vha); |
| 3094 | |
| 3095 | /* Disable timer */ |
| 3096 | if (base_vha->timer_active) |
| 3097 | qla2x00_stop_timer(base_vha); |
| 3098 | |
| 3099 | base_vha->flags.online = 0; |
| 3100 | |
| 3101 | qla2x00_destroy_deferred_work(ha); |
| 3102 | |
| 3103 | qlt_remove_target(ha, base_vha); |
| 3104 | |
| 3105 | qla2x00_free_sysfs_attr(base_vha, true); |
| 3106 | |
| 3107 | fc_remove_host(base_vha->host); |
| 3108 | |
| 3109 | scsi_remove_host(base_vha->host); |
| 3110 | |
| 3111 | qla2x00_free_device(base_vha); |
| 3112 | |
| 3113 | scsi_host_put(base_vha->host); |
| 3114 | |
| 3115 | qla2x00_clear_drv_active(base_vha); |
| 3116 | |
| 3117 | qla2x00_unmap_iobases(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3118 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3119 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 3120 | kfree(ha); |
| 3121 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3123 | pci_disable_pcie_error_reporting(pdev); |
| 3124 | |
Bernhard Walle | 665db93 | 2007-03-28 00:49:49 +0200 | [diff] [blame] | 3125 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | |
| 3128 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3129 | qla2x00_free_device(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3131 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3132 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3133 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
| 3134 | |
| 3135 | /* Disable timer */ |
| 3136 | if (vha->timer_active) |
| 3137 | qla2x00_stop_timer(vha); |
| 3138 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 3139 | qla25xx_delete_queues(vha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3140 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3141 | if (ha->flags.fce_enabled) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3142 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3143 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3144 | if (ha->eft) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3145 | qla2x00_disable_eft_trace(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3146 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3147 | /* Stop currently executing firmware. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3148 | qla2x00_try_to_stop_firmware(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3150 | vha->flags.online = 0; |
| 3151 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3152 | /* turn-off interrupts on the card */ |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3153 | if (ha->interrupts_on) { |
| 3154 | vha->flags.init_done = 0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 3155 | ha->isp_ops->disable_intrs(ha); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3156 | } |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3157 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3158 | qla2x00_free_irqs(vha); |
| 3159 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3160 | qla2x00_free_fcports(vha); |
| 3161 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3162 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3163 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 3164 | qla82xx_md_free(vha); |
| 3165 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3166 | qla2x00_free_queues(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3167 | } |
| 3168 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3169 | void qla2x00_free_fcports(struct scsi_qla_host *vha) |
| 3170 | { |
| 3171 | fc_port_t *fcport, *tfcport; |
| 3172 | |
| 3173 | list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) { |
| 3174 | list_del(&fcport->list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3175 | qla2x00_clear_loop_id(fcport); |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3176 | kfree(fcport); |
| 3177 | fcport = NULL; |
| 3178 | } |
| 3179 | } |
| 3180 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3181 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3182 | 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] | 3183 | int defer) |
| 3184 | { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3185 | struct fc_rport *rport; |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3186 | scsi_qla_host_t *base_vha; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3187 | unsigned long flags; |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3188 | |
| 3189 | if (!fcport->rport) |
| 3190 | return; |
| 3191 | |
| 3192 | rport = fcport->rport; |
| 3193 | if (defer) { |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3194 | base_vha = pci_get_drvdata(vha->hw->pdev); |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3195 | spin_lock_irqsave(vha->host->host_lock, flags); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3196 | fcport->drport = rport; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3197 | spin_unlock_irqrestore(vha->host->host_lock, flags); |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3198 | set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
| 3199 | qla2xxx_wake_dpc(base_vha); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3200 | } else { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3201 | fc_remote_port_delete(rport); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3202 | qlt_fc_port_deleted(vha, fcport); |
| 3203 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3204 | } |
| 3205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
| 3208 | * |
| 3209 | * Input: ha = adapter block pointer. fcport = port structure pointer. |
| 3210 | * |
| 3211 | * Return: None. |
| 3212 | * |
| 3213 | * Context: |
| 3214 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3215 | 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] | 3216 | int do_login, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3218 | if (IS_QLAFX00(vha->hw)) { |
| 3219 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
| 3220 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3221 | return; |
| 3222 | } |
| 3223 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3224 | if (atomic_read(&fcport->state) == FCS_ONLINE && |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3225 | vha->vp_idx == fcport->vha->vp_idx) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3226 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3227 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3228 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 3229 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | * We may need to retry the login, so don't change the state of the |
| 3231 | * port but do the retries. |
| 3232 | */ |
| 3233 | if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3234 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | |
| 3236 | if (!do_login) |
| 3237 | return; |
| 3238 | |
| 3239 | if (fcport->login_retry == 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3240 | fcport->login_retry = vha->hw->login_retry_count; |
| 3241 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3243 | ql_dbg(ql_dbg_disc, vha, 0x2067, |
Oleksandr Khoshaba | 7b83355 | 2013-08-27 01:37:27 -0400 | [diff] [blame] | 3244 | "Port login retry %8phN, id = 0x%04x retry cnt=%d.\n", |
| 3245 | fcport->port_name, fcport->loop_id, fcport->login_retry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3246 | } |
| 3247 | } |
| 3248 | |
| 3249 | /* |
| 3250 | * qla2x00_mark_all_devices_lost |
| 3251 | * Updates fcport state when device goes offline. |
| 3252 | * |
| 3253 | * Input: |
| 3254 | * ha = adapter block pointer. |
| 3255 | * fcport = port structure pointer. |
| 3256 | * |
| 3257 | * Return: |
| 3258 | * None. |
| 3259 | * |
| 3260 | * Context: |
| 3261 | */ |
| 3262 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3263 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | { |
| 3265 | fc_port_t *fcport; |
| 3266 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3267 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3268 | if (vha->vp_idx != 0 && vha->vp_idx != fcport->vha->vp_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3269 | continue; |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | /* |
| 3272 | * No point in marking the device as lost, if the device is |
| 3273 | * already DEAD. |
| 3274 | */ |
| 3275 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
| 3276 | continue; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3277 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3278 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3279 | if (defer) |
| 3280 | qla2x00_schedule_rport_del(vha, fcport, defer); |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3281 | else if (vha->vp_idx == fcport->vha->vp_idx) |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3282 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3283 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | } |
| 3285 | } |
| 3286 | |
| 3287 | /* |
| 3288 | * qla2x00_mem_alloc |
| 3289 | * Allocates adapter memory. |
| 3290 | * |
| 3291 | * Returns: |
| 3292 | * 0 = success. |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3293 | * !0 = failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3295 | static int |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3296 | qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, |
| 3297 | struct req_que **req, struct rsp_que **rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | { |
| 3299 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3301 | 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] | 3302 | &ha->init_cb_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3303 | if (!ha->init_cb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3304 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3306 | if (qlt_mem_alloc(ha) < 0) |
| 3307 | goto fail_free_init_cb; |
| 3308 | |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3309 | ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, |
| 3310 | qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3311 | if (!ha->gid_list) |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3312 | goto fail_free_tgt_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3314 | ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); |
| 3315 | if (!ha->srb_mempool) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3316 | goto fail_free_gid_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3318 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3319 | /* Allocate cache for CT6 Ctx. */ |
| 3320 | if (!ctx_cachep) { |
| 3321 | ctx_cachep = kmem_cache_create("qla2xxx_ctx", |
| 3322 | sizeof(struct ct6_dsd), 0, |
| 3323 | SLAB_HWCACHE_ALIGN, NULL); |
| 3324 | if (!ctx_cachep) |
| 3325 | goto fail_free_gid_list; |
| 3326 | } |
| 3327 | ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ, |
| 3328 | ctx_cachep); |
| 3329 | if (!ha->ctx_mempool) |
| 3330 | goto fail_free_srb_mempool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3331 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021, |
| 3332 | "ctx_cachep=%p ctx_mempool=%p.\n", |
| 3333 | ctx_cachep, ha->ctx_mempool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3334 | } |
| 3335 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3336 | /* Get memory for cached NVRAM */ |
| 3337 | ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); |
| 3338 | if (!ha->nvram) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3339 | goto fail_free_ctx_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3341 | snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, |
| 3342 | ha->pdev->device); |
| 3343 | ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3344 | DMA_POOL_SIZE, 8, 0); |
| 3345 | if (!ha->s_dma_pool) |
| 3346 | goto fail_free_nvram; |
| 3347 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3348 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022, |
| 3349 | "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n", |
| 3350 | ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool); |
| 3351 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3352 | if (IS_P3P_TYPE(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3353 | ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3354 | DSD_LIST_DMA_POOL_SIZE, 8, 0); |
| 3355 | if (!ha->dl_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3356 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0023, |
| 3357 | "Failed to allocate memory for dl_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3358 | goto fail_s_dma_pool; |
| 3359 | } |
| 3360 | |
| 3361 | ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3362 | FCP_CMND_DMA_POOL_SIZE, 8, 0); |
| 3363 | if (!ha->fcp_cmnd_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3364 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0024, |
| 3365 | "Failed to allocate memory for fcp_cmnd_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3366 | goto fail_dl_dma_pool; |
| 3367 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3368 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025, |
| 3369 | "dl_dma_pool=%p fcp_cmnd_dma_pool=%p.\n", |
| 3370 | ha->dl_dma_pool, ha->fcp_cmnd_dma_pool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3371 | } |
| 3372 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3373 | /* Allocate memory for SNS commands */ |
| 3374 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3375 | /* Get consistent memory allocated for SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3376 | ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3377 | sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3378 | if (!ha->sns_cmd) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3379 | goto fail_dma_pool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3380 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 3381 | "sns_cmd: %p.\n", ha->sns_cmd); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3382 | } else { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3383 | /* Get consistent memory allocated for MS IOCB */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3384 | ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3385 | &ha->ms_iocb_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3386 | if (!ha->ms_iocb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3387 | goto fail_dma_pool; |
| 3388 | /* Get consistent memory allocated for CT SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3389 | ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3390 | sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3391 | if (!ha->ct_sns) |
| 3392 | goto fail_free_ms_iocb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3393 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027, |
| 3394 | "ms_iocb=%p ct_sns=%p.\n", |
| 3395 | ha->ms_iocb, ha->ct_sns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | } |
| 3397 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3398 | /* Allocate memory for request ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3399 | *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); |
| 3400 | if (!*req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3401 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0028, |
| 3402 | "Failed to allocate memory for req.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3403 | goto fail_req; |
| 3404 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3405 | (*req)->length = req_len; |
| 3406 | (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3407 | ((*req)->length + 1) * sizeof(request_t), |
| 3408 | &(*req)->dma, GFP_KERNEL); |
| 3409 | if (!(*req)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3410 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0029, |
| 3411 | "Failed to allocate memory for req_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3412 | goto fail_req_ring; |
| 3413 | } |
| 3414 | /* Allocate memory for response ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3415 | *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); |
| 3416 | if (!*rsp) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3417 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002a, |
| 3418 | "Failed to allocate memory for rsp.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3419 | goto fail_rsp; |
| 3420 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3421 | (*rsp)->hw = ha; |
| 3422 | (*rsp)->length = rsp_len; |
| 3423 | (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3424 | ((*rsp)->length + 1) * sizeof(response_t), |
| 3425 | &(*rsp)->dma, GFP_KERNEL); |
| 3426 | if (!(*rsp)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3427 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002b, |
| 3428 | "Failed to allocate memory for rsp_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3429 | goto fail_rsp_ring; |
| 3430 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3431 | (*req)->rsp = *rsp; |
| 3432 | (*rsp)->req = *req; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3433 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c, |
| 3434 | "req=%p req->length=%d req->ring=%p rsp=%p " |
| 3435 | "rsp->length=%d rsp->ring=%p.\n", |
| 3436 | *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length, |
| 3437 | (*rsp)->ring); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3438 | /* Allocate memory for NVRAM data for vports */ |
| 3439 | if (ha->nvram_npiv_size) { |
| 3440 | ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) * |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3441 | ha->nvram_npiv_size, GFP_KERNEL); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3442 | if (!ha->npiv_info) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3443 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002d, |
| 3444 | "Failed to allocate memory for npiv_info.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3445 | goto fail_npiv_info; |
| 3446 | } |
| 3447 | } else |
| 3448 | ha->npiv_info = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3449 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3450 | /* Get consistent memory allocated for EX-INIT-CB. */ |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3451 | if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha)) { |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3452 | ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3453 | &ha->ex_init_cb_dma); |
| 3454 | if (!ha->ex_init_cb) |
| 3455 | goto fail_ex_init_cb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3456 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e, |
| 3457 | "ex_init_cb=%p.\n", ha->ex_init_cb); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3458 | } |
| 3459 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3460 | INIT_LIST_HEAD(&ha->gbl_dsd_list); |
| 3461 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3462 | /* Get consistent memory allocated for Async Port-Database. */ |
| 3463 | if (!IS_FWI2_CAPABLE(ha)) { |
| 3464 | ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3465 | &ha->async_pd_dma); |
| 3466 | if (!ha->async_pd) |
| 3467 | goto fail_async_pd; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3468 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f, |
| 3469 | "async_pd=%p.\n", ha->async_pd); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3470 | } |
| 3471 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3472 | INIT_LIST_HEAD(&ha->vp_list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3473 | |
| 3474 | /* Allocate memory for our loop_id bitmap */ |
| 3475 | ha->loop_id_map = kzalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE) * sizeof(long), |
| 3476 | GFP_KERNEL); |
| 3477 | if (!ha->loop_id_map) |
| 3478 | goto fail_async_pd; |
| 3479 | else { |
| 3480 | qla2x00_set_reserved_loop_ids(ha); |
| 3481 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123, |
| 3482 | "loop_id_map=%p. \n", ha->loop_id_map); |
| 3483 | } |
| 3484 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3485 | return 1; |
| 3486 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3487 | fail_async_pd: |
| 3488 | 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] | 3489 | fail_ex_init_cb: |
| 3490 | kfree(ha->npiv_info); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3491 | fail_npiv_info: |
| 3492 | dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * |
| 3493 | sizeof(response_t), (*rsp)->ring, (*rsp)->dma); |
| 3494 | (*rsp)->ring = NULL; |
| 3495 | (*rsp)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3496 | fail_rsp_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3497 | kfree(*rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3498 | fail_rsp: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3499 | dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * |
| 3500 | sizeof(request_t), (*req)->ring, (*req)->dma); |
| 3501 | (*req)->ring = NULL; |
| 3502 | (*req)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3503 | fail_req_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3504 | kfree(*req); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3505 | fail_req: |
| 3506 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
| 3507 | ha->ct_sns, ha->ct_sns_dma); |
| 3508 | ha->ct_sns = NULL; |
| 3509 | ha->ct_sns_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3510 | fail_free_ms_iocb: |
| 3511 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3512 | ha->ms_iocb = NULL; |
| 3513 | ha->ms_iocb_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3514 | fail_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3515 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3516 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3517 | ha->fcp_cmnd_dma_pool = NULL; |
| 3518 | } |
| 3519 | fail_dl_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3520 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3521 | dma_pool_destroy(ha->dl_dma_pool); |
| 3522 | ha->dl_dma_pool = NULL; |
| 3523 | } |
| 3524 | fail_s_dma_pool: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3525 | dma_pool_destroy(ha->s_dma_pool); |
| 3526 | ha->s_dma_pool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3527 | fail_free_nvram: |
| 3528 | kfree(ha->nvram); |
| 3529 | ha->nvram = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3530 | fail_free_ctx_mempool: |
| 3531 | mempool_destroy(ha->ctx_mempool); |
| 3532 | ha->ctx_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3533 | fail_free_srb_mempool: |
| 3534 | mempool_destroy(ha->srb_mempool); |
| 3535 | ha->srb_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3536 | fail_free_gid_list: |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3537 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3538 | ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3539 | ha->gid_list_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3540 | ha->gid_list = NULL; |
| 3541 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3542 | fail_free_tgt_mem: |
| 3543 | qlt_mem_free(ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3544 | fail_free_init_cb: |
| 3545 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, |
| 3546 | ha->init_cb_dma); |
| 3547 | ha->init_cb = NULL; |
| 3548 | ha->init_cb_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3549 | fail: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3550 | ql_log(ql_log_fatal, NULL, 0x0030, |
| 3551 | "Memory allocation failure.\n"); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3552 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | } |
| 3554 | |
| 3555 | /* |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3556 | * qla2x00_free_fw_dump |
| 3557 | * Frees fw dump stuff. |
| 3558 | * |
| 3559 | * Input: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3560 | * ha = adapter block pointer |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3561 | */ |
| 3562 | static void |
| 3563 | qla2x00_free_fw_dump(struct qla_hw_data *ha) |
| 3564 | { |
| 3565 | if (ha->fce) |
| 3566 | dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce, |
| 3567 | ha->fce_dma); |
| 3568 | |
| 3569 | if (ha->fw_dump) { |
| 3570 | if (ha->eft) |
| 3571 | dma_free_coherent(&ha->pdev->dev, |
| 3572 | ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma); |
| 3573 | vfree(ha->fw_dump); |
| 3574 | } |
| 3575 | ha->fce = NULL; |
| 3576 | ha->fce_dma = 0; |
| 3577 | ha->eft = NULL; |
| 3578 | ha->eft_dma = 0; |
| 3579 | ha->fw_dump = NULL; |
| 3580 | ha->fw_dumped = 0; |
| 3581 | ha->fw_dump_reading = 0; |
| 3582 | } |
| 3583 | |
| 3584 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | * qla2x00_mem_free |
| 3586 | * Frees all adapter allocated memory. |
| 3587 | * |
| 3588 | * Input: |
| 3589 | * ha = adapter block pointer. |
| 3590 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 3591 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3592 | qla2x00_mem_free(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | { |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3594 | qla2x00_free_fw_dump(ha); |
| 3595 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 3596 | if (ha->mctp_dump) |
| 3597 | dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump, |
| 3598 | ha->mctp_dump_dma); |
| 3599 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3600 | if (ha->srb_mempool) |
| 3601 | mempool_destroy(ha->srb_mempool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 3603 | if (ha->dcbx_tlv) |
| 3604 | dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, |
| 3605 | ha->dcbx_tlv, ha->dcbx_tlv_dma); |
| 3606 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 3607 | if (ha->xgmac_data) |
| 3608 | dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 3609 | ha->xgmac_data, ha->xgmac_data_dma); |
| 3610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3611 | if (ha->sns_cmd) |
| 3612 | dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3613 | ha->sns_cmd, ha->sns_cmd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | |
| 3615 | if (ha->ct_sns) |
| 3616 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3617 | ha->ct_sns, ha->ct_sns_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 3619 | if (ha->sfp_data) |
| 3620 | dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma); |
| 3621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | if (ha->ms_iocb) |
| 3623 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3624 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3625 | if (ha->ex_init_cb) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3626 | dma_pool_free(ha->s_dma_pool, |
| 3627 | ha->ex_init_cb, ha->ex_init_cb_dma); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3628 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3629 | if (ha->async_pd) |
| 3630 | dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); |
| 3631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | if (ha->s_dma_pool) |
| 3633 | dma_pool_destroy(ha->s_dma_pool); |
| 3634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3635 | if (ha->gid_list) |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3636 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3637 | ha->gid_list, ha->gid_list_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3639 | if (IS_QLA82XX(ha)) { |
| 3640 | if (!list_empty(&ha->gbl_dsd_list)) { |
| 3641 | struct dsd_dma *dsd_ptr, *tdsd_ptr; |
| 3642 | |
| 3643 | /* clean up allocated prev pool */ |
| 3644 | list_for_each_entry_safe(dsd_ptr, |
| 3645 | tdsd_ptr, &ha->gbl_dsd_list, list) { |
| 3646 | dma_pool_free(ha->dl_dma_pool, |
| 3647 | dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma); |
| 3648 | list_del(&dsd_ptr->list); |
| 3649 | kfree(dsd_ptr); |
| 3650 | } |
| 3651 | } |
| 3652 | } |
| 3653 | |
| 3654 | if (ha->dl_dma_pool) |
| 3655 | dma_pool_destroy(ha->dl_dma_pool); |
| 3656 | |
| 3657 | if (ha->fcp_cmnd_dma_pool) |
| 3658 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3659 | |
| 3660 | if (ha->ctx_mempool) |
| 3661 | mempool_destroy(ha->ctx_mempool); |
| 3662 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3663 | qlt_mem_free(ha); |
| 3664 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3665 | if (ha->init_cb) |
| 3666 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3667 | ha->init_cb, ha->init_cb_dma); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3668 | vfree(ha->optrom_buffer); |
| 3669 | kfree(ha->nvram); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3670 | kfree(ha->npiv_info); |
Andrew Vasquez | 7a67735 | 2012-02-09 11:15:56 -0800 | [diff] [blame] | 3671 | kfree(ha->swl); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3672 | kfree(ha->loop_id_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3673 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3674 | ha->srb_mempool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3675 | ha->ctx_mempool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3676 | ha->sns_cmd = NULL; |
| 3677 | ha->sns_cmd_dma = 0; |
| 3678 | ha->ct_sns = NULL; |
| 3679 | ha->ct_sns_dma = 0; |
| 3680 | ha->ms_iocb = NULL; |
| 3681 | ha->ms_iocb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | ha->init_cb = NULL; |
| 3683 | ha->init_cb_dma = 0; |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3684 | ha->ex_init_cb = NULL; |
| 3685 | ha->ex_init_cb_dma = 0; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3686 | ha->async_pd = NULL; |
| 3687 | ha->async_pd_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3688 | |
| 3689 | ha->s_dma_pool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3690 | ha->dl_dma_pool = NULL; |
| 3691 | ha->fcp_cmnd_dma_pool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | ha->gid_list = NULL; |
| 3694 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3695 | |
| 3696 | ha->tgt.atio_ring = NULL; |
| 3697 | ha->tgt.atio_dma = 0; |
| 3698 | ha->tgt.tgt_vp_map = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3699 | } |
| 3700 | |
| 3701 | struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, |
| 3702 | struct qla_hw_data *ha) |
| 3703 | { |
| 3704 | struct Scsi_Host *host; |
| 3705 | struct scsi_qla_host *vha = NULL; |
| 3706 | |
| 3707 | host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); |
| 3708 | if (host == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3709 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0107, |
| 3710 | "Failed to allocate host from the scsi layer, aborting.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3711 | goto fail; |
| 3712 | } |
| 3713 | |
| 3714 | /* Clear our data area */ |
| 3715 | vha = shost_priv(host); |
| 3716 | memset(vha, 0, sizeof(scsi_qla_host_t)); |
| 3717 | |
| 3718 | vha->host = host; |
| 3719 | vha->host_no = host->host_no; |
| 3720 | vha->hw = ha; |
| 3721 | |
| 3722 | INIT_LIST_HEAD(&vha->vp_fcports); |
| 3723 | INIT_LIST_HEAD(&vha->work_list); |
| 3724 | INIT_LIST_HEAD(&vha->list); |
| 3725 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3726 | spin_lock_init(&vha->work_lock); |
| 3727 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3728 | sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3729 | ql_dbg(ql_dbg_init, vha, 0x0041, |
| 3730 | "Allocated the host=%p hw=%p vha=%p dev_name=%s", |
| 3731 | vha->host, vha->hw, vha, |
| 3732 | dev_name(&(ha->pdev->dev))); |
| 3733 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3734 | return vha; |
| 3735 | |
| 3736 | fail: |
| 3737 | return vha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | } |
| 3739 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3740 | static struct qla_work_evt * |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3741 | 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] | 3742 | { |
| 3743 | struct qla_work_evt *e; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3744 | uint8_t bail; |
| 3745 | |
| 3746 | QLA_VHA_MARK_BUSY(vha, bail); |
| 3747 | if (bail) |
| 3748 | return NULL; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3749 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3750 | e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3751 | if (!e) { |
| 3752 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3753 | return NULL; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3754 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3755 | |
| 3756 | INIT_LIST_HEAD(&e->list); |
| 3757 | e->type = type; |
| 3758 | e->flags = QLA_EVT_FLAG_FREE; |
| 3759 | return e; |
| 3760 | } |
| 3761 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3762 | static int |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3763 | 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] | 3764 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3765 | unsigned long flags; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3766 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3767 | spin_lock_irqsave(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3768 | list_add_tail(&e->list, &vha->work_list); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3769 | spin_unlock_irqrestore(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3770 | qla2xxx_wake_dpc(vha); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3771 | |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3772 | return QLA_SUCCESS; |
| 3773 | } |
| 3774 | |
| 3775 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3776 | 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] | 3777 | u32 data) |
| 3778 | { |
| 3779 | struct qla_work_evt *e; |
| 3780 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3781 | e = qla2x00_alloc_work(vha, QLA_EVT_AEN); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3782 | if (!e) |
| 3783 | return QLA_FUNCTION_FAILED; |
| 3784 | |
| 3785 | e->u.aen.code = code; |
| 3786 | e->u.aen.data = data; |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3787 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3788 | } |
| 3789 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3790 | int |
| 3791 | qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) |
| 3792 | { |
| 3793 | struct qla_work_evt *e; |
| 3794 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3795 | e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3796 | if (!e) |
| 3797 | return QLA_FUNCTION_FAILED; |
| 3798 | |
| 3799 | 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] | 3800 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3801 | } |
| 3802 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3803 | #define qla2x00_post_async_work(name, type) \ |
| 3804 | int qla2x00_post_async_##name##_work( \ |
| 3805 | struct scsi_qla_host *vha, \ |
| 3806 | fc_port_t *fcport, uint16_t *data) \ |
| 3807 | { \ |
| 3808 | struct qla_work_evt *e; \ |
| 3809 | \ |
| 3810 | e = qla2x00_alloc_work(vha, type); \ |
| 3811 | if (!e) \ |
| 3812 | return QLA_FUNCTION_FAILED; \ |
| 3813 | \ |
| 3814 | e->u.logio.fcport = fcport; \ |
| 3815 | if (data) { \ |
| 3816 | e->u.logio.data[0] = data[0]; \ |
| 3817 | e->u.logio.data[1] = data[1]; \ |
| 3818 | } \ |
| 3819 | return qla2x00_post_work(vha, e); \ |
| 3820 | } |
| 3821 | |
| 3822 | qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN); |
| 3823 | qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE); |
| 3824 | qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT); |
| 3825 | qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3826 | qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC); |
| 3827 | qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3828 | |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 3829 | int |
| 3830 | qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code) |
| 3831 | { |
| 3832 | struct qla_work_evt *e; |
| 3833 | |
| 3834 | e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT); |
| 3835 | if (!e) |
| 3836 | return QLA_FUNCTION_FAILED; |
| 3837 | |
| 3838 | e->u.uevent.code = code; |
| 3839 | return qla2x00_post_work(vha, e); |
| 3840 | } |
| 3841 | |
| 3842 | static void |
| 3843 | qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code) |
| 3844 | { |
| 3845 | char event_string[40]; |
| 3846 | char *envp[] = { event_string, NULL }; |
| 3847 | |
| 3848 | switch (code) { |
| 3849 | case QLA_UEVENT_CODE_FW_DUMP: |
| 3850 | snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld", |
| 3851 | vha->host_no); |
| 3852 | break; |
| 3853 | default: |
| 3854 | /* do nothing */ |
| 3855 | break; |
| 3856 | } |
| 3857 | kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp); |
| 3858 | } |
| 3859 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3860 | int |
| 3861 | qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode, |
| 3862 | uint32_t *data, int cnt) |
| 3863 | { |
| 3864 | struct qla_work_evt *e; |
| 3865 | |
| 3866 | e = qla2x00_alloc_work(vha, QLA_EVT_AENFX); |
| 3867 | if (!e) |
| 3868 | return QLA_FUNCTION_FAILED; |
| 3869 | |
| 3870 | e->u.aenfx.evtcode = evtcode; |
| 3871 | e->u.aenfx.count = cnt; |
| 3872 | memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt); |
| 3873 | return qla2x00_post_work(vha, e); |
| 3874 | } |
| 3875 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3876 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3877 | qla2x00_do_work(struct scsi_qla_host *vha) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3878 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3879 | struct qla_work_evt *e, *tmp; |
| 3880 | unsigned long flags; |
| 3881 | LIST_HEAD(work); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3882 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3883 | spin_lock_irqsave(&vha->work_lock, flags); |
| 3884 | list_splice_init(&vha->work_list, &work); |
| 3885 | spin_unlock_irqrestore(&vha->work_lock, flags); |
| 3886 | |
| 3887 | list_for_each_entry_safe(e, tmp, &work, list) { |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3888 | list_del_init(&e->list); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3889 | |
| 3890 | switch (e->type) { |
| 3891 | case QLA_EVT_AEN: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3892 | fc_host_post_event(vha->host, fc_get_event_number(), |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3893 | e->u.aen.code, e->u.aen.data); |
| 3894 | break; |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3895 | case QLA_EVT_IDC_ACK: |
| 3896 | qla81xx_idc_ack(vha, e->u.idc_ack.mb); |
| 3897 | break; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3898 | case QLA_EVT_ASYNC_LOGIN: |
| 3899 | qla2x00_async_login(vha, e->u.logio.fcport, |
| 3900 | e->u.logio.data); |
| 3901 | break; |
| 3902 | case QLA_EVT_ASYNC_LOGIN_DONE: |
| 3903 | qla2x00_async_login_done(vha, e->u.logio.fcport, |
| 3904 | e->u.logio.data); |
| 3905 | break; |
| 3906 | case QLA_EVT_ASYNC_LOGOUT: |
| 3907 | qla2x00_async_logout(vha, e->u.logio.fcport); |
| 3908 | break; |
| 3909 | case QLA_EVT_ASYNC_LOGOUT_DONE: |
| 3910 | qla2x00_async_logout_done(vha, e->u.logio.fcport, |
| 3911 | e->u.logio.data); |
| 3912 | break; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3913 | case QLA_EVT_ASYNC_ADISC: |
| 3914 | qla2x00_async_adisc(vha, e->u.logio.fcport, |
| 3915 | e->u.logio.data); |
| 3916 | break; |
| 3917 | case QLA_EVT_ASYNC_ADISC_DONE: |
| 3918 | qla2x00_async_adisc_done(vha, e->u.logio.fcport, |
| 3919 | e->u.logio.data); |
| 3920 | break; |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 3921 | case QLA_EVT_UEVENT: |
| 3922 | qla2x00_uevent_emit(vha, e->u.uevent.code); |
| 3923 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3924 | case QLA_EVT_AENFX: |
| 3925 | qlafx00_process_aen(vha, e); |
| 3926 | break; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3927 | } |
| 3928 | if (e->flags & QLA_EVT_FLAG_FREE) |
| 3929 | kfree(e); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3930 | |
| 3931 | /* For each work completed decrement vha ref count */ |
| 3932 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3933 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3934 | } |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3935 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3936 | /* Relogins all the fcports of a vport |
| 3937 | * Context: dpc thread |
| 3938 | */ |
| 3939 | void qla2x00_relogin(struct scsi_qla_host *vha) |
| 3940 | { |
| 3941 | fc_port_t *fcport; |
Andrew Vasquez | c6b2fca | 2009-03-05 11:07:03 -0800 | [diff] [blame] | 3942 | int status; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3943 | uint16_t next_loopid = 0; |
| 3944 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3945 | uint16_t data[2]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3946 | |
| 3947 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 3948 | /* |
| 3949 | * If the port is not ONLINE then try to login |
| 3950 | * to it if we haven't run out of retries. |
| 3951 | */ |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3952 | if (atomic_read(&fcport->state) != FCS_ONLINE && |
| 3953 | fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3954 | fcport->login_retry--; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3955 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 3956 | if (fcport->flags & FCF_FCP2_DEVICE) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3957 | ha->isp_ops->fabric_logout(vha, |
| 3958 | fcport->loop_id, |
| 3959 | fcport->d_id.b.domain, |
| 3960 | fcport->d_id.b.area, |
| 3961 | fcport->d_id.b.al_pa); |
| 3962 | |
Joe Carnuccio | 03bcfb5 | 2011-03-30 11:46:27 -0700 | [diff] [blame] | 3963 | if (fcport->loop_id == FC_NO_LOOP_ID) { |
| 3964 | fcport->loop_id = next_loopid = |
| 3965 | ha->min_external_loopid; |
| 3966 | status = qla2x00_find_new_loop_id( |
| 3967 | vha, fcport); |
| 3968 | if (status != QLA_SUCCESS) { |
| 3969 | /* Ran out of IDs to use */ |
| 3970 | break; |
| 3971 | } |
| 3972 | } |
| 3973 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3974 | if (IS_ALOGIO_CAPABLE(ha)) { |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3975 | fcport->flags |= FCF_ASYNC_SENT; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3976 | data[0] = 0; |
| 3977 | data[1] = QLA_LOGIO_LOGIN_RETRIED; |
| 3978 | status = qla2x00_post_async_login_work( |
| 3979 | vha, fcport, data); |
| 3980 | if (status == QLA_SUCCESS) |
| 3981 | continue; |
| 3982 | /* Attempt a retry. */ |
| 3983 | status = 1; |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 3984 | } else { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3985 | status = qla2x00_fabric_login(vha, |
| 3986 | fcport, &next_loopid); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 3987 | if (status == QLA_SUCCESS) { |
| 3988 | int status2; |
| 3989 | uint8_t opts; |
| 3990 | |
| 3991 | opts = 0; |
| 3992 | if (fcport->flags & |
| 3993 | FCF_FCP2_DEVICE) |
| 3994 | opts |= BIT_1; |
Saurav Kashyap | 0300396 | 2012-11-21 02:40:31 -0500 | [diff] [blame] | 3995 | status2 = |
| 3996 | qla2x00_get_port_database( |
| 3997 | vha, fcport, opts); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 3998 | if (status2 != QLA_SUCCESS) |
| 3999 | status = 1; |
| 4000 | } |
| 4001 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4002 | } else |
| 4003 | status = qla2x00_local_device_login(vha, |
| 4004 | fcport); |
| 4005 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4006 | if (status == QLA_SUCCESS) { |
| 4007 | fcport->old_loop_id = fcport->loop_id; |
| 4008 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4009 | ql_dbg(ql_dbg_disc, vha, 0x2003, |
| 4010 | "Port login OK: logged in ID 0x%x.\n", |
| 4011 | fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4012 | |
| 4013 | qla2x00_update_fcport(vha, fcport); |
| 4014 | |
| 4015 | } else if (status == 1) { |
| 4016 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 4017 | /* retry the login again */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4018 | ql_dbg(ql_dbg_disc, vha, 0x2007, |
| 4019 | "Retrying %d login again loop_id 0x%x.\n", |
| 4020 | fcport->login_retry, fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4021 | } else { |
| 4022 | fcport->login_retry = 0; |
| 4023 | } |
| 4024 | |
| 4025 | if (fcport->login_retry == 0 && status != QLA_SUCCESS) |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 4026 | qla2x00_clear_loop_id(fcport); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4027 | } |
| 4028 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| 4029 | break; |
| 4030 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4031 | } |
| 4032 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4033 | /* Schedule work on any of the dpc-workqueues */ |
| 4034 | void |
| 4035 | qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code) |
| 4036 | { |
| 4037 | struct qla_hw_data *ha = base_vha->hw; |
| 4038 | |
| 4039 | switch (work_code) { |
| 4040 | case MBA_IDC_AEN: /* 0x8200 */ |
| 4041 | if (ha->dpc_lp_wq) |
| 4042 | queue_work(ha->dpc_lp_wq, &ha->idc_aen); |
| 4043 | break; |
| 4044 | |
| 4045 | case QLA83XX_NIC_CORE_RESET: /* 0x1 */ |
| 4046 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4047 | if (ha->dpc_hp_wq) |
| 4048 | queue_work(ha->dpc_hp_wq, &ha->nic_core_reset); |
| 4049 | } else |
| 4050 | ql_dbg(ql_dbg_p3p, base_vha, 0xb05e, |
| 4051 | "NIC Core reset is already active. Skip " |
| 4052 | "scheduling it again.\n"); |
| 4053 | break; |
| 4054 | case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */ |
| 4055 | if (ha->dpc_hp_wq) |
| 4056 | queue_work(ha->dpc_hp_wq, &ha->idc_state_handler); |
| 4057 | break; |
| 4058 | case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */ |
| 4059 | if (ha->dpc_hp_wq) |
| 4060 | queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable); |
| 4061 | break; |
| 4062 | default: |
| 4063 | ql_log(ql_log_warn, base_vha, 0xb05f, |
| 4064 | "Unknow work-code=0x%x.\n", work_code); |
| 4065 | } |
| 4066 | |
| 4067 | return; |
| 4068 | } |
| 4069 | |
| 4070 | /* Work: Perform NIC Core Unrecoverable state handling */ |
| 4071 | void |
| 4072 | qla83xx_nic_core_unrecoverable_work(struct work_struct *work) |
| 4073 | { |
| 4074 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4075 | container_of(work, struct qla_hw_data, nic_core_unrecoverable); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4076 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4077 | uint32_t dev_state = 0; |
| 4078 | |
| 4079 | qla83xx_idc_lock(base_vha, 0); |
| 4080 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4081 | qla83xx_reset_ownership(base_vha); |
| 4082 | if (ha->flags.nic_core_reset_owner) { |
| 4083 | ha->flags.nic_core_reset_owner = 0; |
| 4084 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4085 | QLA8XXX_DEV_FAILED); |
| 4086 | ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n"); |
| 4087 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4088 | } |
| 4089 | qla83xx_idc_unlock(base_vha, 0); |
| 4090 | } |
| 4091 | |
| 4092 | /* Work: Execute IDC state handler */ |
| 4093 | void |
| 4094 | qla83xx_idc_state_handler_work(struct work_struct *work) |
| 4095 | { |
| 4096 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4097 | container_of(work, struct qla_hw_data, idc_state_handler); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4098 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4099 | uint32_t dev_state = 0; |
| 4100 | |
| 4101 | qla83xx_idc_lock(base_vha, 0); |
| 4102 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4103 | if (dev_state == QLA8XXX_DEV_FAILED || |
| 4104 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) |
| 4105 | qla83xx_idc_state_handler(base_vha); |
| 4106 | qla83xx_idc_unlock(base_vha, 0); |
| 4107 | } |
| 4108 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4109 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4110 | qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha) |
| 4111 | { |
| 4112 | int rval = QLA_SUCCESS; |
| 4113 | unsigned long heart_beat_wait = jiffies + (1 * HZ); |
| 4114 | uint32_t heart_beat_counter1, heart_beat_counter2; |
| 4115 | |
| 4116 | do { |
| 4117 | if (time_after(jiffies, heart_beat_wait)) { |
| 4118 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07c, |
| 4119 | "Nic Core f/w is not alive.\n"); |
| 4120 | rval = QLA_FUNCTION_FAILED; |
| 4121 | break; |
| 4122 | } |
| 4123 | |
| 4124 | qla83xx_idc_lock(base_vha, 0); |
| 4125 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4126 | &heart_beat_counter1); |
| 4127 | qla83xx_idc_unlock(base_vha, 0); |
| 4128 | msleep(100); |
| 4129 | qla83xx_idc_lock(base_vha, 0); |
| 4130 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4131 | &heart_beat_counter2); |
| 4132 | qla83xx_idc_unlock(base_vha, 0); |
| 4133 | } while (heart_beat_counter1 == heart_beat_counter2); |
| 4134 | |
| 4135 | return rval; |
| 4136 | } |
| 4137 | |
| 4138 | /* Work: Perform NIC Core Reset handling */ |
| 4139 | void |
| 4140 | qla83xx_nic_core_reset_work(struct work_struct *work) |
| 4141 | { |
| 4142 | struct qla_hw_data *ha = |
| 4143 | container_of(work, struct qla_hw_data, nic_core_reset); |
| 4144 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4145 | uint32_t dev_state = 0; |
| 4146 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 4147 | if (IS_QLA2031(ha)) { |
| 4148 | if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS) |
| 4149 | ql_log(ql_log_warn, base_vha, 0xb081, |
| 4150 | "Failed to dump mctp\n"); |
| 4151 | return; |
| 4152 | } |
| 4153 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4154 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4155 | if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) { |
| 4156 | qla83xx_idc_lock(base_vha, 0); |
| 4157 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4158 | &dev_state); |
| 4159 | qla83xx_idc_unlock(base_vha, 0); |
| 4160 | if (dev_state != QLA8XXX_DEV_NEED_RESET) { |
| 4161 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07a, |
| 4162 | "Nic Core f/w is alive.\n"); |
| 4163 | return; |
| 4164 | } |
| 4165 | } |
| 4166 | |
| 4167 | ha->flags.nic_core_reset_hdlr_active = 1; |
| 4168 | if (qla83xx_nic_core_reset(base_vha)) { |
| 4169 | /* NIC Core reset failed. */ |
| 4170 | ql_dbg(ql_dbg_p3p, base_vha, 0xb061, |
| 4171 | "NIC Core reset failed.\n"); |
| 4172 | } |
| 4173 | ha->flags.nic_core_reset_hdlr_active = 0; |
| 4174 | } |
| 4175 | } |
| 4176 | |
| 4177 | /* Work: Handle 8200 IDC aens */ |
| 4178 | void |
| 4179 | qla83xx_service_idc_aen(struct work_struct *work) |
| 4180 | { |
| 4181 | struct qla_hw_data *ha = |
| 4182 | container_of(work, struct qla_hw_data, idc_aen); |
| 4183 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4184 | uint32_t dev_state, idc_control; |
| 4185 | |
| 4186 | qla83xx_idc_lock(base_vha, 0); |
| 4187 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4188 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control); |
| 4189 | qla83xx_idc_unlock(base_vha, 0); |
| 4190 | if (dev_state == QLA8XXX_DEV_NEED_RESET) { |
| 4191 | if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) { |
| 4192 | ql_dbg(ql_dbg_p3p, base_vha, 0xb062, |
| 4193 | "Application requested NIC Core Reset.\n"); |
| 4194 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4195 | } else if (qla83xx_check_nic_core_fw_alive(base_vha) == |
| 4196 | QLA_SUCCESS) { |
| 4197 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07b, |
| 4198 | "Other protocol driver requested NIC Core Reset.\n"); |
| 4199 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4200 | } |
| 4201 | } else if (dev_state == QLA8XXX_DEV_FAILED || |
| 4202 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) { |
| 4203 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4204 | } |
| 4205 | } |
| 4206 | |
| 4207 | static void |
| 4208 | qla83xx_wait_logic(void) |
| 4209 | { |
| 4210 | int i; |
| 4211 | |
| 4212 | /* Yield CPU */ |
| 4213 | if (!in_interrupt()) { |
| 4214 | /* |
| 4215 | * Wait about 200ms before retrying again. |
| 4216 | * This controls the number of retries for single |
| 4217 | * lock operation. |
| 4218 | */ |
| 4219 | msleep(100); |
| 4220 | schedule(); |
| 4221 | } else { |
| 4222 | for (i = 0; i < 20; i++) |
| 4223 | cpu_relax(); /* This a nop instr on i386 */ |
| 4224 | } |
| 4225 | } |
| 4226 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4227 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4228 | qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha) |
| 4229 | { |
| 4230 | int rval; |
| 4231 | uint32_t data; |
| 4232 | uint32_t idc_lck_rcvry_stage_mask = 0x3; |
| 4233 | uint32_t idc_lck_rcvry_owner_mask = 0x3c; |
| 4234 | struct qla_hw_data *ha = base_vha->hw; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4235 | ql_dbg(ql_dbg_p3p, base_vha, 0xb086, |
| 4236 | "Trying force recovery of the IDC lock.\n"); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4237 | |
| 4238 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data); |
| 4239 | if (rval) |
| 4240 | return rval; |
| 4241 | |
| 4242 | if ((data & idc_lck_rcvry_stage_mask) > 0) { |
| 4243 | return QLA_SUCCESS; |
| 4244 | } else { |
| 4245 | data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2); |
| 4246 | rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4247 | data); |
| 4248 | if (rval) |
| 4249 | return rval; |
| 4250 | |
| 4251 | msleep(200); |
| 4252 | |
| 4253 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4254 | &data); |
| 4255 | if (rval) |
| 4256 | return rval; |
| 4257 | |
| 4258 | if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) { |
| 4259 | data &= (IDC_LOCK_RECOVERY_STAGE2 | |
| 4260 | ~(idc_lck_rcvry_stage_mask)); |
| 4261 | rval = qla83xx_wr_reg(base_vha, |
| 4262 | QLA83XX_IDC_LOCK_RECOVERY, data); |
| 4263 | if (rval) |
| 4264 | return rval; |
| 4265 | |
| 4266 | /* Forcefully perform IDC UnLock */ |
| 4267 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, |
| 4268 | &data); |
| 4269 | if (rval) |
| 4270 | return rval; |
| 4271 | /* Clear lock-id by setting 0xff */ |
| 4272 | rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4273 | 0xff); |
| 4274 | if (rval) |
| 4275 | return rval; |
| 4276 | /* Clear lock-recovery by setting 0x0 */ |
| 4277 | rval = qla83xx_wr_reg(base_vha, |
| 4278 | QLA83XX_IDC_LOCK_RECOVERY, 0x0); |
| 4279 | if (rval) |
| 4280 | return rval; |
| 4281 | } else |
| 4282 | return QLA_SUCCESS; |
| 4283 | } |
| 4284 | |
| 4285 | return rval; |
| 4286 | } |
| 4287 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4288 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4289 | qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha) |
| 4290 | { |
| 4291 | int rval = QLA_SUCCESS; |
| 4292 | uint32_t o_drv_lockid, n_drv_lockid; |
| 4293 | unsigned long lock_recovery_timeout; |
| 4294 | |
| 4295 | lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT; |
| 4296 | retry_lockid: |
| 4297 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid); |
| 4298 | if (rval) |
| 4299 | goto exit; |
| 4300 | |
| 4301 | /* MAX wait time before forcing IDC Lock recovery = 2 secs */ |
| 4302 | if (time_after_eq(jiffies, lock_recovery_timeout)) { |
| 4303 | if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS) |
| 4304 | return QLA_SUCCESS; |
| 4305 | else |
| 4306 | return QLA_FUNCTION_FAILED; |
| 4307 | } |
| 4308 | |
| 4309 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid); |
| 4310 | if (rval) |
| 4311 | goto exit; |
| 4312 | |
| 4313 | if (o_drv_lockid == n_drv_lockid) { |
| 4314 | qla83xx_wait_logic(); |
| 4315 | goto retry_lockid; |
| 4316 | } else |
| 4317 | return QLA_SUCCESS; |
| 4318 | |
| 4319 | exit: |
| 4320 | return rval; |
| 4321 | } |
| 4322 | |
| 4323 | void |
| 4324 | qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4325 | { |
| 4326 | uint16_t options = (requester_id << 15) | BIT_6; |
| 4327 | uint32_t data; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4328 | uint32_t lock_owner; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4329 | struct qla_hw_data *ha = base_vha->hw; |
| 4330 | |
| 4331 | /* IDC-lock implementation using driver-lock/lock-id remote registers */ |
| 4332 | retry_lock: |
| 4333 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data) |
| 4334 | == QLA_SUCCESS) { |
| 4335 | if (data) { |
| 4336 | /* Setting lock-id to our function-number */ |
| 4337 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4338 | ha->portnum); |
| 4339 | } else { |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4340 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4341 | &lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4342 | ql_dbg(ql_dbg_p3p, base_vha, 0xb063, |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4343 | "Failed to acquire IDC lock, acquired by %d, " |
| 4344 | "retrying...\n", lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4345 | |
| 4346 | /* Retry/Perform IDC-Lock recovery */ |
| 4347 | if (qla83xx_idc_lock_recovery(base_vha) |
| 4348 | == QLA_SUCCESS) { |
| 4349 | qla83xx_wait_logic(); |
| 4350 | goto retry_lock; |
| 4351 | } else |
| 4352 | ql_log(ql_log_warn, base_vha, 0xb075, |
| 4353 | "IDC Lock recovery FAILED.\n"); |
| 4354 | } |
| 4355 | |
| 4356 | } |
| 4357 | |
| 4358 | return; |
| 4359 | |
| 4360 | /* XXX: IDC-lock implementation using access-control mbx */ |
| 4361 | retry_lock2: |
| 4362 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4363 | ql_dbg(ql_dbg_p3p, base_vha, 0xb072, |
| 4364 | "Failed to acquire IDC lock. retrying...\n"); |
| 4365 | /* Retry/Perform IDC-Lock recovery */ |
| 4366 | if (qla83xx_idc_lock_recovery(base_vha) == QLA_SUCCESS) { |
| 4367 | qla83xx_wait_logic(); |
| 4368 | goto retry_lock2; |
| 4369 | } else |
| 4370 | ql_log(ql_log_warn, base_vha, 0xb076, |
| 4371 | "IDC Lock recovery FAILED.\n"); |
| 4372 | } |
| 4373 | |
| 4374 | return; |
| 4375 | } |
| 4376 | |
| 4377 | void |
| 4378 | qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4379 | { |
| 4380 | uint16_t options = (requester_id << 15) | BIT_7, retry; |
| 4381 | uint32_t data; |
| 4382 | struct qla_hw_data *ha = base_vha->hw; |
| 4383 | |
| 4384 | /* IDC-unlock implementation using driver-unlock/lock-id |
| 4385 | * remote registers |
| 4386 | */ |
| 4387 | retry = 0; |
| 4388 | retry_unlock: |
| 4389 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data) |
| 4390 | == QLA_SUCCESS) { |
| 4391 | if (data == ha->portnum) { |
| 4392 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data); |
| 4393 | /* Clearing lock-id by setting 0xff */ |
| 4394 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff); |
| 4395 | } else if (retry < 10) { |
| 4396 | /* SV: XXX: IDC unlock retrying needed here? */ |
| 4397 | |
| 4398 | /* Retry for IDC-unlock */ |
| 4399 | qla83xx_wait_logic(); |
| 4400 | retry++; |
| 4401 | ql_dbg(ql_dbg_p3p, base_vha, 0xb064, |
| 4402 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4403 | goto retry_unlock; |
| 4404 | } |
| 4405 | } else if (retry < 10) { |
| 4406 | /* Retry for IDC-unlock */ |
| 4407 | qla83xx_wait_logic(); |
| 4408 | retry++; |
| 4409 | ql_dbg(ql_dbg_p3p, base_vha, 0xb065, |
| 4410 | "Failed to read drv-lockid, retyring=%d\n", retry); |
| 4411 | goto retry_unlock; |
| 4412 | } |
| 4413 | |
| 4414 | return; |
| 4415 | |
| 4416 | /* XXX: IDC-unlock implementation using access-control mbx */ |
| 4417 | retry = 0; |
| 4418 | retry_unlock2: |
| 4419 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4420 | if (retry < 10) { |
| 4421 | /* Retry for IDC-unlock */ |
| 4422 | qla83xx_wait_logic(); |
| 4423 | retry++; |
| 4424 | ql_dbg(ql_dbg_p3p, base_vha, 0xb066, |
| 4425 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4426 | goto retry_unlock2; |
| 4427 | } |
| 4428 | } |
| 4429 | |
| 4430 | return; |
| 4431 | } |
| 4432 | |
| 4433 | int |
| 4434 | __qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4435 | { |
| 4436 | int rval = QLA_SUCCESS; |
| 4437 | struct qla_hw_data *ha = vha->hw; |
| 4438 | uint32_t drv_presence; |
| 4439 | |
| 4440 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4441 | if (rval == QLA_SUCCESS) { |
| 4442 | drv_presence |= (1 << ha->portnum); |
| 4443 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4444 | drv_presence); |
| 4445 | } |
| 4446 | |
| 4447 | return rval; |
| 4448 | } |
| 4449 | |
| 4450 | int |
| 4451 | qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4452 | { |
| 4453 | int rval = QLA_SUCCESS; |
| 4454 | |
| 4455 | qla83xx_idc_lock(vha, 0); |
| 4456 | rval = __qla83xx_set_drv_presence(vha); |
| 4457 | qla83xx_idc_unlock(vha, 0); |
| 4458 | |
| 4459 | return rval; |
| 4460 | } |
| 4461 | |
| 4462 | int |
| 4463 | __qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4464 | { |
| 4465 | int rval = QLA_SUCCESS; |
| 4466 | struct qla_hw_data *ha = vha->hw; |
| 4467 | uint32_t drv_presence; |
| 4468 | |
| 4469 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4470 | if (rval == QLA_SUCCESS) { |
| 4471 | drv_presence &= ~(1 << ha->portnum); |
| 4472 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4473 | drv_presence); |
| 4474 | } |
| 4475 | |
| 4476 | return rval; |
| 4477 | } |
| 4478 | |
| 4479 | int |
| 4480 | qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4481 | { |
| 4482 | int rval = QLA_SUCCESS; |
| 4483 | |
| 4484 | qla83xx_idc_lock(vha, 0); |
| 4485 | rval = __qla83xx_clear_drv_presence(vha); |
| 4486 | qla83xx_idc_unlock(vha, 0); |
| 4487 | |
| 4488 | return rval; |
| 4489 | } |
| 4490 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4491 | static void |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4492 | qla83xx_need_reset_handler(scsi_qla_host_t *vha) |
| 4493 | { |
| 4494 | struct qla_hw_data *ha = vha->hw; |
| 4495 | uint32_t drv_ack, drv_presence; |
| 4496 | unsigned long ack_timeout; |
| 4497 | |
| 4498 | /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */ |
| 4499 | ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ); |
| 4500 | while (1) { |
| 4501 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack); |
| 4502 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
Saurav Kashyap | 807fb6d | 2012-11-21 02:40:36 -0500 | [diff] [blame] | 4503 | if ((drv_ack & drv_presence) == drv_presence) |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4504 | break; |
| 4505 | |
| 4506 | if (time_after_eq(jiffies, ack_timeout)) { |
| 4507 | ql_log(ql_log_warn, vha, 0xb067, |
| 4508 | "RESET ACK TIMEOUT! drv_presence=0x%x " |
| 4509 | "drv_ack=0x%x\n", drv_presence, drv_ack); |
| 4510 | /* |
| 4511 | * The function(s) which did not ack in time are forced |
| 4512 | * to withdraw any further participation in the IDC |
| 4513 | * reset. |
| 4514 | */ |
| 4515 | if (drv_ack != drv_presence) |
| 4516 | qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4517 | drv_ack); |
| 4518 | break; |
| 4519 | } |
| 4520 | |
| 4521 | qla83xx_idc_unlock(vha, 0); |
| 4522 | msleep(1000); |
| 4523 | qla83xx_idc_lock(vha, 0); |
| 4524 | } |
| 4525 | |
| 4526 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD); |
| 4527 | ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n"); |
| 4528 | } |
| 4529 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4530 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4531 | qla83xx_device_bootstrap(scsi_qla_host_t *vha) |
| 4532 | { |
| 4533 | int rval = QLA_SUCCESS; |
| 4534 | uint32_t idc_control; |
| 4535 | |
| 4536 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING); |
| 4537 | ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n"); |
| 4538 | |
| 4539 | /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */ |
| 4540 | __qla83xx_get_idc_control(vha, &idc_control); |
| 4541 | idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET; |
| 4542 | __qla83xx_set_idc_control(vha, 0); |
| 4543 | |
| 4544 | qla83xx_idc_unlock(vha, 0); |
| 4545 | rval = qla83xx_restart_nic_firmware(vha); |
| 4546 | qla83xx_idc_lock(vha, 0); |
| 4547 | |
| 4548 | if (rval != QLA_SUCCESS) { |
| 4549 | ql_log(ql_log_fatal, vha, 0xb06a, |
| 4550 | "Failed to restart NIC f/w.\n"); |
| 4551 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED); |
| 4552 | ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n"); |
| 4553 | } else { |
| 4554 | ql_dbg(ql_dbg_p3p, vha, 0xb06c, |
| 4555 | "Success in restarting nic f/w.\n"); |
| 4556 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY); |
| 4557 | ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n"); |
| 4558 | } |
| 4559 | |
| 4560 | return rval; |
| 4561 | } |
| 4562 | |
| 4563 | /* Assumes idc_lock always held on entry */ |
| 4564 | int |
| 4565 | qla83xx_idc_state_handler(scsi_qla_host_t *base_vha) |
| 4566 | { |
| 4567 | struct qla_hw_data *ha = base_vha->hw; |
| 4568 | int rval = QLA_SUCCESS; |
| 4569 | unsigned long dev_init_timeout; |
| 4570 | uint32_t dev_state; |
| 4571 | |
| 4572 | /* Wait for MAX-INIT-TIMEOUT for the device to go ready */ |
| 4573 | dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ); |
| 4574 | |
| 4575 | while (1) { |
| 4576 | |
| 4577 | if (time_after_eq(jiffies, dev_init_timeout)) { |
| 4578 | ql_log(ql_log_warn, base_vha, 0xb06e, |
| 4579 | "Initialization TIMEOUT!\n"); |
| 4580 | /* Init timeout. Disable further NIC Core |
| 4581 | * communication. |
| 4582 | */ |
| 4583 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4584 | QLA8XXX_DEV_FAILED); |
| 4585 | ql_log(ql_log_info, base_vha, 0xb06f, |
| 4586 | "HW State: FAILED.\n"); |
| 4587 | } |
| 4588 | |
| 4589 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4590 | switch (dev_state) { |
| 4591 | case QLA8XXX_DEV_READY: |
| 4592 | if (ha->flags.nic_core_reset_owner) |
| 4593 | qla83xx_idc_audit(base_vha, |
| 4594 | IDC_AUDIT_COMPLETION); |
| 4595 | ha->flags.nic_core_reset_owner = 0; |
| 4596 | ql_dbg(ql_dbg_p3p, base_vha, 0xb070, |
| 4597 | "Reset_owner reset by 0x%x.\n", |
| 4598 | ha->portnum); |
| 4599 | goto exit; |
| 4600 | case QLA8XXX_DEV_COLD: |
| 4601 | if (ha->flags.nic_core_reset_owner) |
| 4602 | rval = qla83xx_device_bootstrap(base_vha); |
| 4603 | else { |
| 4604 | /* Wait for AEN to change device-state */ |
| 4605 | qla83xx_idc_unlock(base_vha, 0); |
| 4606 | msleep(1000); |
| 4607 | qla83xx_idc_lock(base_vha, 0); |
| 4608 | } |
| 4609 | break; |
| 4610 | case QLA8XXX_DEV_INITIALIZING: |
| 4611 | /* Wait for AEN to change device-state */ |
| 4612 | qla83xx_idc_unlock(base_vha, 0); |
| 4613 | msleep(1000); |
| 4614 | qla83xx_idc_lock(base_vha, 0); |
| 4615 | break; |
| 4616 | case QLA8XXX_DEV_NEED_RESET: |
| 4617 | if (!ql2xdontresethba && ha->flags.nic_core_reset_owner) |
| 4618 | qla83xx_need_reset_handler(base_vha); |
| 4619 | else { |
| 4620 | /* Wait for AEN to change device-state */ |
| 4621 | qla83xx_idc_unlock(base_vha, 0); |
| 4622 | msleep(1000); |
| 4623 | qla83xx_idc_lock(base_vha, 0); |
| 4624 | } |
| 4625 | /* reset timeout value after need reset handler */ |
| 4626 | dev_init_timeout = jiffies + |
| 4627 | (ha->fcoe_dev_init_timeout * HZ); |
| 4628 | break; |
| 4629 | case QLA8XXX_DEV_NEED_QUIESCENT: |
| 4630 | /* XXX: DEBUG for now */ |
| 4631 | qla83xx_idc_unlock(base_vha, 0); |
| 4632 | msleep(1000); |
| 4633 | qla83xx_idc_lock(base_vha, 0); |
| 4634 | break; |
| 4635 | case QLA8XXX_DEV_QUIESCENT: |
| 4636 | /* XXX: DEBUG for now */ |
| 4637 | if (ha->flags.quiesce_owner) |
| 4638 | goto exit; |
| 4639 | |
| 4640 | qla83xx_idc_unlock(base_vha, 0); |
| 4641 | msleep(1000); |
| 4642 | qla83xx_idc_lock(base_vha, 0); |
| 4643 | dev_init_timeout = jiffies + |
| 4644 | (ha->fcoe_dev_init_timeout * HZ); |
| 4645 | break; |
| 4646 | case QLA8XXX_DEV_FAILED: |
| 4647 | if (ha->flags.nic_core_reset_owner) |
| 4648 | qla83xx_idc_audit(base_vha, |
| 4649 | IDC_AUDIT_COMPLETION); |
| 4650 | ha->flags.nic_core_reset_owner = 0; |
| 4651 | __qla83xx_clear_drv_presence(base_vha); |
| 4652 | qla83xx_idc_unlock(base_vha, 0); |
| 4653 | qla8xxx_dev_failed_handler(base_vha); |
| 4654 | rval = QLA_FUNCTION_FAILED; |
| 4655 | qla83xx_idc_lock(base_vha, 0); |
| 4656 | goto exit; |
| 4657 | case QLA8XXX_BAD_VALUE: |
| 4658 | qla83xx_idc_unlock(base_vha, 0); |
| 4659 | msleep(1000); |
| 4660 | qla83xx_idc_lock(base_vha, 0); |
| 4661 | break; |
| 4662 | default: |
| 4663 | ql_log(ql_log_warn, base_vha, 0xb071, |
| 4664 | "Unknow Device State: %x.\n", dev_state); |
| 4665 | qla83xx_idc_unlock(base_vha, 0); |
| 4666 | qla8xxx_dev_failed_handler(base_vha); |
| 4667 | rval = QLA_FUNCTION_FAILED; |
| 4668 | qla83xx_idc_lock(base_vha, 0); |
| 4669 | goto exit; |
| 4670 | } |
| 4671 | } |
| 4672 | |
| 4673 | exit: |
| 4674 | return rval; |
| 4675 | } |
| 4676 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4677 | void |
| 4678 | qla2x00_disable_board_on_pci_error(struct work_struct *work) |
| 4679 | { |
| 4680 | struct qla_hw_data *ha = container_of(work, struct qla_hw_data, |
| 4681 | board_disable); |
| 4682 | struct pci_dev *pdev = ha->pdev; |
| 4683 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4684 | |
| 4685 | ql_log(ql_log_warn, base_vha, 0x015b, |
| 4686 | "Disabling adapter.\n"); |
| 4687 | |
| 4688 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 4689 | |
| 4690 | qla2x00_delete_all_vps(ha, base_vha); |
| 4691 | |
| 4692 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 4693 | |
| 4694 | qla2x00_dfs_remove(base_vha); |
| 4695 | |
| 4696 | qla84xx_put_chip(base_vha); |
| 4697 | |
| 4698 | if (base_vha->timer_active) |
| 4699 | qla2x00_stop_timer(base_vha); |
| 4700 | |
| 4701 | base_vha->flags.online = 0; |
| 4702 | |
| 4703 | qla2x00_destroy_deferred_work(ha); |
| 4704 | |
| 4705 | /* |
| 4706 | * Do not try to stop beacon blink as it will issue a mailbox |
| 4707 | * command. |
| 4708 | */ |
| 4709 | qla2x00_free_sysfs_attr(base_vha, false); |
| 4710 | |
| 4711 | fc_remove_host(base_vha->host); |
| 4712 | |
| 4713 | scsi_remove_host(base_vha->host); |
| 4714 | |
| 4715 | base_vha->flags.init_done = 0; |
| 4716 | qla25xx_delete_queues(base_vha); |
| 4717 | qla2x00_free_irqs(base_vha); |
| 4718 | qla2x00_free_fcports(base_vha); |
| 4719 | qla2x00_mem_free(ha); |
| 4720 | qla82xx_md_free(base_vha); |
| 4721 | qla2x00_free_queues(ha); |
| 4722 | |
| 4723 | scsi_host_put(base_vha->host); |
| 4724 | |
| 4725 | qla2x00_unmap_iobases(ha); |
| 4726 | |
| 4727 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 4728 | kfree(ha); |
| 4729 | ha = NULL; |
| 4730 | |
| 4731 | pci_disable_pcie_error_reporting(pdev); |
| 4732 | pci_disable_device(pdev); |
| 4733 | pci_set_drvdata(pdev, NULL); |
| 4734 | |
| 4735 | } |
| 4736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | /************************************************************************** |
| 4738 | * qla2x00_do_dpc |
| 4739 | * This kernel thread is a task that is schedule by the interrupt handler |
| 4740 | * to perform the background processing for interrupts. |
| 4741 | * |
| 4742 | * Notes: |
| 4743 | * This task always run in the context of a kernel thread. It |
| 4744 | * is kick-off by the driver's detect code and starts up |
| 4745 | * up one per adapter. It immediately goes to sleep and waits for |
| 4746 | * some fibre event. When either the interrupt handler or |
| 4747 | * the timer routine detects a event it will one of the task |
| 4748 | * bits then wake us up. |
| 4749 | **************************************************************************/ |
| 4750 | static int |
| 4751 | qla2x00_do_dpc(void *data) |
| 4752 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4753 | int rval; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4754 | scsi_qla_host_t *base_vha; |
| 4755 | struct qla_hw_data *ha; |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 4756 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4757 | ha = (struct qla_hw_data *)data; |
| 4758 | base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4760 | set_user_nice(current, -20); |
| 4761 | |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 4762 | set_current_state(TASK_INTERRUPTIBLE); |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4763 | while (!kthread_should_stop()) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4764 | ql_dbg(ql_dbg_dpc, base_vha, 0x4000, |
| 4765 | "DPC handler sleeping.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4766 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4767 | schedule(); |
| 4768 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 | |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4770 | if (!base_vha->flags.init_done || ha->flags.mbox_busy) |
| 4771 | goto end_loop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4772 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4773 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4774 | ql_dbg(ql_dbg_dpc, base_vha, 0x4003, |
| 4775 | "eeh_busy=%d.\n", ha->flags.eeh_busy); |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4776 | goto end_loop; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4777 | } |
| 4778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4779 | ha->dpc_active = 1; |
| 4780 | |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 4781 | ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001, |
| 4782 | "DPC handler waking up, dpc_flags=0x%lx.\n", |
| 4783 | base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4784 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4785 | qla2x00_do_work(base_vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4786 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 4787 | if (IS_P3P_TYPE(ha)) { |
| 4788 | if (IS_QLA8044(ha)) { |
| 4789 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4790 | &base_vha->dpc_flags)) { |
| 4791 | qla8044_idc_lock(ha); |
| 4792 | qla8044_wr_direct(base_vha, |
| 4793 | QLA8044_CRB_DEV_STATE_INDEX, |
| 4794 | QLA8XXX_DEV_FAILED); |
| 4795 | qla8044_idc_unlock(ha); |
| 4796 | ql_log(ql_log_info, base_vha, 0x4004, |
| 4797 | "HW State: FAILED.\n"); |
| 4798 | qla8044_device_state_handler(base_vha); |
| 4799 | continue; |
| 4800 | } |
| 4801 | |
| 4802 | } else { |
| 4803 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4804 | &base_vha->dpc_flags)) { |
| 4805 | qla82xx_idc_lock(ha); |
| 4806 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 4807 | QLA8XXX_DEV_FAILED); |
| 4808 | qla82xx_idc_unlock(ha); |
| 4809 | ql_log(ql_log_info, base_vha, 0x0151, |
| 4810 | "HW State: FAILED.\n"); |
| 4811 | qla82xx_device_state_handler(base_vha); |
| 4812 | continue; |
| 4813 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4814 | } |
| 4815 | |
| 4816 | if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED, |
| 4817 | &base_vha->dpc_flags)) { |
| 4818 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4819 | ql_dbg(ql_dbg_dpc, base_vha, 0x4005, |
| 4820 | "FCoE context reset scheduled.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4821 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
| 4822 | &base_vha->dpc_flags))) { |
| 4823 | if (qla82xx_fcoe_ctx_reset(base_vha)) { |
| 4824 | /* FCoE-ctx reset failed. |
| 4825 | * Escalate to chip-reset |
| 4826 | */ |
| 4827 | set_bit(ISP_ABORT_NEEDED, |
| 4828 | &base_vha->dpc_flags); |
| 4829 | } |
| 4830 | clear_bit(ABORT_ISP_ACTIVE, |
| 4831 | &base_vha->dpc_flags); |
| 4832 | } |
| 4833 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4834 | ql_dbg(ql_dbg_dpc, base_vha, 0x4006, |
| 4835 | "FCoE context reset end.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4836 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4837 | } else if (IS_QLAFX00(ha)) { |
| 4838 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4839 | &base_vha->dpc_flags)) { |
| 4840 | ql_dbg(ql_dbg_dpc, base_vha, 0x4020, |
| 4841 | "Firmware Reset Recovery\n"); |
| 4842 | if (qlafx00_reset_initialize(base_vha)) { |
| 4843 | /* Failed. Abort isp later. */ |
| 4844 | if (!test_bit(UNLOADING, |
| 4845 | &base_vha->dpc_flags)) |
| 4846 | set_bit(ISP_UNRECOVERABLE, |
| 4847 | &base_vha->dpc_flags); |
| 4848 | ql_dbg(ql_dbg_dpc, base_vha, |
| 4849 | 0x4021, |
| 4850 | "Reset Recovery Failed\n"); |
| 4851 | } |
| 4852 | } |
| 4853 | |
| 4854 | if (test_and_clear_bit(FX00_TARGET_SCAN, |
| 4855 | &base_vha->dpc_flags)) { |
| 4856 | ql_dbg(ql_dbg_dpc, base_vha, 0x4022, |
| 4857 | "ISPFx00 Target Scan scheduled\n"); |
| 4858 | if (qlafx00_rescan_isp(base_vha)) { |
| 4859 | if (!test_bit(UNLOADING, |
| 4860 | &base_vha->dpc_flags)) |
| 4861 | set_bit(ISP_UNRECOVERABLE, |
| 4862 | &base_vha->dpc_flags); |
| 4863 | ql_dbg(ql_dbg_dpc, base_vha, 0x401e, |
| 4864 | "ISPFx00 Target Scan Failed\n"); |
| 4865 | } |
| 4866 | ql_dbg(ql_dbg_dpc, base_vha, 0x401f, |
| 4867 | "ISPFx00 Target Scan End\n"); |
| 4868 | } |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 4869 | if (test_and_clear_bit(FX00_HOST_INFO_RESEND, |
| 4870 | &base_vha->dpc_flags)) { |
| 4871 | ql_dbg(ql_dbg_dpc, base_vha, 0x4023, |
| 4872 | "ISPFx00 Host Info resend scheduled\n"); |
| 4873 | qlafx00_fx_disc(base_vha, |
| 4874 | &base_vha->hw->mr.fcport, |
| 4875 | FXDISC_REG_HOST_INFO); |
| 4876 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4877 | } |
| 4878 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4879 | if (test_and_clear_bit(ISP_ABORT_NEEDED, |
| 4880 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4882 | ql_dbg(ql_dbg_dpc, base_vha, 0x4007, |
| 4883 | "ISP abort scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4884 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4885 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4886 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4887 | if (ha->isp_ops->abort_isp(base_vha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4888 | /* failed. retry later */ |
| 4889 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4890 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4892 | clear_bit(ABORT_ISP_ACTIVE, |
| 4893 | &base_vha->dpc_flags); |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 4894 | } |
| 4895 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4896 | ql_dbg(ql_dbg_dpc, base_vha, 0x4008, |
| 4897 | "ISP abort end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4898 | } |
| 4899 | |
David Jeffery | a394aac | 2012-11-21 02:39:54 -0500 | [diff] [blame] | 4900 | if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, |
| 4901 | &base_vha->dpc_flags)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4902 | qla2x00_update_fcports(base_vha); |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 4903 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 4904 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 4905 | if (test_bit(SCR_PENDING, &base_vha->dpc_flags)) { |
| 4906 | int ret; |
| 4907 | ret = qla2x00_send_change_request(base_vha, 0x3, 0); |
| 4908 | if (ret != QLA_SUCCESS) |
| 4909 | ql_log(ql_log_warn, base_vha, 0x121, |
| 4910 | "Failed to enable receiving of RSCN " |
| 4911 | "requests: 0x%x.\n", ret); |
| 4912 | clear_bit(SCR_PENDING, &base_vha->dpc_flags); |
| 4913 | } |
| 4914 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4915 | if (IS_QLAFX00(ha)) |
| 4916 | goto loop_resync_check; |
| 4917 | |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 4918 | if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4919 | ql_dbg(ql_dbg_dpc, base_vha, 0x4009, |
| 4920 | "Quiescence mode scheduled.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 4921 | if (IS_P3P_TYPE(ha)) { |
| 4922 | if (IS_QLA82XX(ha)) |
| 4923 | qla82xx_device_state_handler(base_vha); |
| 4924 | if (IS_QLA8044(ha)) |
| 4925 | qla8044_device_state_handler(base_vha); |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 4926 | clear_bit(ISP_QUIESCE_NEEDED, |
| 4927 | &base_vha->dpc_flags); |
| 4928 | if (!ha->flags.quiesce_owner) { |
| 4929 | qla2x00_perform_loop_resync(base_vha); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 4930 | if (IS_QLA82XX(ha)) { |
| 4931 | qla82xx_idc_lock(ha); |
| 4932 | qla82xx_clear_qsnt_ready( |
| 4933 | base_vha); |
| 4934 | qla82xx_idc_unlock(ha); |
| 4935 | } else if (IS_QLA8044(ha)) { |
| 4936 | qla8044_idc_lock(ha); |
| 4937 | qla8044_clear_qsnt_ready( |
| 4938 | base_vha); |
| 4939 | qla8044_idc_unlock(ha); |
| 4940 | } |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 4941 | } |
| 4942 | } else { |
| 4943 | clear_bit(ISP_QUIESCE_NEEDED, |
| 4944 | &base_vha->dpc_flags); |
| 4945 | qla2x00_quiesce_io(base_vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 4946 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4947 | ql_dbg(ql_dbg_dpc, base_vha, 0x400a, |
| 4948 | "Quiescence mode end.\n"); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 4949 | } |
| 4950 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4951 | if (test_and_clear_bit(RESET_MARKER_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4952 | &base_vha->dpc_flags) && |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4953 | (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4954 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4955 | ql_dbg(ql_dbg_dpc, base_vha, 0x400b, |
| 4956 | "Reset marker scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4957 | qla2x00_rst_aen(base_vha); |
| 4958 | clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4959 | ql_dbg(ql_dbg_dpc, base_vha, 0x400c, |
| 4960 | "Reset marker end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | } |
| 4962 | |
| 4963 | /* Retry each device up to login retry count */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4964 | if ((test_and_clear_bit(RELOGIN_NEEDED, |
| 4965 | &base_vha->dpc_flags)) && |
| 4966 | !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && |
| 4967 | atomic_read(&base_vha->loop_state) != LOOP_DOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4968 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4969 | ql_dbg(ql_dbg_dpc, base_vha, 0x400d, |
| 4970 | "Relogin scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4971 | qla2x00_relogin(base_vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4972 | ql_dbg(ql_dbg_dpc, base_vha, 0x400e, |
| 4973 | "Relogin end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4975 | loop_resync_check: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4976 | if (test_and_clear_bit(LOOP_RESYNC_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4977 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4979 | ql_dbg(ql_dbg_dpc, base_vha, 0x400f, |
| 4980 | "Loop resync scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4981 | |
| 4982 | if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4983 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4984 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4985 | rval = qla2x00_loop_resync(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4986 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4987 | clear_bit(LOOP_RESYNC_ACTIVE, |
| 4988 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | } |
| 4990 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4991 | ql_dbg(ql_dbg_dpc, base_vha, 0x4010, |
| 4992 | "Loop resync end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | } |
| 4994 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4995 | if (IS_QLAFX00(ha)) |
| 4996 | goto intr_on_check; |
| 4997 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4998 | if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && |
| 4999 | atomic_read(&base_vha->loop_state) == LOOP_READY) { |
| 5000 | clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); |
| 5001 | qla2xxx_flash_npiv_conf(base_vha); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 5002 | } |
| 5003 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5004 | intr_on_check: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5005 | if (!ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 5006 | ha->isp_ops->enable_intrs(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5007 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5008 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, |
| 5009 | &base_vha->dpc_flags)) |
| 5010 | ha->isp_ops->beacon_blink(base_vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5011 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5012 | if (!IS_QLAFX00(ha)) |
| 5013 | qla2x00_do_dpc_all_vps(base_vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | ha->dpc_active = 0; |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 5016 | end_loop: |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5017 | set_current_state(TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5018 | } /* End of while(1) */ |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5019 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5020 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5021 | ql_dbg(ql_dbg_dpc, base_vha, 0x4011, |
| 5022 | "DPC handler exiting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5023 | |
| 5024 | /* |
| 5025 | * Make sure that nobody tries to wake us up again. |
| 5026 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | ha->dpc_active = 0; |
| 5028 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 5029 | /* Cleanup any residual CTX SRBs. */ |
| 5030 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 5031 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5032 | return 0; |
| 5033 | } |
| 5034 | |
| 5035 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5036 | qla2xxx_wake_dpc(struct scsi_qla_host *vha) |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5037 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5038 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5039 | struct task_struct *t = ha->dpc_thread; |
| 5040 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5041 | if (!test_bit(UNLOADING, &vha->dpc_flags) && t) |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5042 | wake_up_process(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | } |
| 5044 | |
| 5045 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5046 | * qla2x00_rst_aen |
| 5047 | * Processes asynchronous reset. |
| 5048 | * |
| 5049 | * Input: |
| 5050 | * ha = adapter block pointer. |
| 5051 | */ |
| 5052 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5053 | qla2x00_rst_aen(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5054 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5055 | if (vha->flags.online && !vha->flags.reset_active && |
| 5056 | !atomic_read(&vha->loop_down_timer) && |
| 5057 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5058 | do { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5059 | clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5060 | |
| 5061 | /* |
| 5062 | * Issue marker command only when we are going to start |
| 5063 | * the I/O. |
| 5064 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5065 | vha->marker_needed = 1; |
| 5066 | } while (!atomic_read(&vha->loop_down_timer) && |
| 5067 | (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5068 | } |
| 5069 | } |
| 5070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5071 | /************************************************************************** |
| 5072 | * qla2x00_timer |
| 5073 | * |
| 5074 | * Description: |
| 5075 | * One second timer |
| 5076 | * |
| 5077 | * Context: Interrupt |
| 5078 | ***************************************************************************/ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5079 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5080 | qla2x00_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5081 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5082 | unsigned long cpu_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5083 | int start_dpc = 0; |
| 5084 | int index; |
| 5085 | srb_t *sp; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5086 | uint16_t w; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5087 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5088 | struct req_que *req; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5089 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5090 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5091 | ql_dbg(ql_dbg_timer, vha, 0x6000, |
| 5092 | "EEH = %d, restarting timer.\n", |
| 5093 | ha->flags.eeh_busy); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5094 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
| 5095 | return; |
| 5096 | } |
| 5097 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5098 | /* |
| 5099 | * Hardware read to raise pending EEH errors during mailbox waits. If |
| 5100 | * the read returns -1 then disable the board. |
| 5101 | */ |
| 5102 | if (!pci_channel_offline(ha->pdev)) { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5103 | pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w); |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5104 | if (w == 0xffff) |
| 5105 | /* |
| 5106 | * Schedule this on the default system workqueue so that |
| 5107 | * all the adapter workqueues and the DPC thread can be |
| 5108 | * shutdown cleanly. |
| 5109 | */ |
| 5110 | schedule_work(&ha->board_disable); |
| 5111 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5113 | /* Make sure qla82xx_watchdog is run only for physical port */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5114 | if (!vha->vp_idx && IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5115 | if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) |
| 5116 | start_dpc++; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5117 | if (IS_QLA82XX(ha)) |
| 5118 | qla82xx_watchdog(vha); |
| 5119 | else if (IS_QLA8044(ha)) |
| 5120 | qla8044_watchdog(vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5121 | } |
| 5122 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5123 | if (!vha->vp_idx && IS_QLAFX00(ha)) |
| 5124 | qlafx00_timer_routine(vha); |
| 5125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | /* Loop down handler. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5127 | if (atomic_read(&vha->loop_down_timer) > 0 && |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5128 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) && |
| 5129 | !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5130 | && vha->flags.online) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5132 | if (atomic_read(&vha->loop_down_timer) == |
| 5133 | vha->loop_down_abort_time) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5134 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5135 | ql_log(ql_log_info, vha, 0x6008, |
| 5136 | "Loop down - aborting the queues before time expires.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5137 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5138 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 5139 | atomic_set(&vha->loop_state, LOOP_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5140 | |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5141 | /* |
| 5142 | * Schedule an ISP abort to return any FCP2-device |
| 5143 | * commands. |
| 5144 | */ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5145 | /* NPIV - scan physical port only */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5146 | if (!vha->vp_idx) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5147 | spin_lock_irqsave(&ha->hardware_lock, |
| 5148 | cpu_flags); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5149 | req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5150 | for (index = 1; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 5151 | index < req->num_outstanding_cmds; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5152 | index++) { |
| 5153 | fc_port_t *sfcp; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 5154 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5155 | sp = req->outstanding_cmds[index]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5156 | if (!sp) |
| 5157 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 5158 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 5159 | continue; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5160 | sfcp = sp->fcport; |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5161 | if (!(sfcp->flags & FCF_FCP2_DEVICE)) |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5162 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5163 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5164 | if (IS_QLA82XX(ha)) |
| 5165 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5166 | &vha->dpc_flags); |
| 5167 | else |
| 5168 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5169 | &vha->dpc_flags); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5170 | break; |
| 5171 | } |
| 5172 | spin_unlock_irqrestore(&ha->hardware_lock, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5173 | cpu_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5175 | start_dpc++; |
| 5176 | } |
| 5177 | |
| 5178 | /* if the loop has been down for 4 minutes, reinit adapter */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5179 | if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 5180 | if (!(vha->device_flags & DFLG_NO_CABLE)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5181 | ql_log(ql_log_warn, vha, 0x6009, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5182 | "Loop down - aborting ISP.\n"); |
| 5183 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5184 | if (IS_QLA82XX(ha)) |
| 5185 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5186 | &vha->dpc_flags); |
| 5187 | else |
| 5188 | set_bit(ISP_ABORT_NEEDED, |
| 5189 | &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5190 | } |
| 5191 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5192 | ql_dbg(ql_dbg_timer, vha, 0x600a, |
| 5193 | "Loop down - seconds remaining %d.\n", |
| 5194 | atomic_read(&vha->loop_down_timer)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5195 | } |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5196 | /* Check if beacon LED needs to be blinked for physical host only */ |
| 5197 | if (!vha->vp_idx && (ha->beacon_blink_led == 1)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5198 | /* There is no beacon_blink function for ISP82xx */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5199 | if (!IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5200 | set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); |
| 5201 | start_dpc++; |
| 5202 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5203 | } |
| 5204 | |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5205 | /* Process any deferred work. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5206 | if (!list_empty(&vha->work_list)) |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5207 | start_dpc++; |
| 5208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5209 | /* Schedule the DPC routine if needed */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5210 | if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 5211 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || |
| 5212 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5213 | start_dpc || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5214 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || |
| 5215 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5216 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) || |
| 5217 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5218 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5219 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5220 | ql_dbg(ql_dbg_timer, vha, 0x600b, |
| 5221 | "isp_abort_needed=%d loop_resync_needed=%d " |
| 5222 | "fcport_update_needed=%d start_dpc=%d " |
| 5223 | "reset_marker_needed=%d", |
| 5224 | test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags), |
| 5225 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags), |
| 5226 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags), |
| 5227 | start_dpc, |
| 5228 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)); |
| 5229 | ql_dbg(ql_dbg_timer, vha, 0x600c, |
| 5230 | "beacon_blink_needed=%d isp_unrecoverable=%d " |
| 5231 | "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d " |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5232 | "relogin_needed=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5233 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags), |
| 5234 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags), |
| 5235 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags), |
| 5236 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags), |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5237 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5238 | qla2xxx_wake_dpc(vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5241 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5242 | } |
| 5243 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5244 | /* Firmware interface routines. */ |
| 5245 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5246 | #define FW_BLOBS 10 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5247 | #define FW_ISP21XX 0 |
| 5248 | #define FW_ISP22XX 1 |
| 5249 | #define FW_ISP2300 2 |
| 5250 | #define FW_ISP2322 3 |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5251 | #define FW_ISP24XX 4 |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5252 | #define FW_ISP25XX 5 |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5253 | #define FW_ISP81XX 6 |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5254 | #define FW_ISP82XX 7 |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5255 | #define FW_ISP2031 8 |
| 5256 | #define FW_ISP8031 9 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5257 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5258 | #define FW_FILE_ISP21XX "ql2100_fw.bin" |
| 5259 | #define FW_FILE_ISP22XX "ql2200_fw.bin" |
| 5260 | #define FW_FILE_ISP2300 "ql2300_fw.bin" |
| 5261 | #define FW_FILE_ISP2322 "ql2322_fw.bin" |
| 5262 | #define FW_FILE_ISP24XX "ql2400_fw.bin" |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5263 | #define FW_FILE_ISP25XX "ql2500_fw.bin" |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5264 | #define FW_FILE_ISP81XX "ql8100_fw.bin" |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5265 | #define FW_FILE_ISP82XX "ql8200_fw.bin" |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5266 | #define FW_FILE_ISP2031 "ql2600_fw.bin" |
| 5267 | #define FW_FILE_ISP8031 "ql8300_fw.bin" |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5268 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5269 | static DEFINE_MUTEX(qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5270 | |
| 5271 | static struct fw_blob qla_fw_blobs[FW_BLOBS] = { |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5272 | { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, |
| 5273 | { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, |
| 5274 | { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, |
| 5275 | { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, |
| 5276 | { .name = FW_FILE_ISP24XX, }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5277 | { .name = FW_FILE_ISP25XX, }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5278 | { .name = FW_FILE_ISP81XX, }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5279 | { .name = FW_FILE_ISP82XX, }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5280 | { .name = FW_FILE_ISP2031, }, |
| 5281 | { .name = FW_FILE_ISP8031, }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5282 | }; |
| 5283 | |
| 5284 | struct fw_blob * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5285 | qla2x00_request_firmware(scsi_qla_host_t *vha) |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5286 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5287 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5288 | struct fw_blob *blob; |
| 5289 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5290 | if (IS_QLA2100(ha)) { |
| 5291 | blob = &qla_fw_blobs[FW_ISP21XX]; |
| 5292 | } else if (IS_QLA2200(ha)) { |
| 5293 | blob = &qla_fw_blobs[FW_ISP22XX]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5294 | } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5295 | blob = &qla_fw_blobs[FW_ISP2300]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5296 | } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5297 | blob = &qla_fw_blobs[FW_ISP2322]; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5298 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5299 | blob = &qla_fw_blobs[FW_ISP24XX]; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5300 | } else if (IS_QLA25XX(ha)) { |
| 5301 | blob = &qla_fw_blobs[FW_ISP25XX]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5302 | } else if (IS_QLA81XX(ha)) { |
| 5303 | blob = &qla_fw_blobs[FW_ISP81XX]; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5304 | } else if (IS_QLA82XX(ha)) { |
| 5305 | blob = &qla_fw_blobs[FW_ISP82XX]; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5306 | } else if (IS_QLA2031(ha)) { |
| 5307 | blob = &qla_fw_blobs[FW_ISP2031]; |
| 5308 | } else if (IS_QLA8031(ha)) { |
| 5309 | blob = &qla_fw_blobs[FW_ISP8031]; |
Dan Carpenter | 8a65522 | 2012-02-21 10:29:40 +0300 | [diff] [blame] | 5310 | } else { |
| 5311 | return NULL; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5312 | } |
| 5313 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5314 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5315 | if (blob->fw) |
| 5316 | goto out; |
| 5317 | |
| 5318 | if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5319 | ql_log(ql_log_warn, vha, 0x0063, |
| 5320 | "Failed to load firmware image (%s).\n", blob->name); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5321 | blob->fw = NULL; |
| 5322 | blob = NULL; |
| 5323 | goto out; |
| 5324 | } |
| 5325 | |
| 5326 | out: |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5327 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5328 | return blob; |
| 5329 | } |
| 5330 | |
| 5331 | static void |
| 5332 | qla2x00_release_firmware(void) |
| 5333 | { |
| 5334 | int idx; |
| 5335 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5336 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5337 | for (idx = 0; idx < FW_BLOBS; idx++) |
Jesper Juhl | cf92549 | 2012-04-09 22:51:41 +0200 | [diff] [blame] | 5338 | release_firmware(qla_fw_blobs[idx].fw); |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5339 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5340 | } |
| 5341 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5342 | static pci_ers_result_t |
| 5343 | qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) |
| 5344 | { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5345 | scsi_qla_host_t *vha = pci_get_drvdata(pdev); |
| 5346 | struct qla_hw_data *ha = vha->hw; |
| 5347 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5348 | ql_dbg(ql_dbg_aer, vha, 0x9000, |
| 5349 | "PCI error detected, state %x.\n", state); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 5350 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5351 | switch (state) { |
| 5352 | case pci_channel_io_normal: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5353 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5354 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 5355 | case pci_channel_io_frozen: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5356 | ha->flags.eeh_busy = 1; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5357 | /* For ISP82XX complete any pending mailbox cmd */ |
| 5358 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5359 | ha->flags.isp82xx_fw_hung = 1; |
Chad Dupuis | c8f6544 | 2011-11-18 09:02:17 -0800 | [diff] [blame] | 5360 | ql_dbg(ql_dbg_aer, vha, 0x9001, "Pci channel io frozen\n"); |
| 5361 | qla82xx_clear_pending_mbx(vha); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5362 | } |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5363 | qla2x00_free_irqs(vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5364 | pci_disable_device(pdev); |
Lalit Chandivade | bddd2d6 | 2010-09-03 15:20:53 -0700 | [diff] [blame] | 5365 | /* Return back all IOs */ |
| 5366 | qla2x00_abort_all_cmds(vha, DID_RESET << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5367 | return PCI_ERS_RESULT_NEED_RESET; |
| 5368 | case pci_channel_io_perm_failure: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5369 | ha->flags.pci_channel_io_perm_failure = 1; |
| 5370 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5371 | return PCI_ERS_RESULT_DISCONNECT; |
| 5372 | } |
| 5373 | return PCI_ERS_RESULT_NEED_RESET; |
| 5374 | } |
| 5375 | |
| 5376 | static pci_ers_result_t |
| 5377 | qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) |
| 5378 | { |
| 5379 | int risc_paused = 0; |
| 5380 | uint32_t stat; |
| 5381 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5382 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5383 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5384 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 5385 | struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; |
| 5386 | |
Saurav Kashyap | bcc5b6d | 2010-09-03 15:20:57 -0700 | [diff] [blame] | 5387 | if (IS_QLA82XX(ha)) |
| 5388 | return PCI_ERS_RESULT_RECOVERED; |
| 5389 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5390 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 5391 | if (IS_QLA2100(ha) || IS_QLA2200(ha)){ |
| 5392 | stat = RD_REG_DWORD(®->hccr); |
| 5393 | if (stat & HCCR_RISC_PAUSE) |
| 5394 | risc_paused = 1; |
| 5395 | } else if (IS_QLA23XX(ha)) { |
| 5396 | stat = RD_REG_DWORD(®->u.isp2300.host_status); |
| 5397 | if (stat & HSR_RISC_PAUSED) |
| 5398 | risc_paused = 1; |
| 5399 | } else if (IS_FWI2_CAPABLE(ha)) { |
| 5400 | stat = RD_REG_DWORD(®24->host_status); |
| 5401 | if (stat & HSRX_RISC_PAUSED) |
| 5402 | risc_paused = 1; |
| 5403 | } |
| 5404 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 5405 | |
| 5406 | if (risc_paused) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5407 | ql_log(ql_log_info, base_vha, 0x9003, |
| 5408 | "RISC paused -- mmio_enabled, Dumping firmware.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5409 | ha->isp_ops->fw_dump(base_vha, 0); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5410 | |
| 5411 | return PCI_ERS_RESULT_NEED_RESET; |
| 5412 | } else |
| 5413 | return PCI_ERS_RESULT_RECOVERED; |
| 5414 | } |
| 5415 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 5416 | static uint32_t |
| 5417 | qla82xx_error_recovery(scsi_qla_host_t *base_vha) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5418 | { |
| 5419 | uint32_t rval = QLA_FUNCTION_FAILED; |
| 5420 | uint32_t drv_active = 0; |
| 5421 | struct qla_hw_data *ha = base_vha->hw; |
| 5422 | int fn; |
| 5423 | struct pci_dev *other_pdev = NULL; |
| 5424 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5425 | ql_dbg(ql_dbg_aer, base_vha, 0x9006, |
| 5426 | "Entered %s.\n", __func__); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5427 | |
| 5428 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5429 | |
| 5430 | if (base_vha->flags.online) { |
| 5431 | /* Abort all outstanding commands, |
| 5432 | * so as to be requeued later */ |
| 5433 | qla2x00_abort_isp_cleanup(base_vha); |
| 5434 | } |
| 5435 | |
| 5436 | |
| 5437 | fn = PCI_FUNC(ha->pdev->devfn); |
| 5438 | while (fn > 0) { |
| 5439 | fn--; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5440 | ql_dbg(ql_dbg_aer, base_vha, 0x9007, |
| 5441 | "Finding pci device at function = 0x%x.\n", fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5442 | other_pdev = |
| 5443 | pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus), |
| 5444 | ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn), |
| 5445 | fn)); |
| 5446 | |
| 5447 | if (!other_pdev) |
| 5448 | continue; |
| 5449 | if (atomic_read(&other_pdev->enable_cnt)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5450 | ql_dbg(ql_dbg_aer, base_vha, 0x9008, |
| 5451 | "Found PCI func available and enable at 0x%x.\n", |
| 5452 | fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5453 | pci_dev_put(other_pdev); |
| 5454 | break; |
| 5455 | } |
| 5456 | pci_dev_put(other_pdev); |
| 5457 | } |
| 5458 | |
| 5459 | if (!fn) { |
| 5460 | /* Reset owner */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5461 | ql_dbg(ql_dbg_aer, base_vha, 0x9009, |
| 5462 | "This devfn is reset owner = 0x%x.\n", |
| 5463 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5464 | qla82xx_idc_lock(ha); |
| 5465 | |
| 5466 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5467 | QLA8XXX_DEV_INITIALIZING); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5468 | |
| 5469 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION, |
| 5470 | QLA82XX_IDC_VERSION); |
| 5471 | |
| 5472 | drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5473 | ql_dbg(ql_dbg_aer, base_vha, 0x900a, |
| 5474 | "drv_active = 0x%x.\n", drv_active); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5475 | |
| 5476 | qla82xx_idc_unlock(ha); |
| 5477 | /* Reset if device is not already reset |
| 5478 | * drv_active would be 0 if a reset has already been done |
| 5479 | */ |
| 5480 | if (drv_active) |
| 5481 | rval = qla82xx_start_firmware(base_vha); |
| 5482 | else |
| 5483 | rval = QLA_SUCCESS; |
| 5484 | qla82xx_idc_lock(ha); |
| 5485 | |
| 5486 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5487 | ql_log(ql_log_info, base_vha, 0x900b, |
| 5488 | "HW State: FAILED.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5489 | qla82xx_clear_drv_active(ha); |
| 5490 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5491 | QLA8XXX_DEV_FAILED); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5492 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5493 | ql_log(ql_log_info, base_vha, 0x900c, |
| 5494 | "HW State: READY.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5495 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5496 | QLA8XXX_DEV_READY); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5497 | qla82xx_idc_unlock(ha); |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5498 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5499 | rval = qla82xx_restart_isp(base_vha); |
| 5500 | qla82xx_idc_lock(ha); |
| 5501 | /* Clear driver state register */ |
| 5502 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0); |
| 5503 | qla82xx_set_drv_active(base_vha); |
| 5504 | } |
| 5505 | qla82xx_idc_unlock(ha); |
| 5506 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5507 | ql_dbg(ql_dbg_aer, base_vha, 0x900d, |
| 5508 | "This devfn is not reset owner = 0x%x.\n", |
| 5509 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5510 | if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) == |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5511 | QLA8XXX_DEV_READY)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5512 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5513 | rval = qla82xx_restart_isp(base_vha); |
| 5514 | qla82xx_idc_lock(ha); |
| 5515 | qla82xx_set_drv_active(base_vha); |
| 5516 | qla82xx_idc_unlock(ha); |
| 5517 | } |
| 5518 | } |
| 5519 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5520 | |
| 5521 | return rval; |
| 5522 | } |
| 5523 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5524 | static pci_ers_result_t |
| 5525 | qla2xxx_pci_slot_reset(struct pci_dev *pdev) |
| 5526 | { |
| 5527 | pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5528 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5529 | struct qla_hw_data *ha = base_vha->hw; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5530 | struct rsp_que *rsp; |
| 5531 | int rc, retries = 10; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5532 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5533 | ql_dbg(ql_dbg_aer, base_vha, 0x9004, |
| 5534 | "Slot Reset.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5535 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5536 | /* Workaround: qla2xxx driver which access hardware earlier |
| 5537 | * needs error state to be pci_channel_io_online. |
| 5538 | * Otherwise mailbox command timesout. |
| 5539 | */ |
| 5540 | pdev->error_state = pci_channel_io_normal; |
| 5541 | |
| 5542 | pci_restore_state(pdev); |
| 5543 | |
Richard Lary | 8c1496b | 2010-02-18 10:07:29 -0800 | [diff] [blame] | 5544 | /* pci_restore_state() clears the saved_state flag of the device |
| 5545 | * save restored state which resets saved_state flag |
| 5546 | */ |
| 5547 | pci_save_state(pdev); |
| 5548 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 5549 | if (ha->mem_only) |
| 5550 | rc = pci_enable_device_mem(pdev); |
| 5551 | else |
| 5552 | rc = pci_enable_device(pdev); |
| 5553 | |
| 5554 | if (rc) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5555 | ql_log(ql_log_warn, base_vha, 0x9005, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5556 | "Can't re-enable PCI device after reset.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5557 | goto exit_slot_reset; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5558 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5559 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5560 | rsp = ha->rsp_q_map[0]; |
| 5561 | if (qla2x00_request_irqs(ha, rsp)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5562 | goto exit_slot_reset; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5563 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5564 | if (ha->isp_ops->pci_config(base_vha)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5565 | goto exit_slot_reset; |
| 5566 | |
| 5567 | if (IS_QLA82XX(ha)) { |
| 5568 | if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) { |
| 5569 | ret = PCI_ERS_RESULT_RECOVERED; |
| 5570 | goto exit_slot_reset; |
| 5571 | } else |
| 5572 | goto exit_slot_reset; |
| 5573 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5574 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5575 | while (ha->flags.mbox_busy && retries--) |
| 5576 | msleep(1000); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5577 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5578 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5579 | if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5580 | ret = PCI_ERS_RESULT_RECOVERED; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5581 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5582 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5583 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5584 | exit_slot_reset: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5585 | ql_dbg(ql_dbg_aer, base_vha, 0x900e, |
| 5586 | "slot_reset return %x.\n", ret); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5587 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5588 | return ret; |
| 5589 | } |
| 5590 | |
| 5591 | static void |
| 5592 | qla2xxx_pci_resume(struct pci_dev *pdev) |
| 5593 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5594 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5595 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5596 | int ret; |
| 5597 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5598 | ql_dbg(ql_dbg_aer, base_vha, 0x900f, |
| 5599 | "pci_resume.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5600 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5601 | ret = qla2x00_wait_for_hba_online(base_vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5602 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5603 | ql_log(ql_log_fatal, base_vha, 0x9002, |
| 5604 | "The device failed to resume I/O from slot/link_reset.\n"); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5605 | } |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5606 | |
Lalit Chandivade | 3e46f03 | 2010-05-04 15:01:23 -0700 | [diff] [blame] | 5607 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 5608 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5609 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5610 | } |
| 5611 | |
Stephen Hemminger | a55b2d2 | 2012-09-07 09:33:16 -0700 | [diff] [blame] | 5612 | static const struct pci_error_handlers qla2xxx_err_handler = { |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5613 | .error_detected = qla2xxx_pci_error_detected, |
| 5614 | .mmio_enabled = qla2xxx_pci_mmio_enabled, |
| 5615 | .slot_reset = qla2xxx_pci_slot_reset, |
| 5616 | .resume = qla2xxx_pci_resume, |
| 5617 | }; |
| 5618 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5619 | static struct pci_device_id qla2xxx_pci_tbl[] = { |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5620 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, |
| 5621 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, |
| 5622 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, |
| 5623 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, |
| 5624 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, |
| 5625 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, |
| 5626 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, |
| 5627 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, |
| 5628 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5629 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5630 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, |
| 5631 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5632 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5633 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5634 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5635 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) }, |
Chad Dupuis | 650f528 | 2012-08-22 14:20:55 -0400 | [diff] [blame] | 5636 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) }, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5637 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) }, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5638 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5639 | { 0 }, |
| 5640 | }; |
| 5641 | MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); |
| 5642 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5643 | static struct pci_driver qla2xxx_pci_driver = { |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 5644 | .name = QLA2XXX_DRIVER_NAME, |
James Bottomley | 0a21ef1 | 2005-12-01 12:51:50 -0600 | [diff] [blame] | 5645 | .driver = { |
| 5646 | .owner = THIS_MODULE, |
| 5647 | }, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5648 | .id_table = qla2xxx_pci_tbl, |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5649 | .probe = qla2x00_probe_one, |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 5650 | .remove = qla2x00_remove_one, |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 5651 | .shutdown = qla2x00_shutdown, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5652 | .err_handler = &qla2xxx_err_handler, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5653 | }; |
| 5654 | |
Al Viro | 75ef9de | 2013-04-04 19:09:41 -0400 | [diff] [blame] | 5655 | static const struct file_operations apidev_fops = { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5656 | .owner = THIS_MODULE, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 5657 | .llseek = noop_llseek, |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5658 | }; |
| 5659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5660 | /** |
| 5661 | * qla2x00_module_init - Module initialization. |
| 5662 | **/ |
| 5663 | static int __init |
| 5664 | qla2x00_module_init(void) |
| 5665 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5666 | int ret = 0; |
| 5667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5668 | /* Allocate cache for SRBs. */ |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5669 | srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5670 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5671 | if (srb_cachep == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5672 | ql_log(ql_log_fatal, NULL, 0x0001, |
| 5673 | "Unable to allocate SRB cache...Failing load!.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5674 | return -ENOMEM; |
| 5675 | } |
| 5676 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5677 | /* Initialize target kmem_cache and mem_pools */ |
| 5678 | ret = qlt_init(); |
| 5679 | if (ret < 0) { |
| 5680 | kmem_cache_destroy(srb_cachep); |
| 5681 | return ret; |
| 5682 | } else if (ret > 0) { |
| 5683 | /* |
| 5684 | * If initiator mode is explictly disabled by qlt_init(), |
| 5685 | * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from |
| 5686 | * performing scsi_scan_target() during LOOP UP event. |
| 5687 | */ |
| 5688 | qla2xxx_transport_functions.disable_target_scan = 1; |
| 5689 | qla2xxx_transport_vport_functions.disable_target_scan = 1; |
| 5690 | } |
| 5691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5692 | /* Derive version string. */ |
| 5693 | strcpy(qla2x00_version_str, QLA2XXX_VERSION); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 5694 | if (ql2xextended_error_logging) |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 5695 | strcat(qla2x00_version_str, "-debug"); |
| 5696 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 5697 | qla2xxx_transport_template = |
| 5698 | fc_attach_transport(&qla2xxx_transport_functions); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5699 | if (!qla2xxx_transport_template) { |
| 5700 | kmem_cache_destroy(srb_cachep); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5701 | ql_log(ql_log_fatal, NULL, 0x0002, |
| 5702 | "fc_attach_transport failed...Failing load!.\n"); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5703 | qlt_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5704 | return -ENODEV; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5705 | } |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5706 | |
| 5707 | apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops); |
| 5708 | if (apidev_major < 0) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5709 | ql_log(ql_log_fatal, NULL, 0x0003, |
| 5710 | "Unable to register char device %s.\n", QLA2XXX_APIDEV); |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5711 | } |
| 5712 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5713 | qla2xxx_transport_vport_template = |
| 5714 | fc_attach_transport(&qla2xxx_transport_vport_functions); |
| 5715 | if (!qla2xxx_transport_vport_template) { |
| 5716 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5717 | qlt_exit(); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5718 | fc_release_transport(qla2xxx_transport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5719 | ql_log(ql_log_fatal, NULL, 0x0004, |
| 5720 | "fc_attach_transport vport failed...Failing load!.\n"); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5721 | return -ENODEV; |
| 5722 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5723 | ql_log(ql_log_info, NULL, 0x0005, |
| 5724 | "QLogic Fibre Channel HBA Driver: %s.\n", |
Andrew Vasquez | fd9a29f0 | 2008-05-12 22:21:08 -0700 | [diff] [blame] | 5725 | qla2x00_version_str); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5726 | ret = pci_register_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5727 | if (ret) { |
| 5728 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5729 | qlt_exit(); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5730 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5731 | fc_release_transport(qla2xxx_transport_vport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5732 | ql_log(ql_log_fatal, NULL, 0x0006, |
| 5733 | "pci_register_driver failed...ret=%d Failing load!.\n", |
| 5734 | ret); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5735 | } |
| 5736 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5737 | } |
| 5738 | |
| 5739 | /** |
| 5740 | * qla2x00_module_exit - Module cleanup. |
| 5741 | **/ |
| 5742 | static void __exit |
| 5743 | qla2x00_module_exit(void) |
| 5744 | { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5745 | unregister_chrdev(apidev_major, QLA2XXX_APIDEV); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5746 | pci_unregister_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5747 | qla2x00_release_firmware(); |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5748 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5749 | qlt_exit(); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5750 | if (ctx_cachep) |
| 5751 | kmem_cache_destroy(ctx_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5752 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5753 | fc_release_transport(qla2xxx_transport_vport_template); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5754 | } |
| 5755 | |
| 5756 | module_init(qla2x00_module_init); |
| 5757 | module_exit(qla2x00_module_exit); |
| 5758 | |
| 5759 | MODULE_AUTHOR("QLogic Corporation"); |
| 5760 | MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); |
| 5761 | MODULE_LICENSE("GPL"); |
| 5762 | MODULE_VERSION(QLA2XXX_VERSION); |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5763 | MODULE_FIRMWARE(FW_FILE_ISP21XX); |
| 5764 | MODULE_FIRMWARE(FW_FILE_ISP22XX); |
| 5765 | MODULE_FIRMWARE(FW_FILE_ISP2300); |
| 5766 | MODULE_FIRMWARE(FW_FILE_ISP2322); |
| 5767 | MODULE_FIRMWARE(FW_FILE_ISP24XX); |
Andrew Vasquez | 61623fc | 2008-01-31 12:33:45 -0800 | [diff] [blame] | 5768 | MODULE_FIRMWARE(FW_FILE_ISP25XX); |