blob: 84aa15089896eb4111b59f6376e2a33695050f30 [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>
10
11#define PM_QOS_RESERVED 0
12#define PM_QOS_CPU_DMA_LATENCY 1
13#define PM_QOS_NETWORK_LATENCY 2
14#define PM_QOS_NETWORK_THROUGHPUT 3
15
16#define PM_QOS_NUM_CLASSES 4
17#define PM_QOS_DEFAULT_VALUE -1
18
19#define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
20#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
21#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE 0
22
Jean Pihetcc749982011-08-25 15:35:12 +020023struct pm_qos_request {
24 struct plist_node node;
Jean Pihete8db0be2011-08-25 15:35:03 +020025 int pm_qos_class;
26};
27
Jean Pihet4e1779b2011-08-25 15:35:27 +020028enum pm_qos_type {
29 PM_QOS_UNITIALIZED,
30 PM_QOS_MAX, /* return the largest value */
31 PM_QOS_MIN /* return the smallest value */
32};
33
34/*
35 * Note: The lockless read path depends on the CPU accessing
36 * target_value atomically. Atomic access is only guaranteed on all CPU
37 * types linux supports for 32 bit quantites
38 */
39struct pm_qos_constraints {
40 struct plist_head list;
41 s32 target_value; /* Do not change to 64 bit */
42 s32 default_value;
43 enum pm_qos_type type;
44 struct blocking_notifier_head *notifiers;
45};
46
Jean Pihetabe98ec2011-08-25 15:35:34 +020047/* Action requested to pm_qos_update_target */
48enum pm_qos_req_action {
49 PM_QOS_ADD_REQ, /* Add a new request */
50 PM_QOS_UPDATE_REQ, /* Update an existing request */
51 PM_QOS_REMOVE_REQ /* Remove an existing request */
52};
53
Jean Pihete8db0be2011-08-25 15:35:03 +020054#ifdef CONFIG_PM
Jean Pihetabe98ec2011-08-25 15:35:34 +020055int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
56 enum pm_qos_req_action action, int value);
Jean Pihetcc749982011-08-25 15:35:12 +020057void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
58 s32 value);
59void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020060 s32 new_value);
Jean Pihetcc749982011-08-25 15:35:12 +020061void pm_qos_remove_request(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +020062
63int pm_qos_request(int pm_qos_class);
64int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
65int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
Jean Pihetcc749982011-08-25 15:35:12 +020066int pm_qos_request_active(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +020067#else
Jean Pihetabe98ec2011-08-25 15:35:34 +020068static inline int pm_qos_update_target(struct pm_qos_constraints *c,
69 struct plist_node *node,
70 enum pm_qos_req_action action,
71 int value)
72 { return 0; }
Jean Pihetcc749982011-08-25 15:35:12 +020073static inline void pm_qos_add_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020074 int pm_qos_class, s32 value)
75 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +020076static inline void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020077 s32 new_value)
78 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +020079static inline void pm_qos_remove_request(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +020080 { return; }
81
82static inline int pm_qos_request(int pm_qos_class)
83 { return 0; }
84static inline int pm_qos_add_notifier(int pm_qos_class,
85 struct notifier_block *notifier)
86 { return 0; }
87static inline int pm_qos_remove_notifier(int pm_qos_class,
88 struct notifier_block *notifier)
89 { return 0; }
Jean Pihetcc749982011-08-25 15:35:12 +020090static inline int pm_qos_request_active(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +020091 { return 0; }
92#endif
93
94#endif