2010-02-05 11:14:49 +00:00
|
|
|
#ifndef __ARCH_MACH_COMMON_H
|
|
|
|
#define __ARCH_MACH_COMMON_H
|
|
|
|
|
2012-03-06 08:36:14 +00:00
|
|
|
extern void shmobile_earlytimer_init(void);
|
2012-11-08 19:40:59 +00:00
|
|
|
extern void shmobile_timer_init(void);
|
2012-03-28 10:22:30 +00:00
|
|
|
extern void shmobile_setup_delay(unsigned int max_cpu_core_mhz,
|
2011-09-08 12:15:22 +00:00
|
|
|
unsigned int mult, unsigned int div);
|
2012-01-10 19:44:19 +00:00
|
|
|
struct twd_local_timer;
|
2010-02-08 11:02:54 +00:00
|
|
|
extern void shmobile_setup_console(void);
|
2013-06-10 09:19:36 +00:00
|
|
|
extern void shmobile_boot_vector(void);
|
|
|
|
extern unsigned long shmobile_boot_fn;
|
|
|
|
extern unsigned long shmobile_boot_arg;
|
2013-06-10 09:19:46 +00:00
|
|
|
extern void shmobile_boot_scu(void);
|
2010-05-20 14:45:03 +00:00
|
|
|
struct clk;
|
2012-02-29 12:41:30 +00:00
|
|
|
extern int shmobile_clk_init(void);
|
2010-12-28 08:27:01 +00:00
|
|
|
extern void shmobile_handle_irq_intc(struct pt_regs *);
|
2011-04-28 17:23:28 +00:00
|
|
|
extern struct platform_suspend_ops shmobile_suspend_ops;
|
2011-11-11 05:01:30 +00:00
|
|
|
struct cpuidle_driver;
|
2012-08-15 18:58:19 +00:00
|
|
|
extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
|
2010-05-12 14:21:24 +00:00
|
|
|
|
2012-04-26 13:58:41 +00:00
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
int shmobile_suspend_init(void);
|
|
|
|
#else
|
|
|
|
static inline int shmobile_suspend_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_IDLE
|
|
|
|
int shmobile_cpuidle_init(void);
|
|
|
|
#else
|
|
|
|
static inline int shmobile_cpuidle_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2013-02-13 13:47:17 +00:00
|
|
|
extern void __iomem *shmobile_scu_base;
|
2011-09-08 12:15:22 +00:00
|
|
|
extern void shmobile_smp_init_cpus(unsigned int ncores);
|
|
|
|
|
2012-09-23 22:36:35 +00:00
|
|
|
static inline void __init shmobile_init_late(void)
|
2012-08-15 18:57:27 +00:00
|
|
|
{
|
|
|
|
shmobile_suspend_init();
|
|
|
|
shmobile_cpuidle_init();
|
|
|
|
}
|
|
|
|
|
2010-02-05 11:14:49 +00:00
|
|
|
#endif /* __ARCH_MACH_COMMON_H */
|