core.h 349 B

123456789101112131415161718
  1. #ifndef __HIGHBANK_CORE_H
  2. #define __HIGHBANK_CORE_H
  3. #include <linux/reboot.h>
  4. extern void highbank_restart(enum reboot_mode, const char *);
  5. extern void __iomem *scu_base_addr;
  6. #ifdef CONFIG_PM_SLEEP
  7. extern void highbank_pm_init(void);
  8. #else
  9. static inline void highbank_pm_init(void) {}
  10. #endif
  11. extern void highbank_smc1(int fn, int arg);
  12. #endif