pm_qos.h 6.2 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_DEV_LAT_DEFAULT_VALUE		0
36

J
Jean Pihet 已提交
37 38
struct pm_qos_request {
	struct plist_node node;
39
	int pm_qos_class;
40
	struct delayed_work work; /* for pm_qos_update_request_timeout */
41
};
M
Mark Gross 已提交
42

43 44 45 46 47
struct pm_qos_flags_request {
	struct list_head node;
	s32 flags;	/* Do not change to 64 bit */
};

48 49 50 51 52
enum dev_pm_qos_req_type {
	DEV_PM_QOS_LATENCY = 1,
	DEV_PM_QOS_FLAGS,
};

53
struct dev_pm_qos_request {
54
	enum dev_pm_qos_req_type type;
55 56
	union {
		struct plist_node pnode;
57
		struct pm_qos_flags_request flr;
58
	} data;
59 60 61
	struct device *dev;
};

J
Jean Pihet 已提交
62 63 64 65 66 67 68
enum pm_qos_type {
	PM_QOS_UNITIALIZED,
	PM_QOS_MAX,		/* return the largest value */
	PM_QOS_MIN		/* return the smallest value */
};

/*
69 70
 * 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 已提交
71 72 73 74 75 76 77 78 79 80
 * 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;
	enum pm_qos_type type;
	struct blocking_notifier_head *notifiers;
};

81 82 83 84 85
struct pm_qos_flags {
	struct list_head list;
	s32 effective_flags;	/* Do not change to 64 bit */
};

86 87
struct dev_pm_qos {
	struct pm_qos_constraints latency;
88
	struct pm_qos_flags flags;
89 90
};

91 92 93 94 95 96 97
/* 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 */
};

98 99
static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
{
100
	return req->dev != NULL;
101 102
}

103 104
int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
			 enum pm_qos_req_action action, int value);
105 106 107
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 已提交
108 109 110
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,
111
			   s32 new_value);
112 113
void pm_qos_update_request_timeout(struct pm_qos_request *req,
				   s32 new_value, unsigned long timeout_us);
J
Jean Pihet 已提交
114
void pm_qos_remove_request(struct pm_qos_request *req);
M
Mark Gross 已提交
115

M
Mark Gross 已提交
116 117 118
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 已提交
119
int pm_qos_request_active(struct pm_qos_request *req);
120
s32 pm_qos_read_value(struct pm_qos_constraints *c);
121

122
#ifdef CONFIG_PM
123 124
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);
125
s32 __dev_pm_qos_read_value(struct device *dev);
126
s32 dev_pm_qos_read_value(struct device *dev);
127
int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
128
			   enum dev_pm_qos_req_type type, s32 value);
129 130 131 132 133 134
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);
135 136
int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
137 138
void dev_pm_qos_constraints_init(struct device *dev);
void dev_pm_qos_constraints_destroy(struct device *dev);
139 140
int dev_pm_qos_add_ancestor_request(struct device *dev,
				    struct dev_pm_qos_request *req, s32 value);
141
#else
142 143 144 145 146 147
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; }
148 149
static inline s32 __dev_pm_qos_read_value(struct device *dev)
			{ return 0; }
150 151
static inline s32 dev_pm_qos_read_value(struct device *dev)
			{ return 0; }
152 153
static inline int dev_pm_qos_add_request(struct device *dev,
					 struct dev_pm_qos_request *req,
154
					 enum dev_pm_qos_req_type type,
155 156 157 158 159 160 161 162 163 164 165 166 167
					 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; }
168 169 170 171 172 173
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; }
174
static inline void dev_pm_qos_constraints_init(struct device *dev)
175 176 177
{
	dev->power.power_state = PMSG_ON;
}
178
static inline void dev_pm_qos_constraints_destroy(struct device *dev)
179 180 181
{
	dev->power.power_state = PMSG_INVALID;
}
182 183 184
static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
				    struct dev_pm_qos_request *req, s32 value)
			{ return 0; }
185
#endif
M
Mark Gross 已提交
186

187 188 189 190 191 192 193 194 195
#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);
#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) {}
#endif

196
#endif