1 #ifndef _LINUX_PM_QOS_H
2 #define _LINUX_PM_QOS_H
3 /* interface for the pm_qos_power infrastructure of the linux kernel.
7 #include <linux/plist.h>
8 #include <linux/notifier.h>
9 #include <linux/miscdevice.h>
10 #include <linux/device.h>
14 PM_QOS_CPU_DMA_LATENCY,
15 PM_QOS_NETWORK_LATENCY,
16 PM_QOS_NETWORK_THROUGHPUT,
18 /* insert new class ID */
22 #define PM_QOS_DEFAULT_VALUE -1
24 #define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
25 #define PM_QOS_NETWORK_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
26 #define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE 0
27 #define PM_QOS_DEV_LAT_DEFAULT_VALUE 0
29 struct pm_qos_request {
30 struct plist_node node;
34 struct dev_pm_qos_request {
35 struct plist_node node;
41 PM_QOS_MAX, /* return the largest value */
42 PM_QOS_MIN /* return the smallest value */
46 * Note: The lockless read path depends on the CPU accessing
47 * target_value atomically. Atomic access is only guaranteed on all CPU
48 * types linux supports for 32 bit quantites
50 struct pm_qos_constraints {
51 struct plist_head list;
52 s32 target_value; /* Do not change to 64 bit */
54 enum pm_qos_type type;
55 struct blocking_notifier_head *notifiers;
58 /* Action requested to pm_qos_update_target */
59 enum pm_qos_req_action {
60 PM_QOS_ADD_REQ, /* Add a new request */
61 PM_QOS_UPDATE_REQ, /* Update an existing request */
62 PM_QOS_REMOVE_REQ /* Remove an existing request */
65 static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
70 int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
71 enum pm_qos_req_action action, int value);
72 void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
74 void pm_qos_update_request(struct pm_qos_request *req,
76 void pm_qos_remove_request(struct pm_qos_request *req);
78 int pm_qos_request(int pm_qos_class);
79 int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
80 int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
81 int pm_qos_request_active(struct pm_qos_request *req);
82 s32 pm_qos_read_value(struct pm_qos_constraints *c);
85 s32 __dev_pm_qos_read_value(struct device *dev);
86 s32 dev_pm_qos_read_value(struct device *dev);
87 int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
89 int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
90 int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
91 int dev_pm_qos_add_notifier(struct device *dev,
92 struct notifier_block *notifier);
93 int dev_pm_qos_remove_notifier(struct device *dev,
94 struct notifier_block *notifier);
95 int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
96 int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
97 void dev_pm_qos_constraints_init(struct device *dev);
98 void dev_pm_qos_constraints_destroy(struct device *dev);
99 int dev_pm_qos_add_ancestor_request(struct device *dev,
100 struct dev_pm_qos_request *req, s32 value);
102 static inline s32 __dev_pm_qos_read_value(struct device *dev)
104 static inline s32 dev_pm_qos_read_value(struct device *dev)
106 static inline int dev_pm_qos_add_request(struct device *dev,
107 struct dev_pm_qos_request *req,
110 static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
113 static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
115 static inline int dev_pm_qos_add_notifier(struct device *dev,
116 struct notifier_block *notifier)
118 static inline int dev_pm_qos_remove_notifier(struct device *dev,
119 struct notifier_block *notifier)
121 static inline int dev_pm_qos_add_global_notifier(
122 struct notifier_block *notifier)
124 static inline int dev_pm_qos_remove_global_notifier(
125 struct notifier_block *notifier)
127 static inline void dev_pm_qos_constraints_init(struct device *dev)
129 dev->power.power_state = PMSG_ON;
131 static inline void dev_pm_qos_constraints_destroy(struct device *dev)
133 dev->power.power_state = PMSG_INVALID;
135 static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
136 struct dev_pm_qos_request *req, s32 value)
140 #ifdef CONFIG_PM_RUNTIME
141 int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value);
142 void dev_pm_qos_hide_latency_limit(struct device *dev);
144 static inline int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
146 static inline void dev_pm_qos_hide_latency_limit(struct device *dev) {}