]> git.proxmox.com Git - mirror_spl-debian.git/blob - include/sys/isa_defs.h
53dead38c19b897bf67b8bd909d8eee2e2258ed6
[mirror_spl-debian.git] / include / sys / isa_defs.h
1 /*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6 * UCRL-CODE-235197
7 *
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://zfsonlinux.org/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 \*****************************************************************************/
24
25 #ifndef _SPL_ISA_DEFS_H
26 #define _SPL_ISA_DEFS_H
27
28 /* x86_64 arch specific defines */
29 #if defined(__x86_64) || defined(__x86_64__)
30
31 #if !defined(__x86_64)
32 #define __x86_64
33 #endif
34
35 #if !defined(__amd64)
36 #define __amd64
37 #endif
38
39 #if !defined(__x86)
40 #define __x86
41 #endif
42
43 #if !defined(_LP64)
44 #define _LP64
45 #endif
46
47 /* i386 arch specific defines */
48 #elif defined(__i386) || defined(__i386__)
49
50 #if !defined(__i386)
51 #define __i386
52 #endif
53
54 #if !defined(__x86)
55 #define __x86
56 #endif
57
58 #if !defined(_ILP32)
59 #define _ILP32
60 #endif
61
62 /* powerpc (ppc64) arch specific defines */
63 #elif defined(__powerpc) || defined(__powerpc__) || defined(__powerpc64__)
64
65 #if !defined(__powerpc)
66 #define __powerpc
67 #endif
68
69 #if !defined(__powerpc__)
70 #define __powerpc__
71 #endif
72
73 #if defined(__powerpc64__)
74 #if !defined(_LP64)
75 #define _LP64
76 #endif
77 #else
78 #if !defined(_ILP32)
79 #define _ILP32
80 #endif
81 #endif
82
83 /* arm arch specific defines */
84 #elif defined(__arm) || defined(__arm__) || defined(__aarch64__)
85
86 #if !defined(__arm)
87 #define __arm
88 #endif
89
90 #if !defined(__arm__)
91 #define __arm__
92 #endif
93
94 #if defined(__aarch64__)
95 #if !defined(_LP64)
96 #define _LP64
97 #endif
98 #else
99 #if !defined(_ILP32)
100 #define _ILP32
101 #endif
102 #endif
103
104 #if defined(__ARMEL__) || defined(__AARCH64EL__)
105 #define _LITTLE_ENDIAN
106 #else
107 #define _BIG_ENDIAN
108 #endif
109
110 /* sparc arch specific defines */
111 #elif defined(__sparc) || defined(__sparc__)
112
113 #if !defined(__sparc)
114 #define __sparc
115 #endif
116
117 #if !defined(__sparc__)
118 #define __sparc__
119 #endif
120
121 #if defined(__arch64__)
122 #if !defined(_LP64)
123 #define _LP64
124 #endif
125 #else
126 #if !defined(_ILP32)
127 #define _ILP32
128 #endif
129 #endif
130
131 #define _BIG_ENDIAN
132 #define _SUNOS_VTOC_16
133
134 /* s390 arch specific defines */
135 #elif defined(__s390__)
136 #if defined(__s390x__)
137 #if !defined(_LP64)
138 #define _LP64
139 #endif
140 #else
141 #if !defined(_ILP32)
142 #define _ILP32
143 #endif
144 #endif
145
146 #define _BIG_ENDIAN
147
148 /* MIPS arch specific defines */
149 #elif defined(__mips__)
150
151 #if defined(__MIPSEB__)
152 #define _BIG_ENDIAN
153 #elif defined(__MIPSEL__)
154 #define _LITTLE_ENDIAN
155 #else
156 #error MIPS no endian specified
157 #endif
158
159 #ifndef _LP64
160 #define _ILP32
161 #endif
162
163 #define _SUNOS_VTOC_16
164
165 #else
166 /*
167 * Currently supported:
168 * x86_64, i386, arm, powerpc, s390, sparc, and mips
169 */
170 #error "Unsupported ISA type"
171 #endif
172
173 #if defined(_ILP32) && defined(_LP64)
174 #error "Both _ILP32 and _LP64 are defined"
175 #endif
176
177 #if !defined(_ILP32) && !defined(_LP64)
178 #error "Neither _ILP32 or _LP64 are defined"
179 #endif
180
181 #include <sys/byteorder.h>
182
183 #if defined(__LITTLE_ENDIAN) && !defined(_LITTLE_ENDIAN)
184 #define _LITTLE_ENDIAN __LITTLE_ENDIAN
185 #endif
186
187 #if defined(__BIG_ENDIAN) && !defined(_BIG_ENDIAN)
188 #define _BIG_ENDIAN __BIG_ENDIAN
189 #endif
190
191 #if defined(_LITTLE_ENDIAN) && defined(_BIG_ENDIAN)
192 #error "Both _LITTLE_ENDIAN and _BIG_ENDIAN are defined"
193 #endif
194
195 #if !defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
196 #error "Neither _LITTLE_ENDIAN or _BIG_ENDIAN are defined"
197 #endif
198
199 #endif /* _SPL_ISA_DEFS_H */