aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/asm-powerpc/machdep.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-powerpc/machdep.h b/include/asm-powerpc/machdep.h
index 79c704ed5381..0872ec228c1e 100644
--- a/include/asm-powerpc/machdep.h
+++ b/include/asm-powerpc/machdep.h
@@ -251,6 +251,16 @@ struct machdep_calls {
251 */ 251 */
252 void (*machine_kexec)(struct kimage *image); 252 void (*machine_kexec)(struct kimage *image);
253#endif /* CONFIG_KEXEC */ 253#endif /* CONFIG_KEXEC */
254
255#ifdef CONFIG_SUSPEND
256 /* These are called to disable and enable, respectively, IRQs when
257 * entering a suspend state. If NULL, then the generic versions
258 * will be called. The generic versions disable/enable the
259 * decrementer along with interrupts.
260 */
261 void (*suspend_disable_irqs)(void);
262 void (*suspend_enable_irqs)(void);
263#endif
254}; 264};
255 265
256extern void power4_idle(void); 266extern void power4_idle(void);
@@ -347,5 +357,8 @@ static inline void log_error(char *buf, unsigned int err_type, int fatal)
347#define machine_late_initcall(mach,fn) __define_machine_initcall(mach,"7",fn,7) 357#define machine_late_initcall(mach,fn) __define_machine_initcall(mach,"7",fn,7)
348#define machine_late_initcall_sync(mach,fn) __define_machine_initcall(mach,"7s",fn,7s) 358#define machine_late_initcall_sync(mach,fn) __define_machine_initcall(mach,"7s",fn,7s)
349 359
360void generic_suspend_disable_irqs(void);
361void generic_suspend_enable_irqs(void);
362
350#endif /* __KERNEL__ */ 363#endif /* __KERNEL__ */
351#endif /* _ASM_POWERPC_MACHDEP_H */ 364#endif /* _ASM_POWERPC_MACHDEP_H */