xref: /openbmc/linux/arch/arm/include/asm/suspend.h (revision 8cb5d748)
1 #ifndef __ASM_ARM_SUSPEND_H
2 #define __ASM_ARM_SUSPEND_H
3 
4 #include <linux/types.h>
5 
6 struct sleep_save_sp {
7 	u32 *save_ptr_stash;
8 	u32 save_ptr_stash_phys;
9 };
10 
11 extern void cpu_resume(void);
12 extern void cpu_resume_arm(void);
13 extern int cpu_suspend(unsigned long, int (*)(unsigned long));
14 
15 #endif
16