Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1 | /* |
| 2 | * This is the Fusion MPT base driver providing common API layer interface |
| 3 | * for access to MPT (Message Passing Technology) firmware. |
| 4 | * |
| 5 | * This code is based on drivers/scsi/mpt3sas/mpt3sas_base.h |
Sreekanth Reddy | a4ffce0 | 2014-09-12 15:35:29 +0530 | [diff] [blame] | 6 | * Copyright (C) 2012-2014 LSI Corporation |
Sreekanth Reddy | a03bd15 | 2015-01-12 11:39:02 +0530 | [diff] [blame] | 7 | * Copyright (C) 2013-2014 Avago Technologies |
| 8 | * (mailto: MPT-FusionLinux.pdl@avagotech.com) |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version 2 |
| 13 | * of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * NO WARRANTY |
| 21 | * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR |
| 22 | * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT |
| 23 | * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, |
| 24 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is |
| 25 | * solely responsible for determining the appropriateness of using and |
| 26 | * distributing the Program and assumes all risks associated with its |
| 27 | * exercise of rights under this Agreement, including but not limited to |
| 28 | * the risks and costs of program errors, damage to or loss of data, |
| 29 | * programs or equipment, and unavailability or interruption of operations. |
| 30 | |
| 31 | * DISCLAIMER OF LIABILITY |
| 32 | * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY |
| 33 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 34 | * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND |
| 35 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 36 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
| 37 | * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED |
| 38 | * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES |
| 39 | |
| 40 | * You should have received a copy of the GNU General Public License |
| 41 | * along with this program; if not, write to the Free Software |
| 42 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, |
| 43 | * USA. |
| 44 | */ |
| 45 | |
| 46 | #ifndef MPT3SAS_BASE_H_INCLUDED |
| 47 | #define MPT3SAS_BASE_H_INCLUDED |
| 48 | |
| 49 | #include "mpi/mpi2_type.h" |
| 50 | #include "mpi/mpi2.h" |
| 51 | #include "mpi/mpi2_ioc.h" |
| 52 | #include "mpi/mpi2_cnfg.h" |
| 53 | #include "mpi/mpi2_init.h" |
| 54 | #include "mpi/mpi2_raid.h" |
| 55 | #include "mpi/mpi2_tool.h" |
| 56 | #include "mpi/mpi2_sas.h" |
| 57 | |
| 58 | #include <scsi/scsi.h> |
| 59 | #include <scsi/scsi_cmnd.h> |
| 60 | #include <scsi/scsi_device.h> |
| 61 | #include <scsi/scsi_host.h> |
| 62 | #include <scsi/scsi_tcq.h> |
| 63 | #include <scsi/scsi_transport_sas.h> |
| 64 | #include <scsi/scsi_dbg.h> |
| 65 | #include <scsi/scsi_eh.h> |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 66 | #include <linux/pci.h> |
| 67 | #include <linux/poll.h> |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 68 | |
| 69 | #include "mpt3sas_debug.h" |
| 70 | #include "mpt3sas_trigger_diag.h" |
| 71 | |
| 72 | /* driver versioning info */ |
| 73 | #define MPT3SAS_DRIVER_NAME "mpt3sas" |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 74 | #define MPT2SAS_DRIVER_NAME "mpt2sas" |
Sreekanth Reddy | a03bd15 | 2015-01-12 11:39:02 +0530 | [diff] [blame] | 75 | #define MPT3SAS_AUTHOR "Avago Technologies <MPT-FusionLinux.pdl@avagotech.com>" |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 76 | #define MPT3SAS_DESCRIPTION "LSI MPT Fusion SAS 3.0 Device Driver" |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 77 | #define MPT2SAS_DESCRIPTION "LSI MPT Fusion SAS 2.0 Device Driver" |
Sreekanth Reddy | c75683c | 2015-06-30 12:25:06 +0530 | [diff] [blame] | 78 | #define MPT3SAS_DRIVER_VERSION "09.100.00.00" |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 79 | #define MPT2SAS_DRIVER_VERSION "20.101.00.00" |
Sreekanth Reddy | c75683c | 2015-06-30 12:25:06 +0530 | [diff] [blame] | 80 | #define MPT3SAS_MAJOR_VERSION 9 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 81 | #define MPT3SAS_MINOR_VERSION 100 |
Sreekanth Reddy | e9ce9c8 | 2013-06-29 03:55:45 +0530 | [diff] [blame] | 82 | #define MPT3SAS_BUILD_VERSION 0 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 83 | #define MPT3SAS_RELEASE_VERSION 00 |
| 84 | |
| 85 | /* |
| 86 | * Set MPT3SAS_SG_DEPTH value based on user input. |
| 87 | */ |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 88 | #define MPT_MAX_PHYS_SEGMENTS SCSI_MAX_SG_SEGMENTS |
| 89 | #define MPT_MIN_PHYS_SEGMENTS 16 |
| 90 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 91 | #ifdef CONFIG_SCSI_MPT3SAS_MAX_SGE |
| 92 | #define MPT3SAS_SG_DEPTH CONFIG_SCSI_MPT3SAS_MAX_SGE |
| 93 | #else |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 94 | #define MPT3SAS_SG_DEPTH MPT_MAX_PHYS_SEGMENTS |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 95 | #endif |
| 96 | |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 97 | #ifdef CONFIG_SCSI_MPT2SAS_MAX_SGE |
| 98 | #define MPT2SAS_SG_DEPTH CONFIG_SCSI_MPT2SAS_MAX_SGE |
| 99 | #else |
| 100 | #define MPT2SAS_SG_DEPTH MPT_MAX_PHYS_SEGMENTS |
| 101 | #endif |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 102 | |
| 103 | /* |
| 104 | * Generic Defines |
| 105 | */ |
| 106 | #define MPT3SAS_SATA_QUEUE_DEPTH 32 |
| 107 | #define MPT3SAS_SAS_QUEUE_DEPTH 254 |
| 108 | #define MPT3SAS_RAID_QUEUE_DEPTH 128 |
| 109 | |
| 110 | #define MPT_NAME_LENGTH 32 /* generic length of strings */ |
| 111 | #define MPT_STRING_LENGTH 64 |
| 112 | |
| 113 | #define MPT_MAX_CALLBACKS 32 |
| 114 | |
| 115 | |
| 116 | #define CAN_SLEEP 1 |
| 117 | #define NO_SLEEP 0 |
| 118 | |
| 119 | #define INTERNAL_CMDS_COUNT 10 /* reserved cmds */ |
| 120 | |
| 121 | #define MPI3_HIM_MASK 0xFFFFFFFF /* mask every bit*/ |
| 122 | |
| 123 | #define MPT3SAS_INVALID_DEVICE_HANDLE 0xFFFF |
| 124 | |
| 125 | /* |
| 126 | * reset phases |
| 127 | */ |
| 128 | #define MPT3_IOC_PRE_RESET 1 /* prior to host reset */ |
| 129 | #define MPT3_IOC_AFTER_RESET 2 /* just after host reset */ |
| 130 | #define MPT3_IOC_DONE_RESET 3 /* links re-initialized */ |
| 131 | |
| 132 | /* |
| 133 | * logging format |
| 134 | */ |
| 135 | #define MPT3SAS_FMT "%s: " |
| 136 | |
| 137 | /* |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 138 | * WarpDrive Specific Log codes |
| 139 | */ |
| 140 | |
| 141 | #define MPT2_WARPDRIVE_LOGENTRY (0x8002) |
| 142 | #define MPT2_WARPDRIVE_LC_SSDT (0x41) |
| 143 | #define MPT2_WARPDRIVE_LC_SSDLW (0x43) |
| 144 | #define MPT2_WARPDRIVE_LC_SSDLF (0x44) |
| 145 | #define MPT2_WARPDRIVE_LC_BRMF (0x4D) |
| 146 | |
| 147 | /* |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 148 | * per target private data |
| 149 | */ |
| 150 | #define MPT_TARGET_FLAGS_RAID_COMPONENT 0x01 |
| 151 | #define MPT_TARGET_FLAGS_VOLUME 0x02 |
| 152 | #define MPT_TARGET_FLAGS_DELETED 0x04 |
| 153 | #define MPT_TARGET_FASTPATH_IO 0x08 |
| 154 | |
Sreekanth Reddy | 4208117 | 2015-11-11 17:30:26 +0530 | [diff] [blame] | 155 | #define SAS2_PCI_DEVICE_B0_REVISION (0x01) |
| 156 | #define SAS3_PCI_DEVICE_C0_REVISION (0x02) |
| 157 | |
Sreekanth Reddy | 1117b31 | 2014-09-12 15:35:30 +0530 | [diff] [blame] | 158 | /* |
| 159 | * Intel HBA branding |
| 160 | */ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 161 | #define MPT2SAS_INTEL_RMS25JB080_BRANDING \ |
| 162 | "Intel(R) Integrated RAID Module RMS25JB080" |
| 163 | #define MPT2SAS_INTEL_RMS25JB040_BRANDING \ |
| 164 | "Intel(R) Integrated RAID Module RMS25JB040" |
| 165 | #define MPT2SAS_INTEL_RMS25KB080_BRANDING \ |
| 166 | "Intel(R) Integrated RAID Module RMS25KB080" |
| 167 | #define MPT2SAS_INTEL_RMS25KB040_BRANDING \ |
| 168 | "Intel(R) Integrated RAID Module RMS25KB040" |
| 169 | #define MPT2SAS_INTEL_RMS25LB040_BRANDING \ |
| 170 | "Intel(R) Integrated RAID Module RMS25LB040" |
| 171 | #define MPT2SAS_INTEL_RMS25LB080_BRANDING \ |
| 172 | "Intel(R) Integrated RAID Module RMS25LB080" |
| 173 | #define MPT2SAS_INTEL_RMS2LL080_BRANDING \ |
| 174 | "Intel Integrated RAID Module RMS2LL080" |
| 175 | #define MPT2SAS_INTEL_RMS2LL040_BRANDING \ |
| 176 | "Intel Integrated RAID Module RMS2LL040" |
| 177 | #define MPT2SAS_INTEL_RS25GB008_BRANDING \ |
| 178 | "Intel(R) RAID Controller RS25GB008" |
| 179 | #define MPT2SAS_INTEL_SSD910_BRANDING \ |
| 180 | "Intel(R) SSD 910 Series" |
| 181 | |
Sreekanth Reddy | 1117b31 | 2014-09-12 15:35:30 +0530 | [diff] [blame] | 182 | #define MPT3SAS_INTEL_RMS3JC080_BRANDING \ |
| 183 | "Intel(R) Integrated RAID Module RMS3JC080" |
| 184 | #define MPT3SAS_INTEL_RS3GC008_BRANDING \ |
| 185 | "Intel(R) RAID Controller RS3GC008" |
| 186 | #define MPT3SAS_INTEL_RS3FC044_BRANDING \ |
| 187 | "Intel(R) RAID Controller RS3FC044" |
| 188 | #define MPT3SAS_INTEL_RS3UC080_BRANDING \ |
| 189 | "Intel(R) RAID Controller RS3UC080" |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 190 | |
Sreekanth Reddy | 1117b31 | 2014-09-12 15:35:30 +0530 | [diff] [blame] | 191 | /* |
| 192 | * Intel HBA SSDIDs |
| 193 | */ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 194 | #define MPT2SAS_INTEL_RMS25JB080_SSDID 0x3516 |
| 195 | #define MPT2SAS_INTEL_RMS25JB040_SSDID 0x3517 |
| 196 | #define MPT2SAS_INTEL_RMS25KB080_SSDID 0x3518 |
| 197 | #define MPT2SAS_INTEL_RMS25KB040_SSDID 0x3519 |
| 198 | #define MPT2SAS_INTEL_RMS25LB040_SSDID 0x351A |
| 199 | #define MPT2SAS_INTEL_RMS25LB080_SSDID 0x351B |
| 200 | #define MPT2SAS_INTEL_RMS2LL080_SSDID 0x350E |
| 201 | #define MPT2SAS_INTEL_RMS2LL040_SSDID 0x350F |
| 202 | #define MPT2SAS_INTEL_RS25GB008_SSDID 0x3000 |
| 203 | #define MPT2SAS_INTEL_SSD910_SSDID 0x3700 |
| 204 | |
| 205 | #define MPT3SAS_INTEL_RMS3JC080_SSDID 0x3521 |
| 206 | #define MPT3SAS_INTEL_RS3GC008_SSDID 0x3522 |
| 207 | #define MPT3SAS_INTEL_RS3FC044_SSDID 0x3523 |
| 208 | #define MPT3SAS_INTEL_RS3UC080_SSDID 0x3524 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 209 | |
| 210 | /* |
Sreekanth Reddy | fb84dfc | 2015-06-30 12:24:56 +0530 | [diff] [blame] | 211 | * Dell HBA branding |
| 212 | */ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 213 | #define MPT2SAS_DELL_BRANDING_SIZE 32 |
| 214 | |
| 215 | #define MPT2SAS_DELL_6GBPS_SAS_HBA_BRANDING "Dell 6Gbps SAS HBA" |
| 216 | #define MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING "Dell PERC H200 Adapter" |
| 217 | #define MPT2SAS_DELL_PERC_H200_INTEGRATED_BRANDING "Dell PERC H200 Integrated" |
| 218 | #define MPT2SAS_DELL_PERC_H200_MODULAR_BRANDING "Dell PERC H200 Modular" |
| 219 | #define MPT2SAS_DELL_PERC_H200_EMBEDDED_BRANDING "Dell PERC H200 Embedded" |
| 220 | #define MPT2SAS_DELL_PERC_H200_BRANDING "Dell PERC H200" |
| 221 | #define MPT2SAS_DELL_6GBPS_SAS_BRANDING "Dell 6Gbps SAS" |
| 222 | |
Sreekanth Reddy | fb84dfc | 2015-06-30 12:24:56 +0530 | [diff] [blame] | 223 | #define MPT3SAS_DELL_12G_HBA_BRANDING \ |
| 224 | "Dell 12Gbps HBA" |
| 225 | |
| 226 | /* |
| 227 | * Dell HBA SSDIDs |
| 228 | */ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 229 | #define MPT2SAS_DELL_6GBPS_SAS_HBA_SSDID 0x1F1C |
| 230 | #define MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID 0x1F1D |
| 231 | #define MPT2SAS_DELL_PERC_H200_INTEGRATED_SSDID 0x1F1E |
| 232 | #define MPT2SAS_DELL_PERC_H200_MODULAR_SSDID 0x1F1F |
| 233 | #define MPT2SAS_DELL_PERC_H200_EMBEDDED_SSDID 0x1F20 |
| 234 | #define MPT2SAS_DELL_PERC_H200_SSDID 0x1F21 |
| 235 | #define MPT2SAS_DELL_6GBPS_SAS_SSDID 0x1F22 |
| 236 | |
| 237 | #define MPT3SAS_DELL_12G_HBA_SSDID 0x1F46 |
Sreekanth Reddy | fb84dfc | 2015-06-30 12:24:56 +0530 | [diff] [blame] | 238 | |
| 239 | /* |
Sreekanth Reddy | 38e4141 | 2015-06-30 12:24:57 +0530 | [diff] [blame] | 240 | * Cisco HBA branding |
| 241 | */ |
Sreekanth Reddy | d8eb4a4 | 2015-06-30 12:25:02 +0530 | [diff] [blame] | 242 | #define MPT3SAS_CISCO_12G_8E_HBA_BRANDING \ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 243 | "Cisco 9300-8E 12G SAS HBA" |
Sreekanth Reddy | d8eb4a4 | 2015-06-30 12:25:02 +0530 | [diff] [blame] | 244 | #define MPT3SAS_CISCO_12G_8I_HBA_BRANDING \ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 245 | "Cisco 9300-8i 12G SAS HBA" |
Sreekanth Reddy | d8eb4a4 | 2015-06-30 12:25:02 +0530 | [diff] [blame] | 246 | #define MPT3SAS_CISCO_12G_AVILA_HBA_BRANDING \ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 247 | "Cisco 12G Modular SAS Pass through Controller" |
Sreekanth Reddy | d8eb4a4 | 2015-06-30 12:25:02 +0530 | [diff] [blame] | 248 | #define MPT3SAS_CISCO_12G_COLUSA_MEZZANINE_HBA_BRANDING \ |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 249 | "UCS C3X60 12G SAS Pass through Controller" |
Sreekanth Reddy | 38e4141 | 2015-06-30 12:24:57 +0530 | [diff] [blame] | 250 | /* |
| 251 | * Cisco HBA SSSDIDs |
| 252 | */ |
Sreekanth Reddy | d8eb4a4 | 2015-06-30 12:25:02 +0530 | [diff] [blame] | 253 | #define MPT3SAS_CISCO_12G_8E_HBA_SSDID 0x14C |
| 254 | #define MPT3SAS_CISCO_12G_8I_HBA_SSDID 0x154 |
| 255 | #define MPT3SAS_CISCO_12G_AVILA_HBA_SSDID 0x155 |
| 256 | #define MPT3SAS_CISCO_12G_COLUSA_MEZZANINE_HBA_SSDID 0x156 |
Sreekanth Reddy | 38e4141 | 2015-06-30 12:24:57 +0530 | [diff] [blame] | 257 | |
| 258 | /* |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 259 | * status bits for ioc->diag_buffer_status |
| 260 | */ |
| 261 | #define MPT3_DIAG_BUFFER_IS_REGISTERED (0x01) |
| 262 | #define MPT3_DIAG_BUFFER_IS_RELEASED (0x02) |
| 263 | #define MPT3_DIAG_BUFFER_IS_DIAG_RESET (0x04) |
| 264 | |
Sreekanth Reddy | fb77bb5 | 2015-06-30 12:24:47 +0530 | [diff] [blame] | 265 | /* |
Sreekanth Reddy | 989e43c | 2015-11-11 17:30:32 +0530 | [diff] [blame] | 266 | * HP HBA branding |
| 267 | */ |
| 268 | #define MPT2SAS_HP_3PAR_SSVID 0x1590 |
| 269 | |
| 270 | #define MPT2SAS_HP_2_4_INTERNAL_BRANDING \ |
| 271 | "HP H220 Host Bus Adapter" |
| 272 | #define MPT2SAS_HP_2_4_EXTERNAL_BRANDING \ |
| 273 | "HP H221 Host Bus Adapter" |
| 274 | #define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING \ |
| 275 | "HP H222 Host Bus Adapter" |
| 276 | #define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING \ |
| 277 | "HP H220i Host Bus Adapter" |
| 278 | #define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING \ |
| 279 | "HP H210i Host Bus Adapter" |
| 280 | |
| 281 | /* |
| 282 | * HO HBA SSDIDs |
| 283 | */ |
| 284 | #define MPT2SAS_HP_2_4_INTERNAL_SSDID 0x0041 |
| 285 | #define MPT2SAS_HP_2_4_EXTERNAL_SSDID 0x0042 |
| 286 | #define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID 0x0043 |
| 287 | #define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID 0x0044 |
| 288 | #define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID 0x0046 |
| 289 | |
| 290 | /* |
Sreekanth Reddy | fb77bb5 | 2015-06-30 12:24:47 +0530 | [diff] [blame] | 291 | * Combined Reply Queue constants, |
| 292 | * There are twelve Supplemental Reply Post Host Index Registers |
| 293 | * and each register is at offset 0x10 bytes from the previous one. |
| 294 | */ |
| 295 | #define MPT3_SUP_REPLY_POST_HOST_INDEX_REG_COUNT 12 |
| 296 | #define MPT3_SUP_REPLY_POST_HOST_INDEX_REG_OFFSET (0x10) |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 297 | |
| 298 | /* OEM Identifiers */ |
| 299 | #define MFG10_OEM_ID_INVALID (0x00000000) |
| 300 | #define MFG10_OEM_ID_DELL (0x00000001) |
| 301 | #define MFG10_OEM_ID_FSC (0x00000002) |
| 302 | #define MFG10_OEM_ID_SUN (0x00000003) |
| 303 | #define MFG10_OEM_ID_IBM (0x00000004) |
| 304 | |
| 305 | /* GENERIC Flags 0*/ |
| 306 | #define MFG10_GF0_OCE_DISABLED (0x00000001) |
| 307 | #define MFG10_GF0_R1E_DRIVE_COUNT (0x00000002) |
| 308 | #define MFG10_GF0_R10_DISPLAY (0x00000004) |
| 309 | #define MFG10_GF0_SSD_DATA_SCRUB_DISABLE (0x00000008) |
| 310 | #define MFG10_GF0_SINGLE_DRIVE_R0 (0x00000010) |
| 311 | |
Sreekanth Reddy | 3898f08 | 2015-06-30 12:25:00 +0530 | [diff] [blame] | 312 | #define VIRTUAL_IO_FAILED_RETRY (0x32010081) |
| 313 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 314 | /* OEM Specific Flags will come from OEM specific header files */ |
| 315 | struct Mpi2ManufacturingPage10_t { |
| 316 | MPI2_CONFIG_PAGE_HEADER Header; /* 00h */ |
| 317 | U8 OEMIdentifier; /* 04h */ |
| 318 | U8 Reserved1; /* 05h */ |
| 319 | U16 Reserved2; /* 08h */ |
| 320 | U32 Reserved3; /* 0Ch */ |
| 321 | U32 GenericFlags0; /* 10h */ |
| 322 | U32 GenericFlags1; /* 14h */ |
| 323 | U32 Reserved4; /* 18h */ |
| 324 | U32 OEMSpecificFlags0; /* 1Ch */ |
| 325 | U32 OEMSpecificFlags1; /* 20h */ |
| 326 | U32 Reserved5[18]; /* 24h - 60h*/ |
| 327 | }; |
| 328 | |
| 329 | |
| 330 | /* Miscellaneous options */ |
| 331 | struct Mpi2ManufacturingPage11_t { |
| 332 | MPI2_CONFIG_PAGE_HEADER Header; /* 00h */ |
| 333 | __le32 Reserved1; /* 04h */ |
| 334 | u8 Reserved2; /* 08h */ |
| 335 | u8 EEDPTagMode; /* 09h */ |
| 336 | u8 Reserved3; /* 0Ah */ |
| 337 | u8 Reserved4; /* 0Bh */ |
| 338 | __le32 Reserved5[23]; /* 0Ch-60h*/ |
| 339 | }; |
| 340 | |
| 341 | /** |
| 342 | * struct MPT3SAS_TARGET - starget private hostdata |
| 343 | * @starget: starget object |
| 344 | * @sas_address: target sas address |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 345 | * @raid_device: raid_device pointer to access volume data |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 346 | * @handle: device handle |
| 347 | * @num_luns: number luns |
| 348 | * @flags: MPT_TARGET_FLAGS_XXX flags |
| 349 | * @deleted: target flaged for deletion |
| 350 | * @tm_busy: target is busy with TM request. |
Sreekanth Reddy | d1cb5e4 | 2015-11-11 17:30:30 +0530 | [diff] [blame] | 351 | * @sdev: The sas_device associated with this target |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 352 | */ |
| 353 | struct MPT3SAS_TARGET { |
| 354 | struct scsi_target *starget; |
| 355 | u64 sas_address; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 356 | struct _raid_device *raid_device; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 357 | u16 handle; |
| 358 | int num_luns; |
| 359 | u32 flags; |
| 360 | u8 deleted; |
| 361 | u8 tm_busy; |
Sreekanth Reddy | d1cb5e4 | 2015-11-11 17:30:30 +0530 | [diff] [blame] | 362 | struct _sas_device *sdev; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 363 | }; |
| 364 | |
| 365 | |
| 366 | /* |
| 367 | * per device private data |
| 368 | */ |
| 369 | #define MPT_DEVICE_FLAGS_INIT 0x01 |
| 370 | #define MPT_DEVICE_TLR_ON 0x02 |
| 371 | |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 372 | #define MFG_PAGE10_HIDE_SSDS_MASK (0x00000003) |
| 373 | #define MFG_PAGE10_HIDE_ALL_DISKS (0x00) |
| 374 | #define MFG_PAGE10_EXPOSE_ALL_DISKS (0x01) |
| 375 | #define MFG_PAGE10_HIDE_IF_VOL_PRESENT (0x02) |
| 376 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 377 | /** |
| 378 | * struct MPT3SAS_DEVICE - sdev private hostdata |
| 379 | * @sas_target: starget private hostdata |
| 380 | * @lun: lun number |
| 381 | * @flags: MPT_DEVICE_XXX flags |
| 382 | * @configured_lun: lun is configured |
| 383 | * @block: device is in SDEV_BLOCK state |
| 384 | * @tlr_snoop_check: flag used in determining whether to disable TLR |
| 385 | * @eedp_enable: eedp support enable bit |
| 386 | * @eedp_type: 0(type_1), 1(type_2), 2(type_3) |
| 387 | * @eedp_block_length: block size |
| 388 | */ |
| 389 | struct MPT3SAS_DEVICE { |
| 390 | struct MPT3SAS_TARGET *sas_target; |
| 391 | unsigned int lun; |
| 392 | u32 flags; |
| 393 | u8 configured_lun; |
| 394 | u8 block; |
| 395 | u8 tlr_snoop_check; |
| 396 | }; |
| 397 | |
| 398 | #define MPT3_CMD_NOT_USED 0x8000 /* free */ |
| 399 | #define MPT3_CMD_COMPLETE 0x0001 /* completed */ |
| 400 | #define MPT3_CMD_PENDING 0x0002 /* pending */ |
| 401 | #define MPT3_CMD_REPLY_VALID 0x0004 /* reply is valid */ |
| 402 | #define MPT3_CMD_RESET 0x0008 /* host reset dropped the command */ |
| 403 | |
| 404 | /** |
| 405 | * struct _internal_cmd - internal commands struct |
| 406 | * @mutex: mutex |
| 407 | * @done: completion |
| 408 | * @reply: reply message pointer |
| 409 | * @sense: sense data |
| 410 | * @status: MPT3_CMD_XXX status |
| 411 | * @smid: system message id |
| 412 | */ |
| 413 | struct _internal_cmd { |
| 414 | struct mutex mutex; |
| 415 | struct completion done; |
| 416 | void *reply; |
| 417 | void *sense; |
| 418 | u16 status; |
| 419 | u16 smid; |
| 420 | }; |
| 421 | |
| 422 | |
| 423 | |
| 424 | /** |
| 425 | * struct _sas_device - attached device information |
| 426 | * @list: sas device list |
| 427 | * @starget: starget object |
| 428 | * @sas_address: device sas address |
| 429 | * @device_name: retrieved from the SAS IDENTIFY frame. |
| 430 | * @handle: device handle |
| 431 | * @sas_address_parent: sas address of parent expander or sas host |
| 432 | * @enclosure_handle: enclosure handle |
| 433 | * @enclosure_logical_id: enclosure logical identifier |
| 434 | * @volume_handle: volume handle (valid when hidden raid member) |
| 435 | * @volume_wwid: volume unique identifier |
| 436 | * @device_info: bitfield provides detailed info about the device |
| 437 | * @id: target id |
| 438 | * @channel: target channel |
| 439 | * @slot: number number |
| 440 | * @phy: phy identifier provided in sas device page 0 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 441 | * @responding: used in _scsih_sas_device_mark_responding |
Sreekanth Reddy | 0f624c3 | 2014-09-12 15:35:26 +0530 | [diff] [blame] | 442 | * @fast_path: fast path feature enable bit |
| 443 | * @pfa_led_on: flag for PFA LED status |
Sreekanth Reddy | e4bc7f5 | 2015-06-30 12:24:49 +0530 | [diff] [blame] | 444 | * @pend_sas_rphy_add: flag to check if device is in sas_rphy_add() |
| 445 | * addition routine. |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 446 | */ |
| 447 | struct _sas_device { |
| 448 | struct list_head list; |
| 449 | struct scsi_target *starget; |
| 450 | u64 sas_address; |
| 451 | u64 device_name; |
| 452 | u16 handle; |
| 453 | u64 sas_address_parent; |
| 454 | u16 enclosure_handle; |
| 455 | u64 enclosure_logical_id; |
| 456 | u16 volume_handle; |
| 457 | u64 volume_wwid; |
| 458 | u32 device_info; |
| 459 | int id; |
| 460 | int channel; |
| 461 | u16 slot; |
| 462 | u8 phy; |
| 463 | u8 responding; |
| 464 | u8 fast_path; |
Sreekanth Reddy | 0f624c3 | 2014-09-12 15:35:26 +0530 | [diff] [blame] | 465 | u8 pfa_led_on; |
Sreekanth Reddy | e4bc7f5 | 2015-06-30 12:24:49 +0530 | [diff] [blame] | 466 | u8 pend_sas_rphy_add; |
Sreekanth Reddy | e6d45e3 | 2015-06-30 12:24:52 +0530 | [diff] [blame] | 467 | u8 enclosure_level; |
| 468 | u8 connector_name[4]; |
Sreekanth Reddy | d1cb5e4 | 2015-11-11 17:30:30 +0530 | [diff] [blame] | 469 | struct kref refcount; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 470 | }; |
| 471 | |
Sreekanth Reddy | d1cb5e4 | 2015-11-11 17:30:30 +0530 | [diff] [blame] | 472 | static inline void sas_device_get(struct _sas_device *s) |
| 473 | { |
| 474 | kref_get(&s->refcount); |
| 475 | } |
| 476 | |
| 477 | static inline void sas_device_free(struct kref *r) |
| 478 | { |
| 479 | kfree(container_of(r, struct _sas_device, refcount)); |
| 480 | } |
| 481 | |
| 482 | static inline void sas_device_put(struct _sas_device *s) |
| 483 | { |
| 484 | kref_put(&s->refcount, sas_device_free); |
| 485 | } |
| 486 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 487 | /** |
| 488 | * struct _raid_device - raid volume link list |
| 489 | * @list: sas device list |
| 490 | * @starget: starget object |
| 491 | * @sdev: scsi device struct (volumes are single lun) |
| 492 | * @wwid: unique identifier for the volume |
| 493 | * @handle: device handle |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 494 | * @block_size: Block size of the volume |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 495 | * @id: target id |
| 496 | * @channel: target channel |
| 497 | * @volume_type: the raid level |
| 498 | * @device_info: bitfield provides detailed info about the hidden components |
| 499 | * @num_pds: number of hidden raid components |
| 500 | * @responding: used in _scsih_raid_device_mark_responding |
| 501 | * @percent_complete: resync percent complete |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 502 | * @direct_io_enabled: Whether direct io to PDs are allowed or not |
| 503 | * @stripe_exponent: X where 2powX is the stripe sz in blocks |
| 504 | * @block_exponent: X where 2powX is the block sz in bytes |
| 505 | * @max_lba: Maximum number of LBA in the volume |
| 506 | * @stripe_sz: Stripe Size of the volume |
| 507 | * @device_info: Device info of the volume member disk |
| 508 | * @pd_handle: Array of handles of the physical drives for direct I/O in le16 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 509 | */ |
| 510 | #define MPT_MAX_WARPDRIVE_PDS 8 |
| 511 | struct _raid_device { |
| 512 | struct list_head list; |
| 513 | struct scsi_target *starget; |
| 514 | struct scsi_device *sdev; |
| 515 | u64 wwid; |
| 516 | u16 handle; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 517 | u16 block_sz; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 518 | int id; |
| 519 | int channel; |
| 520 | u8 volume_type; |
| 521 | u8 num_pds; |
| 522 | u8 responding; |
| 523 | u8 percent_complete; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 524 | u8 direct_io_enabled; |
| 525 | u8 stripe_exponent; |
| 526 | u8 block_exponent; |
| 527 | u64 max_lba; |
| 528 | u32 stripe_sz; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 529 | u32 device_info; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 530 | u16 pd_handle[MPT_MAX_WARPDRIVE_PDS]; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 531 | }; |
| 532 | |
| 533 | /** |
| 534 | * struct _boot_device - boot device info |
| 535 | * @is_raid: flag to indicate whether this is volume |
| 536 | * @device: holds pointer for either struct _sas_device or |
| 537 | * struct _raid_device |
| 538 | */ |
| 539 | struct _boot_device { |
| 540 | u8 is_raid; |
| 541 | void *device; |
| 542 | }; |
| 543 | |
| 544 | /** |
| 545 | * struct _sas_port - wide/narrow sas port information |
| 546 | * @port_list: list of ports belonging to expander |
| 547 | * @num_phys: number of phys belonging to this port |
| 548 | * @remote_identify: attached device identification |
| 549 | * @rphy: sas transport rphy object |
| 550 | * @port: sas transport wide/narrow port object |
| 551 | * @phy_list: _sas_phy list objects belonging to this port |
| 552 | */ |
| 553 | struct _sas_port { |
| 554 | struct list_head port_list; |
| 555 | u8 num_phys; |
| 556 | struct sas_identify remote_identify; |
| 557 | struct sas_rphy *rphy; |
| 558 | struct sas_port *port; |
| 559 | struct list_head phy_list; |
| 560 | }; |
| 561 | |
| 562 | /** |
| 563 | * struct _sas_phy - phy information |
| 564 | * @port_siblings: list of phys belonging to a port |
| 565 | * @identify: phy identification |
| 566 | * @remote_identify: attached device identification |
| 567 | * @phy: sas transport phy object |
| 568 | * @phy_id: unique phy id |
| 569 | * @handle: device handle for this phy |
| 570 | * @attached_handle: device handle for attached device |
| 571 | * @phy_belongs_to_port: port has been created for this phy |
| 572 | */ |
| 573 | struct _sas_phy { |
| 574 | struct list_head port_siblings; |
| 575 | struct sas_identify identify; |
| 576 | struct sas_identify remote_identify; |
| 577 | struct sas_phy *phy; |
| 578 | u8 phy_id; |
| 579 | u16 handle; |
| 580 | u16 attached_handle; |
| 581 | u8 phy_belongs_to_port; |
| 582 | }; |
| 583 | |
| 584 | /** |
| 585 | * struct _sas_node - sas_host/expander information |
| 586 | * @list: list of expanders |
| 587 | * @parent_dev: parent device class |
| 588 | * @num_phys: number phys belonging to this sas_host/expander |
| 589 | * @sas_address: sas address of this sas_host/expander |
| 590 | * @handle: handle for this sas_host/expander |
| 591 | * @sas_address_parent: sas address of parent expander or sas host |
| 592 | * @enclosure_handle: handle for this a member of an enclosure |
| 593 | * @device_info: bitwise defining capabilities of this sas_host/expander |
| 594 | * @responding: used in _scsih_expander_device_mark_responding |
| 595 | * @phy: a list of phys that make up this sas_host/expander |
| 596 | * @sas_port_list: list of ports attached to this sas_host/expander |
| 597 | */ |
| 598 | struct _sas_node { |
| 599 | struct list_head list; |
| 600 | struct device *parent_dev; |
| 601 | u8 num_phys; |
| 602 | u64 sas_address; |
| 603 | u16 handle; |
| 604 | u64 sas_address_parent; |
| 605 | u16 enclosure_handle; |
| 606 | u64 enclosure_logical_id; |
| 607 | u8 responding; |
| 608 | struct _sas_phy *phy; |
| 609 | struct list_head sas_port_list; |
| 610 | }; |
| 611 | |
| 612 | /** |
| 613 | * enum reset_type - reset state |
| 614 | * @FORCE_BIG_HAMMER: issue diagnostic reset |
| 615 | * @SOFT_RESET: issue message_unit_reset, if fails to to big hammer |
| 616 | */ |
| 617 | enum reset_type { |
| 618 | FORCE_BIG_HAMMER, |
| 619 | SOFT_RESET, |
| 620 | }; |
| 621 | |
| 622 | /** |
| 623 | * struct chain_tracker - firmware chain tracker |
| 624 | * @chain_buffer: chain buffer |
| 625 | * @chain_buffer_dma: physical address |
| 626 | * @tracker_list: list of free request (ioc->free_chain_list) |
| 627 | */ |
| 628 | struct chain_tracker { |
| 629 | void *chain_buffer; |
| 630 | dma_addr_t chain_buffer_dma; |
| 631 | struct list_head tracker_list; |
| 632 | }; |
| 633 | |
| 634 | /** |
| 635 | * struct scsiio_tracker - scsi mf request tracker |
| 636 | * @smid: system message id |
| 637 | * @scmd: scsi request pointer |
| 638 | * @cb_idx: callback index |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 639 | * @direct_io: To indicate whether I/O is direct (WARPDRIVE) |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 640 | * @tracker_list: list of free request (ioc->free_list) |
| 641 | */ |
| 642 | struct scsiio_tracker { |
| 643 | u16 smid; |
| 644 | struct scsi_cmnd *scmd; |
| 645 | u8 cb_idx; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 646 | u8 direct_io; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 647 | struct list_head chain_list; |
| 648 | struct list_head tracker_list; |
| 649 | }; |
| 650 | |
| 651 | /** |
| 652 | * struct request_tracker - firmware request tracker |
| 653 | * @smid: system message id |
| 654 | * @cb_idx: callback index |
| 655 | * @tracker_list: list of free request (ioc->free_list) |
| 656 | */ |
| 657 | struct request_tracker { |
| 658 | u16 smid; |
| 659 | u8 cb_idx; |
| 660 | struct list_head tracker_list; |
| 661 | }; |
| 662 | |
| 663 | /** |
| 664 | * struct _tr_list - target reset list |
| 665 | * @handle: device handle |
| 666 | * @state: state machine |
| 667 | */ |
| 668 | struct _tr_list { |
| 669 | struct list_head list; |
| 670 | u16 handle; |
| 671 | u16 state; |
| 672 | }; |
| 673 | |
| 674 | |
| 675 | /** |
| 676 | * struct adapter_reply_queue - the reply queue struct |
| 677 | * @ioc: per adapter object |
| 678 | * @msix_index: msix index into vector table |
| 679 | * @vector: irq vector |
| 680 | * @reply_post_host_index: head index in the pool where FW completes IO |
| 681 | * @reply_post_free: reply post base virt address |
| 682 | * @name: the name registered to request_irq() |
| 683 | * @busy: isr is actively processing replies on another cpu |
| 684 | * @list: this list |
| 685 | */ |
| 686 | struct adapter_reply_queue { |
| 687 | struct MPT3SAS_ADAPTER *ioc; |
| 688 | u8 msix_index; |
| 689 | unsigned int vector; |
| 690 | u32 reply_post_host_index; |
| 691 | Mpi2ReplyDescriptorsUnion_t *reply_post_free; |
| 692 | char name[MPT_NAME_LENGTH]; |
| 693 | atomic_t busy; |
Sreekanth Reddy | 14b3114 | 2015-01-12 11:39:03 +0530 | [diff] [blame] | 694 | cpumask_var_t affinity_hint; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 695 | struct list_head list; |
| 696 | }; |
| 697 | |
| 698 | typedef void (*MPT_ADD_SGE)(void *paddr, u32 flags_length, dma_addr_t dma_addr); |
| 699 | |
| 700 | /* SAS3.0 support */ |
| 701 | typedef int (*MPT_BUILD_SG_SCMD)(struct MPT3SAS_ADAPTER *ioc, |
| 702 | struct scsi_cmnd *scmd, u16 smid); |
| 703 | typedef void (*MPT_BUILD_SG)(struct MPT3SAS_ADAPTER *ioc, void *psge, |
| 704 | dma_addr_t data_out_dma, size_t data_out_sz, |
| 705 | dma_addr_t data_in_dma, size_t data_in_sz); |
| 706 | typedef void (*MPT_BUILD_ZERO_LEN_SGE)(struct MPT3SAS_ADAPTER *ioc, |
| 707 | void *paddr); |
| 708 | |
| 709 | |
| 710 | |
| 711 | /* IOC Facts and Port Facts converted from little endian to cpu */ |
| 712 | union mpi3_version_union { |
| 713 | MPI2_VERSION_STRUCT Struct; |
| 714 | u32 Word; |
| 715 | }; |
| 716 | |
| 717 | struct mpt3sas_facts { |
| 718 | u16 MsgVersion; |
| 719 | u16 HeaderVersion; |
| 720 | u8 IOCNumber; |
| 721 | u8 VP_ID; |
| 722 | u8 VF_ID; |
| 723 | u16 IOCExceptions; |
| 724 | u16 IOCStatus; |
| 725 | u32 IOCLogInfo; |
| 726 | u8 MaxChainDepth; |
| 727 | u8 WhoInit; |
| 728 | u8 NumberOfPorts; |
| 729 | u8 MaxMSIxVectors; |
| 730 | u16 RequestCredit; |
| 731 | u16 ProductID; |
| 732 | u32 IOCCapabilities; |
| 733 | union mpi3_version_union FWVersion; |
| 734 | u16 IOCRequestFrameSize; |
| 735 | u16 Reserved3; |
| 736 | u16 MaxInitiators; |
| 737 | u16 MaxTargets; |
| 738 | u16 MaxSasExpanders; |
| 739 | u16 MaxEnclosures; |
| 740 | u16 ProtocolFlags; |
| 741 | u16 HighPriorityCredit; |
| 742 | u16 MaxReplyDescriptorPostQueueDepth; |
| 743 | u8 ReplyFrameSize; |
| 744 | u8 MaxVolumes; |
| 745 | u16 MaxDevHandle; |
| 746 | u16 MaxPersistentEntries; |
| 747 | u16 MinDevHandle; |
| 748 | }; |
| 749 | |
| 750 | struct mpt3sas_port_facts { |
| 751 | u8 PortNumber; |
| 752 | u8 VP_ID; |
| 753 | u8 VF_ID; |
| 754 | u8 PortType; |
| 755 | u16 MaxPostedCmdBuffers; |
| 756 | }; |
| 757 | |
Sreekanth Reddy | 9b05c91 | 2014-09-12 15:35:31 +0530 | [diff] [blame] | 758 | struct reply_post_struct { |
| 759 | Mpi2ReplyDescriptorsUnion_t *reply_post_free; |
| 760 | dma_addr_t reply_post_free_dma; |
| 761 | }; |
| 762 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 763 | /** |
| 764 | * enum mutex_type - task management mutex type |
| 765 | * @TM_MUTEX_OFF: mutex is not required becuase calling function is acquiring it |
| 766 | * @TM_MUTEX_ON: mutex is required |
| 767 | */ |
| 768 | enum mutex_type { |
| 769 | TM_MUTEX_OFF = 0, |
| 770 | TM_MUTEX_ON = 1, |
| 771 | }; |
| 772 | |
| 773 | typedef void (*MPT3SAS_FLUSH_RUNNING_CMDS)(struct MPT3SAS_ADAPTER *ioc); |
| 774 | /** |
| 775 | * struct MPT3SAS_ADAPTER - per adapter struct |
| 776 | * @list: ioc_list |
| 777 | * @shost: shost object |
| 778 | * @id: unique adapter id |
| 779 | * @cpu_count: number online cpus |
| 780 | * @name: generic ioc string |
| 781 | * @tmp_string: tmp string used for logging |
| 782 | * @pdev: pci pdev object |
| 783 | * @pio_chip: physical io register space |
| 784 | * @chip: memory mapped register space |
| 785 | * @chip_phys: physical addrss prior to mapping |
| 786 | * @logging_level: see mpt3sas_debug.h |
| 787 | * @fwfault_debug: debuging FW timeouts |
| 788 | * @ir_firmware: IR firmware present |
| 789 | * @bars: bitmask of BAR's that must be configured |
| 790 | * @mask_interrupts: ignore interrupt |
Sreekanth Reddy | 9b05c91 | 2014-09-12 15:35:31 +0530 | [diff] [blame] | 791 | * @dma_mask: used to set the consistent dma mask |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 792 | * @fault_reset_work_q_name: fw fault work queue |
| 793 | * @fault_reset_work_q: "" |
| 794 | * @fault_reset_work: "" |
| 795 | * @firmware_event_name: fw event work queue |
| 796 | * @firmware_event_thread: "" |
| 797 | * @fw_event_lock: |
| 798 | * @fw_event_list: list of fw events |
| 799 | * @aen_event_read_flag: event log was read |
| 800 | * @broadcast_aen_busy: broadcast aen waiting to be serviced |
| 801 | * @shost_recovery: host reset in progress |
| 802 | * @ioc_reset_in_progress_lock: |
| 803 | * @ioc_link_reset_in_progress: phy/hard reset in progress |
| 804 | * @ignore_loginfos: ignore loginfos during task management |
| 805 | * @remove_host: flag for when driver unloads, to avoid sending dev resets |
| 806 | * @pci_error_recovery: flag to prevent ioc access until slot reset completes |
| 807 | * @wait_for_discovery_to_complete: flag set at driver load time when |
| 808 | * waiting on reporting devices |
| 809 | * @is_driver_loading: flag set at driver load time |
| 810 | * @port_enable_failed: flag set when port enable has failed |
| 811 | * @start_scan: flag set from scan_start callback, cleared from _mpt3sas_fw_work |
| 812 | * @start_scan_failed: means port enable failed, return's the ioc_status |
| 813 | * @msix_enable: flag indicating msix is enabled |
| 814 | * @msix_vector_count: number msix vectors |
| 815 | * @cpu_msix_table: table for mapping cpus to msix index |
| 816 | * @cpu_msix_table_sz: table size |
| 817 | * @schedule_dead_ioc_flush_running_cmds: callback to flush pending commands |
| 818 | * @scsi_io_cb_idx: shost generated commands |
| 819 | * @tm_cb_idx: task management commands |
| 820 | * @scsih_cb_idx: scsih internal commands |
| 821 | * @transport_cb_idx: transport internal commands |
| 822 | * @ctl_cb_idx: clt internal commands |
| 823 | * @base_cb_idx: base internal commands |
| 824 | * @config_cb_idx: base internal commands |
| 825 | * @tm_tr_cb_idx : device removal target reset handshake |
| 826 | * @tm_tr_volume_cb_idx : volume removal target reset |
| 827 | * @base_cmds: |
| 828 | * @transport_cmds: |
| 829 | * @scsih_cmds: |
| 830 | * @tm_cmds: |
| 831 | * @ctl_cmds: |
| 832 | * @config_cmds: |
| 833 | * @base_add_sg_single: handler for either 32/64 bit sgl's |
| 834 | * @event_type: bits indicating which events to log |
| 835 | * @event_context: unique id for each logged event |
| 836 | * @event_log: event log pointer |
| 837 | * @event_masks: events that are masked |
| 838 | * @facts: static facts data |
| 839 | * @pfacts: static port facts data |
| 840 | * @manu_pg0: static manufacturing page 0 |
| 841 | * @manu_pg10: static manufacturing page 10 |
| 842 | * @manu_pg11: static manufacturing page 11 |
| 843 | * @bios_pg2: static bios page 2 |
| 844 | * @bios_pg3: static bios page 3 |
| 845 | * @ioc_pg8: static ioc page 8 |
| 846 | * @iounit_pg0: static iounit page 0 |
| 847 | * @iounit_pg1: static iounit page 1 |
Sreekanth Reddy | 2d8ce8c | 2015-01-12 11:38:56 +0530 | [diff] [blame] | 848 | * @iounit_pg8: static iounit page 8 |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 849 | * @sas_hba: sas host object |
| 850 | * @sas_expander_list: expander object list |
| 851 | * @sas_node_lock: |
| 852 | * @sas_device_list: sas device object list |
| 853 | * @sas_device_init_list: sas device object list (used only at init time) |
| 854 | * @sas_device_lock: |
| 855 | * @io_missing_delay: time for IO completed by fw when PDR enabled |
| 856 | * @device_missing_delay: time for device missing by fw when PDR enabled |
| 857 | * @sas_id : used for setting volume target IDs |
| 858 | * @blocking_handles: bitmask used to identify which devices need blocking |
| 859 | * @pd_handles : bitmask for PD handles |
| 860 | * @pd_handles_sz : size of pd_handle bitmask |
| 861 | * @config_page_sz: config page size |
| 862 | * @config_page: reserve memory for config page payload |
| 863 | * @config_page_dma: |
| 864 | * @hba_queue_depth: hba request queue depth |
| 865 | * @sge_size: sg element size for either 32/64 bit |
| 866 | * @scsiio_depth: SCSI_IO queue depth |
| 867 | * @request_sz: per request frame size |
| 868 | * @request: pool of request frames |
| 869 | * @request_dma: |
| 870 | * @request_dma_sz: |
| 871 | * @scsi_lookup: firmware request tracker list |
| 872 | * @scsi_lookup_lock: |
| 873 | * @free_list: free list of request |
| 874 | * @pending_io_count: |
| 875 | * @reset_wq: |
| 876 | * @chain: pool of chains |
| 877 | * @chain_dma: |
| 878 | * @max_sges_in_main_message: number sg elements in main message |
| 879 | * @max_sges_in_chain_message: number sg elements per chain |
| 880 | * @chains_needed_per_io: max chains per io |
| 881 | * @chain_depth: total chains allocated |
| 882 | * @hi_priority_smid: |
| 883 | * @hi_priority: |
| 884 | * @hi_priority_dma: |
| 885 | * @hi_priority_depth: |
| 886 | * @hpr_lookup: |
| 887 | * @hpr_free_list: |
| 888 | * @internal_smid: |
| 889 | * @internal: |
| 890 | * @internal_dma: |
| 891 | * @internal_depth: |
| 892 | * @internal_lookup: |
| 893 | * @internal_free_list: |
| 894 | * @sense: pool of sense |
| 895 | * @sense_dma: |
| 896 | * @sense_dma_pool: |
| 897 | * @reply_depth: hba reply queue depth: |
| 898 | * @reply_sz: per reply frame size: |
| 899 | * @reply: pool of replys: |
| 900 | * @reply_dma: |
| 901 | * @reply_dma_pool: |
| 902 | * @reply_free_queue_depth: reply free depth |
| 903 | * @reply_free: pool for reply free queue (32 bit addr) |
| 904 | * @reply_free_dma: |
| 905 | * @reply_free_dma_pool: |
| 906 | * @reply_free_host_index: tail index in pool to insert free replys |
| 907 | * @reply_post_queue_depth: reply post queue depth |
Sreekanth Reddy | 9b05c91 | 2014-09-12 15:35:31 +0530 | [diff] [blame] | 908 | * @reply_post_struct: struct for reply_post_free physical & virt address |
| 909 | * @rdpq_array_capable: FW supports multiple reply queue addresses in ioc_init |
| 910 | * @rdpq_array_enable: rdpq_array support is enabled in the driver |
| 911 | * @rdpq_array_enable_assigned: this ensures that rdpq_array_enable flag |
| 912 | * is assigned only ones |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 913 | * @reply_queue_count: number of reply queue's |
| 914 | * @reply_queue_list: link list contaning the reply queue info |
Sreekanth Reddy | fb77bb5 | 2015-06-30 12:24:47 +0530 | [diff] [blame] | 915 | * @msix96_vector: 96 MSI-X vector support |
| 916 | * @replyPostRegisterIndex: index of next position in Reply Desc Post Queue |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 917 | * @delayed_tr_list: target reset link list |
| 918 | * @delayed_tr_volume_list: volume target reset link list |
Sreekanth Reddy | 08c4d55 | 2015-11-11 17:30:33 +0530 | [diff] [blame^] | 919 | * @temp_sensors_count: flag to carry the number of temperature sensors |
| 920 | * @pci_access_mutex: Mutex to synchronize ioctl,sysfs show path and |
| 921 | * pci resource handling. PCI resource freeing will lead to free |
| 922 | * vital hardware/memory resource, which might be in use by cli/sysfs |
| 923 | * path functions resulting in Null pointer reference followed by kernel |
| 924 | * crash. To avoid the above race condition we use mutex syncrhonization |
| 925 | * which ensures the syncrhonization between cli/sysfs_show path. |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 926 | */ |
| 927 | struct MPT3SAS_ADAPTER { |
| 928 | struct list_head list; |
| 929 | struct Scsi_Host *shost; |
| 930 | u8 id; |
| 931 | int cpu_count; |
| 932 | char name[MPT_NAME_LENGTH]; |
| 933 | char tmp_string[MPT_STRING_LENGTH]; |
| 934 | struct pci_dev *pdev; |
| 935 | Mpi2SystemInterfaceRegs_t __iomem *chip; |
| 936 | resource_size_t chip_phys; |
| 937 | int logging_level; |
| 938 | int fwfault_debug; |
| 939 | u8 ir_firmware; |
| 940 | int bars; |
| 941 | u8 mask_interrupts; |
Sreekanth Reddy | 9b05c91 | 2014-09-12 15:35:31 +0530 | [diff] [blame] | 942 | int dma_mask; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 943 | |
| 944 | /* fw fault handler */ |
| 945 | char fault_reset_work_q_name[20]; |
| 946 | struct workqueue_struct *fault_reset_work_q; |
| 947 | struct delayed_work fault_reset_work; |
| 948 | |
| 949 | /* fw event handler */ |
| 950 | char firmware_event_name[20]; |
| 951 | struct workqueue_struct *firmware_event_thread; |
| 952 | spinlock_t fw_event_lock; |
| 953 | struct list_head fw_event_list; |
| 954 | |
| 955 | /* misc flags */ |
| 956 | int aen_event_read_flag; |
| 957 | u8 broadcast_aen_busy; |
| 958 | u16 broadcast_aen_pending; |
| 959 | u8 shost_recovery; |
| 960 | |
| 961 | struct mutex reset_in_progress_mutex; |
| 962 | spinlock_t ioc_reset_in_progress_lock; |
| 963 | u8 ioc_link_reset_in_progress; |
| 964 | u8 ioc_reset_in_progress_status; |
| 965 | |
| 966 | u8 ignore_loginfos; |
| 967 | u8 remove_host; |
| 968 | u8 pci_error_recovery; |
| 969 | u8 wait_for_discovery_to_complete; |
| 970 | u8 is_driver_loading; |
| 971 | u8 port_enable_failed; |
| 972 | u8 start_scan; |
| 973 | u16 start_scan_failed; |
| 974 | |
| 975 | u8 msix_enable; |
| 976 | u16 msix_vector_count; |
| 977 | u8 *cpu_msix_table; |
| 978 | u16 cpu_msix_table_sz; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 979 | resource_size_t __iomem **reply_post_host_index; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 980 | u32 ioc_reset_count; |
| 981 | MPT3SAS_FLUSH_RUNNING_CMDS schedule_dead_ioc_flush_running_cmds; |
Sreekanth Reddy | 16e179b | 2015-11-11 17:30:27 +0530 | [diff] [blame] | 982 | u32 non_operational_loop; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 983 | |
| 984 | /* internal commands, callback index */ |
| 985 | u8 scsi_io_cb_idx; |
| 986 | u8 tm_cb_idx; |
| 987 | u8 transport_cb_idx; |
| 988 | u8 scsih_cb_idx; |
| 989 | u8 ctl_cb_idx; |
| 990 | u8 base_cb_idx; |
| 991 | u8 port_enable_cb_idx; |
| 992 | u8 config_cb_idx; |
| 993 | u8 tm_tr_cb_idx; |
| 994 | u8 tm_tr_volume_cb_idx; |
| 995 | u8 tm_sas_control_cb_idx; |
| 996 | struct _internal_cmd base_cmds; |
| 997 | struct _internal_cmd port_enable_cmds; |
| 998 | struct _internal_cmd transport_cmds; |
| 999 | struct _internal_cmd scsih_cmds; |
| 1000 | struct _internal_cmd tm_cmds; |
| 1001 | struct _internal_cmd ctl_cmds; |
| 1002 | struct _internal_cmd config_cmds; |
| 1003 | |
| 1004 | MPT_ADD_SGE base_add_sg_single; |
| 1005 | |
| 1006 | /* function ptr for either IEEE or MPI sg elements */ |
| 1007 | MPT_BUILD_SG_SCMD build_sg_scmd; |
| 1008 | MPT_BUILD_SG build_sg; |
| 1009 | MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1010 | u16 sge_size_ieee; |
Sreekanth Reddy | d357e84 | 2015-11-11 17:30:22 +0530 | [diff] [blame] | 1011 | u16 hba_mpi_version_belonged; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1012 | |
| 1013 | /* function ptr for MPI sg elements only */ |
| 1014 | MPT_BUILD_SG build_sg_mpi; |
| 1015 | MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge_mpi; |
| 1016 | |
| 1017 | /* event log */ |
| 1018 | u32 event_type[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS]; |
| 1019 | u32 event_context; |
| 1020 | void *event_log; |
| 1021 | u32 event_masks[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS]; |
| 1022 | |
| 1023 | /* static config pages */ |
| 1024 | struct mpt3sas_facts facts; |
| 1025 | struct mpt3sas_port_facts *pfacts; |
| 1026 | Mpi2ManufacturingPage0_t manu_pg0; |
| 1027 | struct Mpi2ManufacturingPage10_t manu_pg10; |
| 1028 | struct Mpi2ManufacturingPage11_t manu_pg11; |
| 1029 | Mpi2BiosPage2_t bios_pg2; |
| 1030 | Mpi2BiosPage3_t bios_pg3; |
| 1031 | Mpi2IOCPage8_t ioc_pg8; |
| 1032 | Mpi2IOUnitPage0_t iounit_pg0; |
| 1033 | Mpi2IOUnitPage1_t iounit_pg1; |
Sreekanth Reddy | 2d8ce8c | 2015-01-12 11:38:56 +0530 | [diff] [blame] | 1034 | Mpi2IOUnitPage8_t iounit_pg8; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1035 | |
| 1036 | struct _boot_device req_boot_device; |
| 1037 | struct _boot_device req_alt_boot_device; |
| 1038 | struct _boot_device current_boot_device; |
| 1039 | |
| 1040 | /* sas hba, expander, and device list */ |
| 1041 | struct _sas_node sas_hba; |
| 1042 | struct list_head sas_expander_list; |
| 1043 | spinlock_t sas_node_lock; |
| 1044 | struct list_head sas_device_list; |
| 1045 | struct list_head sas_device_init_list; |
| 1046 | spinlock_t sas_device_lock; |
| 1047 | struct list_head raid_device_list; |
| 1048 | spinlock_t raid_device_lock; |
| 1049 | u8 io_missing_delay; |
| 1050 | u16 device_missing_delay; |
| 1051 | int sas_id; |
| 1052 | |
| 1053 | void *blocking_handles; |
| 1054 | void *pd_handles; |
| 1055 | u16 pd_handles_sz; |
| 1056 | |
| 1057 | /* config page */ |
| 1058 | u16 config_page_sz; |
| 1059 | void *config_page; |
| 1060 | dma_addr_t config_page_dma; |
| 1061 | |
| 1062 | /* scsiio request */ |
| 1063 | u16 hba_queue_depth; |
| 1064 | u16 sge_size; |
| 1065 | u16 scsiio_depth; |
| 1066 | u16 request_sz; |
| 1067 | u8 *request; |
| 1068 | dma_addr_t request_dma; |
| 1069 | u32 request_dma_sz; |
| 1070 | struct scsiio_tracker *scsi_lookup; |
| 1071 | ulong scsi_lookup_pages; |
| 1072 | spinlock_t scsi_lookup_lock; |
| 1073 | struct list_head free_list; |
| 1074 | int pending_io_count; |
| 1075 | wait_queue_head_t reset_wq; |
| 1076 | |
| 1077 | /* chain */ |
| 1078 | struct chain_tracker *chain_lookup; |
| 1079 | struct list_head free_chain_list; |
| 1080 | struct dma_pool *chain_dma_pool; |
| 1081 | ulong chain_pages; |
| 1082 | u16 max_sges_in_main_message; |
| 1083 | u16 max_sges_in_chain_message; |
| 1084 | u16 chains_needed_per_io; |
| 1085 | u32 chain_depth; |
| 1086 | |
| 1087 | /* hi-priority queue */ |
| 1088 | u16 hi_priority_smid; |
| 1089 | u8 *hi_priority; |
| 1090 | dma_addr_t hi_priority_dma; |
| 1091 | u16 hi_priority_depth; |
| 1092 | struct request_tracker *hpr_lookup; |
| 1093 | struct list_head hpr_free_list; |
| 1094 | |
| 1095 | /* internal queue */ |
| 1096 | u16 internal_smid; |
| 1097 | u8 *internal; |
| 1098 | dma_addr_t internal_dma; |
| 1099 | u16 internal_depth; |
| 1100 | struct request_tracker *internal_lookup; |
| 1101 | struct list_head internal_free_list; |
| 1102 | |
| 1103 | /* sense */ |
| 1104 | u8 *sense; |
| 1105 | dma_addr_t sense_dma; |
| 1106 | struct dma_pool *sense_dma_pool; |
| 1107 | |
| 1108 | /* reply */ |
| 1109 | u16 reply_sz; |
| 1110 | u8 *reply; |
| 1111 | dma_addr_t reply_dma; |
| 1112 | u32 reply_dma_max_address; |
| 1113 | u32 reply_dma_min_address; |
| 1114 | struct dma_pool *reply_dma_pool; |
| 1115 | |
| 1116 | /* reply free queue */ |
| 1117 | u16 reply_free_queue_depth; |
| 1118 | __le32 *reply_free; |
| 1119 | dma_addr_t reply_free_dma; |
| 1120 | struct dma_pool *reply_free_dma_pool; |
| 1121 | u32 reply_free_host_index; |
| 1122 | |
| 1123 | /* reply post queue */ |
| 1124 | u16 reply_post_queue_depth; |
Sreekanth Reddy | 9b05c91 | 2014-09-12 15:35:31 +0530 | [diff] [blame] | 1125 | struct reply_post_struct *reply_post; |
| 1126 | u8 rdpq_array_capable; |
| 1127 | u8 rdpq_array_enable; |
| 1128 | u8 rdpq_array_enable_assigned; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1129 | struct dma_pool *reply_post_free_dma_pool; |
| 1130 | u8 reply_queue_count; |
| 1131 | struct list_head reply_queue_list; |
| 1132 | |
Sreekanth Reddy | fb77bb5 | 2015-06-30 12:24:47 +0530 | [diff] [blame] | 1133 | u8 msix96_vector; |
| 1134 | /* reply post register index */ |
| 1135 | resource_size_t **replyPostRegisterIndex; |
| 1136 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1137 | struct list_head delayed_tr_list; |
| 1138 | struct list_head delayed_tr_volume_list; |
Sreekanth Reddy | 2d8ce8c | 2015-01-12 11:38:56 +0530 | [diff] [blame] | 1139 | u8 temp_sensors_count; |
Sreekanth Reddy | 08c4d55 | 2015-11-11 17:30:33 +0530 | [diff] [blame^] | 1140 | struct mutex pci_access_mutex; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1141 | |
| 1142 | /* diag buffer support */ |
| 1143 | u8 *diag_buffer[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1144 | u32 diag_buffer_sz[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1145 | dma_addr_t diag_buffer_dma[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1146 | u8 diag_buffer_status[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1147 | u32 unique_id[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1148 | u32 product_specific[MPI2_DIAG_BUF_TYPE_COUNT][23]; |
| 1149 | u32 diagnostic_flags[MPI2_DIAG_BUF_TYPE_COUNT]; |
| 1150 | u32 ring_buffer_offset; |
| 1151 | u32 ring_buffer_sz; |
Sreekanth Reddy | 7786ab6 | 2015-11-11 17:30:28 +0530 | [diff] [blame] | 1152 | u8 is_warpdrive; |
| 1153 | u8 hide_ir_msg; |
| 1154 | u8 mfg_pg10_hide_flag; |
| 1155 | u8 hide_drives; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1156 | spinlock_t diag_trigger_lock; |
| 1157 | u8 diag_trigger_active; |
| 1158 | struct SL_WH_MASTER_TRIGGER_T diag_trigger_master; |
| 1159 | struct SL_WH_EVENT_TRIGGERS_T diag_trigger_event; |
| 1160 | struct SL_WH_SCSI_TRIGGERS_T diag_trigger_scsi; |
| 1161 | struct SL_WH_MPI_TRIGGERS_T diag_trigger_mpi; |
| 1162 | }; |
| 1163 | |
| 1164 | typedef u8 (*MPT_CALLBACK)(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, |
| 1165 | u32 reply); |
| 1166 | |
| 1167 | |
| 1168 | /* base shared API */ |
| 1169 | extern struct list_head mpt3sas_ioc_list; |
Sreekanth Reddy | d357e84 | 2015-11-11 17:30:22 +0530 | [diff] [blame] | 1170 | extern char driver_name[MPT_NAME_LENGTH]; |
Sreekanth Reddy | 08c4d55 | 2015-11-11 17:30:33 +0530 | [diff] [blame^] | 1171 | /* spinlock on list operations over IOCs |
| 1172 | * Case: when multiple warpdrive cards(IOCs) are in use |
| 1173 | * Each IOC will added to the ioc list structure on initialization. |
| 1174 | * Watchdog threads run at regular intervals to check IOC for any |
| 1175 | * fault conditions which will trigger the dead_ioc thread to |
| 1176 | * deallocate pci resource, resulting deleting the IOC netry from list, |
| 1177 | * this deletion need to protected by spinlock to enusre that |
| 1178 | * ioc removal is syncrhonized, if not synchronized it might lead to |
| 1179 | * list_del corruption as the ioc list is traversed in cli path. |
| 1180 | */ |
| 1181 | extern spinlock_t gioc_lock; |
Sreekanth Reddy | d357e84 | 2015-11-11 17:30:22 +0530 | [diff] [blame] | 1182 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1183 | void mpt3sas_base_start_watchdog(struct MPT3SAS_ADAPTER *ioc); |
| 1184 | void mpt3sas_base_stop_watchdog(struct MPT3SAS_ADAPTER *ioc); |
| 1185 | |
| 1186 | int mpt3sas_base_attach(struct MPT3SAS_ADAPTER *ioc); |
| 1187 | void mpt3sas_base_detach(struct MPT3SAS_ADAPTER *ioc); |
| 1188 | int mpt3sas_base_map_resources(struct MPT3SAS_ADAPTER *ioc); |
| 1189 | void mpt3sas_base_free_resources(struct MPT3SAS_ADAPTER *ioc); |
| 1190 | int mpt3sas_base_hard_reset_handler(struct MPT3SAS_ADAPTER *ioc, int sleep_flag, |
| 1191 | enum reset_type type); |
| 1192 | |
| 1193 | void *mpt3sas_base_get_msg_frame(struct MPT3SAS_ADAPTER *ioc, u16 smid); |
| 1194 | void *mpt3sas_base_get_sense_buffer(struct MPT3SAS_ADAPTER *ioc, u16 smid); |
| 1195 | __le32 mpt3sas_base_get_sense_buffer_dma(struct MPT3SAS_ADAPTER *ioc, |
| 1196 | u16 smid); |
| 1197 | void mpt3sas_base_flush_reply_queues(struct MPT3SAS_ADAPTER *ioc); |
| 1198 | |
| 1199 | /* hi-priority queue */ |
| 1200 | u16 mpt3sas_base_get_smid_hpr(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx); |
| 1201 | u16 mpt3sas_base_get_smid_scsiio(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx, |
| 1202 | struct scsi_cmnd *scmd); |
| 1203 | |
| 1204 | u16 mpt3sas_base_get_smid(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx); |
| 1205 | void mpt3sas_base_free_smid(struct MPT3SAS_ADAPTER *ioc, u16 smid); |
| 1206 | void mpt3sas_base_put_smid_scsi_io(struct MPT3SAS_ADAPTER *ioc, u16 smid, |
| 1207 | u16 handle); |
| 1208 | void mpt3sas_base_put_smid_fast_path(struct MPT3SAS_ADAPTER *ioc, u16 smid, |
| 1209 | u16 handle); |
| 1210 | void mpt3sas_base_put_smid_hi_priority(struct MPT3SAS_ADAPTER *ioc, u16 smid); |
| 1211 | void mpt3sas_base_put_smid_default(struct MPT3SAS_ADAPTER *ioc, u16 smid); |
| 1212 | void mpt3sas_base_initialize_callback_handler(void); |
| 1213 | u8 mpt3sas_base_register_callback_handler(MPT_CALLBACK cb_func); |
| 1214 | void mpt3sas_base_release_callback_handler(u8 cb_idx); |
| 1215 | |
| 1216 | u8 mpt3sas_base_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, |
| 1217 | u32 reply); |
| 1218 | u8 mpt3sas_port_enable_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, |
| 1219 | u8 msix_index, u32 reply); |
| 1220 | void *mpt3sas_base_get_reply_virt_addr(struct MPT3SAS_ADAPTER *ioc, |
| 1221 | u32 phys_addr); |
| 1222 | |
| 1223 | u32 mpt3sas_base_get_iocstate(struct MPT3SAS_ADAPTER *ioc, int cooked); |
| 1224 | |
| 1225 | void mpt3sas_base_fault_info(struct MPT3SAS_ADAPTER *ioc , u16 fault_code); |
| 1226 | int mpt3sas_base_sas_iounit_control(struct MPT3SAS_ADAPTER *ioc, |
| 1227 | Mpi2SasIoUnitControlReply_t *mpi_reply, |
| 1228 | Mpi2SasIoUnitControlRequest_t *mpi_request); |
| 1229 | int mpt3sas_base_scsi_enclosure_processor(struct MPT3SAS_ADAPTER *ioc, |
| 1230 | Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request); |
| 1231 | |
| 1232 | void mpt3sas_base_validate_event_type(struct MPT3SAS_ADAPTER *ioc, |
| 1233 | u32 *event_type); |
| 1234 | |
| 1235 | void mpt3sas_halt_firmware(struct MPT3SAS_ADAPTER *ioc); |
| 1236 | |
| 1237 | void mpt3sas_base_update_missing_delay(struct MPT3SAS_ADAPTER *ioc, |
| 1238 | u16 device_missing_delay, u8 io_missing_delay); |
| 1239 | |
| 1240 | int mpt3sas_port_enable(struct MPT3SAS_ADAPTER *ioc); |
| 1241 | |
| 1242 | |
| 1243 | /* scsih shared API */ |
Sreekanth Reddy | 7497392a | 2015-11-11 17:30:19 +0530 | [diff] [blame] | 1244 | extern struct raid_template *mpt3sas_raid_template; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1245 | u8 mpt3sas_scsih_event_callback(struct MPT3SAS_ADAPTER *ioc, u8 msix_index, |
| 1246 | u32 reply); |
| 1247 | void mpt3sas_scsih_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase); |
| 1248 | |
| 1249 | int mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER *ioc, u16 handle, |
| 1250 | uint channel, uint id, uint lun, u8 type, u16 smid_task, |
Matthew Wilcox | c62e46d | 2014-03-27 16:40:30 -0400 | [diff] [blame] | 1251 | ulong timeout, enum mutex_type m_type); |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1252 | void mpt3sas_scsih_set_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle); |
| 1253 | void mpt3sas_scsih_clear_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle); |
| 1254 | void mpt3sas_expander_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address); |
| 1255 | void mpt3sas_device_remove_by_sas_address(struct MPT3SAS_ADAPTER *ioc, |
| 1256 | u64 sas_address); |
| 1257 | |
| 1258 | struct _sas_node *mpt3sas_scsih_expander_find_by_handle( |
| 1259 | struct MPT3SAS_ADAPTER *ioc, u16 handle); |
| 1260 | struct _sas_node *mpt3sas_scsih_expander_find_by_sas_address( |
| 1261 | struct MPT3SAS_ADAPTER *ioc, u64 sas_address); |
Sreekanth Reddy | d1cb5e4 | 2015-11-11 17:30:30 +0530 | [diff] [blame] | 1262 | struct _sas_device *mpt3sas_get_sdev_by_addr( |
| 1263 | struct MPT3SAS_ADAPTER *ioc, u64 sas_address); |
| 1264 | struct _sas_device *__mpt3sas_get_sdev_by_addr( |
| 1265 | struct MPT3SAS_ADAPTER *ioc, u64 sas_address); |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1266 | |
| 1267 | void mpt3sas_port_enable_complete(struct MPT3SAS_ADAPTER *ioc); |
| 1268 | |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 1269 | void scsih_exit(void); |
| 1270 | int scsih_init(void); |
Sreekanth Reddy | 7497392a | 2015-11-11 17:30:19 +0530 | [diff] [blame] | 1271 | int scsih_probe(struct pci_dev *pdev, struct Scsi_Host *shost); |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 1272 | void scsih_remove(struct pci_dev *pdev); |
| 1273 | void scsih_shutdown(struct pci_dev *pdev); |
| 1274 | pci_ers_result_t scsih_pci_error_detected(struct pci_dev *pdev, |
| 1275 | pci_channel_state_t state); |
| 1276 | pci_ers_result_t scsih_pci_mmio_enabled(struct pci_dev *pdev); |
| 1277 | pci_ers_result_t scsih_pci_slot_reset(struct pci_dev *pdev); |
| 1278 | void scsih_pci_resume(struct pci_dev *pdev); |
| 1279 | int scsih_suspend(struct pci_dev *pdev, pm_message_t state); |
| 1280 | int scsih_resume(struct pci_dev *pdev); |
| 1281 | |
| 1282 | int scsih_qcmd(struct Scsi_Host *shost, struct scsi_cmnd *scmd); |
| 1283 | int scsih_target_alloc(struct scsi_target *starget); |
| 1284 | int scsih_slave_alloc(struct scsi_device *sdev); |
| 1285 | int scsih_slave_configure(struct scsi_device *sdev); |
| 1286 | void scsih_target_destroy(struct scsi_target *starget); |
| 1287 | void scsih_slave_destroy(struct scsi_device *sdev); |
| 1288 | int scsih_scan_finished(struct Scsi_Host *shost, unsigned long time); |
| 1289 | void scsih_scan_start(struct Scsi_Host *shost); |
| 1290 | int scsih_change_queue_depth(struct scsi_device *sdev, int qdepth); |
| 1291 | int scsih_abort(struct scsi_cmnd *scmd); |
| 1292 | int scsih_dev_reset(struct scsi_cmnd *scmd); |
| 1293 | int scsih_target_reset(struct scsi_cmnd *scmd); |
| 1294 | int scsih_host_reset(struct scsi_cmnd *scmd); |
| 1295 | int scsih_bios_param(struct scsi_device *sdev, struct block_device *bdev, |
| 1296 | sector_t capacity, int params[]); |
| 1297 | |
| 1298 | int scsih_is_raid(struct device *dev); |
| 1299 | void scsih_get_resync(struct device *dev); |
| 1300 | void scsih_get_state(struct device *dev); |
| 1301 | |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1302 | /* config shared API */ |
| 1303 | u8 mpt3sas_config_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, |
| 1304 | u32 reply); |
| 1305 | int mpt3sas_config_get_number_hba_phys(struct MPT3SAS_ADAPTER *ioc, |
| 1306 | u8 *num_phys); |
| 1307 | int mpt3sas_config_get_manufacturing_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1308 | Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage0_t *config_page); |
| 1309 | int mpt3sas_config_get_manufacturing_pg7(struct MPT3SAS_ADAPTER *ioc, |
| 1310 | Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage7_t *config_page, |
| 1311 | u16 sz); |
| 1312 | int mpt3sas_config_get_manufacturing_pg10(struct MPT3SAS_ADAPTER *ioc, |
| 1313 | Mpi2ConfigReply_t *mpi_reply, |
| 1314 | struct Mpi2ManufacturingPage10_t *config_page); |
| 1315 | |
| 1316 | int mpt3sas_config_get_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc, |
| 1317 | Mpi2ConfigReply_t *mpi_reply, |
| 1318 | struct Mpi2ManufacturingPage11_t *config_page); |
| 1319 | int mpt3sas_config_set_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc, |
| 1320 | Mpi2ConfigReply_t *mpi_reply, |
| 1321 | struct Mpi2ManufacturingPage11_t *config_page); |
| 1322 | |
| 1323 | int mpt3sas_config_get_bios_pg2(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1324 | *mpi_reply, Mpi2BiosPage2_t *config_page); |
| 1325 | int mpt3sas_config_get_bios_pg3(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1326 | *mpi_reply, Mpi2BiosPage3_t *config_page); |
| 1327 | int mpt3sas_config_get_iounit_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1328 | *mpi_reply, Mpi2IOUnitPage0_t *config_page); |
| 1329 | int mpt3sas_config_get_sas_device_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1330 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage0_t *config_page, |
| 1331 | u32 form, u32 handle); |
| 1332 | int mpt3sas_config_get_sas_device_pg1(struct MPT3SAS_ADAPTER *ioc, |
| 1333 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage1_t *config_page, |
| 1334 | u32 form, u32 handle); |
| 1335 | int mpt3sas_config_get_sas_iounit_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1336 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage0_t *config_page, |
| 1337 | u16 sz); |
| 1338 | int mpt3sas_config_get_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1339 | *mpi_reply, Mpi2IOUnitPage1_t *config_page); |
Sreekanth Reddy | 4226309 | 2015-11-11 17:30:29 +0530 | [diff] [blame] | 1340 | #ifdef SCSI_MPT2SAS |
| 1341 | int mpt3sas_config_get_iounit_pg3(struct MPT3SAS_ADAPTER *ioc, |
| 1342 | Mpi2ConfigReply_t *mpi_reply, Mpi2IOUnitPage3_t *config_page, u16 sz); |
| 1343 | #endif |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1344 | int mpt3sas_config_set_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1345 | *mpi_reply, Mpi2IOUnitPage1_t *config_page); |
Sreekanth Reddy | 2d8ce8c | 2015-01-12 11:38:56 +0530 | [diff] [blame] | 1346 | int mpt3sas_config_get_iounit_pg8(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1347 | *mpi_reply, Mpi2IOUnitPage8_t *config_page); |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1348 | int mpt3sas_config_get_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, |
| 1349 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page, |
| 1350 | u16 sz); |
| 1351 | int mpt3sas_config_set_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, |
| 1352 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page, |
| 1353 | u16 sz); |
| 1354 | int mpt3sas_config_get_ioc_pg8(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1355 | *mpi_reply, Mpi2IOCPage8_t *config_page); |
| 1356 | int mpt3sas_config_get_expander_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1357 | Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage0_t *config_page, |
| 1358 | u32 form, u32 handle); |
| 1359 | int mpt3sas_config_get_expander_pg1(struct MPT3SAS_ADAPTER *ioc, |
| 1360 | Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage1_t *config_page, |
| 1361 | u32 phy_number, u16 handle); |
| 1362 | int mpt3sas_config_get_enclosure_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1363 | Mpi2ConfigReply_t *mpi_reply, Mpi2SasEnclosurePage0_t *config_page, |
| 1364 | u32 form, u32 handle); |
| 1365 | int mpt3sas_config_get_phy_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1366 | *mpi_reply, Mpi2SasPhyPage0_t *config_page, u32 phy_number); |
| 1367 | int mpt3sas_config_get_phy_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t |
| 1368 | *mpi_reply, Mpi2SasPhyPage1_t *config_page, u32 phy_number); |
| 1369 | int mpt3sas_config_get_raid_volume_pg1(struct MPT3SAS_ADAPTER *ioc, |
| 1370 | Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage1_t *config_page, u32 form, |
| 1371 | u32 handle); |
| 1372 | int mpt3sas_config_get_number_pds(struct MPT3SAS_ADAPTER *ioc, u16 handle, |
| 1373 | u8 *num_pds); |
| 1374 | int mpt3sas_config_get_raid_volume_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1375 | Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage0_t *config_page, u32 form, |
| 1376 | u32 handle, u16 sz); |
| 1377 | int mpt3sas_config_get_phys_disk_pg0(struct MPT3SAS_ADAPTER *ioc, |
| 1378 | Mpi2ConfigReply_t *mpi_reply, Mpi2RaidPhysDiskPage0_t *config_page, |
| 1379 | u32 form, u32 form_specific); |
| 1380 | int mpt3sas_config_get_volume_handle(struct MPT3SAS_ADAPTER *ioc, u16 pd_handle, |
| 1381 | u16 *volume_handle); |
| 1382 | int mpt3sas_config_get_volume_wwid(struct MPT3SAS_ADAPTER *ioc, |
| 1383 | u16 volume_handle, u64 *wwid); |
| 1384 | |
| 1385 | /* ctl shared API */ |
| 1386 | extern struct device_attribute *mpt3sas_host_attrs[]; |
| 1387 | extern struct device_attribute *mpt3sas_dev_attrs[]; |
Sreekanth Reddy | 8a7e4c2 | 2015-11-11 17:30:18 +0530 | [diff] [blame] | 1388 | long ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
| 1389 | unsigned int ctl_poll(struct file *filep, poll_table *wait); |
| 1390 | int ctl_fasync(int fd, struct file *filep, int mode); |
| 1391 | long ctl_ioctl_compat(struct file *file, unsigned cmd, unsigned long arg); |
| 1392 | void ctl_init(void); |
| 1393 | void ctl_exit(void); |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1394 | u8 mpt3sas_ctl_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, |
| 1395 | u32 reply); |
| 1396 | void mpt3sas_ctl_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase); |
| 1397 | u8 mpt3sas_ctl_event_callback(struct MPT3SAS_ADAPTER *ioc, |
| 1398 | u8 msix_index, u32 reply); |
| 1399 | void mpt3sas_ctl_add_to_event_log(struct MPT3SAS_ADAPTER *ioc, |
| 1400 | Mpi2EventNotificationReply_t *mpi_reply); |
| 1401 | |
| 1402 | void mpt3sas_enable_diag_buffer(struct MPT3SAS_ADAPTER *ioc, |
| 1403 | u8 bits_to_regsiter); |
| 1404 | int mpt3sas_send_diag_release(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type, |
| 1405 | u8 *issue_reset); |
| 1406 | |
| 1407 | /* transport shared API */ |
Sreekanth Reddy | 7497392a | 2015-11-11 17:30:19 +0530 | [diff] [blame] | 1408 | extern struct scsi_transport_template *mpt3sas_transport_template; |
Sreekanth Reddy | f92363d | 2012-11-30 07:44:21 +0530 | [diff] [blame] | 1409 | u8 mpt3sas_transport_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, |
| 1410 | u32 reply); |
| 1411 | struct _sas_port *mpt3sas_transport_port_add(struct MPT3SAS_ADAPTER *ioc, |
| 1412 | u16 handle, u64 sas_address); |
| 1413 | void mpt3sas_transport_port_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address, |
| 1414 | u64 sas_address_parent); |
| 1415 | int mpt3sas_transport_add_host_phy(struct MPT3SAS_ADAPTER *ioc, struct _sas_phy |
| 1416 | *mpt3sas_phy, Mpi2SasPhyPage0_t phy_pg0, struct device *parent_dev); |
| 1417 | int mpt3sas_transport_add_expander_phy(struct MPT3SAS_ADAPTER *ioc, |
| 1418 | struct _sas_phy *mpt3sas_phy, Mpi2ExpanderPage1_t expander_pg1, |
| 1419 | struct device *parent_dev); |
| 1420 | void mpt3sas_transport_update_links(struct MPT3SAS_ADAPTER *ioc, |
| 1421 | u64 sas_address, u16 handle, u8 phy_number, u8 link_rate); |
| 1422 | extern struct sas_function_template mpt3sas_transport_functions; |
| 1423 | extern struct scsi_transport_template *mpt3sas_transport_template; |
| 1424 | extern int scsi_internal_device_block(struct scsi_device *sdev); |
| 1425 | extern int scsi_internal_device_unblock(struct scsi_device *sdev, |
| 1426 | enum scsi_device_state new_state); |
| 1427 | /* trigger data externs */ |
| 1428 | void mpt3sas_send_trigger_data_event(struct MPT3SAS_ADAPTER *ioc, |
| 1429 | struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data); |
| 1430 | void mpt3sas_process_trigger_data(struct MPT3SAS_ADAPTER *ioc, |
| 1431 | struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data); |
| 1432 | void mpt3sas_trigger_master(struct MPT3SAS_ADAPTER *ioc, |
| 1433 | u32 tigger_bitmask); |
| 1434 | void mpt3sas_trigger_event(struct MPT3SAS_ADAPTER *ioc, u16 event, |
| 1435 | u16 log_entry_qualifier); |
| 1436 | void mpt3sas_trigger_scsi(struct MPT3SAS_ADAPTER *ioc, u8 sense_key, |
| 1437 | u8 asc, u8 ascq); |
| 1438 | void mpt3sas_trigger_mpi(struct MPT3SAS_ADAPTER *ioc, u16 ioc_status, |
| 1439 | u32 loginfo); |
| 1440 | #endif /* MPT3SAS_BASE_H_INCLUDED */ |