Linux Audio

Check our new training course

Loading...
v3.1
 1#ifdef CONFIG_PM_RUNTIME
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 2
 3extern void pm_runtime_init(struct device *dev);
 
 4extern void pm_runtime_remove(struct device *dev);
 5
 6#else /* !CONFIG_PM_RUNTIME */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 7
 8static inline void pm_runtime_init(struct device *dev) {}
 
 9static inline void pm_runtime_remove(struct device *dev) {}
10
11#endif /* !CONFIG_PM_RUNTIME */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
13#ifdef CONFIG_PM_SLEEP
14
15/* kernel/power/main.c */
16extern int pm_async_enabled;
17
18/* drivers/base/power/main.c */
19extern struct list_head dpm_list;	/* The active device list */
20
21static inline struct device *to_device(struct list_head *entry)
22{
23	return container_of(entry, struct device, power.entry);
24}
25
26extern void device_pm_init(struct device *dev);
27extern void device_pm_add(struct device *);
28extern void device_pm_remove(struct device *);
29extern void device_pm_move_before(struct device *, struct device *);
30extern void device_pm_move_after(struct device *, struct device *);
31extern void device_pm_move_last(struct device *);
 
32
33#else /* !CONFIG_PM_SLEEP */
34
35static inline void device_pm_init(struct device *dev)
36{
37	spin_lock_init(&dev->power.lock);
38	pm_runtime_init(dev);
39}
40
 
 
 
 
 
 
41static inline void device_pm_remove(struct device *dev)
42{
43	pm_runtime_remove(dev);
44}
45
46static inline void device_pm_add(struct device *dev) {}
47static inline void device_pm_move_before(struct device *deva,
48					 struct device *devb) {}
49static inline void device_pm_move_after(struct device *deva,
50					struct device *devb) {}
51static inline void device_pm_move_last(struct device *dev) {}
52
53#endif /* !CONFIG_PM_SLEEP */
54
55#ifdef CONFIG_PM
56
57/*
58 * sysfs.c
59 */
60
61extern int dpm_sysfs_add(struct device *dev);
62extern void dpm_sysfs_remove(struct device *dev);
63extern void rpm_sysfs_remove(struct device *dev);
64extern int wakeup_sysfs_add(struct device *dev);
65extern void wakeup_sysfs_remove(struct device *dev);
66
67#else /* CONFIG_PM */
68
69static inline int dpm_sysfs_add(struct device *dev) { return 0; }
70static inline void dpm_sysfs_remove(struct device *dev) {}
71static inline void rpm_sysfs_remove(struct device *dev) {}
72static inline int wakeup_sysfs_add(struct device *dev) { return 0; }
73static inline void wakeup_sysfs_remove(struct device *dev) {}
74
75#endif
 
 
 
 
 
