blob: c5f7014929b4a2efd5bde0661635fe54b5a9a34b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsutils - Utilities for the resource manager
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acnamesp.h>
46#include <acpi/acresrc.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("rsutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*******************************************************************************
52 *
Bob Moore08978312005-10-21 00:00:00 -040053 * FUNCTION: acpi_rs_decode_bitmask
54 *
55 * PARAMETERS: Mask - Bitmask to decode
56 * List - Where the converted list is returned
57 *
58 * RETURN: Count of bits set (length of list)
59 *
60 * DESCRIPTION: Convert a bit mask into a list of values
61 *
62 ******************************************************************************/
63u8 acpi_rs_decode_bitmask(u16 mask, u8 * list)
64{
65 acpi_native_uint i;
66 u8 bit_count;
67
Bob Moore96db2552005-11-02 00:00:00 -050068 ACPI_FUNCTION_ENTRY();
69
Bob Moore08978312005-10-21 00:00:00 -040070 /* Decode the mask bits */
71
72 for (i = 0, bit_count = 0; mask; i++) {
73 if (mask & 0x0001) {
74 list[bit_count] = (u8) i;
75 bit_count++;
76 }
77
78 mask >>= 1;
79 }
80
81 return (bit_count);
82}
83
84/*******************************************************************************
85 *
86 * FUNCTION: acpi_rs_encode_bitmask
87 *
88 * PARAMETERS: List - List of values to encode
89 * Count - Length of list
90 *
91 * RETURN: Encoded bitmask
92 *
93 * DESCRIPTION: Convert a list of values to an encoded bitmask
94 *
95 ******************************************************************************/
96
97u16 acpi_rs_encode_bitmask(u8 * list, u8 count)
98{
99 acpi_native_uint i;
100 u16 mask;
101
Bob Moore96db2552005-11-02 00:00:00 -0500102 ACPI_FUNCTION_ENTRY();
103
Bob Moore08978312005-10-21 00:00:00 -0400104 /* Encode the list into a single bitmask */
105
106 for (i = 0, mask = 0; i < count; i++) {
107 mask |= (0x0001 << list[i]);
108 }
109
110 return (mask);
111}
112
113/*******************************************************************************
114 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400115 * FUNCTION: acpi_rs_move_data
116 *
117 * PARAMETERS: Destination - Pointer to the destination descriptor
118 * Source - Pointer to the source descriptor
119 * item_count - How many items to move
120 * move_type - Byte width
121 *
122 * RETURN: None
123 *
124 * DESCRIPTION: Move multiple data items from one descriptor to another. Handles
125 * alignment issues and endian issues if necessary, as configured
126 * via the ACPI_MOVE_* macros. (This is why a memcpy is not used)
127 *
128 ******************************************************************************/
Bob Moore08978312005-10-21 00:00:00 -0400129
Bob Moore50eca3e2005-09-30 19:03:00 -0400130void
131acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type)
132{
133 acpi_native_uint i;
134
Bob Moore96db2552005-11-02 00:00:00 -0500135 ACPI_FUNCTION_ENTRY();
136
Bob Moore50eca3e2005-09-30 19:03:00 -0400137 /* One move per item */
138
139 for (i = 0; i < item_count; i++) {
140 switch (move_type) {
Bob Moore08978312005-10-21 00:00:00 -0400141 /*
142 * For the 8-bit case, we can perform the move all at once
143 * since there are no alignment or endian issues
144 */
145 case ACPI_RSC_MOVE8:
146 ACPI_MEMCPY(destination, source, item_count);
147 return;
148
149 /*
150 * 16-, 32-, and 64-bit cases must use the move macros that perform
151 * endian conversion and/or accomodate hardware that cannot perform
152 * misaligned memory transfers
153 */
154 case ACPI_RSC_MOVE16:
Bob Moorec51a4de2005-11-17 13:07:00 -0500155 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i],
156 &ACPI_CAST_PTR(u16, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400157 break;
158
Bob Moore08978312005-10-21 00:00:00 -0400159 case ACPI_RSC_MOVE32:
Bob Moorec51a4de2005-11-17 13:07:00 -0500160 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i],
161 &ACPI_CAST_PTR(u32, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400162 break;
163
Bob Moore08978312005-10-21 00:00:00 -0400164 case ACPI_RSC_MOVE64:
Bob Moorec51a4de2005-11-17 13:07:00 -0500165 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i],
166 &ACPI_CAST_PTR(u64, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400167 break;
168
169 default:
170 return;
171 }
172 }
173}
174
175/*******************************************************************************
176 *
Bob Moore08978312005-10-21 00:00:00 -0400177 * FUNCTION: acpi_rs_set_resource_length
Bob Moore50eca3e2005-09-30 19:03:00 -0400178 *
Bob Moore08978312005-10-21 00:00:00 -0400179 * PARAMETERS: total_length - Length of the AML descriptor, including
180 * the header and length fields.
181 * Aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400182 *
Bob Moore08978312005-10-21 00:00:00 -0400183 * RETURN: None
Bob Moore50eca3e2005-09-30 19:03:00 -0400184 *
Bob Moore08978312005-10-21 00:00:00 -0400185 * DESCRIPTION: Set the resource_length field of an AML
186 * resource descriptor, both Large and Small descriptors are
187 * supported automatically. Note: Descriptor Type field must
188 * be valid.
Bob Moore50eca3e2005-09-30 19:03:00 -0400189 *
190 ******************************************************************************/
191
Bob Moore08978312005-10-21 00:00:00 -0400192void
193acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
194 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400195{
Bob Moore08978312005-10-21 00:00:00 -0400196 acpi_rs_length resource_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400197
198 ACPI_FUNCTION_ENTRY();
199
Bob Moore96db2552005-11-02 00:00:00 -0500200 /* Length is the total descriptor length minus the header length */
201
202 resource_length = (acpi_rs_length)
203 (total_length - acpi_ut_get_resource_header_length(aml));
204
205 /* Length is stored differently for large and small descriptors */
Bob Moore50eca3e2005-09-30 19:03:00 -0400206
Bob Moore08978312005-10-21 00:00:00 -0400207 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400208
Bob Moore96db2552005-11-02 00:00:00 -0500209 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
Bob Moore08978312005-10-21 00:00:00 -0400210
211 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
212 &resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400213 } else {
Bob Moore96db2552005-11-02 00:00:00 -0500214 /* Small descriptor -- bits 2:0 of byte 0 contain the length */
Bob Moore08978312005-10-21 00:00:00 -0400215
216 aml->small_header.descriptor_type = (u8)
217
218 /* Clear any existing length, preserving descriptor type bits */
219 ((aml->small_header.
220 descriptor_type & ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK)
221
222 | resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400223 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400224}
225
226/*******************************************************************************
227 *
228 * FUNCTION: acpi_rs_set_resource_header
229 *
230 * PARAMETERS: descriptor_type - Byte to be inserted as the type
231 * total_length - Length of the AML descriptor, including
232 * the header and length fields.
233 * Aml - Pointer to the raw AML descriptor
234 *
235 * RETURN: None
236 *
237 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
238 * resource descriptor, both Large and Small descriptors are
239 * supported automatically
240 *
241 ******************************************************************************/
242
243void
244acpi_rs_set_resource_header(u8 descriptor_type,
Bob Moore08978312005-10-21 00:00:00 -0400245 acpi_rsdesc_size total_length,
246 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400247{
Bob Moore50eca3e2005-09-30 19:03:00 -0400248 ACPI_FUNCTION_ENTRY();
249
Bob Moore96db2552005-11-02 00:00:00 -0500250 /* Set the Resource Type */
Bob Moore50eca3e2005-09-30 19:03:00 -0400251
252 aml->small_header.descriptor_type = descriptor_type;
253
Bob Moore08978312005-10-21 00:00:00 -0400254 /* Set the Resource Length */
Bob Moore50eca3e2005-09-30 19:03:00 -0400255
Bob Moore08978312005-10-21 00:00:00 -0400256 acpi_rs_set_resource_length(total_length, aml);
Bob Moore50eca3e2005-09-30 19:03:00 -0400257}
258
259/*******************************************************************************
260 *
261 * FUNCTION: acpi_rs_strcpy
262 *
263 * PARAMETERS: Destination - Pointer to the destination string
264 * Source - Pointer to the source string
265 *
266 * RETURN: String length, including NULL terminator
267 *
268 * DESCRIPTION: Local string copy that returns the string length, saving a
269 * strcpy followed by a strlen.
270 *
271 ******************************************************************************/
272
273static u16 acpi_rs_strcpy(char *destination, char *source)
274{
275 u16 i;
276
277 ACPI_FUNCTION_ENTRY();
278
279 for (i = 0; source[i]; i++) {
280 destination[i] = source[i];
281 }
282
283 destination[i] = 0;
284
285 /* Return string length including the NULL terminator */
286
287 return ((u16) (i + 1));
288}
289
290/*******************************************************************************
291 *
292 * FUNCTION: acpi_rs_get_resource_source
293 *
294 * PARAMETERS: resource_length - Length field of the descriptor
295 * minimum_length - Minimum length of the descriptor (minus
296 * any optional fields)
297 * resource_source - Where the resource_source is returned
298 * Aml - Pointer to the raw AML descriptor
299 * string_ptr - (optional) where to store the actual
300 * resource_source string
301 *
302 * RETURN: Length of the string plus NULL terminator, rounded up to 32 bit
303 *
304 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
305 * to an internal resource descriptor
306 *
307 ******************************************************************************/
308
Bob Moore08978312005-10-21 00:00:00 -0400309acpi_rs_length
310acpi_rs_get_resource_source(acpi_rs_length resource_length,
311 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400312 struct acpi_resource_source * resource_source,
313 union aml_resource * aml, char *string_ptr)
314{
Bob Moore08978312005-10-21 00:00:00 -0400315 acpi_rsdesc_size total_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400316 u8 *aml_resource_source;
317
318 ACPI_FUNCTION_ENTRY();
319
320 total_length =
321 resource_length + sizeof(struct aml_resource_large_header);
Bob Moorec51a4de2005-11-17 13:07:00 -0500322 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400323
324 /*
325 * resource_source is present if the length of the descriptor is longer than
326 * the minimum length.
327 *
328 * Note: Some resource descriptors will have an additional null, so
329 * we add 1 to the minimum length.
330 */
Bob Moore08978312005-10-21 00:00:00 -0400331 if (total_length > (acpi_rsdesc_size) (minimum_length + 1)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400332
Bob Moore50eca3e2005-09-30 19:03:00 -0400333 /* Get the resource_source_index */
334
335 resource_source->index = aml_resource_source[0];
336
337 resource_source->string_ptr = string_ptr;
338 if (!string_ptr) {
339 /*
340 * String destination pointer is not specified; Set the String
341 * pointer to the end of the current resource_source structure.
342 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500343 resource_source->string_ptr =
344 ACPI_ADD_PTR(char, resource_source,
345 sizeof(struct acpi_resource_source));
Bob Moore50eca3e2005-09-30 19:03:00 -0400346 }
347
Bob Moore08978312005-10-21 00:00:00 -0400348 /*
349 * In order for the struct_size to fall on a 32-bit boundary, calculate
350 * the length of the string (+1 for the NULL terminator) and expand the
351 * struct_size to the next 32-bit boundary.
352 *
353 * Zero the entire area of the buffer.
354 */
355 total_length =
Bob Moore52fc0b02006-10-02 00:00:00 -0400356 (u32)
Bob Moore08978312005-10-21 00:00:00 -0400357 ACPI_ROUND_UP_to_32_bITS(ACPI_STRLEN
Bob Moore52fc0b02006-10-02 00:00:00 -0400358 (ACPI_CAST_PTR
359 (char,
360 &aml_resource_source[1])) + 1);
361
Bob Moore08978312005-10-21 00:00:00 -0400362 ACPI_MEMSET(resource_source->string_ptr, 0, total_length);
363
Bob Moore50eca3e2005-09-30 19:03:00 -0400364 /* Copy the resource_source string to the destination */
365
366 resource_source->string_length =
367 acpi_rs_strcpy(resource_source->string_ptr,
Bob Moore52fc0b02006-10-02 00:00:00 -0400368 ACPI_CAST_PTR(char,
369 &aml_resource_source[1]));
Bob Moore50eca3e2005-09-30 19:03:00 -0400370
Bob Moore08978312005-10-21 00:00:00 -0400371 return ((acpi_rs_length) total_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400372 }
Bob Moore96db2552005-11-02 00:00:00 -0500373
374 /* resource_source is not present */
375
376 resource_source->index = 0;
377 resource_source->string_length = 0;
378 resource_source->string_ptr = NULL;
379 return (0);
Bob Moore50eca3e2005-09-30 19:03:00 -0400380}
381
382/*******************************************************************************
383 *
384 * FUNCTION: acpi_rs_set_resource_source
385 *
386 * PARAMETERS: Aml - Pointer to the raw AML descriptor
387 * minimum_length - Minimum length of the descriptor (minus
388 * any optional fields)
389 * resource_source - Internal resource_source
390
391 *
392 * RETURN: Total length of the AML descriptor
393 *
Bob Moore08978312005-10-21 00:00:00 -0400394 * DESCRIPTION: Convert an optional resource_source from internal format to a
Bob Moore50eca3e2005-09-30 19:03:00 -0400395 * raw AML resource descriptor
396 *
397 ******************************************************************************/
398
Bob Moore08978312005-10-21 00:00:00 -0400399acpi_rsdesc_size
Bob Moore50eca3e2005-09-30 19:03:00 -0400400acpi_rs_set_resource_source(union aml_resource * aml,
Bob Moore08978312005-10-21 00:00:00 -0400401 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400402 struct acpi_resource_source * resource_source)
403{
404 u8 *aml_resource_source;
Bob Moore08978312005-10-21 00:00:00 -0400405 acpi_rsdesc_size descriptor_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400406
407 ACPI_FUNCTION_ENTRY();
408
409 descriptor_length = minimum_length;
410
411 /* Non-zero string length indicates presence of a resource_source */
412
413 if (resource_source->string_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400414
Bob Moore50eca3e2005-09-30 19:03:00 -0400415 /* Point to the end of the AML descriptor */
416
Bob Moorec51a4de2005-11-17 13:07:00 -0500417 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400418
419 /* Copy the resource_source_index */
420
421 aml_resource_source[0] = (u8) resource_source->index;
422
423 /* Copy the resource_source string */
424
Bob Moore52fc0b02006-10-02 00:00:00 -0400425 ACPI_STRCPY(ACPI_CAST_PTR(char, &aml_resource_source[1]),
Bob Moore50eca3e2005-09-30 19:03:00 -0400426 resource_source->string_ptr);
427
428 /*
429 * Add the length of the string (+ 1 for null terminator) to the
430 * final descriptor length
431 */
432 descriptor_length +=
Bob Moore08978312005-10-21 00:00:00 -0400433 ((acpi_rsdesc_size) resource_source->string_length + 1);
Bob Moore50eca3e2005-09-30 19:03:00 -0400434 }
435
436 /* Return the new total length of the AML descriptor */
437
438 return (descriptor_length);
439}
440
441/*******************************************************************************
442 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * FUNCTION: acpi_rs_get_prt_method_data
444 *
Bob Moore52fc0b02006-10-02 00:00:00 -0400445 * PARAMETERS: Handle - Handle to the containing object
446 * ret_buffer - Pointer to a buffer structure for the
447 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 *
449 * RETURN: Status
450 *
451 * DESCRIPTION: This function is called to get the _PRT value of an object
452 * contained in an object specified by the handle passed in
453 *
454 * If the function fails an appropriate status will be returned
455 * and the contents of the callers buffer is undefined.
456 *
457 ******************************************************************************/
Bob Moore50eca3e2005-09-30 19:03:00 -0400458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400460acpi_rs_get_prt_method_data(acpi_handle handle, struct acpi_buffer * ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Len Brown4be44fc2005-08-05 00:44:28 -0400462 union acpi_operand_object *obj_desc;
463 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Len Brown4be44fc2005-08-05 00:44:28 -0400465 ACPI_FUNCTION_TRACE("rs_get_prt_method_data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* Parameters guaranteed valid by caller */
468
Robert Moore44f6c012005-04-18 22:49:35 -0400469 /* Execute the method, no parameters */
470
Len Brown4be44fc2005-08-05 00:44:28 -0400471 status = acpi_ut_evaluate_object(handle, METHOD_NAME__PRT,
472 ACPI_BTYPE_PACKAGE, &obj_desc);
473 if (ACPI_FAILURE(status)) {
474 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
477 /*
478 * Create a resource linked list from the byte stream buffer that comes
479 * back from the _CRS method execution.
480 */
Len Brown4be44fc2005-08-05 00:44:28 -0400481 status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* On exit, we must delete the object returned by evaluate_object */
484
Len Brown4be44fc2005-08-05 00:44:28 -0400485 acpi_ut_remove_reference(obj_desc);
486 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*******************************************************************************
490 *
491 * FUNCTION: acpi_rs_get_crs_method_data
492 *
Bob Moore52fc0b02006-10-02 00:00:00 -0400493 * PARAMETERS: Handle - Handle to the containing object
494 * ret_buffer - Pointer to a buffer structure for the
495 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 *
497 * RETURN: Status
498 *
499 * DESCRIPTION: This function is called to get the _CRS value of an object
500 * contained in an object specified by the handle passed in
501 *
502 * If the function fails an appropriate status will be returned
503 * and the contents of the callers buffer is undefined.
504 *
505 ******************************************************************************/
506
507acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400508acpi_rs_get_crs_method_data(acpi_handle handle, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Len Brown4be44fc2005-08-05 00:44:28 -0400510 union acpi_operand_object *obj_desc;
511 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 ACPI_FUNCTION_TRACE("rs_get_crs_method_data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /* Parameters guaranteed valid by caller */
516
Robert Moore44f6c012005-04-18 22:49:35 -0400517 /* Execute the method, no parameters */
518
Len Brown4be44fc2005-08-05 00:44:28 -0400519 status = acpi_ut_evaluate_object(handle, METHOD_NAME__CRS,
520 ACPI_BTYPE_BUFFER, &obj_desc);
521 if (ACPI_FAILURE(status)) {
522 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524
525 /*
526 * Make the call to create a resource linked list from the
527 * byte stream buffer that comes back from the _CRS method
528 * execution.
529 */
Len Brown4be44fc2005-08-05 00:44:28 -0400530 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 /* on exit, we must delete the object returned by evaluate_object */
533
Len Brown4be44fc2005-08-05 00:44:28 -0400534 acpi_ut_remove_reference(obj_desc);
535 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*******************************************************************************
539 *
540 * FUNCTION: acpi_rs_get_prs_method_data
541 *
Bob Moore52fc0b02006-10-02 00:00:00 -0400542 * PARAMETERS: Handle - Handle to the containing object
543 * ret_buffer - Pointer to a buffer structure for the
544 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 *
546 * RETURN: Status
547 *
548 * DESCRIPTION: This function is called to get the _PRS value of an object
549 * contained in an object specified by the handle passed in
550 *
551 * If the function fails an appropriate status will be returned
552 * and the contents of the callers buffer is undefined.
553 *
554 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#ifdef ACPI_FUTURE_USAGE
557acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400558acpi_rs_get_prs_method_data(acpi_handle handle, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Len Brown4be44fc2005-08-05 00:44:28 -0400560 union acpi_operand_object *obj_desc;
561 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Len Brown4be44fc2005-08-05 00:44:28 -0400563 ACPI_FUNCTION_TRACE("rs_get_prs_method_data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* Parameters guaranteed valid by caller */
566
Robert Moore44f6c012005-04-18 22:49:35 -0400567 /* Execute the method, no parameters */
568
Len Brown4be44fc2005-08-05 00:44:28 -0400569 status = acpi_ut_evaluate_object(handle, METHOD_NAME__PRS,
570 ACPI_BTYPE_BUFFER, &obj_desc);
571 if (ACPI_FAILURE(status)) {
572 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
575 /*
576 * Make the call to create a resource linked list from the
577 * byte stream buffer that comes back from the _CRS method
578 * execution.
579 */
Len Brown4be44fc2005-08-05 00:44:28 -0400580 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 /* on exit, we must delete the object returned by evaluate_object */
583
Len Brown4be44fc2005-08-05 00:44:28 -0400584 acpi_ut_remove_reference(obj_desc);
585 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
Len Brown4be44fc2005-08-05 00:44:28 -0400587#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589/*******************************************************************************
590 *
591 * FUNCTION: acpi_rs_get_method_data
592 *
Bob Moore52fc0b02006-10-02 00:00:00 -0400593 * PARAMETERS: Handle - Handle to the containing object
Robert Moore44f6c012005-04-18 22:49:35 -0400594 * Path - Path to method, relative to Handle
Bob Moore52fc0b02006-10-02 00:00:00 -0400595 * ret_buffer - Pointer to a buffer structure for the
596 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
598 * RETURN: Status
599 *
600 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
601 * object contained in an object specified by the handle passed in
602 *
603 * If the function fails an appropriate status will be returned
604 * and the contents of the callers buffer is undefined.
605 *
606 ******************************************************************************/
607
608acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400609acpi_rs_get_method_data(acpi_handle handle,
610 char *path, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Len Brown4be44fc2005-08-05 00:44:28 -0400612 union acpi_operand_object *obj_desc;
613 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Len Brown4be44fc2005-08-05 00:44:28 -0400615 ACPI_FUNCTION_TRACE("rs_get_method_data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* Parameters guaranteed valid by caller */
618
Robert Moore44f6c012005-04-18 22:49:35 -0400619 /* Execute the method, no parameters */
620
Len Brown4be44fc2005-08-05 00:44:28 -0400621 status =
622 acpi_ut_evaluate_object(handle, path, ACPI_BTYPE_BUFFER, &obj_desc);
623 if (ACPI_FAILURE(status)) {
624 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 /*
628 * Make the call to create a resource linked list from the
629 * byte stream buffer that comes back from the method
630 * execution.
631 */
Len Brown4be44fc2005-08-05 00:44:28 -0400632 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* On exit, we must delete the object returned by evaluate_object */
635
Len Brown4be44fc2005-08-05 00:44:28 -0400636 acpi_ut_remove_reference(obj_desc);
637 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*******************************************************************************
641 *
642 * FUNCTION: acpi_rs_set_srs_method_data
643 *
Bob Moore52fc0b02006-10-02 00:00:00 -0400644 * PARAMETERS: Handle - Handle to the containing object
645 * in_buffer - Pointer to a buffer structure of the
646 * parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 *
648 * RETURN: Status
649 *
650 * DESCRIPTION: This function is called to set the _SRS of an object contained
651 * in an object specified by the handle passed in
652 *
653 * If the function fails an appropriate status will be returned
654 * and the contents of the callers buffer is undefined.
655 *
656 ******************************************************************************/
657
658acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400659acpi_rs_set_srs_method_data(acpi_handle handle, struct acpi_buffer *in_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Len Brown4be44fc2005-08-05 00:44:28 -0400661 struct acpi_parameter_info info;
662 union acpi_operand_object *params[2];
663 acpi_status status;
664 struct acpi_buffer buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 ACPI_FUNCTION_TRACE("rs_set_srs_method_data");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /* Parameters guaranteed valid by caller */
669
670 /*
671 * The in_buffer parameter will point to a linked list of
672 * resource parameters. It needs to be formatted into a
673 * byte stream to be sent in as an input parameter to _SRS
674 *
675 * Convert the linked list into a byte stream
676 */
677 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400678 status = acpi_rs_create_aml_resources(in_buffer->pointer, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400679 if (ACPI_FAILURE(status)) {
680 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
Robert Moore44f6c012005-04-18 22:49:35 -0400683 /* Init the param object */
684
Len Brown4be44fc2005-08-05 00:44:28 -0400685 params[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!params[0]) {
Len Brown4be44fc2005-08-05 00:44:28 -0400687 acpi_os_free(buffer.pointer);
688 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Robert Moore44f6c012005-04-18 22:49:35 -0400691 /* Set up the parameter object */
692
Len Brown4be44fc2005-08-05 00:44:28 -0400693 params[0]->buffer.length = (u32) buffer.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 params[0]->buffer.pointer = buffer.pointer;
Len Brown4be44fc2005-08-05 00:44:28 -0400695 params[0]->common.flags = AOPOBJ_DATA_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 params[1] = NULL;
697
698 info.node = handle;
699 info.parameters = params;
700 info.parameter_type = ACPI_PARAM_ARGS;
701
Robert Moore44f6c012005-04-18 22:49:35 -0400702 /* Execute the method, no return value */
703
Len Brown4be44fc2005-08-05 00:44:28 -0400704 status = acpi_ns_evaluate_relative(METHOD_NAME__SRS, &info);
705 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* Delete any return object (especially if implicit_return is enabled) */
708
709 if (info.return_object) {
Len Brown4be44fc2005-08-05 00:44:28 -0400710 acpi_ut_remove_reference(info.return_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712 }
713
Robert Moore44f6c012005-04-18 22:49:35 -0400714 /* Clean up and return the status from acpi_ns_evaluate_relative */
715
Len Brown4be44fc2005-08-05 00:44:28 -0400716 acpi_ut_remove_reference(params[0]);
717 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}