2010-02-05 19:14:49 +08:00
|
|
|
#ifndef __ARCH_MACH_COMMON_H
|
|
|
|
#define __ARCH_MACH_COMMON_H
|
|
|
|
|
2014-03-06 11:28:24 +08:00
|
|
|
extern void shmobile_init_delay(void);
|
2013-06-10 17:19:36 +08:00
|
|
|
extern void shmobile_boot_vector(void);
|
|
|
|
extern unsigned long shmobile_boot_fn;
|
|
|
|
extern unsigned long shmobile_boot_arg;
|
2013-08-08 06:14:07 +08:00
|
|
|
extern unsigned long shmobile_boot_size;
|
2013-08-01 02:38:18 +08:00
|
|
|
extern void shmobile_smp_boot(void);
|
|
|
|
extern void shmobile_smp_sleep(void);
|
|
|
|
extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
|
|
|
|
unsigned long arg);
|
2015-07-29 07:34:48 +08:00
|
|
|
extern bool shmobile_smp_cpu_can_disable(unsigned int cpu);
|
2013-06-10 17:19:46 +08:00
|
|
|
extern void shmobile_boot_scu(void);
|
2013-07-31 15:07:12 +08:00
|
|
|
extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
|
2013-07-31 15:07:49 +08:00
|
|
|
extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
|
|
|
|
extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
|
2011-04-29 01:23:28 +08:00
|
|
|
extern struct platform_suspend_ops shmobile_suspend_ops;
|
2010-05-12 22:21:24 +08:00
|
|
|
|
2012-04-26 21:58:41 +08:00
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
int shmobile_suspend_init(void);
|
2014-05-29 15:24:27 +08:00
|
|
|
void shmobile_smp_apmu_suspend_init(void);
|
2012-04-26 21:58:41 +08:00
|
|
|
#else
|
|
|
|
static inline int shmobile_suspend_init(void) { return 0; }
|
2014-06-16 19:21:13 +08:00
|
|
|
static inline void shmobile_smp_apmu_suspend_init(void) { }
|
2012-04-26 21:58:41 +08:00
|
|
|
#endif
|
|
|
|
|
2014-06-03 20:02:45 +08:00
|
|
|
#ifdef CONFIG_CPU_FREQ
|
|
|
|
int shmobile_cpufreq_init(void);
|
|
|
|
#else
|
|
|
|
static inline int shmobile_cpufreq_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2013-02-13 21:47:17 +08:00
|
|
|
extern void __iomem *shmobile_scu_base;
|
2011-09-08 20:15:22 +08:00
|
|
|
|
2012-09-24 06:36:35 +08:00
|
|
|
static inline void __init shmobile_init_late(void)
|
2012-08-16 02:57:27 +08:00
|
|
|
{
|
|
|
|
shmobile_suspend_init();
|
2014-06-03 20:02:45 +08:00
|
|
|
shmobile_cpufreq_init();
|
2012-08-16 02:57:27 +08:00
|
|
|
}
|
|
|
|
|
2010-02-05 19:14:49 +08:00
|
|
|
#endif /* __ARCH_MACH_COMMON_H */
|