blob: a2d18ab57ac608bcf3959863a7232330de08f2d7 [file] [log] [blame]
Ralf Baechlebdc92d742013-05-21 16:59:19 +02001#ifndef __ASM_IDLE_H
2#define __ASM_IDLE_H
3
Paul Burtonda9f9702014-04-14 16:16:41 +01004#include <linux/cpuidle.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +02005#include <linux/linkage.h>
6
7extern void (*cpu_wait)(void);
Ralf Baechle087d9902013-05-21 17:33:32 +02008extern void r4k_wait(void);
9extern asmlinkage void __r4k_wait(void);
Ralf Baechlebdc92d742013-05-21 16:59:19 +020010extern void r4k_wait_irqoff(void);
Ralf Baechlebdc92d742013-05-21 16:59:19 +020011
Ralf Baechlef94d9a82013-05-21 17:30:36 +020012static inline int using_rollback_handler(void)
13{
14 return cpu_wait == r4k_wait;
15}
16
Paul Burtonda9f9702014-04-14 16:16:41 +010017extern int mips_cpuidle_wait_enter(struct cpuidle_device *dev,
18 struct cpuidle_driver *drv, int index);
19
20#define MIPS_CPUIDLE_WAIT_STATE {\
21 .enter = mips_cpuidle_wait_enter,\
22 .exit_latency = 1,\
23 .target_residency = 1,\
24 .power_usage = UINT_MAX,\
Paul Burtonda9f9702014-04-14 16:16:41 +010025 .name = "wait",\
26 .desc = "MIPS wait",\
27}
28
Ralf Baechlebdc92d742013-05-21 16:59:19 +020029#endif /* __ASM_IDLE_H */