PM / QoS: Prepare device structure for adding more constraint types
[deliverable/linux.git] / include / linux / pm_qos.h
CommitLineData
e8db0be1
JP
1#ifndef _LINUX_PM_QOS_H
2#define _LINUX_PM_QOS_H
d82b3518
MG
3/* interface for the pm_qos_power infrastructure of the linux kernel.
4 *
bf1db69f 5 * Mark Gross <mgross@linux.intel.com>
d82b3518 6 */
82f68251 7#include <linux/plist.h>
d82b3518
MG
8#include <linux/notifier.h>
9#include <linux/miscdevice.h>
1a9a9152 10#include <linux/device.h>
c4772d19 11#include <linux/workqueue.h>
d82b3518 12
d031e1de
AF
13enum {
14 PM_QOS_RESERVED = 0,
15 PM_QOS_CPU_DMA_LATENCY,
16 PM_QOS_NETWORK_LATENCY,
17 PM_QOS_NETWORK_THROUGHPUT,
18
19 /* insert new class ID */
20 PM_QOS_NUM_CLASSES,
21};
d82b3518 22
d82b3518
MG
23#define PM_QOS_DEFAULT_VALUE -1
24
333c5ae9
TC
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
91ff4cb8 28#define PM_QOS_DEV_LAT_DEFAULT_VALUE 0
333c5ae9 29
cc749986
JP
30struct pm_qos_request {
31 struct plist_node node;
82f68251 32 int pm_qos_class;
c4772d19 33 struct delayed_work work; /* for pm_qos_update_request_timeout */
82f68251 34};
d82b3518 35
91ff4cb8
JP
36struct dev_pm_qos_request {
37 struct plist_node node;
38 struct device *dev;
39};
40
4e1779ba
JP
41enum pm_qos_type {
42 PM_QOS_UNITIALIZED,
43 PM_QOS_MAX, /* return the largest value */
44 PM_QOS_MIN /* return the smallest value */
45};
46
47/*
48 * Note: The lockless read path depends on the CPU accessing
49 * target_value atomically. Atomic access is only guaranteed on all CPU
50 * types linux supports for 32 bit quantites
51 */
52struct pm_qos_constraints {
53 struct plist_head list;
54 s32 target_value; /* Do not change to 64 bit */
55 s32 default_value;
56 enum pm_qos_type type;
57 struct blocking_notifier_head *notifiers;
58};
59
5f986c59
RW
60struct dev_pm_qos {
61 struct pm_qos_constraints latency;
62};
63
abe98ec2
JP
64/* Action requested to pm_qos_update_target */
65enum pm_qos_req_action {
66 PM_QOS_ADD_REQ, /* Add a new request */
67 PM_QOS_UPDATE_REQ, /* Update an existing request */
68 PM_QOS_REMOVE_REQ /* Remove an existing request */
69};
70
91ff4cb8
JP
71static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
72{
83618092 73 return req->dev != NULL;
91ff4cb8
JP
74}
75
abe98ec2
JP
76int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
77 enum pm_qos_req_action action, int value);
cc749986
JP
78void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
79 s32 value);
80void pm_qos_update_request(struct pm_qos_request *req,
e8db0be1 81 s32 new_value);
c4772d19
MH
82void pm_qos_update_request_timeout(struct pm_qos_request *req,
83 s32 new_value, unsigned long timeout_us);
cc749986 84void pm_qos_remove_request(struct pm_qos_request *req);
d82b3518 85
ed77134b
MG
86int pm_qos_request(int pm_qos_class);
87int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
88int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
cc749986 89int pm_qos_request_active(struct pm_qos_request *req);
b66213cd 90s32 pm_qos_read_value(struct pm_qos_constraints *c);
91ff4cb8 91
a9b542ee 92#ifdef CONFIG_PM
00dc9ad1 93s32 __dev_pm_qos_read_value(struct device *dev);
1a9a9152 94s32 dev_pm_qos_read_value(struct device *dev);
91ff4cb8
JP
95int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
96 s32 value);
97int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
98int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
99int dev_pm_qos_add_notifier(struct device *dev,
100 struct notifier_block *notifier);
101int dev_pm_qos_remove_notifier(struct device *dev,
102 struct notifier_block *notifier);
b66213cd
JP
103int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
104int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
91ff4cb8
JP
105void dev_pm_qos_constraints_init(struct device *dev);
106void dev_pm_qos_constraints_destroy(struct device *dev);
40a5f8be
RW
107int dev_pm_qos_add_ancestor_request(struct device *dev,
108 struct dev_pm_qos_request *req, s32 value);
e8db0be1 109#else
00dc9ad1
RW
110static inline s32 __dev_pm_qos_read_value(struct device *dev)
111 { return 0; }
1a9a9152
RW
112static inline s32 dev_pm_qos_read_value(struct device *dev)
113 { return 0; }
91ff4cb8
JP
114static inline int dev_pm_qos_add_request(struct device *dev,
115 struct dev_pm_qos_request *req,
116 s32 value)
117 { return 0; }
118static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
119 s32 new_value)
120 { return 0; }
121static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
122 { return 0; }
123static inline int dev_pm_qos_add_notifier(struct device *dev,
124 struct notifier_block *notifier)
125 { return 0; }
126static inline int dev_pm_qos_remove_notifier(struct device *dev,
127 struct notifier_block *notifier)
128 { return 0; }
b66213cd
JP
129static inline int dev_pm_qos_add_global_notifier(
130 struct notifier_block *notifier)
131 { return 0; }
132static inline int dev_pm_qos_remove_global_notifier(
133 struct notifier_block *notifier)
134 { return 0; }
91ff4cb8 135static inline void dev_pm_qos_constraints_init(struct device *dev)
1a9a9152
RW
136{
137 dev->power.power_state = PMSG_ON;
138}
91ff4cb8 139static inline void dev_pm_qos_constraints_destroy(struct device *dev)
1a9a9152
RW
140{
141 dev->power.power_state = PMSG_INVALID;
142}
40a5f8be
RW
143static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
144 struct dev_pm_qos_request *req, s32 value)
145 { return 0; }
e8db0be1 146#endif
d82b3518 147
85dc0b8a
RW
148#ifdef CONFIG_PM_RUNTIME
149int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value);
150void dev_pm_qos_hide_latency_limit(struct device *dev);
151#else
152static inline int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
153 { return 0; }
154static inline void dev_pm_qos_hide_latency_limit(struct device *dev) {}
155#endif
156
82f68251 157#endif
This page took 1.626386 seconds and 5 git commands to generate.