smp_scu.h 669 B

12345678910111213141516171819202122232425262728293031323334353637
  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_number() == 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. unsigned int scu_get_core_count(void __iomem *);
  19. int scu_power_mode(void __iomem *, unsigned int);
  20. #ifdef CONFIG_SMP
  21. void scu_enable(void __iomem *scu_base);
  22. #else
  23. static inline void scu_enable(void __iomem *scu_base) {}
  24. #endif
  25. #endif
  26. #endif