Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * resume.c - Functions for waking devices up. |
| 3 | * |
| 4 | * Copyright (c) 2003 Patrick Mochel |
| 5 | * Copyright (c) 2003 Open Source Development Labs |
| 6 | * |
| 7 | * This file is released under the GPLv2 |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #include <linux/device.h> |
Linus Torvalds | d02f40e | 2006-06-24 14:32:18 -0700 | [diff] [blame] | 12 | #include <linux/resume-trace.h> |
Adrian Bunk | f67d115 | 2006-01-19 17:30:17 +0100 | [diff] [blame] | 13 | #include "../base.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include "power.h" |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | /** |
| 18 | * resume_device - Restore state for one device. |
| 19 | * @dev: Device. |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | int resume_device(struct device * dev) |
| 24 | { |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 25 | int error = 0; |
| 26 | |
Linus Torvalds | d02f40e | 2006-06-24 14:32:18 -0700 | [diff] [blame] | 27 | TRACE_DEVICE(dev); |
| 28 | TRACE_RESUME(0); |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 29 | |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 30 | down(&dev->sem); |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 31 | |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 32 | if (dev->power.pm_parent |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 33 | && dev->power.pm_parent->power.power_state.event) { |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 34 | dev_err(dev, "PM: resume from %d, parent %s still %d\n", |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 35 | dev->power.power_state.event, |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 36 | dev->power.pm_parent->bus_id, |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 37 | dev->power.pm_parent->power.power_state.event); |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 38 | } |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 39 | |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 40 | if (dev->bus && dev->bus->resume) { |
| 41 | dev_dbg(dev,"resuming\n"); |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 42 | error = dev->bus->resume(dev); |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 43 | } |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 44 | |
| 45 | if (!error && dev->type && dev->type->resume) { |
| 46 | dev_dbg(dev,"resuming\n"); |
| 47 | error = dev->type->resume(dev); |
| 48 | } |
| 49 | |
| 50 | if (!error && dev->class && dev->class->resume) { |
Linus Torvalds | 7c8265f | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 51 | dev_dbg(dev,"class resume\n"); |
| 52 | error = dev->class->resume(dev); |
| 53 | } |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 54 | |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 55 | up(&dev->sem); |
Dmitry Torokhov | f89cbc3 | 2007-04-03 01:08:40 -0400 | [diff] [blame] | 56 | |
Linus Torvalds | d02f40e | 2006-06-24 14:32:18 -0700 | [diff] [blame] | 57 | TRACE_RESUME(error); |
mochel@digitalimplant.org | af70316 | 2005-03-21 10:41:04 -0800 | [diff] [blame] | 58 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | |
Linus Torvalds | 7c8265f | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 62 | static int resume_device_early(struct device * dev) |
| 63 | { |
| 64 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Linus Torvalds | 7c8265f | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 66 | TRACE_DEVICE(dev); |
| 67 | TRACE_RESUME(0); |
| 68 | if (dev->bus && dev->bus->resume_early) { |
| 69 | dev_dbg(dev,"EARLY resume\n"); |
| 70 | error = dev->bus->resume_early(dev); |
| 71 | } |
| 72 | TRACE_RESUME(error); |
| 73 | return error; |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * Resume the devices that have either not gone through |
| 78 | * the late suspend, or that did go through it but also |
| 79 | * went through the early resume |
| 80 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | void dpm_resume(void) |
| 82 | { |
| 83 | down(&dpm_list_sem); |
| 84 | while(!list_empty(&dpm_off)) { |
| 85 | struct list_head * entry = dpm_off.next; |
| 86 | struct device * dev = to_device(entry); |
| 87 | |
| 88 | get_device(dev); |
Akinobu Mita | 1bfba4e | 2006-06-26 00:24:40 -0700 | [diff] [blame] | 89 | list_move_tail(entry, &dpm_active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | up(&dpm_list_sem); |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 92 | if (!dev->power.prev_state.event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | resume_device(dev); |
| 94 | down(&dpm_list_sem); |
| 95 | put_device(dev); |
| 96 | } |
| 97 | up(&dpm_list_sem); |
| 98 | } |
| 99 | |
| 100 | |
| 101 | /** |
| 102 | * device_resume - Restore state of each device in system. |
| 103 | * |
| 104 | * Walk the dpm_off list, remove each entry, resume the device, |
| 105 | * then add it to the dpm_active list. |
| 106 | */ |
| 107 | |
| 108 | void device_resume(void) |
| 109 | { |
Pavel Machek | bb84c89 | 2006-08-31 22:02:11 -0700 | [diff] [blame] | 110 | might_sleep(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | down(&dpm_sem); |
| 112 | dpm_resume(); |
| 113 | up(&dpm_sem); |
| 114 | } |
| 115 | |
| 116 | EXPORT_SYMBOL_GPL(device_resume); |
| 117 | |
| 118 | |
| 119 | /** |
Dmitry Torokhov | 9de72ee | 2006-07-15 00:31:54 -0400 | [diff] [blame] | 120 | * dpm_power_up - Power on some devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | * |
| 122 | * Walk the dpm_off_irq list and power each device up. This |
| 123 | * is used for devices that required they be powered down with |
Dmitry Torokhov | 9de72ee | 2006-07-15 00:31:54 -0400 | [diff] [blame] | 124 | * interrupts disabled. As devices are powered on, they are moved |
| 125 | * to the dpm_active list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * |
| 127 | * Interrupts must be disabled when calling this. |
| 128 | */ |
| 129 | |
| 130 | void dpm_power_up(void) |
| 131 | { |
| 132 | while(!list_empty(&dpm_off_irq)) { |
| 133 | struct list_head * entry = dpm_off_irq.next; |
| 134 | struct device * dev = to_device(entry); |
| 135 | |
Linus Torvalds | 7c8265f | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 136 | list_move_tail(entry, &dpm_off); |
| 137 | resume_device_early(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | |
| 142 | /** |
Dmitry Torokhov | 9de72ee | 2006-07-15 00:31:54 -0400 | [diff] [blame] | 143 | * device_power_up - Turn on all devices that need special attention. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | * |
| 145 | * Power on system devices then devices that required we shut them down |
| 146 | * with interrupts disabled. |
| 147 | * Called with interrupts disabled. |
| 148 | */ |
| 149 | |
| 150 | void device_power_up(void) |
| 151 | { |
| 152 | sysdev_resume(); |
| 153 | dpm_power_up(); |
| 154 | } |
| 155 | |
| 156 | EXPORT_SYMBOL_GPL(device_power_up); |
| 157 | |
| 158 | |