xref: /openbmc/linux/arch/arm/mach-highbank/core.h (revision a8fe58ce)
1 #ifndef __HIGHBANK_CORE_H
2 #define __HIGHBANK_CORE_H
3 
4 #include <linux/reboot.h>
5 
6 extern void highbank_restart(enum reboot_mode, const char *);
7 extern void __iomem *scu_base_addr;
8 
9 #ifdef CONFIG_PM_SLEEP
10 extern void highbank_pm_init(void);
11 #else
12 static inline void highbank_pm_init(void) {}
13 #endif
14 
15 extern void highbank_smc1(int fn, int arg);
16 
17 #endif
18