2 * pm.c - Power management interface
4 * Copyright (C) 2000 Andrew Henroid
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/spinlock.h>
24 #include <linux/slab.h>
26 #include <linux/pm_legacy.h>
27 #include <linux/interrupt.h>
33 * pm_devs_lock can be a semaphore providing pm ops are not called
34 * from an interrupt handler (already a bad idea so no change here). Each
35 * change must be protected so that an unlink of an entry doesn't clash
36 * with a pm send - which is permitted to sleep in the current architecture
38 * Module unloads clashing with pm events now work out safely, the module
39 * unload path will block until the event has been sent. It may well block
40 * until a resume but that will be fine.
43 static DECLARE_MUTEX(pm_devs_lock
);
44 static LIST_HEAD(pm_devs
);
47 * pm_register - register a device with power management
50 * @callback: callback function
52 * Add a device to the list of devices that wish to be notified about
53 * power management events. A &pm_dev structure is returned on success,
54 * on failure the return is %NULL.
56 * The callback function will be called in process context and
60 struct pm_dev
*pm_register(pm_dev_t type
,
64 struct pm_dev
*dev
= kzalloc(sizeof(struct pm_dev
), GFP_KERNEL
);
68 dev
->callback
= callback
;
71 list_add(&dev
->entry
, &pm_devs
);
78 * pm_unregister - unregister a device with power management
79 * @dev: device to unregister
81 * Remove a device from the power management notification lists. The
82 * dev passed must be a handle previously returned by pm_register.
85 void pm_unregister(struct pm_dev
*dev
)
89 list_del(&dev
->entry
);
96 static void __pm_unregister(struct pm_dev
*dev
)
99 list_del(&dev
->entry
);
105 * pm_unregister_all - unregister all devices with matching callback
106 * @callback: callback function pointer
108 * Unregister every device that would call the callback passed. This
109 * is primarily meant as a helper function for loadable modules. It
110 * enables a module to give up all its managed devices without keeping
111 * its own private list.
114 void pm_unregister_all(pm_callback callback
)
116 struct list_head
*entry
;
122 entry
= pm_devs
.next
;
123 while (entry
!= &pm_devs
) {
124 struct pm_dev
*dev
= list_entry(entry
, struct pm_dev
, entry
);
126 if (dev
->callback
== callback
)
127 __pm_unregister(dev
);
133 * pm_send - send request to a single device
134 * @dev: device to send to
135 * @rqst: power management request
136 * @data: data for the callback
138 * Issue a power management request to a given device. The
139 * %PM_SUSPEND and %PM_RESUME events are handled specially. The
140 * data field must hold the intended next state. No call is made
141 * if the state matches.
143 * BUGS: what stops two power management requests occurring in parallel
146 * WARNING: Calling pm_send directly is not generally recommended, in
147 * particular there is no locking against the pm_dev going away. The
148 * caller must maintain all needed locking or have 'inside knowledge'
149 * on the safety. Also remember that this function is not locked against
150 * pm_unregister. This means that you must handle SMP races on callback
151 * execution and unload yourself.
154 static int pm_send(struct pm_dev
*dev
, pm_request_t rqst
, void *data
)
157 unsigned long prev_state
, next_state
;
165 prev_state
= dev
->state
;
166 next_state
= (unsigned long) data
;
167 if (prev_state
!= next_state
) {
169 status
= (*dev
->callback
)(dev
, rqst
, data
);
171 dev
->state
= next_state
;
172 dev
->prev_state
= prev_state
;
176 dev
->prev_state
= prev_state
;
181 status
= (*dev
->callback
)(dev
, rqst
, data
);
188 * Undo incomplete request
190 static void pm_undo_all(struct pm_dev
*last
)
192 struct list_head
*entry
= last
->entry
.prev
;
193 while (entry
!= &pm_devs
) {
194 struct pm_dev
*dev
= list_entry(entry
, struct pm_dev
, entry
);
195 if (dev
->state
!= dev
->prev_state
) {
196 /* previous state was zero (running) resume or
197 * previous state was non-zero (suspended) suspend
199 pm_request_t undo
= (dev
->prev_state
200 ? PM_SUSPEND
:PM_RESUME
);
201 pm_send(dev
, undo
, (void*) dev
->prev_state
);
208 * pm_send_all - send request to all managed devices
209 * @rqst: power management request
210 * @data: data for the callback
212 * Issue a power management request to a all devices. The
213 * %PM_SUSPEND events are handled specially. Any device is
214 * permitted to fail a suspend by returning a non zero (error)
215 * value from its callback function. If any device vetoes a
216 * suspend request then all other devices that have suspended
217 * during the processing of this request are restored to their
220 * WARNING: This function takes the pm_devs_lock. The lock is not dropped until
221 * the callbacks have completed. This prevents races against pm locking
222 * functions, races against module unload pm_unregister code. It does
223 * mean however that you must not issue pm_ functions within the callback
224 * or you will deadlock and users will hate you.
226 * Zero is returned on success. If a suspend fails then the status
227 * from the device that vetoes the suspend is returned.
229 * BUGS: what stops two power management requests occurring in parallel
233 int pm_send_all(pm_request_t rqst
, void *data
)
235 struct list_head
*entry
;
238 entry
= pm_devs
.next
;
239 while (entry
!= &pm_devs
) {
240 struct pm_dev
*dev
= list_entry(entry
, struct pm_dev
, entry
);
242 int status
= pm_send(dev
, rqst
, data
);
244 /* return devices to previous state on
245 * failed suspend request
247 if (rqst
== PM_SUSPEND
)
259 EXPORT_SYMBOL(pm_register
);
260 EXPORT_SYMBOL(pm_unregister
);
261 EXPORT_SYMBOL(pm_unregister_all
);
262 EXPORT_SYMBOL(pm_send_all
);
263 EXPORT_SYMBOL(pm_active
);