blob: a5aea0ca34e9a3dc98fdf4b504cc56e472baad87 [file] [log] [blame]
Becky Bruce971dc772005-10-19 18:45:03 -05001#ifndef _ASM_POWERPC_TYPES_H
2#define _ASM_POWERPC_TYPES_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Ingo Molnarfe333322009-01-06 14:26:03 +00004/*
5 * This is here because we used to use l64 for 64bit powerpc
6 * and we don't want to impact user mode with our change to ll64
7 * in the kernel.
8 */
9#if defined(__powerpc64__) && !defined(__KERNEL__)
H. Peter Anvin3f02c4e2008-04-06 10:35:09 -070010# include <asm-generic/int-l64.h>
11#else
12# include <asm-generic/int-ll64.h>
13#endif
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#ifndef __ASSEMBLY__
16
17/*
18 * This file is never included by application software unless
19 * explicitly requested (e.g., via linux/types.h) in which case the
20 * application is Linux specific so (user-) name space pollution is
21 * not a major issue. However, for interoperability, libraries still
22 * need to be careful to avoid a name clashes.
23 *
24 * This program is free software; you can redistribute it and/or
25 * modify it under the terms of the GNU General Public License
26 * as published by the Free Software Foundation; either version
27 * 2 of the License, or (at your option) any later version.
28 */
29
Becky Bruce971dc772005-10-19 18:45:03 -050030#ifdef __powerpc64__
Linus Torvalds1da177e2005-04-16 15:20:36 -070031typedef unsigned int umode_t;
Becky Bruce971dc772005-10-19 18:45:03 -050032#else
33typedef unsigned short umode_t;
34#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036typedef struct {
37 __u32 u[4];
Mike Frysingerfc624ea2007-07-15 13:36:09 +100038} __attribute__((aligned(16))) __vector128;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#endif /* __ASSEMBLY__ */
41
42#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifndef __ASSEMBLY__
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045typedef __vector128 vector128;
46
Becky Bruceb9579682008-09-12 10:53:43 +000047#if defined(__powerpc64__) || defined(CONFIG_PHYS_64BIT)
Stephen Rothwell8168f902005-10-25 16:56:43 +100048typedef u64 dma_addr_t;
49#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070050typedef u32 dma_addr_t;
Stephen Rothwell8168f902005-10-25 16:56:43 +100051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052typedef u64 dma64_addr_t;
53
54typedef struct {
55 unsigned long entry;
56 unsigned long toc;
57 unsigned long env;
58} func_descr_t;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif /* __ASSEMBLY__ */
61
62#endif /* __KERNEL__ */
63
Becky Bruce971dc772005-10-19 18:45:03 -050064#endif /* _ASM_POWERPC_TYPES_H */