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; |
Himanshu Madhani | de187df | 2014-09-25 05:16:50 -0400 | [diff] [blame] | 108 | module_param(ql2xfdmienable, int, S_IRUGO|S_IWUSR); |
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 | |
Hannes Reinecke | 1abf635 | 2014-06-25 15:27:38 +0200 | [diff] [blame] | 205 | uint64_t ql2xmaxlun = MAX_LUNS; |
| 206 | module_param(ql2xmaxlun, ullong, S_IRUGO); |
Andrew Vasquez | 8251592 | 2011-05-10 11:30:13 -0700 | [diff] [blame] | 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 | |
Himanshu Madhani | b0d6cab | 2015-12-17 14:56:56 -0500 | [diff] [blame] | 224 | int ql2xexlogins = 0; |
| 225 | module_param(ql2xexlogins, uint, S_IRUGO|S_IWUSR); |
| 226 | MODULE_PARM_DESC(ql2xexlogins, |
| 227 | "Number of extended Logins. " |
| 228 | "0 (Default)- Disabled."); |
| 229 | |
Himanshu Madhani | 2f56a7f | 2015-12-17 14:56:57 -0500 | [diff] [blame^] | 230 | int ql2xexchoffld = 0; |
| 231 | module_param(ql2xexchoffld, uint, S_IRUGO|S_IWUSR); |
| 232 | MODULE_PARM_DESC(ql2xexchoffld, |
| 233 | "Number of exchanges to offload. " |
| 234 | "0 (Default)- Disabled."); |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | /* |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 237 | * SCSI host template entry points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | */ |
| 239 | static int qla2xxx_slave_configure(struct scsi_device * device); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 240 | static int qla2xxx_slave_alloc(struct scsi_device *); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 241 | static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time); |
| 242 | static void qla2xxx_scan_start(struct Scsi_Host *); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 243 | static void qla2xxx_slave_destroy(struct scsi_device *); |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 244 | static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | static int qla2xxx_eh_abort(struct scsi_cmnd *); |
| 246 | static int qla2xxx_eh_device_reset(struct scsi_cmnd *); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 247 | static int qla2xxx_eh_target_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | static int qla2xxx_eh_bus_reset(struct scsi_cmnd *); |
| 249 | static int qla2xxx_eh_host_reset(struct scsi_cmnd *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Joe Lawrence | 1a2fbf1 | 2014-08-26 17:11:18 -0400 | [diff] [blame] | 251 | static void qla2x00_clear_drv_active(struct qla_hw_data *); |
Saurav Kashyap | 3491255 | 2013-06-25 11:27:18 -0400 | [diff] [blame] | 252 | static void qla2x00_free_device(scsi_qla_host_t *); |
Himanshu Madhani | 2d5a4c3 | 2014-09-25 05:16:55 -0400 | [diff] [blame] | 253 | static void qla83xx_disable_laser(scsi_qla_host_t *vha); |
Andrew Vasquez | ce7e4af | 2005-08-26 19:09:30 -0700 | [diff] [blame] | 254 | |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 255 | struct scsi_host_template qla2xxx_driver_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | .module = THIS_MODULE, |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 257 | .name = QLA2XXX_DRIVER_NAME, |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 258 | .queuecommand = qla2xxx_queuecommand, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 259 | |
| 260 | .eh_abort_handler = qla2xxx_eh_abort, |
| 261 | .eh_device_reset_handler = qla2xxx_eh_device_reset, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 262 | .eh_target_reset_handler = qla2xxx_eh_target_reset, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 263 | .eh_bus_reset_handler = qla2xxx_eh_bus_reset, |
| 264 | .eh_host_reset_handler = qla2xxx_eh_host_reset, |
| 265 | |
| 266 | .slave_configure = qla2xxx_slave_configure, |
| 267 | |
| 268 | .slave_alloc = qla2xxx_slave_alloc, |
| 269 | .slave_destroy = qla2xxx_slave_destroy, |
Andrew Vasquez | ed67708 | 2007-03-12 10:41:27 -0700 | [diff] [blame] | 270 | .scan_finished = qla2xxx_scan_finished, |
| 271 | .scan_start = qla2xxx_scan_start, |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 272 | .change_queue_depth = scsi_change_queue_depth, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 273 | .this_id = -1, |
| 274 | .cmd_per_lun = 3, |
| 275 | .use_clustering = ENABLE_CLUSTERING, |
| 276 | .sg_tablesize = SG_ALL, |
| 277 | |
| 278 | .max_sectors = 0xFFFF, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 279 | .shost_attrs = qla2x00_host_attrs, |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 280 | |
| 281 | .supported_mode = MODE_INITIATOR, |
Christoph Hellwig | c40ecc1 | 2014-11-13 14:25:11 +0100 | [diff] [blame] | 282 | .track_queue_depth = 1, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 283 | }; |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | static struct scsi_transport_template *qla2xxx_transport_template = NULL; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 286 | struct scsi_transport_template *qla2xxx_transport_vport_template = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | /* TODO Convert to inlines |
| 289 | * |
| 290 | * Timer routines |
| 291 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 293 | __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 294 | 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] | 295 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 296 | init_timer(&vha->timer); |
| 297 | vha->timer.expires = jiffies + interval * HZ; |
| 298 | vha->timer.data = (unsigned long)vha; |
| 299 | vha->timer.function = (void (*)(unsigned long))func; |
| 300 | add_timer(&vha->timer); |
| 301 | vha->timer_active = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 305 | qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 307 | /* Currently used for 82XX only. */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 308 | if (vha->device_flags & DFLG_DEV_FAILED) { |
| 309 | ql_dbg(ql_dbg_timer, vha, 0x600d, |
| 310 | "Device in a failed state, returning.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 311 | return; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 312 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 313 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 314 | mod_timer(&vha->timer, jiffies + interval * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 317 | static __inline__ void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 318 | qla2x00_stop_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 320 | del_timer_sync(&vha->timer); |
| 321 | vha->timer_active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | static int qla2x00_do_dpc(void *data); |
| 325 | |
| 326 | static void qla2x00_rst_aen(scsi_qla_host_t *); |
| 327 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 328 | static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t, |
| 329 | struct req_que **, struct rsp_que **); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 330 | static void qla2x00_free_fw_dump(struct qla_hw_data *); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 331 | static void qla2x00_mem_free(struct qla_hw_data *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | /* -------------------------------------------------------------------------- */ |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 334 | static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req, |
| 335 | struct rsp_que *rsp) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 336 | { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 337 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 338 | 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] | 339 | GFP_KERNEL); |
| 340 | if (!ha->req_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 341 | ql_log(ql_log_fatal, vha, 0x003b, |
| 342 | "Unable to allocate memory for request queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 343 | goto fail_req_map; |
| 344 | } |
| 345 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 346 | 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] | 347 | GFP_KERNEL); |
| 348 | if (!ha->rsp_q_map) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 349 | ql_log(ql_log_fatal, vha, 0x003c, |
| 350 | "Unable to allocate memory for response queue ptrs.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 351 | goto fail_rsp_map; |
| 352 | } |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 353 | /* |
| 354 | * Make sure we record at least the request and response queue zero in |
| 355 | * case we need to free them if part of the probe fails. |
| 356 | */ |
| 357 | ha->rsp_q_map[0] = rsp; |
| 358 | ha->req_q_map[0] = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 359 | set_bit(0, ha->rsp_qid_map); |
| 360 | set_bit(0, ha->req_qid_map); |
| 361 | return 1; |
| 362 | |
| 363 | fail_rsp_map: |
| 364 | kfree(ha->req_q_map); |
| 365 | ha->req_q_map = NULL; |
| 366 | fail_req_map: |
| 367 | return -ENOMEM; |
| 368 | } |
| 369 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 370 | 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] | 371 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 372 | if (IS_QLAFX00(ha)) { |
| 373 | if (req && req->ring_fx00) |
| 374 | dma_free_coherent(&ha->pdev->dev, |
| 375 | (req->length_fx00 + 1) * sizeof(request_t), |
| 376 | req->ring_fx00, req->dma_fx00); |
| 377 | } else if (req && req->ring) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 378 | dma_free_coherent(&ha->pdev->dev, |
| 379 | (req->length + 1) * sizeof(request_t), |
| 380 | req->ring, req->dma); |
| 381 | |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 382 | if (req) |
| 383 | kfree(req->outstanding_cmds); |
| 384 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 385 | kfree(req); |
| 386 | req = NULL; |
| 387 | } |
| 388 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 389 | static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp) |
| 390 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 391 | if (IS_QLAFX00(ha)) { |
| 392 | if (rsp && rsp->ring) |
| 393 | dma_free_coherent(&ha->pdev->dev, |
| 394 | (rsp->length_fx00 + 1) * sizeof(request_t), |
| 395 | rsp->ring_fx00, rsp->dma_fx00); |
| 396 | } else if (rsp && rsp->ring) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 397 | dma_free_coherent(&ha->pdev->dev, |
| 398 | (rsp->length + 1) * sizeof(response_t), |
| 399 | rsp->ring, rsp->dma); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 400 | } |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 401 | kfree(rsp); |
| 402 | rsp = NULL; |
| 403 | } |
| 404 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 405 | static void qla2x00_free_queues(struct qla_hw_data *ha) |
| 406 | { |
| 407 | struct req_que *req; |
| 408 | struct rsp_que *rsp; |
| 409 | int cnt; |
| 410 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 411 | for (cnt = 0; cnt < ha->max_req_queues; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 412 | req = ha->req_q_map[cnt]; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 413 | qla2x00_free_req_que(ha, req); |
| 414 | } |
| 415 | kfree(ha->req_q_map); |
| 416 | ha->req_q_map = NULL; |
| 417 | |
| 418 | for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) { |
| 419 | rsp = ha->rsp_q_map[cnt]; |
| 420 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 421 | } |
| 422 | kfree(ha->rsp_q_map); |
| 423 | ha->rsp_q_map = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 424 | } |
| 425 | |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 426 | static int qla25xx_setup_mode(struct scsi_qla_host *vha) |
| 427 | { |
| 428 | uint16_t options = 0; |
| 429 | int ques, req, ret; |
| 430 | struct qla_hw_data *ha = vha->hw; |
| 431 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 432 | if (!(ha->fw_attributes & BIT_6)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 433 | ql_log(ql_log_warn, vha, 0x00d8, |
| 434 | "Firmware is not multi-queue capable.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 435 | goto fail; |
| 436 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 437 | if (ql2xmultique_tag) { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 438 | /* create a request queue for IO */ |
| 439 | options |= BIT_7; |
| 440 | req = qla25xx_create_req_que(ha, options, 0, 0, -1, |
| 441 | QLA_DEFAULT_QUE_QOS); |
| 442 | if (!req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 443 | ql_log(ql_log_warn, vha, 0x00e0, |
| 444 | "Failed to create request queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 445 | goto fail; |
| 446 | } |
Tejun Heo | 278274d | 2011-02-01 11:42:42 +0100 | [diff] [blame] | 447 | ha->wq = alloc_workqueue("qla2xxx_wq", WQ_MEM_RECLAIM, 1); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 448 | vha->req = ha->req_q_map[req]; |
| 449 | options |= BIT_1; |
| 450 | for (ques = 1; ques < ha->max_rsp_queues; ques++) { |
| 451 | ret = qla25xx_create_rsp_que(ha, options, 0, 0, req); |
| 452 | if (!ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 453 | ql_log(ql_log_warn, vha, 0x00e8, |
| 454 | "Failed to create response queue.\n"); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 455 | goto fail2; |
| 456 | } |
| 457 | } |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 458 | ha->flags.cpu_affinity_enabled = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 459 | ql_dbg(ql_dbg_multiq, vha, 0xc007, |
Yannick Guerrini | 6ef68da | 2015-02-23 23:26:50 +0100 | [diff] [blame] | 460 | "CPU affinity mode enabled, " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 461 | "no. of response queues:%d no. of request queues:%d.\n", |
| 462 | ha->max_rsp_queues, ha->max_req_queues); |
| 463 | ql_dbg(ql_dbg_init, vha, 0x00e9, |
Yannick Guerrini | 6ef68da | 2015-02-23 23:26:50 +0100 | [diff] [blame] | 464 | "CPU affinity mode enabled, " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 465 | "no. of response queues:%d no. of request queues:%d.\n", |
| 466 | ha->max_rsp_queues, ha->max_req_queues); |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 467 | } |
| 468 | return 0; |
| 469 | fail2: |
| 470 | qla25xx_delete_queues(vha); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 471 | destroy_workqueue(ha->wq); |
| 472 | ha->wq = NULL; |
Giridhar Malavali | 0cd33fc | 2011-11-18 09:02:12 -0800 | [diff] [blame] | 473 | vha->req = ha->req_q_map[0]; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 474 | fail: |
| 475 | ha->mqenable = 0; |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 476 | kfree(ha->req_q_map); |
| 477 | kfree(ha->rsp_q_map); |
| 478 | ha->max_req_queues = ha->max_rsp_queues = 1; |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 479 | return 1; |
| 480 | } |
| 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 483 | qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 485 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | static char *pci_bus_modes[] = { |
| 487 | "33", "66", "100", "133", |
| 488 | }; |
| 489 | uint16_t pci_bus; |
| 490 | |
| 491 | strcpy(str, "PCI"); |
| 492 | pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9; |
| 493 | if (pci_bus) { |
| 494 | strcat(str, "-X ("); |
| 495 | strcat(str, pci_bus_modes[pci_bus]); |
| 496 | } else { |
| 497 | pci_bus = (ha->pci_attr & BIT_8) >> 8; |
| 498 | strcat(str, " ("); |
| 499 | strcat(str, pci_bus_modes[pci_bus]); |
| 500 | } |
| 501 | strcat(str, " MHz)"); |
| 502 | |
| 503 | return (str); |
| 504 | } |
| 505 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 506 | static char * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 507 | qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 508 | { |
| 509 | static char *pci_bus_modes[] = { "33", "66", "100", "133", }; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 510 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 511 | uint32_t pci_bus; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 512 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 513 | if (pci_is_pcie(ha->pdev)) { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 514 | char lwstr[6]; |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 515 | uint32_t lstat, lspeed, lwidth; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 516 | |
Bjorn Helgaas | 62a276f | 2013-09-06 11:26:24 -0600 | [diff] [blame] | 517 | pcie_capability_read_dword(ha->pdev, PCI_EXP_LNKCAP, &lstat); |
| 518 | lspeed = lstat & PCI_EXP_LNKCAP_SLS; |
| 519 | lwidth = (lstat & PCI_EXP_LNKCAP_MLW) >> 4; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 520 | |
| 521 | strcpy(str, "PCIe ("); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 522 | switch (lspeed) { |
| 523 | case 1: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 524 | strcat(str, "2.5GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 525 | break; |
| 526 | case 2: |
Andrew Vasquez | c87a0d8 | 2008-04-03 13:13:21 -0700 | [diff] [blame] | 527 | strcat(str, "5.0GT/s "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 528 | break; |
| 529 | case 3: |
| 530 | strcat(str, "8.0GT/s "); |
| 531 | break; |
| 532 | default: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 533 | strcat(str, "<unknown> "); |
Saurav Kashyap | 49300af | 2012-11-21 02:40:34 -0500 | [diff] [blame] | 534 | break; |
| 535 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 536 | snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth); |
| 537 | strcat(str, lwstr); |
| 538 | |
| 539 | return str; |
| 540 | } |
| 541 | |
| 542 | strcpy(str, "PCI"); |
| 543 | pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8; |
| 544 | if (pci_bus == 0 || pci_bus == 8) { |
| 545 | strcat(str, " ("); |
| 546 | strcat(str, pci_bus_modes[pci_bus >> 3]); |
| 547 | } else { |
| 548 | strcat(str, "-X "); |
| 549 | if (pci_bus & BIT_2) |
| 550 | strcat(str, "Mode 2"); |
| 551 | else |
| 552 | strcat(str, "Mode 1"); |
| 553 | strcat(str, " ("); |
| 554 | strcat(str, pci_bus_modes[pci_bus & ~BIT_2]); |
| 555 | } |
| 556 | strcat(str, " MHz)"); |
| 557 | |
| 558 | return str; |
| 559 | } |
| 560 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 561 | static char * |
Himanshu Madhani | df57cab | 2014-09-25 05:16:46 -0400 | [diff] [blame] | 562 | qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
| 564 | char un_str[10]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 565 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 566 | |
Himanshu Madhani | df57cab | 2014-09-25 05:16:46 -0400 | [diff] [blame] | 567 | snprintf(str, size, "%d.%02d.%02d ", ha->fw_major_version, |
| 568 | ha->fw_minor_version, ha->fw_subminor_version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | if (ha->fw_attributes & BIT_9) { |
| 571 | strcat(str, "FLX"); |
| 572 | return (str); |
| 573 | } |
| 574 | |
| 575 | switch (ha->fw_attributes & 0xFF) { |
| 576 | case 0x7: |
| 577 | strcat(str, "EF"); |
| 578 | break; |
| 579 | case 0x17: |
| 580 | strcat(str, "TP"); |
| 581 | break; |
| 582 | case 0x37: |
| 583 | strcat(str, "IP"); |
| 584 | break; |
| 585 | case 0x77: |
| 586 | strcat(str, "VI"); |
| 587 | break; |
| 588 | default: |
| 589 | sprintf(un_str, "(%x)", ha->fw_attributes); |
| 590 | strcat(str, un_str); |
| 591 | break; |
| 592 | } |
| 593 | if (ha->fw_attributes & 0x100) |
| 594 | strcat(str, "X"); |
| 595 | |
| 596 | return (str); |
| 597 | } |
| 598 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 599 | static char * |
Himanshu Madhani | df57cab | 2014-09-25 05:16:46 -0400 | [diff] [blame] | 600 | qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str, size_t size) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 601 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 602 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | f0883ac | 2005-07-08 17:58:43 -0700 | [diff] [blame] | 603 | |
Himanshu Madhani | df57cab | 2014-09-25 05:16:46 -0400 | [diff] [blame] | 604 | snprintf(str, size, "%d.%02d.%02d (%x)", ha->fw_major_version, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 605 | ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 606 | return str; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 609 | void |
| 610 | qla2x00_sp_free_dma(void *vha, void *ptr) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 611 | { |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 612 | srb_t *sp = (srb_t *)ptr; |
| 613 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 614 | struct qla_hw_data *ha = sp->fcport->vha->hw; |
| 615 | void *ctx = GET_CMD_CTX_SP(sp); |
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_DMA_VALID) { |
| 618 | scsi_dma_unmap(cmd); |
| 619 | sp->flags &= ~SRB_DMA_VALID; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 620 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 621 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 622 | if (sp->flags & SRB_CRC_PROT_DMA_VALID) { |
| 623 | dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd), |
| 624 | scsi_prot_sg_count(cmd), cmd->sc_data_direction); |
| 625 | sp->flags &= ~SRB_CRC_PROT_DMA_VALID; |
| 626 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 627 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 628 | if (sp->flags & SRB_CRC_CTX_DSD_VALID) { |
| 629 | /* List assured to be having elements */ |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 630 | qla2x00_clean_dsd_pool(ha, sp, NULL); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 631 | sp->flags &= ~SRB_CRC_CTX_DSD_VALID; |
| 632 | } |
| 633 | |
| 634 | if (sp->flags & SRB_CRC_CTX_DMA_VALID) { |
| 635 | dma_pool_free(ha->dl_dma_pool, ctx, |
| 636 | ((struct crc_context *)ctx)->crc_ctx_dma); |
| 637 | sp->flags &= ~SRB_CRC_CTX_DMA_VALID; |
| 638 | } |
| 639 | |
| 640 | if (sp->flags & SRB_FCP_CMND_DMA_VALID) { |
| 641 | struct ct6_dsd *ctx1 = (struct ct6_dsd *)ctx; |
| 642 | |
| 643 | dma_pool_free(ha->fcp_cmnd_dma_pool, ctx1->fcp_cmnd, |
| 644 | ctx1->fcp_cmnd_dma); |
| 645 | list_splice(&ctx1->dsd_list, &ha->gbl_dsd_list); |
| 646 | ha->gbl_dsd_inuse -= ctx1->dsd_use_cnt; |
| 647 | ha->gbl_dsd_avail += ctx1->dsd_use_cnt; |
| 648 | mempool_free(ctx1, ha->ctx_mempool); |
| 649 | ctx1 = NULL; |
| 650 | } |
| 651 | |
| 652 | CMD_SP(cmd) = NULL; |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 653 | qla2x00_rel_sp(sp->fcport->vha, sp); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 654 | } |
| 655 | |
Fengguang Wu | 14b0680 | 2013-04-25 01:29:19 -0400 | [diff] [blame] | 656 | static void |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 657 | qla2x00_sp_compl(void *data, void *ptr, int res) |
| 658 | { |
| 659 | struct qla_hw_data *ha = (struct qla_hw_data *)data; |
| 660 | srb_t *sp = (srb_t *)ptr; |
| 661 | struct scsi_cmnd *cmd = GET_CMD_SP(sp); |
| 662 | |
| 663 | cmd->result = res; |
| 664 | |
| 665 | if (atomic_read(&sp->ref_count) == 0) { |
| 666 | ql_dbg(ql_dbg_io, sp->fcport->vha, 0x3015, |
| 667 | "SP reference-count to ZERO -- sp=%p cmd=%p.\n", |
| 668 | sp, GET_CMD_SP(sp)); |
| 669 | if (ql2xextended_error_logging & ql_dbg_io) |
Hiral Patel | 8fbdac8 | 2015-08-04 13:37:56 -0400 | [diff] [blame] | 670 | WARN_ON(atomic_read(&sp->ref_count) == 0); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 671 | return; |
| 672 | } |
| 673 | if (!atomic_dec_and_test(&sp->ref_count)) |
| 674 | return; |
| 675 | |
| 676 | qla2x00_sp_free_dma(ha, sp); |
| 677 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 680 | /* If we are SP1 here, we need to still take and release the host_lock as SP1 |
| 681 | * does not have the changes necessary to avoid taking host->host_lock. |
| 682 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | static int |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 684 | qla2xxx_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 685 | { |
Madhuranath Iyengar | 134ae07 | 2011-05-10 11:30:08 -0700 | [diff] [blame] | 686 | scsi_qla_host_t *vha = shost_priv(host); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 687 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 688 | struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 689 | struct qla_hw_data *ha = vha->hw; |
| 690 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 691 | srb_t *sp; |
| 692 | int rval; |
| 693 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 694 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 695 | if (ha->flags.pci_channel_io_perm_failure) { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 696 | ql_dbg(ql_dbg_aer, vha, 0x9010, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 697 | "PCI Channel IO permanent failure, exiting " |
| 698 | "cmd=%p.\n", cmd); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 699 | cmd->result = DID_NO_CONNECT << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 700 | } else { |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 701 | ql_dbg(ql_dbg_aer, vha, 0x9011, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 702 | "EEH_Busy, Requeuing the cmd=%p.\n", cmd); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 703 | cmd->result = DID_REQUEUE << 16; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 704 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 705 | goto qc24_fail_command; |
| 706 | } |
| 707 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 708 | rval = fc_remote_port_chkready(rport); |
| 709 | if (rval) { |
| 710 | cmd->result = rval; |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 711 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3003, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 712 | "fc_remote_port_chkready failed for cmd=%p, rval=0x%x.\n", |
| 713 | cmd, rval); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 714 | goto qc24_fail_command; |
| 715 | } |
| 716 | |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 717 | if (!vha->flags.difdix_supported && |
| 718 | scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 719 | ql_dbg(ql_dbg_io, vha, 0x3004, |
| 720 | "DIF Cap not reg, fail DIF capable cmd's:%p.\n", |
| 721 | cmd); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 722 | cmd->result = DID_NO_CONNECT << 16; |
| 723 | goto qc24_fail_command; |
| 724 | } |
Chad Dupuis | aa651be | 2012-02-09 11:14:04 -0800 | [diff] [blame] | 725 | |
| 726 | if (!fcport) { |
| 727 | cmd->result = DID_NO_CONNECT << 16; |
| 728 | goto qc24_fail_command; |
| 729 | } |
| 730 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 731 | if (atomic_read(&fcport->state) != FCS_ONLINE) { |
| 732 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD || |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 733 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 734 | ql_dbg(ql_dbg_io, vha, 0x3005, |
| 735 | "Returning DNC, fcport_state=%d loop_state=%d.\n", |
| 736 | atomic_read(&fcport->state), |
| 737 | atomic_read(&base_vha->loop_state)); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 738 | cmd->result = DID_NO_CONNECT << 16; |
| 739 | goto qc24_fail_command; |
| 740 | } |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 741 | goto qc24_target_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 742 | } |
| 743 | |
Chad Dupuis | e05fe29 | 2014-09-25 05:16:59 -0400 | [diff] [blame] | 744 | /* |
| 745 | * Return target busy if we've received a non-zero retry_delay_timer |
| 746 | * in a FCP_RSP. |
| 747 | */ |
Bruno Prémont | 975f7d4 | 2014-12-19 10:29:16 +0100 | [diff] [blame] | 748 | if (fcport->retry_delay_timestamp == 0) { |
| 749 | /* retry delay not set */ |
| 750 | } else if (time_after(jiffies, fcport->retry_delay_timestamp)) |
Chad Dupuis | e05fe29 | 2014-09-25 05:16:59 -0400 | [diff] [blame] | 751 | fcport->retry_delay_timestamp = 0; |
| 752 | else |
| 753 | goto qc24_target_busy; |
| 754 | |
Chad Dupuis | b00ee7d | 2013-02-08 01:57:50 -0500 | [diff] [blame] | 755 | sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC); |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 756 | if (!sp) |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 757 | goto qc24_host_busy; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 758 | |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 759 | sp->u.scmd.cmd = cmd; |
| 760 | sp->type = SRB_SCSI_CMD; |
| 761 | atomic_set(&sp->ref_count, 1); |
| 762 | CMD_SP(cmd) = (void *)sp; |
| 763 | sp->free = qla2x00_sp_free_dma; |
| 764 | sp->done = qla2x00_sp_compl; |
| 765 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 766 | rval = ha->isp_ops->start_scsi(sp); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 767 | if (rval != QLA_SUCCESS) { |
Chad Dupuis | 53016ed | 2012-11-21 02:40:32 -0500 | [diff] [blame] | 768 | ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x3013, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 769 | "Start scsi failed rval=%d for cmd=%p.\n", rval, cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 770 | goto qc24_host_busy_free_sp; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 771 | } |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 772 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 773 | return 0; |
| 774 | |
| 775 | qc24_host_busy_free_sp: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 776 | qla2x00_sp_free_dma(ha, sp); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 777 | |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 778 | qc24_host_busy: |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 779 | return SCSI_MLQUEUE_HOST_BUSY; |
| 780 | |
Mike Christie | 7b59413 | 2008-08-17 15:24:40 -0500 | [diff] [blame] | 781 | qc24_target_busy: |
| 782 | return SCSI_MLQUEUE_TARGET_BUSY; |
| 783 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 784 | qc24_fail_command: |
Madhuranath Iyengar | f5e3e40 | 2011-02-23 15:27:06 -0800 | [diff] [blame] | 785 | cmd->scsi_done(cmd); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 786 | |
| 787 | return 0; |
| 788 | } |
| 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | /* |
| 791 | * qla2x00_eh_wait_on_command |
| 792 | * Waits for the command to be returned by the Firmware for some |
| 793 | * max time. |
| 794 | * |
| 795 | * Input: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | * cmd = Scsi Command to wait on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | * |
| 798 | * Return: |
| 799 | * Not Found : 0 |
| 800 | * Found : 1 |
| 801 | */ |
| 802 | static int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 803 | qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 805 | #define ABORT_POLLING_PERIOD 1000 |
Chad Dupuis | 478c3b0 | 2014-04-11 16:54:35 -0400 | [diff] [blame] | 806 | #define ABORT_WAIT_ITER ((2 * 1000) / (ABORT_POLLING_PERIOD)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 807 | unsigned long wait_iter = ABORT_WAIT_ITER; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 808 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 809 | struct qla_hw_data *ha = vha->hw; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 810 | int ret = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 812 | if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 813 | ql_dbg(ql_dbg_taskm, vha, 0x8005, |
| 814 | "Return:eh_wait.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 815 | return ret; |
| 816 | } |
| 817 | |
Lalit Chandivade | d970432 | 2009-08-25 11:36:18 -0700 | [diff] [blame] | 818 | while (CMD_SP(cmd) && wait_iter--) { |
Andrew Vasquez | fe74c71 | 2005-08-26 19:10:10 -0700 | [diff] [blame] | 819 | msleep(ABORT_POLLING_PERIOD); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 820 | } |
| 821 | if (CMD_SP(cmd)) |
| 822 | ret = QLA_FUNCTION_FAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 824 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | |
| 827 | /* |
| 828 | * qla2x00_wait_for_hba_online |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 829 | * Wait till the HBA is online after going through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | * <= MAX_RETRIES_OF_ISP_ABORT or |
| 831 | * finally HBA is disabled ie marked offline |
| 832 | * |
| 833 | * Input: |
| 834 | * ha - pointer to host adapter structure |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 835 | * |
| 836 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | * Does context switching-Release SPIN_LOCK |
| 838 | * (if any) before calling this routine. |
| 839 | * |
| 840 | * Return: |
| 841 | * Success (Adapter is online) : 0 |
| 842 | * Failed (Adapter is offline/disabled) : 1 |
| 843 | */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 844 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 845 | qla2x00_wait_for_hba_online(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 847 | int return_status; |
| 848 | unsigned long wait_online; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 849 | struct qla_hw_data *ha = vha->hw; |
| 850 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 852 | wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 853 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 854 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 855 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 856 | ha->dpc_active) && time_before(jiffies, wait_online)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
| 858 | msleep(1000); |
| 859 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 860 | if (base_vha->flags.online) |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 861 | return_status = QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | else |
| 863 | return_status = QLA_FUNCTION_FAILED; |
| 864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | return (return_status); |
| 866 | } |
| 867 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 868 | /* |
Sawan Chandak | 638a1a0 | 2014-04-11 16:54:38 -0400 | [diff] [blame] | 869 | * qla2x00_wait_for_hba_ready |
| 870 | * Wait till the HBA is ready before doing driver unload |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 871 | * |
| 872 | * Input: |
| 873 | * ha - pointer to host adapter structure |
| 874 | * |
| 875 | * Note: |
| 876 | * Does context switching-Release SPIN_LOCK |
| 877 | * (if any) before calling this routine. |
| 878 | * |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 879 | */ |
Sawan Chandak | 638a1a0 | 2014-04-11 16:54:38 -0400 | [diff] [blame] | 880 | static void |
| 881 | qla2x00_wait_for_hba_ready(scsi_qla_host_t *vha) |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 882 | { |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 883 | struct qla_hw_data *ha = vha->hw; |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 884 | |
Sawan Chandak | 9d35894d | 2014-09-25 05:16:52 -0400 | [diff] [blame] | 885 | while (((qla2x00_reset_active(vha)) || ha->dpc_active || |
| 886 | ha->flags.mbox_busy) || |
| 887 | test_bit(FX00_RESET_RECOVERY, &vha->dpc_flags) || |
| 888 | test_bit(FX00_TARGET_SCAN, &vha->dpc_flags)) |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 889 | msleep(1000); |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 892 | int |
| 893 | qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) |
| 894 | { |
| 895 | int return_status; |
| 896 | unsigned long wait_reset; |
| 897 | struct qla_hw_data *ha = vha->hw; |
| 898 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 899 | |
| 900 | wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ); |
| 901 | while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) || |
| 902 | test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) || |
| 903 | test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) || |
| 904 | ha->dpc_active) && time_before(jiffies, wait_reset)) { |
| 905 | |
| 906 | msleep(1000); |
| 907 | |
| 908 | if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) && |
| 909 | ha->flags.chip_reset_done) |
| 910 | break; |
| 911 | } |
| 912 | if (ha->flags.chip_reset_done) |
| 913 | return_status = QLA_SUCCESS; |
| 914 | else |
| 915 | return_status = QLA_FUNCTION_FAILED; |
| 916 | |
| 917 | return return_status; |
| 918 | } |
| 919 | |
Giridhar Malavali | 083a469 | 2010-05-28 15:08:18 -0700 | [diff] [blame] | 920 | static void |
| 921 | sp_get(struct srb *sp) |
| 922 | { |
| 923 | atomic_inc(&sp->ref_count); |
| 924 | } |
| 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | /************************************************************************** |
| 927 | * qla2xxx_eh_abort |
| 928 | * |
| 929 | * Description: |
| 930 | * The abort function will abort the specified command. |
| 931 | * |
| 932 | * Input: |
| 933 | * cmd = Linux SCSI command packet to be aborted. |
| 934 | * |
| 935 | * Returns: |
| 936 | * Either SUCCESS or FAILED. |
| 937 | * |
| 938 | * Note: |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 939 | * Only return FAILED if command not returned by firmware. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 941 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | qla2xxx_eh_abort(struct scsi_cmnd *cmd) |
| 943 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 944 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 945 | srb_t *sp; |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 946 | int ret; |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 947 | unsigned int id; |
| 948 | uint64_t lun; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 949 | unsigned long flags; |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 950 | int rval, wait = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 951 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 953 | if (!CMD_SP(cmd)) |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 954 | return SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 956 | ret = fc_block_scsi_eh(cmd); |
| 957 | if (ret != 0) |
| 958 | return ret; |
| 959 | ret = SUCCESS; |
| 960 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 961 | id = cmd->device->id; |
| 962 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 963 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 964 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 965 | sp = (srb_t *) CMD_SP(cmd); |
| 966 | if (!sp) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 967 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 968 | return SUCCESS; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 969 | } |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 970 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 971 | ql_dbg(ql_dbg_taskm, vha, 0x8002, |
Chad Dupuis | c7bc4ca | 2015-08-04 13:37:57 -0400 | [diff] [blame] | 972 | "Aborting from RISC nexus=%ld:%d:%llu sp=%p cmd=%p handle=%x\n", |
| 973 | vha->host_no, id, lun, sp, cmd, sp->handle); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 974 | |
| 975 | /* Get a reference to the sp and drop the lock.*/ |
| 976 | sp_get(sp); |
| 977 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 978 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 979 | rval = ha->isp_ops->abort_command(sp); |
| 980 | if (rval) { |
Chad Dupuis | 9621942 | 2015-08-04 13:38:00 -0400 | [diff] [blame] | 981 | if (rval == QLA_FUNCTION_PARAMETER_ERROR) |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 982 | ret = SUCCESS; |
Chad Dupuis | 9621942 | 2015-08-04 13:38:00 -0400 | [diff] [blame] | 983 | else |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 984 | ret = FAILED; |
| 985 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 986 | ql_dbg(ql_dbg_taskm, vha, 0x8003, |
Chad Dupuis | f934c9d | 2014-04-11 16:54:31 -0400 | [diff] [blame] | 987 | "Abort command mbx failed cmd=%p, rval=%x.\n", cmd, rval); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 988 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 989 | ql_dbg(ql_dbg_taskm, vha, 0x8004, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 990 | "Abort command mbx success cmd=%p.\n", cmd); |
Mike Christie | 170babc | 2010-10-15 11:27:47 -0700 | [diff] [blame] | 991 | wait = 1; |
| 992 | } |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 993 | |
| 994 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 995 | sp->done(ha, sp, 0); |
Saurav Kashyap | 7594206 | 2011-08-16 11:29:25 -0700 | [diff] [blame] | 996 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 997 | |
Chad Dupuis | bc91ade | 2011-08-16 11:29:26 -0700 | [diff] [blame] | 998 | /* Did the command return during mailbox execution? */ |
| 999 | if (ret == FAILED && !CMD_SP(cmd)) |
| 1000 | ret = SUCCESS; |
| 1001 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1002 | /* Wait for the command to be returned. */ |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 1003 | if (wait) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1004 | if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1005 | ql_log(ql_log_warn, vha, 0x8006, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1006 | "Abort handler timed out cmd=%p.\n", cmd); |
Michael Reed | 2ea0020 | 2006-04-27 16:25:30 -0700 | [diff] [blame] | 1007 | ret = FAILED; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1008 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1011 | ql_log(ql_log_info, vha, 0x801c, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1012 | "Abort command issued nexus=%ld:%d:%llu -- %d %x.\n", |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1013 | vha->host_no, id, lun, wait, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1015 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1018 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1019 | qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1020 | uint64_t l, enum nexus_wait_type type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1022 | int cnt, match, status; |
Andrew Vasquez | 18e144d | 2005-05-27 15:04:47 -0700 | [diff] [blame] | 1023 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1024 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1025 | struct req_que *req; |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1026 | srb_t *sp; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1027 | struct scsi_cmnd *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1029 | status = QLA_SUCCESS; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1030 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1031 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 67c2e93 | 2009-04-06 22:33:42 -0700 | [diff] [blame] | 1032 | req = vha->req; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1033 | for (cnt = 1; status == QLA_SUCCESS && |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1034 | cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1035 | sp = req->outstanding_cmds[cnt]; |
| 1036 | if (!sp) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1037 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1038 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 1039 | continue; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1040 | if (vha->vp_idx != sp->fcport->vha->vp_idx) |
| 1041 | continue; |
| 1042 | match = 0; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1043 | cmd = GET_CMD_SP(sp); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1044 | switch (type) { |
| 1045 | case WAIT_HOST: |
| 1046 | match = 1; |
| 1047 | break; |
| 1048 | case WAIT_TARGET: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1049 | match = cmd->device->id == t; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1050 | break; |
| 1051 | case WAIT_LUN: |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1052 | match = (cmd->device->id == t && |
| 1053 | cmd->device->lun == l); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1054 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | } |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1056 | if (!match) |
| 1057 | continue; |
| 1058 | |
| 1059 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1060 | status = qla2x00_eh_wait_on_command(cmd); |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 1061 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1063 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1064 | |
| 1065 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1068 | static char *reset_errors[] = { |
| 1069 | "HBA not online", |
| 1070 | "HBA not ready", |
| 1071 | "Task management failed", |
| 1072 | "Waiting for command completions", |
| 1073 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1075 | static int |
| 1076 | __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1077 | struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, uint64_t, int)) |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1078 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1079 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1080 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
| 1081 | int err; |
| 1082 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1083 | if (!fcport) { |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1084 | return FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1085 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1086 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1087 | err = fc_block_scsi_eh(cmd); |
| 1088 | if (err != 0) |
| 1089 | return err; |
| 1090 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1091 | ql_log(ql_log_info, vha, 0x8009, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1092 | "%s RESET ISSUED nexus=%ld:%d:%llu cmd=%p.\n", name, vha->host_no, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1093 | cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1094 | |
| 1095 | err = 0; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1096 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1097 | ql_log(ql_log_warn, vha, 0x800a, |
| 1098 | "Wait for hba online failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1099 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1100 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1101 | err = 2; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1102 | if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1103 | != QLA_SUCCESS) { |
| 1104 | ql_log(ql_log_warn, vha, 0x800c, |
| 1105 | "do_reset failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1106 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1107 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1108 | err = 3; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1109 | if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1110 | cmd->device->lun, type) != QLA_SUCCESS) { |
| 1111 | ql_log(ql_log_warn, vha, 0x800d, |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1112 | "wait for pending cmds failed for cmd=%p.\n", cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1113 | goto eh_reset_failed; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1114 | } |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1115 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1116 | ql_log(ql_log_info, vha, 0x800e, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1117 | "%s RESET SUCCEEDED nexus:%ld:%d:%llu cmd=%p.\n", name, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1118 | vha->host_no, cmd->device->id, cmd->device->lun, cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1119 | |
| 1120 | return SUCCESS; |
| 1121 | |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1122 | eh_reset_failed: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1123 | ql_log(ql_log_info, vha, 0x800f, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1124 | "%s RESET FAILED: %s nexus=%ld:%d:%llu cmd=%p.\n", name, |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1125 | reset_errors[err], vha->host_no, cmd->device->id, cmd->device->lun, |
| 1126 | cmd); |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1127 | return FAILED; |
| 1128 | } |
| 1129 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1130 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) |
| 1132 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1133 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1134 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1136 | return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd, |
| 1137 | ha->isp_ops->lun_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | static int |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1141 | qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1143 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| 1144 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1146 | return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd, |
| 1147 | ha->isp_ops->target_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | /************************************************************************** |
| 1151 | * qla2xxx_eh_bus_reset |
| 1152 | * |
| 1153 | * Description: |
| 1154 | * The bus reset function will reset the bus and abort any executing |
| 1155 | * commands. |
| 1156 | * |
| 1157 | * Input: |
| 1158 | * cmd = Linux SCSI command packet of the command that cause the |
| 1159 | * bus reset. |
| 1160 | * |
| 1161 | * Returns: |
| 1162 | * SUCCESS/FAILURE (defined as macro in scsi.h). |
| 1163 | * |
| 1164 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1165 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd) |
| 1167 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1168 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1169 | fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1170 | int ret = FAILED; |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1171 | unsigned int id; |
| 1172 | uint64_t lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1174 | id = cmd->device->id; |
| 1175 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1176 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1177 | if (!fcport) { |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1178 | return ret; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1179 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Andrew Vasquez | 4e98d3b | 2011-02-23 15:27:17 -0800 | [diff] [blame] | 1181 | ret = fc_block_scsi_eh(cmd); |
| 1182 | if (ret != 0) |
| 1183 | return ret; |
| 1184 | ret = FAILED; |
| 1185 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1186 | ql_log(ql_log_info, vha, 0x8012, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1187 | "BUS RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1189 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1190 | ql_log(ql_log_fatal, vha, 0x8013, |
| 1191 | "Wait for hba online failed board disabled.\n"); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1192 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | } |
| 1194 | |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1195 | if (qla2x00_loop_reset(vha) == QLA_SUCCESS) |
| 1196 | ret = SUCCESS; |
| 1197 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1198 | if (ret == FAILED) |
| 1199 | goto eh_bus_reset_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1201 | /* Flush outstanding commands. */ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1202 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) != |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1203 | QLA_SUCCESS) { |
| 1204 | ql_log(ql_log_warn, vha, 0x8014, |
| 1205 | "Wait for pending commands failed.\n"); |
Andrew Vasquez | 9a41a62 | 2005-09-20 13:25:53 -0700 | [diff] [blame] | 1206 | ret = FAILED; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1209 | eh_bus_reset_done: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1210 | ql_log(ql_log_warn, vha, 0x802b, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1211 | "BUS RESET %s nexus=%ld:%d:%llu.\n", |
Masanari Iida | d6a0358 | 2012-08-22 14:20:58 -0400 | [diff] [blame] | 1212 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1214 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | } |
| 1216 | |
| 1217 | /************************************************************************** |
| 1218 | * qla2xxx_eh_host_reset |
| 1219 | * |
| 1220 | * Description: |
| 1221 | * The reset function will reset the Adapter. |
| 1222 | * |
| 1223 | * Input: |
| 1224 | * cmd = Linux SCSI command packet of the command that cause the |
| 1225 | * adapter reset. |
| 1226 | * |
| 1227 | * Returns: |
| 1228 | * Either SUCCESS or FAILED. |
| 1229 | * |
| 1230 | * Note: |
| 1231 | **************************************************************************/ |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1232 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | qla2xxx_eh_host_reset(struct scsi_cmnd *cmd) |
| 1234 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1235 | scsi_qla_host_t *vha = shost_priv(cmd->device->host); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1236 | struct qla_hw_data *ha = vha->hw; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1237 | int ret = FAILED; |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1238 | unsigned int id; |
| 1239 | uint64_t lun; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1240 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1242 | id = cmd->device->id; |
| 1243 | lun = cmd->device->lun; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1244 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1245 | ql_log(ql_log_info, vha, 0x8018, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1246 | "ADAPTER RESET ISSUED nexus=%ld:%d:%llu.\n", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | |
Chad Dupuis | 63ee707 | 2014-04-11 16:54:46 -0400 | [diff] [blame] | 1248 | /* |
| 1249 | * No point in issuing another reset if one is active. Also do not |
| 1250 | * attempt a reset if we are updating flash. |
| 1251 | */ |
| 1252 | if (qla2x00_reset_active(vha) || ha->optrom_state != QLA_SWAITING) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1253 | goto eh_host_reset_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1255 | if (vha != base_vha) { |
| 1256 | if (qla2x00_vp_abort_isp(vha)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1257 | goto eh_host_reset_lock; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1258 | } else { |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1259 | if (IS_P3P_TYPE(vha->hw)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1260 | if (!qla82xx_fcoe_ctx_reset(vha)) { |
| 1261 | /* Ctx reset success */ |
| 1262 | ret = SUCCESS; |
| 1263 | goto eh_host_reset_lock; |
| 1264 | } |
| 1265 | /* fall thru if ctx reset failed */ |
| 1266 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 1267 | if (ha->wq) |
| 1268 | flush_workqueue(ha->wq); |
| 1269 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1270 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1271 | if (ha->isp_ops->abort_isp(base_vha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1272 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 1273 | /* failed. schedule dpc to try */ |
| 1274 | set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags); |
| 1275 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1276 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
| 1277 | ql_log(ql_log_warn, vha, 0x802a, |
| 1278 | "wait for hba online failed.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1279 | goto eh_host_reset_lock; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1280 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1281 | } |
| 1282 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 1283 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1285 | /* Waiting for command to be returned to OS.*/ |
Giridhar Malavali | 4d78c97 | 2010-07-23 15:28:35 +0500 | [diff] [blame] | 1286 | if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) == |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1287 | QLA_SUCCESS) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1288 | ret = SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1290 | eh_host_reset_lock: |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1291 | ql_log(ql_log_info, vha, 0x8017, |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1292 | "ADAPTER RESET %s nexus=%ld:%d:%llu.\n", |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1293 | (ret == FAILED) ? "FAILED" : "SUCCEEDED", vha->host_no, id, lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1295 | return ret; |
| 1296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | |
| 1298 | /* |
| 1299 | * qla2x00_loop_reset |
| 1300 | * Issue loop reset. |
| 1301 | * |
| 1302 | * Input: |
| 1303 | * ha = adapter block pointer. |
| 1304 | * |
| 1305 | * Returns: |
| 1306 | * 0 = success |
| 1307 | */ |
Andrew Vasquez | a4722cf | 2008-01-17 09:02:12 -0800 | [diff] [blame] | 1308 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1309 | qla2x00_loop_reset(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | { |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1311 | int ret; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1312 | struct fc_port *fcport; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1313 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1315 | if (IS_QLAFX00(ha)) { |
| 1316 | return qlafx00_loop_reset(vha); |
| 1317 | } |
| 1318 | |
Giridhar Malavali | f4c496c | 2010-05-04 15:01:33 -0700 | [diff] [blame] | 1319 | if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1320 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 1321 | if (fcport->port_type != FCT_TARGET) |
| 1322 | continue; |
| 1323 | |
| 1324 | ret = ha->isp_ops->target_reset(fcport, 0, 0); |
| 1325 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1326 | ql_dbg(ql_dbg_taskm, vha, 0x802c, |
Armen Baloyan | 5854771 | 2013-08-27 01:37:33 -0400 | [diff] [blame] | 1327 | "Bus Reset failed: Reset=%d " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1328 | "d_id=%x.\n", ret, fcport->d_id.b24); |
Andrew Vasquez | 55e5ed2 | 2010-02-18 10:07:25 -0800 | [diff] [blame] | 1329 | } |
| 1330 | } |
| 1331 | } |
| 1332 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1333 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1334 | if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) { |
Andrew Vasquez | 0b7e7c5 | 2013-02-08 01:57:42 -0500 | [diff] [blame] | 1335 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1336 | atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); |
| 1337 | qla2x00_mark_all_devices_lost(vha, 0); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1338 | ret = qla2x00_full_login_lip(vha); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1339 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1340 | ql_dbg(ql_dbg_taskm, vha, 0x802d, |
| 1341 | "full_login_lip=%d.\n", ret); |
Anirban Chakraborty | 749af3d | 2008-11-14 13:48:12 -0800 | [diff] [blame] | 1342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | } |
| 1344 | |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 1345 | if (ha->flags.enable_lip_reset) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1346 | ret = qla2x00_lip_reset(vha); |
Saurav Kashyap | ad53768 | 2011-11-18 09:02:09 -0800 | [diff] [blame] | 1347 | if (ret != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1348 | ql_dbg(ql_dbg_taskm, vha, 0x802e, |
| 1349 | "lip_reset failed (%d).\n", ret); |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1350 | } |
| 1351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | /* 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] | 1353 | vha->marker_needed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
Andrew Vasquez | 0c8c39a | 2006-12-13 19:20:30 -0800 | [diff] [blame] | 1355 | return QLA_SUCCESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | } |
| 1357 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1358 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1359 | qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1360 | { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1361 | int que, cnt; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1362 | unsigned long flags; |
| 1363 | srb_t *sp; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1364 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1365 | struct req_que *req; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1366 | |
Arun Easi | c0cb449 | 2014-09-25 06:14:51 -0400 | [diff] [blame] | 1367 | qlt_host_reset_handler(ha); |
| 1368 | |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1369 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1370 | for (que = 0; que < ha->max_req_queues; que++) { |
Anirban Chakraborty | 29bdccb | 2009-01-08 15:41:08 -0800 | [diff] [blame] | 1371 | req = ha->req_q_map[que]; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1372 | if (!req) |
| 1373 | continue; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 1374 | if (!req->outstanding_cmds) |
| 1375 | continue; |
| 1376 | for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1377 | sp = req->outstanding_cmds[cnt]; |
Andrew Vasquez | e612d46 | 2009-03-24 09:08:04 -0700 | [diff] [blame] | 1378 | if (sp) { |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1379 | req->outstanding_cmds[cnt] = NULL; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 1380 | sp->done(vha, sp, res); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1381 | } |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 1382 | } |
| 1383 | } |
| 1384 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1385 | } |
| 1386 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1387 | static int |
| 1388 | qla2xxx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1390 | struct fc_rport *rport = starget_to_rport(scsi_target(sdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1392 | if (!rport || fc_remote_port_chkready(rport)) |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1393 | return -ENXIO; |
| 1394 | |
James.Smart@Emulex.Com | 19a7b4a | 2005-10-18 12:03:35 -0400 | [diff] [blame] | 1395 | sdev->hostdata = *(fc_port_t **)rport->dd_data; |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1396 | |
| 1397 | return 0; |
| 1398 | } |
| 1399 | |
| 1400 | static int |
| 1401 | qla2xxx_slave_configure(struct scsi_device *sdev) |
| 1402 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1403 | scsi_qla_host_t *vha = shost_priv(sdev->host); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1404 | struct req_que *req = vha->req; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1405 | |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 1406 | if (IS_T10_PI_CAPABLE(vha->hw)) |
| 1407 | blk_queue_update_dma_alignment(sdev->request_queue, 0x7); |
| 1408 | |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 1409 | scsi_change_queue_depth(sdev, req->max_q_depth); |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1410 | return 0; |
| 1411 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
| f4f051e | 2005-04-17 15:02:26 -0500 | [diff] [blame] | 1413 | static void |
| 1414 | qla2xxx_slave_destroy(struct scsi_device *sdev) |
| 1415 | { |
| 1416 | sdev->hostdata = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /** |
| 1420 | * qla2x00_config_dma_addressing() - Configure OS DMA addressing method. |
| 1421 | * @ha: HA context |
| 1422 | * |
| 1423 | * At exit, the @ha's flags.enable_64bit_addressing set to indicated |
| 1424 | * supported addressing method. |
| 1425 | */ |
| 1426 | static void |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 1427 | qla2x00_config_dma_addressing(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1429 | /* Assume a 32bit DMA mask. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | ha->flags.enable_64bit_addressing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1432 | if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1433 | /* Any upper-dword bits set? */ |
| 1434 | if (MSD(dma_get_required_mask(&ha->pdev->dev)) && |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 1435 | !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) { |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1436 | /* Ok, a 64bit DMA mask is applicable. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | ha->flags.enable_64bit_addressing = 1; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1438 | ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64; |
| 1439 | ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64; |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1440 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
Andrew Vasquez | 7524f9b | 2005-08-26 19:08:00 -0700 | [diff] [blame] | 1443 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1444 | dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32)); |
| 1445 | pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1448 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1449 | qla2x00_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1450 | { |
| 1451 | unsigned long flags = 0; |
| 1452 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1453 | |
| 1454 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1455 | ha->interrupts_on = 1; |
| 1456 | /* enable risc and host interrupts */ |
| 1457 | WRT_REG_WORD(®->ictrl, ICR_EN_INT | ICR_EN_RISC); |
| 1458 | RD_REG_WORD(®->ictrl); |
| 1459 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1460 | |
| 1461 | } |
| 1462 | |
| 1463 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1464 | qla2x00_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1465 | { |
| 1466 | unsigned long flags = 0; |
| 1467 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1468 | |
| 1469 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1470 | ha->interrupts_on = 0; |
| 1471 | /* disable risc and host interrupts */ |
| 1472 | WRT_REG_WORD(®->ictrl, 0); |
| 1473 | RD_REG_WORD(®->ictrl); |
| 1474 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1475 | } |
| 1476 | |
| 1477 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1478 | qla24xx_enable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1479 | { |
| 1480 | unsigned long flags = 0; |
| 1481 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1482 | |
| 1483 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1484 | ha->interrupts_on = 1; |
| 1485 | WRT_REG_DWORD(®->ictrl, ICRX_EN_RISC_INT); |
| 1486 | RD_REG_DWORD(®->ictrl); |
| 1487 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1488 | } |
| 1489 | |
| 1490 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1491 | qla24xx_disable_intrs(struct qla_hw_data *ha) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1492 | { |
| 1493 | unsigned long flags = 0; |
| 1494 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1495 | |
Andrew Vasquez | 124f85e | 2009-01-05 11:18:06 -0800 | [diff] [blame] | 1496 | if (IS_NOPOLLING_TYPE(ha)) |
| 1497 | return; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1498 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1499 | ha->interrupts_on = 0; |
| 1500 | WRT_REG_DWORD(®->ictrl, 0); |
| 1501 | RD_REG_DWORD(®->ictrl); |
| 1502 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1503 | } |
| 1504 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1505 | static int |
| 1506 | qla2x00_iospace_config(struct qla_hw_data *ha) |
| 1507 | { |
| 1508 | resource_size_t pio; |
| 1509 | uint16_t msix; |
| 1510 | int cpus; |
| 1511 | |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1512 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1513 | QLA2XXX_DRIVER_NAME)) { |
| 1514 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0011, |
| 1515 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1516 | pci_name(ha->pdev)); |
| 1517 | goto iospace_error_exit; |
| 1518 | } |
| 1519 | if (!(ha->bars & 1)) |
| 1520 | goto skip_pio; |
| 1521 | |
| 1522 | /* We only need PIO for Flash operations on ISP2312 v2 chips. */ |
| 1523 | pio = pci_resource_start(ha->pdev, 0); |
| 1524 | if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) { |
| 1525 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1526 | ql_log_pci(ql_log_warn, ha->pdev, 0x0012, |
| 1527 | "Invalid pci I/O region size (%s).\n", |
| 1528 | pci_name(ha->pdev)); |
| 1529 | pio = 0; |
| 1530 | } |
| 1531 | } else { |
| 1532 | ql_log_pci(ql_log_warn, ha->pdev, 0x0013, |
| 1533 | "Region #0 no a PIO resource (%s).\n", |
| 1534 | pci_name(ha->pdev)); |
| 1535 | pio = 0; |
| 1536 | } |
| 1537 | ha->pio_address = pio; |
| 1538 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0014, |
| 1539 | "PIO address=%llu.\n", |
| 1540 | (unsigned long long)ha->pio_address); |
| 1541 | |
| 1542 | skip_pio: |
| 1543 | /* Use MMIO operations for all accesses. */ |
| 1544 | if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) { |
| 1545 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0015, |
| 1546 | "Region #1 not an MMIO resource (%s), aborting.\n", |
| 1547 | pci_name(ha->pdev)); |
| 1548 | goto iospace_error_exit; |
| 1549 | } |
| 1550 | if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) { |
| 1551 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0016, |
| 1552 | "Invalid PCI mem region size (%s), aborting.\n", |
| 1553 | pci_name(ha->pdev)); |
| 1554 | goto iospace_error_exit; |
| 1555 | } |
| 1556 | |
| 1557 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN); |
| 1558 | if (!ha->iobase) { |
| 1559 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0017, |
| 1560 | "Cannot remap MMIO (%s), aborting.\n", |
| 1561 | pci_name(ha->pdev)); |
| 1562 | goto iospace_error_exit; |
| 1563 | } |
| 1564 | |
| 1565 | /* Determine queue resources */ |
| 1566 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1567 | if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) || |
| 1568 | (ql2xmaxqueues > 1 && ql2xmultique_tag) || |
| 1569 | (!IS_QLA25XX(ha) && !IS_QLA81XX(ha))) |
| 1570 | goto mqiobase_exit; |
| 1571 | |
| 1572 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3), |
| 1573 | pci_resource_len(ha->pdev, 3)); |
| 1574 | if (ha->mqiobase) { |
| 1575 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0018, |
| 1576 | "MQIO Base=%p.\n", ha->mqiobase); |
| 1577 | /* Read MSIX vector size of the board */ |
| 1578 | pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix); |
| 1579 | ha->msix_count = msix; |
| 1580 | /* Max queues are bounded by available msix vectors */ |
| 1581 | /* queue 0 uses two msix vectors */ |
| 1582 | if (ql2xmultique_tag) { |
| 1583 | cpus = num_online_cpus(); |
| 1584 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1585 | (cpus + 1) : (ha->msix_count - 1); |
| 1586 | ha->max_req_queues = 2; |
| 1587 | } else if (ql2xmaxqueues > 1) { |
| 1588 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1589 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1590 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc008, |
| 1591 | "QoS mode set, max no of request queues:%d.\n", |
| 1592 | ha->max_req_queues); |
| 1593 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0019, |
| 1594 | "QoS mode set, max no of request queues:%d.\n", |
| 1595 | ha->max_req_queues); |
| 1596 | } |
| 1597 | ql_log_pci(ql_log_info, ha->pdev, 0x001a, |
| 1598 | "MSI-X vector count: %d.\n", msix); |
| 1599 | } else |
| 1600 | ql_log_pci(ql_log_info, ha->pdev, 0x001b, |
| 1601 | "BAR 3 not enabled.\n"); |
| 1602 | |
| 1603 | mqiobase_exit: |
| 1604 | ha->msix_count = ha->max_rsp_queues + 1; |
| 1605 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x001c, |
| 1606 | "MSIX Count:%d.\n", ha->msix_count); |
| 1607 | return (0); |
| 1608 | |
| 1609 | iospace_error_exit: |
| 1610 | return (-ENOMEM); |
| 1611 | } |
| 1612 | |
| 1613 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1614 | static int |
| 1615 | qla83xx_iospace_config(struct qla_hw_data *ha) |
| 1616 | { |
| 1617 | uint16_t msix; |
| 1618 | int cpus; |
| 1619 | |
| 1620 | if (pci_request_selected_regions(ha->pdev, ha->bars, |
| 1621 | QLA2XXX_DRIVER_NAME)) { |
| 1622 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0117, |
| 1623 | "Failed to reserve PIO/MMIO regions (%s), aborting.\n", |
| 1624 | pci_name(ha->pdev)); |
| 1625 | |
| 1626 | goto iospace_error_exit; |
| 1627 | } |
| 1628 | |
| 1629 | /* Use MMIO operations for all accesses. */ |
| 1630 | if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) { |
| 1631 | ql_log_pci(ql_log_warn, ha->pdev, 0x0118, |
| 1632 | "Invalid pci I/O region size (%s).\n", |
| 1633 | pci_name(ha->pdev)); |
| 1634 | goto iospace_error_exit; |
| 1635 | } |
| 1636 | if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) { |
| 1637 | ql_log_pci(ql_log_warn, ha->pdev, 0x0119, |
| 1638 | "Invalid PCI mem region size (%s), aborting\n", |
| 1639 | pci_name(ha->pdev)); |
| 1640 | goto iospace_error_exit; |
| 1641 | } |
| 1642 | |
| 1643 | ha->iobase = ioremap(pci_resource_start(ha->pdev, 0), MIN_IOBASE_LEN); |
| 1644 | if (!ha->iobase) { |
| 1645 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011a, |
| 1646 | "Cannot remap MMIO (%s), aborting.\n", |
| 1647 | pci_name(ha->pdev)); |
| 1648 | goto iospace_error_exit; |
| 1649 | } |
| 1650 | |
| 1651 | /* 64bit PCI BAR - BAR2 will correspoond to region 4 */ |
| 1652 | /* 83XX 26XX always use MQ type access for queues |
| 1653 | * - mbar 2, a.k.a region 4 */ |
| 1654 | ha->max_req_queues = ha->max_rsp_queues = 1; |
| 1655 | ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 4), |
| 1656 | pci_resource_len(ha->pdev, 4)); |
| 1657 | |
| 1658 | if (!ha->mqiobase) { |
| 1659 | ql_log_pci(ql_log_fatal, ha->pdev, 0x011d, |
| 1660 | "BAR2/region4 not enabled\n"); |
| 1661 | goto mqiobase_exit; |
| 1662 | } |
| 1663 | |
| 1664 | ha->msixbase = ioremap(pci_resource_start(ha->pdev, 2), |
| 1665 | pci_resource_len(ha->pdev, 2)); |
| 1666 | if (ha->msixbase) { |
| 1667 | /* Read MSIX vector size of the board */ |
| 1668 | pci_read_config_word(ha->pdev, |
| 1669 | QLA_83XX_PCI_MSIX_CONTROL, &msix); |
| 1670 | ha->msix_count = msix; |
| 1671 | /* Max queues are bounded by available msix vectors */ |
| 1672 | /* queue 0 uses two msix vectors */ |
| 1673 | if (ql2xmultique_tag) { |
| 1674 | cpus = num_online_cpus(); |
| 1675 | ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ? |
| 1676 | (cpus + 1) : (ha->msix_count - 1); |
| 1677 | ha->max_req_queues = 2; |
| 1678 | } else if (ql2xmaxqueues > 1) { |
| 1679 | ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ? |
| 1680 | QLA_MQ_SIZE : ql2xmaxqueues; |
| 1681 | ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc00c, |
| 1682 | "QoS mode set, max no of request queues:%d.\n", |
| 1683 | ha->max_req_queues); |
| 1684 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011b, |
| 1685 | "QoS mode set, max no of request queues:%d.\n", |
| 1686 | ha->max_req_queues); |
| 1687 | } |
| 1688 | ql_log_pci(ql_log_info, ha->pdev, 0x011c, |
| 1689 | "MSI-X vector count: %d.\n", msix); |
| 1690 | } else |
| 1691 | ql_log_pci(ql_log_info, ha->pdev, 0x011e, |
| 1692 | "BAR 1 not enabled.\n"); |
| 1693 | |
| 1694 | mqiobase_exit: |
| 1695 | ha->msix_count = ha->max_rsp_queues + 1; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 1696 | |
| 1697 | qlt_83xx_iospace_config(ha); |
| 1698 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1699 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x011f, |
| 1700 | "MSIX Count:%d.\n", ha->msix_count); |
| 1701 | return 0; |
| 1702 | |
| 1703 | iospace_error_exit: |
| 1704 | return -ENOMEM; |
| 1705 | } |
| 1706 | |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1707 | static struct isp_operations qla2100_isp_ops = { |
| 1708 | .pci_config = qla2100_pci_config, |
| 1709 | .reset_chip = qla2x00_reset_chip, |
| 1710 | .chip_diag = qla2x00_chip_diag, |
| 1711 | .config_rings = qla2x00_config_rings, |
| 1712 | .reset_adapter = qla2x00_reset_adapter, |
| 1713 | .nvram_config = qla2x00_nvram_config, |
| 1714 | .update_fw_options = qla2x00_update_fw_options, |
| 1715 | .load_risc = qla2x00_load_risc, |
| 1716 | .pci_info_str = qla2x00_pci_info_str, |
| 1717 | .fw_version_str = qla2x00_fw_version_str, |
| 1718 | .intr_handler = qla2100_intr_handler, |
| 1719 | .enable_intrs = qla2x00_enable_intrs, |
| 1720 | .disable_intrs = qla2x00_disable_intrs, |
| 1721 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1722 | .target_reset = qla2x00_abort_target, |
| 1723 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1724 | .fabric_login = qla2x00_login_fabric, |
| 1725 | .fabric_logout = qla2x00_fabric_logout, |
| 1726 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1727 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1728 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1729 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1730 | .read_nvram = qla2x00_read_nvram_data, |
| 1731 | .write_nvram = qla2x00_write_nvram_data, |
| 1732 | .fw_dump = qla2100_fw_dump, |
| 1733 | .beacon_on = NULL, |
| 1734 | .beacon_off = NULL, |
| 1735 | .beacon_blink = NULL, |
| 1736 | .read_optrom = qla2x00_read_optrom_data, |
| 1737 | .write_optrom = qla2x00_write_optrom_data, |
| 1738 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1739 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1740 | .abort_isp = qla2x00_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1741 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1742 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1743 | }; |
| 1744 | |
| 1745 | static struct isp_operations qla2300_isp_ops = { |
| 1746 | .pci_config = qla2300_pci_config, |
| 1747 | .reset_chip = qla2x00_reset_chip, |
| 1748 | .chip_diag = qla2x00_chip_diag, |
| 1749 | .config_rings = qla2x00_config_rings, |
| 1750 | .reset_adapter = qla2x00_reset_adapter, |
| 1751 | .nvram_config = qla2x00_nvram_config, |
| 1752 | .update_fw_options = qla2x00_update_fw_options, |
| 1753 | .load_risc = qla2x00_load_risc, |
| 1754 | .pci_info_str = qla2x00_pci_info_str, |
| 1755 | .fw_version_str = qla2x00_fw_version_str, |
| 1756 | .intr_handler = qla2300_intr_handler, |
| 1757 | .enable_intrs = qla2x00_enable_intrs, |
| 1758 | .disable_intrs = qla2x00_disable_intrs, |
| 1759 | .abort_command = qla2x00_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1760 | .target_reset = qla2x00_abort_target, |
| 1761 | .lun_reset = qla2x00_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1762 | .fabric_login = qla2x00_login_fabric, |
| 1763 | .fabric_logout = qla2x00_fabric_logout, |
| 1764 | .calc_req_entries = qla2x00_calc_iocbs_32, |
| 1765 | .build_iocbs = qla2x00_build_scsi_iocbs_32, |
| 1766 | .prep_ms_iocb = qla2x00_prep_ms_iocb, |
| 1767 | .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb, |
| 1768 | .read_nvram = qla2x00_read_nvram_data, |
| 1769 | .write_nvram = qla2x00_write_nvram_data, |
| 1770 | .fw_dump = qla2300_fw_dump, |
| 1771 | .beacon_on = qla2x00_beacon_on, |
| 1772 | .beacon_off = qla2x00_beacon_off, |
| 1773 | .beacon_blink = qla2x00_beacon_blink, |
| 1774 | .read_optrom = qla2x00_read_optrom_data, |
| 1775 | .write_optrom = qla2x00_write_optrom_data, |
| 1776 | .get_flash_version = qla2x00_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1777 | .start_scsi = qla2x00_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1778 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1779 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1780 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1781 | }; |
| 1782 | |
| 1783 | static struct isp_operations qla24xx_isp_ops = { |
| 1784 | .pci_config = qla24xx_pci_config, |
| 1785 | .reset_chip = qla24xx_reset_chip, |
| 1786 | .chip_diag = qla24xx_chip_diag, |
| 1787 | .config_rings = qla24xx_config_rings, |
| 1788 | .reset_adapter = qla24xx_reset_adapter, |
| 1789 | .nvram_config = qla24xx_nvram_config, |
| 1790 | .update_fw_options = qla24xx_update_fw_options, |
| 1791 | .load_risc = qla24xx_load_risc, |
| 1792 | .pci_info_str = qla24xx_pci_info_str, |
| 1793 | .fw_version_str = qla24xx_fw_version_str, |
| 1794 | .intr_handler = qla24xx_intr_handler, |
| 1795 | .enable_intrs = qla24xx_enable_intrs, |
| 1796 | .disable_intrs = qla24xx_disable_intrs, |
| 1797 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1798 | .target_reset = qla24xx_abort_target, |
| 1799 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1800 | .fabric_login = qla24xx_login_fabric, |
| 1801 | .fabric_logout = qla24xx_fabric_logout, |
| 1802 | .calc_req_entries = NULL, |
| 1803 | .build_iocbs = NULL, |
| 1804 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1805 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1806 | .read_nvram = qla24xx_read_nvram_data, |
| 1807 | .write_nvram = qla24xx_write_nvram_data, |
| 1808 | .fw_dump = qla24xx_fw_dump, |
| 1809 | .beacon_on = qla24xx_beacon_on, |
| 1810 | .beacon_off = qla24xx_beacon_off, |
| 1811 | .beacon_blink = qla24xx_beacon_blink, |
| 1812 | .read_optrom = qla24xx_read_optrom_data, |
| 1813 | .write_optrom = qla24xx_write_optrom_data, |
| 1814 | .get_flash_version = qla24xx_get_flash_version, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 1815 | .start_scsi = qla24xx_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1816 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1817 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1818 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 1819 | }; |
| 1820 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1821 | static struct isp_operations qla25xx_isp_ops = { |
| 1822 | .pci_config = qla25xx_pci_config, |
| 1823 | .reset_chip = qla24xx_reset_chip, |
| 1824 | .chip_diag = qla24xx_chip_diag, |
| 1825 | .config_rings = qla24xx_config_rings, |
| 1826 | .reset_adapter = qla24xx_reset_adapter, |
| 1827 | .nvram_config = qla24xx_nvram_config, |
| 1828 | .update_fw_options = qla24xx_update_fw_options, |
| 1829 | .load_risc = qla24xx_load_risc, |
| 1830 | .pci_info_str = qla24xx_pci_info_str, |
| 1831 | .fw_version_str = qla24xx_fw_version_str, |
| 1832 | .intr_handler = qla24xx_intr_handler, |
| 1833 | .enable_intrs = qla24xx_enable_intrs, |
| 1834 | .disable_intrs = qla24xx_disable_intrs, |
| 1835 | .abort_command = qla24xx_abort_command, |
Andrew Vasquez | 523ec77 | 2008-04-03 13:13:24 -0700 | [diff] [blame] | 1836 | .target_reset = qla24xx_abort_target, |
| 1837 | .lun_reset = qla24xx_lun_reset, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1838 | .fabric_login = qla24xx_login_fabric, |
| 1839 | .fabric_logout = qla24xx_fabric_logout, |
| 1840 | .calc_req_entries = NULL, |
| 1841 | .build_iocbs = NULL, |
| 1842 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1843 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1844 | .read_nvram = qla25xx_read_nvram_data, |
| 1845 | .write_nvram = qla25xx_write_nvram_data, |
| 1846 | .fw_dump = qla25xx_fw_dump, |
| 1847 | .beacon_on = qla24xx_beacon_on, |
| 1848 | .beacon_off = qla24xx_beacon_off, |
| 1849 | .beacon_blink = qla24xx_beacon_blink, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1850 | .read_optrom = qla25xx_read_optrom_data, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1851 | .write_optrom = qla24xx_write_optrom_data, |
| 1852 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1853 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1854 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1855 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1856 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1857 | }; |
| 1858 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1859 | static struct isp_operations qla81xx_isp_ops = { |
| 1860 | .pci_config = qla25xx_pci_config, |
| 1861 | .reset_chip = qla24xx_reset_chip, |
| 1862 | .chip_diag = qla24xx_chip_diag, |
| 1863 | .config_rings = qla24xx_config_rings, |
| 1864 | .reset_adapter = qla24xx_reset_adapter, |
| 1865 | .nvram_config = qla81xx_nvram_config, |
| 1866 | .update_fw_options = qla81xx_update_fw_options, |
Andrew Vasquez | eaac30b | 2009-01-22 09:45:32 -0800 | [diff] [blame] | 1867 | .load_risc = qla81xx_load_risc, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1868 | .pci_info_str = qla24xx_pci_info_str, |
| 1869 | .fw_version_str = qla24xx_fw_version_str, |
| 1870 | .intr_handler = qla24xx_intr_handler, |
| 1871 | .enable_intrs = qla24xx_enable_intrs, |
| 1872 | .disable_intrs = qla24xx_disable_intrs, |
| 1873 | .abort_command = qla24xx_abort_command, |
| 1874 | .target_reset = qla24xx_abort_target, |
| 1875 | .lun_reset = qla24xx_lun_reset, |
| 1876 | .fabric_login = qla24xx_login_fabric, |
| 1877 | .fabric_logout = qla24xx_fabric_logout, |
| 1878 | .calc_req_entries = NULL, |
| 1879 | .build_iocbs = NULL, |
| 1880 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1881 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 1882 | .read_nvram = NULL, |
| 1883 | .write_nvram = NULL, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1884 | .fw_dump = qla81xx_fw_dump, |
| 1885 | .beacon_on = qla24xx_beacon_on, |
| 1886 | .beacon_off = qla24xx_beacon_off, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1887 | .beacon_blink = qla83xx_beacon_blink, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1888 | .read_optrom = qla25xx_read_optrom_data, |
| 1889 | .write_optrom = qla24xx_write_optrom_data, |
| 1890 | .get_flash_version = qla24xx_get_flash_version, |
Arun Easi | ba77ef5 | 2010-05-28 15:08:27 -0700 | [diff] [blame] | 1891 | .start_scsi = qla24xx_dif_start_scsi, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1892 | .abort_isp = qla2x00_abort_isp, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1893 | .iospace_config = qla2x00_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1894 | .initialize_adapter = qla2x00_initialize_adapter, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1895 | }; |
| 1896 | |
| 1897 | static struct isp_operations qla82xx_isp_ops = { |
| 1898 | .pci_config = qla82xx_pci_config, |
| 1899 | .reset_chip = qla82xx_reset_chip, |
| 1900 | .chip_diag = qla24xx_chip_diag, |
| 1901 | .config_rings = qla82xx_config_rings, |
| 1902 | .reset_adapter = qla24xx_reset_adapter, |
| 1903 | .nvram_config = qla81xx_nvram_config, |
| 1904 | .update_fw_options = qla24xx_update_fw_options, |
| 1905 | .load_risc = qla82xx_load_risc, |
Atul Deshmukh | 9d55ca6 | 2012-08-22 14:21:14 -0400 | [diff] [blame] | 1906 | .pci_info_str = qla24xx_pci_info_str, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1907 | .fw_version_str = qla24xx_fw_version_str, |
| 1908 | .intr_handler = qla82xx_intr_handler, |
| 1909 | .enable_intrs = qla82xx_enable_intrs, |
| 1910 | .disable_intrs = qla82xx_disable_intrs, |
| 1911 | .abort_command = qla24xx_abort_command, |
| 1912 | .target_reset = qla24xx_abort_target, |
| 1913 | .lun_reset = qla24xx_lun_reset, |
| 1914 | .fabric_login = qla24xx_login_fabric, |
| 1915 | .fabric_logout = qla24xx_fabric_logout, |
| 1916 | .calc_req_entries = NULL, |
| 1917 | .build_iocbs = NULL, |
| 1918 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1919 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1920 | .read_nvram = qla24xx_read_nvram_data, |
| 1921 | .write_nvram = qla24xx_write_nvram_data, |
Chad Dupuis | a1b23c5 | 2014-02-26 04:15:12 -0500 | [diff] [blame] | 1922 | .fw_dump = qla82xx_fw_dump, |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 1923 | .beacon_on = qla82xx_beacon_on, |
| 1924 | .beacon_off = qla82xx_beacon_off, |
| 1925 | .beacon_blink = NULL, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1926 | .read_optrom = qla82xx_read_optrom_data, |
| 1927 | .write_optrom = qla82xx_write_optrom_data, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1928 | .get_flash_version = qla82xx_get_flash_version, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1929 | .start_scsi = qla82xx_start_scsi, |
| 1930 | .abort_isp = qla82xx_abort_isp, |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 1931 | .iospace_config = qla82xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 1932 | .initialize_adapter = qla2x00_initialize_adapter, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1933 | }; |
| 1934 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1935 | static struct isp_operations qla8044_isp_ops = { |
| 1936 | .pci_config = qla82xx_pci_config, |
| 1937 | .reset_chip = qla82xx_reset_chip, |
| 1938 | .chip_diag = qla24xx_chip_diag, |
| 1939 | .config_rings = qla82xx_config_rings, |
| 1940 | .reset_adapter = qla24xx_reset_adapter, |
| 1941 | .nvram_config = qla81xx_nvram_config, |
| 1942 | .update_fw_options = qla24xx_update_fw_options, |
| 1943 | .load_risc = qla82xx_load_risc, |
| 1944 | .pci_info_str = qla24xx_pci_info_str, |
| 1945 | .fw_version_str = qla24xx_fw_version_str, |
| 1946 | .intr_handler = qla8044_intr_handler, |
| 1947 | .enable_intrs = qla82xx_enable_intrs, |
| 1948 | .disable_intrs = qla82xx_disable_intrs, |
| 1949 | .abort_command = qla24xx_abort_command, |
| 1950 | .target_reset = qla24xx_abort_target, |
| 1951 | .lun_reset = qla24xx_lun_reset, |
| 1952 | .fabric_login = qla24xx_login_fabric, |
| 1953 | .fabric_logout = qla24xx_fabric_logout, |
| 1954 | .calc_req_entries = NULL, |
| 1955 | .build_iocbs = NULL, |
| 1956 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1957 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1958 | .read_nvram = NULL, |
| 1959 | .write_nvram = NULL, |
Chad Dupuis | a1b23c5 | 2014-02-26 04:15:12 -0500 | [diff] [blame] | 1960 | .fw_dump = qla8044_fw_dump, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1961 | .beacon_on = qla82xx_beacon_on, |
| 1962 | .beacon_off = qla82xx_beacon_off, |
| 1963 | .beacon_blink = NULL, |
Saurav Kashyap | 888e639 | 2014-02-26 04:15:13 -0500 | [diff] [blame] | 1964 | .read_optrom = qla8044_read_optrom_data, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1965 | .write_optrom = qla8044_write_optrom_data, |
| 1966 | .get_flash_version = qla82xx_get_flash_version, |
| 1967 | .start_scsi = qla82xx_start_scsi, |
| 1968 | .abort_isp = qla8044_abort_isp, |
| 1969 | .iospace_config = qla82xx_iospace_config, |
| 1970 | .initialize_adapter = qla2x00_initialize_adapter, |
| 1971 | }; |
| 1972 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1973 | static struct isp_operations qla83xx_isp_ops = { |
| 1974 | .pci_config = qla25xx_pci_config, |
| 1975 | .reset_chip = qla24xx_reset_chip, |
| 1976 | .chip_diag = qla24xx_chip_diag, |
| 1977 | .config_rings = qla24xx_config_rings, |
| 1978 | .reset_adapter = qla24xx_reset_adapter, |
| 1979 | .nvram_config = qla81xx_nvram_config, |
| 1980 | .update_fw_options = qla81xx_update_fw_options, |
| 1981 | .load_risc = qla81xx_load_risc, |
| 1982 | .pci_info_str = qla24xx_pci_info_str, |
| 1983 | .fw_version_str = qla24xx_fw_version_str, |
| 1984 | .intr_handler = qla24xx_intr_handler, |
| 1985 | .enable_intrs = qla24xx_enable_intrs, |
| 1986 | .disable_intrs = qla24xx_disable_intrs, |
| 1987 | .abort_command = qla24xx_abort_command, |
| 1988 | .target_reset = qla24xx_abort_target, |
| 1989 | .lun_reset = qla24xx_lun_reset, |
| 1990 | .fabric_login = qla24xx_login_fabric, |
| 1991 | .fabric_logout = qla24xx_fabric_logout, |
| 1992 | .calc_req_entries = NULL, |
| 1993 | .build_iocbs = NULL, |
| 1994 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 1995 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 1996 | .read_nvram = NULL, |
| 1997 | .write_nvram = NULL, |
| 1998 | .fw_dump = qla83xx_fw_dump, |
| 1999 | .beacon_on = qla24xx_beacon_on, |
| 2000 | .beacon_off = qla24xx_beacon_off, |
| 2001 | .beacon_blink = qla83xx_beacon_blink, |
| 2002 | .read_optrom = qla25xx_read_optrom_data, |
| 2003 | .write_optrom = qla24xx_write_optrom_data, |
| 2004 | .get_flash_version = qla24xx_get_flash_version, |
| 2005 | .start_scsi = qla24xx_dif_start_scsi, |
| 2006 | .abort_isp = qla2x00_abort_isp, |
| 2007 | .iospace_config = qla83xx_iospace_config, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2008 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2009 | }; |
| 2010 | |
| 2011 | static struct isp_operations qlafx00_isp_ops = { |
| 2012 | .pci_config = qlafx00_pci_config, |
| 2013 | .reset_chip = qlafx00_soft_reset, |
| 2014 | .chip_diag = qlafx00_chip_diag, |
| 2015 | .config_rings = qlafx00_config_rings, |
| 2016 | .reset_adapter = qlafx00_soft_reset, |
| 2017 | .nvram_config = NULL, |
| 2018 | .update_fw_options = NULL, |
| 2019 | .load_risc = NULL, |
| 2020 | .pci_info_str = qlafx00_pci_info_str, |
| 2021 | .fw_version_str = qlafx00_fw_version_str, |
| 2022 | .intr_handler = qlafx00_intr_handler, |
| 2023 | .enable_intrs = qlafx00_enable_intrs, |
| 2024 | .disable_intrs = qlafx00_disable_intrs, |
Armen Baloyan | 4440e46 | 2014-02-26 04:15:18 -0500 | [diff] [blame] | 2025 | .abort_command = qla24xx_async_abort_command, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2026 | .target_reset = qlafx00_abort_target, |
| 2027 | .lun_reset = qlafx00_lun_reset, |
| 2028 | .fabric_login = NULL, |
| 2029 | .fabric_logout = NULL, |
| 2030 | .calc_req_entries = NULL, |
| 2031 | .build_iocbs = NULL, |
| 2032 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2033 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2034 | .read_nvram = qla24xx_read_nvram_data, |
| 2035 | .write_nvram = qla24xx_write_nvram_data, |
| 2036 | .fw_dump = NULL, |
| 2037 | .beacon_on = qla24xx_beacon_on, |
| 2038 | .beacon_off = qla24xx_beacon_off, |
| 2039 | .beacon_blink = NULL, |
| 2040 | .read_optrom = qla24xx_read_optrom_data, |
| 2041 | .write_optrom = qla24xx_write_optrom_data, |
| 2042 | .get_flash_version = qla24xx_get_flash_version, |
| 2043 | .start_scsi = qlafx00_start_scsi, |
| 2044 | .abort_isp = qlafx00_abort_isp, |
| 2045 | .iospace_config = qlafx00_iospace_config, |
| 2046 | .initialize_adapter = qlafx00_initialize_adapter, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2047 | }; |
| 2048 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2049 | static struct isp_operations qla27xx_isp_ops = { |
| 2050 | .pci_config = qla25xx_pci_config, |
| 2051 | .reset_chip = qla24xx_reset_chip, |
| 2052 | .chip_diag = qla24xx_chip_diag, |
| 2053 | .config_rings = qla24xx_config_rings, |
| 2054 | .reset_adapter = qla24xx_reset_adapter, |
| 2055 | .nvram_config = qla81xx_nvram_config, |
| 2056 | .update_fw_options = qla81xx_update_fw_options, |
| 2057 | .load_risc = qla81xx_load_risc, |
| 2058 | .pci_info_str = qla24xx_pci_info_str, |
| 2059 | .fw_version_str = qla24xx_fw_version_str, |
| 2060 | .intr_handler = qla24xx_intr_handler, |
| 2061 | .enable_intrs = qla24xx_enable_intrs, |
| 2062 | .disable_intrs = qla24xx_disable_intrs, |
| 2063 | .abort_command = qla24xx_abort_command, |
| 2064 | .target_reset = qla24xx_abort_target, |
| 2065 | .lun_reset = qla24xx_lun_reset, |
| 2066 | .fabric_login = qla24xx_login_fabric, |
| 2067 | .fabric_logout = qla24xx_fabric_logout, |
| 2068 | .calc_req_entries = NULL, |
| 2069 | .build_iocbs = NULL, |
| 2070 | .prep_ms_iocb = qla24xx_prep_ms_iocb, |
| 2071 | .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb, |
| 2072 | .read_nvram = NULL, |
| 2073 | .write_nvram = NULL, |
| 2074 | .fw_dump = qla27xx_fwdump, |
| 2075 | .beacon_on = qla24xx_beacon_on, |
| 2076 | .beacon_off = qla24xx_beacon_off, |
| 2077 | .beacon_blink = qla83xx_beacon_blink, |
| 2078 | .read_optrom = qla25xx_read_optrom_data, |
| 2079 | .write_optrom = qla24xx_write_optrom_data, |
| 2080 | .get_flash_version = qla24xx_get_flash_version, |
| 2081 | .start_scsi = qla24xx_dif_start_scsi, |
| 2082 | .abort_isp = qla2x00_abort_isp, |
| 2083 | .iospace_config = qla83xx_iospace_config, |
| 2084 | .initialize_adapter = qla2x00_initialize_adapter, |
| 2085 | }; |
| 2086 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2087 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2088 | qla2x00_set_isp_flags(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2089 | { |
| 2090 | ha->device_type = DT_EXTENDED_IDS; |
| 2091 | switch (ha->pdev->device) { |
| 2092 | case PCI_DEVICE_ID_QLOGIC_ISP2100: |
| 2093 | ha->device_type |= DT_ISP2100; |
| 2094 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2095 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2096 | break; |
| 2097 | case PCI_DEVICE_ID_QLOGIC_ISP2200: |
| 2098 | ha->device_type |= DT_ISP2200; |
| 2099 | ha->device_type &= ~DT_EXTENDED_IDS; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2100 | ha->fw_srisc_address = RISC_START_ADDRESS_2100; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2101 | break; |
| 2102 | case PCI_DEVICE_ID_QLOGIC_ISP2300: |
| 2103 | ha->device_type |= DT_ISP2300; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2104 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2105 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2106 | break; |
| 2107 | case PCI_DEVICE_ID_QLOGIC_ISP2312: |
| 2108 | ha->device_type |= DT_ISP2312; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2109 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2110 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2111 | break; |
| 2112 | case PCI_DEVICE_ID_QLOGIC_ISP2322: |
| 2113 | ha->device_type |= DT_ISP2322; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2114 | ha->device_type |= DT_ZIO_SUPPORTED; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2115 | if (ha->pdev->subsystem_vendor == 0x1028 && |
| 2116 | ha->pdev->subsystem_device == 0x0170) |
| 2117 | ha->device_type |= DT_OEM_001; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2118 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2119 | break; |
| 2120 | case PCI_DEVICE_ID_QLOGIC_ISP6312: |
| 2121 | ha->device_type |= DT_ISP6312; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2122 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2123 | break; |
| 2124 | case PCI_DEVICE_ID_QLOGIC_ISP6322: |
| 2125 | ha->device_type |= DT_ISP6322; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2126 | ha->fw_srisc_address = RISC_START_ADDRESS_2300; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2127 | break; |
| 2128 | case PCI_DEVICE_ID_QLOGIC_ISP2422: |
| 2129 | ha->device_type |= DT_ISP2422; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2130 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2131 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2132 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2133 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2134 | break; |
| 2135 | case PCI_DEVICE_ID_QLOGIC_ISP2432: |
| 2136 | ha->device_type |= DT_ISP2432; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 2137 | ha->device_type |= DT_ZIO_SUPPORTED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2138 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | c76f2c0 | 2007-07-19 15:05:57 -0700 | [diff] [blame] | 2139 | ha->device_type |= DT_IIDMA; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2140 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2141 | break; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2142 | case PCI_DEVICE_ID_QLOGIC_ISP8432: |
| 2143 | ha->device_type |= DT_ISP8432; |
| 2144 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2145 | ha->device_type |= DT_FWI2; |
| 2146 | ha->device_type |= DT_IIDMA; |
| 2147 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2148 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2149 | case PCI_DEVICE_ID_QLOGIC_ISP5422: |
| 2150 | ha->device_type |= DT_ISP5422; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2151 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2152 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2153 | break; |
andrew.vasquez@qlogic.com | 044cc6c | 2006-03-09 14:27:13 -0800 | [diff] [blame] | 2154 | case PCI_DEVICE_ID_QLOGIC_ISP5432: |
| 2155 | ha->device_type |= DT_ISP5432; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 2156 | ha->device_type |= DT_FWI2; |
Andrew Vasquez | 441d107 | 2006-05-17 15:09:34 -0700 | [diff] [blame] | 2157 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2158 | break; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2159 | case PCI_DEVICE_ID_QLOGIC_ISP2532: |
| 2160 | ha->device_type |= DT_ISP2532; |
| 2161 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2162 | ha->device_type |= DT_FWI2; |
| 2163 | ha->device_type |= DT_IIDMA; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2164 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2165 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2166 | case PCI_DEVICE_ID_QLOGIC_ISP8001: |
| 2167 | ha->device_type |= DT_ISP8001; |
| 2168 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2169 | ha->device_type |= DT_FWI2; |
| 2170 | ha->device_type |= DT_IIDMA; |
| 2171 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2172 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2173 | case PCI_DEVICE_ID_QLOGIC_ISP8021: |
| 2174 | ha->device_type |= DT_ISP8021; |
| 2175 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2176 | ha->device_type |= DT_FWI2; |
| 2177 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2178 | /* Initialize 82XX ISP flags */ |
| 2179 | qla82xx_init_flags(ha); |
| 2180 | break; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2181 | case PCI_DEVICE_ID_QLOGIC_ISP8044: |
| 2182 | ha->device_type |= DT_ISP8044; |
| 2183 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2184 | ha->device_type |= DT_FWI2; |
| 2185 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2186 | /* Initialize 82XX ISP flags */ |
| 2187 | qla82xx_init_flags(ha); |
| 2188 | break; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2189 | case PCI_DEVICE_ID_QLOGIC_ISP2031: |
| 2190 | ha->device_type |= DT_ISP2031; |
| 2191 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2192 | ha->device_type |= DT_FWI2; |
| 2193 | ha->device_type |= DT_IIDMA; |
| 2194 | ha->device_type |= DT_T10_PI; |
| 2195 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2196 | break; |
| 2197 | case PCI_DEVICE_ID_QLOGIC_ISP8031: |
| 2198 | ha->device_type |= DT_ISP8031; |
| 2199 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2200 | ha->device_type |= DT_FWI2; |
| 2201 | ha->device_type |= DT_IIDMA; |
| 2202 | ha->device_type |= DT_T10_PI; |
| 2203 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2204 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2205 | case PCI_DEVICE_ID_QLOGIC_ISPF001: |
| 2206 | ha->device_type |= DT_ISPFX00; |
| 2207 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2208 | case PCI_DEVICE_ID_QLOGIC_ISP2071: |
| 2209 | ha->device_type |= DT_ISP2071; |
| 2210 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2211 | ha->device_type |= DT_FWI2; |
| 2212 | ha->device_type |= DT_IIDMA; |
| 2213 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2214 | break; |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 2215 | case PCI_DEVICE_ID_QLOGIC_ISP2271: |
| 2216 | ha->device_type |= DT_ISP2271; |
| 2217 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2218 | ha->device_type |= DT_FWI2; |
| 2219 | ha->device_type |= DT_IIDMA; |
| 2220 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2221 | break; |
Sawan Chandak | 2b48992 | 2015-08-04 13:38:03 -0400 | [diff] [blame] | 2222 | case PCI_DEVICE_ID_QLOGIC_ISP2261: |
| 2223 | ha->device_type |= DT_ISP2261; |
| 2224 | ha->device_type |= DT_ZIO_SUPPORTED; |
| 2225 | ha->device_type |= DT_FWI2; |
| 2226 | ha->device_type |= DT_IIDMA; |
| 2227 | ha->fw_srisc_address = RISC_START_ADDRESS_2400; |
| 2228 | break; |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2229 | } |
Anirban Chakraborty | e5b68a6 | 2009-04-06 22:33:50 -0700 | [diff] [blame] | 2230 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2231 | if (IS_QLA82XX(ha)) |
Saurav Kashyap | 43a9c38 | 2014-02-26 04:15:16 -0500 | [diff] [blame] | 2232 | ha->port_no = ha->portnum & 1; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2233 | else { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2234 | /* Get adapter physical port no from interrupt pin register. */ |
| 2235 | pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no); |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2236 | if (IS_QLA27XX(ha)) |
| 2237 | ha->port_no--; |
| 2238 | else |
| 2239 | ha->port_no = !(ha->port_no & 1); |
| 2240 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2241 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2242 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x000b, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 2243 | "device_type=0x%x port=%d fw_srisc_address=0x%x.\n", |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2244 | ha->device_type, ha->port_no, ha->fw_srisc_address); |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2245 | } |
| 2246 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2247 | static void |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2248 | qla2xxx_scan_start(struct Scsi_Host *shost) |
| 2249 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2250 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2251 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2252 | if (vha->hw->flags.running_gold_fw) |
| 2253 | return; |
| 2254 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2255 | set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); |
| 2256 | set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); |
| 2257 | set_bit(RSCN_UPDATE, &vha->dpc_flags); |
| 2258 | set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2259 | } |
| 2260 | |
| 2261 | static int |
| 2262 | qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time) |
| 2263 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2264 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2265 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2266 | if (!vha->host) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2267 | return 1; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2268 | if (time > vha->hw->loop_reset_delay * HZ) |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2269 | return 1; |
| 2270 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2271 | return atomic_read(&vha->loop_state) == LOOP_READY; |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2272 | } |
| 2273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | /* |
| 2275 | * PCI driver interface |
| 2276 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 2277 | static int |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 2278 | 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] | 2279 | { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2280 | int ret = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | struct Scsi_Host *host; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2282 | scsi_qla_host_t *base_vha = NULL; |
| 2283 | struct qla_hw_data *ha; |
Andrew Vasquez | 29856e2 | 2007-08-12 18:22:52 -0700 | [diff] [blame] | 2284 | char pci_info[30]; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2285 | char fw_str[30], wq_name[30]; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 2286 | struct scsi_host_template *sht; |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2287 | int bars, mem_only = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2288 | uint16_t req_length = 0, rsp_length = 0; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2289 | struct req_que *req = NULL; |
| 2290 | struct rsp_que *rsp = NULL; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2291 | bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO); |
Giridhar Malavali | a5326f8 | 2009-03-24 09:07:56 -0700 | [diff] [blame] | 2292 | sht = &qla2xxx_driver_template; |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2293 | if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 || |
| 2294 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 || |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2295 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 || |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2296 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 || |
| 2297 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 || |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2298 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2299 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 || |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2300 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021 || |
| 2301 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2031 || |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2302 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8031 || |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2303 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISPF001 || |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2304 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8044 || |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 2305 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2071 || |
Sawan Chandak | 2b48992 | 2015-08-04 13:38:03 -0400 | [diff] [blame] | 2306 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2271 || |
| 2307 | pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2261) { |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2308 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2309 | mem_only = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2310 | ql_dbg_pci(ql_dbg_init, pdev, 0x0007, |
| 2311 | "Mem only adapter.\n"); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2312 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2313 | ql_dbg_pci(ql_dbg_init, pdev, 0x0008, |
| 2314 | "Bars=%d.\n", bars); |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2315 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2316 | if (mem_only) { |
| 2317 | if (pci_enable_device_mem(pdev)) |
| 2318 | goto probe_out; |
| 2319 | } else { |
| 2320 | if (pci_enable_device(pdev)) |
| 2321 | goto probe_out; |
| 2322 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | |
Jesse Barnes | 0927678 | 2008-10-18 17:33:19 -0700 | [diff] [blame] | 2324 | /* This may fail but that's ok */ |
| 2325 | pci_enable_pcie_error_reporting(pdev); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 2326 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2327 | ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL); |
| 2328 | if (!ha) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2329 | ql_log_pci(ql_log_fatal, pdev, 0x0009, |
| 2330 | "Unable to allocate memory for ha.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2331 | goto probe_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2333 | ql_dbg_pci(ql_dbg_init, pdev, 0x000a, |
| 2334 | "Memory allocated for ha=%p.\n", ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2335 | ha->pdev = pdev; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2336 | ha->tgt.enable_class_2 = ql2xenableclass2; |
Quinn Tran | 33e7997 | 2014-09-25 06:14:55 -0400 | [diff] [blame] | 2337 | INIT_LIST_HEAD(&ha->tgt.q_full_list); |
| 2338 | spin_lock_init(&ha->tgt.q_full_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | |
| 2340 | /* Clear our data area */ |
Andrew Vasquez | 285d032 | 2007-10-19 15:59:17 -0700 | [diff] [blame] | 2341 | ha->bars = bars; |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 2342 | ha->mem_only = mem_only; |
Andrew Vasquez | df4bf0b | 2008-01-31 12:33:46 -0800 | [diff] [blame] | 2343 | spin_lock_init(&ha->hardware_lock); |
Andrew Vasquez | 339aa70 | 2010-10-15 11:27:45 -0700 | [diff] [blame] | 2344 | spin_lock_init(&ha->vport_slock); |
Saurav Kashyap | a9b6f72 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 2345 | mutex_init(&ha->selflogin_lock); |
Chad Dupuis | 7a8ab9c | 2014-02-26 04:14:56 -0500 | [diff] [blame] | 2346 | mutex_init(&ha->optrom_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | |
andrew.vasquez@qlogic.com | ea5b638 | 2006-03-09 14:27:08 -0800 | [diff] [blame] | 2348 | /* Set ISP-type information. */ |
| 2349 | qla2x00_set_isp_flags(ha); |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2350 | |
| 2351 | /* Set EEH reset type to fundamental if required by hba */ |
Joe Carnuccio | 9567611 | 2012-08-22 14:21:20 -0400 | [diff] [blame] | 2352 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) || |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2353 | IS_QLA83XX(ha) || IS_QLA27XX(ha)) |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2354 | pdev->needs_freset = 1; |
Duane Grigsby | ca79cf6 | 2009-12-15 21:29:47 -0800 | [diff] [blame] | 2355 | |
Chad Dupuis | cba1e47 | 2011-11-18 09:03:21 -0800 | [diff] [blame] | 2356 | ha->prev_topology = 0; |
| 2357 | ha->init_cb_size = sizeof(init_cb_t); |
| 2358 | ha->link_data_rate = PORT_SPEED_UNKNOWN; |
| 2359 | ha->optrom_size = OPTROM_SIZE_2300; |
| 2360 | |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2361 | /* Assign ISP specific operations. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | if (IS_QLA2100(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2363 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2100; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2365 | req_length = REQUEST_ENTRY_CNT_2100; |
| 2366 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2367 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2368 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2369 | ha->flash_conf_off = ~0; |
| 2370 | ha->flash_data_off = ~0; |
| 2371 | ha->nvram_conf_off = ~0; |
| 2372 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2373 | ha->isp_ops = &qla2100_isp_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | } else if (IS_QLA2200(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2375 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Andrew Vasquez | 67ddda3 | 2012-02-09 11:14:08 -0800 | [diff] [blame] | 2376 | ha->mbx_count = MAILBOX_REGISTER_COUNT_2200; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2377 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2378 | rsp_length = RESPONSE_ENTRY_CNT_2100; |
| 2379 | ha->max_loop_id = SNS_LAST_LOOP_ID_2100; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2380 | ha->gid_list_info_size = 4; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2381 | ha->flash_conf_off = ~0; |
| 2382 | ha->flash_data_off = ~0; |
| 2383 | ha->nvram_conf_off = ~0; |
| 2384 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2385 | ha->isp_ops = &qla2100_isp_ops; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2386 | } else if (IS_QLA23XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2387 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2389 | req_length = REQUEST_ENTRY_CNT_2200; |
| 2390 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
| 2391 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | abbd887 | 2005-07-06 10:30:05 -0700 | [diff] [blame] | 2392 | ha->gid_list_info_size = 6; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2393 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) |
| 2394 | ha->optrom_size = OPTROM_SIZE_2322; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2395 | ha->flash_conf_off = ~0; |
| 2396 | ha->flash_data_off = ~0; |
| 2397 | ha->nvram_conf_off = ~0; |
| 2398 | ha->nvram_data_off = ~0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2399 | ha->isp_ops = &qla2300_isp_ops; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2400 | } else if (IS_QLA24XX_TYPE(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2401 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2402 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2403 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2404 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2405 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2406 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2407 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 2408 | ha->gid_list_info_size = 8; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2409 | ha->optrom_size = OPTROM_SIZE_24XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2410 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2411 | ha->isp_ops = &qla24xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2412 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2413 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2414 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2415 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2416 | } else if (IS_QLA25XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2417 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2418 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2419 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2420 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2421 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2422 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2423 | ha->init_cb_size = sizeof(struct mid_init_cb_24xx); |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2424 | ha->gid_list_info_size = 8; |
| 2425 | ha->optrom_size = OPTROM_SIZE_25XX; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2426 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 2427 | ha->isp_ops = &qla25xx_isp_ops; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2428 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2429 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2430 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2431 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
| 2432 | } else if (IS_QLA81XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2433 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2434 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2435 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2436 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | aa230bc | 2013-01-30 03:34:39 -0500 | [diff] [blame] | 2437 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2438 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2439 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2440 | ha->gid_list_info_size = 8; |
| 2441 | ha->optrom_size = OPTROM_SIZE_81XX; |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 2442 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2443 | ha->isp_ops = &qla81xx_isp_ops; |
| 2444 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2445 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2446 | ha->nvram_conf_off = ~0; |
| 2447 | ha->nvram_data_off = ~0; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2448 | } else if (IS_QLA82XX(ha)) { |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2449 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2450 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2451 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2452 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2453 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2454 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2455 | ha->gid_list_info_size = 8; |
| 2456 | ha->optrom_size = OPTROM_SIZE_82XX; |
Andrew Vasquez | 087c621 | 2010-11-23 16:52:48 -0800 | [diff] [blame] | 2457 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2458 | ha->isp_ops = &qla82xx_isp_ops; |
| 2459 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2460 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2461 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2462 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2463 | } else if (IS_QLA8044(ha)) { |
| 2464 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
| 2465 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2466 | req_length = REQUEST_ENTRY_CNT_82XX; |
| 2467 | rsp_length = RESPONSE_ENTRY_CNT_82XX; |
| 2468 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2469 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2470 | ha->gid_list_info_size = 8; |
| 2471 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2472 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2473 | ha->isp_ops = &qla8044_isp_ops; |
| 2474 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF; |
| 2475 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA; |
| 2476 | ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF; |
| 2477 | ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2478 | } else if (IS_QLA83XX(ha)) { |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2479 | ha->portnum = PCI_FUNC(ha->pdev->devfn); |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2480 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2481 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
Saurav Kashyap | f2ea653 | 2014-09-25 06:14:54 -0400 | [diff] [blame] | 2482 | req_length = REQUEST_ENTRY_CNT_83XX; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2483 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Arun Easi | b8aa4bd | 2013-01-30 03:34:40 -0500 | [diff] [blame] | 2484 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2485 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2486 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2487 | ha->gid_list_info_size = 8; |
| 2488 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2489 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2490 | ha->isp_ops = &qla83xx_isp_ops; |
| 2491 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2492 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2493 | ha->nvram_conf_off = ~0; |
| 2494 | ha->nvram_data_off = ~0; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2495 | } else if (IS_QLAFX00(ha)) { |
| 2496 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_FX00; |
| 2497 | ha->mbx_count = MAILBOX_REGISTER_COUNT_FX00; |
| 2498 | ha->aen_mbx_count = AEN_MAILBOX_REGISTER_COUNT_FX00; |
| 2499 | req_length = REQUEST_ENTRY_CNT_FX00; |
| 2500 | rsp_length = RESPONSE_ENTRY_CNT_FX00; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2501 | ha->isp_ops = &qlafx00_isp_ops; |
| 2502 | ha->port_down_retry_count = 30; /* default value */ |
| 2503 | ha->mr.fw_hbt_cnt = QLAFX00_HEARTBEAT_INTERVAL; |
| 2504 | ha->mr.fw_reset_timer_tick = QLAFX00_RESET_INTERVAL; |
Armen Baloyan | 71e5600 | 2013-08-27 01:37:38 -0400 | [diff] [blame] | 2505 | ha->mr.fw_critemp_timer_tick = QLAFX00_CRITEMP_INTERVAL; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2506 | ha->mr.fw_hbt_en = 1; |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 2507 | ha->mr.host_info_resend = false; |
| 2508 | ha->mr.hinfo_resend_timer_tick = QLAFX00_HINFO_RESEND_INTERVAL; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2509 | } else if (IS_QLA27XX(ha)) { |
| 2510 | ha->portnum = PCI_FUNC(ha->pdev->devfn); |
| 2511 | ha->max_fibre_devices = MAX_FIBRE_DEVICES_2400; |
| 2512 | ha->mbx_count = MAILBOX_REGISTER_COUNT; |
| 2513 | req_length = REQUEST_ENTRY_CNT_24XX; |
| 2514 | rsp_length = RESPONSE_ENTRY_CNT_2300; |
Himanshu Madhani | b20f02e | 2015-06-10 11:05:18 -0400 | [diff] [blame] | 2515 | ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2516 | ha->max_loop_id = SNS_LAST_LOOP_ID_2300; |
| 2517 | ha->init_cb_size = sizeof(struct mid_init_cb_81xx); |
| 2518 | ha->gid_list_info_size = 8; |
| 2519 | ha->optrom_size = OPTROM_SIZE_83XX; |
| 2520 | ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX; |
| 2521 | ha->isp_ops = &qla27xx_isp_ops; |
| 2522 | ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX; |
| 2523 | ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX; |
| 2524 | ha->nvram_conf_off = ~0; |
| 2525 | ha->nvram_data_off = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | } |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2527 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2528 | ql_dbg_pci(ql_dbg_init, pdev, 0x001e, |
| 2529 | "mbx_count=%d, req_length=%d, " |
| 2530 | "rsp_length=%d, max_loop_id=%d, init_cb_size=%d, " |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2531 | "gid_list_info_size=%d, optrom_size=%d, nvram_npiv_size=%d, " |
| 2532 | "max_fibre_devices=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2533 | ha->mbx_count, req_length, rsp_length, ha->max_loop_id, |
| 2534 | ha->init_cb_size, ha->gid_list_info_size, ha->optrom_size, |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2535 | ha->nvram_npiv_size, ha->max_fibre_devices); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2536 | ql_dbg_pci(ql_dbg_init, pdev, 0x001f, |
| 2537 | "isp_ops=%p, flash_conf_off=%d, " |
| 2538 | "flash_data_off=%d, nvram_conf_off=%d, nvram_data_off=%d.\n", |
| 2539 | ha->isp_ops, ha->flash_conf_off, ha->flash_data_off, |
| 2540 | ha->nvram_conf_off, ha->nvram_data_off); |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2541 | |
| 2542 | /* Configure PCI I/O space */ |
| 2543 | ret = ha->isp_ops->iospace_config(ha); |
| 2544 | if (ret) |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2545 | goto iospace_config_failed; |
Giridhar Malavali | 706f457 | 2011-11-18 09:03:16 -0800 | [diff] [blame] | 2546 | |
| 2547 | ql_log_pci(ql_log_info, pdev, 0x001d, |
| 2548 | "Found an ISP%04X irq %d iobase 0x%p.\n", |
| 2549 | pdev->device, pdev->irq, ha->iobase); |
matthias@kaehlcke.net | 6c2f527 | 2008-05-12 22:21:11 -0700 | [diff] [blame] | 2550 | mutex_init(&ha->vport_lock); |
Marcus Barrow | 0b05a1f | 2008-01-17 09:02:13 -0800 | [diff] [blame] | 2551 | init_completion(&ha->mbx_cmd_comp); |
| 2552 | complete(&ha->mbx_cmd_comp); |
| 2553 | init_completion(&ha->mbx_intr_comp); |
Sarang Radke | 23f2ebd | 2010-05-28 15:08:21 -0700 | [diff] [blame] | 2554 | init_completion(&ha->dcbx_comp); |
Chad Dupuis | f356bef | 2013-02-08 01:58:04 -0500 | [diff] [blame] | 2555 | init_completion(&ha->lb_portup_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 2557 | set_bit(0, (unsigned long *) ha->vp_idx_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
Andrew Vasquez | 53303c4 | 2009-01-22 09:45:37 -0800 | [diff] [blame] | 2559 | qla2x00_config_dma_addressing(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2560 | ql_dbg_pci(ql_dbg_init, pdev, 0x0020, |
| 2561 | "64 Bit addressing is %s.\n", |
| 2562 | ha->flags.enable_64bit_addressing ? "enable" : |
| 2563 | "disable"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2564 | ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp); |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 2565 | if (ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2566 | ql_log_pci(ql_log_fatal, pdev, 0x0031, |
| 2567 | "Failed to allocate memory for adapter, aborting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2569 | goto probe_hw_failed; |
| 2570 | } |
| 2571 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2572 | req->max_q_depth = MAX_Q_DEPTH; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2573 | if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU) |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2574 | req->max_q_depth = ql2xmaxqdepth; |
| 2575 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2576 | |
| 2577 | base_vha = qla2x00_create_host(sht, ha); |
| 2578 | if (!base_vha) { |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2579 | ret = -ENOMEM; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2580 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2581 | qla2x00_free_req_que(ha, req); |
| 2582 | qla2x00_free_rsp_que(ha, rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2583 | goto probe_hw_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | } |
| 2585 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2586 | pci_set_drvdata(pdev, base_vha); |
Joe Lawrence | 6b38397 | 2014-08-26 17:12:29 -0400 | [diff] [blame] | 2587 | set_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2589 | host = base_vha->host; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2590 | base_vha->req = req; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2591 | if (IS_QLA2XXX_MIDTYPE(ha)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2592 | base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2593 | else |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2594 | base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER + |
| 2595 | base_vha->vp_idx; |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2596 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2597 | /* Setup fcport template structure. */ |
| 2598 | ha->mr.fcport.vha = base_vha; |
| 2599 | ha->mr.fcport.port_type = FCT_UNKNOWN; |
| 2600 | ha->mr.fcport.loop_id = FC_NO_LOOP_ID; |
| 2601 | qla2x00_set_fcport_state(&ha->mr.fcport, FCS_UNCONFIGURED); |
| 2602 | ha->mr.fcport.supported_classes = FC_COS_UNSPECIFIED; |
| 2603 | ha->mr.fcport.scan_state = 1; |
| 2604 | |
Giridhar Malavali | 58548cb | 2010-09-03 15:20:56 -0700 | [diff] [blame] | 2605 | /* Set the SG table size based on ISP type */ |
| 2606 | if (!IS_FWI2_CAPABLE(ha)) { |
| 2607 | if (IS_QLA2100(ha)) |
| 2608 | host->sg_tablesize = 32; |
| 2609 | } else { |
| 2610 | if (!IS_QLA82XX(ha)) |
| 2611 | host->sg_tablesize = QLA_SG_ALL; |
| 2612 | } |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 2613 | host->max_id = ha->max_fibre_devices; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2614 | host->cmd_per_lun = 3; |
Seokmann Ju | 711c1d9 | 2008-07-10 16:55:51 -0700 | [diff] [blame] | 2615 | host->unique_id = host->host_no; |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2616 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2617 | host->max_cmd_len = 32; |
| 2618 | else |
| 2619 | host->max_cmd_len = MAX_CMDSZ; |
Andrew Vasquez | 75bc419 | 2006-05-17 15:09:22 -0700 | [diff] [blame] | 2620 | host->max_channel = MAX_BUSES - 1; |
Hannes Reinecke | 755f516 | 2014-06-03 10:58:54 +0200 | [diff] [blame] | 2621 | /* Older HBAs support only 16-bit LUNs */ |
| 2622 | if (!IS_QLAFX00(ha) && !IS_FWI2_CAPABLE(ha) && |
| 2623 | ql2xmaxlun > 0xffff) |
| 2624 | host->max_lun = 0xffff; |
| 2625 | else |
| 2626 | host->max_lun = ql2xmaxlun; |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2627 | host->transportt = qla2xxx_transport_template; |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 2628 | sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2629 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2630 | ql_dbg(ql_dbg_init, base_vha, 0x0033, |
| 2631 | "max_id=%d this_id=%d " |
| 2632 | "cmd_per_len=%d unique_id=%d max_cmd_len=%d max_channel=%d " |
Hannes Reinecke | 1abf635 | 2014-06-25 15:27:38 +0200 | [diff] [blame] | 2633 | "max_lun=%llu transportt=%p, vendor_id=%llu.\n", host->max_id, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2634 | host->this_id, host->cmd_per_lun, host->unique_id, |
| 2635 | host->max_cmd_len, host->max_channel, host->max_lun, |
| 2636 | host->transportt, sht->vendor_id); |
| 2637 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2638 | que_init: |
| 2639 | /* Alloc arrays of request and response ring ptrs */ |
| 2640 | if (!qla2x00_alloc_queues(ha, req, rsp)) { |
| 2641 | ql_log(ql_log_fatal, base_vha, 0x003d, |
| 2642 | "Failed to allocate memory for queue pointers..." |
| 2643 | "aborting.\n"); |
| 2644 | goto probe_init_failed; |
| 2645 | } |
| 2646 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2647 | qlt_probe_one_stage1(base_vha, ha); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2648 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 2649 | /* Set up the irqs */ |
| 2650 | ret = qla2x00_request_irqs(ha, rsp); |
| 2651 | if (ret) |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2652 | goto probe_init_failed; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 2653 | |
| 2654 | pci_save_state(pdev); |
| 2655 | |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2656 | /* Assign back pointers */ |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2657 | rsp->req = req; |
| 2658 | req->rsp = rsp; |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2659 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2660 | if (IS_QLAFX00(ha)) { |
| 2661 | ha->rsp_q_map[0] = rsp; |
| 2662 | ha->req_q_map[0] = req; |
| 2663 | set_bit(0, ha->req_qid_map); |
| 2664 | set_bit(0, ha->rsp_qid_map); |
| 2665 | } |
| 2666 | |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2667 | /* FWI2-capable only. */ |
| 2668 | req->req_q_in = &ha->iobase->isp24.req_q_in; |
| 2669 | req->req_q_out = &ha->iobase->isp24.req_q_out; |
| 2670 | rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in; |
| 2671 | rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2672 | if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha)) { |
Andrew Vasquez | 0802999 | 2009-03-24 09:07:55 -0700 | [diff] [blame] | 2673 | req->req_q_in = &ha->mqiobase->isp25mq.req_q_in; |
| 2674 | req->req_q_out = &ha->mqiobase->isp25mq.req_q_out; |
| 2675 | rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in; |
| 2676 | rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out; |
Anirban Chakraborty | 17d9863 | 2008-12-18 10:06:15 -0800 | [diff] [blame] | 2677 | } |
| 2678 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2679 | if (IS_QLAFX00(ha)) { |
| 2680 | req->req_q_in = &ha->iobase->ispfx00.req_q_in; |
| 2681 | req->req_q_out = &ha->iobase->ispfx00.req_q_out; |
| 2682 | rsp->rsp_q_in = &ha->iobase->ispfx00.rsp_q_in; |
| 2683 | rsp->rsp_q_out = &ha->iobase->ispfx00.rsp_q_out; |
| 2684 | } |
| 2685 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2686 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2687 | req->req_q_out = &ha->iobase->isp82.req_q_out[0]; |
| 2688 | rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0]; |
| 2689 | rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0]; |
| 2690 | } |
| 2691 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2692 | ql_dbg(ql_dbg_multiq, base_vha, 0xc009, |
| 2693 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2694 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2695 | ql_dbg(ql_dbg_multiq, base_vha, 0xc00a, |
| 2696 | "req->req_q_in=%p req->req_q_out=%p " |
| 2697 | "rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2698 | req->req_q_in, req->req_q_out, |
| 2699 | rsp->rsp_q_in, rsp->rsp_q_out); |
| 2700 | ql_dbg(ql_dbg_init, base_vha, 0x003e, |
| 2701 | "rsp_q_map=%p req_q_map=%p rsp->req=%p req->rsp=%p.\n", |
| 2702 | ha->rsp_q_map, ha->req_q_map, rsp->req, req->rsp); |
| 2703 | ql_dbg(ql_dbg_init, base_vha, 0x003f, |
| 2704 | "req->req_q_in=%p req->req_q_out=%p rsp->rsp_q_in=%p rsp->rsp_q_out=%p.\n", |
| 2705 | 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] | 2706 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2707 | if (ha->isp_ops->initialize_adapter(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2708 | ql_log(ql_log_fatal, base_vha, 0x00d6, |
| 2709 | "Failed to initialize adapter - Adapter flags %x.\n", |
| 2710 | base_vha->device_flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2711 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2712 | if (IS_QLA82XX(ha)) { |
| 2713 | qla82xx_idc_lock(ha); |
| 2714 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 2715 | QLA8XXX_DEV_FAILED); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2716 | qla82xx_idc_unlock(ha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2717 | ql_log(ql_log_fatal, base_vha, 0x00d7, |
| 2718 | "HW State: FAILED.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2719 | } else if (IS_QLA8044(ha)) { |
| 2720 | qla8044_idc_lock(ha); |
| 2721 | qla8044_wr_direct(base_vha, |
| 2722 | QLA8044_CRB_DEV_STATE_INDEX, |
| 2723 | QLA8XXX_DEV_FAILED); |
| 2724 | qla8044_idc_unlock(ha); |
| 2725 | ql_log(ql_log_fatal, base_vha, 0x0150, |
| 2726 | "HW State: FAILED.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2727 | } |
| 2728 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2729 | ret = -ENODEV; |
| 2730 | goto probe_failed; |
| 2731 | } |
| 2732 | |
Chad Dupuis | 3b1bef6 | 2014-02-26 04:15:04 -0500 | [diff] [blame] | 2733 | if (IS_QLAFX00(ha)) |
| 2734 | host->can_queue = QLAFX00_MAX_CANQUEUE; |
| 2735 | else |
| 2736 | host->can_queue = req->num_outstanding_cmds - 10; |
| 2737 | |
| 2738 | ql_dbg(ql_dbg_init, base_vha, 0x0032, |
| 2739 | "can_queue=%d, req=%p, mgmt_svr_loop_id=%d, sg_tablesize=%d.\n", |
| 2740 | host->can_queue, base_vha->req, |
| 2741 | base_vha->mgmt_svr_loop_id, host->sg_tablesize); |
| 2742 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2743 | if (ha->mqenable) { |
| 2744 | if (qla25xx_setup_mode(base_vha)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2745 | ql_log(ql_log_warn, base_vha, 0x00ec, |
| 2746 | "Failed to create queues, falling back to single queue mode.\n"); |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 2747 | goto que_init; |
| 2748 | } |
| 2749 | } |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 2750 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2751 | if (ha->flags.running_gold_fw) |
| 2752 | goto skip_dpc; |
| 2753 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2754 | /* |
| 2755 | * Startup the kernel thread for this host adapter |
| 2756 | */ |
| 2757 | ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2758 | "%s_dpc", base_vha->host_str); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2759 | if (IS_ERR(ha->dpc_thread)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2760 | ql_log(ql_log_fatal, base_vha, 0x00ed, |
| 2761 | "Failed to start DPC thread.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2762 | ret = PTR_ERR(ha->dpc_thread); |
| 2763 | goto probe_failed; |
| 2764 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2765 | ql_dbg(ql_dbg_init, base_vha, 0x00ee, |
| 2766 | "DPC thread started successfully.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2767 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2768 | /* |
| 2769 | * If we're not coming up in initiator mode, we might sit for |
| 2770 | * a while without waking up the dpc thread, which leads to a |
| 2771 | * stuck process warning. So just kick the dpc once here and |
| 2772 | * let the kthread start (and go back to sleep in qla2x00_do_dpc). |
| 2773 | */ |
| 2774 | qla2xxx_wake_dpc(base_vha); |
| 2775 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 2776 | INIT_WORK(&ha->board_disable, qla2x00_disable_board_on_pci_error); |
| 2777 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 2778 | if (IS_QLA8031(ha) || IS_MCTP_CAPABLE(ha)) { |
| 2779 | sprintf(wq_name, "qla2xxx_%lu_dpc_lp_wq", base_vha->host_no); |
| 2780 | ha->dpc_lp_wq = create_singlethread_workqueue(wq_name); |
| 2781 | INIT_WORK(&ha->idc_aen, qla83xx_service_idc_aen); |
| 2782 | |
| 2783 | sprintf(wq_name, "qla2xxx_%lu_dpc_hp_wq", base_vha->host_no); |
| 2784 | ha->dpc_hp_wq = create_singlethread_workqueue(wq_name); |
| 2785 | INIT_WORK(&ha->nic_core_reset, qla83xx_nic_core_reset_work); |
| 2786 | INIT_WORK(&ha->idc_state_handler, |
| 2787 | qla83xx_idc_state_handler_work); |
| 2788 | INIT_WORK(&ha->nic_core_unrecoverable, |
| 2789 | qla83xx_nic_core_unrecoverable_work); |
| 2790 | } |
| 2791 | |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 2792 | skip_dpc: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2793 | list_add_tail(&base_vha->list, &ha->vp_list); |
| 2794 | base_vha->host->irq = ha->pdev->irq; |
| 2795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | /* Initialized the timer */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2797 | qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2798 | ql_dbg(ql_dbg_init, base_vha, 0x00ef, |
| 2799 | "Started qla2x00_timer with " |
| 2800 | "interval=%d.\n", WATCH_INTERVAL); |
| 2801 | ql_dbg(ql_dbg_init, base_vha, 0x00f0, |
| 2802 | "Detected hba at address=%p.\n", |
| 2803 | ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 2805 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2806 | if (ha->fw_attributes & BIT_4) { |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2807 | int prot = 0, guard; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2808 | base_vha->flags.difdix_supported = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2809 | ql_dbg(ql_dbg_init, base_vha, 0x00f1, |
| 2810 | "Registering for DIF/DIX type 1 and 3 protection.\n"); |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2811 | if (ql2xenabledif == 1) |
| 2812 | prot = SHOST_DIX_TYPE0_PROTECTION; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2813 | scsi_host_set_prot(host, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 2814 | prot | SHOST_DIF_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2815 | | SHOST_DIF_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2816 | | SHOST_DIF_TYPE3_PROTECTION |
| 2817 | | SHOST_DIX_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 2818 | | SHOST_DIX_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2819 | | SHOST_DIX_TYPE3_PROTECTION); |
Arun Easi | 9e522cd | 2012-08-22 14:21:31 -0400 | [diff] [blame] | 2820 | |
| 2821 | guard = SHOST_DIX_GUARD_CRC; |
| 2822 | |
| 2823 | if (IS_PI_IPGUARD_CAPABLE(ha) && |
| 2824 | (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha))) |
| 2825 | guard |= SHOST_DIX_GUARD_IP; |
| 2826 | |
| 2827 | scsi_host_set_guard(host, guard); |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 2828 | } else |
| 2829 | base_vha->flags.difdix_supported = 0; |
| 2830 | } |
| 2831 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2832 | ha->isp_ops->enable_intrs(ha); |
| 2833 | |
Armen Baloyan | 1fe19ee | 2013-08-27 01:37:41 -0400 | [diff] [blame] | 2834 | if (IS_QLAFX00(ha)) { |
| 2835 | ret = qlafx00_fx_disc(base_vha, |
| 2836 | &base_vha->hw->mr.fcport, FXDISC_GET_CONFIG_INFO); |
| 2837 | host->sg_tablesize = (ha->mr.extended_io_enabled) ? |
| 2838 | QLA_SG_ALL : 128; |
| 2839 | } |
| 2840 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2841 | ret = scsi_add_host(host, &pdev->dev); |
| 2842 | if (ret) |
| 2843 | goto probe_failed; |
| 2844 | |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2845 | base_vha->flags.init_done = 1; |
| 2846 | base_vha->flags.online = 1; |
Saurav Kashyap | edaa5c7 | 2014-04-11 16:54:14 -0400 | [diff] [blame] | 2847 | ha->prev_minidump_failed = 0; |
Michael Reed | 1486400 | 2009-12-02 09:11:16 -0600 | [diff] [blame] | 2848 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2849 | ql_dbg(ql_dbg_init, base_vha, 0x00f2, |
| 2850 | "Init done and hba is online.\n"); |
| 2851 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2852 | if (qla_ini_mode_enabled(base_vha)) |
| 2853 | scsi_scan_host(host); |
| 2854 | else |
| 2855 | ql_dbg(ql_dbg_init, base_vha, 0x0122, |
| 2856 | "skipping scsi_scan_host() for non-initiator port\n"); |
Andrew Vasquez | 1e99e33 | 2006-11-22 08:24:48 -0800 | [diff] [blame] | 2857 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2858 | qla2x00_alloc_sysfs_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2859 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2860 | if (IS_QLAFX00(ha)) { |
| 2861 | ret = qlafx00_fx_disc(base_vha, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2862 | &base_vha->hw->mr.fcport, FXDISC_GET_PORT_INFO); |
| 2863 | |
| 2864 | /* Register system information */ |
| 2865 | ret = qlafx00_fx_disc(base_vha, |
| 2866 | &base_vha->hw->mr.fcport, FXDISC_REG_HOST_INFO); |
| 2867 | } |
| 2868 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2869 | qla2x00_init_host_attr(base_vha); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2870 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2871 | qla2x00_dfs_setup(base_vha); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 2872 | |
Armen Baloyan | 03eb912 | 2013-10-30 03:38:22 -0400 | [diff] [blame] | 2873 | ql_log(ql_log_info, base_vha, 0x00fb, |
| 2874 | "QLogic %s - %s.\n", ha->model_number, ha->model_desc); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 2875 | ql_log(ql_log_info, base_vha, 0x00fc, |
| 2876 | "ISP%04X: %s @ %s hdma%c host#=%ld fw=%s.\n", |
| 2877 | pdev->device, ha->isp_ops->pci_info_str(base_vha, pci_info), |
| 2878 | pci_name(pdev), ha->flags.enable_64bit_addressing ? '+' : '-', |
| 2879 | base_vha->host_no, |
Himanshu Madhani | df57cab | 2014-09-25 05:16:46 -0400 | [diff] [blame] | 2880 | ha->isp_ops->fw_version_str(base_vha, fw_str, sizeof(fw_str))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2882 | qlt_add_target(ha, base_vha); |
| 2883 | |
Joe Lawrence | 6b38397 | 2014-08-26 17:12:29 -0400 | [diff] [blame] | 2884 | clear_bit(PFLG_DRIVER_PROBING, &base_vha->pci_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | return 0; |
| 2886 | |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2887 | probe_init_failed: |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2888 | qla2x00_free_req_que(ha, req); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2889 | ha->req_q_map[0] = NULL; |
| 2890 | clear_bit(0, ha->req_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2891 | qla2x00_free_rsp_que(ha, rsp); |
Chad Dupuis | 9a347ff | 2012-05-15 14:34:14 -0400 | [diff] [blame] | 2892 | ha->rsp_q_map[0] = NULL; |
| 2893 | clear_bit(0, ha->rsp_qid_map); |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 2894 | ha->max_req_queues = ha->max_rsp_queues = 0; |
Anirban Chakraborty | 6e9f21f | 2009-01-22 09:45:28 -0800 | [diff] [blame] | 2895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | probe_failed: |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 2897 | if (base_vha->timer_active) |
| 2898 | qla2x00_stop_timer(base_vha); |
| 2899 | base_vha->flags.online = 0; |
| 2900 | if (ha->dpc_thread) { |
| 2901 | struct task_struct *t = ha->dpc_thread; |
| 2902 | |
| 2903 | ha->dpc_thread = NULL; |
| 2904 | kthread_stop(t); |
| 2905 | } |
| 2906 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2907 | qla2x00_free_device(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2909 | scsi_host_put(base_vha->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2911 | probe_hw_failed: |
Joe Lawrence | 1a2fbf1 | 2014-08-26 17:11:18 -0400 | [diff] [blame] | 2912 | qla2x00_clear_drv_active(ha); |
| 2913 | |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2914 | iospace_config_failed: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 2915 | if (IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 0a63ad1 | 2012-11-21 02:40:43 -0500 | [diff] [blame] | 2916 | if (!ha->nx_pcibase) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2917 | iounmap((device_reg_t *)ha->nx_pcibase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2918 | if (!ql2xdbwr) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2919 | iounmap((device_reg_t *)ha->nxdb_wr_ptr); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2920 | } else { |
| 2921 | if (ha->iobase) |
| 2922 | iounmap(ha->iobase); |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 2923 | if (ha->cregbase) |
| 2924 | iounmap(ha->cregbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 2925 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2926 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 2927 | kfree(ha); |
| 2928 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2930 | probe_out: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 2931 | pci_disable_device(pdev); |
Andrew Vasquez | a1541d5 | 2005-06-09 17:21:28 -0700 | [diff] [blame] | 2932 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2934 | |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 2935 | static void |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2936 | qla2x00_shutdown(struct pci_dev *pdev) |
| 2937 | { |
| 2938 | scsi_qla_host_t *vha; |
| 2939 | struct qla_hw_data *ha; |
| 2940 | |
Masanari Iida | 552f3f9 | 2013-02-08 01:57:44 -0500 | [diff] [blame] | 2941 | if (!atomic_read(&pdev->enable_cnt)) |
| 2942 | return; |
| 2943 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2944 | vha = pci_get_drvdata(pdev); |
| 2945 | ha = vha->hw; |
| 2946 | |
Armen Baloyan | 4247934 | 2013-08-27 01:37:37 -0400 | [diff] [blame] | 2947 | /* Notify ISPFX00 firmware */ |
| 2948 | if (IS_QLAFX00(ha)) |
| 2949 | qlafx00_driver_shutdown(vha, 20); |
| 2950 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2951 | /* Turn-off FCE trace */ |
| 2952 | if (ha->flags.fce_enabled) { |
| 2953 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
| 2954 | ha->flags.fce_enabled = 0; |
| 2955 | } |
| 2956 | |
| 2957 | /* Turn-off EFT trace */ |
| 2958 | if (ha->eft) |
| 2959 | qla2x00_disable_eft_trace(vha); |
| 2960 | |
| 2961 | /* Stop currently executing firmware. */ |
| 2962 | qla2x00_try_to_stop_firmware(vha); |
| 2963 | |
| 2964 | /* Turn adapter off line */ |
| 2965 | vha->flags.online = 0; |
| 2966 | |
| 2967 | /* turn-off interrupts on the card */ |
| 2968 | if (ha->interrupts_on) { |
| 2969 | vha->flags.init_done = 0; |
| 2970 | ha->isp_ops->disable_intrs(ha); |
| 2971 | } |
| 2972 | |
| 2973 | qla2x00_free_irqs(vha); |
| 2974 | |
| 2975 | qla2x00_free_fw_dump(ha); |
Chad Dupuis | 61d41f6 | 2014-09-25 05:17:02 -0400 | [diff] [blame] | 2976 | |
| 2977 | pci_disable_pcie_error_reporting(pdev); |
| 2978 | pci_disable_device(pdev); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2979 | } |
| 2980 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2981 | /* Deletes all the virtual ports for a given ha */ |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 2982 | static void |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2983 | 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] | 2984 | { |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 2985 | scsi_qla_host_t *vha; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2986 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2988 | mutex_lock(&ha->vport_lock); |
| 2989 | while (ha->cur_vport_count) { |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2990 | spin_lock_irqsave(&ha->vport_slock, flags); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2991 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2992 | BUG_ON(base_vha->list.next == &ha->vp_list); |
| 2993 | /* This assumes first entry in ha->vp_list is always base vha */ |
| 2994 | vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list); |
Bart Van Assche | 52c8282 | 2015-07-09 07:23:26 -0700 | [diff] [blame] | 2995 | scsi_host_get(vha->host); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2996 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 2997 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
| 2998 | mutex_unlock(&ha->vport_lock); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 2999 | |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3000 | fc_vport_terminate(vha->fc_vport); |
| 3001 | scsi_host_put(vha->host); |
| 3002 | |
| 3003 | mutex_lock(&ha->vport_lock); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3004 | } |
Arun Easi | 43ebf16 | 2011-05-10 11:18:16 -0700 | [diff] [blame] | 3005 | mutex_unlock(&ha->vport_lock); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3006 | } |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 3007 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3008 | /* Stops all deferred work threads */ |
| 3009 | static void |
| 3010 | qla2x00_destroy_deferred_work(struct qla_hw_data *ha) |
| 3011 | { |
Anirban Chakraborty | 68ca949 | 2009-04-06 22:33:41 -0700 | [diff] [blame] | 3012 | /* Flush the work queue and remove it */ |
| 3013 | if (ha->wq) { |
| 3014 | flush_workqueue(ha->wq); |
| 3015 | destroy_workqueue(ha->wq); |
| 3016 | ha->wq = NULL; |
| 3017 | } |
| 3018 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 3019 | /* Cancel all work and destroy DPC workqueues */ |
| 3020 | if (ha->dpc_lp_wq) { |
| 3021 | cancel_work_sync(&ha->idc_aen); |
| 3022 | destroy_workqueue(ha->dpc_lp_wq); |
| 3023 | ha->dpc_lp_wq = NULL; |
| 3024 | } |
| 3025 | |
| 3026 | if (ha->dpc_hp_wq) { |
| 3027 | cancel_work_sync(&ha->nic_core_reset); |
| 3028 | cancel_work_sync(&ha->idc_state_handler); |
| 3029 | cancel_work_sync(&ha->nic_core_unrecoverable); |
| 3030 | destroy_workqueue(ha->dpc_hp_wq); |
| 3031 | ha->dpc_hp_wq = NULL; |
| 3032 | } |
| 3033 | |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3034 | /* Kill the kernel thread for this host */ |
| 3035 | if (ha->dpc_thread) { |
| 3036 | struct task_struct *t = ha->dpc_thread; |
| 3037 | |
| 3038 | /* |
| 3039 | * qla2xxx_wake_dpc checks for ->dpc_thread |
| 3040 | * so we need to zero it out. |
| 3041 | */ |
| 3042 | ha->dpc_thread = NULL; |
| 3043 | kthread_stop(t); |
| 3044 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3045 | } |
Andrew Vasquez | b997876 | 2009-03-24 09:08:05 -0700 | [diff] [blame] | 3046 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3047 | static void |
| 3048 | qla2x00_unmap_iobases(struct qla_hw_data *ha) |
| 3049 | { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3050 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | b963752 | 2010-05-28 15:08:15 -0700 | [diff] [blame] | 3051 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3052 | iounmap((device_reg_t *)ha->nx_pcibase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3053 | if (!ql2xdbwr) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3054 | iounmap((device_reg_t *)ha->nxdb_wr_ptr); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3055 | } else { |
| 3056 | if (ha->iobase) |
| 3057 | iounmap(ha->iobase); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3058 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3059 | if (ha->cregbase) |
| 3060 | iounmap(ha->cregbase); |
| 3061 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3062 | if (ha->mqiobase) |
| 3063 | iounmap(ha->mqiobase); |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3064 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3065 | if ((IS_QLA83XX(ha) || IS_QLA27XX(ha)) && ha->msixbase) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 3066 | iounmap(ha->msixbase); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3067 | } |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3068 | } |
| 3069 | |
| 3070 | static void |
Joe Lawrence | db7157d | 2014-08-26 17:10:41 -0400 | [diff] [blame] | 3071 | qla2x00_clear_drv_active(struct qla_hw_data *ha) |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3072 | { |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3073 | if (IS_QLA8044(ha)) { |
| 3074 | qla8044_idc_lock(ha); |
Saurav Kashyap | c41afc9 | 2013-11-07 02:54:56 -0500 | [diff] [blame] | 3075 | qla8044_clear_drv_active(ha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3076 | qla8044_idc_unlock(ha); |
| 3077 | } else if (IS_QLA82XX(ha)) { |
| 3078 | qla82xx_idc_lock(ha); |
| 3079 | qla82xx_clear_drv_active(ha); |
| 3080 | qla82xx_idc_unlock(ha); |
| 3081 | } |
| 3082 | } |
| 3083 | |
| 3084 | static void |
| 3085 | qla2x00_remove_one(struct pci_dev *pdev) |
| 3086 | { |
| 3087 | scsi_qla_host_t *base_vha; |
| 3088 | struct qla_hw_data *ha; |
| 3089 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3090 | base_vha = pci_get_drvdata(pdev); |
| 3091 | ha = base_vha->hw; |
| 3092 | |
Joe Lawrence | beb9e31 | 2014-08-26 17:12:14 -0400 | [diff] [blame] | 3093 | /* Indicate device removal to prevent future board_disable and wait |
| 3094 | * until any pending board_disable has completed. */ |
| 3095 | set_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags); |
| 3096 | cancel_work_sync(&ha->board_disable); |
| 3097 | |
| 3098 | /* |
| 3099 | * If the PCI device is disabled then there was a PCI-disconnect and |
| 3100 | * qla2x00_disable_board_on_pci_error has taken care of most of the |
| 3101 | * resources. |
| 3102 | */ |
| 3103 | if (!atomic_read(&pdev->enable_cnt)) { |
| 3104 | scsi_host_put(base_vha->host); |
| 3105 | kfree(ha); |
| 3106 | pci_set_drvdata(pdev, NULL); |
| 3107 | return; |
| 3108 | } |
| 3109 | |
Sawan Chandak | 638a1a0 | 2014-04-11 16:54:38 -0400 | [diff] [blame] | 3110 | qla2x00_wait_for_hba_ready(base_vha); |
| 3111 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3112 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 3113 | |
| 3114 | if (IS_QLAFX00(ha)) |
| 3115 | qlafx00_driver_shutdown(base_vha, 20); |
| 3116 | |
| 3117 | qla2x00_delete_all_vps(ha, base_vha); |
| 3118 | |
| 3119 | if (IS_QLA8031(ha)) { |
| 3120 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07e, |
| 3121 | "Clearing fcoe driver presence.\n"); |
| 3122 | if (qla83xx_clear_drv_presence(base_vha) != QLA_SUCCESS) |
| 3123 | ql_dbg(ql_dbg_p3p, base_vha, 0xb079, |
| 3124 | "Error while clearing DRV-Presence.\n"); |
| 3125 | } |
| 3126 | |
| 3127 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 3128 | |
| 3129 | qla2x00_dfs_remove(base_vha); |
| 3130 | |
| 3131 | qla84xx_put_chip(base_vha); |
| 3132 | |
Himanshu Madhani | 2d5a4c3 | 2014-09-25 05:16:55 -0400 | [diff] [blame] | 3133 | /* Laser should be disabled only for ISP2031 */ |
| 3134 | if (IS_QLA2031(ha)) |
| 3135 | qla83xx_disable_laser(base_vha); |
| 3136 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3137 | /* Disable timer */ |
| 3138 | if (base_vha->timer_active) |
| 3139 | qla2x00_stop_timer(base_vha); |
| 3140 | |
| 3141 | base_vha->flags.online = 0; |
| 3142 | |
Himanshu Madhani | b0d6cab | 2015-12-17 14:56:56 -0500 | [diff] [blame] | 3143 | /* free DMA memory */ |
| 3144 | if (ha->exlogin_buf) |
| 3145 | qla2x00_free_exlogin_buffer(ha); |
| 3146 | |
Himanshu Madhani | 2f56a7f | 2015-12-17 14:56:57 -0500 | [diff] [blame^] | 3147 | /* free DMA memory */ |
| 3148 | if (ha->exchoffld_buf) |
| 3149 | qla2x00_free_exchoffld_buffer(ha); |
| 3150 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3151 | qla2x00_destroy_deferred_work(ha); |
| 3152 | |
| 3153 | qlt_remove_target(ha, base_vha); |
| 3154 | |
| 3155 | qla2x00_free_sysfs_attr(base_vha, true); |
| 3156 | |
| 3157 | fc_remove_host(base_vha->host); |
| 3158 | |
| 3159 | scsi_remove_host(base_vha->host); |
| 3160 | |
| 3161 | qla2x00_free_device(base_vha); |
| 3162 | |
Joe Lawrence | db7157d | 2014-08-26 17:10:41 -0400 | [diff] [blame] | 3163 | qla2x00_clear_drv_active(ha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3164 | |
Arun Easi | d2749ff | 2014-09-25 05:16:51 -0400 | [diff] [blame] | 3165 | scsi_host_put(base_vha->host); |
| 3166 | |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3167 | qla2x00_unmap_iobases(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3168 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3169 | pci_release_selected_regions(ha->pdev, ha->bars); |
| 3170 | kfree(ha); |
| 3171 | ha = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 3173 | pci_disable_pcie_error_reporting(pdev); |
| 3174 | |
Bernhard Walle | 665db93 | 2007-03-28 00:49:49 +0200 | [diff] [blame] | 3175 | pci_disable_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3177 | |
| 3178 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3179 | qla2x00_free_device(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3180 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3181 | struct qla_hw_data *ha = vha->hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3182 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3183 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
| 3184 | |
| 3185 | /* Disable timer */ |
| 3186 | if (vha->timer_active) |
| 3187 | qla2x00_stop_timer(vha); |
| 3188 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 3189 | qla25xx_delete_queues(vha); |
Chad Dupuis | fe1b806 | 2013-10-30 03:38:15 -0400 | [diff] [blame] | 3190 | |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3191 | if (ha->flags.fce_enabled) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3192 | qla2x00_disable_fce_trace(vha, NULL, NULL); |
Andrew Vasquez | df613b9 | 2008-01-17 09:02:17 -0800 | [diff] [blame] | 3193 | |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3194 | if (ha->eft) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3195 | qla2x00_disable_eft_trace(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 3196 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3197 | /* Stop currently executing firmware. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3198 | qla2x00_try_to_stop_firmware(vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 3200 | vha->flags.online = 0; |
| 3201 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3202 | /* turn-off interrupts on the card */ |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3203 | if (ha->interrupts_on) { |
| 3204 | vha->flags.init_done = 0; |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 3205 | ha->isp_ops->disable_intrs(ha); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3206 | } |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3207 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3208 | qla2x00_free_irqs(vha); |
| 3209 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3210 | qla2x00_free_fcports(vha); |
| 3211 | |
Andrew Vasquez | f6ef3b1 | 2005-08-26 19:10:20 -0700 | [diff] [blame] | 3212 | qla2x00_mem_free(ha); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3213 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 3214 | qla82xx_md_free(vha); |
| 3215 | |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3216 | qla2x00_free_queues(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | } |
| 3218 | |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3219 | void qla2x00_free_fcports(struct scsi_qla_host *vha) |
| 3220 | { |
| 3221 | fc_port_t *fcport, *tfcport; |
| 3222 | |
| 3223 | list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) { |
| 3224 | list_del(&fcport->list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3225 | qla2x00_clear_loop_id(fcport); |
Chad Dupuis | 8867048 | 2010-07-23 15:28:30 +0500 | [diff] [blame] | 3226 | kfree(fcport); |
| 3227 | fcport = NULL; |
| 3228 | } |
| 3229 | } |
| 3230 | |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3231 | static inline void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3232 | 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] | 3233 | int defer) |
| 3234 | { |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3235 | struct fc_rport *rport; |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3236 | scsi_qla_host_t *base_vha; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3237 | unsigned long flags; |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3238 | |
| 3239 | if (!fcport->rport) |
| 3240 | return; |
| 3241 | |
| 3242 | rport = fcport->rport; |
| 3243 | if (defer) { |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3244 | base_vha = pci_get_drvdata(vha->hw->pdev); |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3245 | spin_lock_irqsave(vha->host->host_lock, flags); |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3246 | fcport->drport = rport; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 3247 | spin_unlock_irqrestore(vha->host->host_lock, flags); |
Alexei Potashnik | df67327 | 2015-07-14 16:00:46 -0400 | [diff] [blame] | 3248 | qlt_do_generation_tick(vha, &base_vha->total_fcport_update_gen); |
Andrew Vasquez | 67becc0 | 2009-08-25 11:36:20 -0700 | [diff] [blame] | 3249 | set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags); |
| 3250 | qla2xxx_wake_dpc(base_vha); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3251 | } else { |
Alexei Potashnik | df67327 | 2015-07-14 16:00:46 -0400 | [diff] [blame] | 3252 | int now; |
Alexei Potashnik | d20ed91 | 2015-07-14 16:00:47 -0400 | [diff] [blame] | 3253 | if (rport) |
| 3254 | fc_remote_port_delete(rport); |
Alexei Potashnik | df67327 | 2015-07-14 16:00:46 -0400 | [diff] [blame] | 3255 | qlt_do_generation_tick(vha, &now); |
| 3256 | qlt_fc_port_deleted(vha, fcport, now); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3257 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 3258 | } |
| 3259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3261 | * qla2x00_mark_device_lost Updates fcport state when device goes offline. |
| 3262 | * |
| 3263 | * Input: ha = adapter block pointer. fcport = port structure pointer. |
| 3264 | * |
| 3265 | * Return: None. |
| 3266 | * |
| 3267 | * Context: |
| 3268 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3269 | 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] | 3270 | int do_login, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 3272 | if (IS_QLAFX00(vha->hw)) { |
| 3273 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
| 3274 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3275 | return; |
| 3276 | } |
| 3277 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 3278 | if (atomic_read(&fcport->state) == FCS_ONLINE && |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3279 | vha->vp_idx == fcport->vha->vp_idx) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3280 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3281 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3282 | } |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 3283 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | * We may need to retry the login, so don't change the state of the |
| 3285 | * port but do the retries. |
| 3286 | */ |
| 3287 | if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD) |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3288 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | |
| 3290 | if (!do_login) |
| 3291 | return; |
| 3292 | |
Arun Easi | a1d0285 | 2015-08-04 13:38:02 -0400 | [diff] [blame] | 3293 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 3294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | if (fcport->login_retry == 0) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3296 | fcport->login_retry = vha->hw->login_retry_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3298 | ql_dbg(ql_dbg_disc, vha, 0x2067, |
Oleksandr Khoshaba | 7b83355 | 2013-08-27 01:37:27 -0400 | [diff] [blame] | 3299 | "Port login retry %8phN, id = 0x%04x retry cnt=%d.\n", |
| 3300 | fcport->port_name, fcport->loop_id, fcport->login_retry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | } |
| 3302 | } |
| 3303 | |
| 3304 | /* |
| 3305 | * qla2x00_mark_all_devices_lost |
| 3306 | * Updates fcport state when device goes offline. |
| 3307 | * |
| 3308 | * Input: |
| 3309 | * ha = adapter block pointer. |
| 3310 | * fcport = port structure pointer. |
| 3311 | * |
| 3312 | * Return: |
| 3313 | * None. |
| 3314 | * |
| 3315 | * Context: |
| 3316 | */ |
| 3317 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3318 | qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3319 | { |
| 3320 | fc_port_t *fcport; |
| 3321 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3322 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3323 | if (vha->vp_idx != 0 && vha->vp_idx != fcport->vha->vp_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | continue; |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3326 | /* |
| 3327 | * No point in marking the device as lost, if the device is |
| 3328 | * already DEAD. |
| 3329 | */ |
| 3330 | if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD) |
| 3331 | continue; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3332 | if (atomic_read(&fcport->state) == FCS_ONLINE) { |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 3333 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_LOST); |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3334 | if (defer) |
| 3335 | qla2x00_schedule_rport_del(vha, fcport, defer); |
Joe Carnuccio | c6d39e2 | 2012-05-15 14:34:20 -0400 | [diff] [blame] | 3336 | else if (vha->vp_idx == fcport->vha->vp_idx) |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 3337 | qla2x00_schedule_rport_del(vha, fcport, defer); |
| 3338 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3339 | } |
| 3340 | } |
| 3341 | |
| 3342 | /* |
| 3343 | * qla2x00_mem_alloc |
| 3344 | * Allocates adapter memory. |
| 3345 | * |
| 3346 | * Returns: |
| 3347 | * 0 = success. |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3348 | * !0 = failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3350 | static int |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3351 | qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len, |
| 3352 | struct req_que **req, struct rsp_que **rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | { |
| 3354 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3355 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3356 | 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] | 3357 | &ha->init_cb_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3358 | if (!ha->init_cb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3359 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3361 | if (qlt_mem_alloc(ha) < 0) |
| 3362 | goto fail_free_init_cb; |
| 3363 | |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3364 | ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, |
| 3365 | qla2x00_gid_list_size(ha), &ha->gid_list_dma, GFP_KERNEL); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3366 | if (!ha->gid_list) |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3367 | goto fail_free_tgt_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3369 | ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep); |
| 3370 | if (!ha->srb_mempool) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3371 | goto fail_free_gid_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3373 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3374 | /* Allocate cache for CT6 Ctx. */ |
| 3375 | if (!ctx_cachep) { |
| 3376 | ctx_cachep = kmem_cache_create("qla2xxx_ctx", |
| 3377 | sizeof(struct ct6_dsd), 0, |
| 3378 | SLAB_HWCACHE_ALIGN, NULL); |
| 3379 | if (!ctx_cachep) |
| 3380 | goto fail_free_gid_list; |
| 3381 | } |
| 3382 | ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ, |
| 3383 | ctx_cachep); |
| 3384 | if (!ha->ctx_mempool) |
| 3385 | goto fail_free_srb_mempool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3386 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0021, |
| 3387 | "ctx_cachep=%p ctx_mempool=%p.\n", |
| 3388 | ctx_cachep, ha->ctx_mempool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3389 | } |
| 3390 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3391 | /* Get memory for cached NVRAM */ |
| 3392 | ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL); |
| 3393 | if (!ha->nvram) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3394 | goto fail_free_ctx_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3395 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3396 | snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME, |
| 3397 | ha->pdev->device); |
| 3398 | ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3399 | DMA_POOL_SIZE, 8, 0); |
| 3400 | if (!ha->s_dma_pool) |
| 3401 | goto fail_free_nvram; |
| 3402 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3403 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0022, |
| 3404 | "init_cb=%p gid_list=%p, srb_mempool=%p s_dma_pool=%p.\n", |
| 3405 | ha->init_cb, ha->gid_list, ha->srb_mempool, ha->s_dma_pool); |
| 3406 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3407 | if (IS_P3P_TYPE(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3408 | ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3409 | DSD_LIST_DMA_POOL_SIZE, 8, 0); |
| 3410 | if (!ha->dl_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3411 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0023, |
| 3412 | "Failed to allocate memory for dl_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3413 | goto fail_s_dma_pool; |
| 3414 | } |
| 3415 | |
| 3416 | ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev, |
| 3417 | FCP_CMND_DMA_POOL_SIZE, 8, 0); |
| 3418 | if (!ha->fcp_cmnd_dma_pool) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3419 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0024, |
| 3420 | "Failed to allocate memory for fcp_cmnd_dma_pool.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3421 | goto fail_dl_dma_pool; |
| 3422 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3423 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0025, |
| 3424 | "dl_dma_pool=%p fcp_cmnd_dma_pool=%p.\n", |
| 3425 | ha->dl_dma_pool, ha->fcp_cmnd_dma_pool); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3426 | } |
| 3427 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3428 | /* Allocate memory for SNS commands */ |
| 3429 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3430 | /* Get consistent memory allocated for SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3431 | ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3432 | sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3433 | if (!ha->sns_cmd) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3434 | goto fail_dma_pool; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3435 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0026, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 3436 | "sns_cmd: %p.\n", ha->sns_cmd); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3437 | } else { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3438 | /* Get consistent memory allocated for MS IOCB */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3439 | ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3440 | &ha->ms_iocb_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3441 | if (!ha->ms_iocb) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3442 | goto fail_dma_pool; |
| 3443 | /* Get consistent memory allocated for CT SNS commands */ |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3444 | ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3445 | sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3446 | if (!ha->ct_sns) |
| 3447 | goto fail_free_ms_iocb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3448 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0027, |
| 3449 | "ms_iocb=%p ct_sns=%p.\n", |
| 3450 | ha->ms_iocb, ha->ct_sns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | } |
| 3452 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3453 | /* Allocate memory for request ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3454 | *req = kzalloc(sizeof(struct req_que), GFP_KERNEL); |
| 3455 | if (!*req) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3456 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0028, |
| 3457 | "Failed to allocate memory for req.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3458 | goto fail_req; |
| 3459 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3460 | (*req)->length = req_len; |
| 3461 | (*req)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3462 | ((*req)->length + 1) * sizeof(request_t), |
| 3463 | &(*req)->dma, GFP_KERNEL); |
| 3464 | if (!(*req)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3465 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0029, |
| 3466 | "Failed to allocate memory for req_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3467 | goto fail_req_ring; |
| 3468 | } |
| 3469 | /* Allocate memory for response ring */ |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3470 | *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL); |
| 3471 | if (!*rsp) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3472 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002a, |
| 3473 | "Failed to allocate memory for rsp.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3474 | goto fail_rsp; |
| 3475 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3476 | (*rsp)->hw = ha; |
| 3477 | (*rsp)->length = rsp_len; |
| 3478 | (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev, |
| 3479 | ((*rsp)->length + 1) * sizeof(response_t), |
| 3480 | &(*rsp)->dma, GFP_KERNEL); |
| 3481 | if (!(*rsp)->ring) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3482 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002b, |
| 3483 | "Failed to allocate memory for rsp_ring.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3484 | goto fail_rsp_ring; |
| 3485 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3486 | (*req)->rsp = *rsp; |
| 3487 | (*rsp)->req = *req; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3488 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002c, |
| 3489 | "req=%p req->length=%d req->ring=%p rsp=%p " |
| 3490 | "rsp->length=%d rsp->ring=%p.\n", |
| 3491 | *req, (*req)->length, (*req)->ring, *rsp, (*rsp)->length, |
| 3492 | (*rsp)->ring); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3493 | /* Allocate memory for NVRAM data for vports */ |
| 3494 | if (ha->nvram_npiv_size) { |
| 3495 | ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) * |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3496 | ha->nvram_npiv_size, GFP_KERNEL); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3497 | if (!ha->npiv_info) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3498 | ql_log_pci(ql_log_fatal, ha->pdev, 0x002d, |
| 3499 | "Failed to allocate memory for npiv_info.\n"); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3500 | goto fail_npiv_info; |
| 3501 | } |
| 3502 | } else |
| 3503 | ha->npiv_info = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3504 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3505 | /* Get consistent memory allocated for EX-INIT-CB. */ |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3506 | if (IS_CNA_CAPABLE(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha)) { |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3507 | ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3508 | &ha->ex_init_cb_dma); |
| 3509 | if (!ha->ex_init_cb) |
| 3510 | goto fail_ex_init_cb; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3511 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002e, |
| 3512 | "ex_init_cb=%p.\n", ha->ex_init_cb); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3513 | } |
| 3514 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3515 | INIT_LIST_HEAD(&ha->gbl_dsd_list); |
| 3516 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3517 | /* Get consistent memory allocated for Async Port-Database. */ |
| 3518 | if (!IS_FWI2_CAPABLE(ha)) { |
| 3519 | ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 3520 | &ha->async_pd_dma); |
| 3521 | if (!ha->async_pd) |
| 3522 | goto fail_async_pd; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3523 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x002f, |
| 3524 | "async_pd=%p.\n", ha->async_pd); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3525 | } |
| 3526 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3527 | INIT_LIST_HEAD(&ha->vp_list); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3528 | |
| 3529 | /* Allocate memory for our loop_id bitmap */ |
| 3530 | ha->loop_id_map = kzalloc(BITS_TO_LONGS(LOOPID_MAP_SIZE) * sizeof(long), |
| 3531 | GFP_KERNEL); |
| 3532 | if (!ha->loop_id_map) |
| 3533 | goto fail_async_pd; |
| 3534 | else { |
| 3535 | qla2x00_set_reserved_loop_ids(ha); |
| 3536 | ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0123, |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 3537 | "loop_id_map=%p.\n", ha->loop_id_map); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3538 | } |
| 3539 | |
Dan Carpenter | b2a72ec | 2014-01-21 10:00:10 +0300 | [diff] [blame] | 3540 | return 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3541 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3542 | fail_async_pd: |
| 3543 | 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] | 3544 | fail_ex_init_cb: |
| 3545 | kfree(ha->npiv_info); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3546 | fail_npiv_info: |
| 3547 | dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) * |
| 3548 | sizeof(response_t), (*rsp)->ring, (*rsp)->dma); |
| 3549 | (*rsp)->ring = NULL; |
| 3550 | (*rsp)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3551 | fail_rsp_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3552 | kfree(*rsp); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3553 | fail_rsp: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3554 | dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) * |
| 3555 | sizeof(request_t), (*req)->ring, (*req)->dma); |
| 3556 | (*req)->ring = NULL; |
| 3557 | (*req)->dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3558 | fail_req_ring: |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3559 | kfree(*req); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3560 | fail_req: |
| 3561 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
| 3562 | ha->ct_sns, ha->ct_sns_dma); |
| 3563 | ha->ct_sns = NULL; |
| 3564 | ha->ct_sns_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3565 | fail_free_ms_iocb: |
| 3566 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3567 | ha->ms_iocb = NULL; |
| 3568 | ha->ms_iocb_dma = 0; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3569 | fail_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3570 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3571 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3572 | ha->fcp_cmnd_dma_pool = NULL; |
| 3573 | } |
| 3574 | fail_dl_dma_pool: |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 3575 | if (IS_QLA82XX(ha) || ql2xenabledif) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3576 | dma_pool_destroy(ha->dl_dma_pool); |
| 3577 | ha->dl_dma_pool = NULL; |
| 3578 | } |
| 3579 | fail_s_dma_pool: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3580 | dma_pool_destroy(ha->s_dma_pool); |
| 3581 | ha->s_dma_pool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3582 | fail_free_nvram: |
| 3583 | kfree(ha->nvram); |
| 3584 | ha->nvram = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3585 | fail_free_ctx_mempool: |
| 3586 | mempool_destroy(ha->ctx_mempool); |
| 3587 | ha->ctx_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3588 | fail_free_srb_mempool: |
| 3589 | mempool_destroy(ha->srb_mempool); |
| 3590 | ha->srb_mempool = NULL; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3591 | fail_free_gid_list: |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3592 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3593 | ha->gid_list, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3594 | ha->gid_list_dma); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3595 | ha->gid_list = NULL; |
| 3596 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3597 | fail_free_tgt_mem: |
| 3598 | qlt_mem_free(ha); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3599 | fail_free_init_cb: |
| 3600 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb, |
| 3601 | ha->init_cb_dma); |
| 3602 | ha->init_cb = NULL; |
| 3603 | ha->init_cb_dma = 0; |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3604 | fail: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3605 | ql_log(ql_log_fatal, NULL, 0x0030, |
| 3606 | "Memory allocation failure.\n"); |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3607 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | } |
| 3609 | |
Himanshu Madhani | b0d6cab | 2015-12-17 14:56:56 -0500 | [diff] [blame] | 3610 | int |
| 3611 | qla2x00_set_exlogins_buffer(scsi_qla_host_t *vha) |
| 3612 | { |
| 3613 | int rval; |
| 3614 | uint16_t size, max_cnt, temp; |
| 3615 | struct qla_hw_data *ha = vha->hw; |
| 3616 | |
| 3617 | /* Return if we don't need to alloacate any extended logins */ |
| 3618 | if (!ql2xexlogins) |
| 3619 | return QLA_SUCCESS; |
| 3620 | |
| 3621 | ql_log(ql_log_info, vha, 0xd021, "EXLOGIN count: %d.\n", ql2xexlogins); |
| 3622 | max_cnt = 0; |
| 3623 | rval = qla_get_exlogin_status(vha, &size, &max_cnt); |
| 3624 | if (rval != QLA_SUCCESS) { |
| 3625 | ql_log_pci(ql_log_fatal, ha->pdev, 0xd029, |
| 3626 | "Failed to get exlogin status.\n"); |
| 3627 | return rval; |
| 3628 | } |
| 3629 | |
| 3630 | temp = (ql2xexlogins > max_cnt) ? max_cnt : ql2xexlogins; |
| 3631 | ha->exlogin_size = (size * temp); |
| 3632 | ql_log(ql_log_info, vha, 0xd024, |
| 3633 | "EXLOGIN: max_logins=%d, portdb=0x%x, total=%d.\n", |
| 3634 | max_cnt, size, temp); |
| 3635 | |
| 3636 | ql_log(ql_log_info, vha, 0xd025, "EXLOGIN: requested size=0x%x\n", |
| 3637 | ha->exlogin_size); |
| 3638 | |
| 3639 | /* Get consistent memory for extended logins */ |
| 3640 | ha->exlogin_buf = dma_alloc_coherent(&ha->pdev->dev, |
| 3641 | ha->exlogin_size, &ha->exlogin_buf_dma, GFP_KERNEL); |
| 3642 | if (!ha->exlogin_buf) { |
| 3643 | ql_log_pci(ql_log_fatal, ha->pdev, 0xd02a, |
| 3644 | "Failed to allocate memory for exlogin_buf_dma.\n"); |
| 3645 | return -ENOMEM; |
| 3646 | } |
| 3647 | |
| 3648 | /* Now configure the dma buffer */ |
| 3649 | rval = qla_set_exlogin_mem_cfg(vha, ha->exlogin_buf_dma); |
| 3650 | if (rval) { |
| 3651 | ql_log(ql_log_fatal, vha, 0x00cf, |
| 3652 | "Setup extended login buffer ****FAILED****.\n"); |
| 3653 | qla2x00_free_exlogin_buffer(ha); |
| 3654 | } |
| 3655 | |
| 3656 | return rval; |
| 3657 | } |
| 3658 | |
| 3659 | /* |
| 3660 | * qla2x00_free_exlogin_buffer |
| 3661 | * |
| 3662 | * Input: |
| 3663 | * ha = adapter block pointer |
| 3664 | */ |
| 3665 | void |
| 3666 | qla2x00_free_exlogin_buffer(struct qla_hw_data *ha) |
| 3667 | { |
| 3668 | if (ha->exlogin_buf) { |
| 3669 | dma_free_coherent(&ha->pdev->dev, ha->exlogin_size, |
| 3670 | ha->exlogin_buf, ha->exlogin_buf_dma); |
| 3671 | ha->exlogin_buf = NULL; |
| 3672 | ha->exlogin_size = 0; |
| 3673 | } |
| 3674 | } |
| 3675 | |
Himanshu Madhani | 2f56a7f | 2015-12-17 14:56:57 -0500 | [diff] [blame^] | 3676 | int |
| 3677 | qla2x00_set_exchoffld_buffer(scsi_qla_host_t *vha) |
| 3678 | { |
| 3679 | int rval; |
| 3680 | uint16_t size, max_cnt, temp; |
| 3681 | struct qla_hw_data *ha = vha->hw; |
| 3682 | |
| 3683 | /* Return if we don't need to alloacate any extended logins */ |
| 3684 | if (!ql2xexchoffld) |
| 3685 | return QLA_SUCCESS; |
| 3686 | |
| 3687 | ql_log(ql_log_info, vha, 0xd014, |
| 3688 | "Exchange offload count: %d.\n", ql2xexlogins); |
| 3689 | |
| 3690 | max_cnt = 0; |
| 3691 | rval = qla_get_exchoffld_status(vha, &size, &max_cnt); |
| 3692 | if (rval != QLA_SUCCESS) { |
| 3693 | ql_log_pci(ql_log_fatal, ha->pdev, 0xd012, |
| 3694 | "Failed to get exlogin status.\n"); |
| 3695 | return rval; |
| 3696 | } |
| 3697 | |
| 3698 | temp = (ql2xexchoffld > max_cnt) ? max_cnt : ql2xexchoffld; |
| 3699 | ha->exchoffld_size = (size * temp); |
| 3700 | ql_log(ql_log_info, vha, 0xd016, |
| 3701 | "Exchange offload: max_count=%d, buffers=0x%x, total=%d.\n", |
| 3702 | max_cnt, size, temp); |
| 3703 | |
| 3704 | ql_log(ql_log_info, vha, 0xd017, |
| 3705 | "Exchange Buffers requested size = 0x%x\n", ha->exchoffld_size); |
| 3706 | |
| 3707 | /* Get consistent memory for extended logins */ |
| 3708 | ha->exchoffld_buf = dma_alloc_coherent(&ha->pdev->dev, |
| 3709 | ha->exchoffld_size, &ha->exchoffld_buf_dma, GFP_KERNEL); |
| 3710 | if (!ha->exchoffld_buf) { |
| 3711 | ql_log_pci(ql_log_fatal, ha->pdev, 0xd013, |
| 3712 | "Failed to allocate memory for exchoffld_buf_dma.\n"); |
| 3713 | return -ENOMEM; |
| 3714 | } |
| 3715 | |
| 3716 | /* Now configure the dma buffer */ |
| 3717 | rval = qla_set_exchoffld_mem_cfg(vha, ha->exchoffld_buf_dma); |
| 3718 | if (rval) { |
| 3719 | ql_log(ql_log_fatal, vha, 0xd02e, |
| 3720 | "Setup exchange offload buffer ****FAILED****.\n"); |
| 3721 | qla2x00_free_exchoffld_buffer(ha); |
| 3722 | } |
| 3723 | |
| 3724 | return rval; |
| 3725 | } |
| 3726 | |
| 3727 | /* |
| 3728 | * qla2x00_free_exchoffld_buffer |
| 3729 | * |
| 3730 | * Input: |
| 3731 | * ha = adapter block pointer |
| 3732 | */ |
| 3733 | void |
| 3734 | qla2x00_free_exchoffld_buffer(struct qla_hw_data *ha) |
| 3735 | { |
| 3736 | if (ha->exchoffld_buf) { |
| 3737 | dma_free_coherent(&ha->pdev->dev, ha->exchoffld_size, |
| 3738 | ha->exchoffld_buf, ha->exchoffld_buf_dma); |
| 3739 | ha->exchoffld_buf = NULL; |
| 3740 | ha->exchoffld_size = 0; |
| 3741 | } |
| 3742 | } |
| 3743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3744 | /* |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3745 | * qla2x00_free_fw_dump |
| 3746 | * Frees fw dump stuff. |
| 3747 | * |
| 3748 | * Input: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3749 | * ha = adapter block pointer |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3750 | */ |
| 3751 | static void |
| 3752 | qla2x00_free_fw_dump(struct qla_hw_data *ha) |
| 3753 | { |
| 3754 | if (ha->fce) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3755 | dma_free_coherent(&ha->pdev->dev, |
| 3756 | FCE_SIZE, ha->fce, ha->fce_dma); |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3757 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3758 | if (ha->eft) |
| 3759 | dma_free_coherent(&ha->pdev->dev, |
| 3760 | EFT_SIZE, ha->eft, ha->eft_dma); |
| 3761 | |
| 3762 | if (ha->fw_dump) |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3763 | vfree(ha->fw_dump); |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3764 | if (ha->fw_dump_template) |
| 3765 | vfree(ha->fw_dump_template); |
| 3766 | |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3767 | ha->fce = NULL; |
| 3768 | ha->fce_dma = 0; |
| 3769 | ha->eft = NULL; |
| 3770 | ha->eft_dma = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3771 | ha->fw_dumped = 0; |
Hiral Patel | 61f098d | 2014-04-11 16:54:21 -0400 | [diff] [blame] | 3772 | ha->fw_dump_cap_flags = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3773 | ha->fw_dump_reading = 0; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 3774 | ha->fw_dump = NULL; |
| 3775 | ha->fw_dump_len = 0; |
| 3776 | ha->fw_dump_template = NULL; |
| 3777 | ha->fw_dump_template_len = 0; |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3778 | } |
| 3779 | |
| 3780 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | * qla2x00_mem_free |
| 3782 | * Frees all adapter allocated memory. |
| 3783 | * |
| 3784 | * Input: |
| 3785 | * ha = adapter block pointer. |
| 3786 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 3787 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3788 | qla2x00_mem_free(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3789 | { |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 3790 | qla2x00_free_fw_dump(ha); |
| 3791 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 3792 | if (ha->mctp_dump) |
| 3793 | dma_free_coherent(&ha->pdev->dev, MCTP_DUMP_SIZE, ha->mctp_dump, |
| 3794 | ha->mctp_dump_dma); |
| 3795 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3796 | if (ha->srb_mempool) |
| 3797 | mempool_destroy(ha->srb_mempool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3798 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 3799 | if (ha->dcbx_tlv) |
| 3800 | dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, |
| 3801 | ha->dcbx_tlv, ha->dcbx_tlv_dma); |
| 3802 | |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 3803 | if (ha->xgmac_data) |
| 3804 | dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 3805 | ha->xgmac_data, ha->xgmac_data_dma); |
| 3806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | if (ha->sns_cmd) |
| 3808 | dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3809 | ha->sns_cmd, ha->sns_cmd_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3810 | |
| 3811 | if (ha->ct_sns) |
| 3812 | dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt), |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3813 | ha->ct_sns, ha->ct_sns_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 3815 | if (ha->sfp_data) |
| 3816 | dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma); |
| 3817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3818 | if (ha->ms_iocb) |
| 3819 | dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma); |
| 3820 | |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3821 | if (ha->ex_init_cb) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3822 | dma_pool_free(ha->s_dma_pool, |
| 3823 | ha->ex_init_cb, ha->ex_init_cb_dma); |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3824 | |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3825 | if (ha->async_pd) |
| 3826 | dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma); |
| 3827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3828 | if (ha->s_dma_pool) |
| 3829 | dma_pool_destroy(ha->s_dma_pool); |
| 3830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3831 | if (ha->gid_list) |
Chad Dupuis | 642ef98 | 2012-02-09 11:15:57 -0800 | [diff] [blame] | 3832 | dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha), |
| 3833 | ha->gid_list, ha->gid_list_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3834 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3835 | if (IS_QLA82XX(ha)) { |
| 3836 | if (!list_empty(&ha->gbl_dsd_list)) { |
| 3837 | struct dsd_dma *dsd_ptr, *tdsd_ptr; |
| 3838 | |
| 3839 | /* clean up allocated prev pool */ |
| 3840 | list_for_each_entry_safe(dsd_ptr, |
| 3841 | tdsd_ptr, &ha->gbl_dsd_list, list) { |
| 3842 | dma_pool_free(ha->dl_dma_pool, |
| 3843 | dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma); |
| 3844 | list_del(&dsd_ptr->list); |
| 3845 | kfree(dsd_ptr); |
| 3846 | } |
| 3847 | } |
| 3848 | } |
| 3849 | |
| 3850 | if (ha->dl_dma_pool) |
| 3851 | dma_pool_destroy(ha->dl_dma_pool); |
| 3852 | |
| 3853 | if (ha->fcp_cmnd_dma_pool) |
| 3854 | dma_pool_destroy(ha->fcp_cmnd_dma_pool); |
| 3855 | |
| 3856 | if (ha->ctx_mempool) |
| 3857 | mempool_destroy(ha->ctx_mempool); |
| 3858 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3859 | qlt_mem_free(ha); |
| 3860 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3861 | if (ha->init_cb) |
| 3862 | dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3863 | ha->init_cb, ha->init_cb_dma); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3864 | vfree(ha->optrom_buffer); |
| 3865 | kfree(ha->nvram); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 3866 | kfree(ha->npiv_info); |
Andrew Vasquez | 7a67735 | 2012-02-09 11:15:56 -0800 | [diff] [blame] | 3867 | kfree(ha->swl); |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 3868 | kfree(ha->loop_id_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3869 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 3870 | ha->srb_mempool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3871 | ha->ctx_mempool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3872 | ha->sns_cmd = NULL; |
| 3873 | ha->sns_cmd_dma = 0; |
| 3874 | ha->ct_sns = NULL; |
| 3875 | ha->ct_sns_dma = 0; |
| 3876 | ha->ms_iocb = NULL; |
| 3877 | ha->ms_iocb_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3878 | ha->init_cb = NULL; |
| 3879 | ha->init_cb_dma = 0; |
Andrew Vasquez | b64b0e8 | 2009-03-24 09:08:01 -0700 | [diff] [blame] | 3880 | ha->ex_init_cb = NULL; |
| 3881 | ha->ex_init_cb_dma = 0; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 3882 | ha->async_pd = NULL; |
| 3883 | ha->async_pd_dma = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3884 | |
| 3885 | ha->s_dma_pool = NULL; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3886 | ha->dl_dma_pool = NULL; |
| 3887 | ha->fcp_cmnd_dma_pool = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | ha->gid_list = NULL; |
| 3890 | ha->gid_list_dma = 0; |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 3891 | |
| 3892 | ha->tgt.atio_ring = NULL; |
| 3893 | ha->tgt.atio_dma = 0; |
| 3894 | ha->tgt.tgt_vp_map = NULL; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3895 | } |
| 3896 | |
| 3897 | struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht, |
| 3898 | struct qla_hw_data *ha) |
| 3899 | { |
| 3900 | struct Scsi_Host *host; |
| 3901 | struct scsi_qla_host *vha = NULL; |
| 3902 | |
| 3903 | host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t)); |
| 3904 | if (host == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3905 | ql_log_pci(ql_log_fatal, ha->pdev, 0x0107, |
| 3906 | "Failed to allocate host from the scsi layer, aborting.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3907 | goto fail; |
| 3908 | } |
| 3909 | |
| 3910 | /* Clear our data area */ |
| 3911 | vha = shost_priv(host); |
| 3912 | memset(vha, 0, sizeof(scsi_qla_host_t)); |
| 3913 | |
| 3914 | vha->host = host; |
| 3915 | vha->host_no = host->host_no; |
| 3916 | vha->hw = ha; |
| 3917 | |
| 3918 | INIT_LIST_HEAD(&vha->vp_fcports); |
| 3919 | INIT_LIST_HEAD(&vha->work_list); |
| 3920 | INIT_LIST_HEAD(&vha->list); |
Swapnil Nagle | 8b2f5ff | 2015-07-14 16:00:43 -0400 | [diff] [blame] | 3921 | INIT_LIST_HEAD(&vha->qla_cmd_list); |
| 3922 | INIT_LIST_HEAD(&vha->qla_sess_op_cmd_list); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3923 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3924 | spin_lock_init(&vha->work_lock); |
Swapnil Nagle | 8b2f5ff | 2015-07-14 16:00:43 -0400 | [diff] [blame] | 3925 | spin_lock_init(&vha->cmd_list_lock); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3926 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3927 | sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3928 | ql_dbg(ql_dbg_init, vha, 0x0041, |
| 3929 | "Allocated the host=%p hw=%p vha=%p dev_name=%s", |
| 3930 | vha->host, vha->hw, vha, |
| 3931 | dev_name(&(ha->pdev->dev))); |
| 3932 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3933 | return vha; |
| 3934 | |
| 3935 | fail: |
| 3936 | return vha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3937 | } |
| 3938 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3939 | static struct qla_work_evt * |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3940 | 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] | 3941 | { |
| 3942 | struct qla_work_evt *e; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3943 | uint8_t bail; |
| 3944 | |
| 3945 | QLA_VHA_MARK_BUSY(vha, bail); |
| 3946 | if (bail) |
| 3947 | return NULL; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3948 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3949 | e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3950 | if (!e) { |
| 3951 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3952 | return NULL; |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 3953 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3954 | |
| 3955 | INIT_LIST_HEAD(&e->list); |
| 3956 | e->type = type; |
| 3957 | e->flags = QLA_EVT_FLAG_FREE; |
| 3958 | return e; |
| 3959 | } |
| 3960 | |
Adrian Bunk | 01ef66b | 2008-04-24 15:21:27 -0700 | [diff] [blame] | 3961 | static int |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3962 | 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] | 3963 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3964 | unsigned long flags; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3965 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3966 | spin_lock_irqsave(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3967 | list_add_tail(&e->list, &vha->work_list); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3968 | spin_unlock_irqrestore(&vha->work_lock, flags); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3969 | qla2xxx_wake_dpc(vha); |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3970 | |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3971 | return QLA_SUCCESS; |
| 3972 | } |
| 3973 | |
| 3974 | int |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 3975 | 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] | 3976 | u32 data) |
| 3977 | { |
| 3978 | struct qla_work_evt *e; |
| 3979 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3980 | e = qla2x00_alloc_work(vha, QLA_EVT_AEN); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3981 | if (!e) |
| 3982 | return QLA_FUNCTION_FAILED; |
| 3983 | |
| 3984 | e->u.aen.code = code; |
| 3985 | e->u.aen.data = data; |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3986 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 3987 | } |
| 3988 | |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3989 | int |
| 3990 | qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb) |
| 3991 | { |
| 3992 | struct qla_work_evt *e; |
| 3993 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 3994 | e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 3995 | if (!e) |
| 3996 | return QLA_FUNCTION_FAILED; |
| 3997 | |
| 3998 | 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] | 3999 | return qla2x00_post_work(vha, e); |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 4000 | } |
| 4001 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4002 | #define qla2x00_post_async_work(name, type) \ |
| 4003 | int qla2x00_post_async_##name##_work( \ |
| 4004 | struct scsi_qla_host *vha, \ |
| 4005 | fc_port_t *fcport, uint16_t *data) \ |
| 4006 | { \ |
| 4007 | struct qla_work_evt *e; \ |
| 4008 | \ |
| 4009 | e = qla2x00_alloc_work(vha, type); \ |
| 4010 | if (!e) \ |
| 4011 | return QLA_FUNCTION_FAILED; \ |
| 4012 | \ |
| 4013 | e->u.logio.fcport = fcport; \ |
| 4014 | if (data) { \ |
| 4015 | e->u.logio.data[0] = data[0]; \ |
| 4016 | e->u.logio.data[1] = data[1]; \ |
| 4017 | } \ |
| 4018 | return qla2x00_post_work(vha, e); \ |
| 4019 | } |
| 4020 | |
| 4021 | qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN); |
| 4022 | qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE); |
| 4023 | qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT); |
| 4024 | qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE); |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4025 | qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC); |
| 4026 | qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE); |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4027 | |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 4028 | int |
| 4029 | qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code) |
| 4030 | { |
| 4031 | struct qla_work_evt *e; |
| 4032 | |
| 4033 | e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT); |
| 4034 | if (!e) |
| 4035 | return QLA_FUNCTION_FAILED; |
| 4036 | |
| 4037 | e->u.uevent.code = code; |
| 4038 | return qla2x00_post_work(vha, e); |
| 4039 | } |
| 4040 | |
| 4041 | static void |
| 4042 | qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code) |
| 4043 | { |
| 4044 | char event_string[40]; |
| 4045 | char *envp[] = { event_string, NULL }; |
| 4046 | |
| 4047 | switch (code) { |
| 4048 | case QLA_UEVENT_CODE_FW_DUMP: |
| 4049 | snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld", |
| 4050 | vha->host_no); |
| 4051 | break; |
| 4052 | default: |
| 4053 | /* do nothing */ |
| 4054 | break; |
| 4055 | } |
| 4056 | kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp); |
| 4057 | } |
| 4058 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4059 | int |
| 4060 | qlafx00_post_aenfx_work(struct scsi_qla_host *vha, uint32_t evtcode, |
| 4061 | uint32_t *data, int cnt) |
| 4062 | { |
| 4063 | struct qla_work_evt *e; |
| 4064 | |
| 4065 | e = qla2x00_alloc_work(vha, QLA_EVT_AENFX); |
| 4066 | if (!e) |
| 4067 | return QLA_FUNCTION_FAILED; |
| 4068 | |
| 4069 | e->u.aenfx.evtcode = evtcode; |
| 4070 | e->u.aenfx.count = cnt; |
| 4071 | memcpy(e->u.aenfx.mbx, data, sizeof(*data) * cnt); |
| 4072 | return qla2x00_post_work(vha, e); |
| 4073 | } |
| 4074 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4075 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4076 | qla2x00_do_work(struct scsi_qla_host *vha) |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4077 | { |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4078 | struct qla_work_evt *e, *tmp; |
| 4079 | unsigned long flags; |
| 4080 | LIST_HEAD(work); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4081 | |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4082 | spin_lock_irqsave(&vha->work_lock, flags); |
| 4083 | list_splice_init(&vha->work_list, &work); |
| 4084 | spin_unlock_irqrestore(&vha->work_lock, flags); |
| 4085 | |
| 4086 | list_for_each_entry_safe(e, tmp, &work, list) { |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4087 | list_del_init(&e->list); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4088 | |
| 4089 | switch (e->type) { |
| 4090 | case QLA_EVT_AEN: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4091 | fc_host_post_event(vha->host, fc_get_event_number(), |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4092 | e->u.aen.code, e->u.aen.data); |
| 4093 | break; |
Andrew Vasquez | 8a65957 | 2009-02-08 20:50:12 -0800 | [diff] [blame] | 4094 | case QLA_EVT_IDC_ACK: |
| 4095 | qla81xx_idc_ack(vha, e->u.idc_ack.mb); |
| 4096 | break; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4097 | case QLA_EVT_ASYNC_LOGIN: |
| 4098 | qla2x00_async_login(vha, e->u.logio.fcport, |
| 4099 | e->u.logio.data); |
| 4100 | break; |
| 4101 | case QLA_EVT_ASYNC_LOGIN_DONE: |
| 4102 | qla2x00_async_login_done(vha, e->u.logio.fcport, |
| 4103 | e->u.logio.data); |
| 4104 | break; |
| 4105 | case QLA_EVT_ASYNC_LOGOUT: |
| 4106 | qla2x00_async_logout(vha, e->u.logio.fcport); |
| 4107 | break; |
| 4108 | case QLA_EVT_ASYNC_LOGOUT_DONE: |
| 4109 | qla2x00_async_logout_done(vha, e->u.logio.fcport, |
| 4110 | e->u.logio.data); |
| 4111 | break; |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4112 | case QLA_EVT_ASYNC_ADISC: |
| 4113 | qla2x00_async_adisc(vha, e->u.logio.fcport, |
| 4114 | e->u.logio.data); |
| 4115 | break; |
| 4116 | case QLA_EVT_ASYNC_ADISC_DONE: |
| 4117 | qla2x00_async_adisc_done(vha, e->u.logio.fcport, |
| 4118 | e->u.logio.data); |
| 4119 | break; |
Andrew Vasquez | 3420d36 | 2009-10-13 15:16:45 -0700 | [diff] [blame] | 4120 | case QLA_EVT_UEVENT: |
| 4121 | qla2x00_uevent_emit(vha, e->u.uevent.code); |
| 4122 | break; |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 4123 | case QLA_EVT_AENFX: |
| 4124 | qlafx00_process_aen(vha, e); |
| 4125 | break; |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4126 | } |
| 4127 | if (e->flags & QLA_EVT_FLAG_FREE) |
| 4128 | kfree(e); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 4129 | |
| 4130 | /* For each work completed decrement vha ref count */ |
| 4131 | QLA_VHA_MARK_NOT_BUSY(vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4132 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4133 | } |
Andrew Vasquez | f999f4c | 2009-06-03 09:55:28 -0700 | [diff] [blame] | 4134 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4135 | /* Relogins all the fcports of a vport |
| 4136 | * Context: dpc thread |
| 4137 | */ |
| 4138 | void qla2x00_relogin(struct scsi_qla_host *vha) |
| 4139 | { |
| 4140 | fc_port_t *fcport; |
Andrew Vasquez | c6b2fca | 2009-03-05 11:07:03 -0800 | [diff] [blame] | 4141 | int status; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4142 | uint16_t next_loopid = 0; |
| 4143 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4144 | uint16_t data[2]; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4145 | |
| 4146 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
| 4147 | /* |
| 4148 | * If the port is not ONLINE then try to login |
| 4149 | * to it if we haven't run out of retries. |
| 4150 | */ |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4151 | if (atomic_read(&fcport->state) != FCS_ONLINE && |
| 4152 | fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4153 | fcport->login_retry--; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4154 | if (fcport->flags & FCF_FABRIC_DEVICE) { |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 4155 | if (fcport->flags & FCF_FCP2_DEVICE) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4156 | ha->isp_ops->fabric_logout(vha, |
| 4157 | fcport->loop_id, |
| 4158 | fcport->d_id.b.domain, |
| 4159 | fcport->d_id.b.area, |
| 4160 | fcport->d_id.b.al_pa); |
| 4161 | |
Joe Carnuccio | 03bcfb5 | 2011-03-30 11:46:27 -0700 | [diff] [blame] | 4162 | if (fcport->loop_id == FC_NO_LOOP_ID) { |
| 4163 | fcport->loop_id = next_loopid = |
| 4164 | ha->min_external_loopid; |
| 4165 | status = qla2x00_find_new_loop_id( |
| 4166 | vha, fcport); |
| 4167 | if (status != QLA_SUCCESS) { |
| 4168 | /* Ran out of IDs to use */ |
| 4169 | break; |
| 4170 | } |
| 4171 | } |
| 4172 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4173 | if (IS_ALOGIO_CAPABLE(ha)) { |
Andrew Vasquez | 5ff1d58 | 2010-05-04 15:01:26 -0700 | [diff] [blame] | 4174 | fcport->flags |= FCF_ASYNC_SENT; |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4175 | data[0] = 0; |
| 4176 | data[1] = QLA_LOGIO_LOGIN_RETRIED; |
| 4177 | status = qla2x00_post_async_login_work( |
| 4178 | vha, fcport, data); |
| 4179 | if (status == QLA_SUCCESS) |
| 4180 | continue; |
| 4181 | /* Attempt a retry. */ |
| 4182 | status = 1; |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4183 | } else { |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 4184 | status = qla2x00_fabric_login(vha, |
| 4185 | fcport, &next_loopid); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4186 | if (status == QLA_SUCCESS) { |
| 4187 | int status2; |
| 4188 | uint8_t opts; |
| 4189 | |
| 4190 | opts = 0; |
| 4191 | if (fcport->flags & |
| 4192 | FCF_FCP2_DEVICE) |
| 4193 | opts |= BIT_1; |
Saurav Kashyap | 0300396 | 2012-11-21 02:40:31 -0500 | [diff] [blame] | 4194 | status2 = |
| 4195 | qla2x00_get_port_database( |
| 4196 | vha, fcport, opts); |
Saurav Kashyap | aaf4d3e | 2012-04-25 07:26:16 -0700 | [diff] [blame] | 4197 | if (status2 != QLA_SUCCESS) |
| 4198 | status = 1; |
| 4199 | } |
| 4200 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4201 | } else |
| 4202 | status = qla2x00_local_device_login(vha, |
| 4203 | fcport); |
| 4204 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4205 | if (status == QLA_SUCCESS) { |
| 4206 | fcport->old_loop_id = fcport->loop_id; |
| 4207 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4208 | ql_dbg(ql_dbg_disc, vha, 0x2003, |
| 4209 | "Port login OK: logged in ID 0x%x.\n", |
| 4210 | fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4211 | |
| 4212 | qla2x00_update_fcport(vha, fcport); |
| 4213 | |
| 4214 | } else if (status == 1) { |
| 4215 | set_bit(RELOGIN_NEEDED, &vha->dpc_flags); |
| 4216 | /* retry the login again */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4217 | ql_dbg(ql_dbg_disc, vha, 0x2007, |
| 4218 | "Retrying %d login again loop_id 0x%x.\n", |
| 4219 | fcport->login_retry, fcport->loop_id); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4220 | } else { |
| 4221 | fcport->login_retry = 0; |
| 4222 | } |
| 4223 | |
| 4224 | if (fcport->login_retry == 0 && status != QLA_SUCCESS) |
Chad Dupuis | 5f16b33 | 2012-08-22 14:21:00 -0400 | [diff] [blame] | 4225 | qla2x00_clear_loop_id(fcport); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4226 | } |
| 4227 | if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) |
| 4228 | break; |
| 4229 | } |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4230 | } |
| 4231 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4232 | /* Schedule work on any of the dpc-workqueues */ |
| 4233 | void |
| 4234 | qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code) |
| 4235 | { |
| 4236 | struct qla_hw_data *ha = base_vha->hw; |
| 4237 | |
| 4238 | switch (work_code) { |
| 4239 | case MBA_IDC_AEN: /* 0x8200 */ |
| 4240 | if (ha->dpc_lp_wq) |
| 4241 | queue_work(ha->dpc_lp_wq, &ha->idc_aen); |
| 4242 | break; |
| 4243 | |
| 4244 | case QLA83XX_NIC_CORE_RESET: /* 0x1 */ |
| 4245 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4246 | if (ha->dpc_hp_wq) |
| 4247 | queue_work(ha->dpc_hp_wq, &ha->nic_core_reset); |
| 4248 | } else |
| 4249 | ql_dbg(ql_dbg_p3p, base_vha, 0xb05e, |
| 4250 | "NIC Core reset is already active. Skip " |
| 4251 | "scheduling it again.\n"); |
| 4252 | break; |
| 4253 | case QLA83XX_IDC_STATE_HANDLER: /* 0x2 */ |
| 4254 | if (ha->dpc_hp_wq) |
| 4255 | queue_work(ha->dpc_hp_wq, &ha->idc_state_handler); |
| 4256 | break; |
| 4257 | case QLA83XX_NIC_CORE_UNRECOVERABLE: /* 0x3 */ |
| 4258 | if (ha->dpc_hp_wq) |
| 4259 | queue_work(ha->dpc_hp_wq, &ha->nic_core_unrecoverable); |
| 4260 | break; |
| 4261 | default: |
| 4262 | ql_log(ql_log_warn, base_vha, 0xb05f, |
Masanari Iida | d939be3 | 2015-02-27 23:52:31 +0900 | [diff] [blame] | 4263 | "Unknown work-code=0x%x.\n", work_code); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4264 | } |
| 4265 | |
| 4266 | return; |
| 4267 | } |
| 4268 | |
| 4269 | /* Work: Perform NIC Core Unrecoverable state handling */ |
| 4270 | void |
| 4271 | qla83xx_nic_core_unrecoverable_work(struct work_struct *work) |
| 4272 | { |
| 4273 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4274 | container_of(work, struct qla_hw_data, nic_core_unrecoverable); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4275 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4276 | uint32_t dev_state = 0; |
| 4277 | |
| 4278 | qla83xx_idc_lock(base_vha, 0); |
| 4279 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4280 | qla83xx_reset_ownership(base_vha); |
| 4281 | if (ha->flags.nic_core_reset_owner) { |
| 4282 | ha->flags.nic_core_reset_owner = 0; |
| 4283 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4284 | QLA8XXX_DEV_FAILED); |
| 4285 | ql_log(ql_log_info, base_vha, 0xb060, "HW State: FAILED.\n"); |
| 4286 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4287 | } |
| 4288 | qla83xx_idc_unlock(base_vha, 0); |
| 4289 | } |
| 4290 | |
| 4291 | /* Work: Execute IDC state handler */ |
| 4292 | void |
| 4293 | qla83xx_idc_state_handler_work(struct work_struct *work) |
| 4294 | { |
| 4295 | struct qla_hw_data *ha = |
Arun Easi | 2ad1b67 | 2012-08-22 14:21:35 -0400 | [diff] [blame] | 4296 | container_of(work, struct qla_hw_data, idc_state_handler); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4297 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4298 | uint32_t dev_state = 0; |
| 4299 | |
| 4300 | qla83xx_idc_lock(base_vha, 0); |
| 4301 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4302 | if (dev_state == QLA8XXX_DEV_FAILED || |
| 4303 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) |
| 4304 | qla83xx_idc_state_handler(base_vha); |
| 4305 | qla83xx_idc_unlock(base_vha, 0); |
| 4306 | } |
| 4307 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4308 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4309 | qla83xx_check_nic_core_fw_alive(scsi_qla_host_t *base_vha) |
| 4310 | { |
| 4311 | int rval = QLA_SUCCESS; |
| 4312 | unsigned long heart_beat_wait = jiffies + (1 * HZ); |
| 4313 | uint32_t heart_beat_counter1, heart_beat_counter2; |
| 4314 | |
| 4315 | do { |
| 4316 | if (time_after(jiffies, heart_beat_wait)) { |
| 4317 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07c, |
| 4318 | "Nic Core f/w is not alive.\n"); |
| 4319 | rval = QLA_FUNCTION_FAILED; |
| 4320 | break; |
| 4321 | } |
| 4322 | |
| 4323 | qla83xx_idc_lock(base_vha, 0); |
| 4324 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4325 | &heart_beat_counter1); |
| 4326 | qla83xx_idc_unlock(base_vha, 0); |
| 4327 | msleep(100); |
| 4328 | qla83xx_idc_lock(base_vha, 0); |
| 4329 | qla83xx_rd_reg(base_vha, QLA83XX_FW_HEARTBEAT, |
| 4330 | &heart_beat_counter2); |
| 4331 | qla83xx_idc_unlock(base_vha, 0); |
| 4332 | } while (heart_beat_counter1 == heart_beat_counter2); |
| 4333 | |
| 4334 | return rval; |
| 4335 | } |
| 4336 | |
| 4337 | /* Work: Perform NIC Core Reset handling */ |
| 4338 | void |
| 4339 | qla83xx_nic_core_reset_work(struct work_struct *work) |
| 4340 | { |
| 4341 | struct qla_hw_data *ha = |
| 4342 | container_of(work, struct qla_hw_data, nic_core_reset); |
| 4343 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4344 | uint32_t dev_state = 0; |
| 4345 | |
Saurav Kashyap | 8117877 | 2012-08-22 14:21:04 -0400 | [diff] [blame] | 4346 | if (IS_QLA2031(ha)) { |
| 4347 | if (qla2xxx_mctp_dump(base_vha) != QLA_SUCCESS) |
| 4348 | ql_log(ql_log_warn, base_vha, 0xb081, |
| 4349 | "Failed to dump mctp\n"); |
| 4350 | return; |
| 4351 | } |
| 4352 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4353 | if (!ha->flags.nic_core_reset_hdlr_active) { |
| 4354 | if (qla83xx_check_nic_core_fw_alive(base_vha) == QLA_SUCCESS) { |
| 4355 | qla83xx_idc_lock(base_vha, 0); |
| 4356 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4357 | &dev_state); |
| 4358 | qla83xx_idc_unlock(base_vha, 0); |
| 4359 | if (dev_state != QLA8XXX_DEV_NEED_RESET) { |
| 4360 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07a, |
| 4361 | "Nic Core f/w is alive.\n"); |
| 4362 | return; |
| 4363 | } |
| 4364 | } |
| 4365 | |
| 4366 | ha->flags.nic_core_reset_hdlr_active = 1; |
| 4367 | if (qla83xx_nic_core_reset(base_vha)) { |
| 4368 | /* NIC Core reset failed. */ |
| 4369 | ql_dbg(ql_dbg_p3p, base_vha, 0xb061, |
| 4370 | "NIC Core reset failed.\n"); |
| 4371 | } |
| 4372 | ha->flags.nic_core_reset_hdlr_active = 0; |
| 4373 | } |
| 4374 | } |
| 4375 | |
| 4376 | /* Work: Handle 8200 IDC aens */ |
| 4377 | void |
| 4378 | qla83xx_service_idc_aen(struct work_struct *work) |
| 4379 | { |
| 4380 | struct qla_hw_data *ha = |
| 4381 | container_of(work, struct qla_hw_data, idc_aen); |
| 4382 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4383 | uint32_t dev_state, idc_control; |
| 4384 | |
| 4385 | qla83xx_idc_lock(base_vha, 0); |
| 4386 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4387 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_CONTROL, &idc_control); |
| 4388 | qla83xx_idc_unlock(base_vha, 0); |
| 4389 | if (dev_state == QLA8XXX_DEV_NEED_RESET) { |
| 4390 | if (idc_control & QLA83XX_IDC_GRACEFUL_RESET) { |
| 4391 | ql_dbg(ql_dbg_p3p, base_vha, 0xb062, |
| 4392 | "Application requested NIC Core Reset.\n"); |
| 4393 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4394 | } else if (qla83xx_check_nic_core_fw_alive(base_vha) == |
| 4395 | QLA_SUCCESS) { |
| 4396 | ql_dbg(ql_dbg_p3p, base_vha, 0xb07b, |
| 4397 | "Other protocol driver requested NIC Core Reset.\n"); |
| 4398 | qla83xx_schedule_work(base_vha, QLA83XX_NIC_CORE_RESET); |
| 4399 | } |
| 4400 | } else if (dev_state == QLA8XXX_DEV_FAILED || |
| 4401 | dev_state == QLA8XXX_DEV_NEED_QUIESCENT) { |
| 4402 | qla83xx_schedule_work(base_vha, QLA83XX_IDC_STATE_HANDLER); |
| 4403 | } |
| 4404 | } |
| 4405 | |
| 4406 | static void |
| 4407 | qla83xx_wait_logic(void) |
| 4408 | { |
| 4409 | int i; |
| 4410 | |
| 4411 | /* Yield CPU */ |
| 4412 | if (!in_interrupt()) { |
| 4413 | /* |
| 4414 | * Wait about 200ms before retrying again. |
| 4415 | * This controls the number of retries for single |
| 4416 | * lock operation. |
| 4417 | */ |
| 4418 | msleep(100); |
| 4419 | schedule(); |
| 4420 | } else { |
| 4421 | for (i = 0; i < 20; i++) |
| 4422 | cpu_relax(); /* This a nop instr on i386 */ |
| 4423 | } |
| 4424 | } |
| 4425 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4426 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4427 | qla83xx_force_lock_recovery(scsi_qla_host_t *base_vha) |
| 4428 | { |
| 4429 | int rval; |
| 4430 | uint32_t data; |
| 4431 | uint32_t idc_lck_rcvry_stage_mask = 0x3; |
| 4432 | uint32_t idc_lck_rcvry_owner_mask = 0x3c; |
| 4433 | struct qla_hw_data *ha = base_vha->hw; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4434 | ql_dbg(ql_dbg_p3p, base_vha, 0xb086, |
| 4435 | "Trying force recovery of the IDC lock.\n"); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4436 | |
| 4437 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, &data); |
| 4438 | if (rval) |
| 4439 | return rval; |
| 4440 | |
| 4441 | if ((data & idc_lck_rcvry_stage_mask) > 0) { |
| 4442 | return QLA_SUCCESS; |
| 4443 | } else { |
| 4444 | data = (IDC_LOCK_RECOVERY_STAGE1) | (ha->portnum << 2); |
| 4445 | rval = qla83xx_wr_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4446 | data); |
| 4447 | if (rval) |
| 4448 | return rval; |
| 4449 | |
| 4450 | msleep(200); |
| 4451 | |
| 4452 | rval = qla83xx_rd_reg(base_vha, QLA83XX_IDC_LOCK_RECOVERY, |
| 4453 | &data); |
| 4454 | if (rval) |
| 4455 | return rval; |
| 4456 | |
| 4457 | if (((data & idc_lck_rcvry_owner_mask) >> 2) == ha->portnum) { |
| 4458 | data &= (IDC_LOCK_RECOVERY_STAGE2 | |
| 4459 | ~(idc_lck_rcvry_stage_mask)); |
| 4460 | rval = qla83xx_wr_reg(base_vha, |
| 4461 | QLA83XX_IDC_LOCK_RECOVERY, data); |
| 4462 | if (rval) |
| 4463 | return rval; |
| 4464 | |
| 4465 | /* Forcefully perform IDC UnLock */ |
| 4466 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, |
| 4467 | &data); |
| 4468 | if (rval) |
| 4469 | return rval; |
| 4470 | /* Clear lock-id by setting 0xff */ |
| 4471 | rval = qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4472 | 0xff); |
| 4473 | if (rval) |
| 4474 | return rval; |
| 4475 | /* Clear lock-recovery by setting 0x0 */ |
| 4476 | rval = qla83xx_wr_reg(base_vha, |
| 4477 | QLA83XX_IDC_LOCK_RECOVERY, 0x0); |
| 4478 | if (rval) |
| 4479 | return rval; |
| 4480 | } else |
| 4481 | return QLA_SUCCESS; |
| 4482 | } |
| 4483 | |
| 4484 | return rval; |
| 4485 | } |
| 4486 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4487 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4488 | qla83xx_idc_lock_recovery(scsi_qla_host_t *base_vha) |
| 4489 | { |
| 4490 | int rval = QLA_SUCCESS; |
| 4491 | uint32_t o_drv_lockid, n_drv_lockid; |
| 4492 | unsigned long lock_recovery_timeout; |
| 4493 | |
| 4494 | lock_recovery_timeout = jiffies + QLA83XX_MAX_LOCK_RECOVERY_WAIT; |
| 4495 | retry_lockid: |
| 4496 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &o_drv_lockid); |
| 4497 | if (rval) |
| 4498 | goto exit; |
| 4499 | |
| 4500 | /* MAX wait time before forcing IDC Lock recovery = 2 secs */ |
| 4501 | if (time_after_eq(jiffies, lock_recovery_timeout)) { |
| 4502 | if (qla83xx_force_lock_recovery(base_vha) == QLA_SUCCESS) |
| 4503 | return QLA_SUCCESS; |
| 4504 | else |
| 4505 | return QLA_FUNCTION_FAILED; |
| 4506 | } |
| 4507 | |
| 4508 | rval = qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &n_drv_lockid); |
| 4509 | if (rval) |
| 4510 | goto exit; |
| 4511 | |
| 4512 | if (o_drv_lockid == n_drv_lockid) { |
| 4513 | qla83xx_wait_logic(); |
| 4514 | goto retry_lockid; |
| 4515 | } else |
| 4516 | return QLA_SUCCESS; |
| 4517 | |
| 4518 | exit: |
| 4519 | return rval; |
| 4520 | } |
| 4521 | |
| 4522 | void |
| 4523 | qla83xx_idc_lock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4524 | { |
| 4525 | uint16_t options = (requester_id << 15) | BIT_6; |
| 4526 | uint32_t data; |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4527 | uint32_t lock_owner; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4528 | struct qla_hw_data *ha = base_vha->hw; |
| 4529 | |
| 4530 | /* IDC-lock implementation using driver-lock/lock-id remote registers */ |
| 4531 | retry_lock: |
| 4532 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCK, &data) |
| 4533 | == QLA_SUCCESS) { |
| 4534 | if (data) { |
| 4535 | /* Setting lock-id to our function-number */ |
| 4536 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4537 | ha->portnum); |
| 4538 | } else { |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4539 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, |
| 4540 | &lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4541 | ql_dbg(ql_dbg_p3p, base_vha, 0xb063, |
Saurav Kashyap | 6c31555 | 2013-02-08 01:57:53 -0500 | [diff] [blame] | 4542 | "Failed to acquire IDC lock, acquired by %d, " |
| 4543 | "retrying...\n", lock_owner); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4544 | |
| 4545 | /* Retry/Perform IDC-Lock recovery */ |
| 4546 | if (qla83xx_idc_lock_recovery(base_vha) |
| 4547 | == QLA_SUCCESS) { |
| 4548 | qla83xx_wait_logic(); |
| 4549 | goto retry_lock; |
| 4550 | } else |
| 4551 | ql_log(ql_log_warn, base_vha, 0xb075, |
| 4552 | "IDC Lock recovery FAILED.\n"); |
| 4553 | } |
| 4554 | |
| 4555 | } |
| 4556 | |
| 4557 | return; |
| 4558 | |
| 4559 | /* XXX: IDC-lock implementation using access-control mbx */ |
| 4560 | retry_lock2: |
| 4561 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4562 | ql_dbg(ql_dbg_p3p, base_vha, 0xb072, |
| 4563 | "Failed to acquire IDC lock. retrying...\n"); |
| 4564 | /* Retry/Perform IDC-Lock recovery */ |
| 4565 | if (qla83xx_idc_lock_recovery(base_vha) == QLA_SUCCESS) { |
| 4566 | qla83xx_wait_logic(); |
| 4567 | goto retry_lock2; |
| 4568 | } else |
| 4569 | ql_log(ql_log_warn, base_vha, 0xb076, |
| 4570 | "IDC Lock recovery FAILED.\n"); |
| 4571 | } |
| 4572 | |
| 4573 | return; |
| 4574 | } |
| 4575 | |
| 4576 | void |
| 4577 | qla83xx_idc_unlock(scsi_qla_host_t *base_vha, uint16_t requester_id) |
| 4578 | { |
Bart Van Assche | 5897cb2 | 2015-06-04 15:57:20 -0700 | [diff] [blame] | 4579 | #if 0 |
| 4580 | uint16_t options = (requester_id << 15) | BIT_7; |
| 4581 | #endif |
| 4582 | uint16_t retry; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4583 | uint32_t data; |
| 4584 | struct qla_hw_data *ha = base_vha->hw; |
| 4585 | |
| 4586 | /* IDC-unlock implementation using driver-unlock/lock-id |
| 4587 | * remote registers |
| 4588 | */ |
| 4589 | retry = 0; |
| 4590 | retry_unlock: |
| 4591 | if (qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_LOCKID, &data) |
| 4592 | == QLA_SUCCESS) { |
| 4593 | if (data == ha->portnum) { |
| 4594 | qla83xx_rd_reg(base_vha, QLA83XX_DRIVER_UNLOCK, &data); |
| 4595 | /* Clearing lock-id by setting 0xff */ |
| 4596 | qla83xx_wr_reg(base_vha, QLA83XX_DRIVER_LOCKID, 0xff); |
| 4597 | } else if (retry < 10) { |
| 4598 | /* SV: XXX: IDC unlock retrying needed here? */ |
| 4599 | |
| 4600 | /* Retry for IDC-unlock */ |
| 4601 | qla83xx_wait_logic(); |
| 4602 | retry++; |
| 4603 | ql_dbg(ql_dbg_p3p, base_vha, 0xb064, |
| 4604 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4605 | goto retry_unlock; |
| 4606 | } |
| 4607 | } else if (retry < 10) { |
| 4608 | /* Retry for IDC-unlock */ |
| 4609 | qla83xx_wait_logic(); |
| 4610 | retry++; |
| 4611 | ql_dbg(ql_dbg_p3p, base_vha, 0xb065, |
| 4612 | "Failed to read drv-lockid, retyring=%d\n", retry); |
| 4613 | goto retry_unlock; |
| 4614 | } |
| 4615 | |
| 4616 | return; |
| 4617 | |
Bart Van Assche | 5897cb2 | 2015-06-04 15:57:20 -0700 | [diff] [blame] | 4618 | #if 0 |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4619 | /* XXX: IDC-unlock implementation using access-control mbx */ |
| 4620 | retry = 0; |
| 4621 | retry_unlock2: |
| 4622 | if (qla83xx_access_control(base_vha, options, 0, 0, NULL)) { |
| 4623 | if (retry < 10) { |
| 4624 | /* Retry for IDC-unlock */ |
| 4625 | qla83xx_wait_logic(); |
| 4626 | retry++; |
| 4627 | ql_dbg(ql_dbg_p3p, base_vha, 0xb066, |
| 4628 | "Failed to release IDC lock, retyring=%d\n", retry); |
| 4629 | goto retry_unlock2; |
| 4630 | } |
| 4631 | } |
| 4632 | |
| 4633 | return; |
Bart Van Assche | 5897cb2 | 2015-06-04 15:57:20 -0700 | [diff] [blame] | 4634 | #endif |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4635 | } |
| 4636 | |
| 4637 | int |
| 4638 | __qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4639 | { |
| 4640 | int rval = QLA_SUCCESS; |
| 4641 | struct qla_hw_data *ha = vha->hw; |
| 4642 | uint32_t drv_presence; |
| 4643 | |
| 4644 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4645 | if (rval == QLA_SUCCESS) { |
| 4646 | drv_presence |= (1 << ha->portnum); |
| 4647 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4648 | drv_presence); |
| 4649 | } |
| 4650 | |
| 4651 | return rval; |
| 4652 | } |
| 4653 | |
| 4654 | int |
| 4655 | qla83xx_set_drv_presence(scsi_qla_host_t *vha) |
| 4656 | { |
| 4657 | int rval = QLA_SUCCESS; |
| 4658 | |
| 4659 | qla83xx_idc_lock(vha, 0); |
| 4660 | rval = __qla83xx_set_drv_presence(vha); |
| 4661 | qla83xx_idc_unlock(vha, 0); |
| 4662 | |
| 4663 | return rval; |
| 4664 | } |
| 4665 | |
| 4666 | int |
| 4667 | __qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4668 | { |
| 4669 | int rval = QLA_SUCCESS; |
| 4670 | struct qla_hw_data *ha = vha->hw; |
| 4671 | uint32_t drv_presence; |
| 4672 | |
| 4673 | rval = qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
| 4674 | if (rval == QLA_SUCCESS) { |
| 4675 | drv_presence &= ~(1 << ha->portnum); |
| 4676 | rval = qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4677 | drv_presence); |
| 4678 | } |
| 4679 | |
| 4680 | return rval; |
| 4681 | } |
| 4682 | |
| 4683 | int |
| 4684 | qla83xx_clear_drv_presence(scsi_qla_host_t *vha) |
| 4685 | { |
| 4686 | int rval = QLA_SUCCESS; |
| 4687 | |
| 4688 | qla83xx_idc_lock(vha, 0); |
| 4689 | rval = __qla83xx_clear_drv_presence(vha); |
| 4690 | qla83xx_idc_unlock(vha, 0); |
| 4691 | |
| 4692 | return rval; |
| 4693 | } |
| 4694 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4695 | static void |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4696 | qla83xx_need_reset_handler(scsi_qla_host_t *vha) |
| 4697 | { |
| 4698 | struct qla_hw_data *ha = vha->hw; |
| 4699 | uint32_t drv_ack, drv_presence; |
| 4700 | unsigned long ack_timeout; |
| 4701 | |
| 4702 | /* Wait for IDC ACK from all functions (DRV-ACK == DRV-PRESENCE) */ |
| 4703 | ack_timeout = jiffies + (ha->fcoe_reset_timeout * HZ); |
| 4704 | while (1) { |
| 4705 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRIVER_ACK, &drv_ack); |
| 4706 | qla83xx_rd_reg(vha, QLA83XX_IDC_DRV_PRESENCE, &drv_presence); |
Saurav Kashyap | 807fb6d | 2012-11-21 02:40:36 -0500 | [diff] [blame] | 4707 | if ((drv_ack & drv_presence) == drv_presence) |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4708 | break; |
| 4709 | |
| 4710 | if (time_after_eq(jiffies, ack_timeout)) { |
| 4711 | ql_log(ql_log_warn, vha, 0xb067, |
| 4712 | "RESET ACK TIMEOUT! drv_presence=0x%x " |
| 4713 | "drv_ack=0x%x\n", drv_presence, drv_ack); |
| 4714 | /* |
| 4715 | * The function(s) which did not ack in time are forced |
| 4716 | * to withdraw any further participation in the IDC |
| 4717 | * reset. |
| 4718 | */ |
| 4719 | if (drv_ack != drv_presence) |
| 4720 | qla83xx_wr_reg(vha, QLA83XX_IDC_DRV_PRESENCE, |
| 4721 | drv_ack); |
| 4722 | break; |
| 4723 | } |
| 4724 | |
| 4725 | qla83xx_idc_unlock(vha, 0); |
| 4726 | msleep(1000); |
| 4727 | qla83xx_idc_lock(vha, 0); |
| 4728 | } |
| 4729 | |
| 4730 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_COLD); |
| 4731 | ql_log(ql_log_info, vha, 0xb068, "HW State: COLD/RE-INIT.\n"); |
| 4732 | } |
| 4733 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 4734 | static int |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4735 | qla83xx_device_bootstrap(scsi_qla_host_t *vha) |
| 4736 | { |
| 4737 | int rval = QLA_SUCCESS; |
| 4738 | uint32_t idc_control; |
| 4739 | |
| 4740 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_INITIALIZING); |
| 4741 | ql_log(ql_log_info, vha, 0xb069, "HW State: INITIALIZING.\n"); |
| 4742 | |
| 4743 | /* Clearing IDC-Control Graceful-Reset Bit before resetting f/w */ |
| 4744 | __qla83xx_get_idc_control(vha, &idc_control); |
| 4745 | idc_control &= ~QLA83XX_IDC_GRACEFUL_RESET; |
| 4746 | __qla83xx_set_idc_control(vha, 0); |
| 4747 | |
| 4748 | qla83xx_idc_unlock(vha, 0); |
| 4749 | rval = qla83xx_restart_nic_firmware(vha); |
| 4750 | qla83xx_idc_lock(vha, 0); |
| 4751 | |
| 4752 | if (rval != QLA_SUCCESS) { |
| 4753 | ql_log(ql_log_fatal, vha, 0xb06a, |
| 4754 | "Failed to restart NIC f/w.\n"); |
| 4755 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_FAILED); |
| 4756 | ql_log(ql_log_info, vha, 0xb06b, "HW State: FAILED.\n"); |
| 4757 | } else { |
| 4758 | ql_dbg(ql_dbg_p3p, vha, 0xb06c, |
| 4759 | "Success in restarting nic f/w.\n"); |
| 4760 | qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE, QLA8XXX_DEV_READY); |
| 4761 | ql_log(ql_log_info, vha, 0xb06d, "HW State: READY.\n"); |
| 4762 | } |
| 4763 | |
| 4764 | return rval; |
| 4765 | } |
| 4766 | |
| 4767 | /* Assumes idc_lock always held on entry */ |
| 4768 | int |
| 4769 | qla83xx_idc_state_handler(scsi_qla_host_t *base_vha) |
| 4770 | { |
| 4771 | struct qla_hw_data *ha = base_vha->hw; |
| 4772 | int rval = QLA_SUCCESS; |
| 4773 | unsigned long dev_init_timeout; |
| 4774 | uint32_t dev_state; |
| 4775 | |
| 4776 | /* Wait for MAX-INIT-TIMEOUT for the device to go ready */ |
| 4777 | dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ); |
| 4778 | |
| 4779 | while (1) { |
| 4780 | |
| 4781 | if (time_after_eq(jiffies, dev_init_timeout)) { |
| 4782 | ql_log(ql_log_warn, base_vha, 0xb06e, |
| 4783 | "Initialization TIMEOUT!\n"); |
| 4784 | /* Init timeout. Disable further NIC Core |
| 4785 | * communication. |
| 4786 | */ |
| 4787 | qla83xx_wr_reg(base_vha, QLA83XX_IDC_DEV_STATE, |
| 4788 | QLA8XXX_DEV_FAILED); |
| 4789 | ql_log(ql_log_info, base_vha, 0xb06f, |
| 4790 | "HW State: FAILED.\n"); |
| 4791 | } |
| 4792 | |
| 4793 | qla83xx_rd_reg(base_vha, QLA83XX_IDC_DEV_STATE, &dev_state); |
| 4794 | switch (dev_state) { |
| 4795 | case QLA8XXX_DEV_READY: |
| 4796 | if (ha->flags.nic_core_reset_owner) |
| 4797 | qla83xx_idc_audit(base_vha, |
| 4798 | IDC_AUDIT_COMPLETION); |
| 4799 | ha->flags.nic_core_reset_owner = 0; |
| 4800 | ql_dbg(ql_dbg_p3p, base_vha, 0xb070, |
| 4801 | "Reset_owner reset by 0x%x.\n", |
| 4802 | ha->portnum); |
| 4803 | goto exit; |
| 4804 | case QLA8XXX_DEV_COLD: |
| 4805 | if (ha->flags.nic_core_reset_owner) |
| 4806 | rval = qla83xx_device_bootstrap(base_vha); |
| 4807 | else { |
| 4808 | /* Wait for AEN to change device-state */ |
| 4809 | qla83xx_idc_unlock(base_vha, 0); |
| 4810 | msleep(1000); |
| 4811 | qla83xx_idc_lock(base_vha, 0); |
| 4812 | } |
| 4813 | break; |
| 4814 | case QLA8XXX_DEV_INITIALIZING: |
| 4815 | /* Wait for AEN to change device-state */ |
| 4816 | qla83xx_idc_unlock(base_vha, 0); |
| 4817 | msleep(1000); |
| 4818 | qla83xx_idc_lock(base_vha, 0); |
| 4819 | break; |
| 4820 | case QLA8XXX_DEV_NEED_RESET: |
| 4821 | if (!ql2xdontresethba && ha->flags.nic_core_reset_owner) |
| 4822 | qla83xx_need_reset_handler(base_vha); |
| 4823 | else { |
| 4824 | /* Wait for AEN to change device-state */ |
| 4825 | qla83xx_idc_unlock(base_vha, 0); |
| 4826 | msleep(1000); |
| 4827 | qla83xx_idc_lock(base_vha, 0); |
| 4828 | } |
| 4829 | /* reset timeout value after need reset handler */ |
| 4830 | dev_init_timeout = jiffies + |
| 4831 | (ha->fcoe_dev_init_timeout * HZ); |
| 4832 | break; |
| 4833 | case QLA8XXX_DEV_NEED_QUIESCENT: |
| 4834 | /* XXX: DEBUG for now */ |
| 4835 | qla83xx_idc_unlock(base_vha, 0); |
| 4836 | msleep(1000); |
| 4837 | qla83xx_idc_lock(base_vha, 0); |
| 4838 | break; |
| 4839 | case QLA8XXX_DEV_QUIESCENT: |
| 4840 | /* XXX: DEBUG for now */ |
| 4841 | if (ha->flags.quiesce_owner) |
| 4842 | goto exit; |
| 4843 | |
| 4844 | qla83xx_idc_unlock(base_vha, 0); |
| 4845 | msleep(1000); |
| 4846 | qla83xx_idc_lock(base_vha, 0); |
| 4847 | dev_init_timeout = jiffies + |
| 4848 | (ha->fcoe_dev_init_timeout * HZ); |
| 4849 | break; |
| 4850 | case QLA8XXX_DEV_FAILED: |
| 4851 | if (ha->flags.nic_core_reset_owner) |
| 4852 | qla83xx_idc_audit(base_vha, |
| 4853 | IDC_AUDIT_COMPLETION); |
| 4854 | ha->flags.nic_core_reset_owner = 0; |
| 4855 | __qla83xx_clear_drv_presence(base_vha); |
| 4856 | qla83xx_idc_unlock(base_vha, 0); |
| 4857 | qla8xxx_dev_failed_handler(base_vha); |
| 4858 | rval = QLA_FUNCTION_FAILED; |
| 4859 | qla83xx_idc_lock(base_vha, 0); |
| 4860 | goto exit; |
| 4861 | case QLA8XXX_BAD_VALUE: |
| 4862 | qla83xx_idc_unlock(base_vha, 0); |
| 4863 | msleep(1000); |
| 4864 | qla83xx_idc_lock(base_vha, 0); |
| 4865 | break; |
| 4866 | default: |
| 4867 | ql_log(ql_log_warn, base_vha, 0xb071, |
Masanari Iida | d939be3 | 2015-02-27 23:52:31 +0900 | [diff] [blame] | 4868 | "Unknown Device State: %x.\n", dev_state); |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 4869 | qla83xx_idc_unlock(base_vha, 0); |
| 4870 | qla8xxx_dev_failed_handler(base_vha); |
| 4871 | rval = QLA_FUNCTION_FAILED; |
| 4872 | qla83xx_idc_lock(base_vha, 0); |
| 4873 | goto exit; |
| 4874 | } |
| 4875 | } |
| 4876 | |
| 4877 | exit: |
| 4878 | return rval; |
| 4879 | } |
| 4880 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4881 | void |
| 4882 | qla2x00_disable_board_on_pci_error(struct work_struct *work) |
| 4883 | { |
| 4884 | struct qla_hw_data *ha = container_of(work, struct qla_hw_data, |
| 4885 | board_disable); |
| 4886 | struct pci_dev *pdev = ha->pdev; |
| 4887 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 4888 | |
| 4889 | ql_log(ql_log_warn, base_vha, 0x015b, |
| 4890 | "Disabling adapter.\n"); |
| 4891 | |
| 4892 | set_bit(UNLOADING, &base_vha->dpc_flags); |
| 4893 | |
| 4894 | qla2x00_delete_all_vps(ha, base_vha); |
| 4895 | |
| 4896 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 4897 | |
| 4898 | qla2x00_dfs_remove(base_vha); |
| 4899 | |
| 4900 | qla84xx_put_chip(base_vha); |
| 4901 | |
| 4902 | if (base_vha->timer_active) |
| 4903 | qla2x00_stop_timer(base_vha); |
| 4904 | |
| 4905 | base_vha->flags.online = 0; |
| 4906 | |
| 4907 | qla2x00_destroy_deferred_work(ha); |
| 4908 | |
| 4909 | /* |
| 4910 | * Do not try to stop beacon blink as it will issue a mailbox |
| 4911 | * command. |
| 4912 | */ |
| 4913 | qla2x00_free_sysfs_attr(base_vha, false); |
| 4914 | |
| 4915 | fc_remove_host(base_vha->host); |
| 4916 | |
| 4917 | scsi_remove_host(base_vha->host); |
| 4918 | |
| 4919 | base_vha->flags.init_done = 0; |
| 4920 | qla25xx_delete_queues(base_vha); |
| 4921 | qla2x00_free_irqs(base_vha); |
| 4922 | qla2x00_free_fcports(base_vha); |
| 4923 | qla2x00_mem_free(ha); |
| 4924 | qla82xx_md_free(base_vha); |
| 4925 | qla2x00_free_queues(ha); |
| 4926 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4927 | qla2x00_unmap_iobases(ha); |
| 4928 | |
| 4929 | pci_release_selected_regions(ha->pdev, ha->bars); |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4930 | pci_disable_pcie_error_reporting(pdev); |
| 4931 | pci_disable_device(pdev); |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4932 | |
Joe Lawrence | beb9e31 | 2014-08-26 17:12:14 -0400 | [diff] [blame] | 4933 | /* |
| 4934 | * Let qla2x00_remove_one cleanup qla_hw_data on device removal. |
| 4935 | */ |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 4936 | } |
| 4937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4938 | /************************************************************************** |
| 4939 | * qla2x00_do_dpc |
| 4940 | * This kernel thread is a task that is schedule by the interrupt handler |
| 4941 | * to perform the background processing for interrupts. |
| 4942 | * |
| 4943 | * Notes: |
| 4944 | * This task always run in the context of a kernel thread. It |
| 4945 | * is kick-off by the driver's detect code and starts up |
| 4946 | * up one per adapter. It immediately goes to sleep and waits for |
| 4947 | * some fibre event. When either the interrupt handler or |
| 4948 | * the timer routine detects a event it will one of the task |
| 4949 | * bits then wake us up. |
| 4950 | **************************************************************************/ |
| 4951 | static int |
| 4952 | qla2x00_do_dpc(void *data) |
| 4953 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4954 | scsi_qla_host_t *base_vha; |
| 4955 | struct qla_hw_data *ha; |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 4956 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4957 | ha = (struct qla_hw_data *)data; |
| 4958 | base_vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4959 | |
Dongsheng Yang | 8698a74 | 2014-03-11 18:09:12 +0800 | [diff] [blame] | 4960 | set_user_nice(current, MIN_NICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 4962 | set_current_state(TASK_INTERRUPTIBLE); |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4963 | while (!kthread_should_stop()) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4964 | ql_dbg(ql_dbg_dpc, base_vha, 0x4000, |
| 4965 | "DPC handler sleeping.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4966 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 4967 | schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4968 | |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4969 | if (!base_vha->flags.init_done || ha->flags.mbox_busy) |
| 4970 | goto end_loop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4971 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4972 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 4973 | ql_dbg(ql_dbg_dpc, base_vha, 0x4003, |
| 4974 | "eeh_busy=%d.\n", ha->flags.eeh_busy); |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 4975 | goto end_loop; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 4976 | } |
| 4977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | ha->dpc_active = 1; |
| 4979 | |
Saurav Kashyap | 5f28d2d | 2012-05-15 14:34:15 -0400 | [diff] [blame] | 4980 | ql_dbg(ql_dbg_dpc + ql_dbg_verbose, base_vha, 0x4001, |
| 4981 | "DPC handler waking up, dpc_flags=0x%lx.\n", |
| 4982 | base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4983 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 4984 | qla2x00_do_work(base_vha); |
Andrew Vasquez | 0971de7 | 2008-04-03 13:13:18 -0700 | [diff] [blame] | 4985 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 4986 | if (IS_P3P_TYPE(ha)) { |
| 4987 | if (IS_QLA8044(ha)) { |
| 4988 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 4989 | &base_vha->dpc_flags)) { |
| 4990 | qla8044_idc_lock(ha); |
| 4991 | qla8044_wr_direct(base_vha, |
| 4992 | QLA8044_CRB_DEV_STATE_INDEX, |
| 4993 | QLA8XXX_DEV_FAILED); |
| 4994 | qla8044_idc_unlock(ha); |
| 4995 | ql_log(ql_log_info, base_vha, 0x4004, |
| 4996 | "HW State: FAILED.\n"); |
| 4997 | qla8044_device_state_handler(base_vha); |
| 4998 | continue; |
| 4999 | } |
| 5000 | |
| 5001 | } else { |
| 5002 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 5003 | &base_vha->dpc_flags)) { |
| 5004 | qla82xx_idc_lock(ha); |
| 5005 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
| 5006 | QLA8XXX_DEV_FAILED); |
| 5007 | qla82xx_idc_unlock(ha); |
| 5008 | ql_log(ql_log_info, base_vha, 0x0151, |
| 5009 | "HW State: FAILED.\n"); |
| 5010 | qla82xx_device_state_handler(base_vha); |
| 5011 | continue; |
| 5012 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5013 | } |
| 5014 | |
| 5015 | if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED, |
| 5016 | &base_vha->dpc_flags)) { |
| 5017 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5018 | ql_dbg(ql_dbg_dpc, base_vha, 0x4005, |
| 5019 | "FCoE context reset scheduled.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5020 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
| 5021 | &base_vha->dpc_flags))) { |
| 5022 | if (qla82xx_fcoe_ctx_reset(base_vha)) { |
| 5023 | /* FCoE-ctx reset failed. |
| 5024 | * Escalate to chip-reset |
| 5025 | */ |
| 5026 | set_bit(ISP_ABORT_NEEDED, |
| 5027 | &base_vha->dpc_flags); |
| 5028 | } |
| 5029 | clear_bit(ABORT_ISP_ACTIVE, |
| 5030 | &base_vha->dpc_flags); |
| 5031 | } |
| 5032 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5033 | ql_dbg(ql_dbg_dpc, base_vha, 0x4006, |
| 5034 | "FCoE context reset end.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5035 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5036 | } else if (IS_QLAFX00(ha)) { |
| 5037 | if (test_and_clear_bit(ISP_UNRECOVERABLE, |
| 5038 | &base_vha->dpc_flags)) { |
| 5039 | ql_dbg(ql_dbg_dpc, base_vha, 0x4020, |
| 5040 | "Firmware Reset Recovery\n"); |
| 5041 | if (qlafx00_reset_initialize(base_vha)) { |
| 5042 | /* Failed. Abort isp later. */ |
| 5043 | if (!test_bit(UNLOADING, |
Dan Carpenter | f92f82d | 2014-05-05 12:47:57 +0300 | [diff] [blame] | 5044 | &base_vha->dpc_flags)) { |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5045 | set_bit(ISP_UNRECOVERABLE, |
| 5046 | &base_vha->dpc_flags); |
| 5047 | ql_dbg(ql_dbg_dpc, base_vha, |
| 5048 | 0x4021, |
| 5049 | "Reset Recovery Failed\n"); |
Dan Carpenter | f92f82d | 2014-05-05 12:47:57 +0300 | [diff] [blame] | 5050 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5051 | } |
| 5052 | } |
| 5053 | |
| 5054 | if (test_and_clear_bit(FX00_TARGET_SCAN, |
| 5055 | &base_vha->dpc_flags)) { |
| 5056 | ql_dbg(ql_dbg_dpc, base_vha, 0x4022, |
| 5057 | "ISPFx00 Target Scan scheduled\n"); |
| 5058 | if (qlafx00_rescan_isp(base_vha)) { |
| 5059 | if (!test_bit(UNLOADING, |
| 5060 | &base_vha->dpc_flags)) |
| 5061 | set_bit(ISP_UNRECOVERABLE, |
| 5062 | &base_vha->dpc_flags); |
| 5063 | ql_dbg(ql_dbg_dpc, base_vha, 0x401e, |
| 5064 | "ISPFx00 Target Scan Failed\n"); |
| 5065 | } |
| 5066 | ql_dbg(ql_dbg_dpc, base_vha, 0x401f, |
| 5067 | "ISPFx00 Target Scan End\n"); |
| 5068 | } |
Armen Baloyan | e8f5e95 | 2013-10-30 03:38:17 -0400 | [diff] [blame] | 5069 | if (test_and_clear_bit(FX00_HOST_INFO_RESEND, |
| 5070 | &base_vha->dpc_flags)) { |
| 5071 | ql_dbg(ql_dbg_dpc, base_vha, 0x4023, |
| 5072 | "ISPFx00 Host Info resend scheduled\n"); |
| 5073 | qlafx00_fx_disc(base_vha, |
| 5074 | &base_vha->hw->mr.fcport, |
| 5075 | FXDISC_REG_HOST_INFO); |
| 5076 | } |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5077 | } |
| 5078 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5079 | if (test_and_clear_bit(ISP_ABORT_NEEDED, |
| 5080 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5081 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5082 | ql_dbg(ql_dbg_dpc, base_vha, 0x4007, |
| 5083 | "ISP abort scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5084 | if (!(test_and_set_bit(ABORT_ISP_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5085 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5086 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5087 | if (ha->isp_ops->abort_isp(base_vha)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5088 | /* failed. retry later */ |
| 5089 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5090 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5091 | } |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5092 | clear_bit(ABORT_ISP_ACTIVE, |
| 5093 | &base_vha->dpc_flags); |
Seokmann Ju | 99363ef | 2008-01-31 12:33:51 -0800 | [diff] [blame] | 5094 | } |
| 5095 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5096 | ql_dbg(ql_dbg_dpc, base_vha, 0x4008, |
| 5097 | "ISP abort end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5098 | } |
| 5099 | |
David Jeffery | a394aac | 2012-11-21 02:39:54 -0500 | [diff] [blame] | 5100 | if (test_and_clear_bit(FCPORT_UPDATE_NEEDED, |
| 5101 | &base_vha->dpc_flags)) { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5102 | qla2x00_update_fcports(base_vha); |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 5103 | } |
andrew.vasquez@qlogic.com | d97994d | 2006-01-20 14:53:13 -0800 | [diff] [blame] | 5104 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5105 | if (test_bit(SCR_PENDING, &base_vha->dpc_flags)) { |
| 5106 | int ret; |
| 5107 | ret = qla2x00_send_change_request(base_vha, 0x3, 0); |
| 5108 | if (ret != QLA_SUCCESS) |
| 5109 | ql_log(ql_log_warn, base_vha, 0x121, |
| 5110 | "Failed to enable receiving of RSCN " |
| 5111 | "requests: 0x%x.\n", ret); |
| 5112 | clear_bit(SCR_PENDING, &base_vha->dpc_flags); |
| 5113 | } |
| 5114 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5115 | if (IS_QLAFX00(ha)) |
| 5116 | goto loop_resync_check; |
| 5117 | |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5118 | if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5119 | ql_dbg(ql_dbg_dpc, base_vha, 0x4009, |
| 5120 | "Quiescence mode scheduled.\n"); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5121 | if (IS_P3P_TYPE(ha)) { |
| 5122 | if (IS_QLA82XX(ha)) |
| 5123 | qla82xx_device_state_handler(base_vha); |
| 5124 | if (IS_QLA8044(ha)) |
| 5125 | qla8044_device_state_handler(base_vha); |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 5126 | clear_bit(ISP_QUIESCE_NEEDED, |
| 5127 | &base_vha->dpc_flags); |
| 5128 | if (!ha->flags.quiesce_owner) { |
| 5129 | qla2x00_perform_loop_resync(base_vha); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5130 | if (IS_QLA82XX(ha)) { |
| 5131 | qla82xx_idc_lock(ha); |
| 5132 | qla82xx_clear_qsnt_ready( |
| 5133 | base_vha); |
| 5134 | qla82xx_idc_unlock(ha); |
| 5135 | } else if (IS_QLA8044(ha)) { |
| 5136 | qla8044_idc_lock(ha); |
| 5137 | qla8044_clear_qsnt_ready( |
| 5138 | base_vha); |
| 5139 | qla8044_idc_unlock(ha); |
| 5140 | } |
Chad Dupuis | 8fcd6b8 | 2012-08-22 14:21:06 -0400 | [diff] [blame] | 5141 | } |
| 5142 | } else { |
| 5143 | clear_bit(ISP_QUIESCE_NEEDED, |
| 5144 | &base_vha->dpc_flags); |
| 5145 | qla2x00_quiesce_io(base_vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5146 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5147 | ql_dbg(ql_dbg_dpc, base_vha, 0x400a, |
| 5148 | "Quiescence mode end.\n"); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5149 | } |
| 5150 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5151 | if (test_and_clear_bit(RESET_MARKER_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5152 | &base_vha->dpc_flags) && |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5153 | (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5154 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5155 | ql_dbg(ql_dbg_dpc, base_vha, 0x400b, |
| 5156 | "Reset marker scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5157 | qla2x00_rst_aen(base_vha); |
| 5158 | clear_bit(RESET_ACTIVE, &base_vha->dpc_flags); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5159 | ql_dbg(ql_dbg_dpc, base_vha, 0x400c, |
| 5160 | "Reset marker end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5161 | } |
| 5162 | |
| 5163 | /* Retry each device up to login retry count */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5164 | if ((test_and_clear_bit(RELOGIN_NEEDED, |
| 5165 | &base_vha->dpc_flags)) && |
| 5166 | !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) && |
| 5167 | atomic_read(&base_vha->loop_state) != LOOP_DOWN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5169 | ql_dbg(ql_dbg_dpc, base_vha, 0x400d, |
| 5170 | "Relogin scheduled.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5171 | qla2x00_relogin(base_vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5172 | ql_dbg(ql_dbg_dpc, base_vha, 0x400e, |
| 5173 | "Relogin end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | } |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5175 | loop_resync_check: |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5176 | if (test_and_clear_bit(LOOP_RESYNC_NEEDED, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5177 | &base_vha->dpc_flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5178 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5179 | ql_dbg(ql_dbg_dpc, base_vha, 0x400f, |
| 5180 | "Loop resync scheduled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | |
| 5182 | if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5183 | &base_vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5184 | |
Bart Van Assche | 52c8282 | 2015-07-09 07:23:26 -0700 | [diff] [blame] | 5185 | qla2x00_loop_resync(base_vha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5186 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5187 | clear_bit(LOOP_RESYNC_ACTIVE, |
| 5188 | &base_vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5189 | } |
| 5190 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5191 | ql_dbg(ql_dbg_dpc, base_vha, 0x4010, |
| 5192 | "Loop resync end.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5193 | } |
| 5194 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5195 | if (IS_QLAFX00(ha)) |
| 5196 | goto intr_on_check; |
| 5197 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5198 | if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) && |
| 5199 | atomic_read(&base_vha->loop_state) == LOOP_READY) { |
| 5200 | clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags); |
| 5201 | qla2xxx_flash_npiv_conf(base_vha); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 5202 | } |
| 5203 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5204 | intr_on_check: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5205 | if (!ha->interrupts_on) |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 5206 | ha->isp_ops->enable_intrs(ha); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5207 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5208 | if (test_and_clear_bit(BEACON_BLINK_NEEDED, |
Himanshu Madani | 90b604f | 2014-04-11 16:54:40 -0400 | [diff] [blame] | 5209 | &base_vha->dpc_flags)) { |
| 5210 | if (ha->beacon_blink_led == 1) |
| 5211 | ha->isp_ops->beacon_blink(base_vha); |
| 5212 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5213 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5214 | if (!IS_QLAFX00(ha)) |
| 5215 | qla2x00_do_dpc_all_vps(base_vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5217 | ha->dpc_active = 0; |
Andrew Vasquez | c142caf | 2011-11-18 09:03:10 -0800 | [diff] [blame] | 5218 | end_loop: |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5219 | set_current_state(TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5220 | } /* End of while(1) */ |
James Bottomley | 563585e | 2011-01-27 16:12:37 -0500 | [diff] [blame] | 5221 | __set_current_state(TASK_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5222 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5223 | ql_dbg(ql_dbg_dpc, base_vha, 0x4011, |
| 5224 | "DPC handler exiting.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5225 | |
| 5226 | /* |
| 5227 | * Make sure that nobody tries to wake us up again. |
| 5228 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5229 | ha->dpc_active = 0; |
| 5230 | |
Andrew Vasquez | ac280b6 | 2009-08-20 11:06:05 -0700 | [diff] [blame] | 5231 | /* Cleanup any residual CTX SRBs. */ |
| 5232 | qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16); |
| 5233 | |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5234 | return 0; |
| 5235 | } |
| 5236 | |
| 5237 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5238 | qla2xxx_wake_dpc(struct scsi_qla_host *vha) |
Christoph Hellwig | 39a1124 | 2006-02-14 18:46:22 +0100 | [diff] [blame] | 5239 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5240 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5241 | struct task_struct *t = ha->dpc_thread; |
| 5242 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5243 | if (!test_bit(UNLOADING, &vha->dpc_flags) && t) |
Andrew Vasquez | c795c1e | 2008-08-13 21:37:01 -0700 | [diff] [blame] | 5244 | wake_up_process(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5245 | } |
| 5246 | |
| 5247 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5248 | * qla2x00_rst_aen |
| 5249 | * Processes asynchronous reset. |
| 5250 | * |
| 5251 | * Input: |
| 5252 | * ha = adapter block pointer. |
| 5253 | */ |
| 5254 | static void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5255 | qla2x00_rst_aen(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5256 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5257 | if (vha->flags.online && !vha->flags.reset_active && |
| 5258 | !atomic_read(&vha->loop_down_timer) && |
| 5259 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5260 | do { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5261 | clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5262 | |
| 5263 | /* |
| 5264 | * Issue marker command only when we are going to start |
| 5265 | * the I/O. |
| 5266 | */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5267 | vha->marker_needed = 1; |
| 5268 | } while (!atomic_read(&vha->loop_down_timer) && |
| 5269 | (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5270 | } |
| 5271 | } |
| 5272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5273 | /************************************************************************** |
| 5274 | * qla2x00_timer |
| 5275 | * |
| 5276 | * Description: |
| 5277 | * One second timer |
| 5278 | * |
| 5279 | * Context: Interrupt |
| 5280 | ***************************************************************************/ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5281 | void |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5282 | qla2x00_timer(scsi_qla_host_t *vha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5283 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | unsigned long cpu_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5285 | int start_dpc = 0; |
| 5286 | int index; |
| 5287 | srb_t *sp; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5288 | uint16_t w; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5289 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5290 | struct req_que *req; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5291 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5292 | if (ha->flags.eeh_busy) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5293 | ql_dbg(ql_dbg_timer, vha, 0x6000, |
| 5294 | "EEH = %d, restarting timer.\n", |
| 5295 | ha->flags.eeh_busy); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5296 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
| 5297 | return; |
| 5298 | } |
| 5299 | |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5300 | /* |
| 5301 | * Hardware read to raise pending EEH errors during mailbox waits. If |
| 5302 | * the read returns -1 then disable the board. |
| 5303 | */ |
| 5304 | if (!pci_channel_offline(ha->pdev)) { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5305 | pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w); |
Joe Lawrence | c821e0d | 2014-08-26 17:11:41 -0400 | [diff] [blame] | 5306 | qla2x00_check_reg16_for_disconnect(vha, w); |
Chad Dupuis | f3ddac1 | 2013-10-30 03:38:16 -0400 | [diff] [blame] | 5307 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5308 | |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5309 | /* Make sure qla82xx_watchdog is run only for physical port */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5310 | if (!vha->vp_idx && IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5311 | if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) |
| 5312 | start_dpc++; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5313 | if (IS_QLA82XX(ha)) |
| 5314 | qla82xx_watchdog(vha); |
| 5315 | else if (IS_QLA8044(ha)) |
| 5316 | qla8044_watchdog(vha); |
Saurav Kashyap | 579d12b | 2010-12-21 16:00:14 -0800 | [diff] [blame] | 5317 | } |
| 5318 | |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5319 | if (!vha->vp_idx && IS_QLAFX00(ha)) |
| 5320 | qlafx00_timer_routine(vha); |
| 5321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5322 | /* Loop down handler. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5323 | if (atomic_read(&vha->loop_down_timer) > 0 && |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5324 | !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) && |
| 5325 | !(test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags)) |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5326 | && vha->flags.online) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5327 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5328 | if (atomic_read(&vha->loop_down_timer) == |
| 5329 | vha->loop_down_abort_time) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5331 | ql_log(ql_log_info, vha, 0x6008, |
| 5332 | "Loop down - aborting the queues before time expires.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5333 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5334 | if (!IS_QLA2100(ha) && vha->link_down_timeout) |
| 5335 | atomic_set(&vha->loop_state, LOOP_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5336 | |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5337 | /* |
| 5338 | * Schedule an ISP abort to return any FCP2-device |
| 5339 | * commands. |
| 5340 | */ |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5341 | /* NPIV - scan physical port only */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5342 | if (!vha->vp_idx) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5343 | spin_lock_irqsave(&ha->hardware_lock, |
| 5344 | cpu_flags); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 5345 | req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5346 | for (index = 1; |
Chad Dupuis | 8d93f55 | 2013-01-30 03:34:37 -0500 | [diff] [blame] | 5347 | index < req->num_outstanding_cmds; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5348 | index++) { |
| 5349 | fc_port_t *sfcp; |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 5350 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5351 | sp = req->outstanding_cmds[index]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5352 | if (!sp) |
| 5353 | continue; |
Giridhar Malavali | 9ba56b9 | 2012-02-09 11:15:36 -0800 | [diff] [blame] | 5354 | if (sp->type != SRB_SCSI_CMD) |
Andrew Vasquez | cf53b06 | 2009-08-20 11:06:04 -0700 | [diff] [blame] | 5355 | continue; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5356 | sfcp = sp->fcport; |
Andrew Vasquez | f08b725 | 2010-01-12 12:59:48 -0800 | [diff] [blame] | 5357 | if (!(sfcp->flags & FCF_FCP2_DEVICE)) |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5358 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5359 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5360 | if (IS_QLA82XX(ha)) |
| 5361 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5362 | &vha->dpc_flags); |
| 5363 | else |
| 5364 | set_bit(ISP_ABORT_NEEDED, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5365 | &vha->dpc_flags); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5366 | break; |
| 5367 | } |
| 5368 | spin_unlock_irqrestore(&ha->hardware_lock, |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5369 | cpu_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5370 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5371 | start_dpc++; |
| 5372 | } |
| 5373 | |
| 5374 | /* if the loop has been down for 4 minutes, reinit adapter */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5375 | if (atomic_dec_and_test(&vha->loop_down_timer) != 0) { |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 5376 | if (!(vha->device_flags & DFLG_NO_CABLE)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5377 | ql_log(ql_log_warn, vha, 0x6009, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5378 | "Loop down - aborting ISP.\n"); |
| 5379 | |
Giridhar Malavali | 8f7daea | 2011-03-30 11:46:26 -0700 | [diff] [blame] | 5380 | if (IS_QLA82XX(ha)) |
| 5381 | set_bit(FCOE_CTX_RESET_NEEDED, |
| 5382 | &vha->dpc_flags); |
| 5383 | else |
| 5384 | set_bit(ISP_ABORT_NEEDED, |
| 5385 | &vha->dpc_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5386 | } |
| 5387 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5388 | ql_dbg(ql_dbg_timer, vha, 0x600a, |
| 5389 | "Loop down - seconds remaining %d.\n", |
| 5390 | atomic_read(&vha->loop_down_timer)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5391 | } |
Saurav Kashyap | cefcaba | 2011-05-10 11:18:18 -0700 | [diff] [blame] | 5392 | /* Check if beacon LED needs to be blinked for physical host only */ |
| 5393 | if (!vha->vp_idx && (ha->beacon_blink_led == 1)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5394 | /* There is no beacon_blink function for ISP82xx */ |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5395 | if (!IS_P3P_TYPE(ha)) { |
Saurav Kashyap | 999916d | 2011-08-16 11:31:45 -0700 | [diff] [blame] | 5396 | set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags); |
| 5397 | start_dpc++; |
| 5398 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 5399 | } |
| 5400 | |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5401 | /* Process any deferred work. */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5402 | if (!list_empty(&vha->work_list)) |
Andrew Vasquez | 550bf57 | 2008-04-24 15:21:23 -0700 | [diff] [blame] | 5403 | start_dpc++; |
| 5404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5405 | /* Schedule the DPC routine if needed */ |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5406 | if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) || |
| 5407 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) || |
| 5408 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5409 | start_dpc || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5410 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) || |
| 5411 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) || |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5412 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) || |
| 5413 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) || |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5414 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags) || |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5415 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags))) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5416 | ql_dbg(ql_dbg_timer, vha, 0x600b, |
| 5417 | "isp_abort_needed=%d loop_resync_needed=%d " |
| 5418 | "fcport_update_needed=%d start_dpc=%d " |
| 5419 | "reset_marker_needed=%d", |
| 5420 | test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags), |
| 5421 | test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags), |
| 5422 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags), |
| 5423 | start_dpc, |
| 5424 | test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)); |
| 5425 | ql_dbg(ql_dbg_timer, vha, 0x600c, |
| 5426 | "beacon_blink_needed=%d isp_unrecoverable=%d " |
| 5427 | "fcoe_ctx_reset_needed=%d vp_dpc_needed=%d " |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5428 | "relogin_needed=%d.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5429 | test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags), |
| 5430 | test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags), |
| 5431 | test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags), |
| 5432 | test_bit(VP_DPC_NEEDED, &vha->dpc_flags), |
Chad Dupuis | 50280c0 | 2013-10-30 03:38:14 -0400 | [diff] [blame] | 5433 | test_bit(RELOGIN_NEEDED, &vha->dpc_flags)); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5434 | qla2xxx_wake_dpc(vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5435 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5437 | qla2x00_restart_timer(vha, WATCH_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5438 | } |
| 5439 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5440 | /* Firmware interface routines. */ |
| 5441 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5442 | #define FW_BLOBS 11 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5443 | #define FW_ISP21XX 0 |
| 5444 | #define FW_ISP22XX 1 |
| 5445 | #define FW_ISP2300 2 |
| 5446 | #define FW_ISP2322 3 |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5447 | #define FW_ISP24XX 4 |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5448 | #define FW_ISP25XX 5 |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5449 | #define FW_ISP81XX 6 |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5450 | #define FW_ISP82XX 7 |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5451 | #define FW_ISP2031 8 |
| 5452 | #define FW_ISP8031 9 |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5453 | #define FW_ISP27XX 10 |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5454 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5455 | #define FW_FILE_ISP21XX "ql2100_fw.bin" |
| 5456 | #define FW_FILE_ISP22XX "ql2200_fw.bin" |
| 5457 | #define FW_FILE_ISP2300 "ql2300_fw.bin" |
| 5458 | #define FW_FILE_ISP2322 "ql2322_fw.bin" |
| 5459 | #define FW_FILE_ISP24XX "ql2400_fw.bin" |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5460 | #define FW_FILE_ISP25XX "ql2500_fw.bin" |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5461 | #define FW_FILE_ISP81XX "ql8100_fw.bin" |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5462 | #define FW_FILE_ISP82XX "ql8200_fw.bin" |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5463 | #define FW_FILE_ISP2031 "ql2600_fw.bin" |
| 5464 | #define FW_FILE_ISP8031 "ql8300_fw.bin" |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5465 | #define FW_FILE_ISP27XX "ql2700_fw.bin" |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5466 | |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5467 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5468 | static DEFINE_MUTEX(qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5469 | |
| 5470 | static struct fw_blob qla_fw_blobs[FW_BLOBS] = { |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5471 | { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, }, |
| 5472 | { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, }, |
| 5473 | { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, }, |
| 5474 | { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, }, |
| 5475 | { .name = FW_FILE_ISP24XX, }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5476 | { .name = FW_FILE_ISP25XX, }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5477 | { .name = FW_FILE_ISP81XX, }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5478 | { .name = FW_FILE_ISP82XX, }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5479 | { .name = FW_FILE_ISP2031, }, |
| 5480 | { .name = FW_FILE_ISP8031, }, |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5481 | { .name = FW_FILE_ISP27XX, }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5482 | }; |
| 5483 | |
| 5484 | struct fw_blob * |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5485 | qla2x00_request_firmware(scsi_qla_host_t *vha) |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5486 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5487 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5488 | struct fw_blob *blob; |
| 5489 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5490 | if (IS_QLA2100(ha)) { |
| 5491 | blob = &qla_fw_blobs[FW_ISP21XX]; |
| 5492 | } else if (IS_QLA2200(ha)) { |
| 5493 | blob = &qla_fw_blobs[FW_ISP22XX]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5494 | } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5495 | blob = &qla_fw_blobs[FW_ISP2300]; |
andrew.vasquez@qlogic.com | 48c02fd | 2006-03-09 14:27:18 -0800 | [diff] [blame] | 5496 | } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5497 | blob = &qla_fw_blobs[FW_ISP2322]; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5498 | } else if (IS_QLA24XX_TYPE(ha)) { |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5499 | blob = &qla_fw_blobs[FW_ISP24XX]; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5500 | } else if (IS_QLA25XX(ha)) { |
| 5501 | blob = &qla_fw_blobs[FW_ISP25XX]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5502 | } else if (IS_QLA81XX(ha)) { |
| 5503 | blob = &qla_fw_blobs[FW_ISP81XX]; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5504 | } else if (IS_QLA82XX(ha)) { |
| 5505 | blob = &qla_fw_blobs[FW_ISP82XX]; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5506 | } else if (IS_QLA2031(ha)) { |
| 5507 | blob = &qla_fw_blobs[FW_ISP2031]; |
| 5508 | } else if (IS_QLA8031(ha)) { |
| 5509 | blob = &qla_fw_blobs[FW_ISP8031]; |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5510 | } else if (IS_QLA27XX(ha)) { |
| 5511 | blob = &qla_fw_blobs[FW_ISP27XX]; |
Dan Carpenter | 8a65522 | 2012-02-21 10:29:40 +0300 | [diff] [blame] | 5512 | } else { |
| 5513 | return NULL; |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5514 | } |
| 5515 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5516 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5517 | if (blob->fw) |
| 5518 | goto out; |
| 5519 | |
| 5520 | if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5521 | ql_log(ql_log_warn, vha, 0x0063, |
| 5522 | "Failed to load firmware image (%s).\n", blob->name); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5523 | blob->fw = NULL; |
| 5524 | blob = NULL; |
| 5525 | goto out; |
| 5526 | } |
| 5527 | |
| 5528 | out: |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5529 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5530 | return blob; |
| 5531 | } |
| 5532 | |
| 5533 | static void |
| 5534 | qla2x00_release_firmware(void) |
| 5535 | { |
| 5536 | int idx; |
| 5537 | |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5538 | mutex_lock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5539 | for (idx = 0; idx < FW_BLOBS; idx++) |
Jesper Juhl | cf92549 | 2012-04-09 22:51:41 +0200 | [diff] [blame] | 5540 | release_firmware(qla_fw_blobs[idx].fw); |
Daniel Walker | e1e82b6 | 2008-05-12 22:21:10 -0700 | [diff] [blame] | 5541 | mutex_unlock(&qla_fw_lock); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5542 | } |
| 5543 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5544 | static pci_ers_result_t |
| 5545 | qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state) |
| 5546 | { |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5547 | scsi_qla_host_t *vha = pci_get_drvdata(pdev); |
| 5548 | struct qla_hw_data *ha = vha->hw; |
| 5549 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5550 | ql_dbg(ql_dbg_aer, vha, 0x9000, |
| 5551 | "PCI error detected, state %x.\n", state); |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 5552 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5553 | switch (state) { |
| 5554 | case pci_channel_io_normal: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5555 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5556 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 5557 | case pci_channel_io_frozen: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5558 | ha->flags.eeh_busy = 1; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5559 | /* For ISP82XX complete any pending mailbox cmd */ |
| 5560 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5561 | ha->flags.isp82xx_fw_hung = 1; |
Chad Dupuis | c8f6544 | 2011-11-18 09:02:17 -0800 | [diff] [blame] | 5562 | ql_dbg(ql_dbg_aer, vha, 0x9001, "Pci channel io frozen\n"); |
| 5563 | qla82xx_clear_pending_mbx(vha); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5564 | } |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5565 | qla2x00_free_irqs(vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5566 | pci_disable_device(pdev); |
Lalit Chandivade | bddd2d6 | 2010-09-03 15:20:53 -0700 | [diff] [blame] | 5567 | /* Return back all IOs */ |
| 5568 | qla2x00_abort_all_cmds(vha, DID_RESET << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5569 | return PCI_ERS_RESULT_NEED_RESET; |
| 5570 | case pci_channel_io_perm_failure: |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5571 | ha->flags.pci_channel_io_perm_failure = 1; |
| 5572 | qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5573 | return PCI_ERS_RESULT_DISCONNECT; |
| 5574 | } |
| 5575 | return PCI_ERS_RESULT_NEED_RESET; |
| 5576 | } |
| 5577 | |
| 5578 | static pci_ers_result_t |
| 5579 | qla2xxx_pci_mmio_enabled(struct pci_dev *pdev) |
| 5580 | { |
| 5581 | int risc_paused = 0; |
| 5582 | uint32_t stat; |
| 5583 | unsigned long flags; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5584 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5585 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5586 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 5587 | struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24; |
| 5588 | |
Saurav Kashyap | bcc5b6d | 2010-09-03 15:20:57 -0700 | [diff] [blame] | 5589 | if (IS_QLA82XX(ha)) |
| 5590 | return PCI_ERS_RESULT_RECOVERED; |
| 5591 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5592 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 5593 | if (IS_QLA2100(ha) || IS_QLA2200(ha)){ |
| 5594 | stat = RD_REG_DWORD(®->hccr); |
| 5595 | if (stat & HCCR_RISC_PAUSE) |
| 5596 | risc_paused = 1; |
| 5597 | } else if (IS_QLA23XX(ha)) { |
| 5598 | stat = RD_REG_DWORD(®->u.isp2300.host_status); |
| 5599 | if (stat & HSR_RISC_PAUSED) |
| 5600 | risc_paused = 1; |
| 5601 | } else if (IS_FWI2_CAPABLE(ha)) { |
| 5602 | stat = RD_REG_DWORD(®24->host_status); |
| 5603 | if (stat & HSRX_RISC_PAUSED) |
| 5604 | risc_paused = 1; |
| 5605 | } |
| 5606 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 5607 | |
| 5608 | if (risc_paused) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5609 | ql_log(ql_log_info, base_vha, 0x9003, |
| 5610 | "RISC paused -- mmio_enabled, Dumping firmware.\n"); |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5611 | ha->isp_ops->fw_dump(base_vha, 0); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5612 | |
| 5613 | return PCI_ERS_RESULT_NEED_RESET; |
| 5614 | } else |
| 5615 | return PCI_ERS_RESULT_RECOVERED; |
| 5616 | } |
| 5617 | |
Saurav Kashyap | fa49263 | 2012-11-21 02:40:29 -0500 | [diff] [blame] | 5618 | static uint32_t |
| 5619 | qla82xx_error_recovery(scsi_qla_host_t *base_vha) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5620 | { |
| 5621 | uint32_t rval = QLA_FUNCTION_FAILED; |
| 5622 | uint32_t drv_active = 0; |
| 5623 | struct qla_hw_data *ha = base_vha->hw; |
| 5624 | int fn; |
| 5625 | struct pci_dev *other_pdev = NULL; |
| 5626 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5627 | ql_dbg(ql_dbg_aer, base_vha, 0x9006, |
| 5628 | "Entered %s.\n", __func__); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5629 | |
| 5630 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5631 | |
| 5632 | if (base_vha->flags.online) { |
| 5633 | /* Abort all outstanding commands, |
| 5634 | * so as to be requeued later */ |
| 5635 | qla2x00_abort_isp_cleanup(base_vha); |
| 5636 | } |
| 5637 | |
| 5638 | |
| 5639 | fn = PCI_FUNC(ha->pdev->devfn); |
| 5640 | while (fn > 0) { |
| 5641 | fn--; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5642 | ql_dbg(ql_dbg_aer, base_vha, 0x9007, |
| 5643 | "Finding pci device at function = 0x%x.\n", fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5644 | other_pdev = |
| 5645 | pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus), |
| 5646 | ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn), |
| 5647 | fn)); |
| 5648 | |
| 5649 | if (!other_pdev) |
| 5650 | continue; |
| 5651 | if (atomic_read(&other_pdev->enable_cnt)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5652 | ql_dbg(ql_dbg_aer, base_vha, 0x9008, |
| 5653 | "Found PCI func available and enable at 0x%x.\n", |
| 5654 | fn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5655 | pci_dev_put(other_pdev); |
| 5656 | break; |
| 5657 | } |
| 5658 | pci_dev_put(other_pdev); |
| 5659 | } |
| 5660 | |
| 5661 | if (!fn) { |
| 5662 | /* Reset owner */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5663 | ql_dbg(ql_dbg_aer, base_vha, 0x9009, |
| 5664 | "This devfn is reset owner = 0x%x.\n", |
| 5665 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5666 | qla82xx_idc_lock(ha); |
| 5667 | |
| 5668 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5669 | QLA8XXX_DEV_INITIALIZING); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5670 | |
| 5671 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION, |
| 5672 | QLA82XX_IDC_VERSION); |
| 5673 | |
| 5674 | drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5675 | ql_dbg(ql_dbg_aer, base_vha, 0x900a, |
| 5676 | "drv_active = 0x%x.\n", drv_active); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5677 | |
| 5678 | qla82xx_idc_unlock(ha); |
| 5679 | /* Reset if device is not already reset |
| 5680 | * drv_active would be 0 if a reset has already been done |
| 5681 | */ |
| 5682 | if (drv_active) |
| 5683 | rval = qla82xx_start_firmware(base_vha); |
| 5684 | else |
| 5685 | rval = QLA_SUCCESS; |
| 5686 | qla82xx_idc_lock(ha); |
| 5687 | |
| 5688 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5689 | ql_log(ql_log_info, base_vha, 0x900b, |
| 5690 | "HW State: FAILED.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5691 | qla82xx_clear_drv_active(ha); |
| 5692 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5693 | QLA8XXX_DEV_FAILED); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5694 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5695 | ql_log(ql_log_info, base_vha, 0x900c, |
| 5696 | "HW State: READY.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5697 | qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5698 | QLA8XXX_DEV_READY); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5699 | qla82xx_idc_unlock(ha); |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5700 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5701 | rval = qla82xx_restart_isp(base_vha); |
| 5702 | qla82xx_idc_lock(ha); |
| 5703 | /* Clear driver state register */ |
| 5704 | qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0); |
| 5705 | qla82xx_set_drv_active(base_vha); |
| 5706 | } |
| 5707 | qla82xx_idc_unlock(ha); |
| 5708 | } else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5709 | ql_dbg(ql_dbg_aer, base_vha, 0x900d, |
| 5710 | "This devfn is not reset owner = 0x%x.\n", |
| 5711 | ha->pdev->devfn); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5712 | if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) == |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 5713 | QLA8XXX_DEV_READY)) { |
Giridhar Malavali | 7190575 | 2011-02-23 15:27:10 -0800 | [diff] [blame] | 5714 | ha->flags.isp82xx_fw_hung = 0; |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5715 | rval = qla82xx_restart_isp(base_vha); |
| 5716 | qla82xx_idc_lock(ha); |
| 5717 | qla82xx_set_drv_active(base_vha); |
| 5718 | qla82xx_idc_unlock(ha); |
| 5719 | } |
| 5720 | } |
| 5721 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
| 5722 | |
| 5723 | return rval; |
| 5724 | } |
| 5725 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5726 | static pci_ers_result_t |
| 5727 | qla2xxx_pci_slot_reset(struct pci_dev *pdev) |
| 5728 | { |
| 5729 | pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5730 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5731 | struct qla_hw_data *ha = base_vha->hw; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5732 | struct rsp_que *rsp; |
| 5733 | int rc, retries = 10; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5734 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5735 | ql_dbg(ql_dbg_aer, base_vha, 0x9004, |
| 5736 | "Slot Reset.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5737 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5738 | /* Workaround: qla2xxx driver which access hardware earlier |
| 5739 | * needs error state to be pci_channel_io_online. |
| 5740 | * Otherwise mailbox command timesout. |
| 5741 | */ |
| 5742 | pdev->error_state = pci_channel_io_normal; |
| 5743 | |
| 5744 | pci_restore_state(pdev); |
| 5745 | |
Richard Lary | 8c1496b | 2010-02-18 10:07:29 -0800 | [diff] [blame] | 5746 | /* pci_restore_state() clears the saved_state flag of the device |
| 5747 | * save restored state which resets saved_state flag |
| 5748 | */ |
| 5749 | pci_save_state(pdev); |
| 5750 | |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 5751 | if (ha->mem_only) |
| 5752 | rc = pci_enable_device_mem(pdev); |
| 5753 | else |
| 5754 | rc = pci_enable_device(pdev); |
| 5755 | |
| 5756 | if (rc) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5757 | ql_log(ql_log_warn, base_vha, 0x9005, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5758 | "Can't re-enable PCI device after reset.\n"); |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5759 | goto exit_slot_reset; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5760 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5761 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5762 | rsp = ha->rsp_q_map[0]; |
| 5763 | if (qla2x00_request_irqs(ha, rsp)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5764 | goto exit_slot_reset; |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5765 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5766 | if (ha->isp_ops->pci_config(base_vha)) |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5767 | goto exit_slot_reset; |
| 5768 | |
| 5769 | if (IS_QLA82XX(ha)) { |
| 5770 | if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) { |
| 5771 | ret = PCI_ERS_RESULT_RECOVERED; |
| 5772 | goto exit_slot_reset; |
| 5773 | } else |
| 5774 | goto exit_slot_reset; |
| 5775 | } |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5776 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5777 | while (ha->flags.mbox_busy && retries--) |
| 5778 | msleep(1000); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5779 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5780 | set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5781 | if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS) |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5782 | ret = PCI_ERS_RESULT_RECOVERED; |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5783 | clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5784 | |
Joe Carnuccio | 90a86fc | 2010-01-12 13:02:46 -0800 | [diff] [blame] | 5785 | |
Lalit Chandivade | a5b3632 | 2010-09-03 15:20:50 -0700 | [diff] [blame] | 5786 | exit_slot_reset: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5787 | ql_dbg(ql_dbg_aer, base_vha, 0x900e, |
| 5788 | "slot_reset return %x.\n", ret); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5789 | |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5790 | return ret; |
| 5791 | } |
| 5792 | |
| 5793 | static void |
| 5794 | qla2xxx_pci_resume(struct pci_dev *pdev) |
| 5795 | { |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5796 | scsi_qla_host_t *base_vha = pci_get_drvdata(pdev); |
| 5797 | struct qla_hw_data *ha = base_vha->hw; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5798 | int ret; |
| 5799 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5800 | ql_dbg(ql_dbg_aer, base_vha, 0x900f, |
| 5801 | "pci_resume.\n"); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5802 | |
Anirban Chakraborty | e315cd2 | 2008-11-06 10:40:51 -0800 | [diff] [blame] | 5803 | ret = qla2x00_wait_for_hba_online(base_vha); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5804 | if (ret != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5805 | ql_log(ql_log_fatal, base_vha, 0x9002, |
| 5806 | "The device failed to resume I/O from slot/link_reset.\n"); |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5807 | } |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5808 | |
Lalit Chandivade | 3e46f03 | 2010-05-04 15:01:23 -0700 | [diff] [blame] | 5809 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 5810 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 5811 | ha->flags.eeh_busy = 0; |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5812 | } |
| 5813 | |
Himanshu Madhani | 2d5a4c3 | 2014-09-25 05:16:55 -0400 | [diff] [blame] | 5814 | static void |
| 5815 | qla83xx_disable_laser(scsi_qla_host_t *vha) |
| 5816 | { |
| 5817 | uint32_t reg, data, fn; |
| 5818 | struct qla_hw_data *ha = vha->hw; |
| 5819 | struct device_reg_24xx __iomem *isp_reg = &ha->iobase->isp24; |
| 5820 | |
| 5821 | /* pci func #/port # */ |
| 5822 | ql_dbg(ql_dbg_init, vha, 0x004b, |
| 5823 | "Disabling Laser for hba: %p\n", vha); |
| 5824 | |
| 5825 | fn = (RD_REG_DWORD(&isp_reg->ctrl_status) & |
| 5826 | (BIT_15|BIT_14|BIT_13|BIT_12)); |
| 5827 | |
| 5828 | fn = (fn >> 12); |
| 5829 | |
| 5830 | if (fn & 1) |
| 5831 | reg = PORT_1_2031; |
| 5832 | else |
| 5833 | reg = PORT_0_2031; |
| 5834 | |
| 5835 | data = LASER_OFF_2031; |
| 5836 | |
| 5837 | qla83xx_wr_reg(vha, reg, data); |
| 5838 | } |
| 5839 | |
Stephen Hemminger | a55b2d2 | 2012-09-07 09:33:16 -0700 | [diff] [blame] | 5840 | static const struct pci_error_handlers qla2xxx_err_handler = { |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5841 | .error_detected = qla2xxx_pci_error_detected, |
| 5842 | .mmio_enabled = qla2xxx_pci_mmio_enabled, |
| 5843 | .slot_reset = qla2xxx_pci_slot_reset, |
| 5844 | .resume = qla2xxx_pci_resume, |
| 5845 | }; |
| 5846 | |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5847 | static struct pci_device_id qla2xxx_pci_tbl[] = { |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5848 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) }, |
| 5849 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) }, |
| 5850 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) }, |
| 5851 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) }, |
| 5852 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) }, |
| 5853 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) }, |
| 5854 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) }, |
| 5855 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) }, |
| 5856 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) }, |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 5857 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) }, |
Andrew Vasquez | 47f5e06 | 2006-05-17 15:09:39 -0700 | [diff] [blame] | 5858 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) }, |
| 5859 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 5860 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) }, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 5861 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2031) }, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 5862 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) }, |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5863 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) }, |
Chad Dupuis | 650f528 | 2012-08-22 14:20:55 -0400 | [diff] [blame] | 5864 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8031) }, |
Giridhar Malavali | 8ae6d9c | 2013-03-28 08:21:23 -0400 | [diff] [blame] | 5865 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISPF001) }, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 5866 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8044) }, |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 5867 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2071) }, |
Joe Carnuccio | 2c5bbbb | 2014-04-11 16:54:13 -0400 | [diff] [blame] | 5868 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2271) }, |
Sawan Chandak | 2b48992 | 2015-08-04 13:38:03 -0400 | [diff] [blame] | 5869 | { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2261) }, |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5870 | { 0 }, |
| 5871 | }; |
| 5872 | MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl); |
| 5873 | |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5874 | static struct pci_driver qla2xxx_pci_driver = { |
Andrew Vasquez | cb63067 | 2006-05-17 15:09:45 -0700 | [diff] [blame] | 5875 | .name = QLA2XXX_DRIVER_NAME, |
James Bottomley | 0a21ef1 | 2005-12-01 12:51:50 -0600 | [diff] [blame] | 5876 | .driver = { |
| 5877 | .owner = THIS_MODULE, |
| 5878 | }, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5879 | .id_table = qla2xxx_pci_tbl, |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5880 | .probe = qla2x00_probe_one, |
Adrian Bunk | 4c993f7 | 2008-01-14 00:55:16 -0800 | [diff] [blame] | 5881 | .remove = qla2x00_remove_one, |
Madhuranath Iyengar | e30d175 | 2010-10-15 11:27:46 -0700 | [diff] [blame] | 5882 | .shutdown = qla2x00_shutdown, |
Seokmann Ju | 14e660e | 2007-09-20 14:07:36 -0700 | [diff] [blame] | 5883 | .err_handler = &qla2xxx_err_handler, |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5884 | }; |
| 5885 | |
Al Viro | 75ef9de | 2013-04-04 19:09:41 -0400 | [diff] [blame] | 5886 | static const struct file_operations apidev_fops = { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5887 | .owner = THIS_MODULE, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 5888 | .llseek = noop_llseek, |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5889 | }; |
| 5890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5891 | /** |
| 5892 | * qla2x00_module_init - Module initialization. |
| 5893 | **/ |
| 5894 | static int __init |
| 5895 | qla2x00_module_init(void) |
| 5896 | { |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5897 | int ret = 0; |
| 5898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5899 | /* Allocate cache for SRBs. */ |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5900 | srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5901 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5902 | if (srb_cachep == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5903 | ql_log(ql_log_fatal, NULL, 0x0001, |
| 5904 | "Unable to allocate SRB cache...Failing load!.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5905 | return -ENOMEM; |
| 5906 | } |
| 5907 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5908 | /* Initialize target kmem_cache and mem_pools */ |
| 5909 | ret = qlt_init(); |
| 5910 | if (ret < 0) { |
| 5911 | kmem_cache_destroy(srb_cachep); |
| 5912 | return ret; |
| 5913 | } else if (ret > 0) { |
| 5914 | /* |
| 5915 | * If initiator mode is explictly disabled by qlt_init(), |
| 5916 | * prevent scsi_transport_fc.c:fc_scsi_scan_rport() from |
| 5917 | * performing scsi_scan_target() during LOOP UP event. |
| 5918 | */ |
| 5919 | qla2xxx_transport_functions.disable_target_scan = 1; |
| 5920 | qla2xxx_transport_vport_functions.disable_target_scan = 1; |
| 5921 | } |
| 5922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5923 | /* Derive version string. */ |
| 5924 | strcpy(qla2x00_version_str, QLA2XXX_VERSION); |
Andrew Vasquez | 11010fe | 2006-10-06 09:54:59 -0700 | [diff] [blame] | 5925 | if (ql2xextended_error_logging) |
Andrew Vasquez | 0181944 | 2006-06-23 16:11:10 -0700 | [diff] [blame] | 5926 | strcat(qla2x00_version_str, "-debug"); |
| 5927 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 5928 | qla2xxx_transport_template = |
| 5929 | fc_attach_transport(&qla2xxx_transport_functions); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5930 | if (!qla2xxx_transport_template) { |
| 5931 | kmem_cache_destroy(srb_cachep); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5932 | ql_log(ql_log_fatal, NULL, 0x0002, |
| 5933 | "fc_attach_transport failed...Failing load!.\n"); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5934 | qlt_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5935 | return -ENODEV; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5936 | } |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5937 | |
| 5938 | apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops); |
| 5939 | if (apidev_major < 0) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5940 | ql_log(ql_log_fatal, NULL, 0x0003, |
| 5941 | "Unable to register char device %s.\n", QLA2XXX_APIDEV); |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5942 | } |
| 5943 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5944 | qla2xxx_transport_vport_template = |
| 5945 | fc_attach_transport(&qla2xxx_transport_vport_functions); |
| 5946 | if (!qla2xxx_transport_vport_template) { |
| 5947 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5948 | qlt_exit(); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5949 | fc_release_transport(qla2xxx_transport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5950 | ql_log(ql_log_fatal, NULL, 0x0004, |
| 5951 | "fc_attach_transport vport failed...Failing load!.\n"); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5952 | return -ENODEV; |
| 5953 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5954 | ql_log(ql_log_info, NULL, 0x0005, |
| 5955 | "QLogic Fibre Channel HBA Driver: %s.\n", |
Andrew Vasquez | fd9a29f0 | 2008-05-12 22:21:08 -0700 | [diff] [blame] | 5956 | qla2x00_version_str); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5957 | ret = pci_register_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5958 | if (ret) { |
| 5959 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5960 | qlt_exit(); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5961 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5962 | fc_release_transport(qla2xxx_transport_vport_template); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 5963 | ql_log(ql_log_fatal, NULL, 0x0006, |
| 5964 | "pci_register_driver failed...ret=%d Failing load!.\n", |
| 5965 | ret); |
Andrew Vasquez | fca2970 | 2005-07-06 10:31:47 -0700 | [diff] [blame] | 5966 | } |
| 5967 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5968 | } |
| 5969 | |
| 5970 | /** |
| 5971 | * qla2x00_module_exit - Module cleanup. |
| 5972 | **/ |
| 5973 | static void __exit |
| 5974 | qla2x00_module_exit(void) |
| 5975 | { |
Harish Zunjarrao | 6a03b4c | 2010-05-04 15:01:24 -0700 | [diff] [blame] | 5976 | unregister_chrdev(apidev_major, QLA2XXX_APIDEV); |
Andrew Vasquez | 7ee6139 | 2006-06-23 16:11:22 -0700 | [diff] [blame] | 5977 | pci_unregister_driver(&qla2xxx_pci_driver); |
Andrew Vasquez | 5433383 | 2005-11-09 15:49:04 -0800 | [diff] [blame] | 5978 | qla2x00_release_firmware(); |
Andrew Vasquez | 354d6b2 | 2005-04-23 02:47:27 -0400 | [diff] [blame] | 5979 | kmem_cache_destroy(srb_cachep); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 5980 | qlt_exit(); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 5981 | if (ctx_cachep) |
| 5982 | kmem_cache_destroy(ctx_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5983 | fc_release_transport(qla2xxx_transport_template); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 5984 | fc_release_transport(qla2xxx_transport_vport_template); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5985 | } |
| 5986 | |
| 5987 | module_init(qla2x00_module_init); |
| 5988 | module_exit(qla2x00_module_exit); |
| 5989 | |
| 5990 | MODULE_AUTHOR("QLogic Corporation"); |
| 5991 | MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver"); |
| 5992 | MODULE_LICENSE("GPL"); |
| 5993 | MODULE_VERSION(QLA2XXX_VERSION); |
Andrew Vasquez | bb8ee49 | 2006-10-02 12:00:48 -0700 | [diff] [blame] | 5994 | MODULE_FIRMWARE(FW_FILE_ISP21XX); |
| 5995 | MODULE_FIRMWARE(FW_FILE_ISP22XX); |
| 5996 | MODULE_FIRMWARE(FW_FILE_ISP2300); |
| 5997 | MODULE_FIRMWARE(FW_FILE_ISP2322); |
| 5998 | MODULE_FIRMWARE(FW_FILE_ISP24XX); |
Andrew Vasquez | 61623fc | 2008-01-31 12:33:45 -0800 | [diff] [blame] | 5999 | MODULE_FIRMWARE(FW_FILE_ISP25XX); |
Sawan Chandak | f1458cd | 2015-04-09 14:59:59 -0400 | [diff] [blame] | 6000 | MODULE_FIRMWARE(FW_FILE_ISP2031); |
| 6001 | MODULE_FIRMWARE(FW_FILE_ISP8031); |
| 6002 | MODULE_FIRMWARE(FW_FILE_ISP27XX); |