v4.17
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#include <linux/pm_qos.h>
  3
  4static inline void device_pm_init_common(struct device *dev)
  5{
  6	if (!dev->power.early_init) {
  7		spin_lock_init(&dev->power.lock);
  8		dev->power.qos = NULL;
  9		dev->power.early_init = true;
 10	}
 11}
 12
 13#ifdef CONFIG_PM
 14
 15static inline void pm_runtime_early_init(struct device *dev)
 16{
 17	dev->power.disable_depth = 1;
 18	device_pm_init_common(dev);
 19}
 20
 21extern void pm_runtime_init(struct device *dev);
 22extern void pm_runtime_reinit(struct device *dev);
 23extern void pm_runtime_remove(struct device *dev);
 24
 25#define WAKE_IRQ_DEDICATED_ALLOCATED	BIT(0)
 26#define WAKE_IRQ_DEDICATED_MANAGED	BIT(1)
 27#define WAKE_IRQ_DEDICATED_MASK		(WAKE_IRQ_DEDICATED_ALLOCATED | \
 28					 WAKE_IRQ_DEDICATED_MANAGED)
 29
 30struct wake_irq {
 31	struct device *dev;
 32	unsigned int status;
 33	int irq;
 34	const char *name;
 35};
 36
 37extern void dev_pm_arm_wake_irq(struct wake_irq *wirq);
 38extern void dev_pm_disarm_wake_irq(struct wake_irq *wirq);
 39extern void dev_pm_enable_wake_irq_check(struct device *dev,
 40					 bool can_change_status);
 41extern void dev_pm_disable_wake_irq_check(struct device *dev);
 42
 43#ifdef CONFIG_PM_SLEEP
 44
 45extern void device_wakeup_attach_irq(struct device *dev, struct wake_irq *wakeirq);
 46extern void device_wakeup_detach_irq(struct device *dev);
 47extern void device_wakeup_arm_wake_irqs(void);
 48extern void device_wakeup_disarm_wake_irqs(void);
 49
 50#else
 51
 52static inline void device_wakeup_attach_irq(struct device *dev,
 53					    struct wake_irq *wakeirq) {}
 54
 55static inline void device_wakeup_detach_irq(struct device *dev)
 56{
 57}
 58
 59static inline void device_wakeup_arm_wake_irqs(void)
 60{
 61}
 62
 63static inline void device_wakeup_disarm_wake_irqs(void)
 64{
 65}
 66
 67#endif /* CONFIG_PM_SLEEP */
 68
 69/*
 70 * sysfs.c
 71 */
 72
 73extern int dpm_sysfs_add(struct device *dev);
 74extern void dpm_sysfs_remove(struct device *dev);
 75extern void rpm_sysfs_remove(struct device *dev);
 76extern int wakeup_sysfs_add(struct device *dev);
 77extern void wakeup_sysfs_remove(struct device *dev);
 78extern int pm_qos_sysfs_add_resume_latency(struct device *dev);
 79extern void pm_qos_sysfs_remove_resume_latency(struct device *dev);
 80extern int pm_qos_sysfs_add_flags(struct device *dev);
 81extern void pm_qos_sysfs_remove_flags(struct device *dev);
 82extern int pm_qos_sysfs_add_latency_tolerance(struct device *dev);
 83extern void pm_qos_sysfs_remove_latency_tolerance(struct device *dev);
 84
 85#else /* CONFIG_PM */
 86
 87static inline void pm_runtime_early_init(struct device *dev)
 88{
 89	device_pm_init_common(dev);
 90}
 91
 92static inline void pm_runtime_init(struct device *dev) {}
 93static inline void pm_runtime_reinit(struct device *dev) {}
 94static inline void pm_runtime_remove(struct device *dev) {}
 95
 96static inline int dpm_sysfs_add(struct device *dev) { return 0; }
 97static inline void dpm_sysfs_remove(struct device *dev) {}
 98static inline void rpm_sysfs_remove(struct device *dev) {}
 99static inline int wakeup_sysfs_add(struct device *dev) { return 0; }
100static inline void wakeup_sysfs_remove(struct device *dev) {}
101static inline int pm_qos_sysfs_add(struct device *dev) { return 0; }
102static inline void pm_qos_sysfs_remove(struct device *dev) {}
103
104static inline void dev_pm_arm_wake_irq(struct wake_irq *wirq)
105{
106}
107
108static inline void dev_pm_disarm_wake_irq(struct wake_irq *wirq)
109{
110}
111
112static inline void dev_pm_enable_wake_irq_check(struct device *dev,
113						bool can_change_status)
114{
115}
116
117static inline void dev_pm_disable_wake_irq_check(struct device *dev)
118{
119}
120
121#endif
122
123#ifdef CONFIG_PM_SLEEP
124
125/* kernel/power/main.c */
126extern int pm_async_enabled;
127
128/* drivers/base/power/main.c */
129extern struct list_head dpm_list;	/* The active device list */
130
131static inline struct device *to_device(struct list_head *entry)
132{
133	return container_of(entry, struct device, power.entry);
134}
135
136extern void device_pm_sleep_init(struct device *dev);
137extern void device_pm_add(struct device *);
138extern void device_pm_remove(struct device *);
139extern void device_pm_move_before(struct device *, struct device *);
140extern void device_pm_move_after(struct device *, struct device *);
141extern void device_pm_move_last(struct device *);
142extern void device_pm_check_callbacks(struct device *dev);
143
144static inline bool device_pm_initialized(struct device *dev)
 
 
145{
146	return dev->power.in_dpm_list;
 
147}
148
149#else /* !CONFIG_PM_SLEEP */
150
151static inline void device_pm_sleep_init(struct device *dev) {}
152
153static inline void device_pm_add(struct device *dev) {}
154
155static inline void device_pm_remove(struct device *dev)
156{
157	pm_runtime_remove(dev);
158}
159
 
160static inline void device_pm_move_before(struct device *deva,
161					 struct device *devb) {}
162static inline void device_pm_move_after(struct device *deva,
163					struct device *devb) {}
164static inline void device_pm_move_last(struct device *dev) {}
165
166static inline void device_pm_check_callbacks(struct device *dev) {}
 
 
167
168static inline bool device_pm_initialized(struct device *dev)
169{
170	return device_is_registered(dev);
171}
 
 
 
 
 
 
 
172
173#endif /* !CONFIG_PM_SLEEP */
 
 
 
 
174
175static inline void device_pm_init(struct device *dev)
176{
177	device_pm_init_common(dev);
178	device_pm_sleep_init(dev);
179	pm_runtime_init(dev);
180}