blob: 2b61719d680bde1e697fdd7c23e07177a77c36bc [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 Brown4be44fc2005-08-05 00:44:28 -040048ACPI_MODULE_NAME("acpi_power")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_POWER_COMPONENT 0x00800000
50#define ACPI_POWER_CLASS "power_resource"
51#define ACPI_POWER_DRIVER_NAME "ACPI Power Resource Driver"
52#define ACPI_POWER_DEVICE_NAME "Power Resource"
53#define ACPI_POWER_FILE_INFO "info"
54#define ACPI_POWER_FILE_STATUS "state"
55#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
56#define ACPI_POWER_RESOURCE_STATE_ON 0x01
57#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Len Brown4be44fc2005-08-05 00:44:28 -040058static int acpi_power_add(struct acpi_device *device);
59static int acpi_power_remove(struct acpi_device *device, int type);
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 Brown4be44fc2005-08-05 00:44:28 -040063 .name = ACPI_POWER_DRIVER_NAME,
64 .class = ACPI_POWER_CLASS,
65 .ids = ACPI_POWER_HID,
66 .ops = {
67 .add = acpi_power_add,
68 .remove = acpi_power_remove,
69 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Len Brown4be44fc2005-08-05 00:44:28 -040072struct acpi_power_resource {
73 acpi_handle handle;
Patrick Mochel41598572006-05-19 16:54:40 -040074 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040075 acpi_bus_id name;
76 u32 system_level;
77 u32 order;
78 int state;
79 int references;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Len Brown4be44fc2005-08-05 00:44:28 -040082static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84static struct file_operations acpi_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -040085 .open = acpi_power_open_fs,
86 .read = seq_read,
87 .llseek = seq_lseek,
88 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91/* --------------------------------------------------------------------------
92 Power Resource Management
93 -------------------------------------------------------------------------- */
94
95static int
Len Brown4be44fc2005-08-05 00:44:28 -040096acpi_power_get_context(acpi_handle handle,
97 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Len Brown4be44fc2005-08-05 00:44:28 -040099 int result = 0;
100 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400104 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 result = acpi_bus_get_device(handle, &device);
107 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400108 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400109 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112 *resource = (struct acpi_power_resource *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400114 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Patrick Mocheld550d982006-06-27 00:41:40 -0400116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119static int acpi_power_get_state(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Len Brown4be44fc2005-08-05 00:44:28 -0400121 acpi_status status = AE_OK;
122 unsigned long sta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400126 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 status = acpi_evaluate_integer(resource->handle, "_STA", NULL, &sta);
129 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400130 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (sta & 0x01)
133 resource->state = ACPI_POWER_RESOURCE_STATE_ON;
134 else
135 resource->state = ACPI_POWER_RESOURCE_STATE_OFF;
136
137 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400138 resource->name, resource->state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Patrick Mocheld550d982006-06-27 00:41:40 -0400140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Len Brown4be44fc2005-08-05 00:44:28 -0400143static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Len Brown4be44fc2005-08-05 00:44:28 -0400145 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400151 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* The state of the list is 'on' IFF all resources are 'on'. */
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 for (i = 0; i < list->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 result = acpi_power_get_context(list->handles[i], &resource);
157 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400158 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 result = acpi_power_get_state(resource);
160 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400161 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 *state = resource->state;
164
165 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
166 break;
167 }
168
169 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400170 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175static int acpi_power_on(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Len Brown4be44fc2005-08-05 00:44:28 -0400177 int result = 0;
178 acpi_status status = AE_OK;
179 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 struct acpi_power_resource *resource = NULL;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 result = acpi_power_get_context(handle, &resource);
184 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400185 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 resource->references++;
188
Len Brown4be44fc2005-08-05 00:44:28 -0400189 if ((resource->references > 1)
190 || (resource->state == ACPI_POWER_RESOURCE_STATE_ON)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] already on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400192 resource->name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 status = acpi_evaluate_object(resource->handle, "_ON", NULL, NULL);
197 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400198 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 result = acpi_power_get_state(resource);
201 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400202 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (resource->state != ACPI_POWER_RESOURCE_STATE_ON)
Patrick Mocheld550d982006-06-27 00:41:40 -0400204 return -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400207 device = resource->device;
208 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400211 resource->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick Mocheld550d982006-06-27 00:41:40 -0400213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216static int acpi_power_off_device(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Len Brown4be44fc2005-08-05 00:44:28 -0400218 int result = 0;
219 acpi_status status = AE_OK;
220 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct acpi_power_resource *resource = NULL;
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 result = acpi_power_get_context(handle, &resource);
225 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400226 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (resource->references)
229 resource->references--;
230
231 if (resource->references) {
Len Brown4be44fc2005-08-05 00:44:28 -0400232 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
233 "Resource [%s] is still in use, dereferencing\n",
234 device->pnp.bus_id));
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 if (resource->state == ACPI_POWER_RESOURCE_STATE_OFF) {
239 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] already off\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400240 device->pnp.bus_id));
Patrick Mocheld550d982006-06-27 00:41:40 -0400241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
244 status = acpi_evaluate_object(resource->handle, "_OFF", NULL, NULL);
245 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400246 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 result = acpi_power_get_state(resource);
249 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400250 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (resource->state != ACPI_POWER_RESOURCE_STATE_OFF)
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400255 device = resource->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 device->power.state = ACPI_STATE_D3;
257
258 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned off\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400259 resource->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264/*
265 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
266 * 1. Power on the power resources required for the wakeup device
267 * 2. Enable _PSW (power state wake) for the device if present
268 */
Len Brown4be44fc2005-08-05 00:44:28 -0400269int acpi_enable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Len Brown4be44fc2005-08-05 00:44:28 -0400271 union acpi_object arg = { ACPI_TYPE_INTEGER };
272 struct acpi_object_list arg_list = { 1, &arg };
273 acpi_status status = AE_OK;
274 int i;
275 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!dev || !dev->wakeup.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 arg.integer.value = 1;
281 /* Open power resource */
282 for (i = 0; i < dev->wakeup.resources.count; i++) {
283 ret = acpi_power_on(dev->wakeup.resources.handles[i]);
284 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400285 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400287 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 }
290
291 /* Execute PSW */
292 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
293 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Len Brown64684632006-06-26 23:41:38 -0400294 printk(KERN_ERR PREFIX "Evaluate _PSW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 dev->wakeup.flags.valid = 0;
296 ret = -1;
297 }
298
Patrick Mocheld550d982006-06-27 00:41:40 -0400299 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/*
303 * Shutdown a wakeup device, counterpart of above method
304 * 1. Disable _PSW (power state wake)
305 * 2. Shutdown down the power resources
306 */
Len Brown4be44fc2005-08-05 00:44:28 -0400307int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Len Brown4be44fc2005-08-05 00:44:28 -0400309 union acpi_object arg = { ACPI_TYPE_INTEGER };
310 struct acpi_object_list arg_list = { 1, &arg };
311 acpi_status status = AE_OK;
312 int i;
313 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (!dev || !dev->wakeup.flags.valid)
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown4be44fc2005-08-05 00:44:28 -0400319 arg.integer.value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Execute PSW */
321 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
322 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Len Brown64684632006-06-26 23:41:38 -0400323 printk(KERN_ERR PREFIX "Evaluate _PSW\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
328 /* Close power resource */
329 for (i = 0; i < dev->wakeup.resources.count; i++) {
330 ret = acpi_power_off_device(dev->wakeup.resources.handles[i]);
331 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400332 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 dev->wakeup.flags.valid = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -0400334 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 }
337
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341/* --------------------------------------------------------------------------
342 Device Power Management
343 -------------------------------------------------------------------------- */
344
Len Brown4be44fc2005-08-05 00:44:28 -0400345int acpi_power_get_inferred_state(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Len Brown4be44fc2005-08-05 00:44:28 -0400347 int result = 0;
348 struct acpi_handle_list *list = NULL;
349 int list_state = 0;
350 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400354 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 device->power.state = ACPI_STATE_UNKNOWN;
357
358 /*
359 * We know a device's inferred power state when all the resources
360 * required for a given D-state are 'on'.
361 */
Len Brown4be44fc2005-08-05 00:44:28 -0400362 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 list = &device->power.states[i].resources;
364 if (list->count < 1)
365 continue;
366
367 result = acpi_power_get_list_state(list, &list_state);
368 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400369 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
372 device->power.state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375 }
376
377 device->power.state = ACPI_STATE_D3;
378
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Len Brown4be44fc2005-08-05 00:44:28 -0400382int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Len Brown4be44fc2005-08-05 00:44:28 -0400384 int result = 0;
385 struct acpi_handle_list *cl = NULL; /* Current Resources */
386 struct acpi_handle_list *tl = NULL; /* Target Resources */
387 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Len Brown4be44fc2005-08-05 00:44:28 -0400393 if ((device->power.state < ACPI_STATE_D0)
394 || (device->power.state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400395 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 cl = &device->power.states[device->power.state].resources;
398 tl = &device->power.states[state].resources;
399
400 device->power.state = ACPI_STATE_UNKNOWN;
401
402 if (!cl->count && !tl->count) {
403 result = -ENODEV;
404 goto end;
405 }
406
407 /* TBD: Resources must be ordered. */
408
409 /*
410 * First we reference all power resources required in the target list
411 * (e.g. so the device doesn't lose power while transitioning).
412 */
Len Brown4be44fc2005-08-05 00:44:28 -0400413 for (i = 0; i < tl->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 result = acpi_power_on(tl->handles[i]);
415 if (result)
416 goto end;
417 }
418
419 /*
420 * Then we dereference all power resources used in the current list.
421 */
Len Brown4be44fc2005-08-05 00:44:28 -0400422 for (i = 0; i < cl->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 result = acpi_power_off_device(cl->handles[i]);
424 if (result)
425 goto end;
426 }
427
428 /* We shouldn't change the state till all above operations succeed */
429 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400430 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (result)
Len Browncece9292006-06-26 23:04:31 -0400432 printk(KERN_WARNING PREFIX "Transitioning device [%s] to D%d\n",
433 device->pnp.bus_id, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Patrick Mocheld550d982006-06-27 00:41:40 -0400435 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/* --------------------------------------------------------------------------
439 FS Interface (/proc)
440 -------------------------------------------------------------------------- */
441
Len Brown4be44fc2005-08-05 00:44:28 -0400442static struct proc_dir_entry *acpi_power_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444static int acpi_power_seq_show(struct seq_file *seq, void *offset)
445{
446 struct acpi_power_resource *resource = NULL;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 resource = (struct acpi_power_resource *)seq->private;
450
451 if (!resource)
452 goto end;
453
454 seq_puts(seq, "state: ");
455 switch (resource->state) {
456 case ACPI_POWER_RESOURCE_STATE_ON:
457 seq_puts(seq, "on\n");
458 break;
459 case ACPI_POWER_RESOURCE_STATE_OFF:
460 seq_puts(seq, "off\n");
461 break;
462 default:
463 seq_puts(seq, "unknown\n");
464 break;
465 }
466
467 seq_printf(seq, "system level: S%d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400468 "order: %d\n"
469 "reference count: %d\n",
470 resource->system_level,
471 resource->order, resource->references);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Len Brown4be44fc2005-08-05 00:44:28 -0400473 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477static int acpi_power_open_fs(struct inode *inode, struct file *file)
478{
479 return single_open(file, acpi_power_seq_show, PDE(inode)->data);
480}
481
Len Brown4be44fc2005-08-05 00:44:28 -0400482static int acpi_power_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Len Brown4be44fc2005-08-05 00:44:28 -0400484 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400488 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (!acpi_device_dir(device)) {
491 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400492 acpi_power_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400494 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
497 /* 'status' [R] */
498 entry = create_proc_entry(ACPI_POWER_FILE_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400499 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400501 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 else {
503 entry->proc_fops = &acpi_power_fops;
504 entry->data = acpi_driver_data(device);
505 }
506
Patrick Mocheld550d982006-06-27 00:41:40 -0400507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Len Brown4be44fc2005-08-05 00:44:28 -0400510static int acpi_power_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (acpi_device_dir(device)) {
514 remove_proc_entry(ACPI_POWER_FILE_STATUS,
515 acpi_device_dir(device));
516 remove_proc_entry(acpi_device_bid(device), acpi_power_dir);
517 acpi_device_dir(device) = NULL;
518 }
519
Patrick Mocheld550d982006-06-27 00:41:40 -0400520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/* --------------------------------------------------------------------------
524 Driver Interface
525 -------------------------------------------------------------------------- */
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Len Brown4be44fc2005-08-05 00:44:28 -0400529 int result = 0;
530 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400532 union acpi_object acpi_object;
533 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400537 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 resource = kmalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
540 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400541 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 memset(resource, 0, sizeof(struct acpi_power_resource));
543
544 resource->handle = device->handle;
Patrick Mochel41598572006-05-19 16:54:40 -0400545 resource->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 strcpy(resource->name, device->pnp.bus_id);
547 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
548 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
549 acpi_driver_data(device) = resource;
550
551 /* Evalute the object to get the system level and resource order. */
552 status = acpi_evaluate_object(resource->handle, NULL, NULL, &buffer);
553 if (ACPI_FAILURE(status)) {
554 result = -ENODEV;
555 goto end;
556 }
557 resource->system_level = acpi_object.power_resource.system_level;
558 resource->order = acpi_object.power_resource.resource_order;
559
560 result = acpi_power_get_state(resource);
561 if (result)
562 goto end;
563
564 switch (resource->state) {
565 case ACPI_POWER_RESOURCE_STATE_ON:
566 device->power.state = ACPI_STATE_D0;
567 break;
568 case ACPI_POWER_RESOURCE_STATE_OFF:
569 device->power.state = ACPI_STATE_D3;
570 break;
571 default:
572 device->power.state = ACPI_STATE_UNKNOWN;
573 break;
574 }
575
576 result = acpi_power_add_fs(device);
577 if (result)
578 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Len Brown4be44fc2005-08-05 00:44:28 -0400580 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
581 acpi_device_bid(device), resource->state ? "on" : "off");
582
583 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (result)
585 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400586
Patrick Mocheld550d982006-06-27 00:41:40 -0400587 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Len Brown4be44fc2005-08-05 00:44:28 -0400590static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 struct acpi_power_resource *resource = NULL;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 resource = (struct acpi_power_resource *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 acpi_power_remove_fs(device);
601
602 kfree(resource);
603
Patrick Mocheld550d982006-06-27 00:41:40 -0400604 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Len Brown4be44fc2005-08-05 00:44:28 -0400607static int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Len Brown4be44fc2005-08-05 00:44:28 -0400609 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 INIT_LIST_HEAD(&acpi_power_resource_list);
616
617 acpi_power_dir = proc_mkdir(ACPI_POWER_CLASS, acpi_root_dir);
618 if (!acpi_power_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400619 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 result = acpi_bus_register_driver(&acpi_power_driver);
622 if (result < 0) {
623 remove_proc_entry(ACPI_POWER_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400624 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
Patrick Mocheld550d982006-06-27 00:41:40 -0400627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630subsys_initcall(acpi_power_init);