pm_qos.h 7.8 KB
Newer Older
1 2
#ifndef _LINUX_PM_QOS_H
#define _LINUX_PM_QOS_H
M
Mark Gross 已提交
3 4
/* interface for the pm_qos_power infrastructure of the linux kernel.
 *
R
Richard Hughes 已提交
5
 * Mark Gross <mgross@linux.intel.com>
M
Mark Gross 已提交
6
 */
7
#include <linux/plist.h>
M
Mark Gross 已提交
8 9
#include <linux/notifier.h>
#include <linux/miscdevice.h>
10
#include <linux/device.h>
11
#include <linux/workqueue.h>
M
Mark Gross 已提交
12

13 14 15 16 17 18 19 20 21
enum {
	PM_QOS_RESERVED = 0,
	PM_QOS_CPU_DMA_LATENCY,
	PM_QOS_NETWORK_LATENCY,
	PM_QOS_NETWORK_THROUGHPUT,

	/* insert new class ID */
	PM_QOS_NUM_CLASSES,
};
M
Mark Gross 已提交
22

23 24 25 26 27 28 29
enum pm_qos_flags_status {
	PM_QOS_FLAGS_UNDEFINED = -1,
	PM_QOS_FLAGS_NONE,
	PM_QOS_FLAGS_SOME,
	PM_QOS_FLAGS_ALL,
};

M
Mark Gross 已提交
30 31
#define PM_QOS_DEFAULT_VALUE -1

32 33 34
#define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE	(2000 * USEC_PER_SEC)
#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE	(2000 * USEC_PER_SEC)
#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE	0
35
#define PM_QOS_RESUME_LATENCY_DEFAULT_VALUE	0
36 37 38
#define PM_QOS_LATENCY_TOLERANCE_DEFAULT_VALUE	0
#define PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT	(-1)
#define PM_QOS_LATENCY_ANY			((s32)(~(__u32)0 >> 1))
39

40 41 42
#define PM_QOS_FLAG_NO_POWER_OFF	(1 << 0)
#define PM_QOS_FLAG_REMOTE_WAKEUP	(1 << 1)

J
Jean Pihet 已提交
43 44
struct pm_qos_request {
	struct plist_node node;
45
	int pm_qos_class;
46
	struct delayed_work work; /* for pm_qos_update_request_timeout */
47
};
M
Mark Gross 已提交
48

49 50 51 52 53
struct pm_qos_flags_request {
	struct list_head node;
	s32 flags;	/* Do not change to 64 bit */
};

54
enum dev_pm_qos_req_type {
55
	DEV_PM_QOS_RESUME_LATENCY = 1,
56
	DEV_PM_QOS_LATENCY_TOLERANCE,
57 58 59
	DEV_PM_QOS_FLAGS,
};

60
struct dev_pm_qos_request {
61
	enum dev_pm_qos_req_type type;
62 63
	union {
		struct plist_node pnode;
64
		struct pm_qos_flags_request flr;
65
	} data;
66 67 68
	struct device *dev;
};

J
Jean Pihet 已提交
69 70 71 72 73 74 75
enum pm_qos_type {
	PM_QOS_UNITIALIZED,
	PM_QOS_MAX,		/* return the largest value */
	PM_QOS_MIN		/* return the smallest value */
};

/*
76 77
 * Note: The lockless read path depends on the CPU accessing target_value
 * or effective_flags atomically.  Atomic access is only guaranteed on all CPU
J
Jean Pihet 已提交
78 79 80 81 82 83
 * types linux supports for 32 bit quantites
 */
struct pm_qos_constraints {
	struct plist_head list;
	s32 target_value;	/* Do not change to 64 bit */
	s32 default_value;
84
	s32 no_constraint_value;
J
Jean Pihet 已提交
85 86 87 88
	enum pm_qos_type type;
	struct blocking_notifier_head *notifiers;
};

89 90 91 92 93
struct pm_qos_flags {
	struct list_head list;
	s32 effective_flags;	/* Do not change to 64 bit */
};

94
struct dev_pm_qos {
95
	struct pm_qos_constraints resume_latency;
96
	struct pm_qos_constraints latency_tolerance;
97
	struct pm_qos_flags flags;
98
	struct dev_pm_qos_request *resume_latency_req;
99
	struct dev_pm_qos_request *latency_tolerance_req;
100
	struct dev_pm_qos_request *flags_req;
101 102
};

103 104 105 106 107 108 109
/* Action requested to pm_qos_update_target */
enum pm_qos_req_action {
	PM_QOS_ADD_REQ,		/* Add a new request */
	PM_QOS_UPDATE_REQ,	/* Update an existing request */
	PM_QOS_REMOVE_REQ	/* Remove an existing request */
};

110 111
static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
{
112
	return req->dev != NULL;
113 114
}

115 116
int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
			 enum pm_qos_req_action action, int value);
117 118 119
bool pm_qos_update_flags(struct pm_qos_flags *pqf,
			 struct pm_qos_flags_request *req,
			 enum pm_qos_req_action action, s32 val);
J
Jean Pihet 已提交
120 121 122
void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
			s32 value);
void pm_qos_update_request(struct pm_qos_request *req,
123
			   s32 new_value);
