2010-02-05 11:14:49 +00:00
|
|
|
#ifndef __ARCH_MACH_COMMON_H
|
|
|
|
#define __ARCH_MACH_COMMON_H
|
|
|
|
|
|
|
|
extern struct sys_timer shmobile_timer;
|
2010-02-08 11:02:54 +00:00
|
|
|
extern void shmobile_setup_console(void);
|
2010-12-14 16:56:55 +09:00
|
|
|
extern void shmobile_secondary_vector(void);
|
2010-05-20 14:45:03 +00:00
|
|
|
struct clk;
|
2010-05-12 14:21:24 +00:00
|
|
|
extern int clk_init(void);
|
2010-12-28 08:27:01 +00:00
|
|
|
extern void shmobile_handle_irq_intc(struct pt_regs *);
|
2011-04-29 02:23:28 +09:00
|
|
|
extern struct platform_suspend_ops shmobile_suspend_ops;
|
2011-11-11 14:01:30 +09:00
|
|
|
struct cpuidle_driver;
|
2011-04-29 02:36:07 +09:00
|
|
|
extern void (*shmobile_cpuidle_modes[])(void);
|
2011-11-11 14:01:30 +09:00
|
|
|
extern void (*shmobile_cpuidle_setup)(struct cpuidle_driver *drv);
|
2010-05-12 14:21:24 +00:00
|
|
|
|
2010-02-05 11:14:49 +00:00
|
|
|
extern void sh7367_init_irq(void);
|
|
|
|
extern void sh7367_add_early_devices(void);
|
|
|
|
extern void sh7367_add_standard_devices(void);
|
|
|
|
extern void sh7367_clock_init(void);
|
2010-02-10 20:10:55 +09:00
|
|
|
extern void sh7367_pinmux_init(void);
|
2010-05-20 14:49:28 +00:00
|
|
|
extern struct clk sh7367_extalb1_clk;
|
|
|
|
extern struct clk sh7367_extal2_clk;
|
2010-02-05 11:14:49 +00:00
|
|
|
|
2010-02-05 11:15:07 +00:00
|
|
|
extern void sh7377_init_irq(void);
|
|
|
|
extern void sh7377_add_early_devices(void);
|
|
|
|
extern void sh7377_add_standard_devices(void);
|
2010-05-21 05:19:34 +00:00
|
|
|
extern void sh7377_clock_init(void);
|
2010-02-12 08:10:06 +00:00
|
|
|
extern void sh7377_pinmux_init(void);
|
2010-05-21 05:19:34 +00:00
|
|
|
extern struct clk sh7377_extalc1_clk;
|
|
|
|
extern struct clk sh7377_extal2_clk;
|
2010-02-05 11:15:07 +00:00
|
|
|
|
2010-02-05 11:14:58 +00:00
|
|
|
extern void sh7372_init_irq(void);
|
|
|
|
extern void sh7372_add_early_devices(void);
|
|
|
|
extern void sh7372_add_standard_devices(void);
|
2010-05-12 14:21:34 +00:00
|
|
|
extern void sh7372_clock_init(void);
|
2010-02-17 09:39:10 +00:00
|
|
|
extern void sh7372_pinmux_init(void);
|
2011-04-29 02:28:08 +09:00
|
|
|
extern void sh7372_pm_init(void);
|
2011-12-23 01:23:07 +01:00
|
|
|
extern void sh7372_resume_core_standby_sysc(void);
|
|
|
|
extern int sh7372_do_idle_sysc(unsigned long sleep_mode);
|
2010-05-20 14:45:03 +00:00
|
|
|
extern struct clk sh7372_extal1_clk;
|
|
|
|
extern struct clk sh7372_extal2_clk;
|
2010-02-05 11:14:58 +00:00
|
|
|
|
2010-12-21 08:37:32 +00:00
|
|
|
extern void sh73a0_init_irq(void);
|
2010-11-17 10:59:31 +00:00
|
|
|
extern void sh73a0_add_early_devices(void);
|
|
|
|
extern void sh73a0_add_standard_devices(void);
|
|
|
|
extern void sh73a0_clock_init(void);
|
2010-11-19 16:47:16 +09:00
|
|
|
extern void sh73a0_pinmux_init(void);
|
2010-12-03 07:22:31 +00:00
|
|
|
extern struct clk sh73a0_extal1_clk;
|
|
|
|
extern struct clk sh73a0_extal2_clk;
|
2011-12-05 22:29:15 -08:00
|
|
|
extern struct clk sh73a0_extcki_clk;
|
|
|
|
extern struct clk sh73a0_extalr_clk;
|
2010-11-17 10:59:31 +00:00
|
|
|
|
2010-12-14 16:57:11 +09:00
|
|
|
extern unsigned int sh73a0_get_core_count(void);
|
|
|
|
extern void sh73a0_secondary_init(unsigned int cpu);
|
|
|
|
extern int sh73a0_boot_secondary(unsigned int cpu);
|
|
|
|
extern void sh73a0_smp_prepare_cpus(void);
|
|
|
|
|
2011-11-10 18:45:52 -08:00
|
|
|
extern void r8a7740_init_irq(void);
|
|
|
|
extern void r8a7740_add_early_devices(void);
|
|
|
|
extern void r8a7740_add_standard_devices(void);
|
|
|
|
extern void r8a7740_clock_init(u8 md_ck);
|
|
|
|
extern void r8a7740_pinmux_init(void);
|
|
|
|
|
2010-02-05 11:14:49 +00:00
|
|
|
#endif /* __ARCH_MACH_COMMON_H */
|