u-boot-brain/arch/nds32/include/asm/mach-types.h
Macpaul Lin 00f892fcc9 nds32: add header files support for nds32
Add generic header files support for nds32 architecture.
Cache, ptregs, data type and other definitions are included.

Signed-off-by: Macpaul Lin <macpaul@andestech.com>
2011-10-22 00:51:37 +02:00

30 lines
721 B
C

/*
* This was automagically generated from arch/nds/tools/mach-types!
* Do NOT edit
*/
#ifndef __ASM_NDS32_MACH_TYPE_H
#define __ASM_NDS32_MACH_TYPE_H
#ifndef __ASSEMBLY__
/* The type of machine we're running on */
extern unsigned int __machine_arch_type;
#endif
/* see arch/arm/kernel/arch.c for a description of these */
#define MACH_TYPE_ADPAG101 0
#ifdef CONFIG_ARCH_ADPAG101
# ifdef machine_arch_type
# undef machine_arch_type
# define machine_arch_type __machine_arch_type
# else
# define machine_arch_type MACH_TYPE_ADPAG101
# endif
# define machine_is_adpag101() (machine_arch_type == MACH_TYPE_ADPAG101)
#else
# define machine_is_adpag101() (0)
#endif
#endif /* __ASM_NDS32_MACH_TYPE_H */