core.h 507 B

1234567891011121314151617181920
  1. #ifndef __HIGHBANK_CORE_H
  2. #define __HIGHBANK_CORE_H
  3. extern void highbank_set_cpu_jump(int cpu, void *jump_addr);
  4. extern void highbank_clocks_init(void);
  5. extern void highbank_restart(char, const char *);
  6. extern void __iomem *scu_base_addr;
  7. #ifdef CONFIG_PM_SLEEP
  8. extern void highbank_pm_init(void);
  9. #else
  10. static inline void highbank_pm_init(void) {}
  11. #endif
  12. extern void highbank_smc1(int fn, int arg);
  13. extern void highbank_cpu_die(unsigned int cpu);
  14. extern struct smp_operations highbank_smp_ops;
  15. #endif