power.h 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#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 */
12

13
#ifdef CONFIG_PM_SLEEP
L
Linus Torvalds 已提交
14

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

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

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

26
extern void device_pm_init(struct device *dev);
27
extern void device_pm_add(struct device *);
L
Linus Torvalds 已提交
28
extern void device_pm_remove(struct device *);
29 30 31
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 已提交
32

33 34 35 36
#else /* !CONFIG_PM_SLEEP */

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

static inline void device_pm_remove(struct device *dev)
{
	pm_runtime_remove(dev);
}
45

46
static inline void device_pm_add(struct device *dev) {}
47 48 49 50 51
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) {}
52

53
#endif /* !CONFIG_PM_SLEEP */
54 55 56

#ifdef CONFIG_PM

L
Linus Torvalds 已提交
57 58 59 60 61 62
/*
 * sysfs.c
 */

extern int dpm_sysfs_add(struct device *);
extern void dpm_sysfs_remove(struct device *);
A
Alan Stern 已提交
63
extern void rpm_sysfs_remove(struct device *);
L
Linus Torvalds 已提交
64

65
#else /* CONFIG_PM */
L
Linus Torvalds 已提交
66

67
static inline int dpm_sysfs_add(struct device *dev)
L
Linus Torvalds 已提交
68 69 70 71
{
	return 0;
}

72 73
static inline void dpm_sysfs_remove(struct device *dev)
{
L
Linus Torvalds 已提交
74 75 76
}

#endif