]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/cpuidle.h
Input: wacom - fix pressure in Cintiq 21UX2
[net-next-2.6.git] / include / linux / cpuidle.h
CommitLineData
4f86d3a8
LB
1/*
2 * cpuidle.h - a generic framework for CPU idle power management
3 *
4 * (C) 2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
5 * Shaohua Li <shaohua.li@intel.com>
6 * Adam Belay <abelay@novell.com>
7 *
8 * This code is licenced under the GPL.
9 */
10
11#ifndef _LINUX_CPUIDLE_H
12#define _LINUX_CPUIDLE_H
13
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>
19
20#define CPUIDLE_STATE_MAX 8
21#define CPUIDLE_NAME_LEN 16
4fcb2fcd 22#define CPUIDLE_DESC_LEN 32
4f86d3a8
LB
23
24struct cpuidle_device;
25
26
27/****************************
28 * CPUIDLE DEVICE INTERFACE *
29 ****************************/
30
31struct cpuidle_state {
32 char name[CPUIDLE_NAME_LEN];
4fcb2fcd 33 char desc[CPUIDLE_DESC_LEN];
4f86d3a8
LB
34 void *driver_data;
35
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 */
40
8b78cf60
YY
41 unsigned long long usage;
42 unsigned long long time; /* in US */
4f86d3a8
LB
43
44 int (*enter) (struct cpuidle_device *dev,
45 struct cpuidle_state *state);
46};
47
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 */
9a0b8415 51#define CPUIDLE_FLAG_POLL (0x10) /* no latency, no savings */
52#define CPUIDLE_FLAG_SHALLOW (0x20) /* low latency, minimal savings */
53#define CPUIDLE_FLAG_BALANCED (0x40) /* medium latency, moderate savings */
54#define CPUIDLE_FLAG_DEEP (0x80) /* high latency, large savings */
71abbbf8 55#define CPUIDLE_FLAG_IGNORE (0x100) /* ignore during this idle period */
4f86d3a8
LB
56
57#define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000)
58
59/**
60 * cpuidle_get_statedata - retrieves private driver state data
61 * @state: the state
62 */
63static inline void * cpuidle_get_statedata(struct cpuidle_state *state)
64{
65 return state->driver_data;
66}
67
68/**
69 * cpuidle_set_statedata - stores private driver state data
70 * @state: the state
71 * @data: the private data
72 */
73static inline void
74cpuidle_set_statedata(struct cpuidle_state *state, void *data)
75{
76 state->driver_data = data;
77}
78
79struct cpuidle_state_kobj {
80 struct cpuidle_state *state;
81 struct completion kobj_unregister;
82 struct kobject kobj;
83};
84
85struct cpuidle_device {
dcb84f33 86 unsigned int registered:1;
b5556a67 87 unsigned int enabled:1;
71abbbf8 88 unsigned int power_specified:1;
4f86d3a8
LB
89 unsigned int cpu;
90
91 int last_residency;
92 int state_count;
93 struct cpuidle_state states[CPUIDLE_STATE_MAX];
94 struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX];
95 struct cpuidle_state *last_state;
96
97 struct list_head device_list;
98 struct kobject kobj;
99 struct completion kobj_unregister;
100 void *governor_data;
ddc081a1 101 struct cpuidle_state *safe_state;
71abbbf8
AL
102
103 int (*prepare) (struct cpuidle_device *dev);
4f86d3a8
LB
104};
105
106DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
107
108/**
109 * cpuidle_get_last_residency - retrieves the last state's residency time
110 * @dev: the target CPU
111 *
112 * NOTE: this value is invalid if CPUIDLE_FLAG_TIME_VALID isn't set
113 */
114static inline int cpuidle_get_last_residency(struct cpuidle_device *dev)
115{
116 return dev->last_residency;
117}
118
119
120/****************************
121 * CPUIDLE DRIVER INTERFACE *
122 ****************************/
123
124struct cpuidle_driver {
125 char name[CPUIDLE_NAME_LEN];
126 struct module *owner;
127};
128
129#ifdef CONFIG_CPU_IDLE
130
131extern int cpuidle_register_driver(struct cpuidle_driver *drv);
752138df 132struct cpuidle_driver *cpuidle_get_driver(void);
4f86d3a8
LB
133extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
134extern int cpuidle_register_device(struct cpuidle_device *dev);
135extern void cpuidle_unregister_device(struct cpuidle_device *dev);
136
137extern void cpuidle_pause_and_lock(void);
138extern void cpuidle_resume_and_unlock(void);
139extern int cpuidle_enable_device(struct cpuidle_device *dev);
140extern void cpuidle_disable_device(struct cpuidle_device *dev);
141
142#else
143
144static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
6b2c676b 145{return -ENODEV; }
752138df 146static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
4f86d3a8
LB
147static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
148static inline int cpuidle_register_device(struct cpuidle_device *dev)
6b2c676b 149{return -ENODEV; }
4f86d3a8
LB
150static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { }
151
152static inline void cpuidle_pause_and_lock(void) { }
153static inline void cpuidle_resume_and_unlock(void) { }
154static inline int cpuidle_enable_device(struct cpuidle_device *dev)
6b2c676b 155{return -ENODEV; }
4f86d3a8
LB
156static inline void cpuidle_disable_device(struct cpuidle_device *dev) { }
157
158#endif
159
160/******************************
161 * CPUIDLE GOVERNOR INTERFACE *
162 ******************************/
163
164struct cpuidle_governor {
165 char name[CPUIDLE_NAME_LEN];
166 struct list_head governor_list;
167 unsigned int rating;
168
169 int (*enable) (struct cpuidle_device *dev);
170 void (*disable) (struct cpuidle_device *dev);
171
172 int (*select) (struct cpuidle_device *dev);
173 void (*reflect) (struct cpuidle_device *dev);
174
175 struct module *owner;
176};
177
178#ifdef CONFIG_CPU_IDLE
179
180extern int cpuidle_register_governor(struct cpuidle_governor *gov);
181extern void cpuidle_unregister_governor(struct cpuidle_governor *gov);
182
183#else
184
185static inline int cpuidle_register_governor(struct cpuidle_governor *gov)
186{return 0;}
187static inline void cpuidle_unregister_governor(struct cpuidle_governor *gov) { }
188
189#endif
190
9a0b8415 191#ifdef CONFIG_ARCH_HAS_CPU_RELAX
192#define CPUIDLE_DRIVER_STATE_START 1
193#else
194#define CPUIDLE_DRIVER_STATE_START 0
195#endif
196
4f86d3a8 197#endif /* _LINUX_CPUIDLE_H */