]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/arm/mach-shmobile/include/mach/common.h
ARM: shmobile: Update r8a7791 CPU freq to 1500MHz in C
[mirror_ubuntu-focal-kernel.git] / arch / arm / mach-shmobile / include / mach / common.h
CommitLineData
c793c1b0
MD
1#ifndef __ARCH_MACH_COMMON_H
2#define __ARCH_MACH_COMMON_H
3
08ad42fb 4extern void shmobile_earlytimer_init(void);
0f2c9f20 5extern void shmobile_setup_delay(unsigned int max_cpu_core_mhz,
a62580e5 6 unsigned int mult, unsigned int div);
4200b16d 7struct twd_local_timer;
4ae04acb 8extern void shmobile_setup_console(void);
ebe72ab9
MD
9extern void shmobile_boot_vector(void);
10extern unsigned long shmobile_boot_fn;
11extern unsigned long shmobile_boot_arg;
a84a5ab7 12extern unsigned long shmobile_boot_size;
cc61591e
MD
13extern void shmobile_smp_boot(void);
14extern void shmobile_smp_sleep(void);
15extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
16 unsigned long arg);
5c4dfcd6 17extern int shmobile_smp_cpu_disable(unsigned int cpu);
87a08ca0 18extern void shmobile_invalidate_start(void);
bfabbcc6 19extern void shmobile_boot_scu(void);
c970d4ef 20extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
e7b1c963
MD
21extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
22extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
a112de8c
MD
23extern void shmobile_smp_apmu_prepare_cpus(unsigned int max_cpus);
24extern int shmobile_smp_apmu_boot_secondary(unsigned int cpu,
25 struct task_struct *idle);
26extern void shmobile_smp_apmu_cpu_die(unsigned int cpu);
27extern int shmobile_smp_apmu_cpu_kill(unsigned int cpu);
83ca5c87 28struct clk;
6b6a4c06 29extern int shmobile_clk_init(void);
863b1719 30extern void shmobile_handle_irq_intc(struct pt_regs *);
c3dada18 31extern struct platform_suspend_ops shmobile_suspend_ops;
b73b5c49 32struct cpuidle_driver;
5b41147c 33extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
e47bb515 34
21cc1b7e
SG
35#ifdef CONFIG_SUSPEND
36int shmobile_suspend_init(void);
37#else
38static inline int shmobile_suspend_init(void) { return 0; }
39#endif
40
41#ifdef CONFIG_CPU_IDLE
42int shmobile_cpuidle_init(void);
43#else
44static inline int shmobile_cpuidle_init(void) { return 0; }
45#endif
46
4c822845 47extern void __iomem *shmobile_scu_base;
a62580e5 48
b3796d92 49static inline void __init shmobile_init_late(void)
35f2b0bd
RW
50{
51 shmobile_suspend_init();
52 shmobile_cpuidle_init();
53}
54
c793c1b0 55#endif /* __ARCH_MACH_COMMON_H */