blob: 34f1575710807eada4cfd4ff8162b9753b4cfd1b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_utils.c - ACPI Utility Functions ($Revision: 10 $)
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#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
30#include <acpi/acpi_bus.h>
31#include <acpi/acpi_drivers.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050034ACPI_MODULE_NAME("utils");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* --------------------------------------------------------------------------
37 Object Evaluation Helpers
38 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#ifdef ACPI_DEBUG_OUTPUT
40#define acpi_util_eval_error(h,p,s) {\
41 char prefix[80] = {'\0'};\
42 struct acpi_buffer buffer = {sizeof(prefix), prefix};\
43 acpi_get_name(h, ACPI_FULL_PATHNAME, &buffer);\
44 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluate [%s.%s]: %s\n",\
45 (char *) prefix, p, acpi_format_exception(s))); }
46#else
47#define acpi_util_eval_error(h,p,s)
48#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040050acpi_extract_package(union acpi_object *package,
51 struct acpi_buffer *format, struct acpi_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Len Brown4be44fc2005-08-05 00:44:28 -040053 u32 size_required = 0;
54 u32 tail_offset = 0;
55 char *format_string = NULL;
56 u32 format_count = 0;
57 u32 i = 0;
58 u8 *head = NULL;
59 u8 *tail = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Len Brown4be44fc2005-08-05 00:44:28 -040062 if (!package || (package->type != ACPI_TYPE_PACKAGE)
63 || (package->package.count < 1)) {
Len Browncece9292006-06-26 23:04:31 -040064 printk(KERN_WARNING PREFIX "Invalid package argument\n");
Patrick Mocheld550d982006-06-27 00:41:40 -040065 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 }
67
68 if (!format || !format->pointer || (format->length < 1)) {
Len Browncece9292006-06-26 23:04:31 -040069 printk(KERN_WARNING PREFIX "Invalid format argument\n");
Patrick Mocheld550d982006-06-27 00:41:40 -040070 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72
73 if (!buffer) {
Len Browncece9292006-06-26 23:04:31 -040074 printk(KERN_WARNING PREFIX "Invalid buffer argument\n");
Patrick Mocheld550d982006-06-27 00:41:40 -040075 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 format_count = (format->length / sizeof(char)) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (format_count > package->package.count) {
Len Browncece9292006-06-26 23:04:31 -040080 printk(KERN_WARNING PREFIX "Format specifies more objects [%d]"
81 " than exist in package [%d].\n",
82 format_count, package->package.count);
Patrick Mocheld550d982006-06-27 00:41:40 -040083 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
85
Jan Engelhardt50dd0962006-10-01 00:28:50 +020086 format_string = format->pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 /*
89 * Calculate size_required.
90 */
Len Brown4be44fc2005-08-05 00:44:28 -040091 for (i = 0; i < format_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 union acpi_object *element = &(package->package.elements[i]);
94
95 if (!element) {
Patrick Mocheld550d982006-06-27 00:41:40 -040096 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 switch (element->type) {
100
101 case ACPI_TYPE_INTEGER:
102 switch (format_string[i]) {
103 case 'N':
104 size_required += sizeof(acpi_integer);
105 tail_offset += sizeof(acpi_integer);
106 break;
107 case 'S':
Len Brown4be44fc2005-08-05 00:44:28 -0400108 size_required +=
109 sizeof(char *) + sizeof(acpi_integer) +
110 sizeof(char);
111 tail_offset += sizeof(char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 break;
113 default:
Len Browncece9292006-06-26 23:04:31 -0400114 printk(KERN_WARNING PREFIX "Invalid package element"
Thomas Renningera6fc6722006-06-26 23:58:43 -0400115 " [%d]: got number, expecing"
Len Browncece9292006-06-26 23:04:31 -0400116 " [%c]\n",
117 i, format_string[i]);
Patrick Mocheld550d982006-06-27 00:41:40 -0400118 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120 }
121 break;
122
123 case ACPI_TYPE_STRING:
124 case ACPI_TYPE_BUFFER:
125 switch (format_string[i]) {
126 case 'S':
Len Brown4be44fc2005-08-05 00:44:28 -0400127 size_required +=
128 sizeof(char *) +
129 (element->string.length * sizeof(char)) +
130 sizeof(char);
131 tail_offset += sizeof(char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 break;
133 case 'B':
Len Brown4be44fc2005-08-05 00:44:28 -0400134 size_required +=
135 sizeof(u8 *) +
136 (element->buffer.length * sizeof(u8));
137 tail_offset += sizeof(u8 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 break;
139 default:
Len Browncece9292006-06-26 23:04:31 -0400140 printk(KERN_WARNING PREFIX "Invalid package element"
Thomas Renningera6fc6722006-06-26 23:58:43 -0400141 " [%d] got string/buffer,"
Len Browncece9292006-06-26 23:04:31 -0400142 " expecing [%c]\n",
143 i, format_string[i]);
Patrick Mocheld550d982006-06-27 00:41:40 -0400144 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 break;
146 }
147 break;
148
149 case ACPI_TYPE_PACKAGE:
150 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400151 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
152 "Found unsupported element at index=%d\n",
153 i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* TBD: handle nested packages... */
Patrick Mocheld550d982006-06-27 00:41:40 -0400155 return AE_SUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 break;
157 }
158 }
159
160 /*
161 * Validate output buffer.
162 */
163 if (buffer->length < size_required) {
164 buffer->length = size_required;
Patrick Mocheld550d982006-06-27 00:41:40 -0400165 return AE_BUFFER_OVERFLOW;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 } else if (buffer->length != size_required || !buffer->pointer) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400167 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
170 head = buffer->pointer;
171 tail = buffer->pointer + tail_offset;
172
173 /*
174 * Extract package data.
175 */
Len Brown4be44fc2005-08-05 00:44:28 -0400176 for (i = 0; i < format_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 u8 **pointer = NULL;
179 union acpi_object *element = &(package->package.elements[i]);
180
181 if (!element) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400182 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
185 switch (element->type) {
186
187 case ACPI_TYPE_INTEGER:
188 switch (format_string[i]) {
189 case 'N':
Len Brown4be44fc2005-08-05 00:44:28 -0400190 *((acpi_integer *) head) =
191 element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 head += sizeof(acpi_integer);
193 break;
194 case 'S':
Len Brown4be44fc2005-08-05 00:44:28 -0400195 pointer = (u8 **) head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *pointer = tail;
Len Brown4be44fc2005-08-05 00:44:28 -0400197 *((acpi_integer *) tail) =
198 element->integer.value;
199 head += sizeof(acpi_integer *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 tail += sizeof(acpi_integer);
201 /* NULL terminate string */
202 *tail = (char)0;
203 tail += sizeof(char);
204 break;
205 default:
206 /* Should never get here */
207 break;
208 }
209 break;
210
211 case ACPI_TYPE_STRING:
212 case ACPI_TYPE_BUFFER:
213 switch (format_string[i]) {
214 case 'S':
Len Brown4be44fc2005-08-05 00:44:28 -0400215 pointer = (u8 **) head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *pointer = tail;
Len Brown4be44fc2005-08-05 00:44:28 -0400217 memcpy(tail, element->string.pointer,
218 element->string.length);
219 head += sizeof(char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 tail += element->string.length * sizeof(char);
221 /* NULL terminate string */
222 *tail = (char)0;
223 tail += sizeof(char);
224 break;
225 case 'B':
Len Brown4be44fc2005-08-05 00:44:28 -0400226 pointer = (u8 **) head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 *pointer = tail;
Len Brown4be44fc2005-08-05 00:44:28 -0400228 memcpy(tail, element->buffer.pointer,
229 element->buffer.length);
230 head += sizeof(u8 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 tail += element->buffer.length * sizeof(u8);
232 break;
233 default:
234 /* Should never get here */
235 break;
236 }
237 break;
238
239 case ACPI_TYPE_PACKAGE:
240 /* TBD: handle nested packages... */
241 default:
242 /* Should never get here */
243 break;
244 }
245 }
246
Patrick Mocheld550d982006-06-27 00:41:40 -0400247 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
Len Brown4be44fc2005-08-05 00:44:28 -0400249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250EXPORT_SYMBOL(acpi_extract_package);
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400253acpi_evaluate_integer(acpi_handle handle,
254 acpi_string pathname,
255 struct acpi_object_list *arguments, unsigned long *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Len Brown4be44fc2005-08-05 00:44:28 -0400257 acpi_status status = AE_OK;
258 union acpi_object *element;
259 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 if (!data)
Patrick Mocheld550d982006-06-27 00:41:40 -0400263 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Burman Yan36bcbec2006-12-19 12:56:11 -0800265 element = kzalloc(sizeof(union acpi_object), irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400266 if (!element)
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 buffer.length = sizeof(union acpi_object);
270 buffer.pointer = element;
271 status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
272 if (ACPI_FAILURE(status)) {
273 acpi_util_eval_error(handle, pathname, status);
Vasily Averin64385f22006-04-27 05:25:00 -0400274 kfree(element);
Patrick Mocheld550d982006-06-27 00:41:40 -0400275 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277
278 if (element->type != ACPI_TYPE_INTEGER) {
279 acpi_util_eval_error(handle, pathname, AE_BAD_DATA);
Vasily Averin64385f22006-04-27 05:25:00 -0400280 kfree(element);
Patrick Mocheld550d982006-06-27 00:41:40 -0400281 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
284 *data = element->integer.value;
285 kfree(element);
286
287 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Return value [%lu]\n", *data));
288
Patrick Mocheld550d982006-06-27 00:41:40 -0400289 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Len Brown4be44fc2005-08-05 00:44:28 -0400292EXPORT_SYMBOL(acpi_evaluate_integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294#if 0
295acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400296acpi_evaluate_string(acpi_handle handle,
297 acpi_string pathname,
298 acpi_object_list * arguments, acpi_string * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Len Brown4be44fc2005-08-05 00:44:28 -0400300 acpi_status status = AE_OK;
301 acpi_object *element = NULL;
302 acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 if (!data)
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
309 if (ACPI_FAILURE(status)) {
310 acpi_util_eval_error(handle, pathname, status);
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
314 element = (acpi_object *) buffer.pointer;
315
Len Brown4be44fc2005-08-05 00:44:28 -0400316 if ((element->type != ACPI_TYPE_STRING)
317 || (element->type != ACPI_TYPE_BUFFER)
318 || !element->string.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 acpi_util_eval_error(handle, pathname, AE_BAD_DATA);
Patrick Mocheld550d982006-06-27 00:41:40 -0400320 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Burman Yan36bcbec2006-12-19 12:56:11 -0800323 *data = kzalloc(element->string.length + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!data) {
Len Brown64684632006-06-26 23:41:38 -0400325 printk(KERN_ERR PREFIX "Memory allocation\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400326 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 memcpy(*data, element->string.pointer, element->string.length);
330
331 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Return value [%s]\n", *data));
332
Len Brown02438d82006-06-30 03:19:10 -0400333 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337#endif
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400340acpi_evaluate_reference(acpi_handle handle,
341 acpi_string pathname,
342 struct acpi_object_list *arguments,
343 struct acpi_handle_list *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Len Brown4be44fc2005-08-05 00:44:28 -0400345 acpi_status status = AE_OK;
346 union acpi_object *package = NULL;
347 union acpi_object *element = NULL;
348 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
349 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (!list) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400353 return AE_BAD_PARAMETER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
356 /* Evaluate object. */
357
358 status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
359 if (ACPI_FAILURE(status))
360 goto end;
361
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200362 package = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 if ((buffer.length == 0) || !package) {
Len Brown64684632006-06-26 23:41:38 -0400365 printk(KERN_ERR PREFIX "No return object (len %X ptr %p)\n",
366 (unsigned)buffer.length, package);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 status = AE_BAD_DATA;
368 acpi_util_eval_error(handle, pathname, status);
369 goto end;
370 }
371 if (package->type != ACPI_TYPE_PACKAGE) {
Len Brown64684632006-06-26 23:41:38 -0400372 printk(KERN_ERR PREFIX "Expecting a [Package], found type %X\n",
373 package->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 status = AE_BAD_DATA;
375 acpi_util_eval_error(handle, pathname, status);
376 goto end;
377 }
378 if (!package->package.count) {
Len Brown64684632006-06-26 23:41:38 -0400379 printk(KERN_ERR PREFIX "[Package] has zero elements (%p)\n",
380 package);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 status = AE_BAD_DATA;
382 acpi_util_eval_error(handle, pathname, status);
383 goto end;
384 }
385
386 if (package->package.count > ACPI_MAX_HANDLES) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400387 return AE_NO_MEMORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 list->count = package->package.count;
390
391 /* Extract package data. */
392
393 for (i = 0; i < list->count; i++) {
394
395 element = &(package->package.elements[i]);
396
397 if (element->type != ACPI_TYPE_ANY) {
398 status = AE_BAD_DATA;
Len Brown64684632006-06-26 23:41:38 -0400399 printk(KERN_ERR PREFIX
400 "Expecting a [Reference] package element, found type %X\n",
401 element->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 acpi_util_eval_error(handle, pathname, status);
403 break;
404 }
405
406 /* Get the acpi_handle. */
407
408 list->handles[i] = element->reference.handle;
409 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found reference [%p]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400410 list->handles[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Len Brown4be44fc2005-08-05 00:44:28 -0400413 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (ACPI_FAILURE(status)) {
415 list->count = 0;
416 //kfree(list->handles);
417 }
418
Len Brown02438d82006-06-30 03:19:10 -0400419 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Patrick Mocheld550d982006-06-27 00:41:40 -0400421 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Len Brown4be44fc2005-08-05 00:44:28 -0400424EXPORT_SYMBOL(acpi_evaluate_reference);