]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/acpica/rsutils.c
ACPICA: exmutex: General cleanup, restructured some code
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / acpica / rsutils.c
CommitLineData
1da177e4
LT
1/*******************************************************************************
2 *
3 * Module Name: rsutils - Utilities for the resource manager
4 *
5 ******************************************************************************/
6
7/*
82a80941 8 * Copyright (C) 2000 - 2015, Intel Corp.
1da177e4
LT
9 * 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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acnamesp.h"
47#include "acresrc.h"
1da177e4 48
1da177e4 49#define _COMPONENT ACPI_RESOURCES
4be44fcd 50ACPI_MODULE_NAME("rsutils")
1da177e4 51
0897831b
BM
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_rs_decode_bitmask
55 *
ba494bee
BM
56 * PARAMETERS: mask - Bitmask to decode
57 * list - Where the converted list is returned
0897831b
BM
58 *
59 * RETURN: Count of bits set (length of list)
60 *
61 * DESCRIPTION: Convert a bit mask into a list of values
62 *
63 ******************************************************************************/
64u8 acpi_rs_decode_bitmask(u16 mask, u8 * list)
65{
67a119f9 66 u8 i;
0897831b
BM
67 u8 bit_count;
68
96db255c
BM
69 ACPI_FUNCTION_ENTRY();
70
0897831b
BM
71 /* Decode the mask bits */
72
73 for (i = 0, bit_count = 0; mask; i++) {
74 if (mask & 0x0001) {
67a119f9 75 list[bit_count] = i;
0897831b
BM
76 bit_count++;
77 }
78
79 mask >>= 1;
80 }
81
82 return (bit_count);
83}
84
85/*******************************************************************************
86 *
87 * FUNCTION: acpi_rs_encode_bitmask
88 *
ba494bee
BM
89 * PARAMETERS: list - List of values to encode
90 * count - Length of list
0897831b
BM
91 *
92 * RETURN: Encoded bitmask
93 *
94 * DESCRIPTION: Convert a list of values to an encoded bitmask
95 *
96 ******************************************************************************/
97
98u16 acpi_rs_encode_bitmask(u8 * list, u8 count)
99{
67a119f9
BM
100 u32 i;
101 u16 mask;
0897831b 102
96db255c
BM
103 ACPI_FUNCTION_ENTRY();
104
0897831b
BM
105 /* Encode the list into a single bitmask */
106
107 for (i = 0, mask = 0; i < count; i++) {
1d18c058 108 mask |= (0x1 << list[i]);
0897831b
BM
109 }
110
9c0d7939 111 return (mask);
0897831b
BM
112}
113
50eca3eb
BM
114/*******************************************************************************
115 *
116 * FUNCTION: acpi_rs_move_data
117 *
ba494bee
BM
118 * PARAMETERS: destination - Pointer to the destination descriptor
119 * source - Pointer to the source descriptor
50eca3eb
BM
120 * item_count - How many items to move
121 * move_type - Byte width
122 *
123 * RETURN: None
124 *
125 * DESCRIPTION: Move multiple data items from one descriptor to another. Handles
126 * alignment issues and endian issues if necessary, as configured
127 * via the ACPI_MOVE_* macros. (This is why a memcpy is not used)
128 *
129 ******************************************************************************/
0897831b 130
50eca3eb
BM
131void
132acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type)
133{
67a119f9 134 u32 i;
50eca3eb 135
96db255c
BM
136 ACPI_FUNCTION_ENTRY();
137
50eca3eb
BM
138 /* One move per item */
139
140 for (i = 0; i < item_count; i++) {
141 switch (move_type) {
0897831b
BM
142 /*
143 * For the 8-bit case, we can perform the move all at once
144 * since there are no alignment or endian issues
145 */
146 case ACPI_RSC_MOVE8:
e0fe0a8d
LM
147 case ACPI_RSC_MOVE_GPIO_RES:
148 case ACPI_RSC_MOVE_SERIAL_VEN:
149 case ACPI_RSC_MOVE_SERIAL_RES:
1d1ea1b7 150
4fa4616e 151 memcpy(destination, source, item_count);
0897831b 152 return;
50eca3eb 153
0897831b
BM
154 /*
155 * 16-, 32-, and 64-bit cases must use the move macros that perform
58f87ed0 156 * endian conversion and/or accommodate hardware that cannot perform
0897831b
BM
157 * misaligned memory transfers
158 */
159 case ACPI_RSC_MOVE16:
e0fe0a8d 160 case ACPI_RSC_MOVE_GPIO_PIN:
1d1ea1b7 161
c51a4de8
BM
162 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i],
163 &ACPI_CAST_PTR(u16, source)[i]);
50eca3eb
BM
164 break;
165
0897831b 166 case ACPI_RSC_MOVE32:
1d1ea1b7 167
c51a4de8
BM
168 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i],
169 &ACPI_CAST_PTR(u32, source)[i]);
50eca3eb
BM
170 break;
171
0897831b 172 case ACPI_RSC_MOVE64:
1d1ea1b7 173
c51a4de8
BM
174 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i],
175 &ACPI_CAST_PTR(u64, source)[i]);
50eca3eb
BM
176 break;
177
178 default:
1d1ea1b7 179
50eca3eb
BM
180 return;
181 }
182 }
183}
184
50eca3eb
BM
185/*******************************************************************************
186 *
0897831b 187 * FUNCTION: acpi_rs_set_resource_length
50eca3eb 188 *
0897831b
BM
189 * PARAMETERS: total_length - Length of the AML descriptor, including
190 * the header and length fields.
ba494bee 191 * aml - Pointer to the raw AML descriptor
50eca3eb 192 *
0897831b 193 * RETURN: None
50eca3eb 194 *
0897831b
BM
195 * DESCRIPTION: Set the resource_length field of an AML
196 * resource descriptor, both Large and Small descriptors are
197 * supported automatically. Note: Descriptor Type field must
198 * be valid.
50eca3eb
BM
199 *
200 ******************************************************************************/
201
0897831b
BM
202void
203acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
204 union aml_resource *aml)
50eca3eb 205{
0897831b 206 acpi_rs_length resource_length;
50eca3eb
BM
207
208 ACPI_FUNCTION_ENTRY();
209
96db255c 210 /* Length is the total descriptor length minus the header length */
50eca3eb 211
96db255c
BM
212 resource_length = (acpi_rs_length)
213 (total_length - acpi_ut_get_resource_header_length(aml));
50eca3eb 214
96db255c 215 /* Length is stored differently for large and small descriptors */
0897831b 216
96db255c 217 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
52fc0b02 218
96db255c 219 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
50eca3eb 220
0897831b
BM
221 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
222 &resource_length);
50eca3eb 223 } else {
96db255c 224 /* Small descriptor -- bits 2:0 of byte 0 contain the length */
50eca3eb 225
0897831b 226 aml->small_header.descriptor_type = (u8)
50eca3eb 227
0897831b
BM
228 /* Clear any existing length, preserving descriptor type bits */
229 ((aml->small_header.
230 descriptor_type & ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK)
50eca3eb 231
0897831b 232 | resource_length);
50eca3eb 233 }
50eca3eb
BM
234}
235
236/*******************************************************************************
237 *
238 * FUNCTION: acpi_rs_set_resource_header
239 *
240 * PARAMETERS: descriptor_type - Byte to be inserted as the type
241 * total_length - Length of the AML descriptor, including
242 * the header and length fields.
ba494bee 243 * aml - Pointer to the raw AML descriptor
50eca3eb
BM
244 *
245 * RETURN: None
246 *
247 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
248 * resource descriptor, both Large and Small descriptors are
249 * supported automatically
250 *
251 ******************************************************************************/
252
253void
254acpi_rs_set_resource_header(u8 descriptor_type,
0897831b
BM
255 acpi_rsdesc_size total_length,
256 union aml_resource *aml)
50eca3eb 257{
50eca3eb
BM
258 ACPI_FUNCTION_ENTRY();
259
96db255c 260 /* Set the Resource Type */
50eca3eb
BM
261
262 aml->small_header.descriptor_type = descriptor_type;
263
0897831b 264 /* Set the Resource Length */
50eca3eb 265
0897831b 266 acpi_rs_set_resource_length(total_length, aml);
50eca3eb
BM
267}
268
269/*******************************************************************************
270 *
271 * FUNCTION: acpi_rs_strcpy
272 *
ba494bee
BM
273 * PARAMETERS: destination - Pointer to the destination string
274 * source - Pointer to the source string
50eca3eb
BM
275 *
276 * RETURN: String length, including NULL terminator
277 *
278 * DESCRIPTION: Local string copy that returns the string length, saving a
279 * strcpy followed by a strlen.
280 *
281 ******************************************************************************/
282
283static u16 acpi_rs_strcpy(char *destination, char *source)
284{
285 u16 i;
286
287 ACPI_FUNCTION_ENTRY();
288
289 for (i = 0; source[i]; i++) {
290 destination[i] = source[i];
291 }
292
293 destination[i] = 0;
294
295 /* Return string length including the NULL terminator */
296
297 return ((u16) (i + 1));
298}
299
300/*******************************************************************************
301 *
302 * FUNCTION: acpi_rs_get_resource_source
303 *
304 * PARAMETERS: resource_length - Length field of the descriptor
305 * minimum_length - Minimum length of the descriptor (minus
306 * any optional fields)
307 * resource_source - Where the resource_source is returned
ba494bee 308 * aml - Pointer to the raw AML descriptor
50eca3eb
BM
309 * string_ptr - (optional) where to store the actual
310 * resource_source string
311 *
ea936b78
BM
312 * RETURN: Length of the string plus NULL terminator, rounded up to native
313 * word boundary
50eca3eb
BM
314 *
315 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
316 * to an internal resource descriptor
317 *
318 ******************************************************************************/
319
0897831b
BM
320acpi_rs_length
321acpi_rs_get_resource_source(acpi_rs_length resource_length,
322 acpi_rs_length minimum_length,
50eca3eb
BM
323 struct acpi_resource_source * resource_source,
324 union aml_resource * aml, char *string_ptr)
325{
0897831b 326 acpi_rsdesc_size total_length;
50eca3eb
BM
327 u8 *aml_resource_source;
328
329 ACPI_FUNCTION_ENTRY();
330
331 total_length =
332 resource_length + sizeof(struct aml_resource_large_header);
c51a4de8 333 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
50eca3eb
BM
334
335 /*
336 * resource_source is present if the length of the descriptor is longer than
337 * the minimum length.
338 *
339 * Note: Some resource descriptors will have an additional null, so
340 * we add 1 to the minimum length.
341 */
0897831b 342 if (total_length > (acpi_rsdesc_size) (minimum_length + 1)) {
52fc0b02 343
50eca3eb
BM
344 /* Get the resource_source_index */
345
346 resource_source->index = aml_resource_source[0];
347
348 resource_source->string_ptr = string_ptr;
349 if (!string_ptr) {
350 /*
351 * String destination pointer is not specified; Set the String
352 * pointer to the end of the current resource_source structure.
353 */
c51a4de8
BM
354 resource_source->string_ptr =
355 ACPI_ADD_PTR(char, resource_source,
356 sizeof(struct acpi_resource_source));
50eca3eb
BM
357 }
358
0897831b 359 /*
ea936b78
BM
360 * In order for the Resource length to be a multiple of the native
361 * word, calculate the length of the string (+1 for NULL terminator)
362 * and expand to the next word multiple.
0897831b
BM
363 *
364 * Zero the entire area of the buffer.
365 */
3e8214e5 366 total_length =
4fa4616e 367 (u32)strlen(ACPI_CAST_PTR(char, &aml_resource_source[1])) +
3e8214e5 368 1;
52c1d803 369 total_length = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(total_length);
52fc0b02 370
4fa4616e 371 memset(resource_source->string_ptr, 0, total_length);
0897831b 372
50eca3eb
BM
373 /* Copy the resource_source string to the destination */
374
375 resource_source->string_length =
376 acpi_rs_strcpy(resource_source->string_ptr,
52fc0b02
BM
377 ACPI_CAST_PTR(char,
378 &aml_resource_source[1]));
50eca3eb 379
0897831b 380 return ((acpi_rs_length) total_length);
50eca3eb 381 }
96db255c
BM
382
383 /* resource_source is not present */
384
385 resource_source->index = 0;
386 resource_source->string_length = 0;
387 resource_source->string_ptr = NULL;
388 return (0);
50eca3eb
BM
389}
390
391/*******************************************************************************
392 *
393 * FUNCTION: acpi_rs_set_resource_source
394 *
ba494bee 395 * PARAMETERS: aml - Pointer to the raw AML descriptor
50eca3eb
BM
396 * minimum_length - Minimum length of the descriptor (minus
397 * any optional fields)
398 * resource_source - Internal resource_source
399
400 *
401 * RETURN: Total length of the AML descriptor
402 *
0897831b 403 * DESCRIPTION: Convert an optional resource_source from internal format to a
50eca3eb
BM
404 * raw AML resource descriptor
405 *
406 ******************************************************************************/
407
0897831b 408acpi_rsdesc_size
50eca3eb 409acpi_rs_set_resource_source(union aml_resource * aml,
0897831b 410 acpi_rs_length minimum_length,
50eca3eb
BM
411 struct acpi_resource_source * resource_source)
412{
413 u8 *aml_resource_source;
0897831b 414 acpi_rsdesc_size descriptor_length;
50eca3eb
BM
415
416 ACPI_FUNCTION_ENTRY();
417
418 descriptor_length = minimum_length;
419
420 /* Non-zero string length indicates presence of a resource_source */
421
422 if (resource_source->string_length) {
52fc0b02 423
50eca3eb
BM
424 /* Point to the end of the AML descriptor */
425
c51a4de8 426 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
50eca3eb
BM
427
428 /* Copy the resource_source_index */
429
430 aml_resource_source[0] = (u8) resource_source->index;
431
432 /* Copy the resource_source string */
433
4fa4616e
BM
434 strcpy(ACPI_CAST_PTR(char, &aml_resource_source[1]),
435 resource_source->string_ptr);
50eca3eb
BM
436
437 /*
438 * Add the length of the string (+ 1 for null terminator) to the
439 * final descriptor length
440 */
441 descriptor_length +=
0897831b 442 ((acpi_rsdesc_size) resource_source->string_length + 1);
50eca3eb
BM
443 }
444
445 /* Return the new total length of the AML descriptor */
446
447 return (descriptor_length);
448}
449
1da177e4
LT
450/*******************************************************************************
451 *
452 * FUNCTION: acpi_rs_get_prt_method_data
453 *
ba494bee 454 * PARAMETERS: node - Device node
52fc0b02
BM
455 * ret_buffer - Pointer to a buffer structure for the
456 * results
1da177e4
LT
457 *
458 * RETURN: Status
459 *
460 * DESCRIPTION: This function is called to get the _PRT value of an object
461 * contained in an object specified by the handle passed in
462 *
463 * If the function fails an appropriate status will be returned
464 * and the contents of the callers buffer is undefined.
465 *
466 ******************************************************************************/
50eca3eb 467
1da177e4 468acpi_status
4119532c
BM
469acpi_rs_get_prt_method_data(struct acpi_namespace_node * node,
470 struct acpi_buffer * ret_buffer)
1da177e4 471{
4be44fcd
LB
472 union acpi_operand_object *obj_desc;
473 acpi_status status;
1da177e4 474
b229cf92 475 ACPI_FUNCTION_TRACE(rs_get_prt_method_data);
1da177e4
LT
476
477 /* Parameters guaranteed valid by caller */
478
44f6c012
RM
479 /* Execute the method, no parameters */
480
4119532c 481 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRT,
4be44fcd
LB
482 ACPI_BTYPE_PACKAGE, &obj_desc);
483 if (ACPI_FAILURE(status)) {
484 return_ACPI_STATUS(status);
1da177e4
LT
485 }
486
487 /*
488 * Create a resource linked list from the byte stream buffer that comes
489 * back from the _CRS method execution.
490 */
4be44fcd 491 status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer);
1da177e4
LT
492
493 /* On exit, we must delete the object returned by evaluate_object */
494
4be44fcd
LB
495 acpi_ut_remove_reference(obj_desc);
496 return_ACPI_STATUS(status);
1da177e4
LT
497}
498
1da177e4
LT
499/*******************************************************************************
500 *
501 * FUNCTION: acpi_rs_get_crs_method_data
502 *
ba494bee 503 * PARAMETERS: node - Device node
52fc0b02
BM
504 * ret_buffer - Pointer to a buffer structure for the
505 * results
1da177e4
LT
506 *
507 * RETURN: Status
508 *
509 * DESCRIPTION: This function is called to get the _CRS value of an object
510 * contained in an object specified by the handle passed in
511 *
512 * If the function fails an appropriate status will be returned
513 * and the contents of the callers buffer is undefined.
514 *
515 ******************************************************************************/
516
517acpi_status
4119532c
BM
518acpi_rs_get_crs_method_data(struct acpi_namespace_node *node,
519 struct acpi_buffer *ret_buffer)
1da177e4 520{
4be44fcd
LB
521 union acpi_operand_object *obj_desc;
522 acpi_status status;
1da177e4 523
b229cf92 524 ACPI_FUNCTION_TRACE(rs_get_crs_method_data);
1da177e4
LT
525
526 /* Parameters guaranteed valid by caller */
527
44f6c012
RM
528 /* Execute the method, no parameters */
529
4119532c 530 status = acpi_ut_evaluate_object(node, METHOD_NAME__CRS,
4be44fcd
LB
531 ACPI_BTYPE_BUFFER, &obj_desc);
532 if (ACPI_FAILURE(status)) {
533 return_ACPI_STATUS(status);
1da177e4
LT
534 }
535
536 /*
537 * Make the call to create a resource linked list from the
538 * byte stream buffer that comes back from the _CRS method
539 * execution.
540 */
4be44fcd 541 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
1da177e4 542
ba494bee 543 /* On exit, we must delete the object returned by evaluateObject */
1da177e4 544
4be44fcd
LB
545 acpi_ut_remove_reference(obj_desc);
546 return_ACPI_STATUS(status);
1da177e4
LT
547}
548
1da177e4
LT
549/*******************************************************************************
550 *
551 * FUNCTION: acpi_rs_get_prs_method_data
552 *
ba494bee 553 * PARAMETERS: node - Device node
52fc0b02
BM
554 * ret_buffer - Pointer to a buffer structure for the
555 * results
1da177e4
LT
556 *
557 * RETURN: Status
558 *
559 * DESCRIPTION: This function is called to get the _PRS value of an object
560 * contained in an object specified by the handle passed in
561 *
562 * If the function fails an appropriate status will be returned
563 * and the contents of the callers buffer is undefined.
564 *
565 ******************************************************************************/
44f6c012 566
1da177e4 567acpi_status
4119532c
BM
568acpi_rs_get_prs_method_data(struct acpi_namespace_node *node,
569 struct acpi_buffer *ret_buffer)
1da177e4 570{
4be44fcd
LB
571 union acpi_operand_object *obj_desc;
572 acpi_status status;
1da177e4 573
b229cf92 574 ACPI_FUNCTION_TRACE(rs_get_prs_method_data);
1da177e4
LT
575
576 /* Parameters guaranteed valid by caller */
577
44f6c012
RM
578 /* Execute the method, no parameters */
579
4119532c 580 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRS,
4be44fcd
LB
581 ACPI_BTYPE_BUFFER, &obj_desc);
582 if (ACPI_FAILURE(status)) {
583 return_ACPI_STATUS(status);
1da177e4
LT
584 }
585
586 /*
587 * Make the call to create a resource linked list from the
588 * byte stream buffer that comes back from the _CRS method
589 * execution.
590 */
4be44fcd 591 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
1da177e4 592
ba494bee 593 /* On exit, we must delete the object returned by evaluateObject */
1da177e4 594
4be44fcd
LB
595 acpi_ut_remove_reference(obj_desc);
596 return_ACPI_STATUS(status);
1da177e4 597}
1da177e4 598
a91cdde2
BM
599/*******************************************************************************
600 *
601 * FUNCTION: acpi_rs_get_aei_method_data
602 *
ba494bee 603 * PARAMETERS: node - Device node
a91cdde2
BM
604 * ret_buffer - Pointer to a buffer structure for the
605 * results
606 *
607 * RETURN: Status
608 *
609 * DESCRIPTION: This function is called to get the _AEI value of an object
610 * contained in an object specified by the handle passed in
611 *
612 * If the function fails an appropriate status will be returned
613 * and the contents of the callers buffer is undefined.
614 *
615 ******************************************************************************/
616
617acpi_status
618acpi_rs_get_aei_method_data(struct acpi_namespace_node *node,
619 struct acpi_buffer *ret_buffer)
620{
621 union acpi_operand_object *obj_desc;
622 acpi_status status;
623
624 ACPI_FUNCTION_TRACE(rs_get_aei_method_data);
625
626 /* Parameters guaranteed valid by caller */
627
628 /* Execute the method, no parameters */
629
630 status = acpi_ut_evaluate_object(node, METHOD_NAME__AEI,
631 ACPI_BTYPE_BUFFER, &obj_desc);
632 if (ACPI_FAILURE(status)) {
633 return_ACPI_STATUS(status);
634 }
635
636 /*
637 * Make the call to create a resource linked list from the
638 * byte stream buffer that comes back from the _CRS method
639 * execution.
640 */
641 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
642
ba494bee 643 /* On exit, we must delete the object returned by evaluateObject */
a91cdde2
BM
644
645 acpi_ut_remove_reference(obj_desc);
646 return_ACPI_STATUS(status);
647}
648
1da177e4
LT
649/*******************************************************************************
650 *
651 * FUNCTION: acpi_rs_get_method_data
652 *
ba494bee
BM
653 * PARAMETERS: handle - Handle to the containing object
654 * path - Path to method, relative to Handle
52fc0b02
BM
655 * ret_buffer - Pointer to a buffer structure for the
656 * results
1da177e4
LT
657 *
658 * RETURN: Status
659 *
660 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
661 * object contained in an object specified by the handle passed in
662 *
663 * If the function fails an appropriate status will be returned
664 * and the contents of the callers buffer is undefined.
665 *
666 ******************************************************************************/
667
668acpi_status
4be44fcd
LB
669acpi_rs_get_method_data(acpi_handle handle,
670 char *path, struct acpi_buffer *ret_buffer)
1da177e4 671{
4be44fcd
LB
672 union acpi_operand_object *obj_desc;
673 acpi_status status;
1da177e4 674
b229cf92 675 ACPI_FUNCTION_TRACE(rs_get_method_data);
1da177e4
LT
676
677 /* Parameters guaranteed valid by caller */
678
44f6c012
RM
679 /* Execute the method, no parameters */
680
4be44fcd 681 status =
0fdce476
RW
682 acpi_ut_evaluate_object(ACPI_CAST_PTR
683 (struct acpi_namespace_node, handle), path,
684 ACPI_BTYPE_BUFFER, &obj_desc);
4be44fcd
LB
685 if (ACPI_FAILURE(status)) {
686 return_ACPI_STATUS(status);
1da177e4
LT
687 }
688
689 /*
690 * Make the call to create a resource linked list from the
691 * byte stream buffer that comes back from the method
692 * execution.
693 */
4be44fcd 694 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
1da177e4
LT
695
696 /* On exit, we must delete the object returned by evaluate_object */
697
4be44fcd
LB
698 acpi_ut_remove_reference(obj_desc);
699 return_ACPI_STATUS(status);
1da177e4
LT
700}
701
702/*******************************************************************************
703 *
704 * FUNCTION: acpi_rs_set_srs_method_data
705 *
ba494bee 706 * PARAMETERS: node - Device node
52fc0b02
BM
707 * in_buffer - Pointer to a buffer structure of the
708 * parameter
1da177e4
LT
709 *
710 * RETURN: Status
711 *
712 * DESCRIPTION: This function is called to set the _SRS of an object contained
713 * in an object specified by the handle passed in
714 *
715 * If the function fails an appropriate status will be returned
716 * and the contents of the callers buffer is undefined.
717 *
4119532c
BM
718 * Note: Parameters guaranteed valid by caller
719 *
1da177e4
LT
720 ******************************************************************************/
721
722acpi_status
4119532c
BM
723acpi_rs_set_srs_method_data(struct acpi_namespace_node *node,
724 struct acpi_buffer *in_buffer)
1da177e4 725{
4119532c
BM
726 struct acpi_evaluate_info *info;
727 union acpi_operand_object *args[2];
4be44fcd
LB
728 acpi_status status;
729 struct acpi_buffer buffer;
1da177e4 730
b229cf92 731 ACPI_FUNCTION_TRACE(rs_set_srs_method_data);
1da177e4 732
4119532c
BM
733 /* Allocate and initialize the evaluation information block */
734
735 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
736 if (!info) {
737 return_ACPI_STATUS(AE_NO_MEMORY);
738 }
739
740 info->prefix_node = node;
29a241cc 741 info->relative_pathname = METHOD_NAME__SRS;
4119532c 742 info->parameters = args;
4119532c 743 info->flags = ACPI_IGNORE_RETURN_VALUE;
1da177e4
LT
744
745 /*
746 * The in_buffer parameter will point to a linked list of
4119532c 747 * resource parameters. It needs to be formatted into a
1da177e4
LT
748 * byte stream to be sent in as an input parameter to _SRS
749 *
750 * Convert the linked list into a byte stream
751 */
752 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
9a0a3597 753 status = acpi_rs_create_aml_resources(in_buffer, &buffer);
4be44fcd 754 if (ACPI_FAILURE(status)) {
4119532c 755 goto cleanup;
1da177e4
LT
756 }
757
4119532c 758 /* Create and initialize the method parameter object */
44f6c012 759
4119532c
BM
760 args[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
761 if (!args[0]) {
762 /*
763 * Must free the buffer allocated above (otherwise it is freed
764 * later)
765 */
766 ACPI_FREE(buffer.pointer);
767 status = AE_NO_MEMORY;
768 goto cleanup;
1da177e4
LT
769 }
770
4119532c
BM
771 args[0]->buffer.length = (u32) buffer.length;
772 args[0]->buffer.pointer = buffer.pointer;
773 args[0]->common.flags = AOPOBJ_DATA_VALID;
774 args[1] = NULL;
1da177e4 775
4119532c 776 /* Execute the method, no return value is expected */
1da177e4 777
4119532c 778 status = acpi_ns_evaluate(info);
44f6c012 779
4119532c 780 /* Clean up and return the status from acpi_ns_evaluate */
1da177e4 781
4119532c 782 acpi_ut_remove_reference(args[0]);
44f6c012 783
10622bf8 784cleanup:
4119532c 785 ACPI_FREE(info);
4be44fcd 786 return_ACPI_STATUS(status);
1da177e4 787}