2 * cpuidle.h - a generic framework for CPU idle power management
4 * (C) 2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
5 * Shaohua Li <shaohua.li@intel.com>
6 * Adam Belay <abelay@novell.com>
8 * This code is licenced under the GPL.
11 #ifndef _LINUX_CPUIDLE_H
12 #define _LINUX_CPUIDLE_H
14 #include <linux/percpu.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/kobject.h>
18 #include <linux/completion.h>
20 #define CPUIDLE_STATE_MAX 8
21 #define CPUIDLE_NAME_LEN 16
22 #define CPUIDLE_DESC_LEN 32
24 struct cpuidle_device;
27 /****************************
28 * CPUIDLE DEVICE INTERFACE *
29 ****************************/
31 struct cpuidle_state {
32 char name[CPUIDLE_NAME_LEN];
33 char desc[CPUIDLE_DESC_LEN];
37 unsigned int exit_latency; /* in US */
38 unsigned int power_usage; /* in mW */
39 unsigned int target_residency; /* in US */
41 unsigned long long usage;
42 unsigned long long time; /* in US */
44 int (*enter) (struct cpuidle_device *dev,
48 /* Idle State Flags */
49 #define CPUIDLE_FLAG_TIME_VALID (0x01) /* is residency time measurable? */
51 #define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000)
54 * cpuidle_get_statedata - retrieves private driver state data
57 static inline void * cpuidle_get_statedata(struct cpuidle_state *state)
59 return state->driver_data;
63 * cpuidle_set_statedata - stores private driver state data
65 * @data: the private data
68 cpuidle_set_statedata(struct cpuidle_state *state, void *data)
70 state->driver_data = data;
73 struct cpuidle_state_kobj {
74 struct cpuidle_state *state;
75 struct completion kobj_unregister;
79 struct cpuidle_device {
80 unsigned int registered:1;
81 unsigned int enabled:1;
82 unsigned int power_specified:1;
87 struct cpuidle_state states[CPUIDLE_STATE_MAX];
88 struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX];
90 struct list_head device_list;
92 struct completion kobj_unregister;
97 DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
100 * cpuidle_get_last_residency - retrieves the last state's residency time
101 * @dev: the target CPU
103 * NOTE: this value is invalid if CPUIDLE_FLAG_TIME_VALID isn't set
105 static inline int cpuidle_get_last_residency(struct cpuidle_device *dev)
107 return dev->last_residency;
111 /****************************
112 * CPUIDLE DRIVER INTERFACE *
113 ****************************/
115 struct cpuidle_driver {
116 char name[CPUIDLE_NAME_LEN];
117 struct module *owner;
120 #ifdef CONFIG_CPU_IDLE
121 extern void disable_cpuidle(void);
122 extern int cpuidle_idle_call(void);
124 extern int cpuidle_register_driver(struct cpuidle_driver *drv);
125 struct cpuidle_driver *cpuidle_get_driver(void);
126 extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
127 extern int cpuidle_register_device(struct cpuidle_device *dev);
128 extern void cpuidle_unregister_device(struct cpuidle_device *dev);
130 extern void cpuidle_pause_and_lock(void);
131 extern void cpuidle_resume_and_unlock(void);
132 extern int cpuidle_enable_device(struct cpuidle_device *dev);
133 extern void cpuidle_disable_device(struct cpuidle_device *dev);
136 static inline void disable_cpuidle(void) { }
137 static inline int cpuidle_idle_call(void) { return -ENODEV; }
139 static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
141 static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
142 static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
143 static inline int cpuidle_register_device(struct cpuidle_device *dev)
145 static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { }
147 static inline void cpuidle_pause_and_lock(void) { }
148 static inline void cpuidle_resume_and_unlock(void) { }
149 static inline int cpuidle_enable_device(struct cpuidle_device *dev)
151 static inline void cpuidle_disable_device(struct cpuidle_device *dev) { }
155 /******************************
156 * CPUIDLE GOVERNOR INTERFACE *
157 ******************************/
159 struct cpuidle_governor {
160 char name[CPUIDLE_NAME_LEN];
161 struct list_head governor_list;
164 int (*enable) (struct cpuidle_device *dev);
165 void (*disable) (struct cpuidle_device *dev);
167 int (*select) (struct cpuidle_device *dev);
168 void (*reflect) (struct cpuidle_device *dev, int index);
170 struct module *owner;
173 #ifdef CONFIG_CPU_IDLE
175 extern int cpuidle_register_governor(struct cpuidle_governor *gov);
176 extern void cpuidle_unregister_governor(struct cpuidle_governor *gov);
180 static inline int cpuidle_register_governor(struct cpuidle_governor *gov)
182 static inline void cpuidle_unregister_governor(struct cpuidle_governor *gov) { }
186 #ifdef CONFIG_ARCH_HAS_CPU_RELAX
187 #define CPUIDLE_DRIVER_STATE_START 1
189 #define CPUIDLE_DRIVER_STATE_START 0
192 #endif /* _LINUX_CPUIDLE_H */