xref: /netbsd/sys/arch/mips/include/types.h (revision c4a72b64)
1 /*	$NetBSD: types.h,v 1.36 2002/11/03 17:35:32 thorpej Exp $	*/
2 
3 /*-
4  * Copyright (c) 1992, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Ralph Campbell.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *	@(#)types.h	8.3 (Berkeley) 1/5/94
39  */
40 
41 #ifndef	_MACHTYPES_H_
42 #define	_MACHTYPES_H_
43 
44 #include <sys/cdefs.h>
45 #include <mips/int_types.h>
46 
47 /*
48  * Note that mips_reg_t is distinct from the register_t defined
49  * in <types.h> to allow these structures to be as hidden from
50  * the rest of the operating system as possible.
51  */
52 
53 #if defined(_MIPS_BSD_API) && _MIPS_BSD_API != _MIPS_BSD_API_LP32
54 typedef long long	mips_reg_t;
55 typedef unsigned long long mips_ureg_t;
56 #if _MIPS_BSD_API != _MIPS_BSD_API_LP32 && _MIPS_BSD_API != _MIPS_BSD_API_LP32_64CLEAN
57 typedef	long long	mips_fpreg_t;
58 #else
59 typedef	int		mips_fpreg_t;
60 #endif
61 #else
62 typedef long		mips_reg_t;
63 typedef unsigned long	mips_ureg_t;
64 typedef	long		mips_fpreg_t;
65 #endif
66 
67 /* NB: This should probably be if defined(_KERNEL) */
68 #if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)
69 #if defined(_MIPS_PADDR_T_64BIT) && !defined(_LP64)
70 typedef unsigned long long	paddr_t;
71 typedef unsigned long long	psize_t;
72 #else
73 typedef unsigned long	paddr_t;
74 typedef unsigned long	psize_t;
75 #endif
76 typedef unsigned long	vaddr_t;
77 typedef unsigned long	vsize_t;
78 #endif
79 
80 /* Make sure this is signed; we need pointers to be sign-extended. */
81 #if defined(__mips_n32)
82 typedef long long	register_t;
83 #else
84 typedef long		register_t;
85 #endif /* __mips_n32 */
86 
87 #if defined(_KERNEL)
88 typedef struct label_t {
89 	register_t val[12];
90 } label_t;
91 #endif
92 
93 #define	__SWAP_BROKEN
94 
95 #define	__HAVE_AST_PERPROC
96 #define	__HAVE_SYSCALL_INTERN
97 #ifdef MIPS3_PLUS	/* XXX bogus! */
98 #define	__HAVE_CPU_COUNTER
99 #endif
100 #define	__HAVE_RAS
101 
102 #endif	/* _MACHTYPES_H_ */
103