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 |
Armen Baloyan | bd21eaf | 2014-04-11 16:54:24 -0400 | [diff] [blame] | 3 | * Copyright (c) 2003-2014 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, |
Steven J. Magnani | b97f5d0 | 2014-02-04 12:50:35 -0600 | [diff] [blame] | 123 | " Enable T10-CRC-DIF:\n" |
| 124 | " Default is 2.\n" |
| 125 | " 0 -- No DIF Support\n" |
| 126 | " 1 -- Enable DIF for all types\n" |
| 127 | " 2 -- Enable DIF for all types, except Type 0.\n"); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 128 | |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 129 | int ql2xenablehba_err_chk = 2; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 130 | module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR); |
| 131 | MODULE_PARM_DESC(ql2xenablehba_err_chk, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 132 | " Enable T10-CRC-DIF Error isolation by HBA:\n" |
Steven J. Magnani | b97f5d0 | 2014-02-04 12:50:35 -0600 | [diff] [blame] | 133 | " Default is 2.\n" |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 134 | " 0 -- Error isolation disabled\n" |
| 135 | " 1 -- Error isolation enabled only for DIX Type 0\n" |
| 136 | " 2 -- Error isolation enabled for all Types\n"); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 137 | |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 138 | int ql2xiidmaenable=1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 139 | module_param(ql2xiidmaenable, int, S_IRUGO); |
Andrew Vasquez | e5896bd | 2008-07-10 16:55:52 -0700 | [diff] [blame] | 140 | MODULE_PARM_DESC(ql2xiidmaenable, |
| 141 | "Enables iIDMA settings " |
| 142 | "Default is 1 - perform iIDMA. 0 - no iIDMA."); |
| 143 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 144 | int ql2xmaxqueues = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 145 | module_param(ql2xmaxqueues, int, S_IRUGO); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 146 | MODULE_PARM_DESC(ql2xmaxqueues, |
| 147 | "Enables MQ settings " |
Joe Perches | ae68230 | 2010-08-10 18:01:21 -0700 | [diff] [blame] | 148 | "Default is 1 for single queue. Set it to number " |
| 149 | "of queues in MQ mode."); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 150 | |
| 151 | int ql2xmultique_tag; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 152 | module_param(ql2xmultique_tag, int, S_IRUGO); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 153 | MODULE_PARM_DESC(ql2xmultique_tag, |
| 154 | "Enables CPU affinity settings for the driver " |
| 155 | "Default is 0 for no affinity of request and response IO. " |
| 156 | "Set it to 1 to turn on the cpu affinity."); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 157 | |
| 158 | int ql2xfwloadbin; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 159 | module_param(ql2xfwloadbin, int, S_IRUGO|S_IWUSR); |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 160 | MODULE_PARM_DESC(ql2xfwloadbin, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 161 | "Option to specify location from which to load ISP firmware:.\n" |
| 162 | " 2 -- load firmware via the request_firmware() (hotplug).\n" |
Andrew Vasquez | e337d90 | 2009-04-06 22:33:49 -0700 | [diff] [blame] | 163 | " interface.\n" |
| 164 | " 1 -- load firmware from flash.\n" |
| 165 | " 0 -- use default semantics.\n"); |
| 166 | |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 167 | int ql2xetsenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 168 | module_param(ql2xetsenable, int, S_IRUGO); |
Andrew Vasquez | ae97c91 | 2010-02-18 10:07:28 -0800 | [diff] [blame] | 169 | MODULE_PARM_DESC(ql2xetsenable, |
| 170 | "Enables firmware ETS burst." |
| 171 | "Default is 0 - skip ETS enablement."); |
| 172 | |
Giridhar Malavali | 6907869 | 2010-05-28 15:08:28 -0700 | [diff] [blame] | 173 | int ql2xdbwr = 1; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 174 | module_param(ql2xdbwr, int, S_IRUGO|S_IWUSR); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 175 | MODULE_PARM_DESC(ql2xdbwr, |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 176 | "Option to specify scheme for request queue posting.\n" |
| 177 | " 0 -- Regular doorbell.\n" |
| 178 | " 1 -- CAMRAM doorbell (faster).\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 179 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 180 | int ql2xtargetreset = 1; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 181 | module_param(ql2xtargetreset, int, S_IRUGO); |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 182 | MODULE_PARM_DESC(ql2xtargetreset, |
| 183 | "Enable target reset." |
| 184 | "Default is 1 - use hw defaults."); |
| 185 | |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 186 | int ql2xgffidenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 187 | module_param(ql2xgffidenable, int, S_IRUGO); |
Chad Dupuis | 4da26e1 | 2010-10-15 11:27:40 -0700 | [diff] [blame] | 188 | MODULE_PARM_DESC(ql2xgffidenable, |
| 189 | "Enables GFF_ID checks of port type. " |
| 190 | "Default is 0 - Do not use GFF_ID information."); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 191 | |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 192 | int ql2xasynctmfenable; |
Joe Carnuccio | f2019cb | 2010-12-21 16:00:22 -0800 | [diff] [blame] | 193 | module_param(ql2xasynctmfenable, int, S_IRUGO); |
Madhuranath Iyengar | 3822263 | 2010-05-04 15:01:29 -0700 | [diff] [blame] | 194 | MODULE_PARM_DESC(ql2xasynctmfenable, |
| 195 | "Enables issue of TM IOCBs asynchronously via IOCB mechanism" |
| 196 | "Default is 0 - Issue TM IOCBs via mailbox mechanism."); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 197 | |
| 198 | int ql2xdontresethba; |
Chad Dupuis | 86e45bf | 2011-08-16 11:31:47 -0700 | [diff] [blame] | 199 | module_param(ql2xdontresethba, int, S_IRUGO|S_IWUSR); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 200 | MODULE_PARM_DESC(ql2xdontresethba, |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 201 | "Option to specify reset behaviour.\n" |
| 202 | " 0 (Default) -- Reset on failure.\n" |
| 203 | " 1 -- Do not reset on failure.\n"); |
Giridhar Malavali | ed0de87 | 2011-03-30 11:46:29 -0700 | [diff] [blame] | 204 | |
Andrew Vasquez | 8251592 | 2011-05-10 11:30:13 -0700 | [diff] [blame] | 205 | uint ql2xmaxlun = MAX_LUNS; |
| 206 | module_param(ql2xmaxlun, uint, S_IRUGO); |
| 207 | MODULE_PARM_DESC(ql2xmaxlun, |
| 208 | "Defines the maximum LU number to register with the SCSI " |
| 209 | "midlayer. Default is 65535."); |
| 210 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 211 | int ql2xmdcapmask = 0x1F; |
| 212 | module_param(ql2xmdcapmask, int, S_IRUGO); |
| 213 | MODULE_PARM_DESC(ql2xmdcapmask, |
| 214 | "Set the Minidump driver capture mask level. " |
Giridhar Malavali | 6e96fa7 | 2011-11-18 09:03:14 -0800 | [diff] [blame] | 215 | "Default is 0x1F - Can be set to 0x3, 0x7, 0xF, 0x1F, 0x7F."); |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 216 | |
Giridhar Malavali | 3aadff3 | 2011-11-18 09:02:14 -0800 | [diff] [blame] | 217 | int ql2xmdenable = 1; |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 218 | module_param(ql2xmdenable, int, S_IRUGO); |
| 219 | MODULE_PARM_DESC(ql2xmdenable, |
| 220 | "Enable/disable MiniDump. " |
Giridhar Malavali | 3aadff3 | 2011-11-18 09:02:14 -0800 | [diff] [blame] | 221 | "0 - MiniDump disabled. " |
| 222 | "1 (Default) - MiniDump enabled."); |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | /* |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 225 | * SCSI host template entry points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | */ |
| 227 | static int qla2xxx_slave_configure(struct scsi_device * device); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 228 | static int qla2xxx_slave_alloc(struct scsi_device *); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 229 | static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time); |
| 230 | static void qla2xxx_scan_start(struct Scsi_Host *); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 231 | static void qla2xxx_slave_destroy(struct scsi_device *); |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 232 | static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | static int qla2xxx_eh_abort(struct scsi_cmnd *); |
| 234 | static int qla2xxx_eh_device_reset(struct scsi_cmnd *); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 235 | static int qla2xxx_eh_target_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | static int qla2xxx_eh_bus_reset(struct scsi_cmnd *); |
| 237 | static int qla2xxx_eh_host_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 239 | static int qla2x00_change_queue_depth(struct scsi_device *, int, int); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 240 | static int qla2x00_change_queue_type(struct scsi_device *, int); |
Saurav Kashyap | 3491255 | 2013-06-25 11:27:18 -0400 | [diff] [blame] | 241 | static void qla2x00_free_device(scsi_qla_host_t *); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 242 | |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 243 | struct scsi_host_template qla2xxx_driver_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | .module = THIS_MODULE, |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 245 | .name = QLA2XXX_DRIVER_NAME, |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 246 | .queuecommand = qla2xxx_queuecommand, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 247 | |
| 248 | .eh_abort_handler = qla2xxx_eh_abort, |
| 249 | .eh_device_reset_handler = qla2xxx_eh_device_reset, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 250 | .eh_target_reset_handler = qla2xxx_eh_target_reset, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 251 | .eh_bus_reset_handler = qla2xxx_eh_bus_reset, |
| 252 | .eh_host_reset_handler = qla2xxx_eh_host_reset, |
| 253 | |
| 254 | .slave_configure = qla2xxx_slave_configure, |
| 255 | |
| 256 | .slave_alloc = qla2xxx_slave_alloc, |
| 257 | .slave_destroy = qla2xxx_slave_destroy, |
Andrew Vasquez | ed67708 | 2007-03-12 10:41:27 -0700 | [diff] [blame] | 258 | .scan_finished = qla2xxx_scan_finished, |
| 259 | .scan_start = qla2xxx_scan_start, |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 260 | .change_queue_depth = qla2x00_change_queue_depth, |
| 261 | .change_queue_type = qla2x00_change_queue_type, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 262 | .this_id = -1, |
| 263 | .cmd_per_lun = 3, |
| 264 | .use_clustering = ENABLE_CLUSTERING, |
| 265 | .sg_tablesize = SG_ALL, |
| 266 | |
| 267 | .max_sectors = 0xFFFF, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 268 | .shost_attrs = qla2x00_host_attrs, |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 269 | |
| 270 | .supported_mode = MODE_INITIATOR, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 271 | }; |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | static struct scsi_transport_template *qla2xxx_transport_template = NULL; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 274 | struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* TODO Convert to inlines |
| 277 | * |
| 278 | * Timer routines |
| 279 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 281 | __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 282 | 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] | 283 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 284 | init_timer(&vha->timer); |
| 285 | vha->timer.expires = jiffies + interval * HZ; |
| 286 | vha->timer.data = (unsigned long)vha; |
| 287 | vha->timer.function = (void (*)(unsigned long))func; |
| 288 | add_timer(&vha->timer); |
| 289 | vha->timer_active = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 293 | qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 295 | /* Currently used for 82XX only. */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 296 | if (vha->device_flags & DFLG_DEV_FAILED) { |
| 297 | ql_dbg(ql_dbg_timer, vha, 0x600d, |
| 298 | "Device in a failed state, returning.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 299 | return; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 300 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 301 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 302 | mod_timer(&vha->timer, jiffies + interval * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 305 | static __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 306 | qla2x00_stop_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 308 | del_timer_sync(&vha->timer); |
| 309 | vha->timer_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | static int qla2x00_do_dpc(void *data); |
| 313 | |
| 314 | static void qla2x00_rst_aen(scsi_qla_host_t *); |
| 315 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 316 | static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, |
| 317 | struct req_que **, struct rsp_que **); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 318 | static void qla2x00_free_fw_dump(struct qla_hw_data *); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 319 | static void qla2x00_mem_free(struct qla_hw_data *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | /* -------------------------------------------------------------------------- */ |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 322 | static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req, |
| 323 | struct rsp_que *rsp) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 324 | { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 325 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 326 | 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] | 327 | GFP_KERNEL); |
| 328 | if (!ha->req_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 329 | ql_log(ql_log_fatal, vha, 0x003b, |
| 330 | "Unable to allocate memory for request queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 331 | goto fail_req_map; |
| 332 | } |
| 333 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 334 | 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] | 335 | GFP_KERNEL); |
| 336 | if (!ha->rsp_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 337 | ql_log(ql_log_fatal, vha, 0x003c, |
| 338 | "Unable to allocate memory for response queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 339 | goto fail_rsp_map; |
| 340 | } |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 341 | /* |
| 342 | * Make sure we record at least the request and response queue zero in |
| 343 | * case we need to free them if part of the probe fails. |
| 344 | */ |
| 345 | ha->rsp_q_map[0] = rsp; |
| 346 | ha->req_q_map[0] = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 347 | set_bit(0, ha->rsp_qid_map); |
| 348 | set_bit(0, ha->req_qid_map); |
| 349 | return 1; |
| 350 | |
| 351 | fail_rsp_map: |
| 352 | kfree(ha->req_q_map); |
| 353 | ha->req_q_map = NULL; |
| 354 | fail_req_map: |
| 355 | return -ENOMEM; |
| 356 | } |
| 357 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 358 | 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] | 359 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 360 | if (IS_QLAFX00(ha)) { |
| 361 | if (req && req->ring_fx00) |
| 362 | dma_free_coherent(&ha->pdev->dev, |
| 363 | (req->length_fx00 + 1) * sizeof(request_t), |
| 364 | req->ring_fx00, req->dma_fx00); |
| 365 | } else if (req && req->ring) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 366 | dma_free_coherent(&ha->pdev->dev, |
| 367 | (req->length + 1) * sizeof(request_t), |
| 368 | req->ring, req->dma); |
| 369 | |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 370 | if (req) |
| 371 | kfree(req->outstanding_cmds); |
| 372 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 373 | kfree(req); |
| 374 | req = NULL; |
| 375 | } |
| 376 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 377 | static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) |
| 378 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 379 | if (IS_QLAFX00(ha)) { |
| 380 | if (rsp && rsp->ring) |
| 381 | dma_free_coherent(&ha->pdev->dev, |
| 382 | (rsp->length_fx00 + 1) * sizeof(request_t), |
| 383 | rsp->ring_fx00, rsp->dma_fx00); |
| 384 | } else if (rsp && rsp->ring) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 385 | dma_free_coherent(&ha->pdev->dev, |
| 386 | (rsp->length + 1) * sizeof(response_t), |
| 387 | rsp->ring, rsp->dma); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 388 | } |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 389 | kfree(rsp); |
| 390 | rsp = NULL; |
| 391 | } |
| 392 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 393 | static void qla2x00_free_queues(struct qla_hw_data *ha) |
| 394 | { |
| 395 | struct req_que *req; |
| 396 | struct rsp_que *rsp; |
| 397 | int cnt; |
| 398 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 399 | for (cnt = 0; cnt < ha->max_req_queues; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 400 | req = ha->req_q_map[cnt]; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 401 | qla2x00_free_req_que(ha, req); |
| 402 | } |
| 403 | kfree(ha->req_q_map); |
| 404 | ha->req_q_map = NULL; |
| 405 | |
| 406 | for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { |
| 407 | rsp = ha->rsp_q_map[cnt]; |
| 408 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 409 | } |
| 410 | kfree(ha->rsp_q_map); |
| 411 | ha->rsp_q_map = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 412 | } |
| 413 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 414 | static int qla25xx_setup_mode(struct scsi_qla_host *vha) |
| 415 | { |
| 416 | uint16_t options = 0; |
| 417 | int ques, req, ret; |
| 418 | struct qla_hw_data *ha = vha->hw; |
| 419 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 420 | if (!(ha->fw_attributes & BIT_6)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 421 | ql_log(ql_log_warn, vha, 0x00d8, |
| 422 | "Firmware is not multi-queue capable.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 423 | goto fail; |
| 424 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 425 | if (ql2xmultique_tag) { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 426 | /* create a request queue for IO */ |
| 427 | options |= BIT_7; |
| 428 | req = qla25xx_create_req_que(ha, options, 0, 0, -1, |
| 429 | QLA_DEFAULT_QUE_QOS); |
| 430 | if (!req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 431 | ql_log(ql_log_warn, vha, 0x00e0, |
| 432 | "Failed to create request queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 433 | goto fail; |
| 434 | } |
Tejun Heo | 278274d | 2011-02-01 11:42:42 +0100 | [diff] [blame] | 435 | ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 1); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 436 | vha->req = ha->req_q_map[req]; |
| 437 | options |= BIT_1; |
| 438 | for (ques = 1; ques < ha->max_rsp_queues; ques++) { |
| 439 | ret = qla25xx_create_rsp_que(ha, options, 0, 0, req); |
| 440 | if (!ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 441 | ql_log(ql_log_warn, vha, 0x00e8, |
| 442 | "Failed to create response queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 443 | goto fail2; |
| 444 | } |
| 445 | } |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 446 | ha->flags.cpu_affinity_enabled = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 447 | ql_dbg(ql_dbg_multiq, vha, 0xc007, |
| 448 | "CPU affinity mode enalbed, " |
| 449 | "no. of response queues:%d no. of request queues:%d.\n", |
| 450 | ha->max_rsp_queues, ha->max_req_queues); |
| 451 | ql_dbg(ql_dbg_init, vha, 0x00e9, |
| 452 | "CPU affinity mode enalbed, " |
| 453 | "no. of response queues:%d no. of request queues:%d.\n", |
| 454 | ha->max_rsp_queues, ha->max_req_queues); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 455 | } |
| 456 | return 0; |
| 457 | fail2: |
| 458 | qla25xx_delete_queues(vha); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 459 | destroy_workqueue(ha->wq); |
| 460 | ha->wq = NULL; |
Giridhar Malavali | 0cd33fc | 2011-11-18 09:02:12 -0800 | [diff] [blame] | 461 | vha->req = ha->req_q_map[0]; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 462 | fail: |
| 463 | ha->mqenable = 0; |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 464 | kfree(ha->req_q_map); |
| 465 | kfree(ha->rsp_q_map); |
| 466 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 467 | return 1; |
| 468 | } |
| 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 471 | qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 473 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | static char *pci_bus_modes[] = { |
| 475 | "33", "66", "100", "133", |
| 476 | }; |
| 477 | uint16_t pci_bus; |
| 478 | |
| 479 | strcpy(str, "PCI"); |
| 480 | pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; |
| 481 | if (pci_bus) { |
| 482 | strcat(str, "-X ("); |
| 483 | strcat(str, pci_bus_modes[pci_bus]); |
| 484 | } else { |
| 485 | pci_bus = (ha->pci_attr & BIT_8) >> 8; |
| 486 | strcat(str, " ("); |
| 487 | strcat(str, pci_bus_modes[pci_bus]); |
| 488 | } |
| 489 | strcat(str, " MHz)"); |
| 490 | |
| 491 | return (str); |
| 492 | } |
| 493 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 494 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 495 | qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 496 | { |
| 497 | static char *pci_bus_modes[] = { "33", "66", "100", "133", }; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 498 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 499 | uint32_t pci_bus; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 500 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 501 | if (pci_is_pcie(ha->pdev)) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 502 | char lwstr[6]; |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 503 | uint32_t lstat, lspeed, lwidth; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 504 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 505 | pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat); |
| 506 | lspeed = lstat & PCI_EXP_LNKCAP_SLS; |
| 507 | lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 508 | |
| 509 | strcpy(str, "PCIe ("); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 510 | switch (lspeed) { |
| 511 | case 1: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 512 | strcat(str, "2.5GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 513 | break; |
| 514 | case 2: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 515 | strcat(str, "5.0GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 516 | break; |
| 517 | case 3: |
| 518 | strcat(str, "8.0GT/s "); |
| 519 | break; |
| 520 | default: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 521 | strcat(str, "<unknown> "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 522 | break; |
| 523 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 524 | snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); |
| 525 | strcat(str, lwstr); |
| 526 | |
| 527 | return str; |
| 528 | } |
| 529 | |
| 530 | strcpy(str, "PCI"); |
| 531 | pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; |
| 532 | if (pci_bus == 0 || pci_bus == 8) { |
| 533 | strcat(str, " ("); |
| 534 | strcat(str, pci_bus_modes[pci_bus >> 3]); |
| 535 | } else { |
| 536 | strcat(str, "-X "); |
| 537 | if (pci_bus & BIT_2) |
| 538 | strcat(str, "Mode 2"); |
| 539 | else |
| 540 | strcat(str, "Mode 1"); |
| 541 | strcat(str, " ("); |
| 542 | strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); |
| 543 | } |
| 544 | strcat(str, " MHz)"); |
| 545 | |
| 546 | return str; |
| 547 | } |
| 548 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 549 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 550 | qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | { |
| 552 | char un_str[10]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 553 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | sprintf(str, "%d.%02d.%02d ", ha->fw_major_version, |
| 556 | ha->fw_minor_version, |
| 557 | ha->fw_subminor_version); |
| 558 | |
| 559 | if (ha->fw_attributes & BIT_9) { |
| 560 | strcat(str, "FLX"); |
| 561 | return (str); |
| 562 | } |
| 563 | |
| 564 | switch (ha->fw_attributes & 0xFF) { |
| 565 | case 0x7: |
| 566 | strcat(str, "EF"); |
| 567 | break; |
| 568 | case 0x17: |
| 569 | strcat(str, "TP"); |
| 570 | break; |
| 571 | case 0x37: |
| 572 | strcat(str, "IP"); |
| 573 | break; |
| 574 | case 0x77: |
| 575 | strcat(str, "VI"); |
| 576 | break; |
| 577 | default: |
| 578 | sprintf(un_str, "(%x)", ha->fw_attributes); |
| 579 | strcat(str, un_str); |
| 580 | break; |
| 581 | } |
| 582 | if (ha->fw_attributes & 0x100) |
| 583 | strcat(str, "X"); |
| 584 | |
| 585 | return (str); |
| 586 | } |
| 587 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 588 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 589 | qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 590 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 591 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | f0883ac | 2005-07-08 17:58:43 -0700 | [diff] [blame] | 592 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 593 | sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version, |
| 594 | ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 595 | return str; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 598 | void |
| 599 | qla2x00_sp_free_dma(void *vha, void *ptr) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 600 | { |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 601 | srb_t *sp = (srb_t *)ptr; |
| 602 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 603 | struct qla_hw_data *ha = sp->fcport->vha->hw; |
| 604 | void *ctx = GET_CMD_CTX_SP(sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 605 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 606 | if (sp->flags & SRB_DMA_VALID) { |
| 607 | scsi_dma_unmap(cmd); |
| 608 | sp->flags &= ~SRB_DMA_VALID; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 609 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 610 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 611 | if (sp->flags & SRB_CRC_PROT_DMA_VALID) { |
| 612 | dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), |
| 613 | scsi_prot_sg_count(cmd), cmd->sc_data_direction); |
| 614 | sp->flags &= ~SRB_CRC_PROT_DMA_VALID; |
| 615 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 616 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 617 | if (sp->flags & SRB_CRC_CTX_DSD_VALID) { |
| 618 | /* List assured to be having elements */ |
| 619 | qla2x00_clean_dsd_pool(ha, sp); |
| 620 | sp->flags &= ~SRB_CRC_CTX_DSD_VALID; |
| 621 | } |
| 622 | |
| 623 | if (sp->flags & SRB_CRC_CTX_DMA_VALID) { |
| 624 | dma_pool_free(ha->dl_dma_pool, ctx, |
| 625 | ((struct crc_context *)ctx)->crc_ctx_dma); |
| 626 | sp->flags &= ~SRB_CRC_CTX_DMA_VALID; |
| 627 | } |
| 628 | |
| 629 | if (sp->flags & SRB_FCP_CMND_DMA_VALID) { |
| 630 | struct ct6_dsd *ctx1 = (struct ct6_dsd *)ctx; |
| 631 | |
| 632 | dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd, |
| 633 | ctx1->fcp_cmnd_dma); |
| 634 | list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list); |
| 635 | ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt; |
| 636 | ha->gbl_dsd_avail += ctx1->dsd_use_cnt; |
| 637 | mempool_free(ctx1, ha->ctx_mempool); |
| 638 | ctx1 = NULL; |
| 639 | } |
| 640 | |
| 641 | CMD_SP(cmd) = NULL; |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 642 | qla2x00_rel_sp(sp->fcport->vha, sp); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 643 | } |
| 644 | |
Fengguang Wu | 14b0680 | 2013-04-25 01:29:19 -0400 | [diff] [blame] | 645 | static void |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 646 | qla2x00_sp_compl(void *data, void *ptr, int res) |
| 647 | { |
| 648 | struct qla_hw_data *ha = (struct qla_hw_data *)data; |
| 649 | srb_t *sp = (srb_t *)ptr; |
| 650 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 651 | |
| 652 | cmd->result = res; |
| 653 | |
| 654 | if (atomic_read(&sp->ref_count) == 0) { |
| 655 | ql_dbg(ql_dbg_io, sp->fcport->vha, 0x3015, |
| 656 | "SP reference-count to ZERO -- sp=%p cmd=%p.\n", |
| 657 | sp, GET_CMD_SP(sp)); |
| 658 | if (ql2xextended_error_logging & ql_dbg_io) |
| 659 | BUG(); |
| 660 | return; |
| 661 | } |
| 662 | if (!atomic_dec_and_test(&sp->ref_count)) |
| 663 | return; |
| 664 | |
| 665 | qla2x00_sp_free_dma(ha, sp); |
| 666 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 669 | /* If we are SP1 here, we need to still take and release the host_lock as SP1 |
| 670 | * does not have the changes necessary to avoid taking host->host_lock. |
| 671 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | static int |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 673 | qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 674 | { |
Madhuranath Iyengar | 134ae07 | 2011-05-10 11:30:08 -0700 | [diff] [blame] | 675 | scsi_qla_host_t *vha = shost_priv(host); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 676 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 677 | struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 678 | struct qla_hw_data *ha = vha->hw; |
| 679 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 680 | srb_t *sp; |
| 681 | int rval; |
| 682 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 683 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 684 | if (ha->flags.pci_channel_io_perm_failure) { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 685 | ql_dbg(ql_dbg_aer, vha, 0x9010, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 686 | "PCI Channel IO permanent failure, exiting " |
| 687 | "cmd=%p.\n", cmd); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 688 | cmd->result = DID_NO_CONNECT << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 689 | } else { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 690 | ql_dbg(ql_dbg_aer, vha, 0x9011, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 691 | "EEH_Busy, Requeuing the cmd=%p.\n", cmd); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 692 | cmd->result = DID_REQUEUE << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 693 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 694 | goto qc24_fail_command; |
| 695 | } |
| 696 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 697 | rval = fc_remote_port_chkready(rport); |
| 698 | if (rval) { |
| 699 | cmd->result = rval; |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 700 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 701 | "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n", |
| 702 | cmd, rval); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 703 | goto qc24_fail_command; |
| 704 | } |
| 705 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 706 | if (!vha->flags.difdix_supported && |
| 707 | scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 708 | ql_dbg(ql_dbg_io, vha, 0x3004, |
| 709 | "DIF Cap not reg, fail DIF capable cmd's:%p.\n", |
| 710 | cmd); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 711 | cmd->result = DID_NO_CONNECT << 16; |
| 712 | goto qc24_fail_command; |
| 713 | } |
Chad Dupuis | aa651be | 2012-02-09 11:14:04 -0800 | [diff] [blame] | 714 | |
| 715 | if (!fcport) { |
| 716 | cmd->result = DID_NO_CONNECT << 16; |
| 717 | goto qc24_fail_command; |
| 718 | } |
| 719 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 720 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
| 721 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 722 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 723 | ql_dbg(ql_dbg_io, vha, 0x3005, |
| 724 | "Returning DNC, fcport_state=%d loop_state=%d.\n", |
| 725 | atomic_read(&fcport->state), |
| 726 | atomic_read(&base_vha->loop_state)); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 727 | cmd->result = DID_NO_CONNECT << 16; |
| 728 | goto qc24_fail_command; |
| 729 | } |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 730 | goto qc24_target_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 731 | } |
| 732 | |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 733 | sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC); |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 734 | if (!sp) |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 735 | goto qc24_host_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 736 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 737 | sp->u.scmd.cmd = cmd; |
| 738 | sp->type = SRB_SCSI_CMD; |
| 739 | atomic_set(&sp->ref_count, 1); |
| 740 | CMD_SP(cmd) = (void *)sp; |
| 741 | sp->free = qla2x00_sp_free_dma; |
| 742 | sp->done = qla2x00_sp_compl; |
| 743 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 744 | rval = ha->isp_ops->start_scsi(sp); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 745 | if (rval != QLA_SUCCESS) { |
Chad Dupuis | 53016ed | 2012-11-21 02:40:32 -0500 | [diff] [blame] | 746 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 747 | "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 748 | goto qc24_host_busy_free_sp; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 749 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 750 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 751 | return 0; |
| 752 | |
| 753 | qc24_host_busy_free_sp: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 754 | qla2x00_sp_free_dma(ha, sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 755 | |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 756 | qc24_host_busy: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 757 | return SCSI_MLQUEUE_HOST_BUSY; |
| 758 | |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 759 | qc24_target_busy: |
| 760 | return SCSI_MLQUEUE_TARGET_BUSY; |
| 761 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 762 | qc24_fail_command: |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 763 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 764 | |
| 765 | return 0; |
| 766 | } |
| 767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | /* |
| 769 | * qla2x00_eh_wait_on_command |
| 770 | * Waits for the command to be returned by the Firmware for some |
| 771 | * max time. |
| 772 | * |
| 773 | * Input: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | * cmd = Scsi Command to wait on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | * |
| 776 | * Return: |
| 777 | * Not Found : 0 |
| 778 | * Found : 1 |
| 779 | */ |
| 780 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 781 | qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 783 | #define ABORT_POLLING_PERIOD 1000 |
Chad Dupuis | 478c3b0 | 2014-04-11 16:54:35 -0400 | [diff] [blame] | 784 | #define ABORT_WAIT_ITER ((2 * 1000) / (ABORT_POLLING_PERIOD)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 785 | unsigned long wait_iter = ABORT_WAIT_ITER; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 786 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 787 | struct qla_hw_data *ha = vha->hw; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 788 | int ret = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 790 | if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 791 | ql_dbg(ql_dbg_taskm, vha, 0x8005, |
| 792 | "Return:eh_wait.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 793 | return ret; |
| 794 | } |
| 795 | |
Lalit Chandivade | d970432 | 2009-08-25 11:36:18 -0700 | [diff] [blame] | 796 | while (CMD_SP(cmd) && wait_iter--) { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 797 | msleep(ABORT_POLLING_PERIOD); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 798 | } |
| 799 | if (CMD_SP(cmd)) |
| 800 | ret = QLA_FUNCTION_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 802 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | /* |
| 806 | * qla2x00_wait_for_hba_online |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 807 | * Wait till the HBA is online after going through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 809 | * finally HBA is disabled ie marked offline |
| 810 | * |
| 811 | * Input: |
| 812 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 813 | * |
| 814 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | * Does context switching-Release SPIN_LOCK |
| 816 | * (if any) before calling this routine. |
| 817 | * |
| 818 | * Return: |
| 819 | * Success (Adapter is online) : 0 |
| 820 | * Failed (Adapter is offline/disabled) : 1 |
| 821 | */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 822 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 823 | qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 825 | int return_status; |
| 826 | unsigned long wait_online; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 827 | struct qla_hw_data *ha = vha->hw; |
| 828 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 830 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 831 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 832 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 833 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 834 | ha->dpc_active) && time_before(jiffies, wait_online)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
| 836 | msleep(1000); |
| 837 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 838 | if (base_vha->flags.online) |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 839 | return_status = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | else |
| 841 | return_status = QLA_FUNCTION_FAILED; |
| 842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | return (return_status); |
| 844 | } |
| 845 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 846 | /* |
Sawan Chandak | 638a1a0 | 2014-04-11 16:54:38 -0400 | [diff] [blame^] | 847 | * qla2x00_wait_for_hba_ready |
| 848 | * Wait till the HBA is ready before doing driver unload |
| 849 | * |
| 850 | * Input: |
| 851 | * ha - pointer to host adapter structure |
| 852 | * |
| 853 | * Note: |
| 854 | * Does context switching-Release SPIN_LOCK |
| 855 | * (if any) before calling this routine. |
| 856 | * |
| 857 | */ |
| 858 | static void |
| 859 | qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha) |
| 860 | { |
| 861 | struct qla_hw_data *ha = vha->hw; |
| 862 | |
| 863 | while ((!(vha->flags.online) || ha->dpc_active || |
| 864 | ha->flags.mbox_busy)) |
| 865 | msleep(1000); |
| 866 | } |
| 867 | |
| 868 | /* |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 869 | * qla2x00_wait_for_reset_ready |
| 870 | * Wait till the HBA is online after going through |
| 871 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 872 | * finally HBA is disabled ie marked offline or flash |
| 873 | * operations are in progress. |
| 874 | * |
| 875 | * Input: |
| 876 | * ha - pointer to host adapter structure |
| 877 | * |
| 878 | * Note: |
| 879 | * Does context switching-Release SPIN_LOCK |
| 880 | * (if any) before calling this routine. |
| 881 | * |
| 882 | * Return: |
| 883 | * Success (Adapter is online/no flash ops) : 0 |
| 884 | * Failed (Adapter is offline/disabled/flash ops in progress) : 1 |
| 885 | */ |
Andrew Vasquez | 3dbe756 | 2010-07-23 15:28:37 +0500 | [diff] [blame] | 886 | static int |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 887 | qla2x00_wait_for_reset_ready(scsi_qla_host_t *vha) |
| 888 | { |
| 889 | int return_status; |
| 890 | unsigned long wait_online; |
| 891 | struct qla_hw_data *ha = vha->hw; |
| 892 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 893 | |
| 894 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 895 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 896 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 897 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 898 | ha->optrom_state != QLA_SWAITING || |
| 899 | ha->dpc_active) && time_before(jiffies, wait_online)) |
| 900 | msleep(1000); |
| 901 | |
| 902 | if (base_vha->flags.online && ha->optrom_state == QLA_SWAITING) |
| 903 | return_status = QLA_SUCCESS; |
| 904 | else |
| 905 | return_status = QLA_FUNCTION_FAILED; |
| 906 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 907 | ql_dbg(ql_dbg_taskm, vha, 0x8019, |
| 908 | "%s return status=%d.\n", __func__, return_status); |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 909 | |
| 910 | return return_status; |
| 911 | } |
| 912 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 913 | int |
| 914 | qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) |
| 915 | { |
| 916 | int return_status; |
| 917 | unsigned long wait_reset; |
| 918 | struct qla_hw_data *ha = vha->hw; |
| 919 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 920 | |
| 921 | wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 922 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 923 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 924 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 925 | ha->dpc_active) && time_before(jiffies, wait_reset)) { |
| 926 | |
| 927 | msleep(1000); |
| 928 | |
| 929 | if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && |
| 930 | ha->flags.chip_reset_done) |
| 931 | break; |
| 932 | } |
| 933 | if (ha->flags.chip_reset_done) |
| 934 | return_status = QLA_SUCCESS; |
| 935 | else |
| 936 | return_status = QLA_FUNCTION_FAILED; |
| 937 | |
| 938 | return return_status; |
| 939 | } |
| 940 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 941 | static void |
| 942 | sp_get(struct srb *sp) |
| 943 | { |
| 944 | atomic_inc(&sp->ref_count); |
| 945 | } |
| 946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | /************************************************************************** |
| 948 | * qla2xxx_eh_abort |
| 949 | * |
| 950 | * Description: |
| 951 | * The abort function will abort the specified command. |
| 952 | * |
| 953 | * Input: |
| 954 | * cmd = Linux SCSI command packet to be aborted. |
| 955 | * |
| 956 | * Returns: |
| 957 | * Either SUCCESS or FAILED. |
| 958 | * |
| 959 | * Note: |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 960 | * Only return FAILED if command not returned by firmware. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 962 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | qla2xxx_eh_abort(struct scsi_cmnd *cmd) |
| 964 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 965 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 966 | srb_t *sp; |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 967 | int ret; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 968 | unsigned int id, lun; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 969 | unsigned long flags; |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 970 | int rval, wait = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 971 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 973 | if (!CMD_SP(cmd)) |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 974 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 976 | ret = fc_block_scsi_eh(cmd); |
| 977 | if (ret != 0) |
| 978 | return ret; |
| 979 | ret = SUCCESS; |
| 980 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 981 | id = cmd->device->id; |
| 982 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 983 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 984 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 985 | sp = (srb_t *) CMD_SP(cmd); |
| 986 | if (!sp) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 987 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 988 | return SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 989 | } |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 990 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 991 | ql_dbg(ql_dbg_taskm, vha, 0x8002, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 992 | "Aborting from RISC nexus=%ld:%d:%d sp=%p cmd=%p\n", |
| 993 | vha->host_no, id, lun, sp, cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 994 | |
| 995 | /* Get a reference to the sp and drop the lock.*/ |
| 996 | sp_get(sp); |
| 997 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 998 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 999 | rval = ha->isp_ops->abort_command(sp); |
| 1000 | if (rval) { |
| 1001 | if (rval == QLA_FUNCTION_PARAMETER_ERROR) { |
| 1002 | /* |
| 1003 | * Decrement the ref_count since we can't find the |
| 1004 | * command |
| 1005 | */ |
| 1006 | atomic_dec(&sp->ref_count); |
| 1007 | ret = SUCCESS; |
| 1008 | } else |
| 1009 | ret = FAILED; |
| 1010 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1011 | ql_dbg(ql_dbg_taskm, vha, 0x8003, |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 1012 | "Abort command mbx failed cmd=%p, rval=%x.\n", cmd, rval); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 1013 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1014 | ql_dbg(ql_dbg_taskm, vha, 0x8004, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1015 | "Abort command mbx success cmd=%p.\n", cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 1016 | wait = 1; |
| 1017 | } |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 1018 | |
| 1019 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 1020 | /* |
| 1021 | * Clear the slot in the oustanding_cmds array if we can't find the |
| 1022 | * command to reclaim the resources. |
| 1023 | */ |
| 1024 | if (rval == QLA_FUNCTION_PARAMETER_ERROR) |
| 1025 | vha->req->outstanding_cmds[sp->handle] = NULL; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1026 | sp->done(ha, sp, 0); |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 1027 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1028 | |
Chad Dupuis | bc91ade | 2011-08-16 11:29:26 -0700 | [diff] [blame] | 1029 | /* Did the command return during mailbox execution? */ |
| 1030 | if (ret == FAILED && !CMD_SP(cmd)) |
| 1031 | ret = SUCCESS; |
| 1032 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1033 | /* Wait for the command to be returned. */ |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 1034 | if (wait) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1035 | if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1036 | ql_log(ql_log_warn, vha, 0x8006, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1037 | "Abort handler timed out cmd=%p.\n", cmd); |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 1038 | ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1039 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1042 | ql_log(ql_log_info, vha, 0x801c, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1043 | "Abort command issued nexus=%ld:%d:%d -- %d %x.\n", |
| 1044 | vha->host_no, id, lun, wait, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1046 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1049 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1050 | 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] | 1051 | unsigned int l, enum nexus_wait_type type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1053 | int cnt, match, status; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 1054 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1055 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1056 | struct req_que *req; |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1057 | srb_t *sp; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1058 | struct scsi_cmnd *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1060 | status = QLA_SUCCESS; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1061 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1062 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 1063 | req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1064 | for (cnt = 1; status == QLA_SUCCESS && |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1065 | cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1066 | sp = req->outstanding_cmds[cnt]; |
| 1067 | if (!sp) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1068 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1069 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 1070 | continue; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1071 | if (vha->vp_idx != sp->fcport->vha->vp_idx) |
| 1072 | continue; |
| 1073 | match = 0; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1074 | cmd = GET_CMD_SP(sp); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1075 | switch (type) { |
| 1076 | case WAIT_HOST: |
| 1077 | match = 1; |
| 1078 | break; |
| 1079 | case WAIT_TARGET: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1080 | match = cmd->device->id == t; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1081 | break; |
| 1082 | case WAIT_LUN: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1083 | match = (cmd->device->id == t && |
| 1084 | cmd->device->lun == l); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1085 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1087 | if (!match) |
| 1088 | continue; |
| 1089 | |
| 1090 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1091 | status = qla2x00_eh_wait_on_command(cmd); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1092 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1094 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1095 | |
| 1096 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1099 | static char *reset_errors[] = { |
| 1100 | "HBA not online", |
| 1101 | "HBA not ready", |
| 1102 | "Task management failed", |
| 1103 | "Waiting for command completions", |
| 1104 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1106 | static int |
| 1107 | __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1108 | 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] | 1109 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1110 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1111 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
| 1112 | int err; |
| 1113 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1114 | if (!fcport) { |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1115 | return FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1116 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1117 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1118 | err = fc_block_scsi_eh(cmd); |
| 1119 | if (err != 0) |
| 1120 | return err; |
| 1121 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1122 | ql_log(ql_log_info, vha, 0x8009, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1123 | "%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] | 1124 | cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1125 | |
| 1126 | err = 0; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1127 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1128 | ql_log(ql_log_warn, vha, 0x800a, |
| 1129 | "Wait for hba online failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1130 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1131 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1132 | err = 2; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1133 | if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1134 | != QLA_SUCCESS) { |
| 1135 | ql_log(ql_log_warn, vha, 0x800c, |
| 1136 | "do_reset failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1137 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1138 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1139 | err = 3; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1140 | if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1141 | cmd->device->lun, type) != QLA_SUCCESS) { |
| 1142 | ql_log(ql_log_warn, vha, 0x800d, |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1143 | "wait for pending cmds failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1144 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1145 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1146 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1147 | ql_log(ql_log_info, vha, 0x800e, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1148 | "%s RESET SUCCEEDED nexus:%ld:%d:%d cmd=%p.\n", name, |
| 1149 | vha->host_no, cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1150 | |
| 1151 | return SUCCESS; |
| 1152 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1153 | eh_reset_failed: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1154 | ql_log(ql_log_info, vha, 0x800f, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1155 | "%s RESET FAILED: %s nexus=%ld:%d:%d cmd=%p.\n", name, |
| 1156 | reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun, |
| 1157 | cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1158 | return FAILED; |
| 1159 | } |
| 1160 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1161 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) |
| 1163 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1164 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1165 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1167 | return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, |
| 1168 | ha->isp_ops->lun_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | } |
| 1170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | static int |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1172 | qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1174 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1175 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1177 | return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, |
| 1178 | ha->isp_ops->target_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | /************************************************************************** |
| 1182 | * qla2xxx_eh_bus_reset |
| 1183 | * |
| 1184 | * Description: |
| 1185 | * The bus reset function will reset the bus and abort any executing |
| 1186 | * commands. |
| 1187 | * |
| 1188 | * Input: |
| 1189 | * cmd = Linux SCSI command packet of the command that cause the |
| 1190 | * bus reset. |
| 1191 | * |
| 1192 | * Returns: |
| 1193 | * SUCCESS/FAILURE (defined as macro in scsi.h). |
| 1194 | * |
| 1195 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1196 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) |
| 1198 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1199 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1200 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1201 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1202 | unsigned int 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 | id = cmd->device->id; |
| 1205 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1206 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1207 | if (!fcport) { |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1208 | return ret; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1211 | ret = fc_block_scsi_eh(cmd); |
| 1212 | if (ret != 0) |
| 1213 | return ret; |
| 1214 | ret = FAILED; |
| 1215 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1216 | ql_log(ql_log_info, vha, 0x8012, |
Andrew Vasquez | 46270af | 2012-05-15 14:34:17 -0400 | [diff] [blame] | 1217 | "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] | 1218 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1219 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1220 | ql_log(ql_log_fatal, vha, 0x8013, |
| 1221 | "Wait for hba online failed board disabled.\n"); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1222 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | } |
| 1224 | |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1225 | if (qla2x00_loop_reset(vha) == QLA_SUCCESS) |
| 1226 | ret = SUCCESS; |
| 1227 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1228 | if (ret == FAILED) |
| 1229 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1231 | /* Flush outstanding commands. */ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1232 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) != |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1233 | QLA_SUCCESS) { |
| 1234 | ql_log(ql_log_warn, vha, 0x8014, |
| 1235 | "Wait for pending commands failed.\n"); |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1236 | ret = FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1237 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1239 | eh_bus_reset_done: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1240 | ql_log(ql_log_warn, vha, 0x802b, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1241 | "BUS RESET %s nexus=%ld:%d:%d.\n", |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1242 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1244 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | } |
| 1246 | |
| 1247 | /************************************************************************** |
| 1248 | * qla2xxx_eh_host_reset |
| 1249 | * |
| 1250 | * Description: |
| 1251 | * The reset function will reset the Adapter. |
| 1252 | * |
| 1253 | * Input: |
| 1254 | * cmd = Linux SCSI command packet of the command that cause the |
| 1255 | * adapter reset. |
| 1256 | * |
| 1257 | * Returns: |
| 1258 | * Either SUCCESS or FAILED. |
| 1259 | * |
| 1260 | * Note: |
| 1261 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1262 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) |
| 1264 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1265 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1266 | struct qla_hw_data *ha = vha->hw; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1267 | int ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1268 | unsigned int id, lun; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1269 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1271 | id = cmd->device->id; |
| 1272 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1273 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1274 | ql_log(ql_log_info, vha, 0x8018, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1275 | "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] | 1276 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 1277 | if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1278 | goto eh_host_reset_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1280 | if (vha != base_vha) { |
| 1281 | if (qla2x00_vp_abort_isp(vha)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1282 | goto eh_host_reset_lock; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1283 | } else { |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1284 | if (IS_P3P_TYPE(vha->hw)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1285 | if (!qla82xx_fcoe_ctx_reset(vha)) { |
| 1286 | /* Ctx reset success */ |
| 1287 | ret = SUCCESS; |
| 1288 | goto eh_host_reset_lock; |
| 1289 | } |
| 1290 | /* fall thru if ctx reset failed */ |
| 1291 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1292 | if (ha->wq) |
| 1293 | flush_workqueue(ha->wq); |
| 1294 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1295 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1296 | if (ha->isp_ops->abort_isp(base_vha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1297 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1298 | /* failed. schedule dpc to try */ |
| 1299 | set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); |
| 1300 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1301 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1302 | ql_log(ql_log_warn, vha, 0x802a, |
| 1303 | "wait for hba online failed.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1304 | goto eh_host_reset_lock; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1305 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1306 | } |
| 1307 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1308 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1310 | /* Waiting for command to be returned to OS.*/ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1311 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) == |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1312 | QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1313 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1315 | eh_host_reset_lock: |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1316 | ql_log(ql_log_info, vha, 0x8017, |
| 1317 | "ADAPTER RESET %s nexus=%ld:%d:%d.\n", |
| 1318 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1320 | return ret; |
| 1321 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
| 1323 | /* |
| 1324 | * qla2x00_loop_reset |
| 1325 | * Issue loop reset. |
| 1326 | * |
| 1327 | * Input: |
| 1328 | * ha = adapter block pointer. |
| 1329 | * |
| 1330 | * Returns: |
| 1331 | * 0 = success |
| 1332 | */ |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 1333 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1334 | qla2x00_loop_reset(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | { |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1336 | int ret; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1337 | struct fc_port *fcport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1338 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1340 | if (IS_QLAFX00(ha)) { |
| 1341 | return qlafx00_loop_reset(vha); |
| 1342 | } |
| 1343 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 1344 | if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1345 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 1346 | if (fcport->port_type != FCT_TARGET) |
| 1347 | continue; |
| 1348 | |
| 1349 | ret = ha->isp_ops->target_reset(fcport, 0, 0); |
| 1350 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1351 | ql_dbg(ql_dbg_taskm, vha, 0x802c, |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1352 | "Bus Reset failed: Reset=%d " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1353 | "d_id=%x.\n", ret, fcport->d_id.b24); |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1354 | } |
| 1355 | } |
| 1356 | } |
| 1357 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1358 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1359 | if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) { |
Andrew Vasquez | 0b7e7c5 | 2013-02-08 01:57:42 -0500 | [diff] [blame] | 1360 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1361 | atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); |
| 1362 | qla2x00_mark_all_devices_lost(vha, 0); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1363 | ret = qla2x00_full_login_lip(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1364 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1365 | ql_dbg(ql_dbg_taskm, vha, 0x802d, |
| 1366 | "full_login_lip=%d.\n", ret); |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | } |
| 1369 | |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 1370 | if (ha->flags.enable_lip_reset) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1371 | ret = qla2x00_lip_reset(vha); |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1372 | if (ret != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1373 | ql_dbg(ql_dbg_taskm, vha, 0x802e, |
| 1374 | "lip_reset failed (%d).\n", ret); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1375 | } |
| 1376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | /* 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] | 1378 | vha->marker_needed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1380 | return QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | } |
| 1382 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1383 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1384 | qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1385 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1386 | int que, cnt; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1387 | unsigned long flags; |
| 1388 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1389 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1390 | struct req_que *req; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1391 | |
| 1392 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1393 | for (que = 0; que < ha->max_req_queues; que++) { |
Anirban Chakraborty | 29bdccb | 2009-01-08 15:41:08 -0800 | [diff] [blame] | 1394 | req = ha->req_q_map[que]; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1395 | if (!req) |
| 1396 | continue; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1397 | if (!req->outstanding_cmds) |
| 1398 | continue; |
| 1399 | for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1400 | sp = req->outstanding_cmds[cnt]; |
Andrew Vasquez | e612d46 | 2009-03-24 09:08:04 -0700 | [diff] [blame] | 1401 | if (sp) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1402 | req->outstanding_cmds[cnt] = NULL; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1403 | sp->done(vha, sp, res); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1404 | } |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1405 | } |
| 1406 | } |
| 1407 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1408 | } |
| 1409 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1410 | static int |
| 1411 | qla2xxx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1413 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1415 | if (!rport || fc_remote_port_chkready(rport)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1416 | return -ENXIO; |
| 1417 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1418 | sdev->hostdata = *(fc_port_t **)rport->dd_data; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1419 | |
| 1420 | return 0; |
| 1421 | } |
| 1422 | |
| 1423 | static int |
| 1424 | qla2xxx_slave_configure(struct scsi_device *sdev) |
| 1425 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1426 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1427 | struct req_que *req = vha->req; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1428 | |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 1429 | if (IS_T10_PI_CAPABLE(vha->hw)) |
| 1430 | blk_queue_update_dma_alignment(sdev->request_queue, 0x7); |
| 1431 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1432 | if (sdev->tagged_supported) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1433 | scsi_activate_tcq(sdev, req->max_q_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | else |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1435 | scsi_deactivate_tcq(sdev, req->max_q_depth); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1436 | return 0; |
| 1437 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1439 | static void |
| 1440 | qla2xxx_slave_destroy(struct scsi_device *sdev) |
| 1441 | { |
| 1442 | sdev->hostdata = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | } |
| 1444 | |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1445 | static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth) |
| 1446 | { |
| 1447 | fc_port_t *fcport = (struct fc_port *) sdev->hostdata; |
| 1448 | |
| 1449 | if (!scsi_track_queue_full(sdev, qdepth)) |
| 1450 | return; |
| 1451 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1452 | ql_dbg(ql_dbg_io, fcport->vha, 0x3029, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1453 | "Queue depth adjusted-down to %d for nexus=%ld:%d:%d.\n", |
| 1454 | sdev->queue_depth, fcport->vha->host_no, sdev->id, sdev->lun); |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth) |
| 1458 | { |
| 1459 | fc_port_t *fcport = sdev->hostdata; |
| 1460 | struct scsi_qla_host *vha = fcport->vha; |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1461 | struct req_que *req = NULL; |
| 1462 | |
| 1463 | req = vha->req; |
| 1464 | if (!req) |
| 1465 | return; |
| 1466 | |
| 1467 | if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth) |
| 1468 | return; |
| 1469 | |
| 1470 | if (sdev->ordered_tags) |
| 1471 | scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth); |
| 1472 | else |
| 1473 | scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth); |
| 1474 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1475 | ql_dbg(ql_dbg_io, vha, 0x302a, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1476 | "Queue depth adjusted-up to %d for nexus=%ld:%d:%d.\n", |
| 1477 | sdev->queue_depth, fcport->vha->host_no, sdev->id, sdev->lun); |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1478 | } |
| 1479 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1480 | static int |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1481 | qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason) |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1482 | { |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1483 | switch (reason) { |
| 1484 | case SCSI_QDEPTH_DEFAULT: |
| 1485 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth); |
| 1486 | break; |
| 1487 | case SCSI_QDEPTH_QFULL: |
| 1488 | qla2x00_handle_queue_full(sdev, qdepth); |
| 1489 | break; |
| 1490 | case SCSI_QDEPTH_RAMP_UP: |
| 1491 | qla2x00_adjust_sdev_qdepth_up(sdev, qdepth); |
| 1492 | break; |
| 1493 | default: |
Roel Kluin | 08002af | 2010-01-29 11:25:19 +0100 | [diff] [blame] | 1494 | return -EOPNOTSUPP; |
Giridhar Malavali | c45dd30 | 2009-12-02 10:36:54 -0800 | [diff] [blame] | 1495 | } |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1496 | |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 1497 | return sdev->queue_depth; |
| 1498 | } |
| 1499 | |
| 1500 | static int |
| 1501 | qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type) |
| 1502 | { |
| 1503 | if (sdev->tagged_supported) { |
| 1504 | scsi_set_tag_type(sdev, tag_type); |
| 1505 | if (tag_type) |
| 1506 | scsi_activate_tcq(sdev, sdev->queue_depth); |
| 1507 | else |
| 1508 | scsi_deactivate_tcq(sdev, sdev->queue_depth); |
| 1509 | } else |
| 1510 | tag_type = 0; |
| 1511 | |
| 1512 | return tag_type; |
| 1513 | } |
| 1514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | /** |
| 1516 | * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. |
| 1517 | * @ha: HA context |
| 1518 | * |
| 1519 | * At exit, the @ha's flags.enable_64bit_addressing set to indicated |
| 1520 | * supported addressing method. |
| 1521 | */ |
| 1522 | static void |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1523 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1525 | /* Assume a 32bit DMA mask. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | ha->flags.enable_64bit_addressing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1528 | if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1529 | /* Any upper-dword bits set? */ |
| 1530 | if (MSD(dma_get_required_mask(&ha->pdev->dev)) && |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1531 | !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1532 | /* Ok, a 64bit DMA mask is applicable. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | ha->flags.enable_64bit_addressing = 1; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1534 | ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; |
| 1535 | ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1536 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1539 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1540 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
| 1541 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | } |
| 1543 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1544 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1545 | qla2x00_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1546 | { |
| 1547 | unsigned long flags = 0; |
| 1548 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1549 | |
| 1550 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1551 | ha->interrupts_on = 1; |
| 1552 | /* enable risc and host interrupts */ |
| 1553 | WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); |
| 1554 | RD_REG_WORD(®->ictrl); |
| 1555 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1556 | |
| 1557 | } |
| 1558 | |
| 1559 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1560 | qla2x00_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1561 | { |
| 1562 | unsigned long flags = 0; |
| 1563 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1564 | |
| 1565 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1566 | ha->interrupts_on = 0; |
| 1567 | /* disable risc and host interrupts */ |
| 1568 | WRT_REG_WORD(®->ictrl, 0); |
| 1569 | RD_REG_WORD(®->ictrl); |
| 1570 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1571 | } |
| 1572 | |
| 1573 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1574 | qla24xx_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1575 | { |
| 1576 | unsigned long flags = 0; |
| 1577 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1578 | |
| 1579 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1580 | ha->interrupts_on = 1; |
| 1581 | WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); |
| 1582 | RD_REG_DWORD(®->ictrl); |
| 1583 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1584 | } |
| 1585 | |
| 1586 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1587 | qla24xx_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1588 | { |
| 1589 | unsigned long flags = 0; |
| 1590 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1591 | |
Andrew Vasquez | 124f85e | 2009-01-05 11:18:06 -0800 | [diff] [blame] | 1592 | if (IS_NOPOLLING_TYPE(ha)) |
| 1593 | return; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1594 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1595 | ha->interrupts_on = 0; |
| 1596 | WRT_REG_DWORD(®->ictrl, 0); |
| 1597 | RD_REG_DWORD(®->ictrl); |
| 1598 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1599 | } |
| 1600 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1601 | static int |
| 1602 | qla2x00_iospace_config(struct qla_hw_data *ha) |
| 1603 | { |
| 1604 | resource_size_t pio; |
| 1605 | uint16_t msix; |
| 1606 | int cpus; |
| 1607 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1608 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1609 | QLA2XXX_DRIVER_NAME)) { |
| 1610 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0011, |
| 1611 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1612 | pci_name(ha->pdev)); |
| 1613 | goto iospace_error_exit; |
| 1614 | } |
| 1615 | if (!(ha->bars & 1)) |
| 1616 | goto skip_pio; |
| 1617 | |
| 1618 | /* We only need PIO for Flash operations on ISP2312 v2 chips. */ |
| 1619 | pio = pci_resource_start(ha->pdev, 0); |
| 1620 | if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { |
| 1621 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1622 | ql_log_pci(ql_log_warn, ha->pdev, 0x0012, |
| 1623 | "Invalid pci I/O region size (%s).\n", |
| 1624 | pci_name(ha->pdev)); |
| 1625 | pio = 0; |
| 1626 | } |
| 1627 | } else { |
| 1628 | ql_log_pci(ql_log_warn, ha->pdev, 0x0013, |
| 1629 | "Region #0 no a PIO resource (%s).\n", |
| 1630 | pci_name(ha->pdev)); |
| 1631 | pio = 0; |
| 1632 | } |
| 1633 | ha->pio_address = pio; |
| 1634 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014, |
| 1635 | "PIO address=%llu.\n", |
| 1636 | (unsigned long long)ha->pio_address); |
| 1637 | |
| 1638 | skip_pio: |
| 1639 | /* Use MMIO operations for all accesses. */ |
| 1640 | if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { |
| 1641 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0015, |
| 1642 | "Region #1 not an MMIO resource (%s), aborting.\n", |
| 1643 | pci_name(ha->pdev)); |
| 1644 | goto iospace_error_exit; |
| 1645 | } |
| 1646 | if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { |
| 1647 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0016, |
| 1648 | "Invalid PCI mem region size (%s), aborting.\n", |
| 1649 | pci_name(ha->pdev)); |
| 1650 | goto iospace_error_exit; |
| 1651 | } |
| 1652 | |
| 1653 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); |
| 1654 | if (!ha->iobase) { |
| 1655 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0017, |
| 1656 | "Cannot remap MMIO (%s), aborting.\n", |
| 1657 | pci_name(ha->pdev)); |
| 1658 | goto iospace_error_exit; |
| 1659 | } |
| 1660 | |
| 1661 | /* Determine queue resources */ |
| 1662 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1663 | if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) || |
| 1664 | (ql2xmaxqueues > 1 && ql2xmultique_tag) || |
| 1665 | (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) |
| 1666 | goto mqiobase_exit; |
| 1667 | |
| 1668 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), |
| 1669 | pci_resource_len(ha->pdev, 3)); |
| 1670 | if (ha->mqiobase) { |
| 1671 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018, |
| 1672 | "MQIO Base=%p.\n", ha->mqiobase); |
| 1673 | /* Read MSIX vector size of the board */ |
| 1674 | pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); |
| 1675 | ha->msix_count = msix; |
| 1676 | /* Max queues are bounded by available msix vectors */ |
| 1677 | /* queue 0 uses two msix vectors */ |
| 1678 | if (ql2xmultique_tag) { |
| 1679 | cpus = num_online_cpus(); |
| 1680 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1681 | (cpus + 1) : (ha->msix_count - 1); |
| 1682 | ha->max_req_queues = 2; |
| 1683 | } else if (ql2xmaxqueues > 1) { |
| 1684 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1685 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1686 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc008, |
| 1687 | "QoS mode set, max no of request queues:%d.\n", |
| 1688 | ha->max_req_queues); |
| 1689 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0019, |
| 1690 | "QoS mode set, max no of request queues:%d.\n", |
| 1691 | ha->max_req_queues); |
| 1692 | } |
| 1693 | ql_log_pci(ql_log_info, ha->pdev, 0x001a, |
| 1694 | "MSI-X vector count: %d.\n", msix); |
| 1695 | } else |
| 1696 | ql_log_pci(ql_log_info, ha->pdev, 0x001b, |
| 1697 | "BAR 3 not enabled.\n"); |
| 1698 | |
| 1699 | mqiobase_exit: |
| 1700 | ha->msix_count = ha->max_rsp_queues + 1; |
| 1701 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c, |
| 1702 | "MSIX Count:%d.\n", ha->msix_count); |
| 1703 | return (0); |
| 1704 | |
| 1705 | iospace_error_exit: |
| 1706 | return (-ENOMEM); |
| 1707 | } |
| 1708 | |
| 1709 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1710 | static int |
| 1711 | qla83xx_iospace_config(struct qla_hw_data *ha) |
| 1712 | { |
| 1713 | uint16_t msix; |
| 1714 | int cpus; |
| 1715 | |
| 1716 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1717 | QLA2XXX_DRIVER_NAME)) { |
| 1718 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0117, |
| 1719 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1720 | pci_name(ha->pdev)); |
| 1721 | |
| 1722 | goto iospace_error_exit; |
| 1723 | } |
| 1724 | |
| 1725 | /* Use MMIO operations for all accesses. */ |
| 1726 | if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) { |
| 1727 | ql_log_pci(ql_log_warn, ha->pdev, 0x0118, |
| 1728 | "Invalid pci I/O region size (%s).\n", |
| 1729 | pci_name(ha->pdev)); |
| 1730 | goto iospace_error_exit; |
| 1731 | } |
| 1732 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1733 | ql_log_pci(ql_log_warn, ha->pdev, 0x0119, |
| 1734 | "Invalid PCI mem region size (%s), aborting\n", |
| 1735 | pci_name(ha->pdev)); |
| 1736 | goto iospace_error_exit; |
| 1737 | } |
| 1738 | |
| 1739 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN); |
| 1740 | if (!ha->iobase) { |
| 1741 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011a, |
| 1742 | "Cannot remap MMIO (%s), aborting.\n", |
| 1743 | pci_name(ha->pdev)); |
| 1744 | goto iospace_error_exit; |
| 1745 | } |
| 1746 | |
| 1747 | /* 64bit PCI BAR - BAR2 will correspoond to region 4 */ |
| 1748 | /* 83XX 26XX always use MQ type access for queues |
| 1749 | * - mbar 2, a.k.a region 4 */ |
| 1750 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1751 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4), |
| 1752 | pci_resource_len(ha->pdev, 4)); |
| 1753 | |
| 1754 | if (!ha->mqiobase) { |
| 1755 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011d, |
| 1756 | "BAR2/region4 not enabled\n"); |
| 1757 | goto mqiobase_exit; |
| 1758 | } |
| 1759 | |
| 1760 | ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2), |
| 1761 | pci_resource_len(ha->pdev, 2)); |
| 1762 | if (ha->msixbase) { |
| 1763 | /* Read MSIX vector size of the board */ |
| 1764 | pci_read_config_word(ha->pdev, |
| 1765 | QLA_83XX_PCI_MSIX_CONTROL, &msix); |
| 1766 | ha->msix_count = msix; |
| 1767 | /* Max queues are bounded by available msix vectors */ |
| 1768 | /* queue 0 uses two msix vectors */ |
| 1769 | if (ql2xmultique_tag) { |
| 1770 | cpus = num_online_cpus(); |
| 1771 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1772 | (cpus + 1) : (ha->msix_count - 1); |
| 1773 | ha->max_req_queues = 2; |
| 1774 | } else if (ql2xmaxqueues > 1) { |
| 1775 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1776 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1777 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc00c, |
| 1778 | "QoS mode set, max no of request queues:%d.\n", |
| 1779 | ha->max_req_queues); |
| 1780 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b, |
| 1781 | "QoS mode set, max no of request queues:%d.\n", |
| 1782 | ha->max_req_queues); |
| 1783 | } |
| 1784 | ql_log_pci(ql_log_info, ha->pdev, 0x011c, |
| 1785 | "MSI-X vector count: %d.\n", msix); |
| 1786 | } else |
| 1787 | ql_log_pci(ql_log_info, ha->pdev, 0x011e, |
| 1788 | "BAR 1 not enabled.\n"); |
| 1789 | |
| 1790 | mqiobase_exit: |
| 1791 | ha->msix_count = ha->max_rsp_queues + 1; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 1792 | |
| 1793 | qlt_83xx_iospace_config(ha); |
| 1794 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1795 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f, |
| 1796 | "MSIX Count:%d.\n", ha->msix_count); |
| 1797 | return 0; |
| 1798 | |
| 1799 | iospace_error_exit: |
| 1800 | return -ENOMEM; |
| 1801 | } |
| 1802 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1803 | static struct isp_operations qla2100_isp_ops = { |
| 1804 | .pci_config = qla2100_pci_config, |
| 1805 | .reset_chip = qla2x00_reset_chip, |
| 1806 | .chip_diag = qla2x00_chip_diag, |
| 1807 | .config_rings = qla2x00_config_rings, |
| 1808 | .reset_adapter = qla2x00_reset_adapter, |
| 1809 | .nvram_config = qla2x00_nvram_config, |
| 1810 | .update_fw_options = qla2x00_update_fw_options, |
| 1811 | .load_risc = qla2x00_load_risc, |
| 1812 | .pci_info_str = qla2x00_pci_info_str, |
| 1813 | .fw_version_str = qla2x00_fw_version_str, |
| 1814 | .intr_handler = qla2100_intr_handler, |
| 1815 | .enable_intrs = qla2x00_enable_intrs, |
| 1816 | .disable_intrs = qla2x00_disable_intrs, |
| 1817 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1818 | .target_reset = qla2x00_abort_target, |
| 1819 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1820 | .fabric_login = qla2x00_login_fabric, |
| 1821 | .fabric_logout = qla2x00_fabric_logout, |
| 1822 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1823 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1824 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1825 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1826 | .read_nvram = qla2x00_read_nvram_data, |
| 1827 | .write_nvram = qla2x00_write_nvram_data, |
| 1828 | .fw_dump = qla2100_fw_dump, |
| 1829 | .beacon_on = NULL, |
| 1830 | .beacon_off = NULL, |
| 1831 | .beacon_blink = NULL, |
| 1832 | .read_optrom = qla2x00_read_optrom_data, |
| 1833 | .write_optrom = qla2x00_write_optrom_data, |
| 1834 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1835 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1836 | .abort_isp = qla2x00_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1837 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1838 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1839 | }; |
| 1840 | |
| 1841 | static struct isp_operations qla2300_isp_ops = { |
| 1842 | .pci_config = qla2300_pci_config, |
| 1843 | .reset_chip = qla2x00_reset_chip, |
| 1844 | .chip_diag = qla2x00_chip_diag, |
| 1845 | .config_rings = qla2x00_config_rings, |
| 1846 | .reset_adapter = qla2x00_reset_adapter, |
| 1847 | .nvram_config = qla2x00_nvram_config, |
| 1848 | .update_fw_options = qla2x00_update_fw_options, |
| 1849 | .load_risc = qla2x00_load_risc, |
| 1850 | .pci_info_str = qla2x00_pci_info_str, |
| 1851 | .fw_version_str = qla2x00_fw_version_str, |
| 1852 | .intr_handler = qla2300_intr_handler, |
| 1853 | .enable_intrs = qla2x00_enable_intrs, |
| 1854 | .disable_intrs = qla2x00_disable_intrs, |
| 1855 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1856 | .target_reset = qla2x00_abort_target, |
| 1857 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1858 | .fabric_login = qla2x00_login_fabric, |
| 1859 | .fabric_logout = qla2x00_fabric_logout, |
| 1860 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1861 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1862 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1863 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1864 | .read_nvram = qla2x00_read_nvram_data, |
| 1865 | .write_nvram = qla2x00_write_nvram_data, |
| 1866 | .fw_dump = qla2300_fw_dump, |
| 1867 | .beacon_on = qla2x00_beacon_on, |
| 1868 | .beacon_off = qla2x00_beacon_off, |
| 1869 | .beacon_blink = qla2x00_beacon_blink, |
| 1870 | .read_optrom = qla2x00_read_optrom_data, |
| 1871 | .write_optrom = qla2x00_write_optrom_data, |
| 1872 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1873 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1874 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1875 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1876 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1877 | }; |
| 1878 | |
| 1879 | static struct isp_operations qla24xx_isp_ops = { |
| 1880 | .pci_config = qla24xx_pci_config, |
| 1881 | .reset_chip = qla24xx_reset_chip, |
| 1882 | .chip_diag = qla24xx_chip_diag, |
| 1883 | .config_rings = qla24xx_config_rings, |
| 1884 | .reset_adapter = qla24xx_reset_adapter, |
| 1885 | .nvram_config = qla24xx_nvram_config, |
| 1886 | .update_fw_options = qla24xx_update_fw_options, |
| 1887 | .load_risc = qla24xx_load_risc, |
| 1888 | .pci_info_str = qla24xx_pci_info_str, |
| 1889 | .fw_version_str = qla24xx_fw_version_str, |
| 1890 | .intr_handler = qla24xx_intr_handler, |
| 1891 | .enable_intrs = qla24xx_enable_intrs, |
| 1892 | .disable_intrs = qla24xx_disable_intrs, |
| 1893 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1894 | .target_reset = qla24xx_abort_target, |
| 1895 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1896 | .fabric_login = qla24xx_login_fabric, |
| 1897 | .fabric_logout = qla24xx_fabric_logout, |
| 1898 | .calc_req_entries = NULL, |
| 1899 | .build_iocbs = NULL, |
| 1900 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1901 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1902 | .read_nvram = qla24xx_read_nvram_data, |
| 1903 | .write_nvram = qla24xx_write_nvram_data, |
| 1904 | .fw_dump = qla24xx_fw_dump, |
| 1905 | .beacon_on = qla24xx_beacon_on, |
| 1906 | .beacon_off = qla24xx_beacon_off, |
| 1907 | .beacon_blink = qla24xx_beacon_blink, |
| 1908 | .read_optrom = qla24xx_read_optrom_data, |
| 1909 | .write_optrom = qla24xx_write_optrom_data, |
| 1910 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1911 | .start_scsi = qla24xx_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1912 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1913 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1914 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1915 | }; |
| 1916 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1917 | static struct isp_operations qla25xx_isp_ops = { |
| 1918 | .pci_config = qla25xx_pci_config, |
| 1919 | .reset_chip = qla24xx_reset_chip, |
| 1920 | .chip_diag = qla24xx_chip_diag, |
| 1921 | .config_rings = qla24xx_config_rings, |
| 1922 | .reset_adapter = qla24xx_reset_adapter, |
| 1923 | .nvram_config = qla24xx_nvram_config, |
| 1924 | .update_fw_options = qla24xx_update_fw_options, |
| 1925 | .load_risc = qla24xx_load_risc, |
| 1926 | .pci_info_str = qla24xx_pci_info_str, |
| 1927 | .fw_version_str = qla24xx_fw_version_str, |
| 1928 | .intr_handler = qla24xx_intr_handler, |
| 1929 | .enable_intrs = qla24xx_enable_intrs, |
| 1930 | .disable_intrs = qla24xx_disable_intrs, |
| 1931 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1932 | .target_reset = qla24xx_abort_target, |
| 1933 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1934 | .fabric_login = qla24xx_login_fabric, |
| 1935 | .fabric_logout = qla24xx_fabric_logout, |
| 1936 | .calc_req_entries = NULL, |
| 1937 | .build_iocbs = NULL, |
| 1938 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1939 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1940 | .read_nvram = qla25xx_read_nvram_data, |
| 1941 | .write_nvram = qla25xx_write_nvram_data, |
| 1942 | .fw_dump = qla25xx_fw_dump, |
| 1943 | .beacon_on = qla24xx_beacon_on, |
| 1944 | .beacon_off = qla24xx_beacon_off, |
| 1945 | .beacon_blink = qla24xx_beacon_blink, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1946 | .read_optrom = qla25xx_read_optrom_data, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1947 | .write_optrom = qla24xx_write_optrom_data, |
| 1948 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1949 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1950 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1951 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1952 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1953 | }; |
| 1954 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1955 | static struct isp_operations qla81xx_isp_ops = { |
| 1956 | .pci_config = qla25xx_pci_config, |
| 1957 | .reset_chip = qla24xx_reset_chip, |
| 1958 | .chip_diag = qla24xx_chip_diag, |
| 1959 | .config_rings = qla24xx_config_rings, |
| 1960 | .reset_adapter = qla24xx_reset_adapter, |
| 1961 | .nvram_config = qla81xx_nvram_config, |
| 1962 | .update_fw_options = qla81xx_update_fw_options, |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 1963 | .load_risc = qla81xx_load_risc, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1964 | .pci_info_str = qla24xx_pci_info_str, |
| 1965 | .fw_version_str = qla24xx_fw_version_str, |
| 1966 | .intr_handler = qla24xx_intr_handler, |
| 1967 | .enable_intrs = qla24xx_enable_intrs, |
| 1968 | .disable_intrs = qla24xx_disable_intrs, |
| 1969 | .abort_command = qla24xx_abort_command, |
| 1970 | .target_reset = qla24xx_abort_target, |
| 1971 | .lun_reset = qla24xx_lun_reset, |
| 1972 | .fabric_login = qla24xx_login_fabric, |
| 1973 | .fabric_logout = qla24xx_fabric_logout, |
| 1974 | .calc_req_entries = NULL, |
| 1975 | .build_iocbs = NULL, |
| 1976 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1977 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 1978 | .read_nvram = NULL, |
| 1979 | .write_nvram = NULL, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1980 | .fw_dump = qla81xx_fw_dump, |
| 1981 | .beacon_on = qla24xx_beacon_on, |
| 1982 | .beacon_off = qla24xx_beacon_off, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1983 | .beacon_blink = qla83xx_beacon_blink, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1984 | .read_optrom = qla25xx_read_optrom_data, |
| 1985 | .write_optrom = qla24xx_write_optrom_data, |
| 1986 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | ba77ef5 | 2010-05-28 15:08:27 -0700 | [diff] [blame] | 1987 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1988 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1989 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1990 | .initialize_adapter = qla2x00_initialize_adapter, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1991 | }; |
| 1992 | |
| 1993 | static struct isp_operations qla82xx_isp_ops = { |
| 1994 | .pci_config = qla82xx_pci_config, |
| 1995 | .reset_chip = qla82xx_reset_chip, |
| 1996 | .chip_diag = qla24xx_chip_diag, |
| 1997 | .config_rings = qla82xx_config_rings, |
| 1998 | .reset_adapter = qla24xx_reset_adapter, |
| 1999 | .nvram_config = qla81xx_nvram_config, |
| 2000 | .update_fw_options = qla24xx_update_fw_options, |
| 2001 | .load_risc = qla82xx_load_risc, |
Atul Deshmukh | 9d55ca6 | 2012-08-22 14:21:14 -0400 | [diff] [blame] | 2002 | .pci_info_str = qla24xx_pci_info_str, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2003 | .fw_version_str = qla24xx_fw_version_str, |
| 2004 | .intr_handler = qla82xx_intr_handler, |
| 2005 | .enable_intrs = qla82xx_enable_intrs, |
| 2006 | .disable_intrs = qla82xx_disable_intrs, |
| 2007 | .abort_command = qla24xx_abort_command, |
| 2008 | .target_reset = qla24xx_abort_target, |
| 2009 | .lun_reset = qla24xx_lun_reset, |
| 2010 | .fabric_login = qla24xx_login_fabric, |
| 2011 | .fabric_logout = qla24xx_fabric_logout, |
| 2012 | .calc_req_entries = NULL, |
| 2013 | .build_iocbs = NULL, |
| 2014 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2015 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2016 | .read_nvram = qla24xx_read_nvram_data, |
| 2017 | .write_nvram = qla24xx_write_nvram_data, |
Chad Dupuis | a1b23c5 | 2014-02-26 04:15:12 -0500 | [diff] [blame] | 2018 | .fw_dump = qla82xx_fw_dump, |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 2019 | .beacon_on = qla82xx_beacon_on, |
| 2020 | .beacon_off = qla82xx_beacon_off, |
| 2021 | .beacon_blink = NULL, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2022 | .read_optrom = qla82xx_read_optrom_data, |
| 2023 | .write_optrom = qla82xx_write_optrom_data, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2024 | .get_flash_version = qla82xx_get_flash_version, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2025 | .start_scsi = qla82xx_start_scsi, |
| 2026 | .abort_isp = qla82xx_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2027 | .iospace_config = qla82xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2028 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2029 | }; |
| 2030 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2031 | static struct isp_operations qla8044_isp_ops = { |
| 2032 | .pci_config = qla82xx_pci_config, |
| 2033 | .reset_chip = qla82xx_reset_chip, |
| 2034 | .chip_diag = qla24xx_chip_diag, |
| 2035 | .config_rings = qla82xx_config_rings, |
| 2036 | .reset_adapter = qla24xx_reset_adapter, |
| 2037 | .nvram_config = qla81xx_nvram_config, |
| 2038 | .update_fw_options = qla24xx_update_fw_options, |
| 2039 | .load_risc = qla82xx_load_risc, |
| 2040 | .pci_info_str = qla24xx_pci_info_str, |
| 2041 | .fw_version_str = qla24xx_fw_version_str, |
| 2042 | .intr_handler = qla8044_intr_handler, |
| 2043 | .enable_intrs = qla82xx_enable_intrs, |
| 2044 | .disable_intrs = qla82xx_disable_intrs, |
| 2045 | .abort_command = qla24xx_abort_command, |
| 2046 | .target_reset = qla24xx_abort_target, |
| 2047 | .lun_reset = qla24xx_lun_reset, |
| 2048 | .fabric_login = qla24xx_login_fabric, |
| 2049 | .fabric_logout = qla24xx_fabric_logout, |
| 2050 | .calc_req_entries = NULL, |
| 2051 | .build_iocbs = NULL, |
| 2052 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2053 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2054 | .read_nvram = NULL, |
| 2055 | .write_nvram = NULL, |
Chad Dupuis | a1b23c5 | 2014-02-26 04:15:12 -0500 | [diff] [blame] | 2056 | .fw_dump = qla8044_fw_dump, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2057 | .beacon_on = qla82xx_beacon_on, |
| 2058 | .beacon_off = qla82xx_beacon_off, |
| 2059 | .beacon_blink = NULL, |
Saurav Kashyap | 888e639 | 2014-02-26 04:15:13 -0500 | [diff] [blame] | 2060 | .read_optrom = qla8044_read_optrom_data, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2061 | .write_optrom = qla8044_write_optrom_data, |
| 2062 | .get_flash_version = qla82xx_get_flash_version, |
| 2063 | .start_scsi = qla82xx_start_scsi, |
| 2064 | .abort_isp = qla8044_abort_isp, |
| 2065 | .iospace_config = qla82xx_iospace_config, |
| 2066 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2067 | }; |
| 2068 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2069 | static struct isp_operations qla83xx_isp_ops = { |
| 2070 | .pci_config = qla25xx_pci_config, |
| 2071 | .reset_chip = qla24xx_reset_chip, |
| 2072 | .chip_diag = qla24xx_chip_diag, |
| 2073 | .config_rings = qla24xx_config_rings, |
| 2074 | .reset_adapter = qla24xx_reset_adapter, |
| 2075 | .nvram_config = qla81xx_nvram_config, |
| 2076 | .update_fw_options = qla81xx_update_fw_options, |
| 2077 | .load_risc = qla81xx_load_risc, |
| 2078 | .pci_info_str = qla24xx_pci_info_str, |
| 2079 | .fw_version_str = qla24xx_fw_version_str, |
| 2080 | .intr_handler = qla24xx_intr_handler, |
| 2081 | .enable_intrs = qla24xx_enable_intrs, |
| 2082 | .disable_intrs = qla24xx_disable_intrs, |
| 2083 | .abort_command = qla24xx_abort_command, |
| 2084 | .target_reset = qla24xx_abort_target, |
| 2085 | .lun_reset = qla24xx_lun_reset, |
| 2086 | .fabric_login = qla24xx_login_fabric, |
| 2087 | .fabric_logout = qla24xx_fabric_logout, |
| 2088 | .calc_req_entries = NULL, |
| 2089 | .build_iocbs = NULL, |
| 2090 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2091 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2092 | .read_nvram = NULL, |
| 2093 | .write_nvram = NULL, |
| 2094 | .fw_dump = qla83xx_fw_dump, |
| 2095 | .beacon_on = qla24xx_beacon_on, |
| 2096 | .beacon_off = qla24xx_beacon_off, |
| 2097 | .beacon_blink = qla83xx_beacon_blink, |
| 2098 | .read_optrom = qla25xx_read_optrom_data, |
| 2099 | .write_optrom = qla24xx_write_optrom_data, |
| 2100 | .get_flash_version = qla24xx_get_flash_version, |
| 2101 | .start_scsi = qla24xx_dif_start_scsi, |
| 2102 | .abort_isp = qla2x00_abort_isp, |
| 2103 | .iospace_config = qla83xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2104 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2105 | }; |
| 2106 | |
| 2107 | static struct isp_operations qlafx00_isp_ops = { |
| 2108 | .pci_config = qlafx00_pci_config, |
| 2109 | .reset_chip = qlafx00_soft_reset, |
| 2110 | .chip_diag = qlafx00_chip_diag, |
| 2111 | .config_rings = qlafx00_config_rings, |
| 2112 | .reset_adapter = qlafx00_soft_reset, |
| 2113 | .nvram_config = NULL, |
| 2114 | .update_fw_options = NULL, |
| 2115 | .load_risc = NULL, |
| 2116 | .pci_info_str = qlafx00_pci_info_str, |
| 2117 | .fw_version_str = qlafx00_fw_version_str, |
| 2118 | .intr_handler = qlafx00_intr_handler, |
| 2119 | .enable_intrs = qlafx00_enable_intrs, |
| 2120 | .disable_intrs = qlafx00_disable_intrs, |
Armen Baloyan | 4440e46 | 2014-02-26 04:15:18 -0500 | [diff] [blame] | 2121 | .abort_command = qla24xx_async_abort_command, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2122 | .target_reset = qlafx00_abort_target, |
| 2123 | .lun_reset = qlafx00_lun_reset, |
| 2124 | .fabric_login = NULL, |
| 2125 | .fabric_logout = NULL, |
| 2126 | .calc_req_entries = NULL, |
| 2127 | .build_iocbs = NULL, |
| 2128 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2129 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2130 | .read_nvram = qla24xx_read_nvram_data, |
| 2131 | .write_nvram = qla24xx_write_nvram_data, |
| 2132 | .fw_dump = NULL, |
| 2133 | .beacon_on = qla24xx_beacon_on, |
| 2134 | .beacon_off = qla24xx_beacon_off, |
| 2135 | .beacon_blink = NULL, |
| 2136 | .read_optrom = qla24xx_read_optrom_data, |
| 2137 | .write_optrom = qla24xx_write_optrom_data, |
| 2138 | .get_flash_version = qla24xx_get_flash_version, |
| 2139 | .start_scsi = qlafx00_start_scsi, |
| 2140 | .abort_isp = qlafx00_abort_isp, |
| 2141 | .iospace_config = qlafx00_iospace_config, |
| 2142 | .initialize_adapter = qlafx00_initialize_adapter, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2143 | }; |
| 2144 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2145 | static struct isp_operations qla27xx_isp_ops = { |
| 2146 | .pci_config = qla25xx_pci_config, |
| 2147 | .reset_chip = qla24xx_reset_chip, |
| 2148 | .chip_diag = qla24xx_chip_diag, |
| 2149 | .config_rings = qla24xx_config_rings, |
| 2150 | .reset_adapter = qla24xx_reset_adapter, |
| 2151 | .nvram_config = qla81xx_nvram_config, |
| 2152 | .update_fw_options = qla81xx_update_fw_options, |
| 2153 | .load_risc = qla81xx_load_risc, |
| 2154 | .pci_info_str = qla24xx_pci_info_str, |
| 2155 | .fw_version_str = qla24xx_fw_version_str, |
| 2156 | .intr_handler = qla24xx_intr_handler, |
| 2157 | .enable_intrs = qla24xx_enable_intrs, |
| 2158 | .disable_intrs = qla24xx_disable_intrs, |
| 2159 | .abort_command = qla24xx_abort_command, |
| 2160 | .target_reset = qla24xx_abort_target, |
| 2161 | .lun_reset = qla24xx_lun_reset, |
| 2162 | .fabric_login = qla24xx_login_fabric, |
| 2163 | .fabric_logout = qla24xx_fabric_logout, |
| 2164 | .calc_req_entries = NULL, |
| 2165 | .build_iocbs = NULL, |
| 2166 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2167 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2168 | .read_nvram = NULL, |
| 2169 | .write_nvram = NULL, |
| 2170 | .fw_dump = qla27xx_fwdump, |
| 2171 | .beacon_on = qla24xx_beacon_on, |
| 2172 | .beacon_off = qla24xx_beacon_off, |
| 2173 | .beacon_blink = qla83xx_beacon_blink, |
| 2174 | .read_optrom = qla25xx_read_optrom_data, |
| 2175 | .write_optrom = qla24xx_write_optrom_data, |
| 2176 | .get_flash_version = qla24xx_get_flash_version, |
| 2177 | .start_scsi = qla24xx_dif_start_scsi, |
| 2178 | .abort_isp = qla2x00_abort_isp, |
| 2179 | .iospace_config = qla83xx_iospace_config, |
| 2180 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2181 | }; |
| 2182 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2183 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2184 | qla2x00_set_isp_flags(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2185 | { |
| 2186 | ha->device_type = DT_EXTENDED_IDS; |
| 2187 | switch (ha->pdev->device) { |
| 2188 | case PCI_DEVICE_ID_QLOGIC_ISP2100: |
| 2189 | ha->device_type |= DT_ISP2100; |
| 2190 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2191 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2192 | break; |
| 2193 | case PCI_DEVICE_ID_QLOGIC_ISP2200: |
| 2194 | ha->device_type |= DT_ISP2200; |
| 2195 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2196 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2197 | break; |
| 2198 | case PCI_DEVICE_ID_QLOGIC_ISP2300: |
| 2199 | ha->device_type |= DT_ISP2300; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2200 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2201 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2202 | break; |
| 2203 | case PCI_DEVICE_ID_QLOGIC_ISP2312: |
| 2204 | ha->device_type |= DT_ISP2312; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2205 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2206 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2207 | break; |
| 2208 | case PCI_DEVICE_ID_QLOGIC_ISP2322: |
| 2209 | ha->device_type |= DT_ISP2322; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2210 | ha->device_type |= DT_ZIO_SUPPORTED; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2211 | if (ha->pdev->subsystem_vendor == 0x1028 && |
| 2212 | ha->pdev->subsystem_device == 0x0170) |
| 2213 | ha->device_type |= DT_OEM_001; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2214 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2215 | break; |
| 2216 | case PCI_DEVICE_ID_QLOGIC_ISP6312: |
| 2217 | ha->device_type |= DT_ISP6312; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2218 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2219 | break; |
| 2220 | case PCI_DEVICE_ID_QLOGIC_ISP6322: |
| 2221 | ha->device_type |= DT_ISP6322; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2222 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2223 | break; |
| 2224 | case PCI_DEVICE_ID_QLOGIC_ISP2422: |
| 2225 | ha->device_type |= DT_ISP2422; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2226 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2227 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2228 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2229 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2230 | break; |
| 2231 | case PCI_DEVICE_ID_QLOGIC_ISP2432: |
| 2232 | ha->device_type |= DT_ISP2432; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2233 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2234 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2235 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2236 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2237 | break; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2238 | case PCI_DEVICE_ID_QLOGIC_ISP8432: |
| 2239 | ha->device_type |= DT_ISP8432; |
| 2240 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2241 | ha->device_type |= DT_FWI2; |
| 2242 | ha->device_type |= DT_IIDMA; |
| 2243 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2244 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2245 | case PCI_DEVICE_ID_QLOGIC_ISP5422: |
| 2246 | ha->device_type |= DT_ISP5422; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2247 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2248 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2249 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2250 | case PCI_DEVICE_ID_QLOGIC_ISP5432: |
| 2251 | ha->device_type |= DT_ISP5432; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2252 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2253 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2254 | break; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2255 | case PCI_DEVICE_ID_QLOGIC_ISP2532: |
| 2256 | ha->device_type |= DT_ISP2532; |
| 2257 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2258 | ha->device_type |= DT_FWI2; |
| 2259 | ha->device_type |= DT_IIDMA; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2260 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2261 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2262 | case PCI_DEVICE_ID_QLOGIC_ISP8001: |
| 2263 | ha->device_type |= DT_ISP8001; |
| 2264 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2265 | ha->device_type |= DT_FWI2; |
| 2266 | ha->device_type |= DT_IIDMA; |
| 2267 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2268 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2269 | case PCI_DEVICE_ID_QLOGIC_ISP8021: |
| 2270 | ha->device_type |= DT_ISP8021; |
| 2271 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2272 | ha->device_type |= DT_FWI2; |
| 2273 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2274 | /* Initialize 82XX ISP flags */ |
| 2275 | qla82xx_init_flags(ha); |
| 2276 | break; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2277 | case PCI_DEVICE_ID_QLOGIC_ISP8044: |
| 2278 | ha->device_type |= DT_ISP8044; |
| 2279 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2280 | ha->device_type |= DT_FWI2; |
| 2281 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2282 | /* Initialize 82XX ISP flags */ |
| 2283 | qla82xx_init_flags(ha); |
| 2284 | break; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2285 | case PCI_DEVICE_ID_QLOGIC_ISP2031: |
| 2286 | ha->device_type |= DT_ISP2031; |
| 2287 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2288 | ha->device_type |= DT_FWI2; |
| 2289 | ha->device_type |= DT_IIDMA; |
| 2290 | ha->device_type |= DT_T10_PI; |
| 2291 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2292 | break; |
| 2293 | case PCI_DEVICE_ID_QLOGIC_ISP8031: |
| 2294 | ha->device_type |= DT_ISP8031; |
| 2295 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2296 | ha->device_type |= DT_FWI2; |
| 2297 | ha->device_type |= DT_IIDMA; |
| 2298 | ha->device_type |= DT_T10_PI; |
| 2299 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2300 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2301 | case PCI_DEVICE_ID_QLOGIC_ISPF001: |
| 2302 | ha->device_type |= DT_ISPFX00; |
| 2303 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2304 | case PCI_DEVICE_ID_QLOGIC_ISP2071: |
| 2305 | ha->device_type |= DT_ISP2071; |
| 2306 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2307 | ha->device_type |= DT_FWI2; |
| 2308 | ha->device_type |= DT_IIDMA; |
| 2309 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2310 | break; |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 2311 | case PCI_DEVICE_ID_QLOGIC_ISP2271: |
| 2312 | ha->device_type |= DT_ISP2271; |
| 2313 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2314 | ha->device_type |= DT_FWI2; |
| 2315 | ha->device_type |= DT_IIDMA; |
| 2316 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2317 | break; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2318 | } |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 2319 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2320 | if (IS_QLA82XX(ha)) |
Saurav Kashyap | 43a9c38 | 2014-02-26 04:15:16 -0500 | [diff] [blame] | 2321 | ha->port_no = ha->portnum & 1; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2322 | else { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2323 | /* Get adapter physical port no from interrupt pin register. */ |
| 2324 | pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2325 | if (IS_QLA27XX(ha)) |
| 2326 | ha->port_no--; |
| 2327 | else |
| 2328 | ha->port_no = !(ha->port_no & 1); |
| 2329 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2330 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2331 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 2332 | "device_type=0x%x port=%d fw_srisc_address=0x%x.\n", |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2333 | ha->device_type, ha->port_no, ha->fw_srisc_address); |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2334 | } |
| 2335 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2336 | static void |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2337 | qla2xxx_scan_start(struct Scsi_Host *shost) |
| 2338 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2339 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2340 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2341 | if (vha->hw->flags.running_gold_fw) |
| 2342 | return; |
| 2343 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2344 | set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); |
| 2345 | set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); |
| 2346 | set_bit(RSCN_UPDATE, &vha->dpc_flags); |
| 2347 | set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2348 | } |
| 2349 | |
| 2350 | static int |
| 2351 | qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) |
| 2352 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2353 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2354 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2355 | if (!vha->host) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2356 | return 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2357 | if (time > vha->hw->loop_reset_delay * HZ) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2358 | return 1; |
| 2359 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2360 | return atomic_read(&vha->loop_state) == LOOP_READY; |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2361 | } |
| 2362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | /* |
| 2364 | * PCI driver interface |
| 2365 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 2366 | static int |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 2367 | 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] | 2368 | { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2369 | int ret = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | struct Scsi_Host *host; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2371 | scsi_qla_host_t *base_vha = NULL; |
| 2372 | struct qla_hw_data *ha; |
Andrew Vasquez | 29856e2 | 2007-08-12 18:22:52 -0700 | [diff] [blame] | 2373 | char pci_info[30]; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2374 | char fw_str[30], wq_name[30]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 2375 | struct scsi_host_template *sht; |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2376 | int bars, mem_only = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2377 | uint16_t req_length = 0, rsp_length = 0; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2378 | struct req_que *req = NULL; |
| 2379 | struct rsp_que *rsp = NULL; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2380 | bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 2381 | sht = &qla2xxx_driver_template; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2382 | if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || |
| 2383 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2384 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2385 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || |
| 2386 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2387 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2388 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 || |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2389 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 || |
| 2390 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 || |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2391 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 || |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2392 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 || |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2393 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 || |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 2394 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 || |
| 2395 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271) { |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2396 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2397 | mem_only = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2398 | ql_dbg_pci(ql_dbg_init, pdev, 0x0007, |
| 2399 | "Mem only adapter.\n"); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2400 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2401 | ql_dbg_pci(ql_dbg_init, pdev, 0x0008, |
| 2402 | "Bars=%d.\n", bars); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2403 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2404 | if (mem_only) { |
| 2405 | if (pci_enable_device_mem(pdev)) |
| 2406 | goto probe_out; |
| 2407 | } else { |
| 2408 | if (pci_enable_device(pdev)) |
| 2409 | goto probe_out; |
| 2410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | |
Jesse Barnes | 0927678 | 2008-10-18 17:33:19 -0700 | [diff] [blame] | 2412 | /* This may fail but that's ok */ |
| 2413 | pci_enable_pcie_error_reporting(pdev); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 2414 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2415 | ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); |
| 2416 | if (!ha) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2417 | ql_log_pci(ql_log_fatal, pdev, 0x0009, |
| 2418 | "Unable to allocate memory for ha.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2419 | goto probe_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2421 | ql_dbg_pci(ql_dbg_init, pdev, 0x000a, |
| 2422 | "Memory allocated for ha=%p.\n", ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2423 | ha->pdev = pdev; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2424 | ha->tgt.enable_class_2 = ql2xenableclass2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | |
| 2426 | /* Clear our data area */ |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2427 | ha->bars = bars; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2428 | ha->mem_only = mem_only; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 2429 | spin_lock_init(&ha->hardware_lock); |
Andrew Vasquez | 339aa70 | 2010-10-15 11:27:45 -0700 | [diff] [blame] | 2430 | spin_lock_init(&ha->vport_slock); |
Saurav Kashyap | a9b6f722 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 2431 | mutex_init(&ha->selflogin_lock); |
Chad Dupuis | 7a8ab9c | 2014-02-26 04:14:56 -0500 | [diff] [blame] | 2432 | mutex_init(&ha->optrom_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2434 | /* Set ISP-type information. */ |
| 2435 | qla2x00_set_isp_flags(ha); |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2436 | |
| 2437 | /* Set EEH reset type to fundamental if required by hba */ |
Joe Carnuccio | 9567611 | 2012-08-22 14:21:20 -0400 | [diff] [blame] | 2438 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) || |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2439 | IS_QLA83XX(ha) || IS_QLA27XX(ha)) |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2440 | pdev->needs_freset = 1; |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2441 | |
Chad Dupuis | cba1e47 | 2011-11-18 09:03:21 -0800 | [diff] [blame] | 2442 | ha->prev_topology = 0; |
| 2443 | ha->init_cb_size = sizeof(init_cb_t); |
| 2444 | ha->link_data_rate = PORT_SPEED_UNKNOWN; |
| 2445 | ha->optrom_size = OPTROM_SIZE_2300; |
| 2446 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2447 | /* Assign ISP specific operations. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | if (IS_QLA2100(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2449 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2451 | req_length = REQUEST_ENTRY_CNT_2100; |
| 2452 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2453 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2454 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2455 | ha->flash_conf_off = ~0; |
| 2456 | ha->flash_data_off = ~0; |
| 2457 | ha->nvram_conf_off = ~0; |
| 2458 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2459 | ha->isp_ops = &qla2100_isp_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | } else if (IS_QLA2200(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2461 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Andrew Vasquez | 67ddda3 | 2012-02-09 11:14:08 -0800 | [diff] [blame] | 2462 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2200; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2463 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2464 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2465 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2466 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2467 | ha->flash_conf_off = ~0; |
| 2468 | ha->flash_data_off = ~0; |
| 2469 | ha->nvram_conf_off = ~0; |
| 2470 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2471 | ha->isp_ops = &qla2100_isp_ops; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2472 | } else if (IS_QLA23XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2473 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2474 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2475 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2476 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2477 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2478 | ha->gid_list_info_size = 6; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2479 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) |
| 2480 | ha->optrom_size = OPTROM_SIZE_2322; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2481 | ha->flash_conf_off = ~0; |
| 2482 | ha->flash_data_off = ~0; |
| 2483 | ha->nvram_conf_off = ~0; |
| 2484 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2485 | ha->isp_ops = &qla2300_isp_ops; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2486 | } else if (IS_QLA24XX_TYPE(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2487 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2488 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2489 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2490 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2491 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2492 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2493 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2494 | ha->gid_list_info_size = 8; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2495 | ha->optrom_size = OPTROM_SIZE_24XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2496 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2497 | ha->isp_ops = &qla24xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2498 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2499 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2500 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2501 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2502 | } else if (IS_QLA25XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2503 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2504 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2505 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2506 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2507 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2508 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2509 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2510 | ha->gid_list_info_size = 8; |
| 2511 | ha->optrom_size = OPTROM_SIZE_25XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2512 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2513 | ha->isp_ops = &qla25xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2514 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2515 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2516 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2517 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
| 2518 | } else if (IS_QLA81XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2519 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2520 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2521 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2522 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 2523 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2524 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2525 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2526 | ha->gid_list_info_size = 8; |
| 2527 | ha->optrom_size = OPTROM_SIZE_81XX; |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 2528 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2529 | ha->isp_ops = &qla81xx_isp_ops; |
| 2530 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2531 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2532 | ha->nvram_conf_off = ~0; |
| 2533 | ha->nvram_data_off = ~0; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2534 | } else if (IS_QLA82XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2535 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2536 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2537 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2538 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2539 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2540 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2541 | ha->gid_list_info_size = 8; |
| 2542 | ha->optrom_size = OPTROM_SIZE_82XX; |
Andrew Vasquez | 087c621 | 2010-11-23 16:52:48 -0800 | [diff] [blame] | 2543 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2544 | ha->isp_ops = &qla82xx_isp_ops; |
| 2545 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2546 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2547 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2548 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2549 | } else if (IS_QLA8044(ha)) { |
| 2550 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
| 2551 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2552 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2553 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2554 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2555 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2556 | ha->gid_list_info_size = 8; |
| 2557 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2558 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2559 | ha->isp_ops = &qla8044_isp_ops; |
| 2560 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2561 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2562 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2563 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2564 | } else if (IS_QLA83XX(ha)) { |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2565 | ha->portnum = PCI_FUNC(ha->pdev->devfn); |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2566 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2567 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2568 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2569 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | b8aa4bd | 2013-01-30 03:34:40 -0500 | [diff] [blame] | 2570 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2571 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2572 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2573 | ha->gid_list_info_size = 8; |
| 2574 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2575 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2576 | ha->isp_ops = &qla83xx_isp_ops; |
| 2577 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2578 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2579 | ha->nvram_conf_off = ~0; |
| 2580 | ha->nvram_data_off = ~0; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2581 | } else if (IS_QLAFX00(ha)) { |
| 2582 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00; |
| 2583 | ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00; |
| 2584 | ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00; |
| 2585 | req_length = REQUEST_ENTRY_CNT_FX00; |
| 2586 | rsp_length = RESPONSE_ENTRY_CNT_FX00; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2587 | ha->isp_ops = &qlafx00_isp_ops; |
| 2588 | ha->port_down_retry_count = 30; /* default value */ |
| 2589 | ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL; |
| 2590 | ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL; |
Armen Baloyan | 71e5600 | 2013-08-27 01:37:38 -0400 | [diff] [blame] | 2591 | ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2592 | ha->mr.fw_hbt_en = 1; |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 2593 | ha->mr.host_info_resend = false; |
| 2594 | ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2595 | } else if (IS_QLA27XX(ha)) { |
| 2596 | ha->portnum = PCI_FUNC(ha->pdev->devfn); |
| 2597 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
| 2598 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2599 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2600 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2601 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2602 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2603 | ha->gid_list_info_size = 8; |
| 2604 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2605 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2606 | ha->isp_ops = &qla27xx_isp_ops; |
| 2607 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2608 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2609 | ha->nvram_conf_off = ~0; |
| 2610 | ha->nvram_data_off = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | } |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2612 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2613 | ql_dbg_pci(ql_dbg_init, pdev, 0x001e, |
| 2614 | "mbx_count=%d, req_length=%d, " |
| 2615 | "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, " |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2616 | "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, " |
| 2617 | "max_fibre_devices=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2618 | ha->mbx_count, req_length, rsp_length, ha->max_loop_id, |
| 2619 | ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size, |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2620 | ha->nvram_npiv_size, ha->max_fibre_devices); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2621 | ql_dbg_pci(ql_dbg_init, pdev, 0x001f, |
| 2622 | "isp_ops=%p, flash_conf_off=%d, " |
| 2623 | "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n", |
| 2624 | ha->isp_ops, ha->flash_conf_off, ha->flash_data_off, |
| 2625 | ha->nvram_conf_off, ha->nvram_data_off); |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2626 | |
| 2627 | /* Configure PCI I/O space */ |
| 2628 | ret = ha->isp_ops->iospace_config(ha); |
| 2629 | if (ret) |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2630 | goto iospace_config_failed; |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2631 | |
| 2632 | ql_log_pci(ql_log_info, pdev, 0x001d, |
| 2633 | "Found an ISP%04X irq %d iobase 0x%p.\n", |
| 2634 | pdev->device, pdev->irq, ha->iobase); |
matthias@kaehlcke.net | 6c2f527 | 2008-05-12 22:21:11 -0700 | [diff] [blame] | 2635 | mutex_init(&ha->vport_lock); |
Marcus Barrow | 0b05a1f | 2008-01-17 09:02:13 -0800 | [diff] [blame] | 2636 | init_completion(&ha->mbx_cmd_comp); |
| 2637 | complete(&ha->mbx_cmd_comp); |
| 2638 | init_completion(&ha->mbx_intr_comp); |
Sarang Radke | 23f2ebd | 2010-05-28 15:08:21 -0700 | [diff] [blame] | 2639 | init_completion(&ha->dcbx_comp); |
Chad Dupuis | f356bef | 2013-02-08 01:58:04 -0500 | [diff] [blame] | 2640 | init_completion(&ha->lb_portup_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2642 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 2644 | qla2x00_config_dma_addressing(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2645 | ql_dbg_pci(ql_dbg_init, pdev, 0x0020, |
| 2646 | "64 Bit addressing is %s.\n", |
| 2647 | ha->flags.enable_64bit_addressing ? "enable" : |
| 2648 | "disable"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2649 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 2650 | if (ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2651 | ql_log_pci(ql_log_fatal, pdev, 0x0031, |
| 2652 | "Failed to allocate memory for adapter, aborting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2654 | goto probe_hw_failed; |
| 2655 | } |
| 2656 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2657 | req->max_q_depth = MAX_Q_DEPTH; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2658 | if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2659 | req->max_q_depth = ql2xmaxqdepth; |
| 2660 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2661 | |
| 2662 | base_vha = qla2x00_create_host(sht, ha); |
| 2663 | if (!base_vha) { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2664 | ret = -ENOMEM; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2665 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2666 | qla2x00_free_req_que(ha, req); |
| 2667 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2668 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | } |
| 2670 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2671 | pci_set_drvdata(pdev, base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2673 | host = base_vha->host; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2674 | base_vha->req = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2675 | if (IS_QLA2XXX_MIDTYPE(ha)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2676 | base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2677 | else |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2678 | base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + |
| 2679 | base_vha->vp_idx; |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2680 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2681 | /* Setup fcport template structure. */ |
| 2682 | ha->mr.fcport.vha = base_vha; |
| 2683 | ha->mr.fcport.port_type = FCT_UNKNOWN; |
| 2684 | ha->mr.fcport.loop_id = FC_NO_LOOP_ID; |
| 2685 | qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED); |
| 2686 | ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED; |
| 2687 | ha->mr.fcport.scan_state = 1; |
| 2688 | |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2689 | /* Set the SG table size based on ISP type */ |
| 2690 | if (!IS_FWI2_CAPABLE(ha)) { |
| 2691 | if (IS_QLA2100(ha)) |
| 2692 | host->sg_tablesize = 32; |
| 2693 | } else { |
| 2694 | if (!IS_QLA82XX(ha)) |
| 2695 | host->sg_tablesize = QLA_SG_ALL; |
| 2696 | } |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2697 | host->max_id = ha->max_fibre_devices; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2698 | host->cmd_per_lun = 3; |
Seokmann Ju | 711c1d9 | 2008-07-10 16:55:51 -0700 | [diff] [blame] | 2699 | host->unique_id = host->host_no; |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2700 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2701 | host->max_cmd_len = 32; |
| 2702 | else |
| 2703 | host->max_cmd_len = MAX_CMDSZ; |
Andrew Vasquez | 75bc419 | 2006-05-17 15:09:22 -0700 | [diff] [blame] | 2704 | host->max_channel = MAX_BUSES - 1; |
Andrew Vasquez | 8251592 | 2011-05-10 11:30:13 -0700 | [diff] [blame] | 2705 | host->max_lun = ql2xmaxlun; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2706 | host->transportt = qla2xxx_transport_template; |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 2707 | sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2708 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2709 | ql_dbg(ql_dbg_init, base_vha, 0x0033, |
| 2710 | "max_id=%d this_id=%d " |
| 2711 | "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] | 2712 | "max_lun=%d transportt=%p, vendor_id=%llu.\n", host->max_id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2713 | host->this_id, host->cmd_per_lun, host->unique_id, |
| 2714 | host->max_cmd_len, host->max_channel, host->max_lun, |
| 2715 | host->transportt, sht->vendor_id); |
| 2716 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2717 | que_init: |
| 2718 | /* Alloc arrays of request and response ring ptrs */ |
| 2719 | if (!qla2x00_alloc_queues(ha, req, rsp)) { |
| 2720 | ql_log(ql_log_fatal, base_vha, 0x003d, |
| 2721 | "Failed to allocate memory for queue pointers..." |
| 2722 | "aborting.\n"); |
| 2723 | goto probe_init_failed; |
| 2724 | } |
| 2725 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2726 | qlt_probe_one_stage1(base_vha, ha); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2727 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2728 | /* Set up the irqs */ |
| 2729 | ret = qla2x00_request_irqs(ha, rsp); |
| 2730 | if (ret) |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2731 | goto probe_init_failed; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 2732 | |
| 2733 | pci_save_state(pdev); |
| 2734 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2735 | /* Assign back pointers */ |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2736 | rsp->req = req; |
| 2737 | req->rsp = rsp; |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2738 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2739 | if (IS_QLAFX00(ha)) { |
| 2740 | ha->rsp_q_map[0] = rsp; |
| 2741 | ha->req_q_map[0] = req; |
| 2742 | set_bit(0, ha->req_qid_map); |
| 2743 | set_bit(0, ha->rsp_qid_map); |
| 2744 | } |
| 2745 | |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2746 | /* FWI2-capable only. */ |
| 2747 | req->req_q_in = &ha->iobase->isp24.req_q_in; |
| 2748 | req->req_q_out = &ha->iobase->isp24.req_q_out; |
| 2749 | rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; |
| 2750 | rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2751 | if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha)) { |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2752 | req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; |
| 2753 | req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; |
| 2754 | rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; |
| 2755 | rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 2756 | } |
| 2757 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2758 | if (IS_QLAFX00(ha)) { |
| 2759 | req->req_q_in = &ha->iobase->ispfx00.req_q_in; |
| 2760 | req->req_q_out = &ha->iobase->ispfx00.req_q_out; |
| 2761 | rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in; |
| 2762 | rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out; |
| 2763 | } |
| 2764 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2765 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2766 | req->req_q_out = &ha->iobase->isp82.req_q_out[0]; |
| 2767 | rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0]; |
| 2768 | rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0]; |
| 2769 | } |
| 2770 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2771 | ql_dbg(ql_dbg_multiq, base_vha, 0xc009, |
| 2772 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2773 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2774 | ql_dbg(ql_dbg_multiq, base_vha, 0xc00a, |
| 2775 | "req->req_q_in=%p req->req_q_out=%p " |
| 2776 | "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2777 | req->req_q_in, req->req_q_out, |
| 2778 | rsp->rsp_q_in, rsp->rsp_q_out); |
| 2779 | ql_dbg(ql_dbg_init, base_vha, 0x003e, |
| 2780 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2781 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2782 | ql_dbg(ql_dbg_init, base_vha, 0x003f, |
| 2783 | "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2784 | 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] | 2785 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2786 | if (ha->isp_ops->initialize_adapter(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2787 | ql_log(ql_log_fatal, base_vha, 0x00d6, |
| 2788 | "Failed to initialize adapter - Adapter flags %x.\n", |
| 2789 | base_vha->device_flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2790 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2791 | if (IS_QLA82XX(ha)) { |
| 2792 | qla82xx_idc_lock(ha); |
| 2793 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2794 | QLA8XXX_DEV_FAILED); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2795 | qla82xx_idc_unlock(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2796 | ql_log(ql_log_fatal, base_vha, 0x00d7, |
| 2797 | "HW State: FAILED.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2798 | } else if (IS_QLA8044(ha)) { |
| 2799 | qla8044_idc_lock(ha); |
| 2800 | qla8044_wr_direct(base_vha, |
| 2801 | QLA8044_CRB_DEV_STATE_INDEX, |
| 2802 | QLA8XXX_DEV_FAILED); |
| 2803 | qla8044_idc_unlock(ha); |
| 2804 | ql_log(ql_log_fatal, base_vha, 0x0150, |
| 2805 | "HW State: FAILED.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2806 | } |
| 2807 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2808 | ret = -ENODEV; |
| 2809 | goto probe_failed; |
| 2810 | } |
| 2811 | |
Chad Dupuis | 3b1bef6 | 2014-02-26 04:15:04 -0500 | [diff] [blame] | 2812 | if (IS_QLAFX00(ha)) |
| 2813 | host->can_queue = QLAFX00_MAX_CANQUEUE; |
| 2814 | else |
| 2815 | host->can_queue = req->num_outstanding_cmds - 10; |
| 2816 | |
| 2817 | ql_dbg(ql_dbg_init, base_vha, 0x0032, |
| 2818 | "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n", |
| 2819 | host->can_queue, base_vha->req, |
| 2820 | base_vha->mgmt_svr_loop_id, host->sg_tablesize); |
| 2821 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2822 | if (ha->mqenable) { |
| 2823 | if (qla25xx_setup_mode(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2824 | ql_log(ql_log_warn, base_vha, 0x00ec, |
| 2825 | "Failed to create queues, falling back to single queue mode.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2826 | goto que_init; |
| 2827 | } |
| 2828 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2829 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2830 | if (ha->flags.running_gold_fw) |
| 2831 | goto skip_dpc; |
| 2832 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2833 | /* |
| 2834 | * Startup the kernel thread for this host adapter |
| 2835 | */ |
| 2836 | ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2837 | "%s_dpc", base_vha->host_str); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2838 | if (IS_ERR(ha->dpc_thread)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2839 | ql_log(ql_log_fatal, base_vha, 0x00ed, |
| 2840 | "Failed to start DPC thread.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2841 | ret = PTR_ERR(ha->dpc_thread); |
| 2842 | goto probe_failed; |
| 2843 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2844 | ql_dbg(ql_dbg_init, base_vha, 0x00ee, |
| 2845 | "DPC thread started successfully.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2846 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2847 | /* |
| 2848 | * If we're not coming up in initiator mode, we might sit for |
| 2849 | * a while without waking up the dpc thread, which leads to a |
| 2850 | * stuck process warning. So just kick the dpc once here and |
| 2851 | * let the kthread start (and go back to sleep in qla2x00_do_dpc). |
| 2852 | */ |
| 2853 | qla2xxx_wake_dpc(base_vha); |
| 2854 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 2855 | INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error); |
| 2856 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 2857 | if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) { |
| 2858 | sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no); |
| 2859 | ha->dpc_lp_wq = create_singlethread_workqueue(wq_name); |
| 2860 | INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen); |
| 2861 | |
| 2862 | sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no); |
| 2863 | ha->dpc_hp_wq = create_singlethread_workqueue(wq_name); |
| 2864 | INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work); |
| 2865 | INIT_WORK(&ha->idc_state_handler, |
| 2866 | qla83xx_idc_state_handler_work); |
| 2867 | INIT_WORK(&ha->nic_core_unrecoverable, |
| 2868 | qla83xx_nic_core_unrecoverable_work); |
| 2869 | } |
| 2870 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2871 | skip_dpc: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2872 | list_add_tail(&base_vha->list, &ha->vp_list); |
| 2873 | base_vha->host->irq = ha->pdev->irq; |
| 2874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | /* Initialized the timer */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2876 | qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2877 | ql_dbg(ql_dbg_init, base_vha, 0x00ef, |
| 2878 | "Started qla2x00_timer with " |
| 2879 | "interval=%d.\n", WATCH_INTERVAL); |
| 2880 | ql_dbg(ql_dbg_init, base_vha, 0x00f0, |
| 2881 | "Detected hba at address=%p.\n", |
| 2882 | ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2884 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2885 | if (ha->fw_attributes & BIT_4) { |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2886 | int prot = 0, guard; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2887 | base_vha->flags.difdix_supported = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2888 | ql_dbg(ql_dbg_init, base_vha, 0x00f1, |
| 2889 | "Registering for DIF/DIX type 1 and 3 protection.\n"); |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2890 | if (ql2xenabledif == 1) |
| 2891 | prot = SHOST_DIX_TYPE0_PROTECTION; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2892 | scsi_host_set_prot(host, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2893 | prot | SHOST_DIF_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2894 | | SHOST_DIF_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2895 | | SHOST_DIF_TYPE3_PROTECTION |
| 2896 | | SHOST_DIX_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2897 | | SHOST_DIX_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2898 | | SHOST_DIX_TYPE3_PROTECTION); |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2899 | |
| 2900 | guard = SHOST_DIX_GUARD_CRC; |
| 2901 | |
| 2902 | if (IS_PI_IPGUARD_CAPABLE(ha) && |
| 2903 | (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha))) |
| 2904 | guard |= SHOST_DIX_GUARD_IP; |
| 2905 | |
| 2906 | scsi_host_set_guard(host, guard); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2907 | } else |
| 2908 | base_vha->flags.difdix_supported = 0; |
| 2909 | } |
| 2910 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2911 | ha->isp_ops->enable_intrs(ha); |
| 2912 | |
Armen Baloyan | 1fe19ee | 2013-08-27 01:37:41 -0400 | [diff] [blame] | 2913 | if (IS_QLAFX00(ha)) { |
| 2914 | ret = qlafx00_fx_disc(base_vha, |
| 2915 | &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO); |
| 2916 | host->sg_tablesize = (ha->mr.extended_io_enabled) ? |
| 2917 | QLA_SG_ALL : 128; |
| 2918 | } |
| 2919 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2920 | ret = scsi_add_host(host, &pdev->dev); |
| 2921 | if (ret) |
| 2922 | goto probe_failed; |
| 2923 | |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2924 | base_vha->flags.init_done = 1; |
| 2925 | base_vha->flags.online = 1; |
Saurav Kashyap | edaa5c7 | 2014-04-11 16:54:14 -0400 | [diff] [blame] | 2926 | ha->prev_minidump_failed = 0; |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2927 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2928 | ql_dbg(ql_dbg_init, base_vha, 0x00f2, |
| 2929 | "Init done and hba is online.\n"); |
| 2930 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2931 | if (qla_ini_mode_enabled(base_vha)) |
| 2932 | scsi_scan_host(host); |
| 2933 | else |
| 2934 | ql_dbg(ql_dbg_init, base_vha, 0x0122, |
| 2935 | "skipping scsi_scan_host() for non-initiator port\n"); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2936 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2937 | qla2x00_alloc_sysfs_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2938 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2939 | if (IS_QLAFX00(ha)) { |
| 2940 | ret = qlafx00_fx_disc(base_vha, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2941 | &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO); |
| 2942 | |
| 2943 | /* Register system information */ |
| 2944 | ret = qlafx00_fx_disc(base_vha, |
| 2945 | &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO); |
| 2946 | } |
| 2947 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2948 | qla2x00_init_host_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2949 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2950 | qla2x00_dfs_setup(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2951 | |
Armen Baloyan | 03eb912 | 2013-10-30 03:38:22 -0400 | [diff] [blame] | 2952 | ql_log(ql_log_info, base_vha, 0x00fb, |
| 2953 | "QLogic %s - %s.\n", ha->model_number, ha->model_desc); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2954 | ql_log(ql_log_info, base_vha, 0x00fc, |
| 2955 | "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n", |
| 2956 | pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info), |
| 2957 | pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-', |
| 2958 | base_vha->host_no, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2959 | ha->isp_ops->fw_version_str(base_vha, fw_str)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2961 | qlt_add_target(ha, base_vha); |
| 2962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | return 0; |
| 2964 | |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2965 | probe_init_failed: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2966 | qla2x00_free_req_que(ha, req); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2967 | ha->req_q_map[0] = NULL; |
| 2968 | clear_bit(0, ha->req_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2969 | qla2x00_free_rsp_que(ha, rsp); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2970 | ha->rsp_q_map[0] = NULL; |
| 2971 | clear_bit(0, ha->rsp_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2972 | ha->max_req_queues = ha->max_rsp_queues = 0; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | probe_failed: |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2975 | if (base_vha->timer_active) |
| 2976 | qla2x00_stop_timer(base_vha); |
| 2977 | base_vha->flags.online = 0; |
| 2978 | if (ha->dpc_thread) { |
| 2979 | struct task_struct *t = ha->dpc_thread; |
| 2980 | |
| 2981 | ha->dpc_thread = NULL; |
| 2982 | kthread_stop(t); |
| 2983 | } |
| 2984 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2985 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2987 | scsi_host_put(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2989 | probe_hw_failed: |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2990 | if (IS_QLA82XX(ha)) { |
| 2991 | qla82xx_idc_lock(ha); |
| 2992 | qla82xx_clear_drv_active(ha); |
| 2993 | qla82xx_idc_unlock(ha); |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2994 | } |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2995 | if (IS_QLA8044(ha)) { |
| 2996 | qla8044_idc_lock(ha); |
Saurav Kashyap | c41afc9 | 2013-11-07 02:54:56 -0500 | [diff] [blame] | 2997 | qla8044_clear_drv_active(ha); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2998 | qla8044_idc_unlock(ha); |
| 2999 | } |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 3000 | iospace_config_failed: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3001 | if (IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 3002 | if (!ha->nx_pcibase) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3003 | iounmap((device_reg_t *)ha->nx_pcibase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3004 | if (!ql2xdbwr) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3005 | iounmap((device_reg_t *)ha->nxdb_wr_ptr); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3006 | } else { |
| 3007 | if (ha->iobase) |
| 3008 | iounmap(ha->iobase); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3009 | if (ha->cregbase) |
| 3010 | iounmap(ha->cregbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3011 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3012 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 3013 | kfree(ha); |
| 3014 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 3016 | probe_out: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3017 | pci_disable_device(pdev); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 3018 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 3021 | static void |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3022 | qla2x00_shutdown(struct pci_dev *pdev) |
| 3023 | { |
| 3024 | scsi_qla_host_t *vha; |
| 3025 | struct qla_hw_data *ha; |
| 3026 | |
Masanari Iida | 552f3f9 | 2013-02-08 01:57:44 -0500 | [diff] [blame] | 3027 | if (!atomic_read(&pdev->enable_cnt)) |
| 3028 | return; |
| 3029 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3030 | vha = pci_get_drvdata(pdev); |
| 3031 | ha = vha->hw; |
| 3032 | |
Armen Baloyan | 4247934 | 2013-08-27 01:37:37 -0400 | [diff] [blame] | 3033 | /* Notify ISPFX00 firmware */ |
| 3034 | if (IS_QLAFX00(ha)) |
| 3035 | qlafx00_driver_shutdown(vha, 20); |
| 3036 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3037 | /* Turn-off FCE trace */ |
| 3038 | if (ha->flags.fce_enabled) { |
| 3039 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
| 3040 | ha->flags.fce_enabled = 0; |
| 3041 | } |
| 3042 | |
| 3043 | /* Turn-off EFT trace */ |
| 3044 | if (ha->eft) |
| 3045 | qla2x00_disable_eft_trace(vha); |
| 3046 | |
| 3047 | /* Stop currently executing firmware. */ |
| 3048 | qla2x00_try_to_stop_firmware(vha); |
| 3049 | |
| 3050 | /* Turn adapter off line */ |
| 3051 | vha->flags.online = 0; |
| 3052 | |
| 3053 | /* turn-off interrupts on the card */ |
| 3054 | if (ha->interrupts_on) { |
| 3055 | vha->flags.init_done = 0; |
| 3056 | ha->isp_ops->disable_intrs(ha); |
| 3057 | } |
| 3058 | |
| 3059 | qla2x00_free_irqs(vha); |
| 3060 | |
| 3061 | qla2x00_free_fw_dump(ha); |
| 3062 | } |
| 3063 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3064 | /* Deletes all the virtual ports for a given ha */ |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3065 | static void |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3066 | 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] | 3067 | { |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3068 | struct Scsi_Host *scsi_host; |
| 3069 | scsi_qla_host_t *vha; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3070 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3071 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3072 | mutex_lock(&ha->vport_lock); |
| 3073 | while (ha->cur_vport_count) { |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3074 | spin_lock_irqsave(&ha->vport_slock, flags); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3075 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3076 | BUG_ON(base_vha->list.next == &ha->vp_list); |
| 3077 | /* This assumes first entry in ha->vp_list is always base vha */ |
| 3078 | vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3079 | scsi_host = scsi_host_get(vha->host); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3080 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3081 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
| 3082 | mutex_unlock(&ha->vport_lock); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3083 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3084 | fc_vport_terminate(vha->fc_vport); |
| 3085 | scsi_host_put(vha->host); |
| 3086 | |
| 3087 | mutex_lock(&ha->vport_lock); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3088 | } |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3089 | mutex_unlock(&ha->vport_lock); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3090 | } |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 3091 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3092 | /* Stops all deferred work threads */ |
| 3093 | static void |
| 3094 | qla2x00_destroy_deferred_work(struct qla_hw_data *ha) |
| 3095 | { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 3096 | /* Flush the work queue and remove it */ |
| 3097 | if (ha->wq) { |
| 3098 | flush_workqueue(ha->wq); |
| 3099 | destroy_workqueue(ha->wq); |
| 3100 | ha->wq = NULL; |
| 3101 | } |
| 3102 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 3103 | /* Cancel all work and destroy DPC workqueues */ |
| 3104 | if (ha->dpc_lp_wq) { |
| 3105 | cancel_work_sync(&ha->idc_aen); |
| 3106 | destroy_workqueue(ha->dpc_lp_wq); |
| 3107 | ha->dpc_lp_wq = NULL; |
| 3108 | } |
| 3109 | |
| 3110 | if (ha->dpc_hp_wq) { |
| 3111 | cancel_work_sync(&ha->nic_core_reset); |
| 3112 | cancel_work_sync(&ha->idc_state_handler); |
| 3113 | cancel_work_sync(&ha->nic_core_unrecoverable); |
| 3114 | destroy_workqueue(ha->dpc_hp_wq); |
| 3115 | ha->dpc_hp_wq = NULL; |
| 3116 | } |
| 3117 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3118 | /* Kill the kernel thread for this host */ |
| 3119 | if (ha->dpc_thread) { |
| 3120 | struct task_struct *t = ha->dpc_thread; |
| 3121 | |
| 3122 | /* |
| 3123 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 3124 | * so we need to zero it out. |
| 3125 | */ |
| 3126 | ha->dpc_thread = NULL; |
| 3127 | kthread_stop(t); |
| 3128 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3129 | } |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3130 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3131 | static void |
| 3132 | qla2x00_unmap_iobases(struct qla_hw_data *ha) |
| 3133 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3134 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | b963752 | 2010-05-28 15:08:15 -0700 | [diff] [blame] | 3135 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3136 | iounmap((device_reg_t *)ha->nx_pcibase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3137 | if (!ql2xdbwr) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3138 | iounmap((device_reg_t *)ha->nxdb_wr_ptr); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3139 | } else { |
| 3140 | if (ha->iobase) |
| 3141 | iounmap(ha->iobase); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3142 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3143 | if (ha->cregbase) |
| 3144 | iounmap(ha->cregbase); |
| 3145 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3146 | if (ha->mqiobase) |
| 3147 | iounmap(ha->mqiobase); |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3148 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3149 | if ((IS_QLA83XX(ha) || IS_QLA27XX(ha)) && ha->msixbase) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3150 | iounmap(ha->msixbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3151 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3152 | } |
| 3153 | |
| 3154 | static void |
| 3155 | qla2x00_clear_drv_active(scsi_qla_host_t *vha) |
| 3156 | { |
| 3157 | struct qla_hw_data *ha = vha->hw; |
| 3158 | |
| 3159 | if (IS_QLA8044(ha)) { |
| 3160 | qla8044_idc_lock(ha); |
Saurav Kashyap | c41afc9 | 2013-11-07 02:54:56 -0500 | [diff] [blame] | 3161 | qla8044_clear_drv_active(ha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3162 | qla8044_idc_unlock(ha); |
| 3163 | } else if (IS_QLA82XX(ha)) { |
| 3164 | qla82xx_idc_lock(ha); |
| 3165 | qla82xx_clear_drv_active(ha); |
| 3166 | qla82xx_idc_unlock(ha); |
| 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | static void |
| 3171 | qla2x00_remove_one(struct pci_dev *pdev) |
| 3172 | { |
| 3173 | scsi_qla_host_t *base_vha; |
| 3174 | struct qla_hw_data *ha; |
| 3175 | |
| 3176 | /* |
| 3177 | * If the PCI device is disabled that means that probe failed and any |
| 3178 | * resources should be have cleaned up on probe exit. |
| 3179 | */ |
| 3180 | if (!atomic_read(&pdev->enable_cnt)) |
| 3181 | return; |
| 3182 | |
| 3183 | base_vha = pci_get_drvdata(pdev); |
| 3184 | ha = base_vha->hw; |
| 3185 | |
Sawan Chandak | 638a1a0 | 2014-04-11 16:54:38 -0400 | [diff] [blame^] | 3186 | qla2x00_wait_for_hba_ready(base_vha); |
| 3187 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3188 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 3189 | |
| 3190 | if (IS_QLAFX00(ha)) |
| 3191 | qlafx00_driver_shutdown(base_vha, 20); |
| 3192 | |
| 3193 | qla2x00_delete_all_vps(ha, base_vha); |
| 3194 | |
| 3195 | if (IS_QLA8031(ha)) { |
| 3196 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07e, |
| 3197 | "Clearing fcoe driver presence.\n"); |
| 3198 | if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS) |
| 3199 | ql_dbg(ql_dbg_p3p, base_vha, 0xb079, |
| 3200 | "Error while clearing DRV-Presence.\n"); |
| 3201 | } |
| 3202 | |
| 3203 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 3204 | |
| 3205 | qla2x00_dfs_remove(base_vha); |
| 3206 | |
| 3207 | qla84xx_put_chip(base_vha); |
| 3208 | |
| 3209 | /* Disable timer */ |
| 3210 | if (base_vha->timer_active) |
| 3211 | qla2x00_stop_timer(base_vha); |
| 3212 | |
| 3213 | base_vha->flags.online = 0; |
| 3214 | |
| 3215 | qla2x00_destroy_deferred_work(ha); |
| 3216 | |
| 3217 | qlt_remove_target(ha, base_vha); |
| 3218 | |
| 3219 | qla2x00_free_sysfs_attr(base_vha, true); |
| 3220 | |
| 3221 | fc_remove_host(base_vha->host); |
| 3222 | |
| 3223 | scsi_remove_host(base_vha->host); |
| 3224 | |
| 3225 | qla2x00_free_device(base_vha); |
| 3226 | |
| 3227 | scsi_host_put(base_vha->host); |
| 3228 | |
| 3229 | qla2x00_clear_drv_active(base_vha); |
| 3230 | |
| 3231 | qla2x00_unmap_iobases(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3232 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3233 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 3234 | kfree(ha); |
| 3235 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3237 | pci_disable_pcie_error_reporting(pdev); |
| 3238 | |
Bernhard Walle | 665db93 | 2007-03-28 00:49:49 +0200 | [diff] [blame] | 3239 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3241 | |
| 3242 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3243 | qla2x00_free_device(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3245 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3246 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3247 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
| 3248 | |
| 3249 | /* Disable timer */ |
| 3250 | if (vha->timer_active) |
| 3251 | qla2x00_stop_timer(vha); |
| 3252 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 3253 | qla25xx_delete_queues(vha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3254 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3255 | if (ha->flags.fce_enabled) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3256 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3257 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3258 | if (ha->eft) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3259 | qla2x00_disable_eft_trace(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3260 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3261 | /* Stop currently executing firmware. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3262 | qla2x00_try_to_stop_firmware(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3264 | vha->flags.online = 0; |
| 3265 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3266 | /* turn-off interrupts on the card */ |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3267 | if (ha->interrupts_on) { |
| 3268 | vha->flags.init_done = 0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 3269 | ha->isp_ops->disable_intrs(ha); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3270 | } |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3271 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3272 | qla2x00_free_irqs(vha); |
| 3273 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3274 | qla2x00_free_fcports(vha); |
| 3275 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3276 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3277 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 3278 | qla82xx_md_free(vha); |
| 3279 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3280 | qla2x00_free_queues(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | } |
| 3282 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3283 | void qla2x00_free_fcports(struct scsi_qla_host *vha) |
| 3284 | { |
| 3285 | fc_port_t *fcport, *tfcport; |
| 3286 | |
| 3287 | list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) { |
| 3288 | list_del(&fcport->list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3289 | qla2x00_clear_loop_id(fcport); |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3290 | kfree(fcport); |
| 3291 | fcport = NULL; |
| 3292 | } |
| 3293 | } |
| 3294 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3295 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3296 | 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] | 3297 | int defer) |
| 3298 | { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3299 | struct fc_rport *rport; |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3300 | scsi_qla_host_t *base_vha; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3301 | unsigned long flags; |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3302 | |
| 3303 | if (!fcport->rport) |
| 3304 | return; |
| 3305 | |
| 3306 | rport = fcport->rport; |
| 3307 | if (defer) { |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3308 | base_vha = pci_get_drvdata(vha->hw->pdev); |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3309 | spin_lock_irqsave(vha->host->host_lock, flags); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3310 | fcport->drport = rport; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3311 | spin_unlock_irqrestore(vha->host->host_lock, flags); |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3312 | set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
| 3313 | qla2xxx_wake_dpc(base_vha); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3314 | } else { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3315 | fc_remote_port_delete(rport); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3316 | qlt_fc_port_deleted(vha, fcport); |
| 3317 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3318 | } |
| 3319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3320 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
| 3322 | * |
| 3323 | * Input: ha = adapter block pointer. fcport = port structure pointer. |
| 3324 | * |
| 3325 | * Return: None. |
| 3326 | * |
| 3327 | * Context: |
| 3328 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3329 | 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] | 3330 | int do_login, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3332 | if (IS_QLAFX00(vha->hw)) { |
| 3333 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
| 3334 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3335 | return; |
| 3336 | } |
| 3337 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3338 | if (atomic_read(&fcport->state) == FCS_ONLINE && |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3339 | vha->vp_idx == fcport->vha->vp_idx) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3340 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3341 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3342 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 3343 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3344 | * We may need to retry the login, so don't change the state of the |
| 3345 | * port but do the retries. |
| 3346 | */ |
| 3347 | if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3348 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | |
| 3350 | if (!do_login) |
| 3351 | return; |
| 3352 | |
| 3353 | if (fcport->login_retry == 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3354 | fcport->login_retry = vha->hw->login_retry_count; |
| 3355 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3357 | ql_dbg(ql_dbg_disc, vha, 0x2067, |
Oleksandr Khoshaba | 7b83355 | 2013-08-27 01:37:27 -0400 | [diff] [blame] | 3358 | "Port login retry %8phN, id = 0x%04x retry cnt=%d.\n", |
| 3359 | fcport->port_name, fcport->loop_id, fcport->login_retry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | } |
| 3361 | } |
| 3362 | |
| 3363 | /* |
| 3364 | * qla2x00_mark_all_devices_lost |
| 3365 | * Updates fcport state when device goes offline. |
| 3366 | * |
| 3367 | * Input: |
| 3368 | * ha = adapter block pointer. |
| 3369 | * fcport = port structure pointer. |
| 3370 | * |
| 3371 | * Return: |
| 3372 | * None. |
| 3373 | * |
| 3374 | * Context: |
| 3375 | */ |
| 3376 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3377 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3378 | { |
| 3379 | fc_port_t *fcport; |
| 3380 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3381 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3382 | if (vha->vp_idx != 0 && vha->vp_idx != fcport->vha->vp_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3383 | continue; |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | /* |
| 3386 | * No point in marking the device as lost, if the device is |
| 3387 | * already DEAD. |
| 3388 | */ |
| 3389 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
| 3390 | continue; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3391 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3392 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3393 | if (defer) |
| 3394 | qla2x00_schedule_rport_del(vha, fcport, defer); |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3395 | else if (vha->vp_idx == fcport->vha->vp_idx) |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3396 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3397 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3398 | } |
| 3399 | } |
| 3400 | |
| 3401 | /* |
| 3402 | * qla2x00_mem_alloc |
| 3403 | * Allocates adapter memory. |
| 3404 | * |
| 3405 | * Returns: |
| 3406 | * 0 = success. |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3407 | * !0 = failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3409 | static int |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3410 | qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, |
| 3411 | struct req_que **req, struct rsp_que **rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 | { |
| 3413 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3414 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3415 | 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] | 3416 | &ha->init_cb_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3417 | if (!ha->init_cb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3418 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3419 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3420 | if (qlt_mem_alloc(ha) < 0) |
| 3421 | goto fail_free_init_cb; |
| 3422 | |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3423 | ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, |
| 3424 | qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3425 | if (!ha->gid_list) |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3426 | goto fail_free_tgt_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3427 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3428 | ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); |
| 3429 | if (!ha->srb_mempool) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3430 | goto fail_free_gid_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3431 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3432 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3433 | /* Allocate cache for CT6 Ctx. */ |
| 3434 | if (!ctx_cachep) { |
| 3435 | ctx_cachep = kmem_cache_create("qla2xxx_ctx", |
| 3436 | sizeof(struct ct6_dsd), 0, |
| 3437 | SLAB_HWCACHE_ALIGN, NULL); |
| 3438 | if (!ctx_cachep) |
| 3439 | goto fail_free_gid_list; |
| 3440 | } |
| 3441 | ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ, |
| 3442 | ctx_cachep); |
| 3443 | if (!ha->ctx_mempool) |
| 3444 | goto fail_free_srb_mempool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3445 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021, |
| 3446 | "ctx_cachep=%p ctx_mempool=%p.\n", |
| 3447 | ctx_cachep, ha->ctx_mempool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3448 | } |
| 3449 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3450 | /* Get memory for cached NVRAM */ |
| 3451 | ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); |
| 3452 | if (!ha->nvram) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3453 | goto fail_free_ctx_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3455 | snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, |
| 3456 | ha->pdev->device); |
| 3457 | ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3458 | DMA_POOL_SIZE, 8, 0); |
| 3459 | if (!ha->s_dma_pool) |
| 3460 | goto fail_free_nvram; |
| 3461 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3462 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022, |
| 3463 | "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n", |
| 3464 | ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool); |
| 3465 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3466 | if (IS_P3P_TYPE(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3467 | ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3468 | DSD_LIST_DMA_POOL_SIZE, 8, 0); |
| 3469 | if (!ha->dl_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3470 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0023, |
| 3471 | "Failed to allocate memory for dl_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3472 | goto fail_s_dma_pool; |
| 3473 | } |
| 3474 | |
| 3475 | ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3476 | FCP_CMND_DMA_POOL_SIZE, 8, 0); |
| 3477 | if (!ha->fcp_cmnd_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3478 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0024, |
| 3479 | "Failed to allocate memory for fcp_cmnd_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3480 | goto fail_dl_dma_pool; |
| 3481 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3482 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025, |
| 3483 | "dl_dma_pool=%p fcp_cmnd_dma_pool=%p.\n", |
| 3484 | ha->dl_dma_pool, ha->fcp_cmnd_dma_pool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3485 | } |
| 3486 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3487 | /* Allocate memory for SNS commands */ |
| 3488 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3489 | /* Get consistent memory allocated for SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3490 | ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3491 | sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3492 | if (!ha->sns_cmd) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3493 | goto fail_dma_pool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3494 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 3495 | "sns_cmd: %p.\n", ha->sns_cmd); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3496 | } else { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3497 | /* Get consistent memory allocated for MS IOCB */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3498 | ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3499 | &ha->ms_iocb_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3500 | if (!ha->ms_iocb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3501 | goto fail_dma_pool; |
| 3502 | /* Get consistent memory allocated for CT SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3503 | ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3504 | sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3505 | if (!ha->ct_sns) |
| 3506 | goto fail_free_ms_iocb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3507 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027, |
| 3508 | "ms_iocb=%p ct_sns=%p.\n", |
| 3509 | ha->ms_iocb, ha->ct_sns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3510 | } |
| 3511 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3512 | /* Allocate memory for request ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3513 | *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); |
| 3514 | if (!*req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3515 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0028, |
| 3516 | "Failed to allocate memory for req.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3517 | goto fail_req; |
| 3518 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3519 | (*req)->length = req_len; |
| 3520 | (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3521 | ((*req)->length + 1) * sizeof(request_t), |
| 3522 | &(*req)->dma, GFP_KERNEL); |
| 3523 | if (!(*req)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3524 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0029, |
| 3525 | "Failed to allocate memory for req_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3526 | goto fail_req_ring; |
| 3527 | } |
| 3528 | /* Allocate memory for response ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3529 | *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); |
| 3530 | if (!*rsp) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3531 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002a, |
| 3532 | "Failed to allocate memory for rsp.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3533 | goto fail_rsp; |
| 3534 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3535 | (*rsp)->hw = ha; |
| 3536 | (*rsp)->length = rsp_len; |
| 3537 | (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3538 | ((*rsp)->length + 1) * sizeof(response_t), |
| 3539 | &(*rsp)->dma, GFP_KERNEL); |
| 3540 | if (!(*rsp)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3541 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002b, |
| 3542 | "Failed to allocate memory for rsp_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3543 | goto fail_rsp_ring; |
| 3544 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3545 | (*req)->rsp = *rsp; |
| 3546 | (*rsp)->req = *req; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3547 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c, |
| 3548 | "req=%p req->length=%d req->ring=%p rsp=%p " |
| 3549 | "rsp->length=%d rsp->ring=%p.\n", |
| 3550 | *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length, |
| 3551 | (*rsp)->ring); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3552 | /* Allocate memory for NVRAM data for vports */ |
| 3553 | if (ha->nvram_npiv_size) { |
| 3554 | ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) * |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3555 | ha->nvram_npiv_size, GFP_KERNEL); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3556 | if (!ha->npiv_info) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3557 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002d, |
| 3558 | "Failed to allocate memory for npiv_info.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3559 | goto fail_npiv_info; |
| 3560 | } |
| 3561 | } else |
| 3562 | ha->npiv_info = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3563 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3564 | /* Get consistent memory allocated for EX-INIT-CB. */ |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3565 | if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha)) { |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3566 | ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3567 | &ha->ex_init_cb_dma); |
| 3568 | if (!ha->ex_init_cb) |
| 3569 | goto fail_ex_init_cb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3570 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e, |
| 3571 | "ex_init_cb=%p.\n", ha->ex_init_cb); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3572 | } |
| 3573 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3574 | INIT_LIST_HEAD(&ha->gbl_dsd_list); |
| 3575 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3576 | /* Get consistent memory allocated for Async Port-Database. */ |
| 3577 | if (!IS_FWI2_CAPABLE(ha)) { |
| 3578 | ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3579 | &ha->async_pd_dma); |
| 3580 | if (!ha->async_pd) |
| 3581 | goto fail_async_pd; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3582 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f, |
| 3583 | "async_pd=%p.\n", ha->async_pd); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3584 | } |
| 3585 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3586 | INIT_LIST_HEAD(&ha->vp_list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3587 | |
| 3588 | /* Allocate memory for our loop_id bitmap */ |
| 3589 | ha->loop_id_map = kzalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE) * sizeof(long), |
| 3590 | GFP_KERNEL); |
| 3591 | if (!ha->loop_id_map) |
| 3592 | goto fail_async_pd; |
| 3593 | else { |
| 3594 | qla2x00_set_reserved_loop_ids(ha); |
| 3595 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123, |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 3596 | "loop_id_map=%p.\n", ha->loop_id_map); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3597 | } |
| 3598 | |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 3599 | return 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3600 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3601 | fail_async_pd: |
| 3602 | 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] | 3603 | fail_ex_init_cb: |
| 3604 | kfree(ha->npiv_info); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3605 | fail_npiv_info: |
| 3606 | dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * |
| 3607 | sizeof(response_t), (*rsp)->ring, (*rsp)->dma); |
| 3608 | (*rsp)->ring = NULL; |
| 3609 | (*rsp)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3610 | fail_rsp_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3611 | kfree(*rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3612 | fail_rsp: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3613 | dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * |
| 3614 | sizeof(request_t), (*req)->ring, (*req)->dma); |
| 3615 | (*req)->ring = NULL; |
| 3616 | (*req)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3617 | fail_req_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3618 | kfree(*req); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3619 | fail_req: |
| 3620 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
| 3621 | ha->ct_sns, ha->ct_sns_dma); |
| 3622 | ha->ct_sns = NULL; |
| 3623 | ha->ct_sns_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3624 | fail_free_ms_iocb: |
| 3625 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3626 | ha->ms_iocb = NULL; |
| 3627 | ha->ms_iocb_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3628 | fail_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3629 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3630 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3631 | ha->fcp_cmnd_dma_pool = NULL; |
| 3632 | } |
| 3633 | fail_dl_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3634 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3635 | dma_pool_destroy(ha->dl_dma_pool); |
| 3636 | ha->dl_dma_pool = NULL; |
| 3637 | } |
| 3638 | fail_s_dma_pool: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3639 | dma_pool_destroy(ha->s_dma_pool); |
| 3640 | ha->s_dma_pool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3641 | fail_free_nvram: |
| 3642 | kfree(ha->nvram); |
| 3643 | ha->nvram = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3644 | fail_free_ctx_mempool: |
| 3645 | mempool_destroy(ha->ctx_mempool); |
| 3646 | ha->ctx_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3647 | fail_free_srb_mempool: |
| 3648 | mempool_destroy(ha->srb_mempool); |
| 3649 | ha->srb_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3650 | fail_free_gid_list: |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3651 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3652 | ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3653 | ha->gid_list_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3654 | ha->gid_list = NULL; |
| 3655 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3656 | fail_free_tgt_mem: |
| 3657 | qlt_mem_free(ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3658 | fail_free_init_cb: |
| 3659 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, |
| 3660 | ha->init_cb_dma); |
| 3661 | ha->init_cb = NULL; |
| 3662 | ha->init_cb_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3663 | fail: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3664 | ql_log(ql_log_fatal, NULL, 0x0030, |
| 3665 | "Memory allocation failure.\n"); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3666 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | } |
| 3668 | |
| 3669 | /* |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3670 | * qla2x00_free_fw_dump |
| 3671 | * Frees fw dump stuff. |
| 3672 | * |
| 3673 | * Input: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3674 | * ha = adapter block pointer |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3675 | */ |
| 3676 | static void |
| 3677 | qla2x00_free_fw_dump(struct qla_hw_data *ha) |
| 3678 | { |
| 3679 | if (ha->fce) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3680 | dma_free_coherent(&ha->pdev->dev, |
| 3681 | FCE_SIZE, ha->fce, ha->fce_dma); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3682 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3683 | if (ha->eft) |
| 3684 | dma_free_coherent(&ha->pdev->dev, |
| 3685 | EFT_SIZE, ha->eft, ha->eft_dma); |
| 3686 | |
| 3687 | if (ha->fw_dump) |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3688 | vfree(ha->fw_dump); |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3689 | if (ha->fw_dump_template) |
| 3690 | vfree(ha->fw_dump_template); |
| 3691 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3692 | ha->fce = NULL; |
| 3693 | ha->fce_dma = 0; |
| 3694 | ha->eft = NULL; |
| 3695 | ha->eft_dma = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3696 | ha->fw_dumped = 0; |
Hiral Patel | 61f098d | 2014-04-11 16:54:21 -0400 | [diff] [blame] | 3697 | ha->fw_dump_cap_flags = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3698 | ha->fw_dump_reading = 0; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3699 | ha->fw_dump = NULL; |
| 3700 | ha->fw_dump_len = 0; |
| 3701 | ha->fw_dump_template = NULL; |
| 3702 | ha->fw_dump_template_len = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3706 | * qla2x00_mem_free |
| 3707 | * Frees all adapter allocated memory. |
| 3708 | * |
| 3709 | * Input: |
| 3710 | * ha = adapter block pointer. |
| 3711 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 3712 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3713 | qla2x00_mem_free(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | { |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3715 | qla2x00_free_fw_dump(ha); |
| 3716 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 3717 | if (ha->mctp_dump) |
| 3718 | dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump, |
| 3719 | ha->mctp_dump_dma); |
| 3720 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3721 | if (ha->srb_mempool) |
| 3722 | mempool_destroy(ha->srb_mempool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 3724 | if (ha->dcbx_tlv) |
| 3725 | dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, |
| 3726 | ha->dcbx_tlv, ha->dcbx_tlv_dma); |
| 3727 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 3728 | if (ha->xgmac_data) |
| 3729 | dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 3730 | ha->xgmac_data, ha->xgmac_data_dma); |
| 3731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | if (ha->sns_cmd) |
| 3733 | dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3734 | ha->sns_cmd, ha->sns_cmd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3735 | |
| 3736 | if (ha->ct_sns) |
| 3737 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3738 | ha->ct_sns, ha->ct_sns_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 3740 | if (ha->sfp_data) |
| 3741 | dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma); |
| 3742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3743 | if (ha->ms_iocb) |
| 3744 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3745 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3746 | if (ha->ex_init_cb) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3747 | dma_pool_free(ha->s_dma_pool, |
| 3748 | ha->ex_init_cb, ha->ex_init_cb_dma); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3749 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3750 | if (ha->async_pd) |
| 3751 | dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); |
| 3752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3753 | if (ha->s_dma_pool) |
| 3754 | dma_pool_destroy(ha->s_dma_pool); |
| 3755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | if (ha->gid_list) |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3757 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3758 | ha->gid_list, ha->gid_list_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3759 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3760 | if (IS_QLA82XX(ha)) { |
| 3761 | if (!list_empty(&ha->gbl_dsd_list)) { |
| 3762 | struct dsd_dma *dsd_ptr, *tdsd_ptr; |
| 3763 | |
| 3764 | /* clean up allocated prev pool */ |
| 3765 | list_for_each_entry_safe(dsd_ptr, |
| 3766 | tdsd_ptr, &ha->gbl_dsd_list, list) { |
| 3767 | dma_pool_free(ha->dl_dma_pool, |
| 3768 | dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma); |
| 3769 | list_del(&dsd_ptr->list); |
| 3770 | kfree(dsd_ptr); |
| 3771 | } |
| 3772 | } |
| 3773 | } |
| 3774 | |
| 3775 | if (ha->dl_dma_pool) |
| 3776 | dma_pool_destroy(ha->dl_dma_pool); |
| 3777 | |
| 3778 | if (ha->fcp_cmnd_dma_pool) |
| 3779 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3780 | |
| 3781 | if (ha->ctx_mempool) |
| 3782 | mempool_destroy(ha->ctx_mempool); |
| 3783 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3784 | qlt_mem_free(ha); |
| 3785 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3786 | if (ha->init_cb) |
| 3787 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3788 | ha->init_cb, ha->init_cb_dma); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3789 | vfree(ha->optrom_buffer); |
| 3790 | kfree(ha->nvram); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3791 | kfree(ha->npiv_info); |
Andrew Vasquez | 7a67735 | 2012-02-09 11:15:56 -0800 | [diff] [blame] | 3792 | kfree(ha->swl); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3793 | kfree(ha->loop_id_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3795 | ha->srb_mempool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3796 | ha->ctx_mempool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | ha->sns_cmd = NULL; |
| 3798 | ha->sns_cmd_dma = 0; |
| 3799 | ha->ct_sns = NULL; |
| 3800 | ha->ct_sns_dma = 0; |
| 3801 | ha->ms_iocb = NULL; |
| 3802 | ha->ms_iocb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | ha->init_cb = NULL; |
| 3804 | ha->init_cb_dma = 0; |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3805 | ha->ex_init_cb = NULL; |
| 3806 | ha->ex_init_cb_dma = 0; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3807 | ha->async_pd = NULL; |
| 3808 | ha->async_pd_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3809 | |
| 3810 | ha->s_dma_pool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3811 | ha->dl_dma_pool = NULL; |
| 3812 | ha->fcp_cmnd_dma_pool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | ha->gid_list = NULL; |
| 3815 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3816 | |
| 3817 | ha->tgt.atio_ring = NULL; |
| 3818 | ha->tgt.atio_dma = 0; |
| 3819 | ha->tgt.tgt_vp_map = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3820 | } |
| 3821 | |
| 3822 | struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, |
| 3823 | struct qla_hw_data *ha) |
| 3824 | { |
| 3825 | struct Scsi_Host *host; |
| 3826 | struct scsi_qla_host *vha = NULL; |
| 3827 | |
| 3828 | host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); |
| 3829 | if (host == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3830 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0107, |
| 3831 | "Failed to allocate host from the scsi layer, aborting.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3832 | goto fail; |
| 3833 | } |
| 3834 | |
| 3835 | /* Clear our data area */ |
| 3836 | vha = shost_priv(host); |
| 3837 | memset(vha, 0, sizeof(scsi_qla_host_t)); |
| 3838 | |
| 3839 | vha->host = host; |
| 3840 | vha->host_no = host->host_no; |
| 3841 | vha->hw = ha; |
| 3842 | |
| 3843 | INIT_LIST_HEAD(&vha->vp_fcports); |
| 3844 | INIT_LIST_HEAD(&vha->work_list); |
| 3845 | INIT_LIST_HEAD(&vha->list); |
| 3846 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3847 | spin_lock_init(&vha->work_lock); |
| 3848 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3849 | sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3850 | ql_dbg(ql_dbg_init, vha, 0x0041, |
| 3851 | "Allocated the host=%p hw=%p vha=%p dev_name=%s", |
| 3852 | vha->host, vha->hw, vha, |
| 3853 | dev_name(&(ha->pdev->dev))); |
| 3854 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3855 | return vha; |
| 3856 | |
| 3857 | fail: |
| 3858 | return vha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3859 | } |
| 3860 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3861 | static struct qla_work_evt * |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3862 | 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] | 3863 | { |
| 3864 | struct qla_work_evt *e; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3865 | uint8_t bail; |
| 3866 | |
| 3867 | QLA_VHA_MARK_BUSY(vha, bail); |
| 3868 | if (bail) |
| 3869 | return NULL; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3870 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3871 | e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3872 | if (!e) { |
| 3873 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3874 | return NULL; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3875 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3876 | |
| 3877 | INIT_LIST_HEAD(&e->list); |
| 3878 | e->type = type; |
| 3879 | e->flags = QLA_EVT_FLAG_FREE; |
| 3880 | return e; |
| 3881 | } |
| 3882 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3883 | static int |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3884 | 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] | 3885 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3886 | unsigned long flags; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3887 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3888 | spin_lock_irqsave(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3889 | list_add_tail(&e->list, &vha->work_list); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3890 | spin_unlock_irqrestore(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3891 | qla2xxx_wake_dpc(vha); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3892 | |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3893 | return QLA_SUCCESS; |
| 3894 | } |
| 3895 | |
| 3896 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3897 | 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] | 3898 | u32 data) |
| 3899 | { |
| 3900 | struct qla_work_evt *e; |
| 3901 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3902 | e = qla2x00_alloc_work(vha, QLA_EVT_AEN); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3903 | if (!e) |
| 3904 | return QLA_FUNCTION_FAILED; |
| 3905 | |
| 3906 | e->u.aen.code = code; |
| 3907 | e->u.aen.data = data; |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3908 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3909 | } |
| 3910 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3911 | int |
| 3912 | qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) |
| 3913 | { |
| 3914 | struct qla_work_evt *e; |
| 3915 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3916 | e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3917 | if (!e) |
| 3918 | return QLA_FUNCTION_FAILED; |
| 3919 | |
| 3920 | 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] | 3921 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3922 | } |
| 3923 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3924 | #define qla2x00_post_async_work(name, type) \ |
| 3925 | int qla2x00_post_async_##name##_work( \ |
| 3926 | struct scsi_qla_host *vha, \ |
| 3927 | fc_port_t *fcport, uint16_t *data) \ |
| 3928 | { \ |
| 3929 | struct qla_work_evt *e; \ |
| 3930 | \ |
| 3931 | e = qla2x00_alloc_work(vha, type); \ |
| 3932 | if (!e) \ |
| 3933 | return QLA_FUNCTION_FAILED; \ |
| 3934 | \ |
| 3935 | e->u.logio.fcport = fcport; \ |
| 3936 | if (data) { \ |
| 3937 | e->u.logio.data[0] = data[0]; \ |
| 3938 | e->u.logio.data[1] = data[1]; \ |
| 3939 | } \ |
| 3940 | return qla2x00_post_work(vha, e); \ |
| 3941 | } |
| 3942 | |
| 3943 | qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN); |
| 3944 | qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE); |
| 3945 | qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT); |
| 3946 | qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3947 | qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC); |
| 3948 | qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3949 | |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 3950 | int |
| 3951 | qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code) |
| 3952 | { |
| 3953 | struct qla_work_evt *e; |
| 3954 | |
| 3955 | e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT); |
| 3956 | if (!e) |
| 3957 | return QLA_FUNCTION_FAILED; |
| 3958 | |
| 3959 | e->u.uevent.code = code; |
| 3960 | return qla2x00_post_work(vha, e); |
| 3961 | } |
| 3962 | |
| 3963 | static void |
| 3964 | qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code) |
| 3965 | { |
| 3966 | char event_string[40]; |
| 3967 | char *envp[] = { event_string, NULL }; |
| 3968 | |
| 3969 | switch (code) { |
| 3970 | case QLA_UEVENT_CODE_FW_DUMP: |
| 3971 | snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld", |
| 3972 | vha->host_no); |
| 3973 | break; |
| 3974 | default: |
| 3975 | /* do nothing */ |
| 3976 | break; |
| 3977 | } |
| 3978 | kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp); |
| 3979 | } |
| 3980 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3981 | int |
| 3982 | qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode, |
| 3983 | uint32_t *data, int cnt) |
| 3984 | { |
| 3985 | struct qla_work_evt *e; |
| 3986 | |
| 3987 | e = qla2x00_alloc_work(vha, QLA_EVT_AENFX); |
| 3988 | if (!e) |
| 3989 | return QLA_FUNCTION_FAILED; |
| 3990 | |
| 3991 | e->u.aenfx.evtcode = evtcode; |
| 3992 | e->u.aenfx.count = cnt; |
| 3993 | memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt); |
| 3994 | return qla2x00_post_work(vha, e); |
| 3995 | } |
| 3996 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 3997 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3998 | qla2x00_do_work(struct scsi_qla_host *vha) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3999 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4000 | struct qla_work_evt *e, *tmp; |
| 4001 | unsigned long flags; |
| 4002 | LIST_HEAD(work); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4003 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4004 | spin_lock_irqsave(&vha->work_lock, flags); |
| 4005 | list_splice_init(&vha->work_list, &work); |
| 4006 | spin_unlock_irqrestore(&vha->work_lock, flags); |
| 4007 | |
| 4008 | list_for_each_entry_safe(e, tmp, &work, list) { |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4009 | list_del_init(&e->list); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4010 | |
| 4011 | switch (e->type) { |
| 4012 | case QLA_EVT_AEN: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4013 | fc_host_post_event(vha->host, fc_get_event_number(), |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4014 | e->u.aen.code, e->u.aen.data); |
| 4015 | break; |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 4016 | case QLA_EVT_IDC_ACK: |
| 4017 | qla81xx_idc_ack(vha, e->u.idc_ack.mb); |
| 4018 | break; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4019 | case QLA_EVT_ASYNC_LOGIN: |
| 4020 | qla2x00_async_login(vha, e->u.logio.fcport, |
| 4021 | e->u.logio.data); |
| 4022 | break; |
| 4023 | case QLA_EVT_ASYNC_LOGIN_DONE: |
| 4024 | qla2x00_async_login_done(vha, e->u.logio.fcport, |
| 4025 | e->u.logio.data); |
| 4026 | break; |
| 4027 | case QLA_EVT_ASYNC_LOGOUT: |
| 4028 | qla2x00_async_logout(vha, e->u.logio.fcport); |
| 4029 | break; |
| 4030 | case QLA_EVT_ASYNC_LOGOUT_DONE: |
| 4031 | qla2x00_async_logout_done(vha, e->u.logio.fcport, |
| 4032 | e->u.logio.data); |
| 4033 | break; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4034 | case QLA_EVT_ASYNC_ADISC: |
| 4035 | qla2x00_async_adisc(vha, e->u.logio.fcport, |
| 4036 | e->u.logio.data); |
| 4037 | break; |
| 4038 | case QLA_EVT_ASYNC_ADISC_DONE: |
| 4039 | qla2x00_async_adisc_done(vha, e->u.logio.fcport, |
| 4040 | e->u.logio.data); |
| 4041 | break; |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 4042 | case QLA_EVT_UEVENT: |
| 4043 | qla2x00_uevent_emit(vha, e->u.uevent.code); |
| 4044 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4045 | case QLA_EVT_AENFX: |
| 4046 | qlafx00_process_aen(vha, e); |
| 4047 | break; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4048 | } |
| 4049 | if (e->flags & QLA_EVT_FLAG_FREE) |
| 4050 | kfree(e); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 4051 | |
| 4052 | /* For each work completed decrement vha ref count */ |
| 4053 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4054 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4055 | } |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4056 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4057 | /* Relogins all the fcports of a vport |
| 4058 | * Context: dpc thread |
| 4059 | */ |
| 4060 | void qla2x00_relogin(struct scsi_qla_host *vha) |
| 4061 | { |
| 4062 | fc_port_t *fcport; |
Andrew Vasquez | c6b2fca | 2009-03-05 11:07:03 -0800 | [diff] [blame] | 4063 | int status; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4064 | uint16_t next_loopid = 0; |
| 4065 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4066 | uint16_t data[2]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4067 | |
| 4068 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 4069 | /* |
| 4070 | * If the port is not ONLINE then try to login |
| 4071 | * to it if we haven't run out of retries. |
| 4072 | */ |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4073 | if (atomic_read(&fcport->state) != FCS_ONLINE && |
| 4074 | fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4075 | fcport->login_retry--; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4076 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 4077 | if (fcport->flags & FCF_FCP2_DEVICE) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4078 | ha->isp_ops->fabric_logout(vha, |
| 4079 | fcport->loop_id, |
| 4080 | fcport->d_id.b.domain, |
| 4081 | fcport->d_id.b.area, |
| 4082 | fcport->d_id.b.al_pa); |
| 4083 | |
Joe Carnuccio | 03bcfb5 | 2011-03-30 11:46:27 -0700 | [diff] [blame] | 4084 | if (fcport->loop_id == FC_NO_LOOP_ID) { |
| 4085 | fcport->loop_id = next_loopid = |
| 4086 | ha->min_external_loopid; |
| 4087 | status = qla2x00_find_new_loop_id( |
| 4088 | vha, fcport); |
| 4089 | if (status != QLA_SUCCESS) { |
| 4090 | /* Ran out of IDs to use */ |
| 4091 | break; |
| 4092 | } |
| 4093 | } |
| 4094 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4095 | if (IS_ALOGIO_CAPABLE(ha)) { |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4096 | fcport->flags |= FCF_ASYNC_SENT; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4097 | data[0] = 0; |
| 4098 | data[1] = QLA_LOGIO_LOGIN_RETRIED; |
| 4099 | status = qla2x00_post_async_login_work( |
| 4100 | vha, fcport, data); |
| 4101 | if (status == QLA_SUCCESS) |
| 4102 | continue; |
| 4103 | /* Attempt a retry. */ |
| 4104 | status = 1; |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4105 | } else { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4106 | status = qla2x00_fabric_login(vha, |
| 4107 | fcport, &next_loopid); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4108 | if (status == QLA_SUCCESS) { |
| 4109 | int status2; |
| 4110 | uint8_t opts; |
| 4111 | |
| 4112 | opts = 0; |
| 4113 | if (fcport->flags & |
| 4114 | FCF_FCP2_DEVICE) |
| 4115 | opts |= BIT_1; |
Saurav Kashyap | 0300396 | 2012-11-21 02:40:31 -0500 | [diff] [blame] | 4116 | status2 = |
| 4117 | qla2x00_get_port_database( |
| 4118 | vha, fcport, opts); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4119 | if (status2 != QLA_SUCCESS) |
| 4120 | status = 1; |
| 4121 | } |
| 4122 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4123 | } else |
| 4124 | status = qla2x00_local_device_login(vha, |
| 4125 | fcport); |
| 4126 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4127 | if (status == QLA_SUCCESS) { |
| 4128 | fcport->old_loop_id = fcport->loop_id; |
| 4129 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4130 | ql_dbg(ql_dbg_disc, vha, 0x2003, |
| 4131 | "Port login OK: logged in ID 0x%x.\n", |
| 4132 | fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4133 | |
| 4134 | qla2x00_update_fcport(vha, fcport); |
| 4135 | |
| 4136 | } else if (status == 1) { |
| 4137 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 4138 | /* retry the login again */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4139 | ql_dbg(ql_dbg_disc, vha, 0x2007, |
| 4140 | "Retrying %d login again loop_id 0x%x.\n", |
| 4141 | fcport->login_retry, fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4142 | } else { |
| 4143 | fcport->login_retry = 0; |
| 4144 | } |
| 4145 | |
| 4146 | if (fcport->login_retry == 0 && status != QLA_SUCCESS) |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 4147 | qla2x00_clear_loop_id(fcport); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4148 | } |
| 4149 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| 4150 | break; |
| 4151 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4152 | } |
| 4153 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4154 | /* Schedule work on any of the dpc-workqueues */ |
| 4155 | void |
| 4156 | qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code) |
| 4157 | { |
| 4158 | struct qla_hw_data *ha = base_vha->hw; |
| 4159 | |
| 4160 | switch (work_code) { |
| 4161 | case MBA_IDC_AEN: /* 0x8200 */ |
| 4162 | if (ha->dpc_lp_wq) |
| 4163 | queue_work(ha->dpc_lp_wq, &ha->idc_aen); |
| 4164 | break; |
| 4165 | |
| 4166 | case QLA83XX_NIC_CORE_RESET: /* 0x1 */ |
| 4167 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4168 | if (ha->dpc_hp_wq) |
| 4169 | queue_work(ha->dpc_hp_wq, &ha->nic_core_reset); |
| 4170 | } else |
| 4171 | ql_dbg(ql_dbg_p3p, base_vha, 0xb05e, |
| 4172 | "NIC Core reset is already active. Skip " |
| 4173 | "scheduling it again.\n"); |
| 4174 | break; |
| 4175 | case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */ |
| 4176 | if (ha->dpc_hp_wq) |
| 4177 | queue_work(ha->dpc_hp_wq, &ha->idc_state_handler); |
| 4178 | break; |
| 4179 | case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */ |
| 4180 | if (ha->dpc_hp_wq) |
| 4181 | queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable); |
| 4182 | break; |
| 4183 | default: |
| 4184 | ql_log(ql_log_warn, base_vha, 0xb05f, |
| 4185 | "Unknow work-code=0x%x.\n", work_code); |
| 4186 | } |
| 4187 | |
| 4188 | return; |
| 4189 | } |
| 4190 | |
| 4191 | /* Work: Perform NIC Core Unrecoverable state handling */ |
| 4192 | void |
| 4193 | qla83xx_nic_core_unrecoverable_work(struct work_struct *work) |
| 4194 | { |
| 4195 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4196 | container_of(work, struct qla_hw_data, nic_core_unrecoverable); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4197 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4198 | uint32_t dev_state = 0; |
| 4199 | |
| 4200 | qla83xx_idc_lock(base_vha, 0); |
| 4201 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4202 | qla83xx_reset_ownership(base_vha); |
| 4203 | if (ha->flags.nic_core_reset_owner) { |
| 4204 | ha->flags.nic_core_reset_owner = 0; |
| 4205 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4206 | QLA8XXX_DEV_FAILED); |
| 4207 | ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n"); |
| 4208 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4209 | } |
| 4210 | qla83xx_idc_unlock(base_vha, 0); |
| 4211 | } |
| 4212 | |
| 4213 | /* Work: Execute IDC state handler */ |
| 4214 | void |
| 4215 | qla83xx_idc_state_handler_work(struct work_struct *work) |
| 4216 | { |
| 4217 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4218 | container_of(work, struct qla_hw_data, idc_state_handler); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4219 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4220 | uint32_t dev_state = 0; |
| 4221 | |
| 4222 | qla83xx_idc_lock(base_vha, 0); |
| 4223 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4224 | if (dev_state == QLA8XXX_DEV_FAILED || |
| 4225 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) |
| 4226 | qla83xx_idc_state_handler(base_vha); |
| 4227 | qla83xx_idc_unlock(base_vha, 0); |
| 4228 | } |
| 4229 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4230 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4231 | qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha) |
| 4232 | { |
| 4233 | int rval = QLA_SUCCESS; |
| 4234 | unsigned long heart_beat_wait = jiffies + (1 * HZ); |
| 4235 | uint32_t heart_beat_counter1, heart_beat_counter2; |
| 4236 | |
| 4237 | do { |
| 4238 | if (time_after(jiffies, heart_beat_wait)) { |
| 4239 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07c, |
| 4240 | "Nic Core f/w is not alive.\n"); |
| 4241 | rval = QLA_FUNCTION_FAILED; |
| 4242 | break; |
| 4243 | } |
| 4244 | |
| 4245 | qla83xx_idc_lock(base_vha, 0); |
| 4246 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4247 | &heart_beat_counter1); |
| 4248 | qla83xx_idc_unlock(base_vha, 0); |
| 4249 | msleep(100); |
| 4250 | qla83xx_idc_lock(base_vha, 0); |
| 4251 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4252 | &heart_beat_counter2); |
| 4253 | qla83xx_idc_unlock(base_vha, 0); |
| 4254 | } while (heart_beat_counter1 == heart_beat_counter2); |
| 4255 | |
| 4256 | return rval; |
| 4257 | } |
| 4258 | |
| 4259 | /* Work: Perform NIC Core Reset handling */ |
| 4260 | void |
| 4261 | qla83xx_nic_core_reset_work(struct work_struct *work) |
| 4262 | { |
| 4263 | struct qla_hw_data *ha = |
| 4264 | container_of(work, struct qla_hw_data, nic_core_reset); |
| 4265 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4266 | uint32_t dev_state = 0; |
| 4267 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 4268 | if (IS_QLA2031(ha)) { |
| 4269 | if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS) |
| 4270 | ql_log(ql_log_warn, base_vha, 0xb081, |
| 4271 | "Failed to dump mctp\n"); |
| 4272 | return; |
| 4273 | } |
| 4274 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4275 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4276 | if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) { |
| 4277 | qla83xx_idc_lock(base_vha, 0); |
| 4278 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4279 | &dev_state); |
| 4280 | qla83xx_idc_unlock(base_vha, 0); |
| 4281 | if (dev_state != QLA8XXX_DEV_NEED_RESET) { |
| 4282 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07a, |
| 4283 | "Nic Core f/w is alive.\n"); |
| 4284 | return; |
| 4285 | } |
| 4286 | } |
| 4287 | |
| 4288 | ha->flags.nic_core_reset_hdlr_active = 1; |
| 4289 | if (qla83xx_nic_core_reset(base_vha)) { |
| 4290 | /* NIC Core reset failed. */ |
| 4291 | ql_dbg(ql_dbg_p3p, base_vha, 0xb061, |
| 4292 | "NIC Core reset failed.\n"); |
| 4293 | } |
| 4294 | ha->flags.nic_core_reset_hdlr_active = 0; |
| 4295 | } |
| 4296 | } |
| 4297 | |
| 4298 | /* Work: Handle 8200 IDC aens */ |
| 4299 | void |
| 4300 | qla83xx_service_idc_aen(struct work_struct *work) |
| 4301 | { |
| 4302 | struct qla_hw_data *ha = |
| 4303 | container_of(work, struct qla_hw_data, idc_aen); |
| 4304 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4305 | uint32_t dev_state, idc_control; |
| 4306 | |
| 4307 | qla83xx_idc_lock(base_vha, 0); |
| 4308 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4309 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control); |
| 4310 | qla83xx_idc_unlock(base_vha, 0); |
| 4311 | if (dev_state == QLA8XXX_DEV_NEED_RESET) { |
| 4312 | if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) { |
| 4313 | ql_dbg(ql_dbg_p3p, base_vha, 0xb062, |
| 4314 | "Application requested NIC Core Reset.\n"); |
| 4315 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4316 | } else if (qla83xx_check_nic_core_fw_alive(base_vha) == |
| 4317 | QLA_SUCCESS) { |
| 4318 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07b, |
| 4319 | "Other protocol driver requested NIC Core Reset.\n"); |
| 4320 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4321 | } |
| 4322 | } else if (dev_state == QLA8XXX_DEV_FAILED || |
| 4323 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) { |
| 4324 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4325 | } |
| 4326 | } |
| 4327 | |
| 4328 | static void |
| 4329 | qla83xx_wait_logic(void) |
| 4330 | { |
| 4331 | int i; |
| 4332 | |
| 4333 | /* Yield CPU */ |
| 4334 | if (!in_interrupt()) { |
| 4335 | /* |
| 4336 | * Wait about 200ms before retrying again. |
| 4337 | * This controls the number of retries for single |
| 4338 | * lock operation. |
| 4339 | */ |
| 4340 | msleep(100); |
| 4341 | schedule(); |
| 4342 | } else { |
| 4343 | for (i = 0; i < 20; i++) |
| 4344 | cpu_relax(); /* This a nop instr on i386 */ |
| 4345 | } |
| 4346 | } |
| 4347 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4348 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4349 | qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha) |
| 4350 | { |
| 4351 | int rval; |
| 4352 | uint32_t data; |
| 4353 | uint32_t idc_lck_rcvry_stage_mask = 0x3; |
| 4354 | uint32_t idc_lck_rcvry_owner_mask = 0x3c; |
| 4355 | struct qla_hw_data *ha = base_vha->hw; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4356 | ql_dbg(ql_dbg_p3p, base_vha, 0xb086, |
| 4357 | "Trying force recovery of the IDC lock.\n"); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4358 | |
| 4359 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data); |
| 4360 | if (rval) |
| 4361 | return rval; |
| 4362 | |
| 4363 | if ((data & idc_lck_rcvry_stage_mask) > 0) { |
| 4364 | return QLA_SUCCESS; |
| 4365 | } else { |
| 4366 | data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2); |
| 4367 | rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4368 | data); |
| 4369 | if (rval) |
| 4370 | return rval; |
| 4371 | |
| 4372 | msleep(200); |
| 4373 | |
| 4374 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4375 | &data); |
| 4376 | if (rval) |
| 4377 | return rval; |
| 4378 | |
| 4379 | if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) { |
| 4380 | data &= (IDC_LOCK_RECOVERY_STAGE2 | |
| 4381 | ~(idc_lck_rcvry_stage_mask)); |
| 4382 | rval = qla83xx_wr_reg(base_vha, |
| 4383 | QLA83XX_IDC_LOCK_RECOVERY, data); |
| 4384 | if (rval) |
| 4385 | return rval; |
| 4386 | |
| 4387 | /* Forcefully perform IDC UnLock */ |
| 4388 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, |
| 4389 | &data); |
| 4390 | if (rval) |
| 4391 | return rval; |
| 4392 | /* Clear lock-id by setting 0xff */ |
| 4393 | rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4394 | 0xff); |
| 4395 | if (rval) |
| 4396 | return rval; |
| 4397 | /* Clear lock-recovery by setting 0x0 */ |
| 4398 | rval = qla83xx_wr_reg(base_vha, |
| 4399 | QLA83XX_IDC_LOCK_RECOVERY, 0x0); |
| 4400 | if (rval) |
| 4401 | return rval; |
| 4402 | } else |
| 4403 | return QLA_SUCCESS; |
| 4404 | } |
| 4405 | |
| 4406 | return rval; |
| 4407 | } |
| 4408 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4409 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4410 | qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha) |
| 4411 | { |
| 4412 | int rval = QLA_SUCCESS; |
| 4413 | uint32_t o_drv_lockid, n_drv_lockid; |
| 4414 | unsigned long lock_recovery_timeout; |
| 4415 | |
| 4416 | lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT; |
| 4417 | retry_lockid: |
| 4418 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid); |
| 4419 | if (rval) |
| 4420 | goto exit; |
| 4421 | |
| 4422 | /* MAX wait time before forcing IDC Lock recovery = 2 secs */ |
| 4423 | if (time_after_eq(jiffies, lock_recovery_timeout)) { |
| 4424 | if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS) |
| 4425 | return QLA_SUCCESS; |
| 4426 | else |
| 4427 | return QLA_FUNCTION_FAILED; |
| 4428 | } |
| 4429 | |
| 4430 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid); |
| 4431 | if (rval) |
| 4432 | goto exit; |
| 4433 | |
| 4434 | if (o_drv_lockid == n_drv_lockid) { |
| 4435 | qla83xx_wait_logic(); |
| 4436 | goto retry_lockid; |
| 4437 | } else |
| 4438 | return QLA_SUCCESS; |
| 4439 | |
| 4440 | exit: |
| 4441 | return rval; |
| 4442 | } |
| 4443 | |
| 4444 | void |
| 4445 | qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4446 | { |
| 4447 | uint16_t options = (requester_id << 15) | BIT_6; |
| 4448 | uint32_t data; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4449 | uint32_t lock_owner; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4450 | struct qla_hw_data *ha = base_vha->hw; |
| 4451 | |
| 4452 | /* IDC-lock implementation using driver-lock/lock-id remote registers */ |
| 4453 | retry_lock: |
| 4454 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data) |
| 4455 | == QLA_SUCCESS) { |
| 4456 | if (data) { |
| 4457 | /* Setting lock-id to our function-number */ |
| 4458 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4459 | ha->portnum); |
| 4460 | } else { |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4461 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4462 | &lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4463 | ql_dbg(ql_dbg_p3p, base_vha, 0xb063, |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4464 | "Failed to acquire IDC lock, acquired by %d, " |
| 4465 | "retrying...\n", lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4466 | |
| 4467 | /* Retry/Perform IDC-Lock recovery */ |
| 4468 | if (qla83xx_idc_lock_recovery(base_vha) |
| 4469 | == QLA_SUCCESS) { |
| 4470 | qla83xx_wait_logic(); |
| 4471 | goto retry_lock; |
| 4472 | } else |
| 4473 | ql_log(ql_log_warn, base_vha, 0xb075, |
| 4474 | "IDC Lock recovery FAILED.\n"); |
| 4475 | } |
| 4476 | |
| 4477 | } |
| 4478 | |
| 4479 | return; |
| 4480 | |
| 4481 | /* XXX: IDC-lock implementation using access-control mbx */ |
| 4482 | retry_lock2: |
| 4483 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4484 | ql_dbg(ql_dbg_p3p, base_vha, 0xb072, |
| 4485 | "Failed to acquire IDC lock. retrying...\n"); |
| 4486 | /* Retry/Perform IDC-Lock recovery */ |
| 4487 | if (qla83xx_idc_lock_recovery(base_vha) == QLA_SUCCESS) { |
| 4488 | qla83xx_wait_logic(); |
| 4489 | goto retry_lock2; |
| 4490 | } else |
| 4491 | ql_log(ql_log_warn, base_vha, 0xb076, |
| 4492 | "IDC Lock recovery FAILED.\n"); |
| 4493 | } |
| 4494 | |
| 4495 | return; |
| 4496 | } |
| 4497 | |
| 4498 | void |
| 4499 | qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4500 | { |
| 4501 | uint16_t options = (requester_id << 15) | BIT_7, retry; |
| 4502 | uint32_t data; |
| 4503 | struct qla_hw_data *ha = base_vha->hw; |
| 4504 | |
| 4505 | /* IDC-unlock implementation using driver-unlock/lock-id |
| 4506 | * remote registers |
| 4507 | */ |
| 4508 | retry = 0; |
| 4509 | retry_unlock: |
| 4510 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data) |
| 4511 | == QLA_SUCCESS) { |
| 4512 | if (data == ha->portnum) { |
| 4513 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data); |
| 4514 | /* Clearing lock-id by setting 0xff */ |
| 4515 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff); |
| 4516 | } else if (retry < 10) { |
| 4517 | /* SV: XXX: IDC unlock retrying needed here? */ |
| 4518 | |
| 4519 | /* Retry for IDC-unlock */ |
| 4520 | qla83xx_wait_logic(); |
| 4521 | retry++; |
| 4522 | ql_dbg(ql_dbg_p3p, base_vha, 0xb064, |
| 4523 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4524 | goto retry_unlock; |
| 4525 | } |
| 4526 | } else if (retry < 10) { |
| 4527 | /* Retry for IDC-unlock */ |
| 4528 | qla83xx_wait_logic(); |
| 4529 | retry++; |
| 4530 | ql_dbg(ql_dbg_p3p, base_vha, 0xb065, |
| 4531 | "Failed to read drv-lockid, retyring=%d\n", retry); |
| 4532 | goto retry_unlock; |
| 4533 | } |
| 4534 | |
| 4535 | return; |
| 4536 | |
| 4537 | /* XXX: IDC-unlock implementation using access-control mbx */ |
| 4538 | retry = 0; |
| 4539 | retry_unlock2: |
| 4540 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4541 | if (retry < 10) { |
| 4542 | /* Retry for IDC-unlock */ |
| 4543 | qla83xx_wait_logic(); |
| 4544 | retry++; |
| 4545 | ql_dbg(ql_dbg_p3p, base_vha, 0xb066, |
| 4546 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4547 | goto retry_unlock2; |
| 4548 | } |
| 4549 | } |
| 4550 | |
| 4551 | return; |
| 4552 | } |
| 4553 | |
| 4554 | int |
| 4555 | __qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4556 | { |
| 4557 | int rval = QLA_SUCCESS; |
| 4558 | struct qla_hw_data *ha = vha->hw; |
| 4559 | uint32_t drv_presence; |
| 4560 | |
| 4561 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4562 | if (rval == QLA_SUCCESS) { |
| 4563 | drv_presence |= (1 << ha->portnum); |
| 4564 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4565 | drv_presence); |
| 4566 | } |
| 4567 | |
| 4568 | return rval; |
| 4569 | } |
| 4570 | |
| 4571 | int |
| 4572 | qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4573 | { |
| 4574 | int rval = QLA_SUCCESS; |
| 4575 | |
| 4576 | qla83xx_idc_lock(vha, 0); |
| 4577 | rval = __qla83xx_set_drv_presence(vha); |
| 4578 | qla83xx_idc_unlock(vha, 0); |
| 4579 | |
| 4580 | return rval; |
| 4581 | } |
| 4582 | |
| 4583 | int |
| 4584 | __qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4585 | { |
| 4586 | int rval = QLA_SUCCESS; |
| 4587 | struct qla_hw_data *ha = vha->hw; |
| 4588 | uint32_t drv_presence; |
| 4589 | |
| 4590 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4591 | if (rval == QLA_SUCCESS) { |
| 4592 | drv_presence &= ~(1 << ha->portnum); |
| 4593 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4594 | drv_presence); |
| 4595 | } |
| 4596 | |
| 4597 | return rval; |
| 4598 | } |
| 4599 | |
| 4600 | int |
| 4601 | qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4602 | { |
| 4603 | int rval = QLA_SUCCESS; |
| 4604 | |
| 4605 | qla83xx_idc_lock(vha, 0); |
| 4606 | rval = __qla83xx_clear_drv_presence(vha); |
| 4607 | qla83xx_idc_unlock(vha, 0); |
| 4608 | |
| 4609 | return rval; |
| 4610 | } |
| 4611 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4612 | static void |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4613 | qla83xx_need_reset_handler(scsi_qla_host_t *vha) |
| 4614 | { |
| 4615 | struct qla_hw_data *ha = vha->hw; |
| 4616 | uint32_t drv_ack, drv_presence; |
| 4617 | unsigned long ack_timeout; |
| 4618 | |
| 4619 | /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */ |
| 4620 | ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ); |
| 4621 | while (1) { |
| 4622 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack); |
| 4623 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
Saurav Kashyap | 807fb6d | 2012-11-21 02:40:36 -0500 | [diff] [blame] | 4624 | if ((drv_ack & drv_presence) == drv_presence) |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4625 | break; |
| 4626 | |
| 4627 | if (time_after_eq(jiffies, ack_timeout)) { |
| 4628 | ql_log(ql_log_warn, vha, 0xb067, |
| 4629 | "RESET ACK TIMEOUT! drv_presence=0x%x " |
| 4630 | "drv_ack=0x%x\n", drv_presence, drv_ack); |
| 4631 | /* |
| 4632 | * The function(s) which did not ack in time are forced |
| 4633 | * to withdraw any further participation in the IDC |
| 4634 | * reset. |
| 4635 | */ |
| 4636 | if (drv_ack != drv_presence) |
| 4637 | qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4638 | drv_ack); |
| 4639 | break; |
| 4640 | } |
| 4641 | |
| 4642 | qla83xx_idc_unlock(vha, 0); |
| 4643 | msleep(1000); |
| 4644 | qla83xx_idc_lock(vha, 0); |
| 4645 | } |
| 4646 | |
| 4647 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD); |
| 4648 | ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n"); |
| 4649 | } |
| 4650 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4651 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4652 | qla83xx_device_bootstrap(scsi_qla_host_t *vha) |
| 4653 | { |
| 4654 | int rval = QLA_SUCCESS; |
| 4655 | uint32_t idc_control; |
| 4656 | |
| 4657 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING); |
| 4658 | ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n"); |
| 4659 | |
| 4660 | /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */ |
| 4661 | __qla83xx_get_idc_control(vha, &idc_control); |
| 4662 | idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET; |
| 4663 | __qla83xx_set_idc_control(vha, 0); |
| 4664 | |
| 4665 | qla83xx_idc_unlock(vha, 0); |
| 4666 | rval = qla83xx_restart_nic_firmware(vha); |
| 4667 | qla83xx_idc_lock(vha, 0); |
| 4668 | |
| 4669 | if (rval != QLA_SUCCESS) { |
| 4670 | ql_log(ql_log_fatal, vha, 0xb06a, |
| 4671 | "Failed to restart NIC f/w.\n"); |
| 4672 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED); |
| 4673 | ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n"); |
| 4674 | } else { |
| 4675 | ql_dbg(ql_dbg_p3p, vha, 0xb06c, |
| 4676 | "Success in restarting nic f/w.\n"); |
| 4677 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY); |
| 4678 | ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n"); |
| 4679 | } |
| 4680 | |
| 4681 | return rval; |
| 4682 | } |
| 4683 | |
| 4684 | /* Assumes idc_lock always held on entry */ |
| 4685 | int |
| 4686 | qla83xx_idc_state_handler(scsi_qla_host_t *base_vha) |
| 4687 | { |
| 4688 | struct qla_hw_data *ha = base_vha->hw; |
| 4689 | int rval = QLA_SUCCESS; |
| 4690 | unsigned long dev_init_timeout; |
| 4691 | uint32_t dev_state; |
| 4692 | |
| 4693 | /* Wait for MAX-INIT-TIMEOUT for the device to go ready */ |
| 4694 | dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ); |
| 4695 | |
| 4696 | while (1) { |
| 4697 | |
| 4698 | if (time_after_eq(jiffies, dev_init_timeout)) { |
| 4699 | ql_log(ql_log_warn, base_vha, 0xb06e, |
| 4700 | "Initialization TIMEOUT!\n"); |
| 4701 | /* Init timeout. Disable further NIC Core |
| 4702 | * communication. |
| 4703 | */ |
| 4704 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4705 | QLA8XXX_DEV_FAILED); |
| 4706 | ql_log(ql_log_info, base_vha, 0xb06f, |
| 4707 | "HW State: FAILED.\n"); |
| 4708 | } |
| 4709 | |
| 4710 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4711 | switch (dev_state) { |
| 4712 | case QLA8XXX_DEV_READY: |
| 4713 | if (ha->flags.nic_core_reset_owner) |
| 4714 | qla83xx_idc_audit(base_vha, |
| 4715 | IDC_AUDIT_COMPLETION); |
| 4716 | ha->flags.nic_core_reset_owner = 0; |
| 4717 | ql_dbg(ql_dbg_p3p, base_vha, 0xb070, |
| 4718 | "Reset_owner reset by 0x%x.\n", |
| 4719 | ha->portnum); |
| 4720 | goto exit; |
| 4721 | case QLA8XXX_DEV_COLD: |
| 4722 | if (ha->flags.nic_core_reset_owner) |
| 4723 | rval = qla83xx_device_bootstrap(base_vha); |
| 4724 | else { |
| 4725 | /* Wait for AEN to change device-state */ |
| 4726 | qla83xx_idc_unlock(base_vha, 0); |
| 4727 | msleep(1000); |
| 4728 | qla83xx_idc_lock(base_vha, 0); |
| 4729 | } |
| 4730 | break; |
| 4731 | case QLA8XXX_DEV_INITIALIZING: |
| 4732 | /* Wait for AEN to change device-state */ |
| 4733 | qla83xx_idc_unlock(base_vha, 0); |
| 4734 | msleep(1000); |
| 4735 | qla83xx_idc_lock(base_vha, 0); |
| 4736 | break; |
| 4737 | case QLA8XXX_DEV_NEED_RESET: |
| 4738 | if (!ql2xdontresethba && ha->flags.nic_core_reset_owner) |
| 4739 | qla83xx_need_reset_handler(base_vha); |
| 4740 | else { |
| 4741 | /* Wait for AEN to change device-state */ |
| 4742 | qla83xx_idc_unlock(base_vha, 0); |
| 4743 | msleep(1000); |
| 4744 | qla83xx_idc_lock(base_vha, 0); |
| 4745 | } |
| 4746 | /* reset timeout value after need reset handler */ |
| 4747 | dev_init_timeout = jiffies + |
| 4748 | (ha->fcoe_dev_init_timeout * HZ); |
| 4749 | break; |
| 4750 | case QLA8XXX_DEV_NEED_QUIESCENT: |
| 4751 | /* XXX: DEBUG for now */ |
| 4752 | qla83xx_idc_unlock(base_vha, 0); |
| 4753 | msleep(1000); |
| 4754 | qla83xx_idc_lock(base_vha, 0); |
| 4755 | break; |
| 4756 | case QLA8XXX_DEV_QUIESCENT: |
| 4757 | /* XXX: DEBUG for now */ |
| 4758 | if (ha->flags.quiesce_owner) |
| 4759 | goto exit; |
| 4760 | |
| 4761 | qla83xx_idc_unlock(base_vha, 0); |
| 4762 | msleep(1000); |
| 4763 | qla83xx_idc_lock(base_vha, 0); |
| 4764 | dev_init_timeout = jiffies + |
| 4765 | (ha->fcoe_dev_init_timeout * HZ); |
| 4766 | break; |
| 4767 | case QLA8XXX_DEV_FAILED: |
| 4768 | if (ha->flags.nic_core_reset_owner) |
| 4769 | qla83xx_idc_audit(base_vha, |
| 4770 | IDC_AUDIT_COMPLETION); |
| 4771 | ha->flags.nic_core_reset_owner = 0; |
| 4772 | __qla83xx_clear_drv_presence(base_vha); |
| 4773 | qla83xx_idc_unlock(base_vha, 0); |
| 4774 | qla8xxx_dev_failed_handler(base_vha); |
| 4775 | rval = QLA_FUNCTION_FAILED; |
| 4776 | qla83xx_idc_lock(base_vha, 0); |
| 4777 | goto exit; |
| 4778 | case QLA8XXX_BAD_VALUE: |
| 4779 | qla83xx_idc_unlock(base_vha, 0); |
| 4780 | msleep(1000); |
| 4781 | qla83xx_idc_lock(base_vha, 0); |
| 4782 | break; |
| 4783 | default: |
| 4784 | ql_log(ql_log_warn, base_vha, 0xb071, |
| 4785 | "Unknow Device State: %x.\n", dev_state); |
| 4786 | qla83xx_idc_unlock(base_vha, 0); |
| 4787 | qla8xxx_dev_failed_handler(base_vha); |
| 4788 | rval = QLA_FUNCTION_FAILED; |
| 4789 | qla83xx_idc_lock(base_vha, 0); |
| 4790 | goto exit; |
| 4791 | } |
| 4792 | } |
| 4793 | |
| 4794 | exit: |
| 4795 | return rval; |
| 4796 | } |
| 4797 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4798 | void |
| 4799 | qla2x00_disable_board_on_pci_error(struct work_struct *work) |
| 4800 | { |
| 4801 | struct qla_hw_data *ha = container_of(work, struct qla_hw_data, |
| 4802 | board_disable); |
| 4803 | struct pci_dev *pdev = ha->pdev; |
| 4804 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4805 | |
| 4806 | ql_log(ql_log_warn, base_vha, 0x015b, |
| 4807 | "Disabling adapter.\n"); |
| 4808 | |
| 4809 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 4810 | |
| 4811 | qla2x00_delete_all_vps(ha, base_vha); |
| 4812 | |
| 4813 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 4814 | |
| 4815 | qla2x00_dfs_remove(base_vha); |
| 4816 | |
| 4817 | qla84xx_put_chip(base_vha); |
| 4818 | |
| 4819 | if (base_vha->timer_active) |
| 4820 | qla2x00_stop_timer(base_vha); |
| 4821 | |
| 4822 | base_vha->flags.online = 0; |
| 4823 | |
| 4824 | qla2x00_destroy_deferred_work(ha); |
| 4825 | |
| 4826 | /* |
| 4827 | * Do not try to stop beacon blink as it will issue a mailbox |
| 4828 | * command. |
| 4829 | */ |
| 4830 | qla2x00_free_sysfs_attr(base_vha, false); |
| 4831 | |
| 4832 | fc_remove_host(base_vha->host); |
| 4833 | |
| 4834 | scsi_remove_host(base_vha->host); |
| 4835 | |
| 4836 | base_vha->flags.init_done = 0; |
| 4837 | qla25xx_delete_queues(base_vha); |
| 4838 | qla2x00_free_irqs(base_vha); |
| 4839 | qla2x00_free_fcports(base_vha); |
| 4840 | qla2x00_mem_free(ha); |
| 4841 | qla82xx_md_free(base_vha); |
| 4842 | qla2x00_free_queues(ha); |
| 4843 | |
| 4844 | scsi_host_put(base_vha->host); |
| 4845 | |
| 4846 | qla2x00_unmap_iobases(ha); |
| 4847 | |
| 4848 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 4849 | kfree(ha); |
| 4850 | ha = NULL; |
| 4851 | |
| 4852 | pci_disable_pcie_error_reporting(pdev); |
| 4853 | pci_disable_device(pdev); |
| 4854 | pci_set_drvdata(pdev, NULL); |
| 4855 | |
| 4856 | } |
| 4857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4858 | /************************************************************************** |
| 4859 | * qla2x00_do_dpc |
| 4860 | * This kernel thread is a task that is schedule by the interrupt handler |
| 4861 | * to perform the background processing for interrupts. |
| 4862 | * |
| 4863 | * Notes: |
| 4864 | * This task always run in the context of a kernel thread. It |
| 4865 | * is kick-off by the driver's detect code and starts up |
| 4866 | * up one per adapter. It immediately goes to sleep and waits for |
| 4867 | * some fibre event. When either the interrupt handler or |
| 4868 | * the timer routine detects a event it will one of the task |
| 4869 | * bits then wake us up. |
| 4870 | **************************************************************************/ |
| 4871 | static int |
| 4872 | qla2x00_do_dpc(void *data) |
| 4873 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 4874 | int rval; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4875 | scsi_qla_host_t *base_vha; |
| 4876 | struct qla_hw_data *ha; |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 4877 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4878 | ha = (struct qla_hw_data *)data; |
| 4879 | base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | set_user_nice(current, -20); |
| 4882 | |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 4883 | set_current_state(TASK_INTERRUPTIBLE); |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4884 | while (!kthread_should_stop()) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4885 | ql_dbg(ql_dbg_dpc, base_vha, 0x4000, |
| 4886 | "DPC handler sleeping.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4888 | schedule(); |
| 4889 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4890 | |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4891 | if (!base_vha->flags.init_done || ha->flags.mbox_busy) |
| 4892 | goto end_loop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4893 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4894 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4895 | ql_dbg(ql_dbg_dpc, base_vha, 0x4003, |
| 4896 | "eeh_busy=%d.\n", ha->flags.eeh_busy); |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4897 | goto end_loop; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4898 | } |
| 4899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4900 | ha->dpc_active = 1; |
| 4901 | |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 4902 | ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001, |
| 4903 | "DPC handler waking up, dpc_flags=0x%lx.\n", |
| 4904 | base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4905 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4906 | qla2x00_do_work(base_vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4907 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 4908 | if (IS_P3P_TYPE(ha)) { |
| 4909 | if (IS_QLA8044(ha)) { |
| 4910 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4911 | &base_vha->dpc_flags)) { |
| 4912 | qla8044_idc_lock(ha); |
| 4913 | qla8044_wr_direct(base_vha, |
| 4914 | QLA8044_CRB_DEV_STATE_INDEX, |
| 4915 | QLA8XXX_DEV_FAILED); |
| 4916 | qla8044_idc_unlock(ha); |
| 4917 | ql_log(ql_log_info, base_vha, 0x4004, |
| 4918 | "HW State: FAILED.\n"); |
| 4919 | qla8044_device_state_handler(base_vha); |
| 4920 | continue; |
| 4921 | } |
| 4922 | |
| 4923 | } else { |
| 4924 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4925 | &base_vha->dpc_flags)) { |
| 4926 | qla82xx_idc_lock(ha); |
| 4927 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 4928 | QLA8XXX_DEV_FAILED); |
| 4929 | qla82xx_idc_unlock(ha); |
| 4930 | ql_log(ql_log_info, base_vha, 0x0151, |
| 4931 | "HW State: FAILED.\n"); |
| 4932 | qla82xx_device_state_handler(base_vha); |
| 4933 | continue; |
| 4934 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4935 | } |
| 4936 | |
| 4937 | if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED, |
| 4938 | &base_vha->dpc_flags)) { |
| 4939 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4940 | ql_dbg(ql_dbg_dpc, base_vha, 0x4005, |
| 4941 | "FCoE context reset scheduled.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4942 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
| 4943 | &base_vha->dpc_flags))) { |
| 4944 | if (qla82xx_fcoe_ctx_reset(base_vha)) { |
| 4945 | /* FCoE-ctx reset failed. |
| 4946 | * Escalate to chip-reset |
| 4947 | */ |
| 4948 | set_bit(ISP_ABORT_NEEDED, |
| 4949 | &base_vha->dpc_flags); |
| 4950 | } |
| 4951 | clear_bit(ABORT_ISP_ACTIVE, |
| 4952 | &base_vha->dpc_flags); |
| 4953 | } |
| 4954 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4955 | ql_dbg(ql_dbg_dpc, base_vha, 0x4006, |
| 4956 | "FCoE context reset end.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4957 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4958 | } else if (IS_QLAFX00(ha)) { |
| 4959 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4960 | &base_vha->dpc_flags)) { |
| 4961 | ql_dbg(ql_dbg_dpc, base_vha, 0x4020, |
| 4962 | "Firmware Reset Recovery\n"); |
| 4963 | if (qlafx00_reset_initialize(base_vha)) { |
| 4964 | /* Failed. Abort isp later. */ |
| 4965 | if (!test_bit(UNLOADING, |
| 4966 | &base_vha->dpc_flags)) |
| 4967 | set_bit(ISP_UNRECOVERABLE, |
| 4968 | &base_vha->dpc_flags); |
| 4969 | ql_dbg(ql_dbg_dpc, base_vha, |
| 4970 | 0x4021, |
| 4971 | "Reset Recovery Failed\n"); |
| 4972 | } |
| 4973 | } |
| 4974 | |
| 4975 | if (test_and_clear_bit(FX00_TARGET_SCAN, |
| 4976 | &base_vha->dpc_flags)) { |
| 4977 | ql_dbg(ql_dbg_dpc, base_vha, 0x4022, |
| 4978 | "ISPFx00 Target Scan scheduled\n"); |
| 4979 | if (qlafx00_rescan_isp(base_vha)) { |
| 4980 | if (!test_bit(UNLOADING, |
| 4981 | &base_vha->dpc_flags)) |
| 4982 | set_bit(ISP_UNRECOVERABLE, |
| 4983 | &base_vha->dpc_flags); |
| 4984 | ql_dbg(ql_dbg_dpc, base_vha, 0x401e, |
| 4985 | "ISPFx00 Target Scan Failed\n"); |
| 4986 | } |
| 4987 | ql_dbg(ql_dbg_dpc, base_vha, 0x401f, |
| 4988 | "ISPFx00 Target Scan End\n"); |
| 4989 | } |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 4990 | if (test_and_clear_bit(FX00_HOST_INFO_RESEND, |
| 4991 | &base_vha->dpc_flags)) { |
| 4992 | ql_dbg(ql_dbg_dpc, base_vha, 0x4023, |
| 4993 | "ISPFx00 Host Info resend scheduled\n"); |
| 4994 | qlafx00_fx_disc(base_vha, |
| 4995 | &base_vha->hw->mr.fcport, |
| 4996 | FXDISC_REG_HOST_INFO); |
| 4997 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 4998 | } |
| 4999 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5000 | if (test_and_clear_bit(ISP_ABORT_NEEDED, |
| 5001 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5003 | ql_dbg(ql_dbg_dpc, base_vha, 0x4007, |
| 5004 | "ISP abort scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5005 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5006 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5007 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5008 | if (ha->isp_ops->abort_isp(base_vha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5009 | /* failed. retry later */ |
| 5010 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5011 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5012 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5013 | clear_bit(ABORT_ISP_ACTIVE, |
| 5014 | &base_vha->dpc_flags); |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 5015 | } |
| 5016 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5017 | ql_dbg(ql_dbg_dpc, base_vha, 0x4008, |
| 5018 | "ISP abort end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5019 | } |
| 5020 | |
David Jeffery | a394aac | 2012-11-21 02:39:54 -0500 | [diff] [blame] | 5021 | if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, |
| 5022 | &base_vha->dpc_flags)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5023 | qla2x00_update_fcports(base_vha); |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 5024 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 5025 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5026 | if (test_bit(SCR_PENDING, &base_vha->dpc_flags)) { |
| 5027 | int ret; |
| 5028 | ret = qla2x00_send_change_request(base_vha, 0x3, 0); |
| 5029 | if (ret != QLA_SUCCESS) |
| 5030 | ql_log(ql_log_warn, base_vha, 0x121, |
| 5031 | "Failed to enable receiving of RSCN " |
| 5032 | "requests: 0x%x.\n", ret); |
| 5033 | clear_bit(SCR_PENDING, &base_vha->dpc_flags); |
| 5034 | } |
| 5035 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5036 | if (IS_QLAFX00(ha)) |
| 5037 | goto loop_resync_check; |
| 5038 | |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5039 | if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5040 | ql_dbg(ql_dbg_dpc, base_vha, 0x4009, |
| 5041 | "Quiescence mode scheduled.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5042 | if (IS_P3P_TYPE(ha)) { |
| 5043 | if (IS_QLA82XX(ha)) |
| 5044 | qla82xx_device_state_handler(base_vha); |
| 5045 | if (IS_QLA8044(ha)) |
| 5046 | qla8044_device_state_handler(base_vha); |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 5047 | clear_bit(ISP_QUIESCE_NEEDED, |
| 5048 | &base_vha->dpc_flags); |
| 5049 | if (!ha->flags.quiesce_owner) { |
| 5050 | qla2x00_perform_loop_resync(base_vha); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5051 | if (IS_QLA82XX(ha)) { |
| 5052 | qla82xx_idc_lock(ha); |
| 5053 | qla82xx_clear_qsnt_ready( |
| 5054 | base_vha); |
| 5055 | qla82xx_idc_unlock(ha); |
| 5056 | } else if (IS_QLA8044(ha)) { |
| 5057 | qla8044_idc_lock(ha); |
| 5058 | qla8044_clear_qsnt_ready( |
| 5059 | base_vha); |
| 5060 | qla8044_idc_unlock(ha); |
| 5061 | } |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 5062 | } |
| 5063 | } else { |
| 5064 | clear_bit(ISP_QUIESCE_NEEDED, |
| 5065 | &base_vha->dpc_flags); |
| 5066 | qla2x00_quiesce_io(base_vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5067 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5068 | ql_dbg(ql_dbg_dpc, base_vha, 0x400a, |
| 5069 | "Quiescence mode end.\n"); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5070 | } |
| 5071 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5072 | if (test_and_clear_bit(RESET_MARKER_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5073 | &base_vha->dpc_flags) && |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5074 | (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5076 | ql_dbg(ql_dbg_dpc, base_vha, 0x400b, |
| 5077 | "Reset marker scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5078 | qla2x00_rst_aen(base_vha); |
| 5079 | clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5080 | ql_dbg(ql_dbg_dpc, base_vha, 0x400c, |
| 5081 | "Reset marker end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5082 | } |
| 5083 | |
| 5084 | /* Retry each device up to login retry count */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5085 | if ((test_and_clear_bit(RELOGIN_NEEDED, |
| 5086 | &base_vha->dpc_flags)) && |
| 5087 | !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && |
| 5088 | atomic_read(&base_vha->loop_state) != LOOP_DOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5090 | ql_dbg(ql_dbg_dpc, base_vha, 0x400d, |
| 5091 | "Relogin scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5092 | qla2x00_relogin(base_vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5093 | ql_dbg(ql_dbg_dpc, base_vha, 0x400e, |
| 5094 | "Relogin end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5095 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5096 | loop_resync_check: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5097 | if (test_and_clear_bit(LOOP_RESYNC_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5098 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5099 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5100 | ql_dbg(ql_dbg_dpc, base_vha, 0x400f, |
| 5101 | "Loop resync scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5102 | |
| 5103 | if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5104 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5106 | rval = qla2x00_loop_resync(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5108 | clear_bit(LOOP_RESYNC_ACTIVE, |
| 5109 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5110 | } |
| 5111 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5112 | ql_dbg(ql_dbg_dpc, base_vha, 0x4010, |
| 5113 | "Loop resync end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5114 | } |
| 5115 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5116 | if (IS_QLAFX00(ha)) |
| 5117 | goto intr_on_check; |
| 5118 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5119 | if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && |
| 5120 | atomic_read(&base_vha->loop_state) == LOOP_READY) { |
| 5121 | clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); |
| 5122 | qla2xxx_flash_npiv_conf(base_vha); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 5123 | } |
| 5124 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5125 | intr_on_check: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | if (!ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 5127 | ha->isp_ops->enable_intrs(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5128 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5129 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, |
| 5130 | &base_vha->dpc_flags)) |
| 5131 | ha->isp_ops->beacon_blink(base_vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5132 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5133 | if (!IS_QLAFX00(ha)) |
| 5134 | qla2x00_do_dpc_all_vps(base_vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5136 | ha->dpc_active = 0; |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 5137 | end_loop: |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5138 | set_current_state(TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5139 | } /* End of while(1) */ |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5140 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5141 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5142 | ql_dbg(ql_dbg_dpc, base_vha, 0x4011, |
| 5143 | "DPC handler exiting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5144 | |
| 5145 | /* |
| 5146 | * Make sure that nobody tries to wake us up again. |
| 5147 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5148 | ha->dpc_active = 0; |
| 5149 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 5150 | /* Cleanup any residual CTX SRBs. */ |
| 5151 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 5152 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5153 | return 0; |
| 5154 | } |
| 5155 | |
| 5156 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5157 | qla2xxx_wake_dpc(struct scsi_qla_host *vha) |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5158 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5159 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5160 | struct task_struct *t = ha->dpc_thread; |
| 5161 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5162 | if (!test_bit(UNLOADING, &vha->dpc_flags) && t) |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5163 | wake_up_process(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5164 | } |
| 5165 | |
| 5166 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5167 | * qla2x00_rst_aen |
| 5168 | * Processes asynchronous reset. |
| 5169 | * |
| 5170 | * Input: |
| 5171 | * ha = adapter block pointer. |
| 5172 | */ |
| 5173 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5174 | qla2x00_rst_aen(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5175 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5176 | if (vha->flags.online && !vha->flags.reset_active && |
| 5177 | !atomic_read(&vha->loop_down_timer) && |
| 5178 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5179 | do { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5180 | clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | |
| 5182 | /* |
| 5183 | * Issue marker command only when we are going to start |
| 5184 | * the I/O. |
| 5185 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5186 | vha->marker_needed = 1; |
| 5187 | } while (!atomic_read(&vha->loop_down_timer) && |
| 5188 | (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5189 | } |
| 5190 | } |
| 5191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5192 | /************************************************************************** |
| 5193 | * qla2x00_timer |
| 5194 | * |
| 5195 | * Description: |
| 5196 | * One second timer |
| 5197 | * |
| 5198 | * Context: Interrupt |
| 5199 | ***************************************************************************/ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5200 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5201 | qla2x00_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5202 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5203 | unsigned long cpu_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5204 | int start_dpc = 0; |
| 5205 | int index; |
| 5206 | srb_t *sp; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5207 | uint16_t w; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5208 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5209 | struct req_que *req; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5210 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5211 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5212 | ql_dbg(ql_dbg_timer, vha, 0x6000, |
| 5213 | "EEH = %d, restarting timer.\n", |
| 5214 | ha->flags.eeh_busy); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5215 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
| 5216 | return; |
| 5217 | } |
| 5218 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5219 | /* |
| 5220 | * Hardware read to raise pending EEH errors during mailbox waits. If |
| 5221 | * the read returns -1 then disable the board. |
| 5222 | */ |
| 5223 | if (!pci_channel_offline(ha->pdev)) { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5224 | pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w); |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5225 | if (w == 0xffff) |
| 5226 | /* |
| 5227 | * Schedule this on the default system workqueue so that |
| 5228 | * all the adapter workqueues and the DPC thread can be |
| 5229 | * shutdown cleanly. |
| 5230 | */ |
| 5231 | schedule_work(&ha->board_disable); |
| 5232 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5233 | |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5234 | /* Make sure qla82xx_watchdog is run only for physical port */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5235 | if (!vha->vp_idx && IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5236 | if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) |
| 5237 | start_dpc++; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5238 | if (IS_QLA82XX(ha)) |
| 5239 | qla82xx_watchdog(vha); |
| 5240 | else if (IS_QLA8044(ha)) |
| 5241 | qla8044_watchdog(vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5242 | } |
| 5243 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5244 | if (!vha->vp_idx && IS_QLAFX00(ha)) |
| 5245 | qlafx00_timer_routine(vha); |
| 5246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5247 | /* Loop down handler. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5248 | if (atomic_read(&vha->loop_down_timer) > 0 && |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5249 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) && |
| 5250 | !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5251 | && vha->flags.online) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5252 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5253 | if (atomic_read(&vha->loop_down_timer) == |
| 5254 | vha->loop_down_abort_time) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5255 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5256 | ql_log(ql_log_info, vha, 0x6008, |
| 5257 | "Loop down - aborting the queues before time expires.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5258 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5259 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 5260 | atomic_set(&vha->loop_state, LOOP_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5261 | |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5262 | /* |
| 5263 | * Schedule an ISP abort to return any FCP2-device |
| 5264 | * commands. |
| 5265 | */ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5266 | /* NPIV - scan physical port only */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5267 | if (!vha->vp_idx) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5268 | spin_lock_irqsave(&ha->hardware_lock, |
| 5269 | cpu_flags); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5270 | req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5271 | for (index = 1; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 5272 | index < req->num_outstanding_cmds; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5273 | index++) { |
| 5274 | fc_port_t *sfcp; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 5275 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5276 | sp = req->outstanding_cmds[index]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5277 | if (!sp) |
| 5278 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 5279 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 5280 | continue; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5281 | sfcp = sp->fcport; |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5282 | if (!(sfcp->flags & FCF_FCP2_DEVICE)) |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5283 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5285 | if (IS_QLA82XX(ha)) |
| 5286 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5287 | &vha->dpc_flags); |
| 5288 | else |
| 5289 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5290 | &vha->dpc_flags); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5291 | break; |
| 5292 | } |
| 5293 | spin_unlock_irqrestore(&ha->hardware_lock, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5294 | cpu_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5296 | start_dpc++; |
| 5297 | } |
| 5298 | |
| 5299 | /* if the loop has been down for 4 minutes, reinit adapter */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5300 | if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 5301 | if (!(vha->device_flags & DFLG_NO_CABLE)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5302 | ql_log(ql_log_warn, vha, 0x6009, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5303 | "Loop down - aborting ISP.\n"); |
| 5304 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5305 | if (IS_QLA82XX(ha)) |
| 5306 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5307 | &vha->dpc_flags); |
| 5308 | else |
| 5309 | set_bit(ISP_ABORT_NEEDED, |
| 5310 | &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5311 | } |
| 5312 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5313 | ql_dbg(ql_dbg_timer, vha, 0x600a, |
| 5314 | "Loop down - seconds remaining %d.\n", |
| 5315 | atomic_read(&vha->loop_down_timer)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5316 | } |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5317 | /* Check if beacon LED needs to be blinked for physical host only */ |
| 5318 | if (!vha->vp_idx && (ha->beacon_blink_led == 1)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5319 | /* There is no beacon_blink function for ISP82xx */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5320 | if (!IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5321 | set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); |
| 5322 | start_dpc++; |
| 5323 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5324 | } |
| 5325 | |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5326 | /* Process any deferred work. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5327 | if (!list_empty(&vha->work_list)) |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5328 | start_dpc++; |
| 5329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | /* Schedule the DPC routine if needed */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5331 | if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 5332 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || |
| 5333 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5334 | start_dpc || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5335 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || |
| 5336 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5337 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) || |
| 5338 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5339 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5340 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5341 | ql_dbg(ql_dbg_timer, vha, 0x600b, |
| 5342 | "isp_abort_needed=%d loop_resync_needed=%d " |
| 5343 | "fcport_update_needed=%d start_dpc=%d " |
| 5344 | "reset_marker_needed=%d", |
| 5345 | test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags), |
| 5346 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags), |
| 5347 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags), |
| 5348 | start_dpc, |
| 5349 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)); |
| 5350 | ql_dbg(ql_dbg_timer, vha, 0x600c, |
| 5351 | "beacon_blink_needed=%d isp_unrecoverable=%d " |
| 5352 | "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d " |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5353 | "relogin_needed=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5354 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags), |
| 5355 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags), |
| 5356 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags), |
| 5357 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags), |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5358 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5359 | qla2xxx_wake_dpc(vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5361 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5362 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5363 | } |
| 5364 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5365 | /* Firmware interface routines. */ |
| 5366 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5367 | #define FW_BLOBS 11 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5368 | #define FW_ISP21XX 0 |
| 5369 | #define FW_ISP22XX 1 |
| 5370 | #define FW_ISP2300 2 |
| 5371 | #define FW_ISP2322 3 |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5372 | #define FW_ISP24XX 4 |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5373 | #define FW_ISP25XX 5 |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5374 | #define FW_ISP81XX 6 |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5375 | #define FW_ISP82XX 7 |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5376 | #define FW_ISP2031 8 |
| 5377 | #define FW_ISP8031 9 |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5378 | #define FW_ISP27XX 10 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5379 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5380 | #define FW_FILE_ISP21XX "ql2100_fw.bin" |
| 5381 | #define FW_FILE_ISP22XX "ql2200_fw.bin" |
| 5382 | #define FW_FILE_ISP2300 "ql2300_fw.bin" |
| 5383 | #define FW_FILE_ISP2322 "ql2322_fw.bin" |
| 5384 | #define FW_FILE_ISP24XX "ql2400_fw.bin" |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5385 | #define FW_FILE_ISP25XX "ql2500_fw.bin" |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5386 | #define FW_FILE_ISP81XX "ql8100_fw.bin" |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5387 | #define FW_FILE_ISP82XX "ql8200_fw.bin" |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5388 | #define FW_FILE_ISP2031 "ql2600_fw.bin" |
| 5389 | #define FW_FILE_ISP8031 "ql8300_fw.bin" |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5390 | #define FW_FILE_ISP27XX "ql2700_fw.bin" |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5391 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5392 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5393 | static DEFINE_MUTEX(qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5394 | |
| 5395 | static struct fw_blob qla_fw_blobs[FW_BLOBS] = { |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5396 | { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, |
| 5397 | { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, |
| 5398 | { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, |
| 5399 | { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, |
| 5400 | { .name = FW_FILE_ISP24XX, }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5401 | { .name = FW_FILE_ISP25XX, }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5402 | { .name = FW_FILE_ISP81XX, }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5403 | { .name = FW_FILE_ISP82XX, }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5404 | { .name = FW_FILE_ISP2031, }, |
| 5405 | { .name = FW_FILE_ISP8031, }, |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5406 | { .name = FW_FILE_ISP27XX, }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5407 | }; |
| 5408 | |
| 5409 | struct fw_blob * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5410 | qla2x00_request_firmware(scsi_qla_host_t *vha) |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5411 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5412 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5413 | struct fw_blob *blob; |
| 5414 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5415 | if (IS_QLA2100(ha)) { |
| 5416 | blob = &qla_fw_blobs[FW_ISP21XX]; |
| 5417 | } else if (IS_QLA2200(ha)) { |
| 5418 | blob = &qla_fw_blobs[FW_ISP22XX]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5419 | } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5420 | blob = &qla_fw_blobs[FW_ISP2300]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5421 | } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5422 | blob = &qla_fw_blobs[FW_ISP2322]; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5423 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5424 | blob = &qla_fw_blobs[FW_ISP24XX]; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5425 | } else if (IS_QLA25XX(ha)) { |
| 5426 | blob = &qla_fw_blobs[FW_ISP25XX]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5427 | } else if (IS_QLA81XX(ha)) { |
| 5428 | blob = &qla_fw_blobs[FW_ISP81XX]; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5429 | } else if (IS_QLA82XX(ha)) { |
| 5430 | blob = &qla_fw_blobs[FW_ISP82XX]; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5431 | } else if (IS_QLA2031(ha)) { |
| 5432 | blob = &qla_fw_blobs[FW_ISP2031]; |
| 5433 | } else if (IS_QLA8031(ha)) { |
| 5434 | blob = &qla_fw_blobs[FW_ISP8031]; |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5435 | } else if (IS_QLA27XX(ha)) { |
| 5436 | blob = &qla_fw_blobs[FW_ISP27XX]; |
Dan Carpenter | 8a65522 | 2012-02-21 10:29:40 +0300 | [diff] [blame] | 5437 | } else { |
| 5438 | return NULL; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5439 | } |
| 5440 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5441 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5442 | if (blob->fw) |
| 5443 | goto out; |
| 5444 | |
| 5445 | if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5446 | ql_log(ql_log_warn, vha, 0x0063, |
| 5447 | "Failed to load firmware image (%s).\n", blob->name); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5448 | blob->fw = NULL; |
| 5449 | blob = NULL; |
| 5450 | goto out; |
| 5451 | } |
| 5452 | |
| 5453 | out: |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5454 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5455 | return blob; |
| 5456 | } |
| 5457 | |
| 5458 | static void |
| 5459 | qla2x00_release_firmware(void) |
| 5460 | { |
| 5461 | int idx; |
| 5462 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5463 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5464 | for (idx = 0; idx < FW_BLOBS; idx++) |
Jesper Juhl | cf92549 | 2012-04-09 22:51:41 +0200 | [diff] [blame] | 5465 | release_firmware(qla_fw_blobs[idx].fw); |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5466 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5467 | } |
| 5468 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5469 | static pci_ers_result_t |
| 5470 | qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) |
| 5471 | { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5472 | scsi_qla_host_t *vha = pci_get_drvdata(pdev); |
| 5473 | struct qla_hw_data *ha = vha->hw; |
| 5474 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5475 | ql_dbg(ql_dbg_aer, vha, 0x9000, |
| 5476 | "PCI error detected, state %x.\n", state); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 5477 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5478 | switch (state) { |
| 5479 | case pci_channel_io_normal: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5480 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5481 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 5482 | case pci_channel_io_frozen: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5483 | ha->flags.eeh_busy = 1; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5484 | /* For ISP82XX complete any pending mailbox cmd */ |
| 5485 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5486 | ha->flags.isp82xx_fw_hung = 1; |
Chad Dupuis | c8f6544 | 2011-11-18 09:02:17 -0800 | [diff] [blame] | 5487 | ql_dbg(ql_dbg_aer, vha, 0x9001, "Pci channel io frozen\n"); |
| 5488 | qla82xx_clear_pending_mbx(vha); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5489 | } |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5490 | qla2x00_free_irqs(vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5491 | pci_disable_device(pdev); |
Lalit Chandivade | bddd2d6 | 2010-09-03 15:20:53 -0700 | [diff] [blame] | 5492 | /* Return back all IOs */ |
| 5493 | qla2x00_abort_all_cmds(vha, DID_RESET << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5494 | return PCI_ERS_RESULT_NEED_RESET; |
| 5495 | case pci_channel_io_perm_failure: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5496 | ha->flags.pci_channel_io_perm_failure = 1; |
| 5497 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5498 | return PCI_ERS_RESULT_DISCONNECT; |
| 5499 | } |
| 5500 | return PCI_ERS_RESULT_NEED_RESET; |
| 5501 | } |
| 5502 | |
| 5503 | static pci_ers_result_t |
| 5504 | qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) |
| 5505 | { |
| 5506 | int risc_paused = 0; |
| 5507 | uint32_t stat; |
| 5508 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5509 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5510 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5511 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 5512 | struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; |
| 5513 | |
Saurav Kashyap | bcc5b6d | 2010-09-03 15:20:57 -0700 | [diff] [blame] | 5514 | if (IS_QLA82XX(ha)) |
| 5515 | return PCI_ERS_RESULT_RECOVERED; |
| 5516 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5517 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 5518 | if (IS_QLA2100(ha) || IS_QLA2200(ha)){ |
| 5519 | stat = RD_REG_DWORD(®->hccr); |
| 5520 | if (stat & HCCR_RISC_PAUSE) |
| 5521 | risc_paused = 1; |
| 5522 | } else if (IS_QLA23XX(ha)) { |
| 5523 | stat = RD_REG_DWORD(®->u.isp2300.host_status); |
| 5524 | if (stat & HSR_RISC_PAUSED) |
| 5525 | risc_paused = 1; |
| 5526 | } else if (IS_FWI2_CAPABLE(ha)) { |
| 5527 | stat = RD_REG_DWORD(®24->host_status); |
| 5528 | if (stat & HSRX_RISC_PAUSED) |
| 5529 | risc_paused = 1; |
| 5530 | } |
| 5531 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 5532 | |
| 5533 | if (risc_paused) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5534 | ql_log(ql_log_info, base_vha, 0x9003, |
| 5535 | "RISC paused -- mmio_enabled, Dumping firmware.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5536 | ha->isp_ops->fw_dump(base_vha, 0); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5537 | |
| 5538 | return PCI_ERS_RESULT_NEED_RESET; |
| 5539 | } else |
| 5540 | return PCI_ERS_RESULT_RECOVERED; |
| 5541 | } |
| 5542 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 5543 | static uint32_t |
| 5544 | qla82xx_error_recovery(scsi_qla_host_t *base_vha) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5545 | { |
| 5546 | uint32_t rval = QLA_FUNCTION_FAILED; |
| 5547 | uint32_t drv_active = 0; |
| 5548 | struct qla_hw_data *ha = base_vha->hw; |
| 5549 | int fn; |
| 5550 | struct pci_dev *other_pdev = NULL; |
| 5551 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5552 | ql_dbg(ql_dbg_aer, base_vha, 0x9006, |
| 5553 | "Entered %s.\n", __func__); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5554 | |
| 5555 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5556 | |
| 5557 | if (base_vha->flags.online) { |
| 5558 | /* Abort all outstanding commands, |
| 5559 | * so as to be requeued later */ |
| 5560 | qla2x00_abort_isp_cleanup(base_vha); |
| 5561 | } |
| 5562 | |
| 5563 | |
| 5564 | fn = PCI_FUNC(ha->pdev->devfn); |
| 5565 | while (fn > 0) { |
| 5566 | fn--; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5567 | ql_dbg(ql_dbg_aer, base_vha, 0x9007, |
| 5568 | "Finding pci device at function = 0x%x.\n", fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5569 | other_pdev = |
| 5570 | pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus), |
| 5571 | ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn), |
| 5572 | fn)); |
| 5573 | |
| 5574 | if (!other_pdev) |
| 5575 | continue; |
| 5576 | if (atomic_read(&other_pdev->enable_cnt)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5577 | ql_dbg(ql_dbg_aer, base_vha, 0x9008, |
| 5578 | "Found PCI func available and enable at 0x%x.\n", |
| 5579 | fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5580 | pci_dev_put(other_pdev); |
| 5581 | break; |
| 5582 | } |
| 5583 | pci_dev_put(other_pdev); |
| 5584 | } |
| 5585 | |
| 5586 | if (!fn) { |
| 5587 | /* Reset owner */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5588 | ql_dbg(ql_dbg_aer, base_vha, 0x9009, |
| 5589 | "This devfn is reset owner = 0x%x.\n", |
| 5590 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5591 | qla82xx_idc_lock(ha); |
| 5592 | |
| 5593 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5594 | QLA8XXX_DEV_INITIALIZING); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5595 | |
| 5596 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION, |
| 5597 | QLA82XX_IDC_VERSION); |
| 5598 | |
| 5599 | drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5600 | ql_dbg(ql_dbg_aer, base_vha, 0x900a, |
| 5601 | "drv_active = 0x%x.\n", drv_active); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5602 | |
| 5603 | qla82xx_idc_unlock(ha); |
| 5604 | /* Reset if device is not already reset |
| 5605 | * drv_active would be 0 if a reset has already been done |
| 5606 | */ |
| 5607 | if (drv_active) |
| 5608 | rval = qla82xx_start_firmware(base_vha); |
| 5609 | else |
| 5610 | rval = QLA_SUCCESS; |
| 5611 | qla82xx_idc_lock(ha); |
| 5612 | |
| 5613 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5614 | ql_log(ql_log_info, base_vha, 0x900b, |
| 5615 | "HW State: FAILED.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5616 | qla82xx_clear_drv_active(ha); |
| 5617 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5618 | QLA8XXX_DEV_FAILED); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5619 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5620 | ql_log(ql_log_info, base_vha, 0x900c, |
| 5621 | "HW State: READY.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5622 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5623 | QLA8XXX_DEV_READY); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5624 | qla82xx_idc_unlock(ha); |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5625 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5626 | rval = qla82xx_restart_isp(base_vha); |
| 5627 | qla82xx_idc_lock(ha); |
| 5628 | /* Clear driver state register */ |
| 5629 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0); |
| 5630 | qla82xx_set_drv_active(base_vha); |
| 5631 | } |
| 5632 | qla82xx_idc_unlock(ha); |
| 5633 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5634 | ql_dbg(ql_dbg_aer, base_vha, 0x900d, |
| 5635 | "This devfn is not reset owner = 0x%x.\n", |
| 5636 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5637 | if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) == |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5638 | QLA8XXX_DEV_READY)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5639 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5640 | rval = qla82xx_restart_isp(base_vha); |
| 5641 | qla82xx_idc_lock(ha); |
| 5642 | qla82xx_set_drv_active(base_vha); |
| 5643 | qla82xx_idc_unlock(ha); |
| 5644 | } |
| 5645 | } |
| 5646 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5647 | |
| 5648 | return rval; |
| 5649 | } |
| 5650 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5651 | static pci_ers_result_t |
| 5652 | qla2xxx_pci_slot_reset(struct pci_dev *pdev) |
| 5653 | { |
| 5654 | pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5655 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5656 | struct qla_hw_data *ha = base_vha->hw; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5657 | struct rsp_que *rsp; |
| 5658 | int rc, retries = 10; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5659 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5660 | ql_dbg(ql_dbg_aer, base_vha, 0x9004, |
| 5661 | "Slot Reset.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5662 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5663 | /* Workaround: qla2xxx driver which access hardware earlier |
| 5664 | * needs error state to be pci_channel_io_online. |
| 5665 | * Otherwise mailbox command timesout. |
| 5666 | */ |
| 5667 | pdev->error_state = pci_channel_io_normal; |
| 5668 | |
| 5669 | pci_restore_state(pdev); |
| 5670 | |
Richard Lary | 8c1496b | 2010-02-18 10:07:29 -0800 | [diff] [blame] | 5671 | /* pci_restore_state() clears the saved_state flag of the device |
| 5672 | * save restored state which resets saved_state flag |
| 5673 | */ |
| 5674 | pci_save_state(pdev); |
| 5675 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 5676 | if (ha->mem_only) |
| 5677 | rc = pci_enable_device_mem(pdev); |
| 5678 | else |
| 5679 | rc = pci_enable_device(pdev); |
| 5680 | |
| 5681 | if (rc) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5682 | ql_log(ql_log_warn, base_vha, 0x9005, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5683 | "Can't re-enable PCI device after reset.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5684 | goto exit_slot_reset; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5685 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5686 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5687 | rsp = ha->rsp_q_map[0]; |
| 5688 | if (qla2x00_request_irqs(ha, rsp)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5689 | goto exit_slot_reset; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5690 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5691 | if (ha->isp_ops->pci_config(base_vha)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5692 | goto exit_slot_reset; |
| 5693 | |
| 5694 | if (IS_QLA82XX(ha)) { |
| 5695 | if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) { |
| 5696 | ret = PCI_ERS_RESULT_RECOVERED; |
| 5697 | goto exit_slot_reset; |
| 5698 | } else |
| 5699 | goto exit_slot_reset; |
| 5700 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5701 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5702 | while (ha->flags.mbox_busy && retries--) |
| 5703 | msleep(1000); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5704 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5705 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5706 | if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5707 | ret = PCI_ERS_RESULT_RECOVERED; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5708 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5709 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5710 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5711 | exit_slot_reset: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5712 | ql_dbg(ql_dbg_aer, base_vha, 0x900e, |
| 5713 | "slot_reset return %x.\n", ret); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5714 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5715 | return ret; |
| 5716 | } |
| 5717 | |
| 5718 | static void |
| 5719 | qla2xxx_pci_resume(struct pci_dev *pdev) |
| 5720 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5721 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5722 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5723 | int ret; |
| 5724 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5725 | ql_dbg(ql_dbg_aer, base_vha, 0x900f, |
| 5726 | "pci_resume.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5727 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5728 | ret = qla2x00_wait_for_hba_online(base_vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5729 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5730 | ql_log(ql_log_fatal, base_vha, 0x9002, |
| 5731 | "The device failed to resume I/O from slot/link_reset.\n"); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5732 | } |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5733 | |
Lalit Chandivade | 3e46f03 | 2010-05-04 15:01:23 -0700 | [diff] [blame] | 5734 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 5735 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5736 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5737 | } |
| 5738 | |
Stephen Hemminger | a55b2d2 | 2012-09-07 09:33:16 -0700 | [diff] [blame] | 5739 | static const struct pci_error_handlers qla2xxx_err_handler = { |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5740 | .error_detected = qla2xxx_pci_error_detected, |
| 5741 | .mmio_enabled = qla2xxx_pci_mmio_enabled, |
| 5742 | .slot_reset = qla2xxx_pci_slot_reset, |
| 5743 | .resume = qla2xxx_pci_resume, |
| 5744 | }; |
| 5745 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5746 | static struct pci_device_id qla2xxx_pci_tbl[] = { |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5747 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, |
| 5748 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, |
| 5749 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, |
| 5750 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, |
| 5751 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, |
| 5752 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, |
| 5753 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, |
| 5754 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, |
| 5755 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5756 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5757 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, |
| 5758 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5759 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5760 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5761 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5762 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) }, |
Chad Dupuis | 650f528 | 2012-08-22 14:20:55 -0400 | [diff] [blame] | 5763 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) }, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5764 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) }, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5765 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) }, |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5766 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) }, |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5767 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5768 | { 0 }, |
| 5769 | }; |
| 5770 | MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); |
| 5771 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5772 | static struct pci_driver qla2xxx_pci_driver = { |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 5773 | .name = QLA2XXX_DRIVER_NAME, |
James Bottomley | 0a21ef1 | 2005-12-01 12:51:50 -0600 | [diff] [blame] | 5774 | .driver = { |
| 5775 | .owner = THIS_MODULE, |
| 5776 | }, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5777 | .id_table = qla2xxx_pci_tbl, |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5778 | .probe = qla2x00_probe_one, |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 5779 | .remove = qla2x00_remove_one, |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 5780 | .shutdown = qla2x00_shutdown, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5781 | .err_handler = &qla2xxx_err_handler, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5782 | }; |
| 5783 | |
Al Viro | 75ef9de | 2013-04-04 19:09:41 -0400 | [diff] [blame] | 5784 | static const struct file_operations apidev_fops = { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5785 | .owner = THIS_MODULE, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 5786 | .llseek = noop_llseek, |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5787 | }; |
| 5788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5789 | /** |
| 5790 | * qla2x00_module_init - Module initialization. |
| 5791 | **/ |
| 5792 | static int __init |
| 5793 | qla2x00_module_init(void) |
| 5794 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5795 | int ret = 0; |
| 5796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5797 | /* Allocate cache for SRBs. */ |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5798 | srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5799 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5800 | if (srb_cachep == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5801 | ql_log(ql_log_fatal, NULL, 0x0001, |
| 5802 | "Unable to allocate SRB cache...Failing load!.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5803 | return -ENOMEM; |
| 5804 | } |
| 5805 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5806 | /* Initialize target kmem_cache and mem_pools */ |
| 5807 | ret = qlt_init(); |
| 5808 | if (ret < 0) { |
| 5809 | kmem_cache_destroy(srb_cachep); |
| 5810 | return ret; |
| 5811 | } else if (ret > 0) { |
| 5812 | /* |
| 5813 | * If initiator mode is explictly disabled by qlt_init(), |
| 5814 | * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from |
| 5815 | * performing scsi_scan_target() during LOOP UP event. |
| 5816 | */ |
| 5817 | qla2xxx_transport_functions.disable_target_scan = 1; |
| 5818 | qla2xxx_transport_vport_functions.disable_target_scan = 1; |
| 5819 | } |
| 5820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5821 | /* Derive version string. */ |
| 5822 | strcpy(qla2x00_version_str, QLA2XXX_VERSION); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 5823 | if (ql2xextended_error_logging) |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 5824 | strcat(qla2x00_version_str, "-debug"); |
| 5825 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 5826 | qla2xxx_transport_template = |
| 5827 | fc_attach_transport(&qla2xxx_transport_functions); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5828 | if (!qla2xxx_transport_template) { |
| 5829 | kmem_cache_destroy(srb_cachep); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5830 | ql_log(ql_log_fatal, NULL, 0x0002, |
| 5831 | "fc_attach_transport failed...Failing load!.\n"); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5832 | qlt_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5833 | return -ENODEV; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5834 | } |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5835 | |
| 5836 | apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops); |
| 5837 | if (apidev_major < 0) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5838 | ql_log(ql_log_fatal, NULL, 0x0003, |
| 5839 | "Unable to register char device %s.\n", QLA2XXX_APIDEV); |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5840 | } |
| 5841 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5842 | qla2xxx_transport_vport_template = |
| 5843 | fc_attach_transport(&qla2xxx_transport_vport_functions); |
| 5844 | if (!qla2xxx_transport_vport_template) { |
| 5845 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5846 | qlt_exit(); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5847 | fc_release_transport(qla2xxx_transport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5848 | ql_log(ql_log_fatal, NULL, 0x0004, |
| 5849 | "fc_attach_transport vport failed...Failing load!.\n"); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5850 | return -ENODEV; |
| 5851 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5852 | ql_log(ql_log_info, NULL, 0x0005, |
| 5853 | "QLogic Fibre Channel HBA Driver: %s.\n", |
Andrew Vasquez | fd9a29f0 | 2008-05-12 22:21:08 -0700 | [diff] [blame] | 5854 | qla2x00_version_str); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5855 | ret = pci_register_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5856 | if (ret) { |
| 5857 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5858 | qlt_exit(); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5859 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5860 | fc_release_transport(qla2xxx_transport_vport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5861 | ql_log(ql_log_fatal, NULL, 0x0006, |
| 5862 | "pci_register_driver failed...ret=%d Failing load!.\n", |
| 5863 | ret); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5864 | } |
| 5865 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5866 | } |
| 5867 | |
| 5868 | /** |
| 5869 | * qla2x00_module_exit - Module cleanup. |
| 5870 | **/ |
| 5871 | static void __exit |
| 5872 | qla2x00_module_exit(void) |
| 5873 | { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5874 | unregister_chrdev(apidev_major, QLA2XXX_APIDEV); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5875 | pci_unregister_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5876 | qla2x00_release_firmware(); |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5877 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5878 | qlt_exit(); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5879 | if (ctx_cachep) |
| 5880 | kmem_cache_destroy(ctx_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5881 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5882 | fc_release_transport(qla2xxx_transport_vport_template); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5883 | } |
| 5884 | |
| 5885 | module_init(qla2x00_module_init); |
| 5886 | module_exit(qla2x00_module_exit); |
| 5887 | |
| 5888 | MODULE_AUTHOR("QLogic Corporation"); |
| 5889 | MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); |
| 5890 | MODULE_LICENSE("GPL"); |
| 5891 | MODULE_VERSION(QLA2XXX_VERSION); |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5892 | MODULE_FIRMWARE(FW_FILE_ISP21XX); |
| 5893 | MODULE_FIRMWARE(FW_FILE_ISP22XX); |
| 5894 | MODULE_FIRMWARE(FW_FILE_ISP2300); |
| 5895 | MODULE_FIRMWARE(FW_FILE_ISP2322); |
| 5896 | MODULE_FIRMWARE(FW_FILE_ISP24XX); |
Andrew Vasquez | 61623fc | 2008-01-31 12:33:45 -0800 | [diff] [blame] | 5897 | MODULE_FIRMWARE(FW_FILE_ISP25XX); |