pm_qos.h 2.9 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 10 11 12 13 14 15 16 17 18
#include <linux/notifier.h>
#include <linux/miscdevice.h>

#define PM_QOS_RESERVED 0
#define PM_QOS_CPU_DMA_LATENCY 1
#define PM_QOS_NETWORK_LATENCY 2
#define PM_QOS_NETWORK_THROUGHPUT 3

#define PM_QOS_NUM_CLASSES 4
#define PM_QOS_DEFAULT_VALUE -1

19 20 21 22
#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

J
Jean Pihet 已提交
23 24
struct pm_qos_request {
	struct plist_node node;
25 26
	int pm_qos_class;
};
M
Mark Gross 已提交
27

J
Jean Pihet 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
enum pm_qos_type {
	PM_QOS_UNITIALIZED,
	PM_QOS_MAX,		/* return the largest value */
	PM_QOS_MIN		/* return the smallest value */
};

/*
 * Note: The lockless read path depends on the CPU accessing
 * target_value atomically.  Atomic access is only guaranteed on all CPU
 * 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;
};

47 48 49 50 51 52 53
/* 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 */
};

54
#ifdef CONFIG_PM
55 56
int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
			 enum pm_qos_req_action action, int value);
J
Jean Pihet 已提交
57 58 59
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,
60
			   s32 new_value);
J
Jean Pihet 已提交
61
void pm_qos_remove_request(struct pm_qos_request *req);
M
Mark Gross 已提交
62

M
Mark Gross 已提交
63 64 65
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 已提交
66
int pm_qos_request_active(struct pm_qos_request *req);
67
#else
68 69 70 71 72
static inline int pm_qos_update_target(struct pm_qos_constraints *c,
				       struct plist_node *node,
				       enum pm_qos_req_action action,
				       int value)
			{ return 0; }
J
Jean Pihet 已提交
73
static inline void pm_qos_add_request(struct pm_qos_request *req,
74 75
				      int pm_qos_class, s32 value)
			{ return; }
J
Jean Pihet 已提交
76
static inline void pm_qos_update_request(struct pm_qos_request *req,
77 78
					 s32 new_value)
			{ return; }
J
Jean Pihet 已提交
79
static inline void pm_qos_remove_request(struct pm_qos_request *req)
80 81 82 83 84 85 86 87 88 89
			{ return; }

static inline int pm_qos_request(int pm_qos_class)
			{ return 0; }
static inline int pm_qos_add_notifier(int pm_qos_class,
				      struct notifier_block *notifier)
			{ return 0; }
static inline int pm_qos_remove_notifier(int pm_qos_class,
					 struct notifier_block *notifier)
			{ return 0; }
J
Jean Pihet 已提交
90
static inline int pm_qos_request_active(struct pm_qos_request *req)
91 92
			{ return 0; }
#endif
M
Mark Gross 已提交
93

94
#endif