blob: 4ffecd17970277f46967bb959bce94c15dacffe0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
42#include <linux/proc_fs.h>
43#include <linux/seq_file.h>
44#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050048ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_POWER_COMPONENT 0x00800000
50#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_POWER_DEVICE_NAME "Power Resource"
52#define ACPI_POWER_FILE_INFO "info"
53#define ACPI_POWER_FILE_STATUS "state"
54#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
55#define ACPI_POWER_RESOURCE_STATE_ON 0x01
56#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Len Brown4be44fc2005-08-05 00:44:28 -040057static int acpi_power_add(struct acpi_device *device);
58static int acpi_power_remove(struct acpi_device *device, int type);
Len Browne8363f32007-02-16 02:05:39 -050059static int acpi_power_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static int acpi_power_open_fs(struct inode *inode, struct file *file);
61
62static struct acpi_driver acpi_power_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050063 .name = "power",
Len Brown4be44fc2005-08-05 00:44:28 -040064 .class = ACPI_POWER_CLASS,
65 .ids = ACPI_POWER_HID,
66 .ops = {
67 .add = acpi_power_add,
68 .remove = acpi_power_remove,
Konstantin Karasyov0a613902007-02-16 01:47:06 -050069 .resume = acpi_power_resume,
Len Brown4be44fc2005-08-05 00:44:28 -040070 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Konstantin Karasyov0a613902007-02-16 01:47:06 -050073struct acpi_power_reference {
74 struct list_head node;
75 struct acpi_device *device;
76};
77
Len Brown4be44fc2005-08-05 00:44:28 -040078struct acpi_power_resource {
Patrick Mochel41598572006-05-19 16:54:40 -040079 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040080 acpi_bus_id name;
81 u32 system_level;
82 u32 order;
83 int state;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050084 struct mutex resource_lock;
85 struct list_head reference;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Len Brown4be44fc2005-08-05 00:44:28 -040088static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Arjan van de Vend7508032006-07-04 13:06:00 -040090static const struct file_operations acpi_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -040091 .open = acpi_power_open_fs,
92 .read = seq_read,
93 .llseek = seq_lseek,
94 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
97/* --------------------------------------------------------------------------
98 Power Resource Management
99 -------------------------------------------------------------------------- */
100
101static int
Len Brown4be44fc2005-08-05 00:44:28 -0400102acpi_power_get_context(acpi_handle handle,
103 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Len Brown4be44fc2005-08-05 00:44:28 -0400105 int result = 0;
106 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400110 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 result = acpi_bus_get_device(handle, &device);
113 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400114 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400115 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200118 *resource = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400120 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Patrick Mocheld550d982006-06-27 00:41:40 -0400122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Len Brown4be44fc2005-08-05 00:44:28 -0400125static int acpi_power_get_state(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Len Brown4be44fc2005-08-05 00:44:28 -0400127 acpi_status status = AE_OK;
128 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400132 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400134 status = acpi_evaluate_integer(resource->device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400136 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (sta & 0x01)
139 resource->state = ACPI_POWER_RESOURCE_STATE_ON;
140 else
141 resource->state = ACPI_POWER_RESOURCE_STATE_OFF;
142
143 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400144 resource->name, resource->state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Patrick Mocheld550d982006-06-27 00:41:40 -0400146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Len Brown4be44fc2005-08-05 00:44:28 -0400151 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400157 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* The state of the list is 'on' IFF all resources are 'on'. */
160
Len Brown4be44fc2005-08-05 00:44:28 -0400161 for (i = 0; i < list->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 result = acpi_power_get_context(list->handles[i], &resource);
163 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400164 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 result = acpi_power_get_state(resource);
166 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400167 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 *state = resource->state;
170
171 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
172 break;
173 }
174
175 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400176 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Patrick Mocheld550d982006-06-27 00:41:40 -0400178 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500181static int acpi_power_on(acpi_handle handle, struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Len Brown4be44fc2005-08-05 00:44:28 -0400183 int result = 0;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500184 int found = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400185 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500187 struct list_head *node, *next;
188 struct acpi_power_reference *ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 result = acpi_power_get_context(handle, &resource);
192 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400193 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500195 mutex_lock(&resource->resource_lock);
196 list_for_each_safe(node, next, &resource->reference) {
197 ref = container_of(node, struct acpi_power_reference, node);
198 if (dev->handle == ref->device->handle) {
199 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already referenced by resource [%s]\n",
200 dev->pnp.bus_id, resource->name));
201 found = 1;
202 break;
203 }
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500206 if (!found) {
207 ref = kmalloc(sizeof (struct acpi_power_reference),
208 irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
209 if (!ref) {
210 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "kmalloc() failed\n"));
211 mutex_unlock(&resource->resource_lock);
212 return -ENOMEM;
213 }
214 list_add_tail(&ref->node, &resource->reference);
215 ref->device = dev;
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] added to resource [%s] references\n",
217 dev->pnp.bus_id, resource->name));
218 }
219 mutex_unlock(&resource->resource_lock);
220
221 if (resource->state == ACPI_POWER_RESOURCE_STATE_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] already on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400223 resource->name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400227 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400229 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 result = acpi_power_get_state(resource);
232 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (resource->state != ACPI_POWER_RESOURCE_STATE_ON)
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400238 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400241 resource->name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500245static int acpi_power_off_device(acpi_handle handle, struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Len Brown4be44fc2005-08-05 00:44:28 -0400247 int result = 0;
248 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500250 struct list_head *node, *next;
251 struct acpi_power_reference *ref;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 result = acpi_power_get_context(handle, &resource);
255 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400256 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500258 mutex_lock(&resource->resource_lock);
259 list_for_each_safe(node, next, &resource->reference) {
260 ref = container_of(node, struct acpi_power_reference, node);
261 if (dev->handle == ref->device->handle) {
262 list_del(&ref->node);
263 kfree(ref);
264 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] removed from resource [%s] references\n",
265 dev->pnp.bus_id, resource->name));
266 break;
267 }
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500270 if (!list_empty(&resource->reference)) {
271 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Cannot turn resource [%s] off - resource is in use\n",
272 resource->name));
273 mutex_unlock(&resource->resource_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500276 mutex_unlock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (resource->state == ACPI_POWER_RESOURCE_STATE_OFF) {
279 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] already off\n",
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500280 resource->name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400284 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400286 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 result = acpi_power_get_state(resource);
289 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400290 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (resource->state != ACPI_POWER_RESOURCE_STATE_OFF)
Patrick Mocheld550d982006-06-27 00:41:40 -0400292 return -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* Update the power resource's _device_ power state */
Dmitry Torokhov786f18c2006-08-23 23:18:06 -0400295 resource->device->power.state = ACPI_STATE_D3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned off\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400298 resource->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Patrick Mocheld550d982006-06-27 00:41:40 -0400300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/*
304 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
305 * 1. Power on the power resources required for the wakeup device
306 * 2. Enable _PSW (power state wake) for the device if present
307 */
Len Brown4be44fc2005-08-05 00:44:28 -0400308int acpi_enable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Len Brown4be44fc2005-08-05 00:44:28 -0400310 union acpi_object arg = { ACPI_TYPE_INTEGER };
311 struct acpi_object_list arg_list = { 1, &arg };
312 acpi_status status = AE_OK;
313 int i;
314 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!dev || !dev->wakeup.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 arg.integer.value = 1;
320 /* Open power resource */
321 for (i = 0; i < dev->wakeup.resources.count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500322 ret = acpi_power_on(dev->wakeup.resources.handles[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400324 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400326 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 }
329
330 /* Execute PSW */
331 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
332 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Len Brown64684632006-06-26 23:41:38 -0400333 printk(KERN_ERR PREFIX "Evaluate _PSW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 dev->wakeup.flags.valid = 0;
335 ret = -1;
336 }
337
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341/*
342 * Shutdown a wakeup device, counterpart of above method
343 * 1. Disable _PSW (power state wake)
344 * 2. Shutdown down the power resources
345 */
Len Brown4be44fc2005-08-05 00:44:28 -0400346int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Len Brown4be44fc2005-08-05 00:44:28 -0400348 union acpi_object arg = { ACPI_TYPE_INTEGER };
349 struct acpi_object_list arg_list = { 1, &arg };
350 acpi_status status = AE_OK;
351 int i;
352 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (!dev || !dev->wakeup.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400356 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Len Brown4be44fc2005-08-05 00:44:28 -0400358 arg.integer.value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* Execute PSW */
360 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
361 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Len Brown64684632006-06-26 23:41:38 -0400362 printk(KERN_ERR PREFIX "Evaluate _PSW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400364 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 /* Close power resource */
368 for (i = 0; i < dev->wakeup.resources.count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500369 ret = acpi_power_off_device(dev->wakeup.resources.handles[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400371 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375 }
376
Patrick Mocheld550d982006-06-27 00:41:40 -0400377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380/* --------------------------------------------------------------------------
381 Device Power Management
382 -------------------------------------------------------------------------- */
383
Len Brown4be44fc2005-08-05 00:44:28 -0400384int acpi_power_get_inferred_state(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Len Brown4be44fc2005-08-05 00:44:28 -0400386 int result = 0;
387 struct acpi_handle_list *list = NULL;
388 int list_state = 0;
389 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400393 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 device->power.state = ACPI_STATE_UNKNOWN;
396
397 /*
398 * We know a device's inferred power state when all the resources
399 * required for a given D-state are 'on'.
400 */
Len Brown4be44fc2005-08-05 00:44:28 -0400401 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 list = &device->power.states[i].resources;
403 if (list->count < 1)
404 continue;
405
406 result = acpi_power_get_list_state(list, &list_state);
407 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400408 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
411 device->power.state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400412 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 }
415
416 device->power.state = ACPI_STATE_D3;
417
Patrick Mocheld550d982006-06-27 00:41:40 -0400418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Len Brown4be44fc2005-08-05 00:44:28 -0400421int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Len Brown4be44fc2005-08-05 00:44:28 -0400423 int result = 0;
424 struct acpi_handle_list *cl = NULL; /* Current Resources */
425 struct acpi_handle_list *tl = NULL; /* Target Resources */
426 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400430 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 if ((device->power.state < ACPI_STATE_D0)
433 || (device->power.state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400434 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 cl = &device->power.states[device->power.state].resources;
437 tl = &device->power.states[state].resources;
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!cl->count && !tl->count) {
440 result = -ENODEV;
441 goto end;
442 }
443
444 /* TBD: Resources must be ordered. */
445
446 /*
447 * First we reference all power resources required in the target list
448 * (e.g. so the device doesn't lose power while transitioning).
449 */
Len Brown4be44fc2005-08-05 00:44:28 -0400450 for (i = 0; i < tl->count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500451 result = acpi_power_on(tl->handles[i], device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (result)
453 goto end;
454 }
455
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500456 if (device->power.state == state) {
457 goto end;
458 }
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
461 * Then we dereference all power resources used in the current list.
462 */
Len Brown4be44fc2005-08-05 00:44:28 -0400463 for (i = 0; i < cl->count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500464 result = acpi_power_off_device(cl->handles[i], device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (result)
466 goto end;
467 }
468
Konstantin Karasyov72925762007-02-21 02:05:58 -0500469 end:
470 if (result) {
471 device->power.state = ACPI_STATE_UNKNOWN;
Len Browncece9292006-06-26 23:04:31 -0400472 printk(KERN_WARNING PREFIX "Transitioning device [%s] to D%d\n",
473 device->pnp.bus_id, state);
Konstantin Karasyov72925762007-02-21 02:05:58 -0500474 } else {
475 /* We shouldn't change the state till all above operations succeed */
476 device->power.state = state;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Patrick Mocheld550d982006-06-27 00:41:40 -0400479 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/* --------------------------------------------------------------------------
483 FS Interface (/proc)
484 -------------------------------------------------------------------------- */
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486static struct proc_dir_entry *acpi_power_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488static int acpi_power_seq_show(struct seq_file *seq, void *offset)
489{
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500490 int count = 0;
491 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500493 struct list_head *node, *next;
494 struct acpi_power_reference *ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200497 resource = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (!resource)
500 goto end;
501
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500502 result = acpi_power_get_state(resource);
503 if (result)
504 goto end;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 seq_puts(seq, "state: ");
507 switch (resource->state) {
508 case ACPI_POWER_RESOURCE_STATE_ON:
509 seq_puts(seq, "on\n");
510 break;
511 case ACPI_POWER_RESOURCE_STATE_OFF:
512 seq_puts(seq, "off\n");
513 break;
514 default:
515 seq_puts(seq, "unknown\n");
516 break;
517 }
518
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500519 mutex_lock(&resource->resource_lock);
520 list_for_each_safe(node, next, &resource->reference) {
521 ref = container_of(node, struct acpi_power_reference, node);
522 count++;
523 }
524 mutex_unlock(&resource->resource_lock);
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 seq_printf(seq, "system level: S%d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400527 "order: %d\n"
528 "reference count: %d\n",
529 resource->system_level,
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500530 resource->order, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Len Brown4be44fc2005-08-05 00:44:28 -0400532 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400533 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static int acpi_power_open_fs(struct inode *inode, struct file *file)
537{
538 return single_open(file, acpi_power_seq_show, PDE(inode)->data);
539}
540
Len Brown4be44fc2005-08-05 00:44:28 -0400541static int acpi_power_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Len Brown4be44fc2005-08-05 00:44:28 -0400543 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400547 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 if (!acpi_device_dir(device)) {
550 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400551 acpi_power_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400553 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
556 /* 'status' [R] */
557 entry = create_proc_entry(ACPI_POWER_FILE_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400558 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400560 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 else {
562 entry->proc_fops = &acpi_power_fops;
563 entry->data = acpi_driver_data(device);
564 }
565
Patrick Mocheld550d982006-06-27 00:41:40 -0400566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Len Brown4be44fc2005-08-05 00:44:28 -0400569static int acpi_power_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (acpi_device_dir(device)) {
573 remove_proc_entry(ACPI_POWER_FILE_STATUS,
574 acpi_device_dir(device));
575 remove_proc_entry(acpi_device_bid(device), acpi_power_dir);
576 acpi_device_dir(device) = NULL;
577 }
578
Patrick Mocheld550d982006-06-27 00:41:40 -0400579 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582/* --------------------------------------------------------------------------
583 Driver Interface
584 -------------------------------------------------------------------------- */
585
Len Brown4be44fc2005-08-05 00:44:28 -0400586static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Len Brown4be44fc2005-08-05 00:44:28 -0400588 int result = 0;
589 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400591 union acpi_object acpi_object;
592 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Burman Yan36bcbec2006-12-19 12:56:11 -0800598 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Patrick Mochel41598572006-05-19 16:54:40 -0400602 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500603 mutex_init(&resource->resource_lock);
604 INIT_LIST_HEAD(&resource->reference);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 strcpy(resource->name, device->pnp.bus_id);
606 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
607 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
608 acpi_driver_data(device) = resource;
609
610 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400611 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (ACPI_FAILURE(status)) {
613 result = -ENODEV;
614 goto end;
615 }
616 resource->system_level = acpi_object.power_resource.system_level;
617 resource->order = acpi_object.power_resource.resource_order;
618
619 result = acpi_power_get_state(resource);
620 if (result)
621 goto end;
622
623 switch (resource->state) {
624 case ACPI_POWER_RESOURCE_STATE_ON:
625 device->power.state = ACPI_STATE_D0;
626 break;
627 case ACPI_POWER_RESOURCE_STATE_OFF:
628 device->power.state = ACPI_STATE_D3;
629 break;
630 default:
631 device->power.state = ACPI_STATE_UNKNOWN;
632 break;
633 }
634
635 result = acpi_power_add_fs(device);
636 if (result)
637 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Len Brown4be44fc2005-08-05 00:44:28 -0400639 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
640 acpi_device_bid(device), resource->state ? "on" : "off");
641
642 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (result)
644 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400645
Patrick Mocheld550d982006-06-27 00:41:40 -0400646 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Len Brown4be44fc2005-08-05 00:44:28 -0400649static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500652 struct list_head *node, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400656 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200658 resource = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 acpi_power_remove_fs(device);
661
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500662 mutex_lock(&resource->resource_lock);
663 list_for_each_safe(node, next, &resource->reference) {
664 struct acpi_power_reference *ref = container_of(node, struct acpi_power_reference, node);
665 list_del(&ref->node);
666 kfree(ref);
667 }
668 mutex_unlock(&resource->resource_lock);
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 kfree(resource);
671
Patrick Mocheld550d982006-06-27 00:41:40 -0400672 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Len Browne8363f32007-02-16 02:05:39 -0500675static int acpi_power_resume(struct acpi_device *device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500676{
677 int result = 0;
678 struct acpi_power_resource *resource = NULL;
679 struct acpi_power_reference *ref;
680
681 if (!device || !acpi_driver_data(device))
682 return -EINVAL;
683
684 resource = (struct acpi_power_resource *)acpi_driver_data(device);
685
686 result = acpi_power_get_state(resource);
687 if (result)
688 return result;
689
690 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500691 if ((resource->state == ACPI_POWER_RESOURCE_STATE_OFF) &&
692 !list_empty(&resource->reference)) {
693 ref = container_of(resource->reference.next, struct acpi_power_reference, node);
694 mutex_unlock(&resource->resource_lock);
695 result = acpi_power_on(device->handle, ref->device);
696 return result;
697 }
698
699 mutex_unlock(&resource->resource_lock);
700 return 0;
701}
702
Len Brown4be44fc2005-08-05 00:44:28 -0400703static int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Len Brown4be44fc2005-08-05 00:44:28 -0400705 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 INIT_LIST_HEAD(&acpi_power_resource_list);
712
713 acpi_power_dir = proc_mkdir(ACPI_POWER_CLASS, acpi_root_dir);
714 if (!acpi_power_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400715 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 result = acpi_bus_register_driver(&acpi_power_driver);
718 if (result < 0) {
719 remove_proc_entry(ACPI_POWER_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
Patrick Mocheld550d982006-06-27 00:41:40 -0400723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
726subsys_initcall(acpi_power_init);