blob: 3b9d14964d2b92016bc36002d4409880857355b9 [file] [log] [blame]
Jean Pihete8db0be2011-08-25 15:35:03 +02001#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>
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +020010#include <linux/device.h>
MyungJoo Hamc4772d12012-03-28 23:31:24 +020011#include <linux/workqueue.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020012
Alex Fridd031e1d2012-01-29 20:39:25 +010013enum {
14 PM_QOS_RESERVED = 0,
15 PM_QOS_CPU_DMA_LATENCY,
16 PM_QOS_NETWORK_LATENCY,
17 PM_QOS_NETWORK_THROUGHPUT,
Jean Pihete8db0be2011-08-25 15:35:03 +020018
Alex Fridd031e1d2012-01-29 20:39:25 +010019 /* insert new class ID */
20 PM_QOS_NUM_CLASSES,
21};
22
Jean Pihete8db0be2011-08-25 15:35:03 +020023#define PM_QOS_DEFAULT_VALUE -1
24
25#define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
26#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
27#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE 0
Jean Pihet91ff4cb2011-08-25 15:35:41 +020028#define PM_QOS_DEV_LAT_DEFAULT_VALUE 0
Jean Pihete8db0be2011-08-25 15:35:03 +020029
Jean Pihetcc749982011-08-25 15:35:12 +020030struct pm_qos_request {
31 struct plist_node node;
Jean Pihete8db0be2011-08-25 15:35:03 +020032 int pm_qos_class;
MyungJoo Hamc4772d12012-03-28 23:31:24 +020033 struct delayed_work work; /* for pm_qos_update_request_timeout */
Jean Pihete8db0be2011-08-25 15:35:03 +020034};
35
Rafael J. Wysocki5efbe422012-10-23 01:07:46 +020036struct pm_qos_flags_request {
37 struct list_head node;
38 s32 flags; /* Do not change to 64 bit */
39};
40
Jean Pihet91ff4cb2011-08-25 15:35:41 +020041struct dev_pm_qos_request {
Rafael J. Wysocki021c8702012-10-23 01:09:00 +020042 union {
43 struct plist_node pnode;
44 } data;
Jean Pihet91ff4cb2011-08-25 15:35:41 +020045 struct device *dev;
46};
47
Jean Pihet4e1779b2011-08-25 15:35:27 +020048enum pm_qos_type {
49 PM_QOS_UNITIALIZED,
50 PM_QOS_MAX, /* return the largest value */
51 PM_QOS_MIN /* return the smallest value */
52};
53
54/*
Rafael J. Wysocki5efbe422012-10-23 01:07:46 +020055 * Note: The lockless read path depends on the CPU accessing target_value
56 * or effective_flags atomically. Atomic access is only guaranteed on all CPU
Jean Pihet4e1779b2011-08-25 15:35:27 +020057 * types linux supports for 32 bit quantites
58 */
59struct pm_qos_constraints {
60 struct plist_head list;
61 s32 target_value; /* Do not change to 64 bit */
62 s32 default_value;
63 enum pm_qos_type type;
64 struct blocking_notifier_head *notifiers;
65};
66
Rafael J. Wysocki5efbe422012-10-23 01:07:46 +020067struct pm_qos_flags {
68 struct list_head list;
69 s32 effective_flags; /* Do not change to 64 bit */
70};
71
Rafael J. Wysocki5f986c52012-10-23 01:07:27 +020072struct dev_pm_qos {
73 struct pm_qos_constraints latency;
74};
75
Jean Pihetabe98ec2011-08-25 15:35:34 +020076/* Action requested to pm_qos_update_target */
77enum pm_qos_req_action {
78 PM_QOS_ADD_REQ, /* Add a new request */
79 PM_QOS_UPDATE_REQ, /* Update an existing request */
80 PM_QOS_REMOVE_REQ /* Remove an existing request */
81};
82
Jean Pihet91ff4cb2011-08-25 15:35:41 +020083static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
84{
Sachin Kamat83618092012-07-17 22:38:18 +020085 return req->dev != NULL;
Jean Pihet91ff4cb2011-08-25 15:35:41 +020086}
87
Jean Pihetabe98ec2011-08-25 15:35:34 +020088int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
89 enum pm_qos_req_action action, int value);
Rafael J. Wysocki5efbe422012-10-23 01:07:46 +020090bool pm_qos_update_flags(struct pm_qos_flags *pqf,
91 struct pm_qos_flags_request *req,
92 enum pm_qos_req_action action, s32 val);
Jean Pihetcc749982011-08-25 15:35:12 +020093void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
94 s32 value);
95void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020096 s32 new_value);
MyungJoo Hamc4772d12012-03-28 23:31:24 +020097void pm_qos_update_request_timeout(struct pm_qos_request *req,
98 s32 new_value, unsigned long timeout_us);
Jean Pihetcc749982011-08-25 15:35:12 +020099void pm_qos_remove_request(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +0200100
101int pm_qos_request(int pm_qos_class);
102int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
103int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
Jean Pihetcc749982011-08-25 15:35:12 +0200104int pm_qos_request_active(struct pm_qos_request *req);
Jean Pihetb66213c2011-08-25 15:35:47 +0200105s32 pm_qos_read_value(struct pm_qos_constraints *c);
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200106
Jean Piheta9b542e2012-02-13 16:23:42 +0100107#ifdef CONFIG_PM
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100108s32 __dev_pm_qos_read_value(struct device *dev);
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200109s32 dev_pm_qos_read_value(struct device *dev);
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200110int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
111 s32 value);
112int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
113int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
114int dev_pm_qos_add_notifier(struct device *dev,
115 struct notifier_block *notifier);
116int dev_pm_qos_remove_notifier(struct device *dev,
117 struct notifier_block *notifier);
Jean Pihetb66213c2011-08-25 15:35:47 +0200118int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
119int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200120void dev_pm_qos_constraints_init(struct device *dev);
121void dev_pm_qos_constraints_destroy(struct device *dev);
Rafael J. Wysocki40a5f8b2011-12-23 01:23:52 +0100122int dev_pm_qos_add_ancestor_request(struct device *dev,
123 struct dev_pm_qos_request *req, s32 value);
Jean Pihete8db0be2011-08-25 15:35:03 +0200124#else
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100125static inline s32 __dev_pm_qos_read_value(struct device *dev)
126 { return 0; }
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200127static inline s32 dev_pm_qos_read_value(struct device *dev)
128 { return 0; }
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200129static inline int dev_pm_qos_add_request(struct device *dev,
130 struct dev_pm_qos_request *req,
131 s32 value)
132 { return 0; }
133static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
134 s32 new_value)
135 { return 0; }
136static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
137 { return 0; }
138static inline int dev_pm_qos_add_notifier(struct device *dev,
139 struct notifier_block *notifier)
140 { return 0; }
141static inline int dev_pm_qos_remove_notifier(struct device *dev,
142 struct notifier_block *notifier)
143 { return 0; }
Jean Pihetb66213c2011-08-25 15:35:47 +0200144static inline int dev_pm_qos_add_global_notifier(
145 struct notifier_block *notifier)
146 { return 0; }
147static inline int dev_pm_qos_remove_global_notifier(
148 struct notifier_block *notifier)
149 { return 0; }
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200150static inline void dev_pm_qos_constraints_init(struct device *dev)
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200151{
152 dev->power.power_state = PMSG_ON;
153}
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200154static inline void dev_pm_qos_constraints_destroy(struct device *dev)
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200155{
156 dev->power.power_state = PMSG_INVALID;
157}
Rafael J. Wysocki40a5f8b2011-12-23 01:23:52 +0100158static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
159 struct dev_pm_qos_request *req, s32 value)
160 { return 0; }
Jean Pihete8db0be2011-08-25 15:35:03 +0200161#endif
162
Rafael J. Wysocki85dc0b82012-03-13 01:01:39 +0100163#ifdef CONFIG_PM_RUNTIME
164int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value);
165void dev_pm_qos_hide_latency_limit(struct device *dev);
166#else
167static inline int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
168 { return 0; }
169static inline void dev_pm_qos_hide_latency_limit(struct device *dev) {}
170#endif
171
Jean Pihete8db0be2011-08-25 15:35:03 +0200172#endif