]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm/mach-shmobile/common.h
Merge remote-tracking branch 'mfd/for-mfd-next'
[karo-tx-linux.git] / arch / arm / mach-shmobile / common.h
1 #ifndef __ARCH_MACH_COMMON_H
2 #define __ARCH_MACH_COMMON_H
3
4 extern void shmobile_init_delay(void);
5 extern void shmobile_boot_vector(void);
6 extern unsigned long shmobile_boot_fn;
7 extern unsigned long shmobile_boot_arg;
8 extern unsigned long shmobile_boot_size;
9 extern void shmobile_smp_boot(void);
10 extern void shmobile_smp_sleep(void);
11 extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
12                               unsigned long arg);
13 extern bool shmobile_smp_cpu_can_disable(unsigned int cpu);
14 extern void shmobile_boot_scu(void);
15 extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
16 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
17 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
18 extern struct platform_suspend_ops shmobile_suspend_ops;
19
20 #ifdef CONFIG_SUSPEND
21 int shmobile_suspend_init(void);
22 void shmobile_smp_apmu_suspend_init(void);
23 #else
24 static inline int shmobile_suspend_init(void) { return 0; }
25 static inline void shmobile_smp_apmu_suspend_init(void) { }
26 #endif
27
28 #ifdef CONFIG_CPU_FREQ
29 int shmobile_cpufreq_init(void);
30 #else
31 static inline int shmobile_cpufreq_init(void) { return 0; }
32 #endif
33
34 extern void __iomem *shmobile_scu_base;
35
36 static inline void __init shmobile_init_late(void)
37 {
38         shmobile_suspend_init();
39         shmobile_cpufreq_init();
40 }
41
42 #endif /* __ARCH_MACH_COMMON_H */