common.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef __ARCH_MACH_COMMON_H
  2. #define __ARCH_MACH_COMMON_H
  3. extern void shmobile_earlytimer_init(void);
  4. extern void shmobile_setup_delay(unsigned int max_cpu_core_mhz,
  5. unsigned int mult, unsigned int div);
  6. struct twd_local_timer;
  7. extern void shmobile_setup_console(void);
  8. extern void shmobile_boot_vector(void);
  9. extern unsigned long shmobile_boot_fn;
  10. extern unsigned long shmobile_boot_arg;
  11. extern unsigned long shmobile_boot_size;
  12. extern void shmobile_smp_boot(void);
  13. extern void shmobile_smp_sleep(void);
  14. extern void shmobile_smp_hook(unsigned int cpu, unsigned long fn,
  15. unsigned long arg);
  16. extern int shmobile_smp_cpu_disable(unsigned int cpu);
  17. extern void shmobile_invalidate_start(void);
  18. extern void shmobile_boot_scu(void);
  19. extern void shmobile_smp_scu_prepare_cpus(unsigned int max_cpus);
  20. extern void shmobile_smp_scu_cpu_die(unsigned int cpu);
  21. extern int shmobile_smp_scu_cpu_kill(unsigned int cpu);
  22. extern void shmobile_smp_apmu_prepare_cpus(unsigned int max_cpus);
  23. extern int shmobile_smp_apmu_boot_secondary(unsigned int cpu,
  24. struct task_struct *idle);
  25. extern void shmobile_smp_apmu_cpu_die(unsigned int cpu);
  26. extern int shmobile_smp_apmu_cpu_kill(unsigned int cpu);
  27. extern void shmobile_invalidate_start(void);
  28. struct clk;
  29. extern int shmobile_clk_init(void);
  30. extern void shmobile_handle_irq_intc(struct pt_regs *);
  31. extern struct platform_suspend_ops shmobile_suspend_ops;
  32. struct cpuidle_driver;
  33. extern void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv);
  34. #ifdef CONFIG_SUSPEND
  35. int shmobile_suspend_init(void);
  36. #else
  37. static inline int shmobile_suspend_init(void) { return 0; }
  38. #endif
  39. #ifdef CONFIG_CPU_IDLE
  40. int shmobile_cpuidle_init(void);
  41. #else
  42. static inline int shmobile_cpuidle_init(void) { return 0; }
  43. #endif
  44. extern void __iomem *shmobile_scu_base;
  45. static inline void __init shmobile_init_late(void)
  46. {
  47. shmobile_suspend_init();
  48. shmobile_cpuidle_init();
  49. }
  50. #endif /* __ARCH_MACH_COMMON_H */