blob: 7a2ee4f40131135bf21336cea8fe5249376dfb5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994, 1995, 1996, 1999 by Ralf Baechle
7 * Copyright (C) 1999 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_TYPES_H
10#define _ASM_TYPES_H
11
H. Peter Anvin23cf11d2008-04-06 10:35:06 -070012#if _MIPS_SZLONG == 64
13# include <asm-generic/int-l64.h>
14#else
15# include <asm-generic/int-ll64.h>
16#endif
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifndef __ASSEMBLY__
19
20typedef unsigned short umode_t;
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#endif
23
24#endif /* __ASSEMBLY__ */
25
26/*
27 * These aren't exported outside the kernel to avoid name space clashes
28 */
29#ifdef __KERNEL__
30
31#define BITS_PER_LONG _MIPS_SZLONG
32
33#ifndef __ASSEMBLY__
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#if (defined(CONFIG_HIGHMEM) && defined(CONFIG_64BIT_PHYS_ADDR)) \
Ralf Baechle875d43e2005-09-03 15:56:16 -070036 || defined(CONFIG_64BIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037typedef u64 dma_addr_t;
38#else
39typedef u32 dma_addr_t;
40#endif
41typedef u64 dma64_addr_t;
42
43/*
44 * Don't use phys_t. You've been warned.
45 */
46#ifdef CONFIG_64BIT_PHYS_ADDR
47typedef unsigned long long phys_t;
48#else
49typedef unsigned long phys_t;
50#endif
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#endif /* __ASSEMBLY__ */
53
54#endif /* __KERNEL__ */
55
56#endif /* _ASM_TYPES_H */