1#ifndef _LINUX_PM_QOS_H
2#define _LINUX_PM_QOS_H
3/* interface for the pm_qos_power infrastructure of the linux kernel.
4 *
5 * Mark Gross <mgross@linux.intel.com>
6 */
7#include <linux/plist.h>
8#include <linux/notifier.h>
9#include <linux/miscdevice.h>
10#include <linux/device.h>
11#include <linux/workqueue.h>
12
13enum {
14	PM_QOS_RESERVED = 0,
15	PM_QOS_CPU_DMA_LATENCY,
16	PM_QOS_NETWORK_LATENCY,
17	PM_QOS_NETWORK_THROUGHPUT,
18	PM_QOS_MEMORY_BANDWIDTH,
19
20	/* insert new class ID */
21	PM_QOS_NUM_CLASSES,
22};
23
24enum pm_qos_flags_status {
25	PM_QOS_FLAGS_UNDEFINED = -1,
26	PM_QOS_FLAGS_NONE,
27	PM_QOS_FLAGS_SOME,
28	PM_QOS_FLAGS_ALL,
29};
30
31#define PM_QOS_DEFAULT_VALUE -1
32
33#define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE	(2000 * USEC_PER_SEC)
34#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE	(2000 * USEC_PER_SEC)
35#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE	0
36#define PM_QOS_MEMORY_BANDWIDTH_DEFAULT_VALUE	0
37#define PM_QOS_RESUME_LATENCY_DEFAULT_VALUE	0
38#define PM_QOS_LATENCY_TOLERANCE_DEFAULT_VALUE	0
39#define PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT	(-1)
40#define PM_QOS_LATENCY_ANY			((s32)(~(__u32)0 >> 1))
41
42#define PM_QOS_FLAG_NO_POWER_OFF	(1 << 0)
43#define PM_QOS_FLAG_REMOTE_WAKEUP	(1 << 1)
44
45struct pm_qos_request {
46	struct plist_node node;
47	int pm_qos_class;
48	struct delayed_work work; /* for pm_qos_update_request_timeout */
49};
50
51struct pm_qos_flags_request {
52	struct list_head node;
53	s32 flags;	/* Do not change to 64 bit */
54};
55
56enum dev_pm_qos_req_type {
57	DEV_PM_QOS_RESUME_LATENCY = 1,
58	DEV_PM_QOS_LATENCY_TOLERANCE,
59	DEV_PM_QOS_FLAGS,
60};
61
62struct dev_pm_qos_request {
63	enum dev_pm_qos_req_type type;
64	union {
65		struct plist_node pnode;
66		struct pm_qos_flags_request flr;
67	} data;
68	struct device *dev;
69};
70
71enum pm_qos_type {
72	PM_QOS_UNITIALIZED,
73	PM_QOS_MAX,		/* return the largest value */
74	PM_QOS_MIN,		/* return the smallest value */
75	PM_QOS_SUM		/* return the sum */
76};
77
78/*
79 * Note: The lockless read path depends on the CPU accessing target_value
80 * or effective_flags atomically.  Atomic access is only guaranteed on all CPU
81 * types linux supports for 32 bit quantites
82 */
83struct pm_qos_constraints {
84	struct plist_head list;
85	s32 target_value;	/* Do not change to 64 bit */
86	s32 default_value;
87	s32 no_constraint_value;
88	enum pm_qos_type type;
89	struct blocking_notifier_head *notifiers;
90};
91
92struct pm_qos_flags {
93	struct list_head list;
94	s32 effective_flags;	/* Do not change to 64 bit */
95};
96
97struct dev_pm_qos {
98	struct pm_qos_constraints resume_latency;
99	struct pm_qos_constraints latency_tolerance;
100	struct pm_qos_flags flags;
101	struct dev_pm_qos_request *resume_latency_req;
102	struct dev_pm_qos_request *latency_tolerance_req;
103	struct dev_pm_qos_request *flags_req;
104};
105
106/* Action requested to pm_qos_update_target */
107enum pm_qos_req_action {
108	PM_QOS_ADD_REQ,		/* Add a new request */
109	PM_QOS_UPDATE_REQ,	/* Update an existing request */
110	PM_QOS_REMOVE_REQ	/* Remove an existing request */
111};
112
113static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
114{
115	return req->dev != NULL;
116}
117
118int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
119			 enum pm_qos_req_action action, int value);
120bool pm_qos_update_flags(struct pm_qos_flags *pqf,
121			 struct pm_qos_flags_request *req,
122			 enum pm_qos_req_action action, s32 val);
123void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
124			s32 value);
125void pm_qos_update_request(struct pm_qos_request *req,
126			   s32 new_value);
127void pm_qos_update_request_timeout(struct pm_qos_request *req,
128				   s32 new_value, unsigned long timeout_us);
129void pm_qos_remove_request(struct pm_qos_request *req);
130
131int pm_qos_request(int pm_qos_class);
132int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
133int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
134int pm_qos_request_active(struct pm_qos_request *req);
135s32 pm_qos_read_value(struct pm_qos_constraints *c);
136
137#ifdef CONFIG_PM
138enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev, s32 mask);
139enum pm_qos_flags_status dev_pm_qos_flags(struct device *dev, s32 mask);
140s32 __dev_pm_qos_read_value(struct device *dev);
141s32 dev_pm_qos_read_value(struct device *dev);
142int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
143			   enum dev_pm_qos_req_type type, s32 value);
144int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
145int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
146int dev_pm_qos_add_notifier(struct device *dev,
147			    struct notifier_block *notifier);
148int dev_pm_qos_remove_notifier(struct device *dev,
149			       struct notifier_block *notifier);
150int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
151int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
152void dev_pm_qos_constraints_init(struct device *dev);
153void dev_pm_qos_constraints_destroy(struct device *dev);
154int dev_pm_qos_add_ancestor_request(struct device *dev,
155				    struct dev_pm_qos_request *req,
156				    enum dev_pm_qos_req_type type, s32 value);
157int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value);
158void dev_pm_qos_hide_latency_limit(struct device *dev);
159int dev_pm_qos_expose_flags(struct device *dev, s32 value);
160void dev_pm_qos_hide_flags(struct device *dev);
161int dev_pm_qos_update_flags(struct device *dev, s32 mask, bool set);
162s32 dev_pm_qos_get_user_latency_tolerance(struct device *dev);
163int dev_pm_qos_update_user_latency_tolerance(struct device *dev, s32 val);
164
165static inline s32 dev_pm_qos_requested_resume_latency(struct device *dev)
166{
167	return dev->power.qos->resume_latency_req->data.pnode.prio;
168}
169
170static inline s32 dev_pm_qos_requested_flags(struct device *dev)
171{
172	return dev->power.qos->flags_req->data.flr.flags;
173}
174#else
175static inline enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev,
176							  s32 mask)
177			{ return PM_QOS_FLAGS_UNDEFINED; }
178static inline enum pm_qos_flags_status dev_pm_qos_flags(struct device *dev,
179							s32 mask)
180			{ return PM_QOS_FLAGS_UNDEFINED; }
181static inline s32 __dev_pm_qos_read_value(struct device *dev)
182			{ return 0; }
183static inline s32 dev_pm_qos_read_value(struct device *dev)
184			{ return 0; }
185static inline int dev_pm_qos_add_request(struct device *dev,
186					 struct dev_pm_qos_request *req,
187					 enum dev_pm_qos_req_type type,
188					 s32 value)
189			{ return 0; }
190static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
191					    s32 new_value)
192			{ return 0; }
193static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
194			{ return 0; }
195static inline int dev_pm_qos_add_notifier(struct device *dev,
196					  struct notifier_block *notifier)
197			{ return 0; }
198static inline int dev_pm_qos_remove_notifier(struct device *dev,
199					     struct notifier_block *notifier)
200			{ return 0; }
201static inline int dev_pm_qos_add_global_notifier(
202					struct notifier_block *notifier)
203			{ return 0; }
204static inline int dev_pm_qos_remove_global_notifier(
205					struct notifier_block *notifier)
206			{ return 0; }
207static inline void dev_pm_qos_constraints_init(struct device *dev)
208{
209	dev->power.power_state = PMSG_ON;
210}
211static inline void dev_pm_qos_constraints_destroy(struct device *dev)
212{
213	dev->power.power_state = PMSG_INVALID;
214}
215static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
216						  struct dev_pm_qos_request *req,
217						  enum dev_pm_qos_req_type type,
218						  s32 value)
219			{ return 0; }
220static inline int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
221			{ return 0; }
222static inline void dev_pm_qos_hide_latency_limit(struct device *dev) {}
223static inline int dev_pm_qos_expose_flags(struct device *dev, s32 value)
224			{ return 0; }
225static inline void dev_pm_qos_hide_flags(struct device *dev) {}
226static inline int dev_pm_qos_update_flags(struct device *dev, s32 m, bool set)
227			{ return 0; }
228static inline s32 dev_pm_qos_get_user_latency_tolerance(struct device *dev)
229			{ return PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT; }
230static inline int dev_pm_qos_update_user_latency_tolerance(struct device *dev, s32 val)
231			{ return 0; }
232
233static inline s32 dev_pm_qos_requested_resume_latency(struct device *dev) { return 0; }
234static inline s32 dev_pm_qos_requested_flags(struct device *dev) { return 0; }
235#endif
236
237#endif
238