cpu.h 383 B

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