USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / include / asm / smp_scu.h
blobb818e5d0cd7840efcdc2689df5d18401bbf10b0a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASMARM_ARCH_SCU_H
3 #define __ASMARM_ARCH_SCU_H
5 #define SCU_PM_NORMAL 0
6 #define SCU_PM_DORMANT 2
7 #define SCU_PM_POWEROFF 3
9 #ifndef __ASSEMBLER__
11 #include <linux/errno.h>
12 #include <asm/cputype.h>
14 static inline bool scu_a9_has_base(void)
16 return read_cpuid_part() == ARM_CPU_PART_CORTEX_A9;
19 static inline unsigned long scu_a9_get_base(void)
21 unsigned long pa;
23 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (pa));
25 return pa;
28 #ifdef CONFIG_HAVE_ARM_SCU
29 unsigned int scu_get_core_count(void __iomem *);
30 int scu_power_mode(void __iomem *, unsigned int);
31 int scu_cpu_power_enable(void __iomem *, unsigned int);
32 int scu_get_cpu_power_mode(void __iomem *scu_base, unsigned int logical_cpu);
33 #else
34 static inline unsigned int scu_get_core_count(void __iomem *scu_base)
36 return 0;
38 static inline int scu_power_mode(void __iomem *scu_base, unsigned int mode)
40 return -EINVAL;
42 static inline int scu_cpu_power_enable(void __iomem *scu_base,
43 unsigned int mode)
45 return -EINVAL;
47 static inline int scu_get_cpu_power_mode(void __iomem *scu_base,
48 unsigned int logical_cpu)
50 return -EINVAL;
52 #endif
54 #if defined(CONFIG_SMP) && defined(CONFIG_HAVE_ARM_SCU)
55 void scu_enable(void __iomem *scu_base);
56 #else
57 static inline void scu_enable(void __iomem *scu_base) {}
58 #endif
60 #endif
62 #endif