Merge tag 'at91-cleanup4_bis' of git://git.kernel.org/pub/scm/linux/kernel/git/nferre...
[cascardo/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_earlytimer_init(void);
5 extern void shmobile_init_delay(void);
6 struct twd_local_timer;
7 extern void shmobile_setup_console(void);
8 extern void shmobile_boot_vector(void);
9 extern unsigned long shmobile_boot_fn;
10 extern unsigned long shmobile_boot_arg;
11 extern unsigned long shmobile_boot_size;
12 extern void shmobile_smp_boot(void);
13 extern void shmobile_smp_sleep(void);
14 extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
15                               unsigned long arg);
16 extern int shmobile_smp_cpu_disable(unsigned int cpu);
17 extern void shmobile_invalidate_start(void);
18 extern void shmobile_boot_scu(void);
19 extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
20 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
21 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
22 struct clk;
23 extern int shmobile_clk_init(void);
24 extern struct platform_suspend_ops shmobile_suspend_ops;
25 struct cpuidle_driver;
26 extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
27
28 #ifdef CONFIG_SUSPEND
29 int shmobile_suspend_init(void);
30 void shmobile_smp_apmu_suspend_init(void);
31 #else
32 static inline int shmobile_suspend_init(void) { return 0; }
33 static inline void shmobile_smp_apmu_suspend_init(void) { }
34 #endif
35
36 #ifdef CONFIG_CPU_IDLE
37 int shmobile_cpuidle_init(void);
38 #else
39 static inline int shmobile_cpuidle_init(void) { return 0; }
40 #endif
41
42 #ifdef CONFIG_CPU_FREQ
43 int shmobile_cpufreq_init(void);
44 #else
45 static inline int shmobile_cpufreq_init(void) { return 0; }
46 #endif
47
48 extern void __iomem *shmobile_scu_base;
49
50 static inline void __init shmobile_init_late(void)
51 {
52         shmobile_suspend_init();
53         shmobile_cpuidle_init();
54         shmobile_cpufreq_init();
55 }
56
57 #endif /* __ARCH_MACH_COMMON_H */