blob: 6d4db7e8ffac608520d9985a3680fddcfcfc9a1b [file] [log] [blame]
Chris Zankel9a8fd552005-06-23 22:01:26 -07001/*
2 * include/asm-xtensa/types.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
10
11#ifndef _XTENSA_TYPES_H
12#define _XTENSA_TYPES_H
13
H. Peter Anvin4cf63c82008-04-06 10:35:15 -070014#include <asm-generic/int-ll64.h>
Chris Zankel24a9ab72007-08-05 11:24:13 -070015
16#ifdef __ASSEMBLY__
17# define __XTENSA_UL(x) (x)
18# define __XTENSA_UL_CONST(x) x
19#else
20# define __XTENSA_UL(x) ((unsigned long)(x))
21# define __XTENSA_UL_CONST(x) x##UL
22#endif
23
Chris Zankel9a8fd552005-06-23 22:01:26 -070024#ifndef __ASSEMBLY__
25
Chris Zankel9a8fd552005-06-23 22:01:26 -070026/*
Chris Zankel9a8fd552005-06-23 22:01:26 -070027 * These aren't exported outside the kernel to avoid name space clashes
28 */
29#ifdef __KERNEL__
30
Chris Zankel9a8fd552005-06-23 22:01:26 -070031#define BITS_PER_LONG 32
32
Chris Zankel9a8fd552005-06-23 22:01:26 -070033#endif /* __KERNEL__ */
34#endif
35
36#endif /* _XTENSA_TYPES_H */