u-boot-brain/arch/powerpc/include/asm/types.h

37 lines
637 B
C
Raw Normal View History

2000-08-22 00:05:47 +09:00
#ifndef _PPC_TYPES_H
#define _PPC_TYPES_H
#include <asm-generic/int-ll64.h>
2000-08-22 00:05:47 +09:00
#ifndef __ASSEMBLY__
typedef unsigned short umode_t;
typedef struct {
__u32 u[4];
} __attribute__((aligned(16))) vector128;
2000-08-22 00:05:47 +09:00
#ifdef __KERNEL__
#define BITS_PER_LONG 32
#ifdef CONFIG_PHYS_64BIT
typedef unsigned long long dma_addr_t;
#else
2000-08-22 00:05:47 +09:00
/* DMA addresses are 32-bits wide */
typedef u32 dma_addr_t;
#endif
2000-08-22 00:05:47 +09:00
#ifdef CONFIG_PHYS_64BIT
typedef unsigned long long phys_addr_t;
typedef unsigned long long phys_size_t;
#else
typedef unsigned long phys_addr_t;
typedef unsigned long phys_size_t;
#endif
2000-08-22 00:05:47 +09:00
#endif /* __KERNEL__ */
#endif /* __ASSEMBLY__ */
#endif