1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /*******************************************************************************
4 * Module Name: utresrc - Resource management utilities
6 ******************************************************************************/
12 #define _COMPONENT ACPI_UTILITIES
13 ACPI_MODULE_NAME("utresrc")
16 * Base sizes of the raw AML resource descriptors, indexed by resource type.
17 * Zero indicates a reserved (and therefore invalid) resource type.
19 const u8 acpi_gbl_resource_aml_sizes
[] = {
20 /* Small descriptors */
26 ACPI_AML_SIZE_SMALL(struct aml_resource_irq
),
27 ACPI_AML_SIZE_SMALL(struct aml_resource_dma
),
28 ACPI_AML_SIZE_SMALL(struct aml_resource_start_dependent
),
29 ACPI_AML_SIZE_SMALL(struct aml_resource_end_dependent
),
30 ACPI_AML_SIZE_SMALL(struct aml_resource_io
),
31 ACPI_AML_SIZE_SMALL(struct aml_resource_fixed_io
),
32 ACPI_AML_SIZE_SMALL(struct aml_resource_fixed_dma
),
36 ACPI_AML_SIZE_SMALL(struct aml_resource_vendor_small
),
37 ACPI_AML_SIZE_SMALL(struct aml_resource_end_tag
),
39 /* Large descriptors */
42 ACPI_AML_SIZE_LARGE(struct aml_resource_memory24
),
43 ACPI_AML_SIZE_LARGE(struct aml_resource_generic_register
),
45 ACPI_AML_SIZE_LARGE(struct aml_resource_vendor_large
),
46 ACPI_AML_SIZE_LARGE(struct aml_resource_memory32
),
47 ACPI_AML_SIZE_LARGE(struct aml_resource_fixed_memory32
),
48 ACPI_AML_SIZE_LARGE(struct aml_resource_address32
),
49 ACPI_AML_SIZE_LARGE(struct aml_resource_address16
),
50 ACPI_AML_SIZE_LARGE(struct aml_resource_extended_irq
),
51 ACPI_AML_SIZE_LARGE(struct aml_resource_address64
),
52 ACPI_AML_SIZE_LARGE(struct aml_resource_extended_address64
),
53 ACPI_AML_SIZE_LARGE(struct aml_resource_gpio
),
54 ACPI_AML_SIZE_LARGE(struct aml_resource_pin_function
),
55 ACPI_AML_SIZE_LARGE(struct aml_resource_common_serialbus
),
56 ACPI_AML_SIZE_LARGE(struct aml_resource_pin_config
),
57 ACPI_AML_SIZE_LARGE(struct aml_resource_pin_group
),
58 ACPI_AML_SIZE_LARGE(struct aml_resource_pin_group_function
),
59 ACPI_AML_SIZE_LARGE(struct aml_resource_pin_group_config
),
62 const u8 acpi_gbl_resource_aml_serial_bus_sizes
[] = {
64 ACPI_AML_SIZE_LARGE(struct aml_resource_i2c_serialbus
),
65 ACPI_AML_SIZE_LARGE(struct aml_resource_spi_serialbus
),
66 ACPI_AML_SIZE_LARGE(struct aml_resource_uart_serialbus
),
70 * Resource types, used to validate the resource length field.
71 * The length of fixed-length types must match exactly, variable
72 * lengths must meet the minimum required length, etc.
73 * Zero indicates a reserved (and therefore invalid) resource type.
75 static const u8 acpi_gbl_resource_types
[] = {
76 /* Small descriptors */
82 ACPI_SMALL_VARIABLE_LENGTH
, /* 04 IRQ */
83 ACPI_FIXED_LENGTH
, /* 05 DMA */
84 ACPI_SMALL_VARIABLE_LENGTH
, /* 06 start_dependent_functions */
85 ACPI_FIXED_LENGTH
, /* 07 end_dependent_functions */
86 ACPI_FIXED_LENGTH
, /* 08 IO */
87 ACPI_FIXED_LENGTH
, /* 09 fixed_IO */
88 ACPI_FIXED_LENGTH
, /* 0A fixed_DMA */
92 ACPI_VARIABLE_LENGTH
, /* 0E vendor_short */
93 ACPI_FIXED_LENGTH
, /* 0F end_tag */
95 /* Large descriptors */
98 ACPI_FIXED_LENGTH
, /* 01 Memory24 */
99 ACPI_FIXED_LENGTH
, /* 02 generic_register */
101 ACPI_VARIABLE_LENGTH
, /* 04 vendor_long */
102 ACPI_FIXED_LENGTH
, /* 05 Memory32 */
103 ACPI_FIXED_LENGTH
, /* 06 memory32_fixed */
104 ACPI_VARIABLE_LENGTH
, /* 07 Dword* address */
105 ACPI_VARIABLE_LENGTH
, /* 08 Word* address */
106 ACPI_VARIABLE_LENGTH
, /* 09 extended_IRQ */
107 ACPI_VARIABLE_LENGTH
, /* 0A Qword* address */
108 ACPI_FIXED_LENGTH
, /* 0B Extended* address */
109 ACPI_VARIABLE_LENGTH
, /* 0C Gpio* */
110 ACPI_VARIABLE_LENGTH
, /* 0D pin_function */
111 ACPI_VARIABLE_LENGTH
, /* 0E *serial_bus */
112 ACPI_VARIABLE_LENGTH
, /* 0F pin_config */
113 ACPI_VARIABLE_LENGTH
, /* 10 pin_group */
114 ACPI_VARIABLE_LENGTH
, /* 11 pin_group_function */
115 ACPI_VARIABLE_LENGTH
, /* 12 pin_group_config */
118 /*******************************************************************************
120 * FUNCTION: acpi_ut_walk_aml_resources
122 * PARAMETERS: walk_state - Current walk info
123 * PARAMETERS: aml - Pointer to the raw AML resource template
124 * aml_length - Length of the entire template
125 * user_function - Called once for each descriptor found. If
126 * NULL, a pointer to the end_tag is returned
127 * context - Passed to user_function
131 * DESCRIPTION: Walk a raw AML resource list(buffer). User function called
132 * once for each resource found.
134 ******************************************************************************/
137 acpi_ut_walk_aml_resources(struct acpi_walk_state
*walk_state
,
139 acpi_size aml_length
,
140 acpi_walk_aml_callback user_function
, void **context
)
147 u8 end_tag
[2] = { 0x79, 0x00 };
149 ACPI_FUNCTION_TRACE(ut_walk_aml_resources
);
151 /* The absolute minimum resource template is one end_tag descriptor */
153 if (aml_length
< sizeof(struct aml_resource_end_tag
)) {
154 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG
);
157 /* Point to the end of the resource template buffer */
159 end_aml
= aml
+ aml_length
;
161 /* Walk the byte list, abort on any invalid descriptor type or length */
163 while (aml
< end_aml
) {
165 /* Validate the Resource Type and Resource Length */
168 acpi_ut_validate_resource(walk_state
, aml
, &resource_index
);
169 if (ACPI_FAILURE(status
)) {
171 * Exit on failure. Cannot continue because the descriptor
172 * length may be bogus also.
174 return_ACPI_STATUS(status
);
177 /* Get the length of this descriptor */
179 length
= acpi_ut_get_descriptor_length(aml
);
181 /* Invoke the user function */
185 user_function(aml
, length
, offset
, resource_index
,
187 if (ACPI_FAILURE(status
)) {
188 return_ACPI_STATUS(status
);
192 /* An end_tag descriptor terminates this resource template */
194 if (acpi_ut_get_resource_type(aml
) ==
195 ACPI_RESOURCE_NAME_END_TAG
) {
197 * There must be at least one more byte in the buffer for
198 * the 2nd byte of the end_tag
200 if ((aml
+ 1) >= end_aml
) {
201 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG
);
205 * Don't attempt to perform any validation on the 2nd byte.
206 * Although all known ASL compilers insert a zero for the 2nd
207 * byte, it can also be a checksum (as per the ACPI spec),
208 * and this is occasionally seen in the field. July 2017.
211 /* Return the pointer to the end_tag if requested */
213 if (!user_function
) {
219 return_ACPI_STATUS(AE_OK
);
226 /* Did not find an end_tag descriptor */
230 /* Insert an end_tag anyway. acpi_rs_get_list_length always leaves room */
232 (void)acpi_ut_validate_resource(walk_state
, end_tag
,
235 user_function(end_tag
, 2, offset
, resource_index
, context
);
236 if (ACPI_FAILURE(status
)) {
237 return_ACPI_STATUS(status
);
241 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG
);
244 /*******************************************************************************
246 * FUNCTION: acpi_ut_validate_resource
248 * PARAMETERS: walk_state - Current walk info
249 * aml - Pointer to the raw AML resource descriptor
250 * return_index - Where the resource index is returned. NULL
251 * if the index is not required.
253 * RETURN: Status, and optionally the Index into the global resource tables
255 * DESCRIPTION: Validate an AML resource descriptor by checking the Resource
256 * Type and Resource Length. Returns an index into the global
257 * resource information/dispatch tables for later use.
259 ******************************************************************************/
262 acpi_ut_validate_resource(struct acpi_walk_state
*walk_state
,
263 void *aml
, u8
*return_index
)
265 union aml_resource
*aml_resource
;
268 acpi_rs_length resource_length
;
269 acpi_rs_length minimum_resource_length
;
271 ACPI_FUNCTION_ENTRY();
274 * 1) Validate the resource_type field (Byte 0)
276 resource_type
= ACPI_GET8(aml
);
279 * Byte 0 contains the descriptor name (Resource Type)
280 * Examine the large/small bit in the resource header
282 if (resource_type
& ACPI_RESOURCE_NAME_LARGE
) {
284 /* Verify the large resource type (name) against the max */
286 if (resource_type
> ACPI_RESOURCE_NAME_LARGE_MAX
) {
287 goto invalid_resource
;
291 * Large Resource Type -- bits 6:0 contain the name
292 * Translate range 0x80-0x8B to index range 0x10-0x1B
294 resource_index
= (u8
) (resource_type
- 0x70);
297 * Small Resource Type -- bits 6:3 contain the name
298 * Shift range to index range 0x00-0x0F
300 resource_index
= (u8
)
301 ((resource_type
& ACPI_RESOURCE_NAME_SMALL_MASK
) >> 3);
305 * Check validity of the resource type, via acpi_gbl_resource_types.
306 * Zero indicates an invalid resource.
308 if (!acpi_gbl_resource_types
[resource_index
]) {
309 goto invalid_resource
;
313 * Validate the resource_length field. This ensures that the length
314 * is at least reasonable, and guarantees that it is non-zero.
316 resource_length
= acpi_ut_get_resource_length(aml
);
317 minimum_resource_length
= acpi_gbl_resource_aml_sizes
[resource_index
];
319 /* Validate based upon the type of resource - fixed length or variable */
321 switch (acpi_gbl_resource_types
[resource_index
]) {
322 case ACPI_FIXED_LENGTH
:
324 /* Fixed length resource, length must match exactly */
326 if (resource_length
!= minimum_resource_length
) {
327 goto bad_resource_length
;
331 case ACPI_VARIABLE_LENGTH
:
333 /* Variable length resource, length must be at least the minimum */
335 if (resource_length
< minimum_resource_length
) {
336 goto bad_resource_length
;
340 case ACPI_SMALL_VARIABLE_LENGTH
:
342 /* Small variable length resource, length can be (Min) or (Min-1) */
344 if ((resource_length
> minimum_resource_length
) ||
345 (resource_length
< (minimum_resource_length
- 1))) {
346 goto bad_resource_length
;
352 /* Shouldn't happen (because of validation earlier), but be sure */
354 goto invalid_resource
;
357 aml_resource
= ACPI_CAST_PTR(union aml_resource
, aml
);
358 if (resource_type
== ACPI_RESOURCE_NAME_SERIAL_BUS
) {
360 /* Validate the bus_type field */
362 if ((aml_resource
->common_serial_bus
.type
== 0) ||
363 (aml_resource
->common_serial_bus
.type
>
364 AML_RESOURCE_MAX_SERIALBUSTYPE
)) {
367 "Invalid/unsupported SerialBus resource descriptor: BusType 0x%2.2X",
368 aml_resource
->common_serial_bus
.
371 return (AE_AML_INVALID_RESOURCE_TYPE
);
375 /* Optionally return the resource table index */
378 *return_index
= resource_index
;
387 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
390 return (AE_AML_INVALID_RESOURCE_TYPE
);
396 "Invalid resource descriptor length: Type "
397 "0x%2.2X, Length 0x%4.4X, MinLength 0x%4.4X",
398 resource_type
, resource_length
,
399 minimum_resource_length
));
401 return (AE_AML_BAD_RESOURCE_LENGTH
);
404 /*******************************************************************************
406 * FUNCTION: acpi_ut_get_resource_type
408 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
410 * RETURN: The Resource Type with no extraneous bits (except the
411 * Large/Small descriptor bit -- this is left alone)
413 * DESCRIPTION: Extract the Resource Type/Name from the first byte of
414 * a resource descriptor.
416 ******************************************************************************/
418 u8
acpi_ut_get_resource_type(void *aml
)
420 ACPI_FUNCTION_ENTRY();
423 * Byte 0 contains the descriptor name (Resource Type)
424 * Examine the large/small bit in the resource header
426 if (ACPI_GET8(aml
) & ACPI_RESOURCE_NAME_LARGE
) {
428 /* Large Resource Type -- bits 6:0 contain the name */
430 return (ACPI_GET8(aml
));
432 /* Small Resource Type -- bits 6:3 contain the name */
434 return ((u8
) (ACPI_GET8(aml
) & ACPI_RESOURCE_NAME_SMALL_MASK
));
438 /*******************************************************************************
440 * FUNCTION: acpi_ut_get_resource_length
442 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
444 * RETURN: Byte Length
446 * DESCRIPTION: Get the "Resource Length" of a raw AML descriptor. By
447 * definition, this does not include the size of the descriptor
448 * header or the length field itself.
450 ******************************************************************************/
452 u16
acpi_ut_get_resource_length(void *aml
)
454 acpi_rs_length resource_length
;
456 ACPI_FUNCTION_ENTRY();
459 * Byte 0 contains the descriptor name (Resource Type)
460 * Examine the large/small bit in the resource header
462 if (ACPI_GET8(aml
) & ACPI_RESOURCE_NAME_LARGE
) {
464 /* Large Resource type -- bytes 1-2 contain the 16-bit length */
466 ACPI_MOVE_16_TO_16(&resource_length
, ACPI_ADD_PTR(u8
, aml
, 1));
469 /* Small Resource type -- bits 2:0 of byte 0 contain the length */
471 resource_length
= (u16
) (ACPI_GET8(aml
) &
472 ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK
);
475 return (resource_length
);
478 /*******************************************************************************
480 * FUNCTION: acpi_ut_get_resource_header_length
482 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
484 * RETURN: Length of the AML header (depends on large/small descriptor)
486 * DESCRIPTION: Get the length of the header for this resource.
488 ******************************************************************************/
490 u8
acpi_ut_get_resource_header_length(void *aml
)
492 ACPI_FUNCTION_ENTRY();
494 /* Examine the large/small bit in the resource header */
496 if (ACPI_GET8(aml
) & ACPI_RESOURCE_NAME_LARGE
) {
497 return (sizeof(struct aml_resource_large_header
));
499 return (sizeof(struct aml_resource_small_header
));
503 /*******************************************************************************
505 * FUNCTION: acpi_ut_get_descriptor_length
507 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
509 * RETURN: Byte length
511 * DESCRIPTION: Get the total byte length of a raw AML descriptor, including the
512 * length of the descriptor header and the length field itself.
513 * Used to walk descriptor lists.
515 ******************************************************************************/
517 u32
acpi_ut_get_descriptor_length(void *aml
)
519 ACPI_FUNCTION_ENTRY();
522 * Get the Resource Length (does not include header length) and add
523 * the header length (depends on if this is a small or large resource)
525 return (acpi_ut_get_resource_length(aml
) +
526 acpi_ut_get_resource_header_length(aml
));
529 /*******************************************************************************
531 * FUNCTION: acpi_ut_get_resource_end_tag
533 * PARAMETERS: obj_desc - The resource template buffer object
534 * end_tag - Where the pointer to the end_tag is returned
536 * RETURN: Status, pointer to the end tag
538 * DESCRIPTION: Find the end_tag resource descriptor in an AML resource template
539 * Note: allows a buffer length of zero.
541 ******************************************************************************/
544 acpi_ut_get_resource_end_tag(union acpi_operand_object
*obj_desc
, u8
**end_tag
)
548 ACPI_FUNCTION_TRACE(ut_get_resource_end_tag
);
550 /* Allow a buffer length of zero */
552 if (!obj_desc
->buffer
.length
) {
553 *end_tag
= obj_desc
->buffer
.pointer
;
554 return_ACPI_STATUS(AE_OK
);
557 /* Validate the template and get a pointer to the end_tag */
559 status
= acpi_ut_walk_aml_resources(NULL
, obj_desc
->buffer
.pointer
,
560 obj_desc
->buffer
.length
, NULL
,
563 return_ACPI_STATUS(status
);