Merge remote-tracking branches 'asoc/topic/rl6231' and 'asoc/topic/rt5514' into asoc...
[sfrench/cifs-2.6.git] / arch / arm / mach-shmobile / common.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ARCH_MACH_COMMON_H
3 #define __ARCH_MACH_COMMON_H
4
5 extern void shmobile_init_delay(void);
6 extern void shmobile_boot_vector(void);
7 extern unsigned long shmobile_boot_fn;
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 bool shmobile_smp_init_fallback_ops(void);
15 extern void shmobile_boot_scu(void);
16 extern void shmobile_smp_scu_prepare_cpus(phys_addr_t scu_base_phys,
17                                           unsigned int max_cpus);
18 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
19 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
20 extern struct platform_suspend_ops shmobile_suspend_ops;
21
22 #ifdef CONFIG_SUSPEND
23 int shmobile_suspend_init(void);
24 void shmobile_smp_apmu_suspend_init(void);
25 #else
26 static inline int shmobile_suspend_init(void) { return 0; }
27 static inline void shmobile_smp_apmu_suspend_init(void) { }
28 #endif
29
30 static inline void __init shmobile_init_late(void)
31 {
32         shmobile_suspend_init();
33 }
34
35 #endif /* __ARCH_MACH_COMMON_H */