blob: dcb33f4fa68720624945f4bdc3f5c932e530c86f [file] [log] [blame]
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301/*
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 Reddya4ffce02014-09-12 15:35:29 +05306 * Copyright (C) 2012-2014 LSI Corporation
Sreekanth Reddya03bd152015-01-12 11:39:02 +05307 * Copyright (C) 2013-2014 Avago Technologies
8 * (mailto: MPT-FusionLinux.pdl@avagotech.com)
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05309 *
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 Reddy8a7e4c22015-11-11 17:30:18 +053066#include <linux/pci.h>
67#include <linux/poll.h>
Sreekanth Reddyf92363d2012-11-30 07:44:21 +053068
69#include "mpt3sas_debug.h"
70#include "mpt3sas_trigger_diag.h"
71
72/* driver versioning info */
73#define MPT3SAS_DRIVER_NAME "mpt3sas"
Sreekanth Reddya03bd152015-01-12 11:39:02 +053074#define MPT3SAS_AUTHOR "Avago Technologies <MPT-FusionLinux.pdl@avagotech.com>"
Sreekanth Reddyf92363d2012-11-30 07:44:21 +053075#define MPT3SAS_DESCRIPTION "LSI MPT Fusion SAS 3.0 Device Driver"
Suganath Prabu Subramani6b64b282016-10-26 13:34:42 +053076#define MPT3SAS_DRIVER_VERSION "14.101.00.00"
Suganath Prabu Subramanie2702632016-10-26 13:34:36 +053077#define MPT3SAS_MAJOR_VERSION 14
Suganath Prabu Subramani6b64b282016-10-26 13:34:42 +053078#define MPT3SAS_MINOR_VERSION 101
Sreekanth Reddye9ce9c82013-06-29 03:55:45 +053079#define MPT3SAS_BUILD_VERSION 0
Sreekanth Reddyf92363d2012-11-30 07:44:21 +053080#define MPT3SAS_RELEASE_VERSION 00
81
Sreekanth Reddyd0c627af2015-11-11 17:30:34 +053082#define MPT2SAS_DRIVER_NAME "mpt2sas"
83#define MPT2SAS_DESCRIPTION "LSI MPT Fusion SAS 2.0 Device Driver"
84#define MPT2SAS_DRIVER_VERSION "20.102.00.00"
85#define MPT2SAS_MAJOR_VERSION 20
86#define MPT2SAS_MINOR_VERSION 102
87#define MPT2SAS_BUILD_VERSION 0
88#define MPT2SAS_RELEASE_VERSION 00
89
Sreekanth Reddyf92363d2012-11-30 07:44:21 +053090/*
91 * Set MPT3SAS_SG_DEPTH value based on user input.
92 */
Ming Lin65e86172016-04-04 14:48:10 -070093#define MPT_MAX_PHYS_SEGMENTS SG_CHUNK_SIZE
Sreekanth Reddy8a7e4c22015-11-11 17:30:18 +053094#define MPT_MIN_PHYS_SEGMENTS 16
95
Sreekanth Reddyf92363d2012-11-30 07:44:21 +053096#ifdef CONFIG_SCSI_MPT3SAS_MAX_SGE
97#define MPT3SAS_SG_DEPTH CONFIG_SCSI_MPT3SAS_MAX_SGE
98#else
Sreekanth Reddy8a7e4c22015-11-11 17:30:18 +053099#define MPT3SAS_SG_DEPTH MPT_MAX_PHYS_SEGMENTS
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530100#endif
101
Sreekanth Reddy8a7e4c22015-11-11 17:30:18 +0530102#ifdef CONFIG_SCSI_MPT2SAS_MAX_SGE
103#define MPT2SAS_SG_DEPTH CONFIG_SCSI_MPT2SAS_MAX_SGE
104#else
105#define MPT2SAS_SG_DEPTH MPT_MAX_PHYS_SEGMENTS
106#endif
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530107
108/*
109 * Generic Defines
110 */
111#define MPT3SAS_SATA_QUEUE_DEPTH 32
112#define MPT3SAS_SAS_QUEUE_DEPTH 254
113#define MPT3SAS_RAID_QUEUE_DEPTH 128
114
Chaitra P B6c197092016-05-06 14:29:30 +0530115#define MPT3SAS_RAID_MAX_SECTORS 8192
116
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530117#define MPT_NAME_LENGTH 32 /* generic length of strings */
118#define MPT_STRING_LENGTH 64
119
120#define MPT_MAX_CALLBACKS 32
121
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530122#define INTERNAL_CMDS_COUNT 10 /* reserved cmds */
Suganath prabu Subramanifd0331b2016-01-28 12:07:02 +0530123/* reserved for issuing internally framed scsi io cmds */
124#define INTERNAL_SCSIIO_CMDS_COUNT 3
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530125
126#define MPI3_HIM_MASK 0xFFFFFFFF /* mask every bit*/
127
128#define MPT3SAS_INVALID_DEVICE_HANDLE 0xFFFF
129
Suganath prabu Subramaniebb30242016-01-28 12:07:04 +0530130#define MAX_CHAIN_ELEMT_SZ 16
131#define DEFAULT_NUM_FWCHAIN_ELEMTS 8
132
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530133/*
134 * reset phases
135 */
136#define MPT3_IOC_PRE_RESET 1 /* prior to host reset */
137#define MPT3_IOC_AFTER_RESET 2 /* just after host reset */
138#define MPT3_IOC_DONE_RESET 3 /* links re-initialized */
139
140/*
141 * logging format
142 */
143#define MPT3SAS_FMT "%s: "
144
145/*
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530146 * WarpDrive Specific Log codes
147 */
148
149#define MPT2_WARPDRIVE_LOGENTRY (0x8002)
150#define MPT2_WARPDRIVE_LC_SSDT (0x41)
151#define MPT2_WARPDRIVE_LC_SSDLW (0x43)
152#define MPT2_WARPDRIVE_LC_SSDLF (0x44)
153#define MPT2_WARPDRIVE_LC_BRMF (0x4D)
154
155/*
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530156 * per target private data
157 */
158#define MPT_TARGET_FLAGS_RAID_COMPONENT 0x01
159#define MPT_TARGET_FLAGS_VOLUME 0x02
160#define MPT_TARGET_FLAGS_DELETED 0x04
161#define MPT_TARGET_FASTPATH_IO 0x08
162
Sreekanth Reddy42081172015-11-11 17:30:26 +0530163#define SAS2_PCI_DEVICE_B0_REVISION (0x01)
164#define SAS3_PCI_DEVICE_C0_REVISION (0x02)
165
Sreekanth Reddy1117b312014-09-12 15:35:30 +0530166/*
167 * Intel HBA branding
168 */
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530169#define MPT2SAS_INTEL_RMS25JB080_BRANDING \
170 "Intel(R) Integrated RAID Module RMS25JB080"
171#define MPT2SAS_INTEL_RMS25JB040_BRANDING \
172 "Intel(R) Integrated RAID Module RMS25JB040"
173#define MPT2SAS_INTEL_RMS25KB080_BRANDING \
174 "Intel(R) Integrated RAID Module RMS25KB080"
175#define MPT2SAS_INTEL_RMS25KB040_BRANDING \
176 "Intel(R) Integrated RAID Module RMS25KB040"
177#define MPT2SAS_INTEL_RMS25LB040_BRANDING \
178 "Intel(R) Integrated RAID Module RMS25LB040"
179#define MPT2SAS_INTEL_RMS25LB080_BRANDING \
180 "Intel(R) Integrated RAID Module RMS25LB080"
181#define MPT2SAS_INTEL_RMS2LL080_BRANDING \
182 "Intel Integrated RAID Module RMS2LL080"
183#define MPT2SAS_INTEL_RMS2LL040_BRANDING \
184 "Intel Integrated RAID Module RMS2LL040"
185#define MPT2SAS_INTEL_RS25GB008_BRANDING \
186 "Intel(R) RAID Controller RS25GB008"
187#define MPT2SAS_INTEL_SSD910_BRANDING \
188 "Intel(R) SSD 910 Series"
189
Sreekanth Reddy1117b312014-09-12 15:35:30 +0530190#define MPT3SAS_INTEL_RMS3JC080_BRANDING \
191 "Intel(R) Integrated RAID Module RMS3JC080"
192#define MPT3SAS_INTEL_RS3GC008_BRANDING \
193 "Intel(R) RAID Controller RS3GC008"
194#define MPT3SAS_INTEL_RS3FC044_BRANDING \
195 "Intel(R) RAID Controller RS3FC044"
196#define MPT3SAS_INTEL_RS3UC080_BRANDING \
197 "Intel(R) RAID Controller RS3UC080"
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530198
Sreekanth Reddy1117b312014-09-12 15:35:30 +0530199/*
200 * Intel HBA SSDIDs
201 */
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530202#define MPT2SAS_INTEL_RMS25JB080_SSDID 0x3516
203#define MPT2SAS_INTEL_RMS25JB040_SSDID 0x3517
204#define MPT2SAS_INTEL_RMS25KB080_SSDID 0x3518
205#define MPT2SAS_INTEL_RMS25KB040_SSDID 0x3519
206#define MPT2SAS_INTEL_RMS25LB040_SSDID 0x351A
207#define MPT2SAS_INTEL_RMS25LB080_SSDID 0x351B
208#define MPT2SAS_INTEL_RMS2LL080_SSDID 0x350E
209#define MPT2SAS_INTEL_RMS2LL040_SSDID 0x350F
210#define MPT2SAS_INTEL_RS25GB008_SSDID 0x3000
211#define MPT2SAS_INTEL_SSD910_SSDID 0x3700
212
213#define MPT3SAS_INTEL_RMS3JC080_SSDID 0x3521
214#define MPT3SAS_INTEL_RS3GC008_SSDID 0x3522
215#define MPT3SAS_INTEL_RS3FC044_SSDID 0x3523
216#define MPT3SAS_INTEL_RS3UC080_SSDID 0x3524
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530217
218/*
Sreekanth Reddyfb84dfc2015-06-30 12:24:56 +0530219 * Dell HBA branding
220 */
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530221#define MPT2SAS_DELL_BRANDING_SIZE 32
222
223#define MPT2SAS_DELL_6GBPS_SAS_HBA_BRANDING "Dell 6Gbps SAS HBA"
224#define MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING "Dell PERC H200 Adapter"
225#define MPT2SAS_DELL_PERC_H200_INTEGRATED_BRANDING "Dell PERC H200 Integrated"
226#define MPT2SAS_DELL_PERC_H200_MODULAR_BRANDING "Dell PERC H200 Modular"
227#define MPT2SAS_DELL_PERC_H200_EMBEDDED_BRANDING "Dell PERC H200 Embedded"
228#define MPT2SAS_DELL_PERC_H200_BRANDING "Dell PERC H200"
229#define MPT2SAS_DELL_6GBPS_SAS_BRANDING "Dell 6Gbps SAS"
230
Sreekanth Reddyfb84dfc2015-06-30 12:24:56 +0530231#define MPT3SAS_DELL_12G_HBA_BRANDING \
232 "Dell 12Gbps HBA"
233
234/*
235 * Dell HBA SSDIDs
236 */
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530237#define MPT2SAS_DELL_6GBPS_SAS_HBA_SSDID 0x1F1C
238#define MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID 0x1F1D
239#define MPT2SAS_DELL_PERC_H200_INTEGRATED_SSDID 0x1F1E
240#define MPT2SAS_DELL_PERC_H200_MODULAR_SSDID 0x1F1F
241#define MPT2SAS_DELL_PERC_H200_EMBEDDED_SSDID 0x1F20
242#define MPT2SAS_DELL_PERC_H200_SSDID 0x1F21
243#define MPT2SAS_DELL_6GBPS_SAS_SSDID 0x1F22
244
245#define MPT3SAS_DELL_12G_HBA_SSDID 0x1F46
Sreekanth Reddyfb84dfc2015-06-30 12:24:56 +0530246
247/*
Sreekanth Reddy38e41412015-06-30 12:24:57 +0530248 * Cisco HBA branding
249 */
Sreekanth Reddyd8eb4a42015-06-30 12:25:02 +0530250#define MPT3SAS_CISCO_12G_8E_HBA_BRANDING \
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530251 "Cisco 9300-8E 12G SAS HBA"
Sreekanth Reddyd8eb4a42015-06-30 12:25:02 +0530252#define MPT3SAS_CISCO_12G_8I_HBA_BRANDING \
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530253 "Cisco 9300-8i 12G SAS HBA"
Sreekanth Reddyd8eb4a42015-06-30 12:25:02 +0530254#define MPT3SAS_CISCO_12G_AVILA_HBA_BRANDING \
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530255 "Cisco 12G Modular SAS Pass through Controller"
Sreekanth Reddyd8eb4a42015-06-30 12:25:02 +0530256#define MPT3SAS_CISCO_12G_COLUSA_MEZZANINE_HBA_BRANDING \
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530257 "UCS C3X60 12G SAS Pass through Controller"
Sreekanth Reddy38e41412015-06-30 12:24:57 +0530258/*
259 * Cisco HBA SSSDIDs
260 */
Sreekanth Reddyd8eb4a42015-06-30 12:25:02 +0530261#define MPT3SAS_CISCO_12G_8E_HBA_SSDID 0x14C
262#define MPT3SAS_CISCO_12G_8I_HBA_SSDID 0x154
263#define MPT3SAS_CISCO_12G_AVILA_HBA_SSDID 0x155
264#define MPT3SAS_CISCO_12G_COLUSA_MEZZANINE_HBA_SSDID 0x156
Sreekanth Reddy38e41412015-06-30 12:24:57 +0530265
266/*
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530267 * status bits for ioc->diag_buffer_status
268 */
269#define MPT3_DIAG_BUFFER_IS_REGISTERED (0x01)
270#define MPT3_DIAG_BUFFER_IS_RELEASED (0x02)
271#define MPT3_DIAG_BUFFER_IS_DIAG_RESET (0x04)
272
Sreekanth Reddyfb77bb52015-06-30 12:24:47 +0530273/*
Sreekanth Reddy989e43c2015-11-11 17:30:32 +0530274 * HP HBA branding
275 */
276#define MPT2SAS_HP_3PAR_SSVID 0x1590
277
278#define MPT2SAS_HP_2_4_INTERNAL_BRANDING \
279 "HP H220 Host Bus Adapter"
280#define MPT2SAS_HP_2_4_EXTERNAL_BRANDING \
281 "HP H221 Host Bus Adapter"
282#define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING \
283 "HP H222 Host Bus Adapter"
284#define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING \
285 "HP H220i Host Bus Adapter"
286#define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING \
287 "HP H210i Host Bus Adapter"
288
289/*
290 * HO HBA SSDIDs
291 */
292#define MPT2SAS_HP_2_4_INTERNAL_SSDID 0x0041
293#define MPT2SAS_HP_2_4_EXTERNAL_SSDID 0x0042
294#define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID 0x0043
295#define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID 0x0044
296#define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID 0x0046
297
298/*
Sreekanth Reddyfb77bb52015-06-30 12:24:47 +0530299 * Combined Reply Queue constants,
300 * There are twelve Supplemental Reply Post Host Index Registers
301 * and each register is at offset 0x10 bytes from the previous one.
302 */
Suganath Prabu Subramani0bb337c2016-10-26 13:34:38 +0530303#define MPT3_SUP_REPLY_POST_HOST_INDEX_REG_COUNT_G3 12
304#define MPT3_SUP_REPLY_POST_HOST_INDEX_REG_COUNT_G35 16
305#define MPT3_SUP_REPLY_POST_HOST_INDEX_REG_OFFSET (0x10)
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530306
307/* OEM Identifiers */
308#define MFG10_OEM_ID_INVALID (0x00000000)
309#define MFG10_OEM_ID_DELL (0x00000001)
310#define MFG10_OEM_ID_FSC (0x00000002)
311#define MFG10_OEM_ID_SUN (0x00000003)
312#define MFG10_OEM_ID_IBM (0x00000004)
313
314/* GENERIC Flags 0*/
315#define MFG10_GF0_OCE_DISABLED (0x00000001)
316#define MFG10_GF0_R1E_DRIVE_COUNT (0x00000002)
317#define MFG10_GF0_R10_DISPLAY (0x00000004)
318#define MFG10_GF0_SSD_DATA_SCRUB_DISABLE (0x00000008)
319#define MFG10_GF0_SINGLE_DRIVE_R0 (0x00000010)
320
Sreekanth Reddy3898f082015-06-30 12:25:00 +0530321#define VIRTUAL_IO_FAILED_RETRY (0x32010081)
322
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530323/* OEM Specific Flags will come from OEM specific header files */
324struct Mpi2ManufacturingPage10_t {
325 MPI2_CONFIG_PAGE_HEADER Header; /* 00h */
326 U8 OEMIdentifier; /* 04h */
327 U8 Reserved1; /* 05h */
328 U16 Reserved2; /* 08h */
329 U32 Reserved3; /* 0Ch */
330 U32 GenericFlags0; /* 10h */
331 U32 GenericFlags1; /* 14h */
332 U32 Reserved4; /* 18h */
333 U32 OEMSpecificFlags0; /* 1Ch */
334 U32 OEMSpecificFlags1; /* 20h */
335 U32 Reserved5[18]; /* 24h - 60h*/
336};
337
338
339/* Miscellaneous options */
340struct Mpi2ManufacturingPage11_t {
341 MPI2_CONFIG_PAGE_HEADER Header; /* 00h */
342 __le32 Reserved1; /* 04h */
343 u8 Reserved2; /* 08h */
344 u8 EEDPTagMode; /* 09h */
345 u8 Reserved3; /* 0Ah */
346 u8 Reserved4; /* 0Bh */
347 __le32 Reserved5[23]; /* 0Ch-60h*/
348};
349
350/**
351 * struct MPT3SAS_TARGET - starget private hostdata
352 * @starget: starget object
353 * @sas_address: target sas address
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530354 * @raid_device: raid_device pointer to access volume data
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530355 * @handle: device handle
356 * @num_luns: number luns
357 * @flags: MPT_TARGET_FLAGS_XXX flags
358 * @deleted: target flaged for deletion
359 * @tm_busy: target is busy with TM request.
Sreekanth Reddyd1cb5e42015-11-11 17:30:30 +0530360 * @sdev: The sas_device associated with this target
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530361 */
362struct MPT3SAS_TARGET {
363 struct scsi_target *starget;
364 u64 sas_address;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530365 struct _raid_device *raid_device;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530366 u16 handle;
367 int num_luns;
368 u32 flags;
369 u8 deleted;
370 u8 tm_busy;
Sreekanth Reddyd1cb5e42015-11-11 17:30:30 +0530371 struct _sas_device *sdev;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530372};
373
374
375/*
376 * per device private data
377 */
378#define MPT_DEVICE_FLAGS_INIT 0x01
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530379
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530380#define MFG_PAGE10_HIDE_SSDS_MASK (0x00000003)
381#define MFG_PAGE10_HIDE_ALL_DISKS (0x00)
382#define MFG_PAGE10_EXPOSE_ALL_DISKS (0x01)
383#define MFG_PAGE10_HIDE_IF_VOL_PRESENT (0x02)
384
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530385/**
386 * struct MPT3SAS_DEVICE - sdev private hostdata
387 * @sas_target: starget private hostdata
388 * @lun: lun number
389 * @flags: MPT_DEVICE_XXX flags
390 * @configured_lun: lun is configured
391 * @block: device is in SDEV_BLOCK state
392 * @tlr_snoop_check: flag used in determining whether to disable TLR
393 * @eedp_enable: eedp support enable bit
394 * @eedp_type: 0(type_1), 1(type_2), 2(type_3)
395 * @eedp_block_length: block size
James Bottomleyffb58452017-01-01 09:39:24 -0800396 * @ata_command_pending: SATL passthrough outstanding for device
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530397 */
398struct MPT3SAS_DEVICE {
399 struct MPT3SAS_TARGET *sas_target;
400 unsigned int lun;
401 u32 flags;
402 u8 configured_lun;
403 u8 block;
404 u8 tlr_snoop_check;
Suganath prabu Subramani30158dc2016-01-28 12:07:01 +0530405 u8 ignore_delay_remove;
Adam Manzanares307d9072016-12-12 16:31:40 -0800406 /* Iopriority Command Handling */
407 u8 ncq_prio_enable;
James Bottomleyffb58452017-01-01 09:39:24 -0800408 /*
409 * Bug workaround for SATL handling: the mpt2/3sas firmware
410 * doesn't return BUSY or TASK_SET_FULL for subsequent
411 * commands while a SATL pass through is in operation as the
412 * spec requires, it simply does nothing with them until the
413 * pass through completes, causing them possibly to timeout if
414 * the passthrough is a long executing command (like format or
415 * secure erase). This variable allows us to do the right
416 * thing while a SATL command is pending.
417 */
418 unsigned long ata_command_pending;
Adam Manzanares307d9072016-12-12 16:31:40 -0800419
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530420};
421
422#define MPT3_CMD_NOT_USED 0x8000 /* free */
423#define MPT3_CMD_COMPLETE 0x0001 /* completed */
424#define MPT3_CMD_PENDING 0x0002 /* pending */
425#define MPT3_CMD_REPLY_VALID 0x0004 /* reply is valid */
426#define MPT3_CMD_RESET 0x0008 /* host reset dropped the command */
427
428/**
429 * struct _internal_cmd - internal commands struct
430 * @mutex: mutex
431 * @done: completion
432 * @reply: reply message pointer
433 * @sense: sense data
434 * @status: MPT3_CMD_XXX status
435 * @smid: system message id
436 */
437struct _internal_cmd {
438 struct mutex mutex;
439 struct completion done;
440 void *reply;
441 void *sense;
442 u16 status;
443 u16 smid;
444};
445
446
447
448/**
449 * struct _sas_device - attached device information
450 * @list: sas device list
451 * @starget: starget object
452 * @sas_address: device sas address
453 * @device_name: retrieved from the SAS IDENTIFY frame.
454 * @handle: device handle
455 * @sas_address_parent: sas address of parent expander or sas host
456 * @enclosure_handle: enclosure handle
457 * @enclosure_logical_id: enclosure logical identifier
458 * @volume_handle: volume handle (valid when hidden raid member)
459 * @volume_wwid: volume unique identifier
460 * @device_info: bitfield provides detailed info about the device
461 * @id: target id
462 * @channel: target channel
463 * @slot: number number
464 * @phy: phy identifier provided in sas device page 0
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530465 * @responding: used in _scsih_sas_device_mark_responding
Sreekanth Reddy0f624c32014-09-12 15:35:26 +0530466 * @fast_path: fast path feature enable bit
467 * @pfa_led_on: flag for PFA LED status
Sreekanth Reddye4bc7f52015-06-30 12:24:49 +0530468 * @pend_sas_rphy_add: flag to check if device is in sas_rphy_add()
469 * addition routine.
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530470 */
471struct _sas_device {
472 struct list_head list;
473 struct scsi_target *starget;
474 u64 sas_address;
475 u64 device_name;
476 u16 handle;
477 u64 sas_address_parent;
478 u16 enclosure_handle;
479 u64 enclosure_logical_id;
480 u16 volume_handle;
481 u64 volume_wwid;
482 u32 device_info;
483 int id;
484 int channel;
485 u16 slot;
486 u8 phy;
487 u8 responding;
488 u8 fast_path;
Sreekanth Reddy0f624c32014-09-12 15:35:26 +0530489 u8 pfa_led_on;
Sreekanth Reddye4bc7f52015-06-30 12:24:49 +0530490 u8 pend_sas_rphy_add;
Sreekanth Reddye6d45e32015-06-30 12:24:52 +0530491 u8 enclosure_level;
Calvin Owens310c8e42016-07-27 21:45:51 -0700492 u8 connector_name[5];
Sreekanth Reddyd1cb5e42015-11-11 17:30:30 +0530493 struct kref refcount;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530494};
495
Sreekanth Reddyd1cb5e42015-11-11 17:30:30 +0530496static inline void sas_device_get(struct _sas_device *s)
497{
498 kref_get(&s->refcount);
499}
500
501static inline void sas_device_free(struct kref *r)
502{
503 kfree(container_of(r, struct _sas_device, refcount));
504}
505
506static inline void sas_device_put(struct _sas_device *s)
507{
508 kref_put(&s->refcount, sas_device_free);
509}
510
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530511/**
512 * struct _raid_device - raid volume link list
513 * @list: sas device list
514 * @starget: starget object
515 * @sdev: scsi device struct (volumes are single lun)
516 * @wwid: unique identifier for the volume
517 * @handle: device handle
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530518 * @block_size: Block size of the volume
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530519 * @id: target id
520 * @channel: target channel
521 * @volume_type: the raid level
522 * @device_info: bitfield provides detailed info about the hidden components
523 * @num_pds: number of hidden raid components
524 * @responding: used in _scsih_raid_device_mark_responding
525 * @percent_complete: resync percent complete
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530526 * @direct_io_enabled: Whether direct io to PDs are allowed or not
527 * @stripe_exponent: X where 2powX is the stripe sz in blocks
528 * @block_exponent: X where 2powX is the block sz in bytes
529 * @max_lba: Maximum number of LBA in the volume
530 * @stripe_sz: Stripe Size of the volume
531 * @device_info: Device info of the volume member disk
532 * @pd_handle: Array of handles of the physical drives for direct I/O in le16
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530533 */
534#define MPT_MAX_WARPDRIVE_PDS 8
535struct _raid_device {
536 struct list_head list;
537 struct scsi_target *starget;
538 struct scsi_device *sdev;
539 u64 wwid;
540 u16 handle;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530541 u16 block_sz;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530542 int id;
543 int channel;
544 u8 volume_type;
545 u8 num_pds;
546 u8 responding;
547 u8 percent_complete;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530548 u8 direct_io_enabled;
549 u8 stripe_exponent;
550 u8 block_exponent;
551 u64 max_lba;
552 u32 stripe_sz;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530553 u32 device_info;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530554 u16 pd_handle[MPT_MAX_WARPDRIVE_PDS];
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530555};
556
557/**
558 * struct _boot_device - boot device info
559 * @is_raid: flag to indicate whether this is volume
560 * @device: holds pointer for either struct _sas_device or
561 * struct _raid_device
562 */
563struct _boot_device {
564 u8 is_raid;
565 void *device;
566};
567
568/**
569 * struct _sas_port - wide/narrow sas port information
570 * @port_list: list of ports belonging to expander
571 * @num_phys: number of phys belonging to this port
572 * @remote_identify: attached device identification
573 * @rphy: sas transport rphy object
574 * @port: sas transport wide/narrow port object
575 * @phy_list: _sas_phy list objects belonging to this port
576 */
577struct _sas_port {
578 struct list_head port_list;
579 u8 num_phys;
580 struct sas_identify remote_identify;
581 struct sas_rphy *rphy;
582 struct sas_port *port;
583 struct list_head phy_list;
584};
585
586/**
587 * struct _sas_phy - phy information
588 * @port_siblings: list of phys belonging to a port
589 * @identify: phy identification
590 * @remote_identify: attached device identification
591 * @phy: sas transport phy object
592 * @phy_id: unique phy id
593 * @handle: device handle for this phy
594 * @attached_handle: device handle for attached device
595 * @phy_belongs_to_port: port has been created for this phy
596 */
597struct _sas_phy {
598 struct list_head port_siblings;
599 struct sas_identify identify;
600 struct sas_identify remote_identify;
601 struct sas_phy *phy;
602 u8 phy_id;
603 u16 handle;
604 u16 attached_handle;
605 u8 phy_belongs_to_port;
606};
607
608/**
609 * struct _sas_node - sas_host/expander information
610 * @list: list of expanders
611 * @parent_dev: parent device class
612 * @num_phys: number phys belonging to this sas_host/expander
613 * @sas_address: sas address of this sas_host/expander
614 * @handle: handle for this sas_host/expander
615 * @sas_address_parent: sas address of parent expander or sas host
616 * @enclosure_handle: handle for this a member of an enclosure
617 * @device_info: bitwise defining capabilities of this sas_host/expander
618 * @responding: used in _scsih_expander_device_mark_responding
619 * @phy: a list of phys that make up this sas_host/expander
620 * @sas_port_list: list of ports attached to this sas_host/expander
621 */
622struct _sas_node {
623 struct list_head list;
624 struct device *parent_dev;
625 u8 num_phys;
626 u64 sas_address;
627 u16 handle;
628 u64 sas_address_parent;
629 u16 enclosure_handle;
630 u64 enclosure_logical_id;
631 u8 responding;
632 struct _sas_phy *phy;
633 struct list_head sas_port_list;
634};
635
636/**
637 * enum reset_type - reset state
638 * @FORCE_BIG_HAMMER: issue diagnostic reset
639 * @SOFT_RESET: issue message_unit_reset, if fails to to big hammer
640 */
641enum reset_type {
642 FORCE_BIG_HAMMER,
643 SOFT_RESET,
644};
645
646/**
647 * struct chain_tracker - firmware chain tracker
648 * @chain_buffer: chain buffer
649 * @chain_buffer_dma: physical address
650 * @tracker_list: list of free request (ioc->free_chain_list)
651 */
652struct chain_tracker {
653 void *chain_buffer;
654 dma_addr_t chain_buffer_dma;
655 struct list_head tracker_list;
656};
657
658/**
659 * struct scsiio_tracker - scsi mf request tracker
660 * @smid: system message id
661 * @scmd: scsi request pointer
662 * @cb_idx: callback index
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530663 * @direct_io: To indicate whether I/O is direct (WARPDRIVE)
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530664 * @tracker_list: list of free request (ioc->free_list)
Suganath prabu Subramani03d1fb32016-01-28 12:07:06 +0530665 * @msix_io: IO's msix
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530666 */
667struct scsiio_tracker {
668 u16 smid;
669 struct scsi_cmnd *scmd;
670 u8 cb_idx;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +0530671 u8 direct_io;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530672 struct list_head chain_list;
673 struct list_head tracker_list;
Suganath prabu Subramani03d1fb32016-01-28 12:07:06 +0530674 u16 msix_io;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530675};
676
677/**
678 * struct request_tracker - firmware request tracker
679 * @smid: system message id
680 * @cb_idx: callback index
681 * @tracker_list: list of free request (ioc->free_list)
682 */
683struct request_tracker {
684 u16 smid;
685 u8 cb_idx;
686 struct list_head tracker_list;
687};
688
689/**
690 * struct _tr_list - target reset list
691 * @handle: device handle
692 * @state: state machine
693 */
694struct _tr_list {
695 struct list_head list;
696 u16 handle;
697 u16 state;
698};
699
Suganath prabu Subramanifd0331b2016-01-28 12:07:02 +0530700/**
701 * struct _sc_list - delayed SAS_IO_UNIT_CONTROL message list
702 * @handle: device handle
703 */
704struct _sc_list {
705 struct list_head list;
706 u16 handle;
707};
708
709/**
710 * struct _event_ack_list - delayed event acknowledgment list
711 * @Event: Event ID
712 * @EventContext: used to track the event uniquely
713 */
714struct _event_ack_list {
715 struct list_head list;
716 u16 Event;
717 u32 EventContext;
718};
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530719
720/**
721 * struct adapter_reply_queue - the reply queue struct
722 * @ioc: per adapter object
723 * @msix_index: msix index into vector table
724 * @vector: irq vector
725 * @reply_post_host_index: head index in the pool where FW completes IO
726 * @reply_post_free: reply post base virt address
727 * @name: the name registered to request_irq()
728 * @busy: isr is actively processing replies on another cpu
729 * @list: this list
730*/
731struct adapter_reply_queue {
732 struct MPT3SAS_ADAPTER *ioc;
733 u8 msix_index;
734 unsigned int vector;
735 u32 reply_post_host_index;
736 Mpi2ReplyDescriptorsUnion_t *reply_post_free;
737 char name[MPT_NAME_LENGTH];
738 atomic_t busy;
Sreekanth Reddy14b31142015-01-12 11:39:03 +0530739 cpumask_var_t affinity_hint;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530740 struct list_head list;
741};
742
743typedef void (*MPT_ADD_SGE)(void *paddr, u32 flags_length, dma_addr_t dma_addr);
744
745/* SAS3.0 support */
746typedef int (*MPT_BUILD_SG_SCMD)(struct MPT3SAS_ADAPTER *ioc,
747 struct scsi_cmnd *scmd, u16 smid);
748typedef void (*MPT_BUILD_SG)(struct MPT3SAS_ADAPTER *ioc, void *psge,
749 dma_addr_t data_out_dma, size_t data_out_sz,
750 dma_addr_t data_in_dma, size_t data_in_sz);
751typedef void (*MPT_BUILD_ZERO_LEN_SGE)(struct MPT3SAS_ADAPTER *ioc,
752 void *paddr);
753
Suganath Prabu Subramani81c16f82016-10-26 13:34:40 +0530754/* To support atomic and non atomic descriptors*/
755typedef void (*PUT_SMID_IO_FP_HIP) (struct MPT3SAS_ADAPTER *ioc, u16 smid,
756 u16 funcdep);
757typedef void (*PUT_SMID_DEFAULT) (struct MPT3SAS_ADAPTER *ioc, u16 smid);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530758
759/* IOC Facts and Port Facts converted from little endian to cpu */
760union mpi3_version_union {
761 MPI2_VERSION_STRUCT Struct;
762 u32 Word;
763};
764
765struct mpt3sas_facts {
766 u16 MsgVersion;
767 u16 HeaderVersion;
768 u8 IOCNumber;
769 u8 VP_ID;
770 u8 VF_ID;
771 u16 IOCExceptions;
772 u16 IOCStatus;
773 u32 IOCLogInfo;
774 u8 MaxChainDepth;
775 u8 WhoInit;
776 u8 NumberOfPorts;
777 u8 MaxMSIxVectors;
778 u16 RequestCredit;
779 u16 ProductID;
780 u32 IOCCapabilities;
781 union mpi3_version_union FWVersion;
782 u16 IOCRequestFrameSize;
Suganath prabu Subramaniebb30242016-01-28 12:07:04 +0530783 u16 IOCMaxChainSegmentSize;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530784 u16 MaxInitiators;
785 u16 MaxTargets;
786 u16 MaxSasExpanders;
787 u16 MaxEnclosures;
788 u16 ProtocolFlags;
789 u16 HighPriorityCredit;
790 u16 MaxReplyDescriptorPostQueueDepth;
791 u8 ReplyFrameSize;
792 u8 MaxVolumes;
793 u16 MaxDevHandle;
794 u16 MaxPersistentEntries;
795 u16 MinDevHandle;
796};
797
798struct mpt3sas_port_facts {
799 u8 PortNumber;
800 u8 VP_ID;
801 u8 VF_ID;
802 u8 PortType;
803 u16 MaxPostedCmdBuffers;
804};
805
Sreekanth Reddy9b05c912014-09-12 15:35:31 +0530806struct reply_post_struct {
807 Mpi2ReplyDescriptorsUnion_t *reply_post_free;
808 dma_addr_t reply_post_free_dma;
809};
810
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530811typedef void (*MPT3SAS_FLUSH_RUNNING_CMDS)(struct MPT3SAS_ADAPTER *ioc);
812/**
813 * struct MPT3SAS_ADAPTER - per adapter struct
814 * @list: ioc_list
815 * @shost: shost object
816 * @id: unique adapter id
817 * @cpu_count: number online cpus
818 * @name: generic ioc string
819 * @tmp_string: tmp string used for logging
820 * @pdev: pci pdev object
821 * @pio_chip: physical io register space
822 * @chip: memory mapped register space
823 * @chip_phys: physical addrss prior to mapping
824 * @logging_level: see mpt3sas_debug.h
825 * @fwfault_debug: debuging FW timeouts
826 * @ir_firmware: IR firmware present
827 * @bars: bitmask of BAR's that must be configured
828 * @mask_interrupts: ignore interrupt
Sreekanth Reddy9b05c912014-09-12 15:35:31 +0530829 * @dma_mask: used to set the consistent dma mask
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530830 * @fault_reset_work_q_name: fw fault work queue
831 * @fault_reset_work_q: ""
832 * @fault_reset_work: ""
833 * @firmware_event_name: fw event work queue
834 * @firmware_event_thread: ""
835 * @fw_event_lock:
836 * @fw_event_list: list of fw events
837 * @aen_event_read_flag: event log was read
838 * @broadcast_aen_busy: broadcast aen waiting to be serviced
839 * @shost_recovery: host reset in progress
840 * @ioc_reset_in_progress_lock:
841 * @ioc_link_reset_in_progress: phy/hard reset in progress
842 * @ignore_loginfos: ignore loginfos during task management
843 * @remove_host: flag for when driver unloads, to avoid sending dev resets
844 * @pci_error_recovery: flag to prevent ioc access until slot reset completes
845 * @wait_for_discovery_to_complete: flag set at driver load time when
846 * waiting on reporting devices
847 * @is_driver_loading: flag set at driver load time
848 * @port_enable_failed: flag set when port enable has failed
849 * @start_scan: flag set from scan_start callback, cleared from _mpt3sas_fw_work
850 * @start_scan_failed: means port enable failed, return's the ioc_status
851 * @msix_enable: flag indicating msix is enabled
852 * @msix_vector_count: number msix vectors
853 * @cpu_msix_table: table for mapping cpus to msix index
854 * @cpu_msix_table_sz: table size
855 * @schedule_dead_ioc_flush_running_cmds: callback to flush pending commands
856 * @scsi_io_cb_idx: shost generated commands
857 * @tm_cb_idx: task management commands
858 * @scsih_cb_idx: scsih internal commands
859 * @transport_cb_idx: transport internal commands
860 * @ctl_cb_idx: clt internal commands
861 * @base_cb_idx: base internal commands
862 * @config_cb_idx: base internal commands
863 * @tm_tr_cb_idx : device removal target reset handshake
864 * @tm_tr_volume_cb_idx : volume removal target reset
865 * @base_cmds:
866 * @transport_cmds:
867 * @scsih_cmds:
868 * @tm_cmds:
869 * @ctl_cmds:
870 * @config_cmds:
871 * @base_add_sg_single: handler for either 32/64 bit sgl's
872 * @event_type: bits indicating which events to log
873 * @event_context: unique id for each logged event
874 * @event_log: event log pointer
875 * @event_masks: events that are masked
876 * @facts: static facts data
877 * @pfacts: static port facts data
878 * @manu_pg0: static manufacturing page 0
879 * @manu_pg10: static manufacturing page 10
880 * @manu_pg11: static manufacturing page 11
881 * @bios_pg2: static bios page 2
882 * @bios_pg3: static bios page 3
883 * @ioc_pg8: static ioc page 8
884 * @iounit_pg0: static iounit page 0
885 * @iounit_pg1: static iounit page 1
Sreekanth Reddy2d8ce8c2015-01-12 11:38:56 +0530886 * @iounit_pg8: static iounit page 8
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530887 * @sas_hba: sas host object
888 * @sas_expander_list: expander object list
889 * @sas_node_lock:
890 * @sas_device_list: sas device object list
891 * @sas_device_init_list: sas device object list (used only at init time)
892 * @sas_device_lock:
893 * @io_missing_delay: time for IO completed by fw when PDR enabled
894 * @device_missing_delay: time for device missing by fw when PDR enabled
895 * @sas_id : used for setting volume target IDs
896 * @blocking_handles: bitmask used to identify which devices need blocking
897 * @pd_handles : bitmask for PD handles
898 * @pd_handles_sz : size of pd_handle bitmask
899 * @config_page_sz: config page size
900 * @config_page: reserve memory for config page payload
901 * @config_page_dma:
902 * @hba_queue_depth: hba request queue depth
903 * @sge_size: sg element size for either 32/64 bit
904 * @scsiio_depth: SCSI_IO queue depth
905 * @request_sz: per request frame size
906 * @request: pool of request frames
907 * @request_dma:
908 * @request_dma_sz:
909 * @scsi_lookup: firmware request tracker list
910 * @scsi_lookup_lock:
911 * @free_list: free list of request
912 * @pending_io_count:
913 * @reset_wq:
914 * @chain: pool of chains
915 * @chain_dma:
916 * @max_sges_in_main_message: number sg elements in main message
917 * @max_sges_in_chain_message: number sg elements per chain
918 * @chains_needed_per_io: max chains per io
919 * @chain_depth: total chains allocated
Suganath prabu Subramaniebb30242016-01-28 12:07:04 +0530920 * @chain_segment_sz: gives the max number of
921 * SGEs accommodate on single chain buffer
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530922 * @hi_priority_smid:
923 * @hi_priority:
924 * @hi_priority_dma:
925 * @hi_priority_depth:
926 * @hpr_lookup:
927 * @hpr_free_list:
928 * @internal_smid:
929 * @internal:
930 * @internal_dma:
931 * @internal_depth:
932 * @internal_lookup:
933 * @internal_free_list:
934 * @sense: pool of sense
935 * @sense_dma:
936 * @sense_dma_pool:
937 * @reply_depth: hba reply queue depth:
938 * @reply_sz: per reply frame size:
939 * @reply: pool of replys:
940 * @reply_dma:
941 * @reply_dma_pool:
942 * @reply_free_queue_depth: reply free depth
943 * @reply_free: pool for reply free queue (32 bit addr)
944 * @reply_free_dma:
945 * @reply_free_dma_pool:
946 * @reply_free_host_index: tail index in pool to insert free replys
947 * @reply_post_queue_depth: reply post queue depth
Sreekanth Reddy9b05c912014-09-12 15:35:31 +0530948 * @reply_post_struct: struct for reply_post_free physical & virt address
949 * @rdpq_array_capable: FW supports multiple reply queue addresses in ioc_init
950 * @rdpq_array_enable: rdpq_array support is enabled in the driver
951 * @rdpq_array_enable_assigned: this ensures that rdpq_array_enable flag
952 * is assigned only ones
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530953 * @reply_queue_count: number of reply queue's
954 * @reply_queue_list: link list contaning the reply queue info
Sreekanth Reddyfb77bb52015-06-30 12:24:47 +0530955 * @msix96_vector: 96 MSI-X vector support
956 * @replyPostRegisterIndex: index of next position in Reply Desc Post Queue
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530957 * @delayed_tr_list: target reset link list
958 * @delayed_tr_volume_list: volume target reset link list
Suganath prabu Subramanifd0331b2016-01-28 12:07:02 +0530959 * @delayed_sc_list:
960 * @delayed_event_ack_list:
Sreekanth Reddy08c4d552015-11-11 17:30:33 +0530961 * @temp_sensors_count: flag to carry the number of temperature sensors
962 * @pci_access_mutex: Mutex to synchronize ioctl,sysfs show path and
963 * pci resource handling. PCI resource freeing will lead to free
964 * vital hardware/memory resource, which might be in use by cli/sysfs
965 * path functions resulting in Null pointer reference followed by kernel
966 * crash. To avoid the above race condition we use mutex syncrhonization
967 * which ensures the syncrhonization between cli/sysfs_show path.
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530968 */
969struct MPT3SAS_ADAPTER {
970 struct list_head list;
971 struct Scsi_Host *shost;
972 u8 id;
973 int cpu_count;
974 char name[MPT_NAME_LENGTH];
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +0530975 char driver_name[MPT_NAME_LENGTH];
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530976 char tmp_string[MPT_STRING_LENGTH];
977 struct pci_dev *pdev;
978 Mpi2SystemInterfaceRegs_t __iomem *chip;
979 resource_size_t chip_phys;
980 int logging_level;
981 int fwfault_debug;
982 u8 ir_firmware;
983 int bars;
984 u8 mask_interrupts;
Sreekanth Reddy9b05c912014-09-12 15:35:31 +0530985 int dma_mask;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +0530986
987 /* fw fault handler */
988 char fault_reset_work_q_name[20];
989 struct workqueue_struct *fault_reset_work_q;
990 struct delayed_work fault_reset_work;
991
992 /* fw event handler */
993 char firmware_event_name[20];
994 struct workqueue_struct *firmware_event_thread;
995 spinlock_t fw_event_lock;
996 struct list_head fw_event_list;
997
998 /* misc flags */
999 int aen_event_read_flag;
1000 u8 broadcast_aen_busy;
1001 u16 broadcast_aen_pending;
1002 u8 shost_recovery;
1003
1004 struct mutex reset_in_progress_mutex;
1005 spinlock_t ioc_reset_in_progress_lock;
1006 u8 ioc_link_reset_in_progress;
1007 u8 ioc_reset_in_progress_status;
1008
1009 u8 ignore_loginfos;
1010 u8 remove_host;
1011 u8 pci_error_recovery;
1012 u8 wait_for_discovery_to_complete;
1013 u8 is_driver_loading;
1014 u8 port_enable_failed;
1015 u8 start_scan;
1016 u16 start_scan_failed;
1017
1018 u8 msix_enable;
1019 u16 msix_vector_count;
1020 u8 *cpu_msix_table;
1021 u16 cpu_msix_table_sz;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +05301022 resource_size_t __iomem **reply_post_host_index;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301023 u32 ioc_reset_count;
1024 MPT3SAS_FLUSH_RUNNING_CMDS schedule_dead_ioc_flush_running_cmds;
Sreekanth Reddy16e179b2015-11-11 17:30:27 +05301025 u32 non_operational_loop;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301026
1027 /* internal commands, callback index */
1028 u8 scsi_io_cb_idx;
1029 u8 tm_cb_idx;
1030 u8 transport_cb_idx;
1031 u8 scsih_cb_idx;
1032 u8 ctl_cb_idx;
1033 u8 base_cb_idx;
1034 u8 port_enable_cb_idx;
1035 u8 config_cb_idx;
1036 u8 tm_tr_cb_idx;
1037 u8 tm_tr_volume_cb_idx;
1038 u8 tm_sas_control_cb_idx;
1039 struct _internal_cmd base_cmds;
1040 struct _internal_cmd port_enable_cmds;
1041 struct _internal_cmd transport_cmds;
1042 struct _internal_cmd scsih_cmds;
1043 struct _internal_cmd tm_cmds;
1044 struct _internal_cmd ctl_cmds;
1045 struct _internal_cmd config_cmds;
1046
1047 MPT_ADD_SGE base_add_sg_single;
1048
1049 /* function ptr for either IEEE or MPI sg elements */
1050 MPT_BUILD_SG_SCMD build_sg_scmd;
1051 MPT_BUILD_SG build_sg;
1052 MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301053 u16 sge_size_ieee;
Sreekanth Reddyd357e842015-11-11 17:30:22 +05301054 u16 hba_mpi_version_belonged;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301055
1056 /* function ptr for MPI sg elements only */
1057 MPT_BUILD_SG build_sg_mpi;
1058 MPT_BUILD_ZERO_LEN_SGE build_zero_len_sge_mpi;
1059
1060 /* event log */
1061 u32 event_type[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
1062 u32 event_context;
1063 void *event_log;
1064 u32 event_masks[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
1065
1066 /* static config pages */
1067 struct mpt3sas_facts facts;
1068 struct mpt3sas_port_facts *pfacts;
1069 Mpi2ManufacturingPage0_t manu_pg0;
1070 struct Mpi2ManufacturingPage10_t manu_pg10;
1071 struct Mpi2ManufacturingPage11_t manu_pg11;
1072 Mpi2BiosPage2_t bios_pg2;
1073 Mpi2BiosPage3_t bios_pg3;
1074 Mpi2IOCPage8_t ioc_pg8;
1075 Mpi2IOUnitPage0_t iounit_pg0;
1076 Mpi2IOUnitPage1_t iounit_pg1;
Sreekanth Reddy2d8ce8c2015-01-12 11:38:56 +05301077 Mpi2IOUnitPage8_t iounit_pg8;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301078
1079 struct _boot_device req_boot_device;
1080 struct _boot_device req_alt_boot_device;
1081 struct _boot_device current_boot_device;
1082
1083 /* sas hba, expander, and device list */
1084 struct _sas_node sas_hba;
1085 struct list_head sas_expander_list;
1086 spinlock_t sas_node_lock;
1087 struct list_head sas_device_list;
1088 struct list_head sas_device_init_list;
1089 spinlock_t sas_device_lock;
1090 struct list_head raid_device_list;
1091 spinlock_t raid_device_lock;
1092 u8 io_missing_delay;
1093 u16 device_missing_delay;
1094 int sas_id;
1095
1096 void *blocking_handles;
1097 void *pd_handles;
1098 u16 pd_handles_sz;
1099
Suganath Prabu Subramanic696f7b2016-10-26 13:34:34 +05301100 void *pend_os_device_add;
1101 u16 pend_os_device_add_sz;
1102
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301103 /* config page */
1104 u16 config_page_sz;
1105 void *config_page;
1106 dma_addr_t config_page_dma;
1107
1108 /* scsiio request */
1109 u16 hba_queue_depth;
1110 u16 sge_size;
1111 u16 scsiio_depth;
1112 u16 request_sz;
1113 u8 *request;
1114 dma_addr_t request_dma;
1115 u32 request_dma_sz;
1116 struct scsiio_tracker *scsi_lookup;
1117 ulong scsi_lookup_pages;
1118 spinlock_t scsi_lookup_lock;
1119 struct list_head free_list;
1120 int pending_io_count;
1121 wait_queue_head_t reset_wq;
1122
1123 /* chain */
1124 struct chain_tracker *chain_lookup;
1125 struct list_head free_chain_list;
1126 struct dma_pool *chain_dma_pool;
1127 ulong chain_pages;
1128 u16 max_sges_in_main_message;
1129 u16 max_sges_in_chain_message;
1130 u16 chains_needed_per_io;
1131 u32 chain_depth;
Suganath prabu Subramaniebb30242016-01-28 12:07:04 +05301132 u16 chain_segment_sz;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301133
1134 /* hi-priority queue */
1135 u16 hi_priority_smid;
1136 u8 *hi_priority;
1137 dma_addr_t hi_priority_dma;
1138 u16 hi_priority_depth;
1139 struct request_tracker *hpr_lookup;
1140 struct list_head hpr_free_list;
1141
1142 /* internal queue */
1143 u16 internal_smid;
1144 u8 *internal;
1145 dma_addr_t internal_dma;
1146 u16 internal_depth;
1147 struct request_tracker *internal_lookup;
1148 struct list_head internal_free_list;
1149
1150 /* sense */
1151 u8 *sense;
1152 dma_addr_t sense_dma;
1153 struct dma_pool *sense_dma_pool;
1154
1155 /* reply */
1156 u16 reply_sz;
1157 u8 *reply;
1158 dma_addr_t reply_dma;
1159 u32 reply_dma_max_address;
1160 u32 reply_dma_min_address;
1161 struct dma_pool *reply_dma_pool;
1162
1163 /* reply free queue */
1164 u16 reply_free_queue_depth;
1165 __le32 *reply_free;
1166 dma_addr_t reply_free_dma;
1167 struct dma_pool *reply_free_dma_pool;
1168 u32 reply_free_host_index;
1169
1170 /* reply post queue */
1171 u16 reply_post_queue_depth;
Sreekanth Reddy9b05c912014-09-12 15:35:31 +05301172 struct reply_post_struct *reply_post;
1173 u8 rdpq_array_capable;
1174 u8 rdpq_array_enable;
1175 u8 rdpq_array_enable_assigned;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301176 struct dma_pool *reply_post_free_dma_pool;
1177 u8 reply_queue_count;
1178 struct list_head reply_queue_list;
1179
Suganath Prabu Subramani0bb337c2016-10-26 13:34:38 +05301180 u8 combined_reply_queue;
1181 u8 combined_reply_index_count;
Sreekanth Reddyfb77bb52015-06-30 12:24:47 +05301182 /* reply post register index */
1183 resource_size_t **replyPostRegisterIndex;
1184
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301185 struct list_head delayed_tr_list;
1186 struct list_head delayed_tr_volume_list;
Suganath prabu Subramanifd0331b2016-01-28 12:07:02 +05301187 struct list_head delayed_sc_list;
1188 struct list_head delayed_event_ack_list;
Sreekanth Reddy2d8ce8c2015-01-12 11:38:56 +05301189 u8 temp_sensors_count;
Sreekanth Reddy08c4d552015-11-11 17:30:33 +05301190 struct mutex pci_access_mutex;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301191
1192 /* diag buffer support */
1193 u8 *diag_buffer[MPI2_DIAG_BUF_TYPE_COUNT];
1194 u32 diag_buffer_sz[MPI2_DIAG_BUF_TYPE_COUNT];
1195 dma_addr_t diag_buffer_dma[MPI2_DIAG_BUF_TYPE_COUNT];
1196 u8 diag_buffer_status[MPI2_DIAG_BUF_TYPE_COUNT];
1197 u32 unique_id[MPI2_DIAG_BUF_TYPE_COUNT];
1198 u32 product_specific[MPI2_DIAG_BUF_TYPE_COUNT][23];
1199 u32 diagnostic_flags[MPI2_DIAG_BUF_TYPE_COUNT];
1200 u32 ring_buffer_offset;
1201 u32 ring_buffer_sz;
Sreekanth Reddy7786ab62015-11-11 17:30:28 +05301202 u8 is_warpdrive;
1203 u8 hide_ir_msg;
1204 u8 mfg_pg10_hide_flag;
1205 u8 hide_drives;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301206 spinlock_t diag_trigger_lock;
1207 u8 diag_trigger_active;
1208 struct SL_WH_MASTER_TRIGGER_T diag_trigger_master;
1209 struct SL_WH_EVENT_TRIGGERS_T diag_trigger_event;
1210 struct SL_WH_SCSI_TRIGGERS_T diag_trigger_scsi;
1211 struct SL_WH_MPI_TRIGGERS_T diag_trigger_mpi;
Suganath Prabu Subramanic696f7b2016-10-26 13:34:34 +05301212 void *device_remove_in_progress;
1213 u16 device_remove_in_progress_sz;
Suganath Prabu Subramani998f26a2016-10-26 13:34:37 +05301214 u8 is_gen35_ioc;
Suganath Prabu Subramani81c16f82016-10-26 13:34:40 +05301215 u8 atomic_desc_capable;
1216 PUT_SMID_IO_FP_HIP put_smid_scsi_io;
1217 PUT_SMID_IO_FP_HIP put_smid_fast_path;
1218 PUT_SMID_IO_FP_HIP put_smid_hi_priority;
1219 PUT_SMID_DEFAULT put_smid_default;
1220
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301221};
1222
1223typedef u8 (*MPT_CALLBACK)(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1224 u32 reply);
1225
1226
1227/* base shared API */
1228extern struct list_head mpt3sas_ioc_list;
Sreekanth Reddyd357e842015-11-11 17:30:22 +05301229extern char driver_name[MPT_NAME_LENGTH];
Sreekanth Reddy08c4d552015-11-11 17:30:33 +05301230/* spinlock on list operations over IOCs
1231 * Case: when multiple warpdrive cards(IOCs) are in use
1232 * Each IOC will added to the ioc list structure on initialization.
1233 * Watchdog threads run at regular intervals to check IOC for any
1234 * fault conditions which will trigger the dead_ioc thread to
1235 * deallocate pci resource, resulting deleting the IOC netry from list,
1236 * this deletion need to protected by spinlock to enusre that
1237 * ioc removal is syncrhonized, if not synchronized it might lead to
1238 * list_del corruption as the ioc list is traversed in cli path.
1239 */
1240extern spinlock_t gioc_lock;
Sreekanth Reddyd357e842015-11-11 17:30:22 +05301241
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301242void mpt3sas_base_start_watchdog(struct MPT3SAS_ADAPTER *ioc);
1243void mpt3sas_base_stop_watchdog(struct MPT3SAS_ADAPTER *ioc);
1244
1245int mpt3sas_base_attach(struct MPT3SAS_ADAPTER *ioc);
1246void mpt3sas_base_detach(struct MPT3SAS_ADAPTER *ioc);
1247int mpt3sas_base_map_resources(struct MPT3SAS_ADAPTER *ioc);
1248void mpt3sas_base_free_resources(struct MPT3SAS_ADAPTER *ioc);
Calvin Owens98c56ad2016-07-28 21:38:21 -07001249int mpt3sas_base_hard_reset_handler(struct MPT3SAS_ADAPTER *ioc,
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301250 enum reset_type type);
1251
1252void *mpt3sas_base_get_msg_frame(struct MPT3SAS_ADAPTER *ioc, u16 smid);
1253void *mpt3sas_base_get_sense_buffer(struct MPT3SAS_ADAPTER *ioc, u16 smid);
1254__le32 mpt3sas_base_get_sense_buffer_dma(struct MPT3SAS_ADAPTER *ioc,
1255 u16 smid);
Chaitra P B5f0dfb72016-05-06 14:29:31 +05301256
1257void mpt3sas_base_sync_reply_irqs(struct MPT3SAS_ADAPTER *ioc);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301258
1259/* hi-priority queue */
1260u16 mpt3sas_base_get_smid_hpr(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx);
1261u16 mpt3sas_base_get_smid_scsiio(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx,
1262 struct scsi_cmnd *scmd);
1263
1264u16 mpt3sas_base_get_smid(struct MPT3SAS_ADAPTER *ioc, u8 cb_idx);
1265void mpt3sas_base_free_smid(struct MPT3SAS_ADAPTER *ioc, u16 smid);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301266void mpt3sas_base_initialize_callback_handler(void);
1267u8 mpt3sas_base_register_callback_handler(MPT_CALLBACK cb_func);
1268void mpt3sas_base_release_callback_handler(u8 cb_idx);
1269
1270u8 mpt3sas_base_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1271 u32 reply);
1272u8 mpt3sas_port_enable_done(struct MPT3SAS_ADAPTER *ioc, u16 smid,
1273 u8 msix_index, u32 reply);
1274void *mpt3sas_base_get_reply_virt_addr(struct MPT3SAS_ADAPTER *ioc,
1275 u32 phys_addr);
1276
1277u32 mpt3sas_base_get_iocstate(struct MPT3SAS_ADAPTER *ioc, int cooked);
1278
1279void mpt3sas_base_fault_info(struct MPT3SAS_ADAPTER *ioc , u16 fault_code);
1280int mpt3sas_base_sas_iounit_control(struct MPT3SAS_ADAPTER *ioc,
1281 Mpi2SasIoUnitControlReply_t *mpi_reply,
1282 Mpi2SasIoUnitControlRequest_t *mpi_request);
1283int mpt3sas_base_scsi_enclosure_processor(struct MPT3SAS_ADAPTER *ioc,
1284 Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request);
1285
1286void mpt3sas_base_validate_event_type(struct MPT3SAS_ADAPTER *ioc,
1287 u32 *event_type);
1288
1289void mpt3sas_halt_firmware(struct MPT3SAS_ADAPTER *ioc);
1290
1291void mpt3sas_base_update_missing_delay(struct MPT3SAS_ADAPTER *ioc,
1292 u16 device_missing_delay, u8 io_missing_delay);
1293
1294int mpt3sas_port_enable(struct MPT3SAS_ADAPTER *ioc);
1295
1296
1297/* scsih shared API */
1298u8 mpt3sas_scsih_event_callback(struct MPT3SAS_ADAPTER *ioc, u8 msix_index,
1299 u32 reply);
1300void mpt3sas_scsih_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase);
1301
1302int mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER *ioc, u16 handle,
1303 uint channel, uint id, uint lun, u8 type, u16 smid_task,
Calvin Owens96902832016-07-28 21:38:20 -07001304 ulong timeout);
1305int mpt3sas_scsih_issue_locked_tm(struct MPT3SAS_ADAPTER *ioc, u16 handle,
1306 uint channel, uint id, uint lun, u8 type, u16 smid_task,
1307 ulong timeout);
1308
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301309void mpt3sas_scsih_set_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle);
1310void mpt3sas_scsih_clear_tm_flag(struct MPT3SAS_ADAPTER *ioc, u16 handle);
1311void mpt3sas_expander_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
1312void mpt3sas_device_remove_by_sas_address(struct MPT3SAS_ADAPTER *ioc,
1313 u64 sas_address);
Suganath prabu Subramanifd0331b2016-01-28 12:07:02 +05301314u8 mpt3sas_check_for_pending_internal_cmds(struct MPT3SAS_ADAPTER *ioc,
1315 u16 smid);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301316
1317struct _sas_node *mpt3sas_scsih_expander_find_by_handle(
1318 struct MPT3SAS_ADAPTER *ioc, u16 handle);
1319struct _sas_node *mpt3sas_scsih_expander_find_by_sas_address(
1320 struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
Sreekanth Reddyd1cb5e42015-11-11 17:30:30 +05301321struct _sas_device *mpt3sas_get_sdev_by_addr(
1322 struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
1323struct _sas_device *__mpt3sas_get_sdev_by_addr(
1324 struct MPT3SAS_ADAPTER *ioc, u64 sas_address);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301325
1326void mpt3sas_port_enable_complete(struct MPT3SAS_ADAPTER *ioc);
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +05301327struct _raid_device *
1328mpt3sas_raid_device_find_by_handle(struct MPT3SAS_ADAPTER *ioc, u16 handle);
Sreekanth Reddy8a7e4c22015-11-11 17:30:18 +05301329
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301330/* config shared API */
1331u8 mpt3sas_config_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1332 u32 reply);
1333int mpt3sas_config_get_number_hba_phys(struct MPT3SAS_ADAPTER *ioc,
1334 u8 *num_phys);
1335int mpt3sas_config_get_manufacturing_pg0(struct MPT3SAS_ADAPTER *ioc,
1336 Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage0_t *config_page);
1337int mpt3sas_config_get_manufacturing_pg7(struct MPT3SAS_ADAPTER *ioc,
1338 Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage7_t *config_page,
1339 u16 sz);
1340int mpt3sas_config_get_manufacturing_pg10(struct MPT3SAS_ADAPTER *ioc,
1341 Mpi2ConfigReply_t *mpi_reply,
1342 struct Mpi2ManufacturingPage10_t *config_page);
1343
1344int mpt3sas_config_get_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc,
1345 Mpi2ConfigReply_t *mpi_reply,
1346 struct Mpi2ManufacturingPage11_t *config_page);
1347int mpt3sas_config_set_manufacturing_pg11(struct MPT3SAS_ADAPTER *ioc,
1348 Mpi2ConfigReply_t *mpi_reply,
1349 struct Mpi2ManufacturingPage11_t *config_page);
1350
1351int mpt3sas_config_get_bios_pg2(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1352 *mpi_reply, Mpi2BiosPage2_t *config_page);
1353int mpt3sas_config_get_bios_pg3(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1354 *mpi_reply, Mpi2BiosPage3_t *config_page);
1355int mpt3sas_config_get_iounit_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1356 *mpi_reply, Mpi2IOUnitPage0_t *config_page);
1357int mpt3sas_config_get_sas_device_pg0(struct MPT3SAS_ADAPTER *ioc,
1358 Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage0_t *config_page,
1359 u32 form, u32 handle);
1360int mpt3sas_config_get_sas_device_pg1(struct MPT3SAS_ADAPTER *ioc,
1361 Mpi2ConfigReply_t *mpi_reply, Mpi2SasDevicePage1_t *config_page,
1362 u32 form, u32 handle);
1363int mpt3sas_config_get_sas_iounit_pg0(struct MPT3SAS_ADAPTER *ioc,
1364 Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage0_t *config_page,
1365 u16 sz);
1366int mpt3sas_config_get_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1367 *mpi_reply, Mpi2IOUnitPage1_t *config_page);
Sreekanth Reddy42263092015-11-11 17:30:29 +05301368int mpt3sas_config_get_iounit_pg3(struct MPT3SAS_ADAPTER *ioc,
1369 Mpi2ConfigReply_t *mpi_reply, Mpi2IOUnitPage3_t *config_page, u16 sz);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301370int mpt3sas_config_set_iounit_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1371 *mpi_reply, Mpi2IOUnitPage1_t *config_page);
Sreekanth Reddy2d8ce8c2015-01-12 11:38:56 +05301372int mpt3sas_config_get_iounit_pg8(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1373 *mpi_reply, Mpi2IOUnitPage8_t *config_page);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301374int mpt3sas_config_get_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc,
1375 Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page,
1376 u16 sz);
1377int mpt3sas_config_set_sas_iounit_pg1(struct MPT3SAS_ADAPTER *ioc,
1378 Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page,
1379 u16 sz);
1380int mpt3sas_config_get_ioc_pg8(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1381 *mpi_reply, Mpi2IOCPage8_t *config_page);
1382int mpt3sas_config_get_expander_pg0(struct MPT3SAS_ADAPTER *ioc,
1383 Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage0_t *config_page,
1384 u32 form, u32 handle);
1385int mpt3sas_config_get_expander_pg1(struct MPT3SAS_ADAPTER *ioc,
1386 Mpi2ConfigReply_t *mpi_reply, Mpi2ExpanderPage1_t *config_page,
1387 u32 phy_number, u16 handle);
1388int mpt3sas_config_get_enclosure_pg0(struct MPT3SAS_ADAPTER *ioc,
1389 Mpi2ConfigReply_t *mpi_reply, Mpi2SasEnclosurePage0_t *config_page,
1390 u32 form, u32 handle);
1391int mpt3sas_config_get_phy_pg0(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1392 *mpi_reply, Mpi2SasPhyPage0_t *config_page, u32 phy_number);
1393int mpt3sas_config_get_phy_pg1(struct MPT3SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1394 *mpi_reply, Mpi2SasPhyPage1_t *config_page, u32 phy_number);
1395int mpt3sas_config_get_raid_volume_pg1(struct MPT3SAS_ADAPTER *ioc,
1396 Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage1_t *config_page, u32 form,
1397 u32 handle);
1398int mpt3sas_config_get_number_pds(struct MPT3SAS_ADAPTER *ioc, u16 handle,
1399 u8 *num_pds);
1400int mpt3sas_config_get_raid_volume_pg0(struct MPT3SAS_ADAPTER *ioc,
1401 Mpi2ConfigReply_t *mpi_reply, Mpi2RaidVolPage0_t *config_page, u32 form,
1402 u32 handle, u16 sz);
1403int mpt3sas_config_get_phys_disk_pg0(struct MPT3SAS_ADAPTER *ioc,
1404 Mpi2ConfigReply_t *mpi_reply, Mpi2RaidPhysDiskPage0_t *config_page,
1405 u32 form, u32 form_specific);
1406int mpt3sas_config_get_volume_handle(struct MPT3SAS_ADAPTER *ioc, u16 pd_handle,
1407 u16 *volume_handle);
1408int mpt3sas_config_get_volume_wwid(struct MPT3SAS_ADAPTER *ioc,
1409 u16 volume_handle, u64 *wwid);
1410
1411/* ctl shared API */
1412extern struct device_attribute *mpt3sas_host_attrs[];
1413extern struct device_attribute *mpt3sas_dev_attrs[];
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +05301414void mpt3sas_ctl_init(ushort hbas_to_enumerate);
1415void mpt3sas_ctl_exit(ushort hbas_to_enumerate);
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301416u8 mpt3sas_ctl_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1417 u32 reply);
1418void mpt3sas_ctl_reset_handler(struct MPT3SAS_ADAPTER *ioc, int reset_phase);
1419u8 mpt3sas_ctl_event_callback(struct MPT3SAS_ADAPTER *ioc,
1420 u8 msix_index, u32 reply);
1421void mpt3sas_ctl_add_to_event_log(struct MPT3SAS_ADAPTER *ioc,
1422 Mpi2EventNotificationReply_t *mpi_reply);
1423
1424void mpt3sas_enable_diag_buffer(struct MPT3SAS_ADAPTER *ioc,
1425 u8 bits_to_regsiter);
1426int mpt3sas_send_diag_release(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type,
1427 u8 *issue_reset);
1428
1429/* transport shared API */
Sreekanth Reddy7497392a2015-11-11 17:30:19 +05301430extern struct scsi_transport_template *mpt3sas_transport_template;
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301431u8 mpt3sas_transport_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1432 u32 reply);
1433struct _sas_port *mpt3sas_transport_port_add(struct MPT3SAS_ADAPTER *ioc,
1434 u16 handle, u64 sas_address);
1435void mpt3sas_transport_port_remove(struct MPT3SAS_ADAPTER *ioc, u64 sas_address,
1436 u64 sas_address_parent);
1437int mpt3sas_transport_add_host_phy(struct MPT3SAS_ADAPTER *ioc, struct _sas_phy
1438 *mpt3sas_phy, Mpi2SasPhyPage0_t phy_pg0, struct device *parent_dev);
1439int mpt3sas_transport_add_expander_phy(struct MPT3SAS_ADAPTER *ioc,
1440 struct _sas_phy *mpt3sas_phy, Mpi2ExpanderPage1_t expander_pg1,
1441 struct device *parent_dev);
1442void mpt3sas_transport_update_links(struct MPT3SAS_ADAPTER *ioc,
1443 u64 sas_address, u16 handle, u8 phy_number, u8 link_rate);
1444extern struct sas_function_template mpt3sas_transport_functions;
1445extern struct scsi_transport_template *mpt3sas_transport_template;
1446extern int scsi_internal_device_block(struct scsi_device *sdev);
1447extern int scsi_internal_device_unblock(struct scsi_device *sdev,
1448 enum scsi_device_state new_state);
1449/* trigger data externs */
1450void mpt3sas_send_trigger_data_event(struct MPT3SAS_ADAPTER *ioc,
1451 struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data);
1452void mpt3sas_process_trigger_data(struct MPT3SAS_ADAPTER *ioc,
1453 struct SL_WH_TRIGGERS_EVENT_DATA_T *event_data);
1454void mpt3sas_trigger_master(struct MPT3SAS_ADAPTER *ioc,
1455 u32 tigger_bitmask);
1456void mpt3sas_trigger_event(struct MPT3SAS_ADAPTER *ioc, u16 event,
1457 u16 log_entry_qualifier);
1458void mpt3sas_trigger_scsi(struct MPT3SAS_ADAPTER *ioc, u8 sense_key,
1459 u8 asc, u8 ascq);
1460void mpt3sas_trigger_mpi(struct MPT3SAS_ADAPTER *ioc, u16 ioc_status,
1461 u32 loginfo);
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +05301462
1463/* warpdrive APIs */
1464u8 mpt3sas_get_num_volumes(struct MPT3SAS_ADAPTER *ioc);
1465void mpt3sas_init_warpdrive_properties(struct MPT3SAS_ADAPTER *ioc,
1466 struct _raid_device *raid_device);
Stephen Rothwell0a5149b2015-11-13 12:35:36 +11001467u8
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +05301468mpt3sas_scsi_direct_io_get(struct MPT3SAS_ADAPTER *ioc, u16 smid);
Stephen Rothwell0a5149b2015-11-13 12:35:36 +11001469void
Sreekanth Reddyc84b06a2015-11-11 17:30:35 +05301470mpt3sas_scsi_direct_io_set(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 direct_io);
1471void
1472mpt3sas_setup_direct_io(struct MPT3SAS_ADAPTER *ioc, struct scsi_cmnd *scmd,
1473 struct _raid_device *raid_device, Mpi2SCSIIORequest_t *mpi_request,
1474 u16 smid);
1475
Adam Manzanares307d9072016-12-12 16:31:40 -08001476/* NCQ Prio Handling Check */
1477bool scsih_ncq_prio_supp(struct scsi_device *sdev);
1478
Sreekanth Reddyf92363d2012-11-30 07:44:21 +05301479#endif /* MPT3SAS_BASE_H_INCLUDED */