smp_scu.h 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef __ASMARM_ARCH_SCU_H
  2. #define __ASMARM_ARCH_SCU_H
  3. #define SCU_PM_NORMAL 0
  4. #define SCU_PM_DORMANT 2
  5. #define SCU_PM_POWEROFF 3
  6. #ifndef __ASSEMBLER__
  7. #include <asm/cputype.h>
  8. static inline bool scu_a9_has_base(void)
  9. {
  10. return read_cpuid_part() == ARM_CPU_PART_CORTEX_A9;
  11. }
  12. static inline unsigned long scu_a9_get_base(void)
  13. {
  14. unsigned long pa;
  15. asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (pa));
  16. return pa;
  17. }
  18. #ifdef CONFIG_HAVE_ARM_SCU
  19. unsigned int scu_get_core_count(void __iomem *);
  20. int scu_power_mode(void __iomem *, unsigned int);
  21. #else
  22. static inline unsigned int scu_get_core_count(void __iomem *scu_base)
  23. {
  24. return 0;
  25. }
  26. static inline int scu_power_mode(void __iomem *scu_base, unsigned int mode)
  27. {
  28. return -EINVAL;
  29. }
  30. #endif
  31. #if defined(CONFIG_SMP) && defined(CONFIG_HAVE_ARM_SCU)
  32. void scu_enable(void __iomem *scu_base);
  33. #else
  34. static inline void scu_enable(void __iomem *scu_base) {}
  35. #endif
  36. #endif
  37. #endif