xref: /openbmc/linux/arch/arm/mach-shmobile/common.h (revision e0bf6c5c)
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 void shmobile_handle_irq_intc(struct pt_regs *);
25 extern struct platform_suspend_ops shmobile_suspend_ops;
26 struct cpuidle_driver;
27 extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
28 
29 #ifdef CONFIG_SUSPEND
30 int shmobile_suspend_init(void);
31 void shmobile_smp_apmu_suspend_init(void);
32 #else
33 static inline int shmobile_suspend_init(void) { return 0; }
34 static inline void shmobile_smp_apmu_suspend_init(void) { }
35 #endif
36 
37 #ifdef CONFIG_CPU_IDLE
38 int shmobile_cpuidle_init(void);
39 #else
40 static inline int shmobile_cpuidle_init(void) { return 0; }
41 #endif
42 
43 #ifdef CONFIG_CPU_FREQ
44 int shmobile_cpufreq_init(void);
45 #else
46 static inline int shmobile_cpufreq_init(void) { return 0; }
47 #endif
48 
49 extern void __iomem *shmobile_scu_base;
50 
51 static inline void __init shmobile_init_late(void)
52 {
53 	shmobile_suspend_init();
54 	shmobile_cpuidle_init();
55 	shmobile_cpufreq_init();
56 }
57 
58 #endif /* __ARCH_MACH_COMMON_H */
59