cpuidle: CPUIDLE_FLAG_TLB_FLUSHED is specific to intel_idle
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / cpuidle.h
blob6be722c725d53bd13386070d37beea01e95d34ed
1 /*
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.
9 */
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];
34 void *driver_data;
36 unsigned int flags;
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,
45 struct cpuidle_state *state);
48 /* Idle State Flags */
49 #define CPUIDLE_FLAG_TIME_VALID (0x01) /* is residency time measurable? */
50 #define CPUIDLE_FLAG_CHECK_BM (0x02) /* BM activity will exit state */
51 #define CPUIDLE_FLAG_IGNORE (0x100) /* ignore during this idle period */
53 #define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000)
55 /**
56 * cpuidle_get_statedata - retrieves private driver state data
57 * @state: the state
59 static inline void * cpuidle_get_statedata(struct cpuidle_state *state)
61 return state->driver_data;
64 /**
65 * cpuidle_set_statedata - stores private driver state data
66 * @state: the state
67 * @data: the private data
69 static inline void
70 cpuidle_set_statedata(struct cpuidle_state *state, void *data)
72 state->driver_data = data;
75 struct cpuidle_state_kobj {
76 struct cpuidle_state *state;
77 struct completion kobj_unregister;
78 struct kobject kobj;
81 struct cpuidle_device {
82 unsigned int registered:1;
83 unsigned int enabled:1;
84 unsigned int power_specified:1;
85 unsigned int cpu;
87 int last_residency;
88 int state_count;
89 struct cpuidle_state states[CPUIDLE_STATE_MAX];
90 struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX];
91 struct cpuidle_state *last_state;
93 struct list_head device_list;
94 struct kobject kobj;
95 struct completion kobj_unregister;
96 void *governor_data;
97 struct cpuidle_state *safe_state;
99 int (*prepare) (struct cpuidle_device *dev);
102 DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
105 * cpuidle_get_last_residency - retrieves the last state's residency time
106 * @dev: the target CPU
108 * NOTE: this value is invalid if CPUIDLE_FLAG_TIME_VALID isn't set
110 static inline int cpuidle_get_last_residency(struct cpuidle_device *dev)
112 return dev->last_residency;
116 /****************************
117 * CPUIDLE DRIVER INTERFACE *
118 ****************************/
120 struct cpuidle_driver {
121 char name[CPUIDLE_NAME_LEN];
122 struct module *owner;
125 #ifdef CONFIG_CPU_IDLE
127 extern int cpuidle_register_driver(struct cpuidle_driver *drv);
128 struct cpuidle_driver *cpuidle_get_driver(void);
129 extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
130 extern int cpuidle_register_device(struct cpuidle_device *dev);
131 extern void cpuidle_unregister_device(struct cpuidle_device *dev);
133 extern void cpuidle_pause_and_lock(void);
134 extern void cpuidle_resume_and_unlock(void);
135 extern int cpuidle_enable_device(struct cpuidle_device *dev);
136 extern void cpuidle_disable_device(struct cpuidle_device *dev);
138 #else
140 static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
141 {return -ENODEV; }
142 static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
143 static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
144 static inline int cpuidle_register_device(struct cpuidle_device *dev)
145 {return -ENODEV; }
146 static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { }
148 static inline void cpuidle_pause_and_lock(void) { }
149 static inline void cpuidle_resume_and_unlock(void) { }
150 static inline int cpuidle_enable_device(struct cpuidle_device *dev)
151 {return -ENODEV; }
152 static inline void cpuidle_disable_device(struct cpuidle_device *dev) { }
154 #endif
156 /******************************
157 * CPUIDLE GOVERNOR INTERFACE *
158 ******************************/
160 struct cpuidle_governor {
161 char name[CPUIDLE_NAME_LEN];
162 struct list_head governor_list;
163 unsigned int rating;
165 int (*enable) (struct cpuidle_device *dev);
166 void (*disable) (struct cpuidle_device *dev);
168 int (*select) (struct cpuidle_device *dev);
169 void (*reflect) (struct cpuidle_device *dev);
171 struct module *owner;
174 #ifdef CONFIG_CPU_IDLE
176 extern int cpuidle_register_governor(struct cpuidle_governor *gov);
177 extern void cpuidle_unregister_governor(struct cpuidle_governor *gov);
179 #else
181 static inline int cpuidle_register_governor(struct cpuidle_governor *gov)
182 {return 0;}
183 static inline void cpuidle_unregister_governor(struct cpuidle_governor *gov) { }
185 #endif
187 #ifdef CONFIG_ARCH_HAS_CPU_RELAX
188 #define CPUIDLE_DRIVER_STATE_START 1
189 #else
190 #define CPUIDLE_DRIVER_STATE_START 0
191 #endif
193 #endif /* _LINUX_CPUIDLE_H */