GNU Linux-libre 4.9.294-gnu1
[releases.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_size;
8 extern void shmobile_smp_boot(void);
9 extern void shmobile_smp_sleep(void);
10 extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
11                               unsigned long arg);
12 extern bool shmobile_smp_cpu_can_disable(unsigned int cpu);
13 extern bool shmobile_smp_init_fallback_ops(void);
14 extern void shmobile_boot_scu(void);
15 extern void shmobile_smp_scu_prepare_cpus(phys_addr_t scu_base_phys,
16                                           unsigned int max_cpus);
17 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
18 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
19 extern struct platform_suspend_ops shmobile_suspend_ops;
20
21 #ifdef CONFIG_SUSPEND
22 int shmobile_suspend_init(void);
23 void shmobile_smp_apmu_suspend_init(void);
24 #else
25 static inline int shmobile_suspend_init(void) { return 0; }
26 static inline void shmobile_smp_apmu_suspend_init(void) { }
27 #endif
28
29 static inline void __init shmobile_init_late(void)
30 {
31         shmobile_suspend_init();
32 }
33
34 #endif /* __ARCH_MACH_COMMON_H */