ARM: shmobile: Introduce shmobile_boot_size
[linux-2.6/btrfs-unstable.git] / arch / arm / mach-shmobile / include / mach / common.h
blobcfe397716fd1d2a8d2eec628d4ea5f46f308b546
1 #ifndef __ARCH_MACH_COMMON_H
2 #define __ARCH_MACH_COMMON_H
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 int shmobile_smp_scu_boot_secondary(unsigned int cpu,
22 struct task_struct *idle);
23 extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
24 extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
25 struct clk;
26 extern int shmobile_clk_init(void);
27 extern void shmobile_handle_irq_intc(struct pt_regs *);
28 extern struct platform_suspend_ops shmobile_suspend_ops;
29 struct cpuidle_driver;
30 extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
32 #ifdef CONFIG_SUSPEND
33 int shmobile_suspend_init(void);
34 #else
35 static inline int shmobile_suspend_init(void) { return 0; }
36 #endif
38 #ifdef CONFIG_CPU_IDLE
39 int shmobile_cpuidle_init(void);
40 #else
41 static inline int shmobile_cpuidle_init(void) { return 0; }
42 #endif
44 extern void __iomem *shmobile_scu_base;
46 static inline void __init shmobile_init_late(void)
48 shmobile_suspend_init();
49 shmobile_cpuidle_init();
52 #endif /* __ARCH_MACH_COMMON_H */