power.h 2.5 KB
Newer Older
1 2
#include <linux/pm_qos.h>

3 4 5 6 7 8 9 10 11 12 13
#ifdef CONFIG_PM_RUNTIME

extern void pm_runtime_init(struct device *dev);
extern void pm_runtime_remove(struct device *dev);

#else /* !CONFIG_PM_RUNTIME */

static inline void pm_runtime_init(struct device *dev) {}
static inline void pm_runtime_remove(struct device *dev) {}

#endif /* !CONFIG_PM_RUNTIME */
14

15
#ifdef CONFIG_PM_SLEEP
L
Linus Torvalds 已提交
16

17 18
/* kernel/power/main.c */
extern int pm_async_enabled;
L
Linus Torvalds 已提交
19

20
/* drivers/base/power/main.c */
21
extern struct list_head dpm_list;	/* The active device list */
L
Linus Torvalds 已提交
22

23
static inline struct device *to_device(struct list_head *entry)
L
Linus Torvalds 已提交
24
{
25
	return container_of(entry, struct device, power.entry);
L
Linus Torvalds 已提交
26 27
}

28
extern void device_pm_init(struct device *dev);
29
extern void device_pm_add(struct device *);
L
Linus Torvalds 已提交
30
extern void device_pm_remove(struct device *);
31 32 33
extern void device_pm_move_before(struct device *, struct device *);
extern void device_pm_move_after(struct device *, struct device *);
extern void device_pm_move_last(struct device *);
L
Linus Torvalds 已提交
34

35 36 37 38
#else /* !CONFIG_PM_SLEEP */

static inline void device_pm_init(struct device *dev)
{
39
	spin_lock_init(&dev->power.lock);
40
	dev->power.power_state = PMSG_INVALID;
41 42 43
	pm_runtime_init(dev);
}

44 45 46 47 48
static inline void device_pm_add(struct device *dev)
{
	dev_pm_qos_constraints_init(dev);
}

49 50
static inline void device_pm_remove(struct device *dev)
{
51
	dev_pm_qos_constraints_destroy(dev);
52 53
	pm_runtime_remove(dev);
}
54

55 56 57 58 59
static inline void device_pm_move_before(struct device *deva,
					 struct device *devb) {}
static inline void device_pm_move_after(struct device *deva,
					struct device *devb) {}
static inline void device_pm_move_last(struct device *dev) {}
60

61
#endif /* !CONFIG_PM_SLEEP */
62 63 64

#ifdef CONFIG_PM

L
Linus Torvalds 已提交
65 66 67 68
/*
 * sysfs.c
 */

69 70 71 72 73
extern int dpm_sysfs_add(struct device *dev);
extern void dpm_sysfs_remove(struct device *dev);
extern void rpm_sysfs_remove(struct device *dev);
extern int wakeup_sysfs_add(struct device *dev);
extern void wakeup_sysfs_remove(struct device *dev);
74 75
extern int pm_qos_sysfs_add(struct device *dev);
extern void pm_qos_sysfs_remove(struct device *dev);
L
Linus Torvalds 已提交
76

77
#else /* CONFIG_PM */
L
Linus Torvalds 已提交
78

79 80 81 82 83
static inline int dpm_sysfs_add(struct device *dev) { return 0; }
static inline void dpm_sysfs_remove(struct device *dev) {}
static inline void rpm_sysfs_remove(struct device *dev) {}
static inline int wakeup_sysfs_add(struct device *dev) { return 0; }
static inline void wakeup_sysfs_remove(struct device *dev) {}
84 85
static inline int pm_qos_sysfs_add(struct device *dev) { return 0; }
static inline void pm_qos_sysfs_remove(struct device *dev) {}
L
Linus Torvalds 已提交
86 87

#endif