cpu.h 383 B

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