blob: 5ac91d8e69de32ec09c5ed1c63467ed86f4aec30 [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>
Jean Pihete8db0be2011-08-25 15:35:03 +020011
Alex Fridd031e1d2012-01-29 20:39:25 +010012enum {
13 PM_QOS_RESERVED = 0,
14 PM_QOS_CPU_DMA_LATENCY,
15 PM_QOS_NETWORK_LATENCY,
16 PM_QOS_NETWORK_THROUGHPUT,
Jean Pihete8db0be2011-08-25 15:35:03 +020017
Alex Fridd031e1d2012-01-29 20:39:25 +010018 /* insert new class ID */
19 PM_QOS_NUM_CLASSES,
20};
21
Jean Pihete8db0be2011-08-25 15:35:03 +020022#define PM_QOS_DEFAULT_VALUE -1
23
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
Jean Pihet91ff4cb2011-08-25 15:35:41 +020027#define PM_QOS_DEV_LAT_DEFAULT_VALUE 0
Jean Pihete8db0be2011-08-25 15:35:03 +020028
Jean Pihetcc749982011-08-25 15:35:12 +020029struct pm_qos_request {
30 struct plist_node node;
Jean Pihete8db0be2011-08-25 15:35:03 +020031 int pm_qos_class;
32};
33
Jean Pihet91ff4cb2011-08-25 15:35:41 +020034struct dev_pm_qos_request {
35 struct plist_node node;
36 struct device *dev;
37};
38
Jean Pihet4e1779b2011-08-25 15:35:27 +020039enum pm_qos_type {
40 PM_QOS_UNITIALIZED,
41 PM_QOS_MAX, /* return the largest value */
42 PM_QOS_MIN /* return the smallest value */
43};
44
45/*
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
49 */
50struct pm_qos_constraints {
51 struct plist_head list;
52 s32 target_value; /* Do not change to 64 bit */
53 s32 default_value;
54 enum pm_qos_type type;
55 struct blocking_notifier_head *notifiers;
56};
57
Jean Pihetabe98ec2011-08-25 15:35:34 +020058/* Action requested to pm_qos_update_target */
59enum 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 */
63};
64
Jean Pihet91ff4cb2011-08-25 15:35:41 +020065static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
66{
67 return req->dev != 0;
68}
69
Jean Pihete8db0be2011-08-25 15:35:03 +020070#ifdef CONFIG_PM
Jean Pihetabe98ec2011-08-25 15:35:34 +020071int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
72 enum pm_qos_req_action action, int value);
Jean Pihetcc749982011-08-25 15:35:12 +020073void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
74 s32 value);
75void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020076 s32 new_value);
Jean Pihetcc749982011-08-25 15:35:12 +020077void pm_qos_remove_request(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +020078
79int pm_qos_request(int pm_qos_class);
80int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
81int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
Jean Pihetcc749982011-08-25 15:35:12 +020082int pm_qos_request_active(struct pm_qos_request *req);
Jean Pihetb66213c2011-08-25 15:35:47 +020083s32 pm_qos_read_value(struct pm_qos_constraints *c);
Jean Pihet91ff4cb2011-08-25 15:35:41 +020084
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +010085s32 __dev_pm_qos_read_value(struct device *dev);
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +020086s32 dev_pm_qos_read_value(struct device *dev);
Jean Pihet91ff4cb2011-08-25 15:35:41 +020087int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
88 s32 value);
89int dev_pm_qos_update_request(struct dev_pm_qos_request *req, s32 new_value);
90int dev_pm_qos_remove_request(struct dev_pm_qos_request *req);
91int dev_pm_qos_add_notifier(struct device *dev,
92 struct notifier_block *notifier);
93int dev_pm_qos_remove_notifier(struct device *dev,
94 struct notifier_block *notifier);
Jean Pihetb66213c2011-08-25 15:35:47 +020095int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
96int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
Jean Pihet91ff4cb2011-08-25 15:35:41 +020097void dev_pm_qos_constraints_init(struct device *dev);
98void dev_pm_qos_constraints_destroy(struct device *dev);
Rafael J. Wysocki40a5f8b2011-12-23 01:23:52 +010099int dev_pm_qos_add_ancestor_request(struct device *dev,
100 struct dev_pm_qos_request *req, s32 value);
Jean Pihete8db0be2011-08-25 15:35:03 +0200101#else
Jean Pihetabe98ec2011-08-25 15:35:34 +0200102static inline int pm_qos_update_target(struct pm_qos_constraints *c,
103 struct plist_node *node,
104 enum pm_qos_req_action action,
105 int value)
106 { return 0; }
Jean Pihetcc749982011-08-25 15:35:12 +0200107static inline void pm_qos_add_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +0200108 int pm_qos_class, s32 value)
109 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +0200110static inline void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +0200111 s32 new_value)
112 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +0200113static inline void pm_qos_remove_request(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +0200114 { return; }
115
116static inline int pm_qos_request(int pm_qos_class)
117 { return 0; }
118static inline int pm_qos_add_notifier(int pm_qos_class,
119 struct notifier_block *notifier)
120 { return 0; }
121static inline int pm_qos_remove_notifier(int pm_qos_class,
122 struct notifier_block *notifier)
123 { return 0; }
Jean Pihetcc749982011-08-25 15:35:12 +0200124static inline int pm_qos_request_active(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +0200125 { return 0; }
Jean Pihetb66213c2011-08-25 15:35:47 +0200126static inline s32 pm_qos_read_value(struct pm_qos_constraints *c)
127 { return 0; }
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200128
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100129static inline s32 __dev_pm_qos_read_value(struct device *dev)
130 { return 0; }
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200131static inline s32 dev_pm_qos_read_value(struct device *dev)
132 { return 0; }
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200133static inline int dev_pm_qos_add_request(struct device *dev,
134 struct dev_pm_qos_request *req,
135 s32 value)
136 { return 0; }
137static inline int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
138 s32 new_value)
139 { return 0; }
140static inline int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
141 { return 0; }
142static inline int dev_pm_qos_add_notifier(struct device *dev,
143 struct notifier_block *notifier)
144 { return 0; }
145static inline int dev_pm_qos_remove_notifier(struct device *dev,
146 struct notifier_block *notifier)
147 { return 0; }
Jean Pihetb66213c2011-08-25 15:35:47 +0200148static inline int dev_pm_qos_add_global_notifier(
149 struct notifier_block *notifier)
150 { return 0; }
151static inline int dev_pm_qos_remove_global_notifier(
152 struct notifier_block *notifier)
153 { return 0; }
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200154static inline void dev_pm_qos_constraints_init(struct device *dev)
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200155{
156 dev->power.power_state = PMSG_ON;
157}
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200158static inline void dev_pm_qos_constraints_destroy(struct device *dev)
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200159{
160 dev->power.power_state = PMSG_INVALID;
161}
Rafael J. Wysocki40a5f8b2011-12-23 01:23:52 +0100162static inline int dev_pm_qos_add_ancestor_request(struct device *dev,
163 struct dev_pm_qos_request *req, s32 value)
164 { return 0; }
Jean Pihete8db0be2011-08-25 15:35:03 +0200165#endif
166
167#endif