124 125
void pm_qos_update_request_timeout(struct pm_qos_request *req,
				   s32 new_value, unsigned long timeout_us);
J
Jean Pihet 已提交
126
void pm_qos_remove_request(struct pm_qos_request *req);
M
Mark Gross 已提交
127

M
Mark Gross 已提交
128 129 130
int pm_qos_request(int pm_qos_class);
int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
J
Jean Pihet 已提交
131
int pm_qos_request_active(struct pm_qos_request *req);
132
s32 pm_qos_read_value(struct pm_qos_constraints *c);
133

134
#ifdef CONFIG_PM
135 136
enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev, s32 mask);
enum pm_qos_flags_status dev_pm_qos_flags(struct device *dev, s32 mask);
137
s32 __dev_pm_qos_read_value(struct device *dev);
138
s32 dev_pm_qos_read_value(struct device *dev);
139
int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
140
			   enum dev_pm_qos_req_type type, s32 value);
141 142 143 144 145 146
int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
int dev_pm_qos_add_notifier(struct device *dev,
			    struct notifier_block *notifier);
int dev_pm_qos_remove_notifier(struct device *dev,
			       struct notifier_block *notifier);
147 148
int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
149 150
void dev_pm_qos_constraints_init(struct device *dev);
void dev_pm_qos_constraints_destroy(struct device *dev);
151 152
int dev_pm_qos_add_ancestor_request(struct device *dev,
				    struct dev_pm_qos_request *req, s32 value);
153
#else
154 155 156 157 158 159
static inline enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev,
							  s32 mask)
			{ return PM_QOS_FLAGS_UNDEFINED; }
static inline enum pm_qos_flags_status dev_pm_qos_flags(struct device *dev,
							s32 mask)
			{ return PM_QOS_FLAGS_UNDEFINED; }
160 161
static inline s32 __dev_pm_qos_read_value(struct device *dev)
			{ return 0; }
162 163
static inline s32 dev_pm_qos_read_value(struct device *dev)
			{ return 0; }
164 165
static inline int dev_pm_qos_add_request(struct device *dev,
					 struct dev_pm_qos_request *req,
166
					 enum dev_pm_qos_req_type type,
167 168 169 170 171 172 173 174 175 176 177 178 179
					 s32 value)
			{ return 0; }
static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
					    s32 new_value)
			{ return 0; }
static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
			{ return 0; }
static inline int dev_pm_qos_add_notifier(struct device *dev,
					  struct notifier_block *notifier)
			{ return 0; }
static inline int dev_pm_qos_remove_notifier(struct device *dev,
					     struct notifier_block *notifier)
			{ return 0; }
180 181 182 183 184 185
static inline int dev_pm_qos_add_global_notifier(
					struct notifier_block *notifier)
			{ return 0; }
static inline int dev_pm_qos_remove_global_notifier(
					struct notifier_block *notifier)
			{ return 0; }
186
static inline void dev_pm_qos_constraints_init(struct device *dev)
187 188 189
{
	dev->power.power_state = PMSG_ON;
}
190
static inline void dev_pm_qos_constraints_destroy(struct device *dev)
191 192 193
{
	dev->power.power_state = PMSG_INVALID;
}
194 195 196
static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
				    struct dev_pm_qos_request *req, s32 value)
			{ return 0; }
197
#endif
M
Mark Gross 已提交
198

199 200 201
#ifdef CONFIG_PM_RUNTIME
int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value);
void dev_pm_qos_hide_latency_limit(struct device *dev);
202 203 204
int dev_pm_qos_expose_flags(struct device *dev, s32 value);
void dev_pm_qos_hide_flags(struct device *dev);
int dev_pm_qos_update_flags(struct device *dev, s32 mask, bool set);
205 206
s32 dev_pm_qos_get_user_latency_tolerance(struct device *dev);
int dev_pm_qos_update_user_latency_tolerance(struct device *dev, s32 val);
207

208
static inline s32 dev_pm_qos_requested_resume_latency(struct device *dev)
209
{
210
	return dev->power.qos->resume_latency_req->data.pnode.prio;
211 212 213 214 215 216
}

static inline s32 dev_pm_qos_requested_flags(struct device *dev)
{
	return dev->power.qos->flags_req->data.flr.flags;
}
217 218 219 220
#else
static inline int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
			{ return 0; }
static inline void dev_pm_qos_hide_latency_limit(struct device *dev) {}
221 222 223 224 225
static inline int dev_pm_qos_expose_flags(struct device *dev, s32 value)
			{ return 0; }
static inline void dev_pm_qos_hide_flags(struct device *dev) {}
static inline int dev_pm_qos_update_flags(struct device *dev, s32 m, bool set)
			{ return 0; }
226 227 228 229
static inline s32 dev_pm_qos_get_user_latency_tolerance(struct device *dev)
			{ return PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT; }
static inline int dev_pm_qos_update_user_latency_tolerance(struct device *dev, s32 val)
			{ return 0; }
230

231
static inline s32 dev_pm_qos_requested_resume_latency(struct device *dev) { return 0; }
232
static inline s32 dev_pm_qos_requested_flags(struct device *dev) { return 0; }
233 234
#endif

235
#endif