blob: 6b0968f8bc6eafdcf2dd37f5226cecf1a185ecba [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
28#ifdef CONFIG_PM
Jean Pihetcc749982011-08-25 15:35:12 +020029void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
30 s32 value);
31void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020032 s32 new_value);
Jean Pihetcc749982011-08-25 15:35:12 +020033void pm_qos_remove_request(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +020034
35int pm_qos_request(int pm_qos_class);
36int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
37int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
Jean Pihetcc749982011-08-25 15:35:12 +020038int pm_qos_request_active(struct pm_qos_request *req);
Jean Pihete8db0be2011-08-25 15:35:03 +020039#else
Jean Pihetcc749982011-08-25 15:35:12 +020040static inline void pm_qos_add_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020041 int pm_qos_class, s32 value)
42 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +020043static inline void pm_qos_update_request(struct pm_qos_request *req,
Jean Pihete8db0be2011-08-25 15:35:03 +020044 s32 new_value)
45 { return; }
Jean Pihetcc749982011-08-25 15:35:12 +020046static inline void pm_qos_remove_request(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +020047 { return; }
48
49static inline int pm_qos_request(int pm_qos_class)
50 { return 0; }
51static inline int pm_qos_add_notifier(int pm_qos_class,
52 struct notifier_block *notifier)
53 { return 0; }
54static inline int pm_qos_remove_notifier(int pm_qos_class,
55 struct notifier_block *notifier)
56 { return 0; }
Jean Pihetcc749982011-08-25 15:35:12 +020057static inline int pm_qos_request_active(struct pm_qos_request *req)
Jean Pihete8db0be2011-08-25 15:35:03 +020058 { return 0; }
59#endif
60
61#endif