1/*-
2 * Copyright (c) 2013 LSI Corp.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the author nor the names of any co-contributors
14 *    may be used to endorse or promote products derived from this software
15 *    without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * LSI MPT-Fusion Host Adapter FreeBSD
30 *
31 * $FreeBSD$
32 */
33
34/*
35 *  Copyright (c) 2000-2007 LSI Corporation.
36 *
37 *
38 *           Name:  mpi2_type.h
39 *          Title:  MPI basic type definitions
40 *  Creation Date:  August 16, 2006
41 *
42 *    mpi2_type.h Version:  02.00.00
43 *
44 *  Version History
45 *  ---------------
46 *
47 *  Date      Version   Description
48 *  --------  --------  ------------------------------------------------------
49 *  04-30-07  02.00.00  Corresponds to Fusion-MPT MPI Specification Rev A.
50 *  --------------------------------------------------------------------------
51 */
52
53#ifndef MPI2_TYPE_H
54#define MPI2_TYPE_H
55
56
57/*******************************************************************************
58 * Define MPI2_POINTER if it hasn't already been defined. By default
59 * MPI2_POINTER is defined to be a near pointer. MPI2_POINTER can be defined as
60 * a far pointer by defining MPI2_POINTER as "far *" before this header file is
61 * included.
62 */
63#ifndef MPI2_POINTER
64#define MPI2_POINTER     *
65#endif
66
67/* the basic types may have already been included by mpi_type.h */
68#ifndef MPI_TYPE_H
69/*****************************************************************************
70*
71*               Basic Types
72*
73*****************************************************************************/
74
75typedef signed   char   S8;
76typedef unsigned char   U8;
77typedef signed   short  S16;
78typedef unsigned short  U16;
79
80#ifdef	__FreeBSD__
81
82typedef int32_t  S32;
83typedef uint32_t U32;
84
85#else
86
87#if defined(unix) || defined(__arm) || defined(ALPHA) || defined(__PPC__) || defined(__ppc)
88
89    typedef signed   int   S32;
90    typedef unsigned int   U32;
91
92#else
93
94    typedef signed   long  S32;
95    typedef unsigned long  U32;
96
97#endif
98#endif
99
100typedef struct _S64
101{
102    U32          Low;
103    S32          High;
104} S64;
105
106typedef struct _U64
107{
108    U32          Low;
109    U32          High;
110} U64;
111
112
113/*****************************************************************************
114*
115*               Pointer Types
116*
117*****************************************************************************/
118
119typedef S8      *PS8;
120typedef U8      *PU8;
121typedef S16     *PS16;
122typedef U16     *PU16;
123typedef S32     *PS32;
124typedef U32     *PU32;
125typedef S64     *PS64;
126typedef U64     *PU64;
127
128#endif
129
130#endif
131
132