blob: 8da811bcdbdb3e40c76e2eb9384575a8ac2dc9ae [file] [log] [blame]
Len Brown4f86d3a2007-10-03 18:58:00 -04001/*
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
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -080022#define CPUIDLE_DESC_LEN 32
Len Brown4f86d3a2007-10-03 18:58:00 -040023
24struct cpuidle_device;
25
26
27/****************************
28 * CPUIDLE DEVICE INTERFACE *
29 ****************************/
30
31struct cpuidle_state {
32 char name[CPUIDLE_NAME_LEN];
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -080033 char desc[CPUIDLE_DESC_LEN];
Len Brown4f86d3a2007-10-03 18:58:00 -040034 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
Yi Yang8b78cf62008-02-25 08:46:12 +080041 unsigned long long usage;
42 unsigned long long time; /* in US */
Len Brown4f86d3a2007-10-03 18:58:00 -040043
44 int (*enter) (struct cpuidle_device *dev,
Deepthi Dharware978aa72011-10-28 16:20:09 +053045 int index);
Len Brown4f86d3a2007-10-03 18:58:00 -040046};
47
48/* Idle State Flags */
49#define CPUIDLE_FLAG_TIME_VALID (0x01) /* is residency time measurable? */
Ai Li71abbbf2010-08-09 17:20:13 -070050#define CPUIDLE_FLAG_IGNORE (0x100) /* ignore during this idle period */
Len Brown4f86d3a2007-10-03 18:58:00 -040051
52#define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000)
53
54/**
55 * cpuidle_get_statedata - retrieves private driver state data
56 * @state: the state
57 */
58static inline void * cpuidle_get_statedata(struct cpuidle_state *state)
59{
60 return state->driver_data;
61}
62
63/**
64 * cpuidle_set_statedata - stores private driver state data
65 * @state: the state
66 * @data: the private data
67 */
68static inline void
69cpuidle_set_statedata(struct cpuidle_state *state, void *data)
70{
71 state->driver_data = data;
72}
73
74struct cpuidle_state_kobj {
75 struct cpuidle_state *state;
76 struct completion kobj_unregister;
77 struct kobject kobj;
78};
79
80struct cpuidle_device {
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -040081 unsigned int registered:1;
Harvey Harrisonb5556a62008-02-06 22:39:44 +010082 unsigned int enabled:1;
Ai Li71abbbf2010-08-09 17:20:13 -070083 unsigned int power_specified:1;
Len Brown4f86d3a2007-10-03 18:58:00 -040084 unsigned int cpu;
85
86 int last_residency;
87 int state_count;
88 struct cpuidle_state states[CPUIDLE_STATE_MAX];
89 struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX];
Len Brown4f86d3a2007-10-03 18:58:00 -040090
91 struct list_head device_list;
92 struct kobject kobj;
93 struct completion kobj_unregister;
94 void *governor_data;
Deepthi Dharware978aa72011-10-28 16:20:09 +053095 int safe_state_index;
Ai Li71abbbf2010-08-09 17:20:13 -070096
97 int (*prepare) (struct cpuidle_device *dev);
Len Brown4f86d3a2007-10-03 18:58:00 -040098};
99
100DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
101
102/**
103 * cpuidle_get_last_residency - retrieves the last state's residency time
104 * @dev: the target CPU
105 *
106 * NOTE: this value is invalid if CPUIDLE_FLAG_TIME_VALID isn't set
107 */
108static inline int cpuidle_get_last_residency(struct cpuidle_device *dev)
109{
110 return dev->last_residency;
111}
112
113
114/****************************
115 * CPUIDLE DRIVER INTERFACE *
116 ****************************/
117
118struct cpuidle_driver {
119 char name[CPUIDLE_NAME_LEN];
120 struct module *owner;
121};
122
123#ifdef CONFIG_CPU_IDLE
Len Brownd91ee582011-04-01 18:28:35 -0400124extern void disable_cpuidle(void);
Len Browna0bfa132011-04-01 19:34:59 -0400125extern int cpuidle_idle_call(void);
Len Brown4f86d3a2007-10-03 18:58:00 -0400126
127extern int cpuidle_register_driver(struct cpuidle_driver *drv);
Len Brown752138d2010-05-22 16:57:26 -0400128struct cpuidle_driver *cpuidle_get_driver(void);
Len Brown4f86d3a2007-10-03 18:58:00 -0400129extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
130extern int cpuidle_register_device(struct cpuidle_device *dev);
131extern void cpuidle_unregister_device(struct cpuidle_device *dev);
132
133extern void cpuidle_pause_and_lock(void);
134extern void cpuidle_resume_and_unlock(void);
135extern int cpuidle_enable_device(struct cpuidle_device *dev);
136extern void cpuidle_disable_device(struct cpuidle_device *dev);
137
138#else
Len Brownd91ee582011-04-01 18:28:35 -0400139static inline void disable_cpuidle(void) { }
Len Browna0bfa132011-04-01 19:34:59 -0400140static inline int cpuidle_idle_call(void) { return -ENODEV; }
Len Brown4f86d3a2007-10-03 18:58:00 -0400141
142static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
Len Brown6b2c6762010-05-11 16:50:52 -0400143{return -ENODEV; }
Len Brown752138d2010-05-22 16:57:26 -0400144static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
Len Brown4f86d3a2007-10-03 18:58:00 -0400145static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
146static inline int cpuidle_register_device(struct cpuidle_device *dev)
Len Brown6b2c6762010-05-11 16:50:52 -0400147{return -ENODEV; }
Len Brown4f86d3a2007-10-03 18:58:00 -0400148static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { }
149
150static inline void cpuidle_pause_and_lock(void) { }
151static inline void cpuidle_resume_and_unlock(void) { }
152static inline int cpuidle_enable_device(struct cpuidle_device *dev)
Len Brown6b2c6762010-05-11 16:50:52 -0400153{return -ENODEV; }
Len Brown4f86d3a2007-10-03 18:58:00 -0400154static inline void cpuidle_disable_device(struct cpuidle_device *dev) { }
155
156#endif
157
158/******************************
159 * CPUIDLE GOVERNOR INTERFACE *
160 ******************************/
161
162struct cpuidle_governor {
163 char name[CPUIDLE_NAME_LEN];
164 struct list_head governor_list;
165 unsigned int rating;
166
167 int (*enable) (struct cpuidle_device *dev);
168 void (*disable) (struct cpuidle_device *dev);
169
170 int (*select) (struct cpuidle_device *dev);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530171 void (*reflect) (struct cpuidle_device *dev, int index);
Len Brown4f86d3a2007-10-03 18:58:00 -0400172
173 struct module *owner;
174};
175
176#ifdef CONFIG_CPU_IDLE
177
178extern int cpuidle_register_governor(struct cpuidle_governor *gov);
179extern void cpuidle_unregister_governor(struct cpuidle_governor *gov);
180
181#else
182
183static inline int cpuidle_register_governor(struct cpuidle_governor *gov)
184{return 0;}
185static inline void cpuidle_unregister_governor(struct cpuidle_governor *gov) { }
186
187#endif
188
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -0800189#ifdef CONFIG_ARCH_HAS_CPU_RELAX
190#define CPUIDLE_DRIVER_STATE_START 1
191#else
192#define CPUIDLE_DRIVER_STATE_START 0
193#endif
194
Len Brown4f86d3a2007-10-03 18:58:00 -0400195#endif /* _LINUX_CPUIDLE_H */