1 /*******************************************************************************
3 * Module Name: rsutils - Utilities for the resource manager
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2012, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_RESOURCES
50 ACPI_MODULE_NAME("rsutils")
52 /*******************************************************************************
54 * FUNCTION: acpi_rs_decode_bitmask
56 * PARAMETERS: Mask - Bitmask to decode
57 * List - Where the converted list is returned
59 * RETURN: Count of bits set (length of list)
61 * DESCRIPTION: Convert a bit mask into a list of values
63 ******************************************************************************/
64 u8
acpi_rs_decode_bitmask(u16 mask
, u8
* list
)
69 ACPI_FUNCTION_ENTRY();
71 /* Decode the mask bits */
73 for (i
= 0, bit_count
= 0; mask
; i
++) {
85 /*******************************************************************************
87 * FUNCTION: acpi_rs_encode_bitmask
89 * PARAMETERS: List - List of values to encode
90 * Count - Length of list
92 * RETURN: Encoded bitmask
94 * DESCRIPTION: Convert a list of values to an encoded bitmask
96 ******************************************************************************/
98 u16
acpi_rs_encode_bitmask(u8
* list
, u8 count
)
103 ACPI_FUNCTION_ENTRY();
105 /* Encode the list into a single bitmask */
107 for (i
= 0, mask
= 0; i
< count
; i
++) {
108 mask
|= (0x1 << list
[i
]);
114 /*******************************************************************************
116 * FUNCTION: acpi_rs_move_data
118 * PARAMETERS: Destination - Pointer to the destination descriptor
119 * Source - Pointer to the source descriptor
120 * item_count - How many items to move
121 * move_type - Byte width
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)
129 ******************************************************************************/
132 acpi_rs_move_data(void *destination
, void *source
, u16 item_count
, u8 move_type
)
136 ACPI_FUNCTION_ENTRY();
138 /* One move per item */
140 for (i
= 0; i
< item_count
; i
++) {
143 * For the 8-bit case, we can perform the move all at once
144 * since there are no alignment or endian issues
147 case ACPI_RSC_MOVE_GPIO_RES
:
148 case ACPI_RSC_MOVE_SERIAL_VEN
:
149 case ACPI_RSC_MOVE_SERIAL_RES
:
150 ACPI_MEMCPY(destination
, source
, item_count
);
154 * 16-, 32-, and 64-bit cases must use the move macros that perform
155 * endian conversion and/or accommodate hardware that cannot perform
156 * misaligned memory transfers
158 case ACPI_RSC_MOVE16
:
159 case ACPI_RSC_MOVE_GPIO_PIN
:
160 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16
, destination
)[i
],
161 &ACPI_CAST_PTR(u16
, source
)[i
]);
164 case ACPI_RSC_MOVE32
:
165 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32
, destination
)[i
],
166 &ACPI_CAST_PTR(u32
, source
)[i
]);
169 case ACPI_RSC_MOVE64
:
170 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64
, destination
)[i
],
171 &ACPI_CAST_PTR(u64
, source
)[i
]);
180 /*******************************************************************************
182 * FUNCTION: acpi_rs_set_resource_length
184 * PARAMETERS: total_length - Length of the AML descriptor, including
185 * the header and length fields.
186 * Aml - Pointer to the raw AML descriptor
190 * DESCRIPTION: Set the resource_length field of an AML
191 * resource descriptor, both Large and Small descriptors are
192 * supported automatically. Note: Descriptor Type field must
195 ******************************************************************************/
198 acpi_rs_set_resource_length(acpi_rsdesc_size total_length
,
199 union aml_resource
*aml
)
201 acpi_rs_length resource_length
;
203 ACPI_FUNCTION_ENTRY();
205 /* Length is the total descriptor length minus the header length */
207 resource_length
= (acpi_rs_length
)
208 (total_length
- acpi_ut_get_resource_header_length(aml
));
210 /* Length is stored differently for large and small descriptors */
212 if (aml
->small_header
.descriptor_type
& ACPI_RESOURCE_NAME_LARGE
) {
214 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
216 ACPI_MOVE_16_TO_16(&aml
->large_header
.resource_length
,
219 /* Small descriptor -- bits 2:0 of byte 0 contain the length */
221 aml
->small_header
.descriptor_type
= (u8
)
223 /* Clear any existing length, preserving descriptor type bits */
225 descriptor_type
& ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK
)
231 /*******************************************************************************
233 * FUNCTION: acpi_rs_set_resource_header
235 * PARAMETERS: descriptor_type - Byte to be inserted as the type
236 * total_length - Length of the AML descriptor, including
237 * the header and length fields.
238 * Aml - Pointer to the raw AML descriptor
242 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
243 * resource descriptor, both Large and Small descriptors are
244 * supported automatically
246 ******************************************************************************/
249 acpi_rs_set_resource_header(u8 descriptor_type
,
250 acpi_rsdesc_size total_length
,
251 union aml_resource
*aml
)
253 ACPI_FUNCTION_ENTRY();
255 /* Set the Resource Type */
257 aml
->small_header
.descriptor_type
= descriptor_type
;
259 /* Set the Resource Length */
261 acpi_rs_set_resource_length(total_length
, aml
);
264 /*******************************************************************************
266 * FUNCTION: acpi_rs_strcpy
268 * PARAMETERS: Destination - Pointer to the destination string
269 * Source - Pointer to the source string
271 * RETURN: String length, including NULL terminator
273 * DESCRIPTION: Local string copy that returns the string length, saving a
274 * strcpy followed by a strlen.
276 ******************************************************************************/
278 static u16
acpi_rs_strcpy(char *destination
, char *source
)
282 ACPI_FUNCTION_ENTRY();
284 for (i
= 0; source
[i
]; i
++) {
285 destination
[i
] = source
[i
];
290 /* Return string length including the NULL terminator */
292 return ((u16
) (i
+ 1));
295 /*******************************************************************************
297 * FUNCTION: acpi_rs_get_resource_source
299 * PARAMETERS: resource_length - Length field of the descriptor
300 * minimum_length - Minimum length of the descriptor (minus
301 * any optional fields)
302 * resource_source - Where the resource_source is returned
303 * Aml - Pointer to the raw AML descriptor
304 * string_ptr - (optional) where to store the actual
305 * resource_source string
307 * RETURN: Length of the string plus NULL terminator, rounded up to native
310 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
311 * to an internal resource descriptor
313 ******************************************************************************/
316 acpi_rs_get_resource_source(acpi_rs_length resource_length
,
317 acpi_rs_length minimum_length
,
318 struct acpi_resource_source
* resource_source
,
319 union aml_resource
* aml
, char *string_ptr
)
321 acpi_rsdesc_size total_length
;
322 u8
*aml_resource_source
;
324 ACPI_FUNCTION_ENTRY();
327 resource_length
+ sizeof(struct aml_resource_large_header
);
328 aml_resource_source
= ACPI_ADD_PTR(u8
, aml
, minimum_length
);
331 * resource_source is present if the length of the descriptor is longer than
332 * the minimum length.
334 * Note: Some resource descriptors will have an additional null, so
335 * we add 1 to the minimum length.
337 if (total_length
> (acpi_rsdesc_size
) (minimum_length
+ 1)) {
339 /* Get the resource_source_index */
341 resource_source
->index
= aml_resource_source
[0];
343 resource_source
->string_ptr
= string_ptr
;
346 * String destination pointer is not specified; Set the String
347 * pointer to the end of the current resource_source structure.
349 resource_source
->string_ptr
=
350 ACPI_ADD_PTR(char, resource_source
,
351 sizeof(struct acpi_resource_source
));
355 * In order for the Resource length to be a multiple of the native
356 * word, calculate the length of the string (+1 for NULL terminator)
357 * and expand to the next word multiple.
359 * Zero the entire area of the buffer.
362 ACPI_STRLEN(ACPI_CAST_PTR(char, &aml_resource_source
[1])) + 1;
363 total_length
= (u32
) ACPI_ROUND_UP_TO_NATIVE_WORD(total_length
);
365 ACPI_MEMSET(resource_source
->string_ptr
, 0, total_length
);
367 /* Copy the resource_source string to the destination */
369 resource_source
->string_length
=
370 acpi_rs_strcpy(resource_source
->string_ptr
,
372 &aml_resource_source
[1]));
374 return ((acpi_rs_length
) total_length
);
377 /* resource_source is not present */
379 resource_source
->index
= 0;
380 resource_source
->string_length
= 0;
381 resource_source
->string_ptr
= NULL
;
385 /*******************************************************************************
387 * FUNCTION: acpi_rs_set_resource_source
389 * PARAMETERS: Aml - Pointer to the raw AML descriptor
390 * minimum_length - Minimum length of the descriptor (minus
391 * any optional fields)
392 * resource_source - Internal resource_source
395 * RETURN: Total length of the AML descriptor
397 * DESCRIPTION: Convert an optional resource_source from internal format to a
398 * raw AML resource descriptor
400 ******************************************************************************/
403 acpi_rs_set_resource_source(union aml_resource
* aml
,
404 acpi_rs_length minimum_length
,
405 struct acpi_resource_source
* resource_source
)
407 u8
*aml_resource_source
;
408 acpi_rsdesc_size descriptor_length
;
410 ACPI_FUNCTION_ENTRY();
412 descriptor_length
= minimum_length
;
414 /* Non-zero string length indicates presence of a resource_source */
416 if (resource_source
->string_length
) {
418 /* Point to the end of the AML descriptor */
420 aml_resource_source
= ACPI_ADD_PTR(u8
, aml
, minimum_length
);
422 /* Copy the resource_source_index */
424 aml_resource_source
[0] = (u8
) resource_source
->index
;
426 /* Copy the resource_source string */
428 ACPI_STRCPY(ACPI_CAST_PTR(char, &aml_resource_source
[1]),
429 resource_source
->string_ptr
);
432 * Add the length of the string (+ 1 for null terminator) to the
433 * final descriptor length
436 ((acpi_rsdesc_size
) resource_source
->string_length
+ 1);
439 /* Return the new total length of the AML descriptor */
441 return (descriptor_length
);
444 /*******************************************************************************
446 * FUNCTION: acpi_rs_get_prt_method_data
448 * PARAMETERS: Node - Device node
449 * ret_buffer - Pointer to a buffer structure for the
454 * DESCRIPTION: This function is called to get the _PRT value of an object
455 * contained in an object specified by the handle passed in
457 * If the function fails an appropriate status will be returned
458 * and the contents of the callers buffer is undefined.
460 ******************************************************************************/
463 acpi_rs_get_prt_method_data(struct acpi_namespace_node
* node
,
464 struct acpi_buffer
* ret_buffer
)
466 union acpi_operand_object
*obj_desc
;
469 ACPI_FUNCTION_TRACE(rs_get_prt_method_data
);
471 /* Parameters guaranteed valid by caller */
473 /* Execute the method, no parameters */
475 status
= acpi_ut_evaluate_object(node
, METHOD_NAME__PRT
,
476 ACPI_BTYPE_PACKAGE
, &obj_desc
);
477 if (ACPI_FAILURE(status
)) {
478 return_ACPI_STATUS(status
);
482 * Create a resource linked list from the byte stream buffer that comes
483 * back from the _CRS method execution.
485 status
= acpi_rs_create_pci_routing_table(obj_desc
, ret_buffer
);
487 /* On exit, we must delete the object returned by evaluate_object */
489 acpi_ut_remove_reference(obj_desc
);
490 return_ACPI_STATUS(status
);
493 /*******************************************************************************
495 * FUNCTION: acpi_rs_get_crs_method_data
497 * PARAMETERS: Node - Device node
498 * ret_buffer - Pointer to a buffer structure for the
503 * DESCRIPTION: This function is called to get the _CRS value of an object
504 * contained in an object specified by the handle passed in
506 * If the function fails an appropriate status will be returned
507 * and the contents of the callers buffer is undefined.
509 ******************************************************************************/
512 acpi_rs_get_crs_method_data(struct acpi_namespace_node
*node
,
513 struct acpi_buffer
*ret_buffer
)
515 union acpi_operand_object
*obj_desc
;
518 ACPI_FUNCTION_TRACE(rs_get_crs_method_data
);
520 /* Parameters guaranteed valid by caller */
522 /* Execute the method, no parameters */
524 status
= acpi_ut_evaluate_object(node
, METHOD_NAME__CRS
,
525 ACPI_BTYPE_BUFFER
, &obj_desc
);
526 if (ACPI_FAILURE(status
)) {
527 return_ACPI_STATUS(status
);
531 * Make the call to create a resource linked list from the
532 * byte stream buffer that comes back from the _CRS method
535 status
= acpi_rs_create_resource_list(obj_desc
, ret_buffer
);
537 /* On exit, we must delete the object returned by evaluate_object */
539 acpi_ut_remove_reference(obj_desc
);
540 return_ACPI_STATUS(status
);
543 /*******************************************************************************
545 * FUNCTION: acpi_rs_get_prs_method_data
547 * PARAMETERS: Node - Device node
548 * ret_buffer - Pointer to a buffer structure for the
553 * DESCRIPTION: This function is called to get the _PRS value of an object
554 * contained in an object specified by the handle passed in
556 * If the function fails an appropriate status will be returned
557 * and the contents of the callers buffer is undefined.
559 ******************************************************************************/
561 #ifdef ACPI_FUTURE_USAGE
563 acpi_rs_get_prs_method_data(struct acpi_namespace_node
*node
,
564 struct acpi_buffer
*ret_buffer
)
566 union acpi_operand_object
*obj_desc
;
569 ACPI_FUNCTION_TRACE(rs_get_prs_method_data
);
571 /* Parameters guaranteed valid by caller */
573 /* Execute the method, no parameters */
575 status
= acpi_ut_evaluate_object(node
, METHOD_NAME__PRS
,
576 ACPI_BTYPE_BUFFER
, &obj_desc
);
577 if (ACPI_FAILURE(status
)) {
578 return_ACPI_STATUS(status
);
582 * Make the call to create a resource linked list from the
583 * byte stream buffer that comes back from the _CRS method
586 status
= acpi_rs_create_resource_list(obj_desc
, ret_buffer
);
588 /* On exit, we must delete the object returned by evaluate_object */
590 acpi_ut_remove_reference(obj_desc
);
591 return_ACPI_STATUS(status
);
593 #endif /* ACPI_FUTURE_USAGE */
595 /*******************************************************************************
597 * FUNCTION: acpi_rs_get_aei_method_data
599 * PARAMETERS: Node - Device node
600 * ret_buffer - Pointer to a buffer structure for the
605 * DESCRIPTION: This function is called to get the _AEI value of an object
606 * contained in an object specified by the handle passed in
608 * If the function fails an appropriate status will be returned
609 * and the contents of the callers buffer is undefined.
611 ******************************************************************************/
614 acpi_rs_get_aei_method_data(struct acpi_namespace_node
*node
,
615 struct acpi_buffer
*ret_buffer
)
617 union acpi_operand_object
*obj_desc
;
620 ACPI_FUNCTION_TRACE(rs_get_aei_method_data
);
622 /* Parameters guaranteed valid by caller */
624 /* Execute the method, no parameters */
626 status
= acpi_ut_evaluate_object(node
, METHOD_NAME__AEI
,
627 ACPI_BTYPE_BUFFER
, &obj_desc
);
628 if (ACPI_FAILURE(status
)) {
629 return_ACPI_STATUS(status
);
633 * Make the call to create a resource linked list from the
634 * byte stream buffer that comes back from the _CRS method
637 status
= acpi_rs_create_resource_list(obj_desc
, ret_buffer
);
639 /* On exit, we must delete the object returned by evaluate_object */
641 acpi_ut_remove_reference(obj_desc
);
642 return_ACPI_STATUS(status
);
645 /*******************************************************************************
647 * FUNCTION: acpi_rs_get_method_data
649 * PARAMETERS: Handle - Handle to the containing object
650 * Path - Path to method, relative to Handle
651 * ret_buffer - Pointer to a buffer structure for the
656 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
657 * object contained in an object specified by the handle passed in
659 * If the function fails an appropriate status will be returned
660 * and the contents of the callers buffer is undefined.
662 ******************************************************************************/
665 acpi_rs_get_method_data(acpi_handle handle
,
666 char *path
, struct acpi_buffer
*ret_buffer
)
668 union acpi_operand_object
*obj_desc
;
671 ACPI_FUNCTION_TRACE(rs_get_method_data
);
673 /* Parameters guaranteed valid by caller */
675 /* Execute the method, no parameters */
678 acpi_ut_evaluate_object(handle
, path
, ACPI_BTYPE_BUFFER
, &obj_desc
);
679 if (ACPI_FAILURE(status
)) {
680 return_ACPI_STATUS(status
);
684 * Make the call to create a resource linked list from the
685 * byte stream buffer that comes back from the method
688 status
= acpi_rs_create_resource_list(obj_desc
, ret_buffer
);
690 /* On exit, we must delete the object returned by evaluate_object */
692 acpi_ut_remove_reference(obj_desc
);
693 return_ACPI_STATUS(status
);
696 /*******************************************************************************
698 * FUNCTION: acpi_rs_set_srs_method_data
700 * PARAMETERS: Node - Device node
701 * in_buffer - Pointer to a buffer structure of the
706 * DESCRIPTION: This function is called to set the _SRS of an object contained
707 * in an object specified by the handle passed in
709 * If the function fails an appropriate status will be returned
710 * and the contents of the callers buffer is undefined.
712 * Note: Parameters guaranteed valid by caller
714 ******************************************************************************/
717 acpi_rs_set_srs_method_data(struct acpi_namespace_node
*node
,
718 struct acpi_buffer
*in_buffer
)
720 struct acpi_evaluate_info
*info
;
721 union acpi_operand_object
*args
[2];
723 struct acpi_buffer buffer
;
725 ACPI_FUNCTION_TRACE(rs_set_srs_method_data
);
727 /* Allocate and initialize the evaluation information block */
729 info
= ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info
));
731 return_ACPI_STATUS(AE_NO_MEMORY
);
734 info
->prefix_node
= node
;
735 info
->pathname
= METHOD_NAME__SRS
;
736 info
->parameters
= args
;
737 info
->flags
= ACPI_IGNORE_RETURN_VALUE
;
740 * The in_buffer parameter will point to a linked list of
741 * resource parameters. It needs to be formatted into a
742 * byte stream to be sent in as an input parameter to _SRS
744 * Convert the linked list into a byte stream
746 buffer
.length
= ACPI_ALLOCATE_LOCAL_BUFFER
;
747 status
= acpi_rs_create_aml_resources(in_buffer
->pointer
, &buffer
);
748 if (ACPI_FAILURE(status
)) {
752 /* Create and initialize the method parameter object */
754 args
[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER
);
757 * Must free the buffer allocated above (otherwise it is freed
760 ACPI_FREE(buffer
.pointer
);
761 status
= AE_NO_MEMORY
;
765 args
[0]->buffer
.length
= (u32
) buffer
.length
;
766 args
[0]->buffer
.pointer
= buffer
.pointer
;
767 args
[0]->common
.flags
= AOPOBJ_DATA_VALID
;
770 /* Execute the method, no return value is expected */
772 status
= acpi_ns_evaluate(info
);
774 /* Clean up and return the status from acpi_ns_evaluate */
776 acpi_ut_remove_reference(args
[0]);
780 return_ACPI_STATUS(status
);