blob: a81fa254303de0c57ef6e7741dd76ffb0bcfdf02 [file] [log] [blame]
Rafael J. Wysockib10d9112007-07-19 01:47:36 -07001Suspend notifiers
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +02002 (C) 2007-2011 Rafael J. Wysocki <rjw@sisk.pl>, GPL
Rafael J. Wysockib10d9112007-07-19 01:47:36 -07003
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +02004There are some operations that subsystems or drivers may want to carry out
5before hibernation/suspend or after restore/resume, but they require the system
6to be fully functional, so the drivers' and subsystems' .suspend() and .resume()
7or even .prepare() and .complete() callbacks are not suitable for this purpose.
8For example, device drivers may want to upload firmware to their devices after
9resume/restore, but they cannot do it by calling request_firmware() from their
10.resume() or .complete() routines (user land processes are frozen at these
11points). The solution may be to load the firmware into memory before processes
12are frozen and upload it from there in the .resume() routine.
13A suspend/hibernation notifier may be used for this purpose.
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070014
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020015The subsystems or drivers having such needs can register suspend notifiers that
16will be called upon the following events by the PM core:
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070017
Borislav Petkov6bc08ed2013-05-13 12:00:03 +000018PM_HIBERNATION_PREPARE The system is going to hibernate, tasks will be frozen
19 immediately. This is different from PM_SUSPEND_PREPARE
20 below because here we do additional work between notifiers
21 and drivers freezing.
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070022
23PM_POST_HIBERNATION The system memory state has been restored from a
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020024 hibernation image or an error occurred during
25 hibernation. Device drivers' restore callbacks have
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070026 been executed and tasks have been thawed.
27
Alan Sternc3e94d82007-11-19 23:38:25 +010028PM_RESTORE_PREPARE The system is going to restore a hibernation image.
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020029 If all goes well, the restored kernel will issue a
Alan Sternc3e94d82007-11-19 23:38:25 +010030 PM_POST_HIBERNATION notification.
31
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020032PM_POST_RESTORE An error occurred during restore from hibernation.
33 Device drivers' restore callbacks have been executed
Alan Sternc3e94d82007-11-19 23:38:25 +010034 and tasks have been thawed.
35
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020036PM_SUSPEND_PREPARE The system is preparing for suspend.
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070037
Lucas De Marchi25985ed2011-03-30 22:57:33 -030038PM_POST_SUSPEND The system has just resumed or an error occurred during
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +020039 suspend. Device drivers' resume callbacks have been
40 executed and tasks have been thawed.
Rafael J. Wysockib10d9112007-07-19 01:47:36 -070041
42It is generally assumed that whatever the notifiers do for
43PM_HIBERNATION_PREPARE, should be undone for PM_POST_HIBERNATION. Analogously,
44operations performed for PM_SUSPEND_PREPARE should be reversed for
45PM_POST_SUSPEND. Additionally, all of the notifiers are called for
46PM_POST_HIBERNATION if one of them fails for PM_HIBERNATION_PREPARE, and
47all of the notifiers are called for PM_POST_SUSPEND if one of them fails for
48PM_SUSPEND_PREPARE.
49
50The hibernation and suspend notifiers are called with pm_mutex held. They are
51defined in the usual way, but their last argument is meaningless (it is always
52NULL). To register and/or unregister a suspend notifier use the functions
53register_pm_notifier() and unregister_pm_notifier(), respectively, defined in
54include/linux/suspend.h . If you don't need to unregister the notifier, you can
55also use the pm_notifier() macro defined in include/linux/suspend.h .