Merge branches 'pm-core' and 'pm-domains'
[linux-2.6-block.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 void shmobile_boot_scu(void);
14 extern void shmobile_smp_scu_prepare_cpus(phys_addr_t scu_base_phys,
15                                           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 static inline void __init shmobile_init_late(void)
29 {
30         shmobile_suspend_init();
31 }
32
33 #endif /* __ARCH_MACH_COMMON_H */