xref: /freebsd/sys/dev/mps/mpi/mpi2_type.h (revision 4f52dfbb)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2006-2015 LSI Corp.
5  * Copyright (c) 2013-2015 Avago Technologies
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
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  * Avago Technologies (LSI) MPT-Fusion Host Adapter FreeBSD
30  *
31  * $FreeBSD$
32  */
33 
34 /*
35  *  Copyright (c) 2006-2015 LSI Corporation.
36  *  Copyright (c) 2013-2015 Avago Technologies
37  *
38  *
39  *           Name:  mpi2_type.h
40  *          Title:  MPI basic type definitions
41  *  Creation Date:  August 16, 2006
42  *
43  *    mpi2_type.h Version:  02.00.00
44  *
45  *  Version History
46  *  ---------------
47  *
48  *  Date      Version   Description
49  *  --------  --------  ------------------------------------------------------
50  *  04-30-07  02.00.00  Corresponds to Fusion-MPT MPI Specification Rev A.
51  *  --------------------------------------------------------------------------
52  */
53 
54 #ifndef MPI2_TYPE_H
55 #define MPI2_TYPE_H
56 
57 
58 /*******************************************************************************
59  * Define MPI2_POINTER if it hasn't already been defined. By default
60  * MPI2_POINTER is defined to be a near pointer. MPI2_POINTER can be defined as
61  * a far pointer by defining MPI2_POINTER as "far *" before this header file is
62  * included.
63  */
64 #ifndef MPI2_POINTER
65 #define MPI2_POINTER     *
66 #endif
67 
68 /* the basic types may have already been included by mpi_type.h */
69 #ifndef MPI_TYPE_H
70 /*****************************************************************************
71 *
72 *               Basic Types
73 *
74 *****************************************************************************/
75 
76 typedef signed   char   S8;
77 typedef unsigned char   U8;
78 typedef signed   short  S16;
79 typedef unsigned short  U16;
80 
81 #ifdef	__FreeBSD__
82 
83 typedef int32_t  S32;
84 typedef uint32_t U32;
85 
86 #else
87 
88 #if defined(unix) || defined(__arm) || defined(ALPHA) || defined(__PPC__) || defined(__ppc)
89 
90     typedef signed   int   S32;
91     typedef unsigned int   U32;
92 
93 #else
94 
95     typedef signed   long  S32;
96     typedef unsigned long  U32;
97 
98 #endif
99 #endif
100 
101 typedef struct _S64
102 {
103     U32          Low;
104     S32          High;
105 } S64;
106 
107 typedef struct _U64
108 {
109     U32          Low;
110     U32          High;
111 } U64;
112 
113 
114 /*****************************************************************************
115 *
116 *               Pointer Types
117 *
118 *****************************************************************************/
119 
120 typedef S8      *PS8;
121 typedef U8      *PU8;
122 typedef S16     *PS16;
123 typedef U16     *PU16;
124 typedef S32     *PS32;
125 typedef U32     *PU32;
126 typedef S64     *PS64;
127 typedef U64     *PU64;
128 
129 #endif
130 
131 #endif
132 
133