blob: 61e5b2400aa87b7c91ec11e95ee035a49edd3266 [file] [log] [blame]
Eric Moore635374e2009-03-09 01:21:12 -06001/*
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/mpt2sas/mpt2_base.h
Kashyap, Desai31b7f2e2010-03-17 16:28:04 +05306 * Copyright (C) 2007-2010 LSI Corporation
Eric Moore635374e2009-03-09 01:21:12 -06007 * (mailto:DL-MPTFusionLinux@lsi.com)
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * NO WARRANTY
20 * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
21 * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
22 * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
23 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
24 * solely responsible for determining the appropriateness of using and
25 * distributing the Program and assumes all risks associated with its
26 * exercise of rights under this Agreement, including but not limited to
27 * the risks and costs of program errors, damage to or loss of data,
28 * programs or equipment, and unavailability or interruption of operations.
29
30 * DISCLAIMER OF LIABILITY
31 * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
32 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
34 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
35 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
36 * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
37 * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
38
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
42 * USA.
43 */
44
45#ifndef MPT2SAS_BASE_H_INCLUDED
46#define MPT2SAS_BASE_H_INCLUDED
47
48#include "mpi/mpi2_type.h"
49#include "mpi/mpi2.h"
50#include "mpi/mpi2_ioc.h"
51#include "mpi/mpi2_cnfg.h"
52#include "mpi/mpi2_init.h"
53#include "mpi/mpi2_raid.h"
54#include "mpi/mpi2_tool.h"
55#include "mpi/mpi2_sas.h"
56
57#include <scsi/scsi.h>
58#include <scsi/scsi_cmnd.h>
59#include <scsi/scsi_device.h>
60#include <scsi/scsi_host.h>
61#include <scsi/scsi_tcq.h>
62#include <scsi/scsi_transport_sas.h>
63#include <scsi/scsi_dbg.h>
Eric Moore3c621b32009-05-18 12:59:41 -060064#include <scsi/scsi_eh.h>
Eric Moore635374e2009-03-09 01:21:12 -060065
66#include "mpt2sas_debug.h"
67
68/* driver versioning info */
69#define MPT2SAS_DRIVER_NAME "mpt2sas"
70#define MPT2SAS_AUTHOR "LSI Corporation <DL-MPTFusionLinux@lsi.com>"
71#define MPT2SAS_DESCRIPTION "LSI MPT Fusion SAS 2.0 Device Driver"
nagalakshmi.nandigama@lsi.com6e880202011-10-19 15:37:54 +053072#define MPT2SAS_DRIVER_VERSION "10.100.00.00"
73#define MPT2SAS_MAJOR_VERSION 10
Eric Moore635374e2009-03-09 01:21:12 -060074#define MPT2SAS_MINOR_VERSION 100
Kashyap, Desai1a7d7ea2010-03-17 16:28:34 +053075#define MPT2SAS_BUILD_VERSION 00
nagalakshmi.nandigama@lsi.com6e880202011-10-19 15:37:54 +053076#define MPT2SAS_RELEASE_VERSION 00
Eric Moore635374e2009-03-09 01:21:12 -060077
78/*
79 * Set MPT2SAS_SG_DEPTH value based on user input.
80 */
81#ifdef CONFIG_SCSI_MPT2SAS_MAX_SGE
82#if CONFIG_SCSI_MPT2SAS_MAX_SGE < 16
83#define MPT2SAS_SG_DEPTH 16
84#elif CONFIG_SCSI_MPT2SAS_MAX_SGE > 128
85#define MPT2SAS_SG_DEPTH 128
86#else
87#define MPT2SAS_SG_DEPTH CONFIG_SCSI_MPT2SAS_MAX_SGE
88#endif
89#else
90#define MPT2SAS_SG_DEPTH 128 /* MAX_HW_SEGMENTS */
91#endif
92
93
94/*
95 * Generic Defines
96 */
97#define MPT2SAS_SATA_QUEUE_DEPTH 32
98#define MPT2SAS_SAS_QUEUE_DEPTH 254
99#define MPT2SAS_RAID_QUEUE_DEPTH 128
100
101#define MPT_NAME_LENGTH 32 /* generic length of strings */
102#define MPT_STRING_LENGTH 64
103
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530104#define MPT_MAX_CALLBACKS 16
105
Eric Moore635374e2009-03-09 01:21:12 -0600106
107#define CAN_SLEEP 1
108#define NO_SLEEP 0
109
110#define INTERNAL_CMDS_COUNT 10 /* reserved cmds */
111
112#define MPI2_HIM_MASK 0xFFFFFFFF /* mask every bit*/
113
114#define MPT2SAS_INVALID_DEVICE_HANDLE 0xFFFF
115
116
117/*
118 * reset phases
119 */
120#define MPT2_IOC_PRE_RESET 1 /* prior to host reset */
121#define MPT2_IOC_AFTER_RESET 2 /* just after host reset */
122#define MPT2_IOC_DONE_RESET 3 /* links re-initialized */
123
124/*
125 * logging format
126 */
127#define MPT2SAS_FMT "%s: "
Eric Moore635374e2009-03-09 01:21:12 -0600128#define MPT2SAS_INFO_FMT KERN_INFO MPT2SAS_FMT
129#define MPT2SAS_NOTE_FMT KERN_NOTICE MPT2SAS_FMT
130#define MPT2SAS_WARN_FMT KERN_WARNING MPT2SAS_FMT
131#define MPT2SAS_ERR_FMT KERN_ERR MPT2SAS_FMT
132
133/*
Eric Mooref0f9cc12009-04-21 15:40:48 -0600134 * Dell HBA branding
135 */
136#define MPT2SAS_DELL_BRANDING_SIZE 32
137
138#define MPT2SAS_DELL_6GBPS_SAS_HBA_BRANDING "Dell 6Gbps SAS HBA"
139#define MPT2SAS_DELL_PERC_H200_ADAPTER_BRANDING "Dell PERC H200 Adapter"
140#define MPT2SAS_DELL_PERC_H200_INTEGRATED_BRANDING "Dell PERC H200 Integrated"
141#define MPT2SAS_DELL_PERC_H200_MODULAR_BRANDING "Dell PERC H200 Modular"
142#define MPT2SAS_DELL_PERC_H200_EMBEDDED_BRANDING "Dell PERC H200 Embedded"
143#define MPT2SAS_DELL_PERC_H200_BRANDING "Dell PERC H200"
144#define MPT2SAS_DELL_6GBPS_SAS_BRANDING "Dell 6Gbps SAS"
145
146/*
147 * Dell HBA SSDIDs
148 */
149#define MPT2SAS_DELL_6GBPS_SAS_HBA_SSDID 0x1F1C
150#define MPT2SAS_DELL_PERC_H200_ADAPTER_SSDID 0x1F1D
151#define MPT2SAS_DELL_PERC_H200_INTEGRATED_SSDID 0x1F1E
152#define MPT2SAS_DELL_PERC_H200_MODULAR_SSDID 0x1F1F
153#define MPT2SAS_DELL_PERC_H200_EMBEDDED_SSDID 0x1F20
154#define MPT2SAS_DELL_PERC_H200_SSDID 0x1F21
155#define MPT2SAS_DELL_6GBPS_SAS_SSDID 0x1F22
156
157/*
Kashyap, Desaifb396be2011-01-04 11:36:37 +0530158 * Intel HBA branding
159 */
160#define MPT2SAS_INTEL_RMS2LL080_BRANDING \
161 "Intel Integrated RAID Module RMS2LL080"
162#define MPT2SAS_INTEL_RMS2LL040_BRANDING \
163 "Intel Integrated RAID Module RMS2LL040"
Kashyap, Desaiab3e5f62011-06-14 10:57:31 +0530164#define MPT2SAS_INTEL_RS25GB008_BRANDING \
165 "Intel(R) RAID Controller RS25GB008"
Kashyap, Desaifb396be2011-01-04 11:36:37 +0530166
167/*
168 * Intel HBA SSDIDs
169 */
170#define MPT2SAS_INTEL_RMS2LL080_SSDID 0x350E
171#define MPT2SAS_INTEL_RMS2LL040_SSDID 0x350F
Kashyap, Desaiab3e5f62011-06-14 10:57:31 +0530172#define MPT2SAS_INTEL_RS25GB008_SSDID 0x3000
Kashyap, Desaifb396be2011-01-04 11:36:37 +0530173
Kashyap, Desai0a2385c2011-03-15 20:04:26 +0530174
175/*
176 * HP HBA branding
177 */
178#define MPT2SAS_HP_3PAR_SSVID 0x1590
179#define MPT2SAS_HP_2_4_INTERNAL_BRANDING "HP H220 Host Bus Adapter"
180#define MPT2SAS_HP_2_4_EXTERNAL_BRANDING "HP H221 Host Bus Adapter"
181#define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_BRANDING "HP H222 Host Bus Adapter"
182#define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_BRANDING "HP H220i Host Bus Adapter"
183#define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_BRANDING "HP H210i Host Bus Adapter"
184
185/*
186 * HO HBA SSDIDs
187 */
188#define MPT2SAS_HP_2_4_INTERNAL_SSDID 0x0041
189#define MPT2SAS_HP_2_4_EXTERNAL_SSDID 0x0042
190#define MPT2SAS_HP_1_4_INTERNAL_1_4_EXTERNAL_SSDID 0x0043
191#define MPT2SAS_HP_EMBEDDED_2_4_INTERNAL_SSDID 0x0044
192#define MPT2SAS_HP_DAUGHTER_2_4_INTERNAL_SSDID 0x0046
193
Kashyap, Desaifb396be2011-01-04 11:36:37 +0530194/*
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530195 * WarpDrive Specific Log codes
196 */
197
198#define MPT2_WARPDRIVE_LOGENTRY (0x8002)
199#define MPT2_WARPDRIVE_LC_SSDT (0x41)
200#define MPT2_WARPDRIVE_LC_SSDLW (0x43)
201#define MPT2_WARPDRIVE_LC_SSDLF (0x44)
202#define MPT2_WARPDRIVE_LC_BRMF (0x4D)
203
204/*
Eric Moore635374e2009-03-09 01:21:12 -0600205 * per target private data
206 */
207#define MPT_TARGET_FLAGS_RAID_COMPONENT 0x01
208#define MPT_TARGET_FLAGS_VOLUME 0x02
209#define MPT_TARGET_FLAGS_DELETED 0x04
210
211/**
212 * struct MPT2SAS_TARGET - starget private hostdata
213 * @starget: starget object
214 * @sas_address: target sas address
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530215 * @raid_device: raid_device pointer to access volume data
Eric Moore635374e2009-03-09 01:21:12 -0600216 * @handle: device handle
217 * @num_luns: number luns
218 * @flags: MPT_TARGET_FLAGS_XXX flags
219 * @deleted: target flaged for deletion
220 * @tm_busy: target is busy with TM request.
221 */
222struct MPT2SAS_TARGET {
223 struct scsi_target *starget;
224 u64 sas_address;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530225 struct _raid_device *raid_device;
Eric Moore635374e2009-03-09 01:21:12 -0600226 u16 handle;
227 int num_luns;
228 u32 flags;
229 u8 deleted;
230 u8 tm_busy;
231};
232
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530233
Eric Moore635374e2009-03-09 01:21:12 -0600234/*
235 * per device private data
236 */
237#define MPT_DEVICE_FLAGS_INIT 0x01
238#define MPT_DEVICE_TLR_ON 0x02
239
240/**
241 * struct MPT2SAS_DEVICE - sdev private hostdata
242 * @sas_target: starget private hostdata
243 * @lun: lun number
244 * @flags: MPT_DEVICE_XXX flags
245 * @configured_lun: lun is configured
246 * @block: device is in SDEV_BLOCK state
247 * @tlr_snoop_check: flag used in determining whether to disable TLR
248 */
Kashyap, Desaied79f122009-08-20 13:23:49 +0530249
250/* OEM Identifiers */
251#define MFG10_OEM_ID_INVALID (0x00000000)
252#define MFG10_OEM_ID_DELL (0x00000001)
253#define MFG10_OEM_ID_FSC (0x00000002)
254#define MFG10_OEM_ID_SUN (0x00000003)
255#define MFG10_OEM_ID_IBM (0x00000004)
256
257/* GENERIC Flags 0*/
258#define MFG10_GF0_OCE_DISABLED (0x00000001)
259#define MFG10_GF0_R1E_DRIVE_COUNT (0x00000002)
260#define MFG10_GF0_R10_DISPLAY (0x00000004)
261#define MFG10_GF0_SSD_DATA_SCRUB_DISABLE (0x00000008)
262#define MFG10_GF0_SINGLE_DRIVE_R0 (0x00000010)
263
264/* OEM Specific Flags will come from OEM specific header files */
265typedef struct _MPI2_CONFIG_PAGE_MAN_10 {
266 MPI2_CONFIG_PAGE_HEADER Header; /* 00h */
267 U8 OEMIdentifier; /* 04h */
268 U8 Reserved1; /* 05h */
269 U16 Reserved2; /* 08h */
270 U32 Reserved3; /* 0Ch */
271 U32 GenericFlags0; /* 10h */
272 U32 GenericFlags1; /* 14h */
273 U32 Reserved4; /* 18h */
274 U32 OEMSpecificFlags0; /* 1Ch */
275 U32 OEMSpecificFlags1; /* 20h */
276 U32 Reserved5[18]; /* 24h-60h*/
277} MPI2_CONFIG_PAGE_MAN_10,
278 MPI2_POINTER PTR_MPI2_CONFIG_PAGE_MAN_10,
279 Mpi2ManufacturingPage10_t, MPI2_POINTER pMpi2ManufacturingPage10_t;
280
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530281#define MFG_PAGE10_HIDE_SSDS_MASK (0x00000003)
282#define MFG_PAGE10_HIDE_ALL_DISKS (0x00)
283#define MFG_PAGE10_EXPOSE_ALL_DISKS (0x01)
284#define MFG_PAGE10_HIDE_IF_VOL_PRESENT (0x02)
285
286
Eric Moore635374e2009-03-09 01:21:12 -0600287struct MPT2SAS_DEVICE {
288 struct MPT2SAS_TARGET *sas_target;
289 unsigned int lun;
290 u32 flags;
291 u8 configured_lun;
292 u8 block;
293 u8 tlr_snoop_check;
294};
295
296#define MPT2_CMD_NOT_USED 0x8000 /* free */
297#define MPT2_CMD_COMPLETE 0x0001 /* completed */
298#define MPT2_CMD_PENDING 0x0002 /* pending */
299#define MPT2_CMD_REPLY_VALID 0x0004 /* reply is valid */
300#define MPT2_CMD_RESET 0x0008 /* host reset dropped the command */
301
302/**
303 * struct _internal_cmd - internal commands struct
304 * @mutex: mutex
305 * @done: completion
306 * @reply: reply message pointer
Kashyap, Desai769578f2010-06-17 13:49:28 +0530307 * @sense: sense data
Eric Moore635374e2009-03-09 01:21:12 -0600308 * @status: MPT2_CMD_XXX status
309 * @smid: system message id
310 */
311struct _internal_cmd {
312 struct mutex mutex;
313 struct completion done;
314 void *reply;
Kashyap, Desai769578f2010-06-17 13:49:28 +0530315 void *sense;
Eric Moore635374e2009-03-09 01:21:12 -0600316 u16 status;
317 u16 smid;
318};
319
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530320
Eric Moore635374e2009-03-09 01:21:12 -0600321/**
322 * struct _sas_device - attached device information
323 * @list: sas device list
324 * @starget: starget object
325 * @sas_address: device sas address
326 * @device_name: retrieved from the SAS IDENTIFY frame.
327 * @handle: device handle
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530328 * @sas_address_parent: sas address of parent expander or sas host
Eric Moore635374e2009-03-09 01:21:12 -0600329 * @enclosure_handle: enclosure handle
330 * @enclosure_logical_id: enclosure logical identifier
331 * @volume_handle: volume handle (valid when hidden raid member)
332 * @volume_wwid: volume unique identifier
333 * @device_info: bitfield provides detailed info about the device
334 * @id: target id
335 * @channel: target channel
336 * @slot: number number
Kashyap, Desai7fbae672010-06-17 13:45:17 +0530337 * @phy: phy identifier provided in sas device page 0
Eric Moore635374e2009-03-09 01:21:12 -0600338 * @responding: used in _scsih_sas_device_mark_responding
339 */
340struct _sas_device {
341 struct list_head list;
342 struct scsi_target *starget;
343 u64 sas_address;
344 u64 device_name;
345 u16 handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530346 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -0600347 u16 enclosure_handle;
348 u64 enclosure_logical_id;
349 u16 volume_handle;
350 u64 volume_wwid;
351 u32 device_info;
352 int id;
353 int channel;
354 u16 slot;
Kashyap, Desai7fbae672010-06-17 13:45:17 +0530355 u8 phy;
Eric Moore635374e2009-03-09 01:21:12 -0600356 u8 responding;
357};
358
359/**
360 * struct _raid_device - raid volume link list
361 * @list: sas device list
362 * @starget: starget object
363 * @sdev: scsi device struct (volumes are single lun)
364 * @wwid: unique identifier for the volume
365 * @handle: device handle
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530366 * @block_size: Block size of the volume
Eric Moore635374e2009-03-09 01:21:12 -0600367 * @id: target id
368 * @channel: target channel
369 * @volume_type: the raid level
370 * @device_info: bitfield provides detailed info about the hidden components
371 * @num_pds: number of hidden raid components
372 * @responding: used in _scsih_raid_device_mark_responding
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +0530373 * @percent_complete: resync percent complete
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530374 * @direct_io_enabled: Whether direct io to PDs are allowed or not
375 * @stripe_exponent: X where 2powX is the stripe sz in blocks
376 * @max_lba: Maximum number of LBA in the volume
377 * @stripe_sz: Stripe Size of the volume
378 * @device_info: Device info of the volume member disk
379 * @pd_handle: Array of handles of the physical drives for direct I/O in le16
Eric Moore635374e2009-03-09 01:21:12 -0600380 */
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530381#define MPT_MAX_WARPDRIVE_PDS 8
Eric Moore635374e2009-03-09 01:21:12 -0600382struct _raid_device {
383 struct list_head list;
384 struct scsi_target *starget;
385 struct scsi_device *sdev;
386 u64 wwid;
387 u16 handle;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530388 u16 block_sz;
Eric Moore635374e2009-03-09 01:21:12 -0600389 int id;
390 int channel;
391 u8 volume_type;
Eric Moore635374e2009-03-09 01:21:12 -0600392 u8 num_pds;
393 u8 responding;
Kashyap, Desaif7c95ef2009-12-16 18:54:42 +0530394 u8 percent_complete;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530395 u8 direct_io_enabled;
396 u8 stripe_exponent;
397 u64 max_lba;
398 u32 stripe_sz;
399 u32 device_info;
400 u16 pd_handle[MPT_MAX_WARPDRIVE_PDS];
Eric Moore635374e2009-03-09 01:21:12 -0600401};
402
403/**
404 * struct _boot_device - boot device info
405 * @is_raid: flag to indicate whether this is volume
406 * @device: holds pointer for either struct _sas_device or
407 * struct _raid_device
408 */
409struct _boot_device {
410 u8 is_raid;
411 void *device;
412};
413
414/**
415 * struct _sas_port - wide/narrow sas port information
416 * @port_list: list of ports belonging to expander
Eric Moore635374e2009-03-09 01:21:12 -0600417 * @num_phys: number of phys belonging to this port
418 * @remote_identify: attached device identification
419 * @rphy: sas transport rphy object
420 * @port: sas transport wide/narrow port object
421 * @phy_list: _sas_phy list objects belonging to this port
422 */
423struct _sas_port {
424 struct list_head port_list;
Eric Moore635374e2009-03-09 01:21:12 -0600425 u8 num_phys;
426 struct sas_identify remote_identify;
427 struct sas_rphy *rphy;
428 struct sas_port *port;
429 struct list_head phy_list;
430};
431
432/**
433 * struct _sas_phy - phy information
434 * @port_siblings: list of phys belonging to a port
435 * @identify: phy identification
436 * @remote_identify: attached device identification
437 * @phy: sas transport phy object
438 * @phy_id: unique phy id
439 * @handle: device handle for this phy
440 * @attached_handle: device handle for attached device
Kashyap, Desai38c29112010-04-05 14:18:34 +0530441 * @phy_belongs_to_port: port has been created for this phy
Eric Moore635374e2009-03-09 01:21:12 -0600442 */
443struct _sas_phy {
444 struct list_head port_siblings;
445 struct sas_identify identify;
446 struct sas_identify remote_identify;
447 struct sas_phy *phy;
448 u8 phy_id;
449 u16 handle;
450 u16 attached_handle;
Kashyap, Desai38c29112010-04-05 14:18:34 +0530451 u8 phy_belongs_to_port;
Eric Moore635374e2009-03-09 01:21:12 -0600452};
453
454/**
455 * struct _sas_node - sas_host/expander information
456 * @list: list of expanders
457 * @parent_dev: parent device class
458 * @num_phys: number phys belonging to this sas_host/expander
459 * @sas_address: sas address of this sas_host/expander
460 * @handle: handle for this sas_host/expander
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530461 * @sas_address_parent: sas address of parent expander or sas host
Eric Moore635374e2009-03-09 01:21:12 -0600462 * @enclosure_handle: handle for this a member of an enclosure
463 * @device_info: bitwise defining capabilities of this sas_host/expander
464 * @responding: used in _scsih_expander_device_mark_responding
465 * @phy: a list of phys that make up this sas_host/expander
466 * @sas_port_list: list of ports attached to this sas_host/expander
467 */
468struct _sas_node {
469 struct list_head list;
470 struct device *parent_dev;
471 u8 num_phys;
472 u64 sas_address;
473 u16 handle;
Kashyap, Desaic5e039b2009-09-23 17:21:29 +0530474 u64 sas_address_parent;
Eric Moore635374e2009-03-09 01:21:12 -0600475 u16 enclosure_handle;
476 u64 enclosure_logical_id;
477 u8 responding;
478 struct _sas_phy *phy;
479 struct list_head sas_port_list;
480};
481
482/**
483 * enum reset_type - reset state
484 * @FORCE_BIG_HAMMER: issue diagnostic reset
485 * @SOFT_RESET: issue message_unit_reset, if fails to to big hammer
486 */
487enum reset_type {
488 FORCE_BIG_HAMMER,
489 SOFT_RESET,
490};
491
492/**
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530493 * struct chain_tracker - firmware chain tracker
494 * @chain_buffer: chain buffer
495 * @chain_buffer_dma: physical address
496 * @tracker_list: list of free request (ioc->free_chain_list)
497 */
498struct chain_tracker {
499 void *chain_buffer;
500 dma_addr_t chain_buffer_dma;
501 struct list_head tracker_list;
502};
503
504/**
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530505 * struct scsiio_tracker - scsi mf request tracker
Eric Moore635374e2009-03-09 01:21:12 -0600506 * @smid: system message id
507 * @scmd: scsi request pointer
508 * @cb_idx: callback index
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530509 * @direct_io: To indicate whether I/O is direct (WARPDRIVE)
Eric Moore635374e2009-03-09 01:21:12 -0600510 * @chain_list: list of chains associated to this IO
511 * @tracker_list: list of free request (ioc->free_list)
512 */
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530513struct scsiio_tracker {
Eric Moore635374e2009-03-09 01:21:12 -0600514 u16 smid;
515 struct scsi_cmnd *scmd;
516 u8 cb_idx;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530517 u8 direct_io;
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530518 struct list_head chain_list;
Eric Moore635374e2009-03-09 01:21:12 -0600519 struct list_head tracker_list;
520};
521
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530522/**
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530523 * struct request_tracker - firmware request tracker
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530524 * @smid: system message id
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530525 * @cb_idx: callback index
526 * @tracker_list: list of free request (ioc->free_list)
527 */
528struct request_tracker {
529 u16 smid;
530 u8 cb_idx;
531 struct list_head tracker_list;
532};
533
534/**
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530535 * struct _tr_list - target reset list
536 * @handle: device handle
537 * @state: state machine
538 */
539struct _tr_list {
540 struct list_head list;
541 u16 handle;
542 u16 state;
543};
544
Eric Moore635374e2009-03-09 01:21:12 -0600545typedef void (*MPT_ADD_SGE)(void *paddr, u32 flags_length, dma_addr_t dma_addr);
546
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530547/**
548 * struct adapter_reply_queue - the reply queue struct
549 * @ioc: per adapter object
550 * @msix_index: msix index into vector table
551 * @vector: irq vector
552 * @reply_post_host_index: head index in the pool where FW completes IO
553 * @reply_post_free: reply post base virt address
554 * @name: the name registered to request_irq()
555 * @busy: isr is actively processing replies on another cpu
556 * @list: this list
557*/
558struct adapter_reply_queue {
559 struct MPT2SAS_ADAPTER *ioc;
560 u8 msix_index;
561 unsigned int vector;
562 u32 reply_post_host_index;
563 Mpi2ReplyDescriptorsUnion_t *reply_post_free;
564 char name[MPT_NAME_LENGTH];
565 atomic_t busy;
566 struct list_head list;
567};
568
Kashyap, Desaic97951e2011-06-14 10:54:56 +0530569/* IOC Facts and Port Facts converted from little endian to cpu */
570union mpi2_version_union {
571 MPI2_VERSION_STRUCT Struct;
572 u32 Word;
573};
574
575struct mpt2sas_facts {
576 u16 MsgVersion;
577 u16 HeaderVersion;
578 u8 IOCNumber;
579 u8 VP_ID;
580 u8 VF_ID;
581 u16 IOCExceptions;
582 u16 IOCStatus;
583 u32 IOCLogInfo;
584 u8 MaxChainDepth;
585 u8 WhoInit;
586 u8 NumberOfPorts;
587 u8 MaxMSIxVectors;
588 u16 RequestCredit;
589 u16 ProductID;
590 u32 IOCCapabilities;
591 union mpi2_version_union FWVersion;
592 u16 IOCRequestFrameSize;
593 u16 Reserved3;
594 u16 MaxInitiators;
595 u16 MaxTargets;
596 u16 MaxSasExpanders;
597 u16 MaxEnclosures;
598 u16 ProtocolFlags;
599 u16 HighPriorityCredit;
600 u16 MaxReplyDescriptorPostQueueDepth;
601 u8 ReplyFrameSize;
602 u8 MaxVolumes;
603 u16 MaxDevHandle;
604 u16 MaxPersistentEntries;
605 u16 MinDevHandle;
606};
607
608struct mpt2sas_port_facts {
609 u8 PortNumber;
610 u8 VP_ID;
611 u8 VF_ID;
612 u8 PortType;
613 u16 MaxPostedCmdBuffers;
614};
615
Eric Moore635374e2009-03-09 01:21:12 -0600616/**
Kashyap, Desaif93213d2011-06-14 10:56:43 +0530617 * enum mutex_type - task management mutex type
618 * @TM_MUTEX_OFF: mutex is not required becuase calling function is acquiring it
619 * @TM_MUTEX_ON: mutex is required
620 */
621enum mutex_type {
622 TM_MUTEX_OFF = 0,
623 TM_MUTEX_ON = 1,
624};
625
nagalakshmi.nandigama@lsi.com845a0e42011-12-01 07:42:04 +0530626typedef void (*MPT2SAS_FLUSH_RUNNING_CMDS)(struct MPT2SAS_ADAPTER *ioc);
Kashyap, Desaif93213d2011-06-14 10:56:43 +0530627/**
Eric Moore635374e2009-03-09 01:21:12 -0600628 * struct MPT2SAS_ADAPTER - per adapter struct
629 * @list: ioc_list
630 * @shost: shost object
631 * @id: unique adapter id
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530632 * @cpu_count: number online cpus
Eric Moore635374e2009-03-09 01:21:12 -0600633 * @name: generic ioc string
634 * @tmp_string: tmp string used for logging
635 * @pdev: pci pdev object
636 * @chip: memory mapped register space
637 * @chip_phys: physical addrss prior to mapping
Eric Moore635374e2009-03-09 01:21:12 -0600638 * @logging_level: see mpt2sas_debug.h
Kashyap, Desaifa7f3162009-09-23 17:26:58 +0530639 * @fwfault_debug: debuging FW timeouts
Eric Moore635374e2009-03-09 01:21:12 -0600640 * @ir_firmware: IR firmware present
641 * @bars: bitmask of BAR's that must be configured
642 * @mask_interrupts: ignore interrupt
643 * @fault_reset_work_q_name: fw fault work queue
644 * @fault_reset_work_q: ""
645 * @fault_reset_work: ""
646 * @firmware_event_name: fw event work queue
647 * @firmware_event_thread: ""
648 * @fw_events_off: flag to turn off fw event handling
649 * @fw_event_lock:
650 * @fw_event_list: list of fw events
651 * @aen_event_read_flag: event log was read
652 * @broadcast_aen_busy: broadcast aen waiting to be serviced
Kashyap, Desai155dd4c2009-08-20 13:22:00 +0530653 * @shost_recovery: host reset in progress
Eric Moore635374e2009-03-09 01:21:12 -0600654 * @ioc_reset_in_progress_lock:
655 * @ioc_link_reset_in_progress: phy/hard reset in progress
Uwe Kleine-König65155b32010-06-11 12:17:01 +0200656 * @ignore_loginfos: ignore loginfos during task management
Eric Moore635374e2009-03-09 01:21:12 -0600657 * @remove_host: flag for when driver unloads, to avoid sending dev resets
Eric Moore3cb54692010-07-08 14:44:34 -0600658 * @pci_error_recovery: flag to prevent ioc access until slot reset completes
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530659 * @wait_for_discovery_to_complete: flag set at driver load time when
660 * waiting on reporting devices
661 * @is_driver_loading: flag set at driver load time
662 * @port_enable_failed: flag set when port enable has failed
663 * @start_scan: flag set from scan_start callback, cleared from _mpt2sas_fw_work
664 * @start_scan_failed: means port enable failed, return's the ioc_status
Eric Moore635374e2009-03-09 01:21:12 -0600665 * @msix_enable: flag indicating msix is enabled
666 * @msix_vector_count: number msix vectors
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530667 * @cpu_msix_table: table for mapping cpus to msix index
668 * @cpu_msix_table_sz: table size
nagalakshmi.nandigama@lsi.com845a0e42011-12-01 07:42:04 +0530669 * @schedule_dead_ioc_flush_running_cmds: callback to flush pending commands
Eric Moore635374e2009-03-09 01:21:12 -0600670 * @scsi_io_cb_idx: shost generated commands
671 * @tm_cb_idx: task management commands
Kashyap, Desai744090d2009-10-05 15:56:56 +0530672 * @scsih_cb_idx: scsih internal commands
Eric Moore635374e2009-03-09 01:21:12 -0600673 * @transport_cb_idx: transport internal commands
674 * @ctl_cb_idx: clt internal commands
675 * @base_cb_idx: base internal commands
676 * @config_cb_idx: base internal commands
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530677 * @tm_tr_cb_idx : device removal target reset handshake
678 * @tm_tr_volume_cb_idx : volume removal target reset
Eric Moore635374e2009-03-09 01:21:12 -0600679 * @base_cmds:
680 * @transport_cmds:
Kashyap, Desai744090d2009-10-05 15:56:56 +0530681 * @scsih_cmds:
Eric Moore635374e2009-03-09 01:21:12 -0600682 * @tm_cmds:
683 * @ctl_cmds:
684 * @config_cmds:
685 * @base_add_sg_single: handler for either 32/64 bit sgl's
686 * @event_type: bits indicating which events to log
687 * @event_context: unique id for each logged event
688 * @event_log: event log pointer
689 * @event_masks: events that are masked
690 * @facts: static facts data
691 * @pfacts: static port facts data
692 * @manu_pg0: static manufacturing page 0
Kashyap, Desaied79f122009-08-20 13:23:49 +0530693 * @manu_pg10: static manufacturing page 10
Eric Moore635374e2009-03-09 01:21:12 -0600694 * @bios_pg2: static bios page 2
695 * @bios_pg3: static bios page 3
696 * @ioc_pg8: static ioc page 8
697 * @iounit_pg0: static iounit page 0
698 * @iounit_pg1: static iounit page 1
699 * @sas_hba: sas host object
700 * @sas_expander_list: expander object list
701 * @sas_node_lock:
702 * @sas_device_list: sas device object list
703 * @sas_device_init_list: sas device object list (used only at init time)
704 * @sas_device_lock:
705 * @io_missing_delay: time for IO completed by fw when PDR enabled
706 * @device_missing_delay: time for device missing by fw when PDR enabled
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530707 * @sas_id : used for setting volume target IDs
708 * @pd_handles : bitmask for PD handles
709 * @pd_handles_sz : size of pd_handle bitmask
Eric Moore635374e2009-03-09 01:21:12 -0600710 * @config_page_sz: config page size
711 * @config_page: reserve memory for config page payload
712 * @config_page_dma:
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530713 * @hba_queue_depth: hba request queue depth
Eric Moore635374e2009-03-09 01:21:12 -0600714 * @sge_size: sg element size for either 32/64 bit
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530715 * @scsiio_depth: SCSI_IO queue depth
Eric Moore635374e2009-03-09 01:21:12 -0600716 * @request_sz: per request frame size
717 * @request: pool of request frames
718 * @request_dma:
719 * @request_dma_sz:
720 * @scsi_lookup: firmware request tracker list
721 * @scsi_lookup_lock:
722 * @free_list: free list of request
723 * @chain: pool of chains
724 * @pending_io_count:
725 * @reset_wq:
726 * @chain_dma:
727 * @max_sges_in_main_message: number sg elements in main message
728 * @max_sges_in_chain_message: number sg elements per chain
729 * @chains_needed_per_io: max chains per io
730 * @chain_offset_value_for_main_message: location 1st sg in main
731 * @chain_depth: total chains allocated
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530732 * @hi_priority_smid:
733 * @hi_priority:
734 * @hi_priority_dma:
735 * @hi_priority_depth:
736 * @hpr_lookup:
737 * @hpr_free_list:
738 * @internal_smid:
739 * @internal:
740 * @internal_dma:
741 * @internal_depth:
742 * @internal_lookup:
743 * @internal_free_list:
Eric Moore635374e2009-03-09 01:21:12 -0600744 * @sense: pool of sense
745 * @sense_dma:
746 * @sense_dma_pool:
747 * @reply_depth: hba reply queue depth:
748 * @reply_sz: per reply frame size:
749 * @reply: pool of replys:
750 * @reply_dma:
751 * @reply_dma_pool:
752 * @reply_free_queue_depth: reply free depth
753 * @reply_free: pool for reply free queue (32 bit addr)
754 * @reply_free_dma:
755 * @reply_free_dma_pool:
756 * @reply_free_host_index: tail index in pool to insert free replys
757 * @reply_post_queue_depth: reply post queue depth
758 * @reply_post_free: pool for reply post (64bit descriptor)
759 * @reply_post_free_dma:
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530760 * @reply_queue_count: number of reply queue's
761 * @reply_queue_list: link list contaning the reply queue info
Eric Moore635374e2009-03-09 01:21:12 -0600762 * @reply_post_host_index: head index in the pool where FW completes IO
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530763 * @delayed_tr_list: target reset link list
764 * @delayed_tr_volume_list: volume target reset link list
Eric Moore635374e2009-03-09 01:21:12 -0600765 */
766struct MPT2SAS_ADAPTER {
767 struct list_head list;
768 struct Scsi_Host *shost;
769 u8 id;
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530770 int cpu_count;
Eric Moore635374e2009-03-09 01:21:12 -0600771 char name[MPT_NAME_LENGTH];
772 char tmp_string[MPT_STRING_LENGTH];
773 struct pci_dev *pdev;
774 Mpi2SystemInterfaceRegs_t __iomem *chip;
Kashyap, Desai6846e752009-12-16 18:51:45 +0530775 resource_size_t chip_phys;
Eric Moore635374e2009-03-09 01:21:12 -0600776 int logging_level;
Kashyap, Desaifa7f3162009-09-23 17:26:58 +0530777 int fwfault_debug;
Eric Moore635374e2009-03-09 01:21:12 -0600778 u8 ir_firmware;
779 int bars;
780 u8 mask_interrupts;
781
782 /* fw fault handler */
783 char fault_reset_work_q_name[20];
784 struct workqueue_struct *fault_reset_work_q;
785 struct delayed_work fault_reset_work;
786
787 /* fw event handler */
788 char firmware_event_name[20];
789 struct workqueue_struct *firmware_event_thread;
Eric Moore635374e2009-03-09 01:21:12 -0600790 spinlock_t fw_event_lock;
791 struct list_head fw_event_list;
792
793 /* misc flags */
794 int aen_event_read_flag;
795 u8 broadcast_aen_busy;
Kashyap, Desaif93213d2011-06-14 10:56:43 +0530796 u16 broadcast_aen_pending;
Eric Moore635374e2009-03-09 01:21:12 -0600797 u8 shost_recovery;
Kashyap, Desaid2742132010-06-17 13:28:55 +0530798
799 struct mutex reset_in_progress_mutex;
Eric Moore635374e2009-03-09 01:21:12 -0600800 spinlock_t ioc_reset_in_progress_lock;
801 u8 ioc_link_reset_in_progress;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530802 u8 ioc_reset_in_progress_status;
Kashyap, Desaid2742132010-06-17 13:28:55 +0530803
Eric Moore635374e2009-03-09 01:21:12 -0600804 u8 ignore_loginfos;
805 u8 remove_host;
Eric Moore3cb54692010-07-08 14:44:34 -0600806 u8 pci_error_recovery;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530807 u8 wait_for_discovery_to_complete;
808 struct completion port_enable_done;
809 u8 is_driver_loading;
810 u8 port_enable_failed;
811
812 u8 start_scan;
813 u16 start_scan_failed;
Eric Moore635374e2009-03-09 01:21:12 -0600814
815 u8 msix_enable;
816 u16 msix_vector_count;
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530817 u8 *cpu_msix_table;
818 resource_size_t **reply_post_host_index;
819 u16 cpu_msix_table_sz;
Kashyap, Desaid32a8c12010-06-17 13:36:53 +0530820 u32 ioc_reset_count;
nagalakshmi.nandigama@lsi.com845a0e42011-12-01 07:42:04 +0530821 MPT2SAS_FLUSH_RUNNING_CMDS schedule_dead_ioc_flush_running_cmds;
Eric Moore635374e2009-03-09 01:21:12 -0600822
823 /* internal commands, callback index */
824 u8 scsi_io_cb_idx;
825 u8 tm_cb_idx;
826 u8 transport_cb_idx;
Kashyap, Desai744090d2009-10-05 15:56:56 +0530827 u8 scsih_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -0600828 u8 ctl_cb_idx;
829 u8 base_cb_idx;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530830 u8 port_enable_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -0600831 u8 config_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530832 u8 tm_tr_cb_idx;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530833 u8 tm_tr_volume_cb_idx;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530834 u8 tm_sas_control_cb_idx;
Eric Moore635374e2009-03-09 01:21:12 -0600835 struct _internal_cmd base_cmds;
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +0530836 struct _internal_cmd port_enable_cmds;
Eric Moore635374e2009-03-09 01:21:12 -0600837 struct _internal_cmd transport_cmds;
Kashyap, Desai744090d2009-10-05 15:56:56 +0530838 struct _internal_cmd scsih_cmds;
Eric Moore635374e2009-03-09 01:21:12 -0600839 struct _internal_cmd tm_cmds;
840 struct _internal_cmd ctl_cmds;
841 struct _internal_cmd config_cmds;
842
843 MPT_ADD_SGE base_add_sg_single;
844
845 /* event log */
846 u32 event_type[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
847 u32 event_context;
848 void *event_log;
849 u32 event_masks[MPI2_EVENT_NOTIFY_EVENTMASK_WORDS];
850
851 /* static config pages */
Kashyap, Desaic97951e2011-06-14 10:54:56 +0530852 struct mpt2sas_facts facts;
853 struct mpt2sas_port_facts *pfacts;
Eric Moore635374e2009-03-09 01:21:12 -0600854 Mpi2ManufacturingPage0_t manu_pg0;
855 Mpi2BiosPage2_t bios_pg2;
856 Mpi2BiosPage3_t bios_pg3;
857 Mpi2IOCPage8_t ioc_pg8;
858 Mpi2IOUnitPage0_t iounit_pg0;
859 Mpi2IOUnitPage1_t iounit_pg1;
860
861 struct _boot_device req_boot_device;
862 struct _boot_device req_alt_boot_device;
863 struct _boot_device current_boot_device;
864
865 /* sas hba, expander, and device list */
866 struct _sas_node sas_hba;
867 struct list_head sas_expander_list;
868 spinlock_t sas_node_lock;
869 struct list_head sas_device_list;
870 struct list_head sas_device_init_list;
871 spinlock_t sas_device_lock;
872 struct list_head raid_device_list;
873 spinlock_t raid_device_lock;
874 u8 io_missing_delay;
875 u16 device_missing_delay;
876 int sas_id;
877
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530878 void *pd_handles;
879 u16 pd_handles_sz;
880
Eric Moore635374e2009-03-09 01:21:12 -0600881 /* config page */
882 u16 config_page_sz;
883 void *config_page;
884 dma_addr_t config_page_dma;
885
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530886 /* scsiio request */
887 u16 hba_queue_depth;
Eric Moore635374e2009-03-09 01:21:12 -0600888 u16 sge_size;
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530889 u16 scsiio_depth;
Eric Moore635374e2009-03-09 01:21:12 -0600890 u16 request_sz;
891 u8 *request;
892 dma_addr_t request_dma;
893 u32 request_dma_sz;
Kashyap, Desaid5bd3491c2011-01-04 11:39:20 +0530894 struct scsiio_tracker *scsi_lookup;
Kashyap, Desai89009fb2010-03-17 16:22:52 +0530895 ulong scsi_lookup_pages;
896 spinlock_t scsi_lookup_lock;
Eric Moore635374e2009-03-09 01:21:12 -0600897 struct list_head free_list;
898 int pending_io_count;
899 wait_queue_head_t reset_wq;
900
901 /* chain */
Kashyap, Desai35f805b2010-11-13 04:34:06 +0530902 struct chain_tracker *chain_lookup;
903 struct list_head free_chain_list;
904 struct dma_pool *chain_dma_pool;
905 ulong chain_pages;
Eric Moore635374e2009-03-09 01:21:12 -0600906 u16 max_sges_in_main_message;
907 u16 max_sges_in_chain_message;
908 u16 chains_needed_per_io;
909 u16 chain_offset_value_for_main_message;
Kashyap, Desai89009fb2010-03-17 16:22:52 +0530910 u32 chain_depth;
Eric Moore635374e2009-03-09 01:21:12 -0600911
Kashyap, Desai595bb0b2009-09-14 11:02:48 +0530912 /* hi-priority queue */
913 u16 hi_priority_smid;
914 u8 *hi_priority;
915 dma_addr_t hi_priority_dma;
916 u16 hi_priority_depth;
917 struct request_tracker *hpr_lookup;
918 struct list_head hpr_free_list;
919
920 /* internal queue */
921 u16 internal_smid;
922 u8 *internal;
923 dma_addr_t internal_dma;
924 u16 internal_depth;
925 struct request_tracker *internal_lookup;
926 struct list_head internal_free_list;
927
Eric Moore635374e2009-03-09 01:21:12 -0600928 /* sense */
929 u8 *sense;
930 dma_addr_t sense_dma;
931 struct dma_pool *sense_dma_pool;
932
933 /* reply */
934 u16 reply_sz;
935 u8 *reply;
936 dma_addr_t reply_dma;
Kashyap, Desaidd3741d2010-11-13 04:31:14 +0530937 u32 reply_dma_max_address;
938 u32 reply_dma_min_address;
Eric Moore635374e2009-03-09 01:21:12 -0600939 struct dma_pool *reply_dma_pool;
940
941 /* reply free queue */
942 u16 reply_free_queue_depth;
Kashyap, Desaic97951e2011-06-14 10:54:56 +0530943 __le32 *reply_free;
Eric Moore635374e2009-03-09 01:21:12 -0600944 dma_addr_t reply_free_dma;
945 struct dma_pool *reply_free_dma_pool;
946 u32 reply_free_host_index;
947
948 /* reply post queue */
949 u16 reply_post_queue_depth;
950 Mpi2ReplyDescriptorsUnion_t *reply_post_free;
951 dma_addr_t reply_post_free_dma;
952 struct dma_pool *reply_post_free_dma_pool;
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530953 u8 reply_queue_count;
954 struct list_head reply_queue_list;
Eric Moore635374e2009-03-09 01:21:12 -0600955
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530956 struct list_head delayed_tr_list;
Kashyap, Desaif3eedd62010-06-17 13:46:13 +0530957 struct list_head delayed_tr_volume_list;
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530958
Eric Moore635374e2009-03-09 01:21:12 -0600959 /* diag buffer support */
960 u8 *diag_buffer[MPI2_DIAG_BUF_TYPE_COUNT];
961 u32 diag_buffer_sz[MPI2_DIAG_BUF_TYPE_COUNT];
962 dma_addr_t diag_buffer_dma[MPI2_DIAG_BUF_TYPE_COUNT];
963 u8 diag_buffer_status[MPI2_DIAG_BUF_TYPE_COUNT];
964 u32 unique_id[MPI2_DIAG_BUF_TYPE_COUNT];
Kashyap, Desaied79f122009-08-20 13:23:49 +0530965 Mpi2ManufacturingPage10_t manu_pg10;
Eric Moore635374e2009-03-09 01:21:12 -0600966 u32 product_specific[MPI2_DIAG_BUF_TYPE_COUNT][23];
967 u32 diagnostic_flags[MPI2_DIAG_BUF_TYPE_COUNT];
Kashyap, Desai570c67a2010-06-17 13:43:17 +0530968 u32 ring_buffer_offset;
969 u32 ring_buffer_sz;
Kashyap, Desai0bdccdb2011-04-07 12:32:49 +0530970 u8 is_warpdrive;
971 u8 hide_ir_msg;
972 u8 mfg_pg10_hide_flag;
973 u8 hide_drives;
974
Eric Moore635374e2009-03-09 01:21:12 -0600975};
976
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530977typedef u8 (*MPT_CALLBACK)(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
978 u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -0600979
980
981/* base shared API */
Eric Mooreba33fad2009-03-15 21:37:18 -0600982extern struct list_head mpt2sas_ioc_list;
Kashyap, Desaie4750c92009-08-07 19:37:59 +0530983void mpt2sas_base_start_watchdog(struct MPT2SAS_ADAPTER *ioc);
984void mpt2sas_base_stop_watchdog(struct MPT2SAS_ADAPTER *ioc);
Eric Moore635374e2009-03-09 01:21:12 -0600985
986int mpt2sas_base_attach(struct MPT2SAS_ADAPTER *ioc);
987void mpt2sas_base_detach(struct MPT2SAS_ADAPTER *ioc);
988int mpt2sas_base_map_resources(struct MPT2SAS_ADAPTER *ioc);
989void mpt2sas_base_free_resources(struct MPT2SAS_ADAPTER *ioc);
990int mpt2sas_base_hard_reset_handler(struct MPT2SAS_ADAPTER *ioc, int sleep_flag,
991 enum reset_type type);
992
993void *mpt2sas_base_get_msg_frame(struct MPT2SAS_ADAPTER *ioc, u16 smid);
994void *mpt2sas_base_get_sense_buffer(struct MPT2SAS_ADAPTER *ioc, u16 smid);
995void mpt2sas_base_build_zero_len_sge(struct MPT2SAS_ADAPTER *ioc, void *paddr);
Kashyap, Desaiec9472c2009-09-23 17:34:13 +0530996__le32 mpt2sas_base_get_sense_buffer_dma(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desai77e63ed2009-09-14 11:04:23 +0530997 u16 smid);
nagalakshmi.nandigama@lsi.com911ae942011-09-08 06:18:50 +0530998void mpt2sas_base_flush_reply_queues(struct MPT2SAS_ADAPTER *ioc);
Eric Moore635374e2009-03-09 01:21:12 -0600999
Kashyap, Desai595bb0b2009-09-14 11:02:48 +05301000/* hi-priority queue */
1001u16 mpt2sas_base_get_smid_hpr(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx);
1002u16 mpt2sas_base_get_smid_scsiio(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx,
1003 struct scsi_cmnd *scmd);
1004
Eric Moore635374e2009-03-09 01:21:12 -06001005u16 mpt2sas_base_get_smid(struct MPT2SAS_ADAPTER *ioc, u8 cb_idx);
1006void mpt2sas_base_free_smid(struct MPT2SAS_ADAPTER *ioc, u16 smid);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301007void mpt2sas_base_put_smid_scsi_io(struct MPT2SAS_ADAPTER *ioc, u16 smid,
Eric Moore635374e2009-03-09 01:21:12 -06001008 u16 handle);
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301009void mpt2sas_base_put_smid_hi_priority(struct MPT2SAS_ADAPTER *ioc, u16 smid);
Eric Moore635374e2009-03-09 01:21:12 -06001010void mpt2sas_base_put_smid_target_assist(struct MPT2SAS_ADAPTER *ioc, u16 smid,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301011 u16 io_index);
1012void mpt2sas_base_put_smid_default(struct MPT2SAS_ADAPTER *ioc, u16 smid);
Eric Moore635374e2009-03-09 01:21:12 -06001013void mpt2sas_base_initialize_callback_handler(void);
1014u8 mpt2sas_base_register_callback_handler(MPT_CALLBACK cb_func);
1015void mpt2sas_base_release_callback_handler(u8 cb_idx);
1016
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301017u8 mpt2sas_base_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301018 u32 reply);
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05301019u8 mpt2sas_port_enable_done(struct MPT2SAS_ADAPTER *ioc, u16 smid,
1020 u8 msix_index, u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -06001021void *mpt2sas_base_get_reply_virt_addr(struct MPT2SAS_ADAPTER *ioc, u32 phys_addr);
1022
1023u32 mpt2sas_base_get_iocstate(struct MPT2SAS_ADAPTER *ioc, int cooked);
1024
1025void mpt2sas_base_fault_info(struct MPT2SAS_ADAPTER *ioc , u16 fault_code);
1026int mpt2sas_base_sas_iounit_control(struct MPT2SAS_ADAPTER *ioc,
1027 Mpi2SasIoUnitControlReply_t *mpi_reply, Mpi2SasIoUnitControlRequest_t
1028 *mpi_request);
1029int mpt2sas_base_scsi_enclosure_processor(struct MPT2SAS_ADAPTER *ioc,
1030 Mpi2SepReply_t *mpi_reply, Mpi2SepRequest_t *mpi_request);
1031void mpt2sas_base_validate_event_type(struct MPT2SAS_ADAPTER *ioc, u32 *event_type);
1032
Kashyap, Desaifa7f3162009-09-23 17:26:58 +05301033void mpt2sas_halt_firmware(struct MPT2SAS_ADAPTER *ioc);
1034
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05301035int mpt2sas_port_enable(struct MPT2SAS_ADAPTER *ioc);
1036
Eric Moore635374e2009-03-09 01:21:12 -06001037/* scsih shared API */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301038u8 mpt2sas_scsih_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
1039 u32 reply);
Kashyap, Desai8ed9a032010-03-17 16:25:59 +05301040int mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle,
Kashyap, Desaif93213d2011-06-14 10:56:43 +05301041 uint channel, uint id, uint lun, u8 type, u16 smid_task,
1042 ulong timeout, unsigned long serial_number, enum mutex_type m_type);
Eric Moore635374e2009-03-09 01:21:12 -06001043void mpt2sas_scsih_set_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle);
1044void mpt2sas_scsih_clear_tm_flag(struct MPT2SAS_ADAPTER *ioc, u16 handle);
Kashyap, Desai7f6f7942010-11-13 04:35:30 +05301045void mpt2sas_expander_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address);
1046void mpt2sas_device_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06001047struct _sas_node *mpt2sas_scsih_expander_find_by_handle(struct MPT2SAS_ADAPTER *ioc,
1048 u16 handle);
1049struct _sas_node *mpt2sas_scsih_expander_find_by_sas_address(struct MPT2SAS_ADAPTER
1050 *ioc, u64 sas_address);
1051struct _sas_device *mpt2sas_scsih_sas_device_find_by_sas_address(
1052 struct MPT2SAS_ADAPTER *ioc, u64 sas_address);
1053
nagalakshmi.nandigama@lsi.com921cd802011-10-19 15:36:26 +05301054void mpt2sas_port_enable_complete(struct MPT2SAS_ADAPTER *ioc);
1055
Eric Moore635374e2009-03-09 01:21:12 -06001056void mpt2sas_scsih_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase);
1057
1058/* config shared API */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301059u8 mpt2sas_config_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301060 u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -06001061int mpt2sas_config_get_number_hba_phys(struct MPT2SAS_ADAPTER *ioc, u8 *num_phys);
1062int mpt2sas_config_get_manufacturing_pg0(struct MPT2SAS_ADAPTER *ioc,
1063 Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage0_t *config_page);
Kashyap, Desaied79f122009-08-20 13:23:49 +05301064int mpt2sas_config_get_manufacturing_pg10(struct MPT2SAS_ADAPTER *ioc,
1065 Mpi2ConfigReply_t *mpi_reply, Mpi2ManufacturingPage10_t *config_page);
Eric Moore635374e2009-03-09 01:21:12 -06001066int mpt2sas_config_get_bios_pg2(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1067 *mpi_reply, Mpi2BiosPage2_t *config_page);
1068int mpt2sas_config_get_bios_pg3(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1069 *mpi_reply, Mpi2BiosPage3_t *config_page);
1070int mpt2sas_config_get_iounit_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1071 *mpi_reply, Mpi2IOUnitPage0_t *config_page);
1072int mpt2sas_config_get_sas_device_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1073 *mpi_reply, Mpi2SasDevicePage0_t *config_page, u32 form, u32 handle);
1074int mpt2sas_config_get_sas_device_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1075 *mpi_reply, Mpi2SasDevicePage1_t *config_page, u32 form, u32 handle);
1076int mpt2sas_config_get_sas_iounit_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1077 *mpi_reply, Mpi2SasIOUnitPage0_t *config_page, u16 sz);
1078int mpt2sas_config_get_iounit_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1079 *mpi_reply, Mpi2IOUnitPage1_t *config_page);
1080int mpt2sas_config_set_iounit_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
Kashyap, Desai5b768582009-08-20 13:24:31 +05301081 *mpi_reply, Mpi2IOUnitPage1_t *config_page);
Eric Moore635374e2009-03-09 01:21:12 -06001082int mpt2sas_config_get_sas_iounit_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1083 *mpi_reply, Mpi2SasIOUnitPage1_t *config_page, u16 sz);
Kashyap, Desai50d5c602009-12-16 18:55:26 +05301084int mpt2sas_config_set_sas_iounit_pg1(struct MPT2SAS_ADAPTER *ioc,
1085 Mpi2ConfigReply_t *mpi_reply, Mpi2SasIOUnitPage1_t *config_page, u16 sz);
Eric Moore635374e2009-03-09 01:21:12 -06001086int mpt2sas_config_get_ioc_pg8(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1087 *mpi_reply, Mpi2IOCPage8_t *config_page);
1088int mpt2sas_config_get_expander_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1089 *mpi_reply, Mpi2ExpanderPage0_t *config_page, u32 form, u32 handle);
1090int mpt2sas_config_get_expander_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1091 *mpi_reply, Mpi2ExpanderPage1_t *config_page, u32 phy_number, u16 handle);
1092int mpt2sas_config_get_enclosure_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1093 *mpi_reply, Mpi2SasEnclosurePage0_t *config_page, u32 form, u32 handle);
1094int mpt2sas_config_get_phy_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1095 *mpi_reply, Mpi2SasPhyPage0_t *config_page, u32 phy_number);
1096int mpt2sas_config_get_phy_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1097 *mpi_reply, Mpi2SasPhyPage1_t *config_page, u32 phy_number);
1098int mpt2sas_config_get_raid_volume_pg1(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1099 *mpi_reply, Mpi2RaidVolPage1_t *config_page, u32 form, u32 handle);
1100int mpt2sas_config_get_number_pds(struct MPT2SAS_ADAPTER *ioc, u16 handle, u8 *num_pds);
1101int mpt2sas_config_get_raid_volume_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1102 *mpi_reply, Mpi2RaidVolPage0_t *config_page, u32 form, u32 handle, u16 sz);
1103int mpt2sas_config_get_phys_disk_pg0(struct MPT2SAS_ADAPTER *ioc, Mpi2ConfigReply_t
1104 *mpi_reply, Mpi2RaidPhysDiskPage0_t *config_page, u32 form,
1105 u32 form_specific);
1106int mpt2sas_config_get_volume_handle(struct MPT2SAS_ADAPTER *ioc, u16 pd_handle,
1107 u16 *volume_handle);
1108int mpt2sas_config_get_volume_wwid(struct MPT2SAS_ADAPTER *ioc, u16 volume_handle,
1109 u64 *wwid);
Eric Moore635374e2009-03-09 01:21:12 -06001110/* ctl shared API */
1111extern struct device_attribute *mpt2sas_host_attrs[];
1112extern struct device_attribute *mpt2sas_dev_attrs[];
1113void mpt2sas_ctl_init(void);
1114void mpt2sas_ctl_exit(void);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301115u8 mpt2sas_ctl_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301116 u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -06001117void mpt2sas_ctl_reset_handler(struct MPT2SAS_ADAPTER *ioc, int reset_phase);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301118u8 mpt2sas_ctl_event_callback(struct MPT2SAS_ADAPTER *ioc, u8 msix_index,
Kashyap, Desai7b936b02009-09-25 11:44:41 +05301119 u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -06001120void mpt2sas_ctl_add_to_event_log(struct MPT2SAS_ADAPTER *ioc,
1121 Mpi2EventNotificationReply_t *mpi_reply);
1122
Kashyap, Desai32e0eb52009-09-23 17:28:09 +05301123void mpt2sas_enable_diag_buffer(struct MPT2SAS_ADAPTER *ioc,
1124 u8 bits_to_regsiter);
1125
Eric Moore635374e2009-03-09 01:21:12 -06001126/* transport shared API */
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301127u8 mpt2sas_transport_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
1128 u32 reply);
Eric Moore635374e2009-03-09 01:21:12 -06001129struct _sas_port *mpt2sas_transport_port_add(struct MPT2SAS_ADAPTER *ioc,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05301130 u16 handle, u64 sas_address);
Eric Moore635374e2009-03-09 01:21:12 -06001131void mpt2sas_transport_port_remove(struct MPT2SAS_ADAPTER *ioc, u64 sas_address,
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05301132 u64 sas_address_parent);
Eric Moore635374e2009-03-09 01:21:12 -06001133int mpt2sas_transport_add_host_phy(struct MPT2SAS_ADAPTER *ioc, struct _sas_phy
1134 *mpt2sas_phy, Mpi2SasPhyPage0_t phy_pg0, struct device *parent_dev);
1135int mpt2sas_transport_add_expander_phy(struct MPT2SAS_ADAPTER *ioc, struct _sas_phy
1136 *mpt2sas_phy, Mpi2ExpanderPage1_t expander_pg1, struct device *parent_dev);
Kashyap, Desaic5e039b2009-09-23 17:21:29 +05301137void mpt2sas_transport_update_links(struct MPT2SAS_ADAPTER *ioc,
1138 u64 sas_address, u16 handle, u8 phy_number, u8 link_rate);
Eric Moore635374e2009-03-09 01:21:12 -06001139extern struct sas_function_template mpt2sas_transport_functions;
1140extern struct scsi_transport_template *mpt2sas_transport_template;
Kashyap, Desai34a03be2009-08-20 13:23:19 +05301141extern int scsi_internal_device_block(struct scsi_device *sdev);
Kashyap, Desai77e63ed2009-09-14 11:04:23 +05301142extern u8 mpt2sas_stm_zero_smid_handler(struct MPT2SAS_ADAPTER *ioc,
1143 u8 msix_index, u32 reply);
Kashyap, Desai34a03be2009-08-20 13:23:19 +05301144extern int scsi_internal_device_unblock(struct scsi_device *sdev);
Eric Moore635374e2009-03-09 01:21:12 -06001145
1146#endif /* MPT2SAS_BASE_H_INCLUDED */