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