blob: 720ea0320a6d58a28189911ed714a4e3262569e2 [file] [log] [blame]
David Howells9f97da72012-03-28 18:30:01 +01001#ifndef __ASM_ARM_SYSTEM_INFO_H
2#define __ASM_ARM_SYSTEM_INFO_H
3
4#define CPU_ARCH_UNKNOWN 0
5#define CPU_ARCH_ARMv3 1
6#define CPU_ARCH_ARMv4 2
7#define CPU_ARCH_ARMv4T 3
8#define CPU_ARCH_ARMv5 4
9#define CPU_ARCH_ARMv5T 5
10#define CPU_ARCH_ARMv5TE 6
11#define CPU_ARCH_ARMv5TEJ 7
12#define CPU_ARCH_ARMv6 8
13#define CPU_ARCH_ARMv7 9
Catalin Marinas55bdd692010-05-21 18:06:41 +010014#define CPU_ARCH_ARMv7M 10
David Howells9f97da72012-03-28 18:30:01 +010015
16#ifndef __ASSEMBLY__
17
18/* information about the system we're running on */
19extern unsigned int system_rev;
20extern unsigned int system_serial_low;
21extern unsigned int system_serial_high;
22extern unsigned int mem_fclk_21285;
23
24extern int __pure cpu_architecture(void);
25
26#endif /* !__ASSEMBLY__ */
27
28#endif /* __ASM_ARM_SYSTEM_INFO_H */