1 /* interface for the pm_qos_power infrastructure of the linux kernel.
3 * Mark Gross <mgross@linux.intel.com>
5 #include <linux/list.h>
6 #include <linux/notifier.h>
7 #include <linux/miscdevice.h>
9 #define PM_QOS_RESERVED 0
10 #define PM_QOS_CPU_DMA_LATENCY 1
11 #define PM_QOS_NETWORK_LATENCY 2
12 #define PM_QOS_NETWORK_THROUGHPUT 3
14 #define PM_QOS_NUM_CLASSES 4
15 #define PM_QOS_DEFAULT_VALUE -1
17 struct pm_qos_request_list
;
19 struct pm_qos_request_list
*pm_qos_add_request(int pm_qos_class
, s32 value
);
20 void pm_qos_update_request(struct pm_qos_request_list
*pm_qos_req
,
22 void pm_qos_remove_request(struct pm_qos_request_list
*pm_qos_req
);
24 int pm_qos_request(int pm_qos_class
);
25 int pm_qos_add_notifier(int pm_qos_class
, struct notifier_block
*notifier
);
26 int pm_qos_remove_notifier(int pm_qos_class
, struct notifier_block
*notifier
);