Merge remote-tracking branches 'asoc/fix/atmel', 'asoc/fix/fsl', 'asoc/fix/tegra...
[linux-drm-fsl-dcu.git] / arch / arm / mach-shmobile / include / mach / 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_setup_delay(unsigned int max_cpu_core_mhz,
6                          unsigned int mult, unsigned int div);
7 struct twd_local_timer;
8 extern void shmobile_setup_console(void);
9 extern void shmobile_boot_vector(void);
10 extern unsigned long shmobile_boot_fn;
11 extern unsigned long shmobile_boot_arg;
12 extern unsigned long shmobile_boot_size;
13 extern void shmobile_smp_boot(void);
14 extern void shmobile_smp_sleep(void);
15 extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
16                               unsigned long arg);
17 extern int shmobile_smp_cpu_disable(unsigned int cpu);
18 extern void shmobile_invalidate_start(void);
19 extern void shmobile_boot_scu(void);
20 extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
21 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
22 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
23 extern void shmobile_smp_apmu_prepare_cpus(unsigned int max_cpus);
24 extern int shmobile_smp_apmu_boot_secondary(unsigned int cpu,
25                                             struct task_struct *idle);
26 extern void shmobile_smp_apmu_cpu_die(unsigned int cpu);
27 extern int shmobile_smp_apmu_cpu_kill(unsigned int cpu);
28 extern void shmobile_invalidate_start(void);
29 struct clk;
30 extern int shmobile_clk_init(void);
31 extern void shmobile_handle_irq_intc(struct pt_regs *);
32 extern struct platform_suspend_ops shmobile_suspend_ops;
33 struct cpuidle_driver;
34 extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
35
36 #ifdef CONFIG_SUSPEND
37 int shmobile_suspend_init(void);
38 #else
39 static inline int shmobile_suspend_init(void) { return 0; }
40 #endif
41
42 #ifdef CONFIG_CPU_IDLE
43 int shmobile_cpuidle_init(void);
44 #else
45 static inline int shmobile_cpuidle_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 }
55
56 #endif /* __ARCH_MACH_COMMON_H */