Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * acpi_power.c - ACPI Bus Power Management ($Revision: 39 $) |
| 3 | * |
| 4 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
| 5 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
| 6 | * |
| 7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or (at |
| 12 | * your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 22 | * |
| 23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 24 | */ |
| 25 | |
| 26 | /* |
| 27 | * ACPI power-managed devices may be controlled in two ways: |
| 28 | * 1. via "Device Specific (D-State) Control" |
| 29 | * 2. via "Power Resource Control". |
| 30 | * This module is used to manage devices relying on Power Resource Control. |
| 31 | * |
| 32 | * An ACPI "power resource object" describes a software controllable power |
| 33 | * plane, clock plane, or other resource used by a power managed device. |
| 34 | * A device may rely on multiple power resources, and a power resource |
| 35 | * may be shared by multiple devices. |
| 36 | */ |
| 37 | |
| 38 | #include <linux/kernel.h> |
| 39 | #include <linux/module.h> |
| 40 | #include <linux/init.h> |
| 41 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 42 | #include <linux/slab.h> |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 43 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi_bus.h> |
| 45 | #include <acpi/acpi_drivers.h> |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 46 | #include "sleep.h" |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 47 | #include "internal.h" |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 48 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 49 | #define PREFIX "ACPI: " |
| 50 | |
Bjorn Helgaas | 89595b8 | 2008-11-07 16:57:45 -0700 | [diff] [blame] | 51 | #define _COMPONENT ACPI_POWER_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 52 | ACPI_MODULE_NAME("power"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define ACPI_POWER_CLASS "power_resource" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #define ACPI_POWER_DEVICE_NAME "Power Resource" |
| 55 | #define ACPI_POWER_FILE_INFO "info" |
| 56 | #define ACPI_POWER_FILE_STATUS "state" |
| 57 | #define ACPI_POWER_RESOURCE_STATE_OFF 0x00 |
| 58 | #define ACPI_POWER_RESOURCE_STATE_ON 0x01 |
| 59 | #define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF |
Zhao Yakui | f5adfaa | 2008-08-11 14:57:50 +0800 | [diff] [blame] | 60 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 61 | static int acpi_power_add(struct acpi_device *device); |
| 62 | static int acpi_power_remove(struct acpi_device *device, int type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Márton Németh | c97adf9 | 2010-01-10 17:15:36 +0100 | [diff] [blame] | 64 | static const struct acpi_device_id power_device_ids[] = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 65 | {ACPI_POWER_HID, 0}, |
| 66 | {"", 0}, |
| 67 | }; |
| 68 | MODULE_DEVICE_TABLE(acpi, power_device_ids); |
| 69 | |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 70 | static int acpi_power_resume(struct device *dev); |
| 71 | static SIMPLE_DEV_PM_OPS(acpi_power_pm, NULL, acpi_power_resume); |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static struct acpi_driver acpi_power_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 74 | .name = "power", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 75 | .class = ACPI_POWER_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 76 | .ids = power_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 77 | .ops = { |
| 78 | .add = acpi_power_add, |
| 79 | .remove = acpi_power_remove, |
| 80 | }, |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 81 | .drv.pm = &acpi_power_pm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 84 | /* |
| 85 | * A power managed device |
| 86 | * A device may rely on multiple power resources. |
| 87 | * */ |
| 88 | struct acpi_power_managed_device { |
| 89 | struct device *dev; /* The physical device */ |
| 90 | acpi_handle *handle; |
| 91 | }; |
| 92 | |
| 93 | struct acpi_power_resource_device { |
| 94 | struct acpi_power_managed_device *device; |
| 95 | struct acpi_power_resource_device *next; |
| 96 | }; |
| 97 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 98 | struct acpi_power_resource { |
Patrick Mochel | 4159857 | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 99 | struct acpi_device * device; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 100 | acpi_bus_id name; |
| 101 | u32 system_level; |
| 102 | u32 order; |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 103 | unsigned int ref_count; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 104 | struct mutex resource_lock; |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 105 | |
| 106 | /* List of devices relying on this power resource */ |
| 107 | struct acpi_power_resource_device *devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | static struct list_head acpi_power_resource_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | /* -------------------------------------------------------------------------- |
| 113 | Power Resource Management |
| 114 | -------------------------------------------------------------------------- */ |
| 115 | |
| 116 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 117 | acpi_power_get_context(acpi_handle handle, |
| 118 | struct acpi_power_resource **resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | int result = 0; |
| 121 | struct acpi_device *device = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | if (!resource) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 125 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | result = acpi_bus_get_device(handle, &device); |
| 128 | if (result) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 129 | printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 130 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 133 | *resource = acpi_driver_data(device); |
Li Zefan | a815ab8 | 2008-04-18 13:27:29 -0700 | [diff] [blame] | 134 | if (!*resource) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 135 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 137 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 140 | static int acpi_power_get_state(acpi_handle handle, int *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 142 | acpi_status status = AE_OK; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 143 | unsigned long long sta = 0; |
Lin Ming | 60a4ce7 | 2008-12-16 17:02:22 +0800 | [diff] [blame] | 144 | char node_name[5]; |
| 145 | struct acpi_buffer buffer = { sizeof(node_name), node_name }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 148 | if (!handle || !state) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 149 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 151 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 153 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Alexey Starikovskiy | c35923b | 2007-10-22 14:19:09 +0400 | [diff] [blame] | 155 | *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON: |
| 156 | ACPI_POWER_RESOURCE_STATE_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Lin Ming | 60a4ce7 | 2008-12-16 17:02:22 +0800 | [diff] [blame] | 158 | acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer); |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n", |
Lin Ming | 60a4ce7 | 2008-12-16 17:02:22 +0800 | [diff] [blame] | 161 | node_name, |
Zhao Yakui | b1b57fb | 2008-10-27 16:04:53 +0800 | [diff] [blame] | 162 | *state ? "on" : "off")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 164 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 167 | static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 169 | int cur_state; |
| 170 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
| 172 | if (!list || !state) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 173 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* The state of the list is 'on' IFF all resources are 'on'. */ |
| 176 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 177 | for (i = 0; i < list->count; i++) { |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 178 | struct acpi_power_resource *resource; |
| 179 | acpi_handle handle = list->handles[i]; |
| 180 | int result; |
| 181 | |
| 182 | result = acpi_power_get_context(handle, &resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 184 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 186 | mutex_lock(&resource->resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 188 | result = acpi_power_get_state(handle, &cur_state); |
| 189 | |
| 190 | mutex_unlock(&resource->resource_lock); |
| 191 | |
| 192 | if (result) |
| 193 | return result; |
| 194 | |
| 195 | if (cur_state != ACPI_POWER_RESOURCE_STATE_ON) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | break; |
| 197 | } |
| 198 | |
| 199 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n", |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 200 | cur_state ? "on" : "off")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Rafael J. Wysocki | d0515d9 | 2011-01-06 23:38:57 +0100 | [diff] [blame] | 202 | *state = cur_state; |
| 203 | |
| 204 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 207 | /* Resume the device when all power resources in _PR0 are on */ |
| 208 | static void acpi_power_on_device(struct acpi_power_managed_device *device) |
| 209 | { |
| 210 | struct acpi_device *acpi_dev; |
| 211 | acpi_handle handle = device->handle; |
| 212 | int state; |
| 213 | |
| 214 | if (acpi_bus_get_device(handle, &acpi_dev)) |
| 215 | return; |
| 216 | |
| 217 | if(acpi_power_get_inferred_state(acpi_dev, &state)) |
| 218 | return; |
| 219 | |
| 220 | if (state == ACPI_STATE_D0 && pm_runtime_suspended(device->dev)) |
| 221 | pm_request_resume(device->dev); |
| 222 | } |
| 223 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 224 | static int __acpi_power_on(struct acpi_power_resource *resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 226 | struct acpi_power_resource_device *device_list = resource->devices; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | acpi_status status = AE_OK; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 228 | |
Patrick Mochel | 5fbc19e | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 229 | status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 231 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* Update the power resource's _device_ power state */ |
Patrick Mochel | 4159857 | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 234 | resource->device->power.state = ACPI_STATE_D0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 236 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 237 | resource->name)); |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 238 | |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 239 | while (device_list) { |
| 240 | acpi_power_on_device(device_list->device); |
| 241 | |
| 242 | device_list = device_list->next; |
| 243 | } |
| 244 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 245 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 248 | static int acpi_power_on(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
Bjorn Helgaas | bdf43bb | 2009-05-21 17:28:53 -0600 | [diff] [blame] | 250 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | struct acpi_power_resource *resource = NULL; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | result = acpi_power_get_context(handle, &resource); |
| 254 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 255 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 257 | mutex_lock(&resource->resource_lock); |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 258 | |
| 259 | if (resource->ref_count++) { |
| 260 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 261 | "Power resource [%s] already on", |
| 262 | resource->name)); |
| 263 | } else { |
| 264 | result = __acpi_power_on(resource); |
Rafael J. Wysocki | 12b3b5a | 2010-11-25 00:03:32 +0100 | [diff] [blame] | 265 | if (result) |
| 266 | resource->ref_count--; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 267 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 269 | mutex_unlock(&resource->resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Rafael J. Wysocki | 12b3b5a | 2010-11-25 00:03:32 +0100 | [diff] [blame] | 271 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Rafael J. Wysocki | 36237fa | 2011-01-06 23:38:04 +0100 | [diff] [blame] | 274 | static int acpi_power_off(acpi_handle handle) |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 275 | { |
| 276 | int result = 0; |
| 277 | acpi_status status = AE_OK; |
| 278 | struct acpi_power_resource *resource = NULL; |
| 279 | |
| 280 | result = acpi_power_get_context(handle, &resource); |
| 281 | if (result) |
| 282 | return result; |
| 283 | |
| 284 | mutex_lock(&resource->resource_lock); |
| 285 | |
| 286 | if (!resource->ref_count) { |
| 287 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 288 | "Power resource [%s] already off", |
| 289 | resource->name)); |
| 290 | goto unlock; |
| 291 | } |
| 292 | |
| 293 | if (--resource->ref_count) { |
| 294 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 295 | "Power resource [%s] still in use\n", |
| 296 | resource->name)); |
| 297 | goto unlock; |
| 298 | } |
| 299 | |
| 300 | status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL); |
| 301 | if (ACPI_FAILURE(status)) { |
| 302 | result = -ENODEV; |
| 303 | } else { |
| 304 | /* Update the power resource's _device_ power state */ |
| 305 | resource->device->power.state = ACPI_STATE_D3; |
| 306 | |
| 307 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 308 | "Power resource [%s] turned off\n", |
| 309 | resource->name)); |
| 310 | } |
| 311 | |
| 312 | unlock: |
| 313 | mutex_unlock(&resource->resource_lock); |
| 314 | |
| 315 | return result; |
| 316 | } |
| 317 | |
Rafael J. Wysocki | d2ef555 | 2010-11-25 00:06:09 +0100 | [diff] [blame] | 318 | static void __acpi_power_off_list(struct acpi_handle_list *list, int num_res) |
| 319 | { |
| 320 | int i; |
| 321 | |
| 322 | for (i = num_res - 1; i >= 0 ; i--) |
Rafael J. Wysocki | 36237fa | 2011-01-06 23:38:04 +0100 | [diff] [blame] | 323 | acpi_power_off(list->handles[i]); |
Rafael J. Wysocki | d2ef555 | 2010-11-25 00:06:09 +0100 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static void acpi_power_off_list(struct acpi_handle_list *list) |
| 327 | { |
| 328 | __acpi_power_off_list(list, list->count); |
| 329 | } |
| 330 | |
| 331 | static int acpi_power_on_list(struct acpi_handle_list *list) |
| 332 | { |
| 333 | int result = 0; |
| 334 | int i; |
| 335 | |
| 336 | for (i = 0; i < list->count; i++) { |
| 337 | result = acpi_power_on(list->handles[i]); |
| 338 | if (result) { |
| 339 | __acpi_power_off_list(list, i); |
| 340 | break; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | return result; |
| 345 | } |
| 346 | |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 347 | static void __acpi_power_resource_unregister_device(struct device *dev, |
| 348 | acpi_handle res_handle) |
| 349 | { |
| 350 | struct acpi_power_resource *resource = NULL; |
| 351 | struct acpi_power_resource_device *prev, *curr; |
| 352 | |
| 353 | if (acpi_power_get_context(res_handle, &resource)) |
| 354 | return; |
| 355 | |
| 356 | mutex_lock(&resource->resource_lock); |
| 357 | prev = NULL; |
| 358 | curr = resource->devices; |
| 359 | while (curr) { |
| 360 | if (curr->device->dev == dev) { |
| 361 | if (!prev) |
| 362 | resource->devices = curr->next; |
| 363 | else |
| 364 | prev->next = curr->next; |
| 365 | |
| 366 | kfree(curr); |
| 367 | break; |
| 368 | } |
| 369 | |
| 370 | prev = curr; |
| 371 | curr = curr->next; |
| 372 | } |
| 373 | mutex_unlock(&resource->resource_lock); |
| 374 | } |
| 375 | |
| 376 | /* Unlink dev from all power resources in _PR0 */ |
| 377 | void acpi_power_resource_unregister_device(struct device *dev, acpi_handle handle) |
| 378 | { |
| 379 | struct acpi_device *acpi_dev; |
| 380 | struct acpi_handle_list *list; |
| 381 | int i; |
| 382 | |
| 383 | if (!dev || !handle) |
| 384 | return; |
| 385 | |
| 386 | if (acpi_bus_get_device(handle, &acpi_dev)) |
| 387 | return; |
| 388 | |
| 389 | list = &acpi_dev->power.states[ACPI_STATE_D0].resources; |
| 390 | |
| 391 | for (i = 0; i < list->count; i++) |
| 392 | __acpi_power_resource_unregister_device(dev, |
| 393 | list->handles[i]); |
| 394 | } |
Lin Ming | a606dac3 | 2012-06-25 16:13:07 +0800 | [diff] [blame] | 395 | EXPORT_SYMBOL_GPL(acpi_power_resource_unregister_device); |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 396 | |
| 397 | static int __acpi_power_resource_register_device( |
| 398 | struct acpi_power_managed_device *powered_device, acpi_handle handle) |
| 399 | { |
| 400 | struct acpi_power_resource *resource = NULL; |
| 401 | struct acpi_power_resource_device *power_resource_device; |
| 402 | int result; |
| 403 | |
| 404 | result = acpi_power_get_context(handle, &resource); |
| 405 | if (result) |
| 406 | return result; |
| 407 | |
| 408 | power_resource_device = kzalloc( |
| 409 | sizeof(*power_resource_device), GFP_KERNEL); |
| 410 | if (!power_resource_device) |
| 411 | return -ENOMEM; |
| 412 | |
| 413 | power_resource_device->device = powered_device; |
| 414 | |
| 415 | mutex_lock(&resource->resource_lock); |
| 416 | power_resource_device->next = resource->devices; |
| 417 | resource->devices = power_resource_device; |
| 418 | mutex_unlock(&resource->resource_lock); |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | /* Link dev to all power resources in _PR0 */ |
| 424 | int acpi_power_resource_register_device(struct device *dev, acpi_handle handle) |
| 425 | { |
| 426 | struct acpi_device *acpi_dev; |
| 427 | struct acpi_handle_list *list; |
| 428 | struct acpi_power_managed_device *powered_device; |
| 429 | int i, ret; |
| 430 | |
| 431 | if (!dev || !handle) |
| 432 | return -ENODEV; |
| 433 | |
| 434 | ret = acpi_bus_get_device(handle, &acpi_dev); |
| 435 | if (ret) |
| 436 | goto no_power_resource; |
| 437 | |
| 438 | if (!acpi_dev->power.flags.power_resources) |
| 439 | goto no_power_resource; |
| 440 | |
| 441 | powered_device = kzalloc(sizeof(*powered_device), GFP_KERNEL); |
| 442 | if (!powered_device) |
| 443 | return -ENOMEM; |
| 444 | |
| 445 | powered_device->dev = dev; |
| 446 | powered_device->handle = handle; |
| 447 | |
| 448 | list = &acpi_dev->power.states[ACPI_STATE_D0].resources; |
| 449 | |
| 450 | for (i = 0; i < list->count; i++) { |
| 451 | ret = __acpi_power_resource_register_device(powered_device, |
| 452 | list->handles[i]); |
| 453 | |
| 454 | if (ret) { |
| 455 | acpi_power_resource_unregister_device(dev, handle); |
| 456 | break; |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | return ret; |
| 461 | |
| 462 | no_power_resource: |
| 463 | printk(KERN_WARNING PREFIX "Invalid Power Resource to register!"); |
| 464 | return -ENODEV; |
| 465 | } |
Lin Ming | a606dac3 | 2012-06-25 16:13:07 +0800 | [diff] [blame] | 466 | EXPORT_SYMBOL_GPL(acpi_power_resource_register_device); |
Lin Ming | 0090def | 2012-03-29 14:09:39 +0800 | [diff] [blame] | 467 | |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 468 | /** |
| 469 | * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in |
| 470 | * ACPI 3.0) _PSW (Power State Wake) |
| 471 | * @dev: Device to handle. |
| 472 | * @enable: 0 - disable, 1 - enable the wake capabilities of the device. |
| 473 | * @sleep_state: Target sleep state of the system. |
| 474 | * @dev_state: Target power state of the device. |
| 475 | * |
| 476 | * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power |
| 477 | * State Wake) for the device, if present. On failure reset the device's |
| 478 | * wakeup.flags.valid flag. |
| 479 | * |
| 480 | * RETURN VALUE: |
| 481 | * 0 if either _DSW or _PSW has been successfully executed |
| 482 | * 0 if neither _DSW nor _PSW has been found |
| 483 | * -ENODEV if the execution of either _DSW or _PSW has failed |
| 484 | */ |
| 485 | int acpi_device_sleep_wake(struct acpi_device *dev, |
| 486 | int enable, int sleep_state, int dev_state) |
| 487 | { |
| 488 | union acpi_object in_arg[3]; |
| 489 | struct acpi_object_list arg_list = { 3, in_arg }; |
| 490 | acpi_status status = AE_OK; |
| 491 | |
| 492 | /* |
| 493 | * Try to execute _DSW first. |
| 494 | * |
| 495 | * Three agruments are needed for the _DSW object: |
| 496 | * Argument 0: enable/disable the wake capabilities |
| 497 | * Argument 1: target system state |
| 498 | * Argument 2: target device state |
| 499 | * When _DSW object is called to disable the wake capabilities, maybe |
| 500 | * the first argument is filled. The values of the other two agruments |
| 501 | * are meaningless. |
| 502 | */ |
| 503 | in_arg[0].type = ACPI_TYPE_INTEGER; |
| 504 | in_arg[0].integer.value = enable; |
| 505 | in_arg[1].type = ACPI_TYPE_INTEGER; |
| 506 | in_arg[1].integer.value = sleep_state; |
| 507 | in_arg[2].type = ACPI_TYPE_INTEGER; |
| 508 | in_arg[2].integer.value = dev_state; |
| 509 | status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL); |
| 510 | if (ACPI_SUCCESS(status)) { |
| 511 | return 0; |
| 512 | } else if (status != AE_NOT_FOUND) { |
| 513 | printk(KERN_ERR PREFIX "_DSW execution failed\n"); |
| 514 | dev->wakeup.flags.valid = 0; |
| 515 | return -ENODEV; |
| 516 | } |
| 517 | |
| 518 | /* Execute _PSW */ |
| 519 | arg_list.count = 1; |
| 520 | in_arg[0].integer.value = enable; |
| 521 | status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL); |
| 522 | if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) { |
| 523 | printk(KERN_ERR PREFIX "_PSW execution failed\n"); |
| 524 | dev->wakeup.flags.valid = 0; |
| 525 | return -ENODEV; |
| 526 | } |
| 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | /* |
| 532 | * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229): |
| 533 | * 1. Power on the power resources required for the wakeup device |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 534 | * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power |
| 535 | * State Wake) for the device, if present |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | */ |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 537 | int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | { |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 539 | int i, err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | if (!dev || !dev->wakeup.flags.valid) |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 542 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 544 | mutex_lock(&acpi_device_lock); |
| 545 | |
| 546 | if (dev->wakeup.prepare_count++) |
| 547 | goto out; |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | /* Open power resource */ |
| 550 | for (i = 0; i < dev->wakeup.resources.count; i++) { |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 551 | int ret = acpi_power_on(dev->wakeup.resources.handles[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | if (ret) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 553 | printk(KERN_ERR PREFIX "Transition power state\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | dev->wakeup.flags.valid = 0; |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 555 | err = -ENODEV; |
| 556 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
| 559 | |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 560 | /* |
| 561 | * Passing 3 as the third argument below means the device may be placed |
| 562 | * in arbitrary power state afterwards. |
| 563 | */ |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 564 | err = acpi_device_sleep_wake(dev, 1, sleep_state, 3); |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 565 | |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 566 | err_out: |
| 567 | if (err) |
| 568 | dev->wakeup.prepare_count = 0; |
| 569 | |
| 570 | out: |
| 571 | mutex_unlock(&acpi_device_lock); |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 572 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | /* |
| 576 | * Shutdown a wakeup device, counterpart of above method |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 577 | * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power |
| 578 | * State Wake) for the device, if present |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | * 2. Shutdown down the power resources |
| 580 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 581 | int acpi_disable_wakeup_device_power(struct acpi_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | { |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 583 | int i, err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
| 585 | if (!dev || !dev->wakeup.flags.valid) |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 586 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 588 | mutex_lock(&acpi_device_lock); |
| 589 | |
| 590 | if (--dev->wakeup.prepare_count > 0) |
| 591 | goto out; |
| 592 | |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 593 | /* |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 594 | * Executing the code below even if prepare_count is already zero when |
| 595 | * the function is called may be useful, for example for initialisation. |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 596 | */ |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 597 | if (dev->wakeup.prepare_count < 0) |
| 598 | dev->wakeup.prepare_count = 0; |
Rafael J. Wysocki | 0af4b8c | 2008-07-07 03:34:11 +0200 | [diff] [blame] | 599 | |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 600 | err = acpi_device_sleep_wake(dev, 0, 0, 0); |
| 601 | if (err) |
| 602 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | /* Close power resource */ |
| 605 | for (i = 0; i < dev->wakeup.resources.count; i++) { |
Rafael J. Wysocki | 36237fa | 2011-01-06 23:38:04 +0100 | [diff] [blame] | 606 | int ret = acpi_power_off(dev->wakeup.resources.handles[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | if (ret) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 608 | printk(KERN_ERR PREFIX "Transition power state\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | dev->wakeup.flags.valid = 0; |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 610 | err = -ENODEV; |
| 611 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | } |
| 614 | |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 615 | out: |
| 616 | mutex_unlock(&acpi_device_lock); |
| 617 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | /* -------------------------------------------------------------------------- |
| 621 | Device Power Management |
| 622 | -------------------------------------------------------------------------- */ |
| 623 | |
Rafael J. Wysocki | 32a00d2 | 2010-11-25 00:05:17 +0100 | [diff] [blame] | 624 | int acpi_power_get_inferred_state(struct acpi_device *device, int *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 626 | int result = 0; |
| 627 | struct acpi_handle_list *list = NULL; |
| 628 | int list_state = 0; |
| 629 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
Rafael J. Wysocki | 32a00d2 | 2010-11-25 00:05:17 +0100 | [diff] [blame] | 631 | if (!device || !state) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 632 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | /* |
| 635 | * We know a device's inferred power state when all the resources |
| 636 | * required for a given D-state are 'on'. |
| 637 | */ |
Rafael J. Wysocki | 38c92ff | 2012-05-20 13:58:00 +0200 | [diff] [blame] | 638 | for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | list = &device->power.states[i].resources; |
| 640 | if (list->count < 1) |
| 641 | continue; |
| 642 | |
| 643 | result = acpi_power_get_list_state(list, &list_state); |
| 644 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 645 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
| 647 | if (list_state == ACPI_POWER_RESOURCE_STATE_ON) { |
Rafael J. Wysocki | 32a00d2 | 2010-11-25 00:05:17 +0100 | [diff] [blame] | 648 | *state = i; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 649 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | } |
| 652 | |
Rafael J. Wysocki | 32a00d2 | 2010-11-25 00:05:17 +0100 | [diff] [blame] | 653 | *state = ACPI_STATE_D3; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 654 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | } |
| 656 | |
Rafael J. Wysocki | 30d3df41 | 2010-11-25 00:06:55 +0100 | [diff] [blame] | 657 | int acpi_power_on_resources(struct acpi_device *device, int state) |
| 658 | { |
| 659 | if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3) |
| 660 | return -EINVAL; |
| 661 | |
| 662 | return acpi_power_on_list(&device->power.states[state].resources); |
| 663 | } |
| 664 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 665 | int acpi_power_transition(struct acpi_device *device, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | { |
Rafael J. Wysocki | 5c7dd71 | 2012-05-18 00:39:35 +0200 | [diff] [blame] | 667 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
Zhang Rui | 3ebc81b | 2012-03-29 14:09:38 +0800 | [diff] [blame] | 669 | if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 670 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
Rafael J. Wysocki | 212967c | 2010-11-25 00:02:36 +0100 | [diff] [blame] | 672 | if (device->power.state == state) |
| 673 | return 0; |
| 674 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | if ((device->power.state < ACPI_STATE_D0) |
Zhang Rui | 3ebc81b | 2012-03-29 14:09:38 +0800 | [diff] [blame] | 676 | || (device->power.state > ACPI_STATE_D3_COLD)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 677 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | /* TBD: Resources must be ordered. */ |
| 680 | |
| 681 | /* |
| 682 | * First we reference all power resources required in the target list |
Rafael J. Wysocki | d2ef555 | 2010-11-25 00:06:09 +0100 | [diff] [blame] | 683 | * (e.g. so the device doesn't lose power while transitioning). Then, |
| 684 | * we dereference all power resources used in the current list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | */ |
Rafael J. Wysocki | 5c7dd71 | 2012-05-18 00:39:35 +0200 | [diff] [blame] | 686 | if (state < ACPI_STATE_D3_COLD) |
| 687 | result = acpi_power_on_list( |
| 688 | &device->power.states[state].resources); |
| 689 | |
| 690 | if (!result && device->power.state < ACPI_STATE_D3_COLD) |
Rafael J. Wysocki | d2ef555 | 2010-11-25 00:06:09 +0100 | [diff] [blame] | 691 | acpi_power_off_list( |
| 692 | &device->power.states[device->power.state].resources); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Rafael J. Wysocki | d2ef555 | 2010-11-25 00:06:09 +0100 | [diff] [blame] | 694 | /* We shouldn't change the state unless the above operations succeed. */ |
| 695 | device->power.state = result ? ACPI_STATE_UNKNOWN : state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 697 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | } |
| 699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | /* -------------------------------------------------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | Driver Interface |
| 702 | -------------------------------------------------------------------------- */ |
| 703 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 704 | static int acpi_power_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { |
Alexey Starikovskiy | c35923b | 2007-10-22 14:19:09 +0400 | [diff] [blame] | 706 | int result = 0, state; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 707 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | struct acpi_power_resource *resource = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 709 | union acpi_object acpi_object; |
| 710 | struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
| 713 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 714 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 716 | resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (!resource) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 718 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
Patrick Mochel | 4159857 | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 720 | resource->device = device; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 721 | mutex_init(&resource->resource_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | strcpy(resource->name, device->pnp.bus_id); |
| 723 | strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME); |
| 724 | strcpy(acpi_device_class(device), ACPI_POWER_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 725 | device->driver_data = resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
| 727 | /* Evalute the object to get the system level and resource order. */ |
Patrick Mochel | 5fbc19e | 2006-05-19 16:54:43 -0400 | [diff] [blame] | 728 | status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | if (ACPI_FAILURE(status)) { |
| 730 | result = -ENODEV; |
| 731 | goto end; |
| 732 | } |
| 733 | resource->system_level = acpi_object.power_resource.system_level; |
| 734 | resource->order = acpi_object.power_resource.resource_order; |
| 735 | |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 736 | result = acpi_power_get_state(device->handle, &state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | if (result) |
| 738 | goto end; |
| 739 | |
Alexey Starikovskiy | c35923b | 2007-10-22 14:19:09 +0400 | [diff] [blame] | 740 | switch (state) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | case ACPI_POWER_RESOURCE_STATE_ON: |
| 742 | device->power.state = ACPI_STATE_D0; |
| 743 | break; |
| 744 | case ACPI_POWER_RESOURCE_STATE_OFF: |
| 745 | device->power.state = ACPI_STATE_D3; |
| 746 | break; |
| 747 | default: |
| 748 | device->power.state = ACPI_STATE_UNKNOWN; |
| 749 | break; |
| 750 | } |
| 751 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 752 | printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device), |
Alexey Starikovskiy | c35923b | 2007-10-22 14:19:09 +0400 | [diff] [blame] | 753 | acpi_device_bid(device), state ? "on" : "off"); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 754 | |
| 755 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | if (result) |
| 757 | kfree(resource); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 758 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 759 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 762 | static int acpi_power_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | { |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 764 | struct acpi_power_resource *resource; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 766 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 767 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 769 | resource = acpi_driver_data(device); |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 770 | if (!resource) |
| 771 | return -EINVAL; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 772 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | kfree(resource); |
| 774 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 775 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } |
| 777 | |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 778 | static int acpi_power_resume(struct device *dev) |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 779 | { |
Alexey Starikovskiy | c35923b | 2007-10-22 14:19:09 +0400 | [diff] [blame] | 780 | int result = 0, state; |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 781 | struct acpi_device *device; |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 782 | struct acpi_power_resource *resource; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 783 | |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 784 | if (!dev) |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 785 | return -EINVAL; |
| 786 | |
Rafael J. Wysocki | e579e2d | 2012-06-27 23:26:59 +0200 | [diff] [blame] | 787 | device = to_acpi_device(dev); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 788 | resource = acpi_driver_data(device); |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 789 | if (!resource) |
| 790 | return -EINVAL; |
| 791 | |
| 792 | mutex_lock(&resource->resource_lock); |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 793 | |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 794 | result = acpi_power_get_state(device->handle, &state); |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 795 | if (result) |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 796 | goto unlock; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 797 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 798 | if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count) |
| 799 | result = __acpi_power_on(resource); |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 800 | |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 801 | unlock: |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 802 | mutex_unlock(&resource->resource_lock); |
Rafael J. Wysocki | 3e384ee | 2010-10-22 02:35:54 +0200 | [diff] [blame] | 803 | |
| 804 | return result; |
Konstantin Karasyov | 0a61390 | 2007-02-16 01:47:06 -0500 | [diff] [blame] | 805 | } |
| 806 | |
Bjorn Helgaas | 4451537 | 2009-03-24 16:49:53 -0600 | [diff] [blame] | 807 | int __init acpi_power_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | INIT_LIST_HEAD(&acpi_power_resource_list); |
Zhang Rui | 06af7eb | 2010-07-15 10:46:38 +0800 | [diff] [blame] | 810 | return acpi_bus_register_driver(&acpi_power_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |