usb: xhci-plat: properly handle probe deferral for devm_clk_get()
[linux/fpc-iii.git] / drivers / base / power / power.h
blob50e30e7b059d18a034c80b2a71fd846a098189a1
1 #include <linux/pm_qos.h>
3 static inline void device_pm_init_common(struct device *dev)
5 if (!dev->power.early_init) {
6 spin_lock_init(&dev->power.lock);
7 dev->power.qos = NULL;
8 dev->power.early_init = true;
12 #ifdef CONFIG_PM
14 static inline void pm_runtime_early_init(struct device *dev)
16 dev->power.disable_depth = 1;
17 device_pm_init_common(dev);
20 extern void pm_runtime_init(struct device *dev);
21 extern void pm_runtime_reinit(struct device *dev);
22 extern void pm_runtime_remove(struct device *dev);
24 struct wake_irq {
25 struct device *dev;
26 int irq;
27 bool dedicated_irq:1;
30 extern void dev_pm_arm_wake_irq(struct wake_irq *wirq);
31 extern void dev_pm_disarm_wake_irq(struct wake_irq *wirq);
33 #ifdef CONFIG_PM_SLEEP
35 extern int device_wakeup_attach_irq(struct device *dev,
36 struct wake_irq *wakeirq);
37 extern void device_wakeup_detach_irq(struct device *dev);
38 extern void device_wakeup_arm_wake_irqs(void);
39 extern void device_wakeup_disarm_wake_irqs(void);
41 #else
43 static inline int
44 device_wakeup_attach_irq(struct device *dev,
45 struct wake_irq *wakeirq)
47 return 0;
50 static inline void device_wakeup_detach_irq(struct device *dev)
54 static inline void device_wakeup_arm_wake_irqs(void)
58 static inline void device_wakeup_disarm_wake_irqs(void)
62 #endif /* CONFIG_PM_SLEEP */
65 * sysfs.c
68 extern int dpm_sysfs_add(struct device *dev);
69 extern void dpm_sysfs_remove(struct device *dev);
70 extern void rpm_sysfs_remove(struct device *dev);
71 extern int wakeup_sysfs_add(struct device *dev);
72 extern void wakeup_sysfs_remove(struct device *dev);
73 extern int pm_qos_sysfs_add_resume_latency(struct device *dev);
74 extern void pm_qos_sysfs_remove_resume_latency(struct device *dev);
75 extern int pm_qos_sysfs_add_flags(struct device *dev);
76 extern void pm_qos_sysfs_remove_flags(struct device *dev);
77 extern int pm_qos_sysfs_add_latency_tolerance(struct device *dev);
78 extern void pm_qos_sysfs_remove_latency_tolerance(struct device *dev);
80 #else /* CONFIG_PM */
82 static inline void pm_runtime_early_init(struct device *dev)
84 device_pm_init_common(dev);
87 static inline void pm_runtime_init(struct device *dev) {}
88 static inline void pm_runtime_reinit(struct device *dev) {}
89 static inline void pm_runtime_remove(struct device *dev) {}
91 static inline int dpm_sysfs_add(struct device *dev) { return 0; }
92 static inline void dpm_sysfs_remove(struct device *dev) {}
93 static inline void rpm_sysfs_remove(struct device *dev) {}
94 static inline int wakeup_sysfs_add(struct device *dev) { return 0; }
95 static inline void wakeup_sysfs_remove(struct device *dev) {}
96 static inline int pm_qos_sysfs_add(struct device *dev) { return 0; }
97 static inline void pm_qos_sysfs_remove(struct device *dev) {}
99 static inline void dev_pm_arm_wake_irq(struct wake_irq *wirq)
103 static inline void dev_pm_disarm_wake_irq(struct wake_irq *wirq)
107 #endif
109 #ifdef CONFIG_PM_SLEEP
111 /* kernel/power/main.c */
112 extern int pm_async_enabled;
114 /* drivers/base/power/main.c */
115 extern struct list_head dpm_list; /* The active device list */
117 static inline struct device *to_device(struct list_head *entry)
119 return container_of(entry, struct device, power.entry);
122 extern void device_pm_sleep_init(struct device *dev);
123 extern void device_pm_add(struct device *);
124 extern void device_pm_remove(struct device *);
125 extern void device_pm_move_before(struct device *, struct device *);
126 extern void device_pm_move_after(struct device *, struct device *);
127 extern void device_pm_move_last(struct device *);
128 extern void device_pm_check_callbacks(struct device *dev);
130 #else /* !CONFIG_PM_SLEEP */
132 static inline void device_pm_sleep_init(struct device *dev) {}
134 static inline void device_pm_add(struct device *dev) {}
136 static inline void device_pm_remove(struct device *dev)
138 pm_runtime_remove(dev);
141 static inline void device_pm_move_before(struct device *deva,
142 struct device *devb) {}
143 static inline void device_pm_move_after(struct device *deva,
144 struct device *devb) {}
145 static inline void device_pm_move_last(struct device *dev) {}
147 static inline void device_pm_check_callbacks(struct device *dev) {}
149 #endif /* !CONFIG_PM_SLEEP */
151 static inline void device_pm_init(struct device *dev)
153 device_pm_init_common(dev);
154 device_pm_sleep_init(dev);
155 pm_runtime_init(dev);