Catalin Marinas | 4b17244 | 2007-02-14 19:20:28 +0100 | [diff] [blame] | 1 | #ifndef __ASMARM_ARCH_SCU_H |
| 2 | #define __ASMARM_ARCH_SCU_H |
| 3 | |
Russell King | 292ec42 | 2011-02-04 10:36:39 +0000 | [diff] [blame] | 4 | #define SCU_PM_NORMAL 0 |
| 5 | #define SCU_PM_DORMANT 2 |
| 6 | #define SCU_PM_POWEROFF 3 |
| 7 | |
| 8 | #ifndef __ASSEMBLER__ |
Hiroshi Doyu | e9d6b335 | 2013-01-22 07:52:01 +0200 | [diff] [blame] | 9 | |
| 10 | #include <asm/cputype.h> |
| 11 | |
| 12 | static inline bool scu_a9_has_base(void) |
| 13 | { |
Russell King | af040ff | 2014-06-24 19:43:15 +0100 | [diff] [blame] | 14 | return read_cpuid_part() == ARM_CPU_PART_CORTEX_A9; |
Hiroshi Doyu | e9d6b335 | 2013-01-22 07:52:01 +0200 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | static inline unsigned long scu_a9_get_base(void) |
| 18 | { |
| 19 | unsigned long pa; |
| 20 | |
| 21 | asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (pa)); |
| 22 | |
| 23 | return pa; |
| 24 | } |
| 25 | |
Nishanth Menon | 2abc75a | 2013-06-26 09:39:47 -0500 | [diff] [blame] | 26 | #ifdef CONFIG_HAVE_ARM_SCU |
Russell King | a8cbcd9 | 2009-05-16 11:51:14 +0100 | [diff] [blame] | 27 | unsigned int scu_get_core_count(void __iomem *); |
Russell King | 292ec42 | 2011-02-04 10:36:39 +0000 | [diff] [blame] | 28 | int scu_power_mode(void __iomem *, unsigned int); |
Nishanth Menon | 2abc75a | 2013-06-26 09:39:47 -0500 | [diff] [blame] | 29 | #else |
| 30 | static inline unsigned int scu_get_core_count(void __iomem *scu_base) |
| 31 | { |
| 32 | return 0; |
| 33 | } |
| 34 | static inline int scu_power_mode(void __iomem *scu_base, unsigned int mode) |
| 35 | { |
| 36 | return -EINVAL; |
| 37 | } |
| 38 | #endif |
Rob Herring | eed8812 | 2013-01-31 09:26:06 -0600 | [diff] [blame] | 39 | |
Nishanth Menon | 2abc75a | 2013-06-26 09:39:47 -0500 | [diff] [blame] | 40 | #if defined(CONFIG_SMP) && defined(CONFIG_HAVE_ARM_SCU) |
Rob Herring | eed8812 | 2013-01-31 09:26:06 -0600 | [diff] [blame] | 41 | void scu_enable(void __iomem *scu_base); |
| 42 | #else |
| 43 | static inline void scu_enable(void __iomem *scu_base) {} |
| 44 | #endif |
| 45 | |
Russell King | 292ec42 | 2011-02-04 10:36:39 +0000 | [diff] [blame] | 46 | #endif |
Catalin Marinas | 4b17244 | 2007-02-14 19:20:28 +0100 | [diff] [blame] | 47 | |
| 48 | #endif |