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