Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Rafael J. Wysocki | 1a9a915 | 2011-09-29 22:29:44 +0200 | [diff] [blame] | 2 | #include <linux/pm_qos.h> |
| 3 | |
Rafael J. Wysocki | e91c11b | 2012-08-06 01:44:28 +0200 | [diff] [blame] | 4 | static inline void device_pm_init_common(struct device *dev) |
| 5 | { |
Rafael J. Wysocki | bed2b42 | 2012-08-06 01:45:11 +0200 | [diff] [blame] | 6 | if (!dev->power.early_init) { |
| 7 | spin_lock_init(&dev->power.lock); |
Rafael J. Wysocki | 37530f2 | 2013-03-04 14:22:57 +0100 | [diff] [blame] | 8 | dev->power.qos = NULL; |
Rafael J. Wysocki | bed2b42 | 2012-08-06 01:45:11 +0200 | [diff] [blame] | 9 | dev->power.early_init = true; |
| 10 | } |
Rafael J. Wysocki | e91c11b | 2012-08-06 01:44:28 +0200 | [diff] [blame] | 11 | } |
| 12 | |
Rafael J. Wysocki | d30d819 | 2014-11-27 22:38:05 +0100 | [diff] [blame] | 13 | #ifdef CONFIG_PM |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 14 | |
Rafael J. Wysocki | bed2b42 | 2012-08-06 01:45:11 +0200 | [diff] [blame] | 15 | static inline void pm_runtime_early_init(struct device *dev) |
| 16 | { |
| 17 | dev->power.disable_depth = 1; |
| 18 | device_pm_init_common(dev); |
| 19 | } |
| 20 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 21 | extern void pm_runtime_init(struct device *dev); |
Ulf Hansson | 5de85b9d | 2015-11-18 11:48:39 +0100 | [diff] [blame] | 22 | extern void pm_runtime_reinit(struct device *dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 23 | extern void pm_runtime_remove(struct device *dev); |
| 24 | |
Tony Lindgren | bed5703 | 2016-12-05 16:38:16 -0800 | [diff] [blame] | 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 | |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 30 | struct wake_irq { |
| 31 | struct device *dev; |
Tony Lindgren | bed5703 | 2016-12-05 16:38:16 -0800 | [diff] [blame] | 32 | unsigned int status; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 33 | int irq; |
Tony Lindgren | da997b2 | 2018-02-08 08:30:10 -0800 | [diff] [blame] | 34 | const char *name; |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | extern void dev_pm_arm_wake_irq(struct wake_irq *wirq); |
| 38 | extern void dev_pm_disarm_wake_irq(struct wake_irq *wirq); |
Tony Lindgren | bed5703 | 2016-12-05 16:38:16 -0800 | [diff] [blame] | 39 | extern void dev_pm_enable_wake_irq_check(struct device *dev, |
| 40 | bool can_change_status); |
| 41 | extern void dev_pm_disable_wake_irq_check(struct device *dev); |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 42 | |
| 43 | #ifdef CONFIG_PM_SLEEP |
| 44 | |
Rafael J. Wysocki | 7bf4e59 | 2018-01-05 02:18:42 +0100 | [diff] [blame] | 45 | extern void device_wakeup_attach_irq(struct device *dev, struct wake_irq *wakeirq); |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 46 | extern void device_wakeup_detach_irq(struct device *dev); |
| 47 | extern void device_wakeup_arm_wake_irqs(void); |
| 48 | extern void device_wakeup_disarm_wake_irqs(void); |
| 49 | |
| 50 | #else |
| 51 | |
Rafael J. Wysocki | 7bf4e59 | 2018-01-05 02:18:42 +0100 | [diff] [blame] | 52 | static inline void device_wakeup_attach_irq(struct device *dev, |
| 53 | struct wake_irq *wakeirq) {} |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 54 | |
| 55 | static inline void device_wakeup_detach_irq(struct device *dev) |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | static inline void device_wakeup_arm_wake_irqs(void) |
| 60 | { |
| 61 | } |
| 62 | |
| 63 | static inline void device_wakeup_disarm_wake_irqs(void) |
| 64 | { |
| 65 | } |
| 66 | |
| 67 | #endif /* CONFIG_PM_SLEEP */ |
| 68 | |
Rafael J. Wysocki | d30d819 | 2014-11-27 22:38:05 +0100 | [diff] [blame] | 69 | /* |
| 70 | * sysfs.c |
| 71 | */ |
| 72 | |
| 73 | extern int dpm_sysfs_add(struct device *dev); |
| 74 | extern void dpm_sysfs_remove(struct device *dev); |
| 75 | extern void rpm_sysfs_remove(struct device *dev); |
| 76 | extern int wakeup_sysfs_add(struct device *dev); |
| 77 | extern void wakeup_sysfs_remove(struct device *dev); |
| 78 | extern int pm_qos_sysfs_add_resume_latency(struct device *dev); |
| 79 | extern void pm_qos_sysfs_remove_resume_latency(struct device *dev); |
| 80 | extern int pm_qos_sysfs_add_flags(struct device *dev); |
| 81 | extern void pm_qos_sysfs_remove_flags(struct device *dev); |
Mika Westerberg | 13b2c4a | 2015-07-27 18:03:56 +0300 | [diff] [blame] | 82 | extern int pm_qos_sysfs_add_latency_tolerance(struct device *dev); |
| 83 | extern void pm_qos_sysfs_remove_latency_tolerance(struct device *dev); |
Rafael J. Wysocki | d30d819 | 2014-11-27 22:38:05 +0100 | [diff] [blame] | 84 | |
| 85 | #else /* CONFIG_PM */ |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 86 | |
Rafael J. Wysocki | bed2b42 | 2012-08-06 01:45:11 +0200 | [diff] [blame] | 87 | static inline void pm_runtime_early_init(struct device *dev) |
| 88 | { |
| 89 | device_pm_init_common(dev); |
| 90 | } |
| 91 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 92 | static inline void pm_runtime_init(struct device *dev) {} |
Ulf Hansson | 5de85b9d | 2015-11-18 11:48:39 +0100 | [diff] [blame] | 93 | static inline void pm_runtime_reinit(struct device *dev) {} |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 94 | static inline void pm_runtime_remove(struct device *dev) {} |
| 95 | |
Rafael J. Wysocki | d30d819 | 2014-11-27 22:38:05 +0100 | [diff] [blame] | 96 | static inline int dpm_sysfs_add(struct device *dev) { return 0; } |
| 97 | static inline void dpm_sysfs_remove(struct device *dev) {} |
| 98 | static inline void rpm_sysfs_remove(struct device *dev) {} |
| 99 | static inline int wakeup_sysfs_add(struct device *dev) { return 0; } |
| 100 | static inline void wakeup_sysfs_remove(struct device *dev) {} |
| 101 | static inline int pm_qos_sysfs_add(struct device *dev) { return 0; } |
| 102 | static inline void pm_qos_sysfs_remove(struct device *dev) {} |
| 103 | |
Tony Lindgren | 4990d4f | 2015-05-18 15:40:29 -0700 | [diff] [blame] | 104 | static inline void dev_pm_arm_wake_irq(struct wake_irq *wirq) |
| 105 | { |
| 106 | } |
| 107 | |
| 108 | static inline void dev_pm_disarm_wake_irq(struct wake_irq *wirq) |
| 109 | { |
| 110 | } |
| 111 | |
Tony Lindgren | bed5703 | 2016-12-05 16:38:16 -0800 | [diff] [blame] | 112 | static inline void dev_pm_enable_wake_irq_check(struct device *dev, |
| 113 | bool can_change_status) |
| 114 | { |
| 115 | } |
| 116 | |
| 117 | static inline void dev_pm_disable_wake_irq_check(struct device *dev) |
| 118 | { |
| 119 | } |
| 120 | |
Rafael J. Wysocki | d30d819 | 2014-11-27 22:38:05 +0100 | [diff] [blame] | 121 | #endif |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 122 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 123 | #ifdef CONFIG_PM_SLEEP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Rafael J. Wysocki | 0e06b4a | 2010-01-23 22:25:15 +0100 | [diff] [blame] | 125 | /* kernel/power/main.c */ |
| 126 | extern int pm_async_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Rafael J. Wysocki | 0e06b4a | 2010-01-23 22:25:15 +0100 | [diff] [blame] | 128 | /* drivers/base/power/main.c */ |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 129 | extern struct list_head dpm_list; /* The active device list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Daniel Drake | dec13c1 | 2007-11-21 14:55:18 -0800 | [diff] [blame] | 131 | static inline struct device *to_device(struct list_head *entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Alan Stern | cd59abf | 2007-09-21 15:36:56 -0400 | [diff] [blame] | 133 | return container_of(entry, struct device, power.entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Rafael J. Wysocki | e91c11b | 2012-08-06 01:44:28 +0200 | [diff] [blame] | 136 | extern void device_pm_sleep_init(struct device *dev); |
Alan Stern | 3b98aea | 2008-08-07 13:06:12 -0400 | [diff] [blame] | 137 | extern void device_pm_add(struct device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | extern void device_pm_remove(struct device *); |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 139 | extern void device_pm_move_before(struct device *, struct device *); |
| 140 | extern void device_pm_move_after(struct device *, struct device *); |
| 141 | extern void device_pm_move_last(struct device *); |
Tomeu Vizoso | aa8e54b5 | 2016-01-07 16:46:14 +0100 | [diff] [blame] | 142 | extern void device_pm_check_callbacks(struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 144 | static inline bool device_pm_initialized(struct device *dev) |
| 145 | { |
| 146 | return dev->power.in_dpm_list; |
| 147 | } |
| 148 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 149 | #else /* !CONFIG_PM_SLEEP */ |
| 150 | |
Rafael J. Wysocki | e91c11b | 2012-08-06 01:44:28 +0200 | [diff] [blame] | 151 | static inline void device_pm_sleep_init(struct device *dev) {} |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 152 | |
Rafael J. Wysocki | 37530f2 | 2013-03-04 14:22:57 +0100 | [diff] [blame] | 153 | static inline void device_pm_add(struct device *dev) {} |
Rafael J. Wysocki | 1a9a915 | 2011-09-29 22:29:44 +0200 | [diff] [blame] | 154 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 155 | static inline void device_pm_remove(struct device *dev) |
| 156 | { |
| 157 | pm_runtime_remove(dev); |
| 158 | } |
Daniel Drake | dec13c1 | 2007-11-21 14:55:18 -0800 | [diff] [blame] | 159 | |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 160 | static inline void device_pm_move_before(struct device *deva, |
| 161 | struct device *devb) {} |
| 162 | static inline void device_pm_move_after(struct device *deva, |
| 163 | struct device *devb) {} |
| 164 | static inline void device_pm_move_last(struct device *dev) {} |
Rafael J. Wysocki | 775b64d | 2008-01-12 20:40:46 +0100 | [diff] [blame] | 165 | |
Tomeu Vizoso | aa8e54b5 | 2016-01-07 16:46:14 +0100 | [diff] [blame] | 166 | static inline void device_pm_check_callbacks(struct device *dev) {} |
| 167 | |
Rafael J. Wysocki | 9ed9895 | 2016-10-30 17:32:16 +0100 | [diff] [blame] | 168 | static inline bool device_pm_initialized(struct device *dev) |
| 169 | { |
| 170 | return device_is_registered(dev); |
| 171 | } |
| 172 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 173 | #endif /* !CONFIG_PM_SLEEP */ |
Daniel Drake | dec13c1 | 2007-11-21 14:55:18 -0800 | [diff] [blame] | 174 | |
Rafael J. Wysocki | e91c11b | 2012-08-06 01:44:28 +0200 | [diff] [blame] | 175 | static 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 | } |