Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __HIGHBANK_CORE_H
0003 #define __HIGHBANK_CORE_H
0004 
0005 #include <linux/reboot.h>
0006 
0007 extern void highbank_restart(enum reboot_mode, const char *);
0008 extern void __iomem *scu_base_addr;
0009 
0010 #ifdef CONFIG_PM_SLEEP
0011 extern void highbank_pm_init(void);
0012 #else
0013 static inline void highbank_pm_init(void) {}
0014 #endif
0015 
0016 extern void highbank_smc1(int fn, int arg);
0017 
0018 #endif