blob: 3d613c4f93d903b79d63589bcb320574641a9603 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/message/fusion/mptbase.h
3 * High performance SCSI + LAN / Fibre Channel device drivers.
4 * For use with PCI chip/adapter(s):
5 * LSIFC9xx/LSI409xx Fibre Channel
6 * running LSI Logic Fusion MPT (Message Passing Technology) firmware.
7 *
Eric Moore9f4203b2007-01-04 20:47:47 -07008 * Copyright (c) 1999-2007 LSI Logic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * (mailto:mpt_linux_developer@lsil.com)
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
13/*
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; version 2 of the License.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 NO WARRANTY
24 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
25 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
26 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
27 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
28 solely responsible for determining the appropriateness of using and
29 distributing the Program and assumes all risks associated with its
30 exercise of rights under this Agreement, including but not limited to
31 the risks and costs of program errors, damage to or loss of data,
32 programs or equipment, and unavailability or interruption of operations.
33
34 DISCLAIMER OF LIABILITY
35 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
36 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
38 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
39 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
40 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
41 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
42
43 You should have received a copy of the GNU General Public License
44 along with this program; if not, write to the Free Software
45 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46*/
47
48#ifndef MPTBASE_H_INCLUDED
49#define MPTBASE_H_INCLUDED
50/*{-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/kernel.h>
53#include <linux/pci.h>
54
55#include "lsi/mpi_type.h"
56#include "lsi/mpi.h" /* Fusion MPI(nterface) basic defs */
57#include "lsi/mpi_ioc.h" /* Fusion MPT IOC(ontroller) defs */
58#include "lsi/mpi_cnfg.h" /* IOC configuration support */
59#include "lsi/mpi_init.h" /* SCSI Host (initiator) protocol support */
60#include "lsi/mpi_lan.h" /* LAN over FC protocol support */
61#include "lsi/mpi_raid.h" /* Integrated Mirroring support */
62
63#include "lsi/mpi_fc.h" /* Fibre Channel (lowlevel) support */
64#include "lsi/mpi_targ.h" /* SCSI/FCP Target protcol support */
65#include "lsi/mpi_tool.h" /* Tools support */
Christoph Hellwig82ffb6712005-09-09 16:25:54 +020066#include "lsi/mpi_sas.h" /* SAS support */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
69
70#ifndef MODULEAUTHOR
71#define MODULEAUTHOR "LSI Logic Corporation"
72#endif
73
74#ifndef COPYRIGHT
Eric Moore9f4203b2007-01-04 20:47:47 -070075#define COPYRIGHT "Copyright (c) 1999-2007 " MODULEAUTHOR
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#endif
77
Eric Moored0a6b082007-01-04 20:49:03 -070078#define MPT_LINUX_VERSION_COMMON "3.04.03"
79#define MPT_LINUX_PACKAGE_NAME "@(#)mptlinux-3.04.03"
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define WHAT_MAGIC_STRING "@" "(" "#" ")"
81
82#define show_mptmod_ver(s,ver) \
83 printk(KERN_INFO "%s %s\n", s, ver);
84
85/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
86/*
87 * Fusion MPT(linux) driver configurable stuff...
88 */
89#define MPT_MAX_ADAPTERS 18
90#define MPT_MAX_PROTOCOL_DRIVERS 16
91#define MPT_MAX_BUS 1 /* Do not change */
92#define MPT_MAX_FC_DEVICES 255
93#define MPT_MAX_SCSI_DEVICES 16
94#define MPT_LAST_LUN 255
95#define MPT_SENSE_BUFFER_ALLOC 64
96 /* allow for 256 max sense alloc, but only 255 max request */
97#if MPT_SENSE_BUFFER_ALLOC >= 256
98# undef MPT_SENSE_BUFFER_ALLOC
99# define MPT_SENSE_BUFFER_ALLOC 256
100# define MPT_SENSE_BUFFER_SIZE 255
101#else
102# define MPT_SENSE_BUFFER_SIZE MPT_SENSE_BUFFER_ALLOC
103#endif
104
105#define MPT_NAME_LENGTH 32
106
107#define MPT_PROCFS_MPTBASEDIR "mpt"
108 /* chg it to "driver/fusion" ? */
109#define MPT_PROCFS_SUMMARY_ALL_NODE MPT_PROCFS_MPTBASEDIR "/summary"
110#define MPT_PROCFS_SUMMARY_ALL_PATHNAME "/proc/" MPT_PROCFS_SUMMARY_ALL_NODE
111#define MPT_FW_REV_MAGIC_ID_STRING "FwRev="
112
113#define MPT_MAX_REQ_DEPTH 1023
114#define MPT_DEFAULT_REQ_DEPTH 256
115#define MPT_MIN_REQ_DEPTH 128
116
117#define MPT_MAX_REPLY_DEPTH MPT_MAX_REQ_DEPTH
118#define MPT_DEFAULT_REPLY_DEPTH 128
119#define MPT_MIN_REPLY_DEPTH 8
120#define MPT_MAX_REPLIES_PER_ISR 32
121
122#define MPT_MAX_FRAME_SIZE 128
123#define MPT_DEFAULT_FRAME_SIZE 128
124
Moore, Eric928496a2006-01-16 18:53:16 -0700125#define MPT_REPLY_FRAME_SIZE 0x50 /* Must be a multiple of 8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127#define MPT_SG_REQ_128_SCALE 1
128#define MPT_SG_REQ_96_SCALE 2
129#define MPT_SG_REQ_64_SCALE 4
130
131#define CAN_SLEEP 1
132#define NO_SLEEP 0
133
134#define MPT_COALESCING_TIMEOUT 0x10
135
136/*
137 * SCSI transfer rate defines.
138 */
139#define MPT_ULTRA320 0x08
140#define MPT_ULTRA160 0x09
141#define MPT_ULTRA2 0x0A
142#define MPT_ULTRA 0x0C
143#define MPT_FAST 0x19
144#define MPT_SCSI 0x32
145#define MPT_ASYNC 0xFF
146
147#define MPT_NARROW 0
148#define MPT_WIDE 1
149
150#define C0_1030 0x08
151#define XL_929 0x01
152
153
154/*
155 * Try to keep these at 2^N-1
156 */
157#define MPT_FC_CAN_QUEUE 127
158#define MPT_SCSI_CAN_QUEUE 127
159
160/*
161 * Set the MAX_SGE value based on user input.
162 */
163#ifdef CONFIG_FUSION_MAX_SGE
164#if CONFIG_FUSION_MAX_SGE < 16
165#define MPT_SCSI_SG_DEPTH 16
166#elif CONFIG_FUSION_MAX_SGE > 128
167#define MPT_SCSI_SG_DEPTH 128
168#else
169#define MPT_SCSI_SG_DEPTH CONFIG_FUSION_MAX_SGE
170#endif
171#else
172#define MPT_SCSI_SG_DEPTH 40
173#endif
174
Eric Moorec6c727a2007-01-29 09:44:54 -0700175/* debug print string length used for events and iocstatus */
176# define EVENT_DESCR_STR_SZ 100
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#ifdef __KERNEL__ /* { */
179/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
180
181#include <linux/proc_fs.h>
182
183/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
184/*
185 * Attempt semi-consistent error & warning msgs across
186 * MPT drivers. NOTE: Users of these macro defs must
187 * themselves define their own MYNAM.
188 */
189#define MYIOC_s_INFO_FMT KERN_INFO MYNAM ": %s: "
190#define MYIOC_s_NOTE_FMT KERN_NOTICE MYNAM ": %s: "
191#define MYIOC_s_WARN_FMT KERN_WARNING MYNAM ": %s: WARNING - "
192#define MYIOC_s_ERR_FMT KERN_ERR MYNAM ": %s: ERROR - "
193
194/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
195/*
196 * MPT protocol driver defs...
197 */
198typedef enum {
199 MPTBASE_DRIVER, /* MPT base class */
200 MPTCTL_DRIVER, /* MPT ioctl class */
Moore, Eric Dean 7fadc872005-04-22 18:01:16 -0400201 MPTSPI_DRIVER, /* MPT SPI host class */
202 MPTFC_DRIVER, /* MPT FC host class */
203 MPTSAS_DRIVER, /* MPT SAS host class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 MPTLAN_DRIVER, /* MPT LAN class */
205 MPTSTM_DRIVER, /* MPT SCSI target mode class */
206 MPTUNKNOWN_DRIVER
207} MPT_DRIVER_CLASS;
208
209struct mpt_pci_driver{
210 int (*probe) (struct pci_dev *dev, const struct pci_device_id *id);
211 void (*remove) (struct pci_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
214/*
215 * MPT adapter / port / bus / device info structures...
216 */
217
218typedef union _MPT_FRAME_TRACKER {
219 struct {
220 struct list_head list;
221 u32 arg1;
222 u32 pad;
223 void *argp1;
224 } linkage;
225 /*
226 * NOTE: When request frames are free, on the linkage structure
227 * contets are valid. All other values are invalid.
228 * In particular, do NOT reply on offset [2]
229 * (in words) being the * message context.
230 * The message context must be reset (computed via base address
231 * + an offset) prior to issuing any command.
232 *
233 * NOTE2: On non-32-bit systems, where pointers are LARGE,
234 * using the linkage pointers destroys our sacred MsgContext
235 * field contents. But we don't care anymore because these
236 * are now reset in mpt_put_msg_frame() just prior to sending
237 * a request off to the IOC.
238 */
239 struct {
240 u32 __hdr[2];
241 /*
242 * The following _MUST_ match the location of the
243 * MsgContext field in the MPT message headers.
244 */
245 union {
246 u32 MsgContext;
247 struct {
248 u16 req_idx; /* Request index */
249 u8 cb_idx; /* callback function index */
250 u8 rsvd;
251 } fld;
252 } msgctxu;
253 } hwhdr;
254 /*
255 * Remark: 32 bit identifier:
256 * 31-24: reserved
257 * 23-16: call back index
258 * 15-0 : request index
259 */
260} MPT_FRAME_TRACKER;
261
262/*
263 * We might want to view/access a frame as:
264 * 1) generic request header
265 * 2) SCSIIORequest
266 * 3) SCSIIOReply
267 * 4) MPIDefaultReply
268 * 5) frame tracker
269 */
270typedef struct _MPT_FRAME_HDR {
271 union {
272 MPIHeader_t hdr;
273 SCSIIORequest_t scsireq;
274 SCSIIOReply_t sreply;
275 ConfigReply_t configreply;
276 MPIDefaultReply_t reply;
277 MPT_FRAME_TRACKER frame;
278 } u;
279} MPT_FRAME_HDR;
280
281#define MPT_REQ_MSGFLAGS_DROPME 0x80
282
283typedef struct _MPT_SGL_HDR {
284 SGESimple32_t sge[1];
285} MPT_SGL_HDR;
286
287typedef struct _MPT_SGL64_HDR {
288 SGESimple64_t sge[1];
289} MPT_SGL64_HDR;
290
291/*
292 * System interface register set
293 */
294
295typedef struct _SYSIF_REGS
296{
297 u32 Doorbell; /* 00 System<->IOC Doorbell reg */
298 u32 WriteSequence; /* 04 Write Sequence register */
299 u32 Diagnostic; /* 08 Diagnostic register */
300 u32 TestBase; /* 0C Test Base Address */
301 u32 DiagRwData; /* 10 Read Write Data (fw download) */
302 u32 DiagRwAddress; /* 14 Read Write Address (fw download)*/
303 u32 Reserved1[6]; /* 18-2F reserved for future use */
304 u32 IntStatus; /* 30 Interrupt Status */
305 u32 IntMask; /* 34 Interrupt Mask */
306 u32 Reserved2[2]; /* 38-3F reserved for future use */
307 u32 RequestFifo; /* 40 Request Post/Free FIFO */
308 u32 ReplyFifo; /* 44 Reply Post/Free FIFO */
309 u32 Reserved3[2]; /* 48-4F reserved for future use */
310 u32 HostIndex; /* 50 Host Index register */
311 u32 Reserved4[15]; /* 54-8F */
312 u32 Fubar; /* 90 For Fubar usage */
Eric Moore3dc0b032006-07-11 17:32:33 -0600313 u32 Reserved5[1050];/* 94-10F8 */
314 u32 Reset_1078; /* 10FC Reset 1078 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315} SYSIF_REGS;
316
317/*
318 * NOTE: Use MPI_{DOORBELL,WRITESEQ,DIAG}_xxx defs in lsi/mpi.h
319 * in conjunction with SYSIF_REGS accesses!
320 */
321
322
323/*
324 * Dynamic Multi-Pathing specific stuff...
325 */
326
Moore, Eric Deanc7c82982005-11-16 18:54:25 -0700327/* VirtTarget negoFlags field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#define MPT_TARGET_NO_NEGO_WIDE 0x01
329#define MPT_TARGET_NO_NEGO_SYNC 0x02
330#define MPT_TARGET_NO_NEGO_QAS 0x04
331#define MPT_TAPE_NEGO_IDP 0x08
332
333/*
334 * VirtDevice - FC LUN device or SCSI target device
335 */
Moore, Eric Deanc7c82982005-11-16 18:54:25 -0700336typedef struct _VirtTarget {
James Bottomleyc92f2222006-03-01 09:02:49 -0600337 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 u8 tflags;
339 u8 ioc_id;
Eric Moore793955f2007-01-29 09:42:20 -0700340 u8 id;
341 u8 channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 u8 minSyncFactor; /* 0xFF is async */
343 u8 maxOffset; /* 0 if async */
344 u8 maxWidth; /* 0 if narrow, 1 if wide */
345 u8 negoFlags; /* bit field, see above */
346 u8 raidVolume; /* set, if RAID Volume */
347 u8 type; /* byte 0 of Inquiry data */
Eric Moore547f9a22006-06-27 14:42:12 -0600348 u8 deleted; /* target in process of being removed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 u32 num_luns;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -0700350} VirtTarget;
351
352typedef struct _VirtDevice {
Moore, Eric914c2d82006-03-14 09:19:36 -0700353 VirtTarget *vtarget;
Moore, Eric Deanc7c82982005-11-16 18:54:25 -0700354 u8 configured_lun;
Eric Moore793955f2007-01-29 09:42:20 -0700355 int lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356} VirtDevice;
357
358/*
359 * Fibre Channel (SCSI) target device and associated defines...
360 */
361#define MPT_TARGET_DEFAULT_DV_STATUS 0x00
362#define MPT_TARGET_FLAGS_VALID_NEGO 0x01
363#define MPT_TARGET_FLAGS_VALID_INQUIRY 0x02
364#define MPT_TARGET_FLAGS_Q_YES 0x08
365#define MPT_TARGET_FLAGS_VALID_56 0x10
366#define MPT_TARGET_FLAGS_SAF_TE_ISSUED 0x20
James Bottomleyc92f2222006-03-01 09:02:49 -0600367#define MPT_TARGET_FLAGS_RAID_COMPONENT 0x40
Eric Moore786899b2006-07-11 17:22:22 -0600368#define MPT_TARGET_FLAGS_LED_ON 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370/*
371 * /proc/mpt interface
372 */
373typedef struct {
374 const char *name;
375 mode_t mode;
376 int pad;
377 read_proc_t *read_proc;
378 write_proc_t *write_proc;
379} mpt_proc_entry_t;
380
381#define MPT_PROC_READ_RETURN(buf,start,offset,request,eof,len) \
382do { \
383 len -= offset; \
384 if (len < request) { \
385 *eof = 1; \
386 if (len <= 0) \
387 return 0; \
388 } else \
389 len = request; \
390 *start = buf + offset; \
391 return len; \
392} while (0)
393
394
395/*
396 * IOCTL structure and associated defines
397 */
398
399#define MPT_IOCTL_STATUS_DID_IOCRESET 0x01 /* IOC Reset occurred on the current*/
400#define MPT_IOCTL_STATUS_RF_VALID 0x02 /* The Reply Frame is VALID */
401#define MPT_IOCTL_STATUS_TIMER_ACTIVE 0x04 /* The timer is running */
402#define MPT_IOCTL_STATUS_SENSE_VALID 0x08 /* Sense data is valid */
403#define MPT_IOCTL_STATUS_COMMAND_GOOD 0x10 /* Command Status GOOD */
404#define MPT_IOCTL_STATUS_TMTIMER_ACTIVE 0x20 /* The TM timer is running */
405#define MPT_IOCTL_STATUS_TM_FAILED 0x40 /* User TM request failed */
406
407#define MPTCTL_RESET_OK 0x01 /* Issue Bus Reset */
408
409typedef struct _MPT_IOCTL {
410 struct _MPT_ADAPTER *ioc;
411 u8 ReplyFrame[MPT_DEFAULT_FRAME_SIZE]; /* reply frame data */
412 u8 sense[MPT_SENSE_BUFFER_ALLOC];
413 int wait_done; /* wake-up value for this ioc */
414 u8 rsvd;
415 u8 status; /* current command status */
416 u8 reset; /* 1 if bus reset allowed */
Eric Moore793955f2007-01-29 09:42:20 -0700417 u8 id; /* target for reset */
Christoph Hellwigeeb846c2006-01-13 18:27:11 +0100418 struct mutex ioctl_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419} MPT_IOCTL;
420
Christoph Hellwigda4fa652005-10-19 20:01:42 +0200421#define MPT_SAS_MGMT_STATUS_RF_VALID 0x02 /* The Reply Frame is VALID */
422#define MPT_SAS_MGMT_STATUS_COMMAND_GOOD 0x10 /* Command Status GOOD */
423#define MPT_SAS_MGMT_STATUS_TM_FAILED 0x40 /* User TM request failed */
424
425typedef struct _MPT_SAS_MGMT {
Christoph Hellwigeeb846c2006-01-13 18:27:11 +0100426 struct mutex mutex;
Christoph Hellwigda4fa652005-10-19 20:01:42 +0200427 struct completion done;
428 u8 reply[MPT_DEFAULT_FRAME_SIZE]; /* reply frame data */
429 u8 status; /* current command status */
430}MPT_SAS_MGMT;
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/*
433 * Event Structure and define
434 */
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600435#define MPTCTL_EVENT_LOG_SIZE (0x000000032)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436typedef struct _mpt_ioctl_events {
437 u32 event; /* Specified by define above */
438 u32 eventContext; /* Index or counter */
439 int data[2]; /* First 8 bytes of Event Data */
440} MPT_IOCTL_EVENTS;
441
442/*
443 * CONFIGPARM status defines
444 */
445#define MPT_CONFIG_GOOD MPI_IOCSTATUS_SUCCESS
446#define MPT_CONFIG_ERROR 0x002F
447
448/*
449 * Substructure to store SCSI specific configuration page data
450 */
451 /* dvStatus defines: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#define MPT_SCSICFG_USE_NVRAM 0x01 /* WriteSDP1 using NVRAM */
453#define MPT_SCSICFG_ALL_IDS 0x02 /* WriteSDP1 to all IDS */
454/* #define MPT_SCSICFG_BLK_NEGO 0x10 WriteSDP1 with WDTR and SDTR disabled */
455
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600456typedef struct _SpiCfgData {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 u32 PortFlags;
458 int *nvram; /* table of device NVRAM values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 IOCPage4_t *pIocPg4; /* SEP devices addressing */
460 dma_addr_t IocPg4_dma; /* Phys Addr of IOCPage4 data */
461 int IocPg4Sz; /* IOCPage4 size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 u8 minSyncFactor; /* 0xFF if async */
463 u8 maxSyncOffset; /* 0 if async */
464 u8 maxBusWidth; /* 0 if narrow, 1 if wide */
465 u8 busType; /* SE, LVD, HD */
466 u8 sdp1version; /* SDP1 version */
467 u8 sdp1length; /* SDP1 length */
468 u8 sdp0version; /* SDP0 version */
469 u8 sdp0length; /* SDP0 length */
470 u8 dvScheduled; /* 1 if scheduled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 u8 noQas; /* Disable QAS for this adapter */
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600472 u8 Saf_Te; /* 1 to force all Processors as
473 * SAF-TE if Inquiry data length
474 * is too short to check for SAF-TE
475 */
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600476 u8 bus_reset; /* 1 to allow bus reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 u8 rsvd[1];
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600478}SpiCfgData;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200480typedef struct _SasCfgData {
481 u8 ptClear; /* 1 to automatically clear the
482 * persistent table.
483 * 0 to disable
484 * automatic clearing.
485 */
486}SasCfgData;
487
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600488typedef struct _RaidCfgData {
489 IOCPage2_t *pIocPg2; /* table of Raid Volumes */
490 IOCPage3_t *pIocPg3; /* table of physical disks */
491 int isRaid; /* bit field, 1 if RAID */
492}RaidCfgData;
493
Michael Reedca2f9382006-05-24 15:07:24 -0500494typedef struct _FcCfgData {
495 /* will ultimately hold fc_port_page0 also */
496 struct {
497 FCPortPage1_t *data;
498 dma_addr_t dma;
499 int pg_sz;
500 } fc_port_page1[2];
501} FcCfgData;
502
Michael Reed05e8ec12006-01-13 14:31:54 -0600503#define MPT_RPORT_INFO_FLAGS_REGISTERED 0x01 /* rport registered */
504#define MPT_RPORT_INFO_FLAGS_MISSING 0x02 /* missing from DevPage0 scan */
Michael Reed05e8ec12006-01-13 14:31:54 -0600505
506/*
507 * data allocated for each fc rport device
508 */
509struct mptfc_rport_info
510{
511 struct list_head list;
512 struct fc_rport *rport;
Michael Reed3bc7bf12006-01-25 18:05:18 -0700513 struct scsi_target *starget;
Michael Reed05e8ec12006-01-13 14:31:54 -0600514 FCDevicePage0_t pg0;
515 u8 flags;
516};
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/*
519 * Adapter Structure - pci_dev specific. Maximum: MPT_MAX_ADAPTERS
520 */
521typedef struct _MPT_ADAPTER
522{
523 int id; /* Unique adapter id N {0,1,2,...} */
524 int pci_irq; /* This irq */
525 char name[MPT_NAME_LENGTH]; /* "iocN" */
526 char *prod_name; /* "LSIFC9x9" */
527 SYSIF_REGS __iomem *chip; /* == c8817000 (mmap) */
528 SYSIF_REGS __iomem *pio_chip; /* Programmed IO (downloadboot) */
529 u8 bus_type;
530 u32 mem_phys; /* == f4020000 (mmap) */
531 u32 pio_mem_phys; /* Programmed IO (downloadboot) */
532 int mem_size; /* mmap memory size */
Eric Moore793955f2007-01-29 09:42:20 -0700533 int number_of_buses;
534 int devices_per_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int alloc_total;
536 u32 last_state;
537 int active;
538 u8 *alloc; /* frames alloc ptr */
539 dma_addr_t alloc_dma;
540 u32 alloc_sz;
541 MPT_FRAME_HDR *reply_frames; /* Reply msg frames - rounded up! */
542 u32 reply_frames_low_dma;
543 int reply_depth; /* Num Allocated reply frames */
544 int reply_sz; /* Reply frame size */
545 int num_chain; /* Number of chain buffers */
546 /* Pool of buffers for chaining. ReqToChain
547 * and ChainToChain track index of chain buffers.
548 * ChainBuffer (DMA) virt/phys addresses.
549 * FreeChainQ (lock) locking mechanisms.
550 */
551 int *ReqToChain;
552 int *RequestNB;
553 int *ChainToChain;
554 u8 *ChainBuffer;
555 dma_addr_t ChainBufferDMA;
556 struct list_head FreeChainQ;
557 spinlock_t FreeChainQlock;
558 /* We (host driver) get to manage our own RequestQueue! */
559 dma_addr_t req_frames_dma;
560 MPT_FRAME_HDR *req_frames; /* Request msg frames - rounded up! */
561 u32 req_frames_low_dma;
562 int req_depth; /* Number of request frames */
563 int req_sz; /* Request frame size (bytes) */
564 spinlock_t FreeQlock;
565 struct list_head FreeQ;
566 /* Pool of SCSI sense buffers for commands coming from
567 * the SCSI mid-layer. We have one 256 byte sense buffer
568 * for each REQ entry.
569 */
570 u8 *sense_buf_pool;
571 dma_addr_t sense_buf_pool_dma;
572 u32 sense_buf_low_dma;
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200573 u8 *HostPageBuffer; /* SAS - host page buffer support */
574 u32 HostPageBuffer_sz;
575 dma_addr_t HostPageBuffer_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int mtrr_reg;
577 struct pci_dev *pcidev; /* struct pci_dev pointer */
578 u8 __iomem *memmap; /* mmap address */
579 struct Scsi_Host *sh; /* Scsi Host pointer */
Moore, Eric Dean466544d2005-09-14 18:09:10 -0600580 SpiCfgData spi_data; /* Scsi config. data */
581 RaidCfgData raid_data; /* Raid config. data */
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200582 SasCfgData sas_data; /* Sas config. data */
Michael Reedca2f9382006-05-24 15:07:24 -0500583 FcCfgData fc_data; /* Fc config. data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 MPT_IOCTL *ioctl; /* ioctl data pointer */
585 struct proc_dir_entry *ioc_dentry;
586 struct _MPT_ADAPTER *alt_ioc; /* ptr to 929 bound adapter port */
587 spinlock_t diagLock; /* diagnostic reset lock */
588 int diagPending;
589 u32 biosVersion; /* BIOS version from IO Unit Page 2 */
590 int eventTypes; /* Event logging parameters */
591 int eventContext; /* Next event context */
592 int eventLogSize; /* Max number of cached events */
593 struct _mpt_ioctl_events *events; /* pointer to event log */
594 u8 *cached_fw; /* Pointer to FW */
595 dma_addr_t cached_fw_dma;
596 struct list_head configQ; /* linked list of config. requests */
597 int hs_reply_idx;
598#ifndef MFCNT
599 u32 pad0;
600#else
601 u32 mfcnt;
602#endif
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200603 u32 NB_for_64_byte_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 u32 hs_req[MPT_MAX_FRAME_SIZE/sizeof(u32)];
605 u16 hs_reply[MPT_MAX_FRAME_SIZE/sizeof(u16)];
606 IOCFactsReply_t facts;
607 PortFactsReply_t pfacts[2];
608 FCPortPage0_t fc_port_page0[2];
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200609 struct timer_list persist_timer; /* persist table timer */
610 int persist_wait_done; /* persist completion flag */
611 u8 persist_reply_frame[MPT_DEFAULT_FRAME_SIZE]; /* persist reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 LANPage0_t lan_cnfg_page0;
613 LANPage1_t lan_cnfg_page1;
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200614 /*
Moore, Eric Dean 3fadc592005-05-11 17:46:52 -0600615 * Description: errata_flag_1064
616 * If a PCIX read occurs within 1 or 2 cycles after the chip receives
617 * a split completion for a read data, an internal address pointer incorrectly
618 * increments by 32 bytes
619 */
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200620 int errata_flag_1064;
Moore, Ericea5a7a82006-02-02 17:20:01 -0700621 int aen_event_read_flag; /* flag to indicate event log was read*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 u8 FirstWhoInit;
623 u8 upload_fw; /* If set, do a fw upload */
624 u8 reload_fw; /* Force a FW Reload on next reset */
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200625 u8 NBShiftFactor; /* NB Shift Factor based on Block Size (Facts) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 u8 pad1[4];
Moore, Eric Dean 7fadc872005-04-22 18:01:16 -0400627 int DoneCtx;
628 int TaskCtx;
629 int InternalCtx;
Moore, Eric Dean2a238ea2005-12-01 10:50:32 -0700630 spinlock_t initializing_hba_lock;
631 int initializing_hba_lock_flag;
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200632 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct net_device *netdev;
Christoph Hellwig82ffb6712005-09-09 16:25:54 +0200634 struct list_head sas_topology;
Christoph Hellwig9a28f492006-01-13 18:04:41 +0100635 struct mutex sas_topology_mutex;
Moore, Erice6b2d762006-03-14 09:14:24 -0700636 struct mutex sas_discovery_mutex;
637 u8 sas_discovery_runtime;
638 u8 sas_discovery_ignore_events;
James Bottomley2686de22006-06-30 12:54:02 -0500639 u16 handle;
Moore, Erice6b2d762006-03-14 09:14:24 -0700640 int sas_index; /* index refrencing */
Christoph Hellwigda4fa652005-10-19 20:01:42 +0200641 MPT_SAS_MGMT sas_mgmt;
Eric Moore547f9a22006-06-27 14:42:12 -0600642 struct work_struct sas_persist_task;
Michael Reed05e8ec12006-01-13 14:31:54 -0600643
Michael Reed419835e2006-05-24 15:07:40 -0500644 struct work_struct fc_setup_reset_work;
Michael Reed05e8ec12006-01-13 14:31:54 -0600645 struct list_head fc_rports;
Michael Reed05e8ec12006-01-13 14:31:54 -0600646 spinlock_t fc_rescan_work_lock;
Michael Reed05e8ec12006-01-13 14:31:54 -0600647 struct work_struct fc_rescan_work;
Moore, Eric65207fe2006-04-21 16:14:35 -0600648 char fc_rescan_work_q_name[KOBJ_NAME_LEN];
649 struct workqueue_struct *fc_rescan_work_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650} MPT_ADAPTER;
651
652/*
653 * New return value convention:
654 * 1 = Ok to free associated request frame
655 * 0 = not Ok ...
656 */
657typedef int (*MPT_CALLBACK)(MPT_ADAPTER *ioc, MPT_FRAME_HDR *req, MPT_FRAME_HDR *reply);
658typedef int (*MPT_EVHANDLER)(MPT_ADAPTER *ioc, EventNotificationReply_t *evReply);
659typedef int (*MPT_RESETHANDLER)(MPT_ADAPTER *ioc, int reset_phase);
660/* reset_phase defs */
661#define MPT_IOC_PRE_RESET 0
662#define MPT_IOC_POST_RESET 1
663#define MPT_IOC_SETUP_RESET 2
664
665/*
666 * Invent MPT host event (super-set of MPI Events)
667 * Fitted to 1030's 64-byte [max] request frame size
668 */
669typedef struct _MPT_HOST_EVENT {
670 EventNotificationReply_t MpiEvent; /* 8 32-bit words! */
671 u32 pad[6];
672 void *next;
673} MPT_HOST_EVENT;
674
675#define MPT_HOSTEVENT_IOC_BRINGUP 0x91
676#define MPT_HOSTEVENT_IOC_RECOVER 0x92
677
678/* Define the generic types based on the size
679 * of the dma_addr_t type.
680 */
681typedef struct _mpt_sge {
682 u32 FlagsLength;
683 dma_addr_t Address;
684} MptSge_t;
685
686#define mpt_addr_size() \
687 ((sizeof(dma_addr_t) == sizeof(u64)) ? MPI_SGE_FLAGS_64_BIT_ADDRESSING : \
688 MPI_SGE_FLAGS_32_BIT_ADDRESSING)
689
690#define mpt_msg_flags() \
691 ((sizeof(dma_addr_t) == sizeof(u64)) ? MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_64 : \
692 MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_32)
693
694/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
695/*
696 * Funky (private) macros...
697 */
698#ifdef MPT_DEBUG
699#define dprintk(x) printk x
700#else
701#define dprintk(x)
702#endif
703
704#ifdef MPT_DEBUG_INIT
705#define dinitprintk(x) printk x
706#define DBG_DUMP_FW_REQUEST_FRAME(mfp) \
707 { int i, n = 10; \
708 u32 *m = (u32 *)(mfp); \
709 printk(KERN_INFO " "); \
710 for (i=0; i<n; i++) \
711 printk(" %08x", le32_to_cpu(m[i])); \
712 printk("\n"); \
713 }
714#else
715#define dinitprintk(x)
716#define DBG_DUMP_FW_REQUEST_FRAME(mfp)
717#endif
718
719#ifdef MPT_DEBUG_EXIT
720#define dexitprintk(x) printk x
721#else
722#define dexitprintk(x)
723#endif
724
725#if defined MPT_DEBUG_FAIL || defined (MPT_DEBUG_SG)
726#define dfailprintk(x) printk x
727#else
728#define dfailprintk(x)
729#endif
730
731#ifdef MPT_DEBUG_HANDSHAKE
732#define dhsprintk(x) printk x
733#else
734#define dhsprintk(x)
735#endif
736
Moore, Eric3a892be2006-03-14 09:14:03 -0700737#if defined(MPT_DEBUG_EVENTS) || defined(MPT_DEBUG_VERBOSE_EVENTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#define devtprintk(x) printk x
739#else
740#define devtprintk(x)
741#endif
742
Moore, Eric3a892be2006-03-14 09:14:03 -0700743#ifdef MPT_DEBUG_VERBOSE_EVENTS
744#define devtverboseprintk(x) printk x
745#else
746#define devtverboseprintk(x)
747#endif
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749#ifdef MPT_DEBUG_RESET
750#define drsprintk(x) printk x
751#else
752#define drsprintk(x)
753#endif
754
755//#if defined(MPT_DEBUG) || defined(MPT_DEBUG_MSG_FRAME)
756#if defined(MPT_DEBUG_MSG_FRAME)
757#define dmfprintk(x) printk x
758#define DBG_DUMP_REQUEST_FRAME(mfp) \
759 { int i, n = 24; \
760 u32 *m = (u32 *)(mfp); \
761 for (i=0; i<n; i++) { \
762 if (i && ((i%8)==0)) \
763 printk("\n"); \
764 printk("%08x ", le32_to_cpu(m[i])); \
765 } \
766 printk("\n"); \
767 }
768#else
769#define dmfprintk(x)
770#define DBG_DUMP_REQUEST_FRAME(mfp)
771#endif
772
773#ifdef MPT_DEBUG_IRQ
774#define dirqprintk(x) printk x
775#else
776#define dirqprintk(x)
777#endif
778
779#ifdef MPT_DEBUG_SG
780#define dsgprintk(x) printk x
781#else
782#define dsgprintk(x)
783#endif
784
785#if defined(MPT_DEBUG_DL) || defined(MPT_DEBUG)
786#define ddlprintk(x) printk x
787#else
788#define ddlprintk(x)
789#endif
790
791#ifdef MPT_DEBUG_DV
792#define ddvprintk(x) printk x
793#else
794#define ddvprintk(x)
795#endif
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797#if defined(MPT_DEBUG_DV) || defined(MPT_DEBUG_DV_TINY)
798#define ddvtprintk(x) printk x
799#else
800#define ddvtprintk(x)
801#endif
802
803#ifdef MPT_DEBUG_IOCTL
804#define dctlprintk(x) printk x
805#else
806#define dctlprintk(x)
807#endif
808
809#ifdef MPT_DEBUG_REPLY
810#define dreplyprintk(x) printk x
811#else
812#define dreplyprintk(x)
813#endif
814
Michael Reed3bc7bf12006-01-25 18:05:18 -0700815#ifdef DMPT_DEBUG_FC
816#define dfcprintk(x) printk x
817#else
818#define dfcprintk(x)
819#endif
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#ifdef MPT_DEBUG_TM
822#define dtmprintk(x) printk x
823#define DBG_DUMP_TM_REQUEST_FRAME(mfp) \
824 { u32 *m = (u32 *)(mfp); \
825 int i, n = 13; \
826 printk("TM_REQUEST:\n"); \
827 for (i=0; i<n; i++) { \
828 if (i && ((i%8)==0)) \
829 printk("\n"); \
830 printk("%08x ", le32_to_cpu(m[i])); \
831 } \
832 printk("\n"); \
833 }
834#define DBG_DUMP_TM_REPLY_FRAME(mfp) \
835 { u32 *m = (u32 *)(mfp); \
836 int i, n = (le32_to_cpu(m[0]) & 0x00FF0000) >> 16; \
837 printk("TM_REPLY MessageLength=%d:\n", n); \
838 for (i=0; i<n; i++) { \
839 if (i && ((i%8)==0)) \
840 printk("\n"); \
841 printk(" %08x", le32_to_cpu(m[i])); \
842 } \
843 printk("\n"); \
844 }
845#else
846#define dtmprintk(x)
847#define DBG_DUMP_TM_REQUEST_FRAME(mfp)
848#define DBG_DUMP_TM_REPLY_FRAME(mfp)
849#endif
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851#if defined(MPT_DEBUG_CONFIG) || defined(MPT_DEBUG)
852#define dcprintk(x) printk x
853#else
854#define dcprintk(x)
855#endif
856
857#if defined(MPT_DEBUG_SCSI) || defined(MPT_DEBUG) || defined(MPT_DEBUG_MSG_FRAME)
858#define dsprintk(x) printk x
859#else
860#define dsprintk(x)
861#endif
862
863
864#define MPT_INDEX_2_MFPTR(ioc,idx) \
865 (MPT_FRAME_HDR*)( (u8*)(ioc)->req_frames + (ioc)->req_sz * (idx) )
866
867#define MFPTR_2_MPT_INDEX(ioc,mf) \
868 (int)( ((u8*)mf - (u8*)(ioc)->req_frames) / (ioc)->req_sz )
869
870#define MPT_INDEX_2_RFPTR(ioc,idx) \
871 (MPT_FRAME_HDR*)( (u8*)(ioc)->reply_frames + (ioc)->req_sz * (idx) )
872
873#if defined(MPT_DEBUG) || defined(MPT_DEBUG_MSG_FRAME)
874#define DBG_DUMP_REPLY_FRAME(mfp) \
875 { u32 *m = (u32 *)(mfp); \
876 int i, n = (le32_to_cpu(m[0]) & 0x00FF0000) >> 16; \
877 printk(KERN_INFO " "); \
878 for (i=0; i<n; i++) \
879 printk(" %08x", le32_to_cpu(m[i])); \
880 printk("\n"); \
881 }
882#define DBG_DUMP_REQUEST_FRAME_HDR(mfp) \
883 { int i, n = 3; \
884 u32 *m = (u32 *)(mfp); \
885 printk(KERN_INFO " "); \
886 for (i=0; i<n; i++) \
887 printk(" %08x", le32_to_cpu(m[i])); \
888 printk("\n"); \
889 }
890#else
891#define DBG_DUMP_REPLY_FRAME(mfp)
892#define DBG_DUMP_REQUEST_FRAME_HDR(mfp)
893#endif
894
Eric Moore547f9a22006-06-27 14:42:12 -0600895// debug sas wide ports
896#ifdef MPT_DEBUG_SAS_WIDE
897#define dsaswideprintk(x) printk x
898#else
899#define dsaswideprintk(x)
900#endif
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
904
905#define SCSI_STD_SENSE_BYTES 18
906#define SCSI_STD_INQUIRY_BYTES 36
907#define SCSI_MAX_INQUIRY_BYTES 96
908
909/*
910 * MPT_SCSI_HOST defines - Used by the IOCTL and the SCSI drivers
911 * Private to the driver.
912 */
913/* LOCAL structure and fields used when processing
914 * internally generated commands. These include:
915 * bus scan, dv and config requests.
916 */
917typedef struct _MPT_LOCAL_REPLY {
918 ConfigPageHeader_t header;
919 int completion;
920 u8 sense[SCSI_STD_SENSE_BYTES];
921 u8 scsiStatus;
922 u8 skip;
923 u32 pad;
924} MPT_LOCAL_REPLY;
925
926#define MPT_HOST_BUS_UNKNOWN (0xFF)
927#define MPT_HOST_TOO_MANY_TM (0x05)
928#define MPT_HOST_NVRAM_INVALID (0xFFFFFFFF)
929#define MPT_HOST_NO_CHAIN (0xFFFFFFFF)
930#define MPT_NVRAM_MASK_TIMEOUT (0x000000FF)
931#define MPT_NVRAM_SYNC_MASK (0x0000FF00)
932#define MPT_NVRAM_SYNC_SHIFT (8)
933#define MPT_NVRAM_DISCONNECT_ENABLE (0x00010000)
934#define MPT_NVRAM_ID_SCAN_ENABLE (0x00020000)
935#define MPT_NVRAM_LUN_SCAN_ENABLE (0x00040000)
936#define MPT_NVRAM_TAG_QUEUE_ENABLE (0x00080000)
937#define MPT_NVRAM_WIDE_DISABLE (0x00100000)
938#define MPT_NVRAM_BOOT_CHOICE (0x00200000)
939
940/* The TM_STATE variable is used to provide strict single threading of TM
941 * requests as well as communicate TM error conditions.
942 */
943#define TM_STATE_NONE (0)
944#define TM_STATE_IN_PROGRESS (1)
945#define TM_STATE_ERROR (2)
946
947typedef enum {
948 FC,
Moore, Eric Deana9b29372005-11-16 18:54:20 -0700949 SPI,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 SAS
951} BUS_TYPE;
952
953typedef struct _MPT_SCSI_HOST {
954 MPT_ADAPTER *ioc;
955 int port;
956 u32 pad0;
957 struct scsi_cmnd **ScsiLookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 MPT_LOCAL_REPLY *pLocal; /* used for internal commands */
959 struct timer_list timer;
960 /* Pool of memory for holding SCpnts before doing
961 * OS callbacks. freeQ is the free pool.
962 */
963 u8 tmPending;
964 u8 resetPending;
965 u8 negoNvram; /* DV disabled, nego NVRAM */
966 u8 pad1;
967 u8 tmState;
968 u8 rsvd[2];
969 MPT_FRAME_HDR *cmdPtr; /* Ptr to nonOS request */
970 struct scsi_cmnd *abortSCpnt;
971 MPT_LOCAL_REPLY localReply; /* internal cmd reply struct */
972 unsigned long hard_resets; /* driver forced bus resets count */
973 unsigned long soft_resets; /* fw/external bus resets count */
974 unsigned long timeouts; /* cmd timeouts */
975 ushort sel_timeout[MPT_MAX_FC_DEVICES];
Moore, Eric Dean 7fadc872005-04-22 18:01:16 -0400976 char *info_kbuf;
977 wait_queue_head_t scandv_waitq;
978 int scandv_wait_done;
979 long last_queue_full;
Eric Moore3dc0b032006-07-11 17:32:33 -0600980 u16 tm_iocstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981} MPT_SCSI_HOST;
982
983/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
984/*
985 * More Dynamic Multi-Pathing stuff...
986 */
987
988/* Forward decl, a strange C thing, to prevent gcc compiler warnings */
989struct scsi_cmnd;
990
991/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
992/*
993 * Generic structure passed to the base mpt_config function.
994 */
995typedef struct _x_config_parms {
996 struct list_head linkage; /* linked list */
997 struct timer_list timer; /* timer function for this request */
Christoph Hellwig69218ee2005-08-18 16:26:15 +0200998 union {
999 ConfigExtendedPageHeader_t *ehdr;
1000 ConfigPageHeader_t *hdr;
1001 } cfghdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 dma_addr_t physAddr;
1003 int wait_done; /* wait for this request */
1004 u32 pageAddr; /* properly formatted */
1005 u8 action;
1006 u8 dir;
1007 u8 timeout; /* seconds */
1008 u8 pad1;
1009 u16 status;
1010 u16 pad2;
1011} CONFIGPARMS;
1012
1013/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1014/*
1015 * Public entry points...
1016 */
Moore, Eric Dean 7fadc872005-04-22 18:01:16 -04001017extern int mpt_attach(struct pci_dev *pdev, const struct pci_device_id *id);
1018extern void mpt_detach(struct pci_dev *pdev);
1019#ifdef CONFIG_PM
1020extern int mpt_suspend(struct pci_dev *pdev, pm_message_t state);
1021extern int mpt_resume(struct pci_dev *pdev);
1022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023extern int mpt_register(MPT_CALLBACK cbfunc, MPT_DRIVER_CLASS dclass);
1024extern void mpt_deregister(int cb_idx);
1025extern int mpt_event_register(int cb_idx, MPT_EVHANDLER ev_cbfunc);
1026extern void mpt_event_deregister(int cb_idx);
1027extern int mpt_reset_register(int cb_idx, MPT_RESETHANDLER reset_func);
1028extern void mpt_reset_deregister(int cb_idx);
1029extern int mpt_device_driver_register(struct mpt_pci_driver * dd_cbfunc, int cb_idx);
1030extern void mpt_device_driver_deregister(int cb_idx);
1031extern MPT_FRAME_HDR *mpt_get_msg_frame(int handle, MPT_ADAPTER *ioc);
1032extern void mpt_free_msg_frame(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf);
1033extern void mpt_put_msg_frame(int handle, MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf);
1034extern void mpt_add_sge(char *pAddr, u32 flagslength, dma_addr_t dma_addr);
1035
1036extern int mpt_send_handshake_request(int handle, MPT_ADAPTER *ioc, int reqBytes, u32 *req, int sleepFlag);
1037extern int mpt_verify_adapter(int iocid, MPT_ADAPTER **iocpp);
1038extern u32 mpt_GetIocState(MPT_ADAPTER *ioc, int cooked);
1039extern void mpt_print_ioc_summary(MPT_ADAPTER *ioc, char *buf, int *size, int len, int showlan);
1040extern int mpt_HardResetHandler(MPT_ADAPTER *ioc, int sleepFlag);
1041extern int mpt_config(MPT_ADAPTER *ioc, CONFIGPARMS *cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042extern void mpt_alloc_fw_memory(MPT_ADAPTER *ioc, int size);
1043extern void mpt_free_fw_memory(MPT_ADAPTER *ioc);
1044extern int mpt_findImVolumes(MPT_ADAPTER *ioc);
Christoph Hellwig82ffb6712005-09-09 16:25:54 +02001045extern int mptbase_sas_persist_operation(MPT_ADAPTER *ioc, u8 persist_opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047/*
1048 * Public data decl's...
1049 */
1050extern struct list_head ioc_list;
Linus Torvaldsf7473072005-11-29 14:21:57 -08001051extern struct proc_dir_entry *mpt_proc_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053extern int mpt_lan_index; /* needed by mptlan.c */
Linus Torvaldsf7473072005-11-29 14:21:57 -08001054extern int mpt_stm_index; /* needed by mptstm.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1057#endif /* } __KERNEL__ */
1058
Eric Mooref99be432007-01-04 20:46:54 -07001059#if defined(__alpha__) || defined(__sparc_v9__) || defined(__ia64__) || defined(__x86_64__) || defined(__powerpc__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#define CAST_U32_TO_PTR(x) ((void *)(u64)x)
1061#define CAST_PTR_TO_U32(x) ((u32)(u64)x)
1062#else
1063#define CAST_U32_TO_PTR(x) ((void *)x)
1064#define CAST_PTR_TO_U32(x) ((u32)x)
1065#endif
1066
1067#define MPT_PROTOCOL_FLAGS_c_c_c_c(pflags) \
1068 ((pflags) & MPI_PORTFACTS_PROTOCOL_INITIATOR) ? 'I' : 'i', \
1069 ((pflags) & MPI_PORTFACTS_PROTOCOL_TARGET) ? 'T' : 't', \
1070 ((pflags) & MPI_PORTFACTS_PROTOCOL_LAN) ? 'L' : 'l', \
1071 ((pflags) & MPI_PORTFACTS_PROTOCOL_LOGBUSADDR) ? 'B' : 'b'
1072
1073/*
1074 * Shifted SGE Defines - Use in SGE with FlagsLength member.
1075 * Otherwise, use MPI_xxx defines (refer to "lsi/mpi.h" header).
1076 * Defaults: 32 bit SGE, SYSTEM_ADDRESS if direction bit is 0, read
1077 */
1078#define MPT_TRANSFER_IOC_TO_HOST (0x00000000)
1079#define MPT_TRANSFER_HOST_TO_IOC (0x04000000)
1080#define MPT_SGE_FLAGS_LAST_ELEMENT (0x80000000)
1081#define MPT_SGE_FLAGS_END_OF_BUFFER (0x40000000)
1082#define MPT_SGE_FLAGS_LOCAL_ADDRESS (0x08000000)
1083#define MPT_SGE_FLAGS_DIRECTION (0x04000000)
1084#define MPT_SGE_FLAGS_ADDRESSING (mpt_addr_size() << MPI_SGE_FLAGS_SHIFT)
1085#define MPT_SGE_FLAGS_END_OF_LIST (0x01000000)
1086
1087#define MPT_SGE_FLAGS_TRANSACTION_ELEMENT (0x00000000)
1088#define MPT_SGE_FLAGS_SIMPLE_ELEMENT (0x10000000)
1089#define MPT_SGE_FLAGS_CHAIN_ELEMENT (0x30000000)
1090#define MPT_SGE_FLAGS_ELEMENT_MASK (0x30000000)
1091
1092#define MPT_SGE_FLAGS_SSIMPLE_READ \
1093 (MPT_SGE_FLAGS_LAST_ELEMENT | \
1094 MPT_SGE_FLAGS_END_OF_BUFFER | \
1095 MPT_SGE_FLAGS_END_OF_LIST | \
1096 MPT_SGE_FLAGS_SIMPLE_ELEMENT | \
1097 MPT_SGE_FLAGS_ADDRESSING | \
1098 MPT_TRANSFER_IOC_TO_HOST)
1099#define MPT_SGE_FLAGS_SSIMPLE_WRITE \
1100 (MPT_SGE_FLAGS_LAST_ELEMENT | \
1101 MPT_SGE_FLAGS_END_OF_BUFFER | \
1102 MPT_SGE_FLAGS_END_OF_LIST | \
1103 MPT_SGE_FLAGS_SIMPLE_ELEMENT | \
1104 MPT_SGE_FLAGS_ADDRESSING | \
1105 MPT_TRANSFER_HOST_TO_IOC)
1106
1107/*}-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
1108#endif
1109