2011-06-22 16:41:48 +00:00
|
|
|
#ifndef __ASM_ARM_SUSPEND_H
|
|
|
|
#define __ASM_ARM_SUSPEND_H
|
|
|
|
|
2017-07-17 08:28:20 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2013-05-16 09:34:30 +00:00
|
|
|
struct sleep_save_sp {
|
|
|
|
u32 *save_ptr_stash;
|
|
|
|
u32 save_ptr_stash_phys;
|
|
|
|
};
|
|
|
|
|
2011-06-22 16:41:48 +00:00
|
|
|
extern void cpu_resume(void);
|
2015-06-09 18:24:23 +00:00
|
|
|
extern void cpu_resume_arm(void);
|
2011-08-26 19:28:52 +00:00
|
|
|
extern int cpu_suspend(unsigned long, int (*)(unsigned long));
|
2011-06-22 16:41:48 +00:00
|
|
|
|
|
|
|
#endif
|