xref: /openbmc/u-boot/arch/arm/include/asm/arch-sunxi/cpu.h (revision 797c3c13a9b8fcedf134e30491496733becc3560)
1 /*
2  * (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #ifndef _SUNXI_CPU_H
8 #define _SUNXI_CPU_H
9 
10 #if defined(CONFIG_MACH_SUN9I)
11 #include <asm/arch/cpu_sun9i.h>
12 #else
13 #include <asm/arch/cpu_sun4i.h>
14 #endif
15 
16 #define SOCID_A64	0x1689
17 #define SOCID_H3	0x1680
18 
19 #endif /* _SUNXI_CPU_H */
20