2010-02-05 04:14:49 -07:00
|
|
|
#ifndef __ARCH_MACH_COMMON_H
|
|
|
|
#define __ARCH_MACH_COMMON_H
|
|
|
|
|
2012-03-06 01:36:14 -07:00
|
|
|
extern void shmobile_earlytimer_init(void);
|
2014-03-05 20:28:24 -07:00
|
|
|
extern void shmobile_init_delay(void);
|
2012-01-10 12:44:19 -07:00
|
|
|
struct twd_local_timer;
|
2010-02-08 04:02:54 -07:00
|
|
|
extern void shmobile_setup_console(void);
|
2013-06-10 03:19:36 -06:00
|
|
|
extern void shmobile_boot_vector(void);
|
|
|
|
extern unsigned long shmobile_boot_fn;
|
|
|
|
extern unsigned long shmobile_boot_arg;
|
2013-08-07 16:14:07 -06:00
|
|
|
extern unsigned long shmobile_boot_size;
|
2013-07-31 12:38:18 -06: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);
|
2013-08-07 16:13:30 -06:00
|
|
|
extern int shmobile_smp_cpu_disable(unsigned int cpu);
|
2013-08-07 16:13:58 -06:00
|
|
|
extern void shmobile_invalidate_start(void);
|
2013-06-10 03:19:46 -06:00
|
|
|
extern void shmobile_boot_scu(void);
|
2013-07-31 01:07:12 -06:00
|
|
|
extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
|
2013-07-31 01:07:49 -06:00
|
|
|
extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
|
|
|
|
extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
|
2010-05-20 08:45:03 -06:00
|
|
|
struct clk;
|
2012-02-29 05:41:30 -07:00
|
|
|
extern int shmobile_clk_init(void);
|
2010-12-28 01:27:01 -07:00
|
|
|
extern void shmobile_handle_irq_intc(struct pt_regs *);
|
2011-04-28 11:23:28 -06:00
|
|
|
extern struct platform_suspend_ops shmobile_suspend_ops;
|
2011-11-10 22:01:30 -07:00
|
|
|
struct cpuidle_driver;
|
2012-08-15 12:58:19 -06:00
|
|
|
extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
|
2010-05-12 08:21:24 -06:00
|
|
|
|
2012-04-26 07:58:41 -06:00
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
int shmobile_suspend_init(void);
|
2014-05-29 01:24:27 -06:00
|
|
|
void shmobile_smp_apmu_suspend_init(void);
|
2012-04-26 07:58:41 -06:00
|
|
|
#else
|
|
|
|
static inline int shmobile_suspend_init(void) { return 0; }
|
2014-06-16 05:21:13 -06:00
|
|
|
static inline void shmobile_smp_apmu_suspend_init(void) { }
|
2012-04-26 07:58:41 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_IDLE
|
|
|
|
int shmobile_cpuidle_init(void);
|
|
|
|
#else
|
|
|
|
static inline int shmobile_cpuidle_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2014-06-03 06:02:45 -06:00
|
|
|
#ifdef CONFIG_CPU_FREQ
|
|
|
|
int shmobile_cpufreq_init(void);
|
|
|
|
#else
|
|
|
|
static inline int shmobile_cpufreq_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2013-02-13 06:47:17 -07:00
|
|
|
extern void __iomem *shmobile_scu_base;
|
2011-09-08 06:15:22 -06:00
|
|
|
|
2012-09-23 16:36:35 -06:00
|
|
|
static inline void __init shmobile_init_late(void)
|
2012-08-15 12:57:27 -06:00
|
|
|
{
|
|
|
|
shmobile_suspend_init();
|
|
|
|
shmobile_cpuidle_init();
|
2014-06-03 06:02:45 -06:00
|
|
|
shmobile_cpufreq_init();
|
2012-08-15 12:57:27 -06:00
|
|
|
}
|
|
|
|
|
2010-02-05 04:14:49 -07:00
|
|
|
#endif /* __ARCH_MACH_COMMON_H */
|