1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /*******************************************************************************
4 * Module Name: rslist - Linked list utilities
6 ******************************************************************************/
12 #define _COMPONENT ACPI_RESOURCES
13 ACPI_MODULE_NAME("rslist")
15 /*******************************************************************************
17 * FUNCTION: acpi_rs_convert_aml_to_resources
19 * PARAMETERS: acpi_walk_aml_callback
20 * resource_ptr - Pointer to the buffer that will
21 * contain the output structures
25 * DESCRIPTION: Convert an AML resource to an internal representation of the
26 * resource that is aligned and easier to access.
28 ******************************************************************************/
30 acpi_rs_convert_aml_to_resources(u8
* aml
,
32 u32 offset
, u8 resource_index
, void **context
)
34 struct acpi_resource
**resource_ptr
=
35 ACPI_CAST_INDIRECT_PTR(struct acpi_resource
, context
);
36 struct acpi_resource
*resource
;
37 union aml_resource
*aml_resource
;
38 struct acpi_rsconvert_info
*conversion_table
;
41 ACPI_FUNCTION_TRACE(rs_convert_aml_to_resources
);
44 * Check that the input buffer and all subsequent pointers into it
45 * are aligned on a native word boundary. Most important on IA64
47 resource
= *resource_ptr
;
48 if (ACPI_IS_MISALIGNED(resource
)) {
49 ACPI_WARNING((AE_INFO
,
50 "Misaligned resource pointer %p", resource
));
53 /* Get the appropriate conversion info table */
55 aml_resource
= ACPI_CAST_PTR(union aml_resource
, aml
);
57 if (acpi_ut_get_resource_type(aml
) == ACPI_RESOURCE_NAME_SERIAL_BUS
) {
59 /* Avoid undefined behavior: member access within misaligned address */
61 struct aml_resource_common_serialbus common_serial_bus
;
62 memcpy(&common_serial_bus
, aml_resource
,
63 sizeof(common_serial_bus
));
65 if (common_serial_bus
.type
> AML_RESOURCE_MAX_SERIALBUSTYPE
) {
66 conversion_table
= NULL
;
68 /* This is an I2C, SPI, UART, or CSI2 serial_bus descriptor */
71 acpi_gbl_convert_resource_serial_bus_dispatch
72 [common_serial_bus
.type
];
76 acpi_gbl_get_resource_dispatch
[resource_index
];
79 if (!conversion_table
) {
81 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
83 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE
);
86 /* Convert the AML byte stream resource to a local resource struct */
89 acpi_rs_convert_aml_to_resource(resource
, aml_resource
,
91 if (ACPI_FAILURE(status
)) {
92 ACPI_EXCEPTION((AE_INFO
, status
,
93 "Could not convert AML resource (Type 0x%X)",
95 return_ACPI_STATUS(status
);
98 if (!resource
->length
) {
99 ACPI_EXCEPTION((AE_INFO
, status
,
100 "Zero-length resource returned from RsConvertAmlToResource"));
103 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES
,
104 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
105 acpi_ut_get_resource_type(aml
), length
,
108 /* Point to the next structure in the output buffer */
110 *resource_ptr
= ACPI_NEXT_RESOURCE(resource
);
111 return_ACPI_STATUS(AE_OK
);
114 /*******************************************************************************
116 * FUNCTION: acpi_rs_convert_resources_to_aml
118 * PARAMETERS: resource - Pointer to the resource linked list
119 * aml_size_needed - Calculated size of the byte stream
120 * needed from calling acpi_rs_get_aml_length()
121 * The size of the output_buffer is
122 * guaranteed to be >= aml_size_needed
123 * output_buffer - Pointer to the buffer that will
124 * contain the byte stream
128 * DESCRIPTION: Takes the resource linked list and parses it, creating a
129 * byte stream of resources in the caller's output buffer
131 ******************************************************************************/
134 acpi_rs_convert_resources_to_aml(struct acpi_resource
*resource
,
135 acpi_size aml_size_needed
, u8
* output_buffer
)
137 u8
*aml
= output_buffer
;
138 u8
*end_aml
= output_buffer
+ aml_size_needed
;
139 struct acpi_rsconvert_info
*conversion_table
;
142 ACPI_FUNCTION_TRACE(rs_convert_resources_to_aml
);
144 /* Walk the resource descriptor list, convert each descriptor */
146 while (aml
< end_aml
) {
148 /* Validate the (internal) Resource Type */
150 if (resource
->type
> ACPI_RESOURCE_TYPE_MAX
) {
152 "Invalid descriptor type (0x%X) in resource list",
154 return_ACPI_STATUS(AE_BAD_DATA
);
157 /* Sanity check the length. It must not be zero, or we loop forever */
159 if (!resource
->length
) {
161 "Invalid zero length descriptor in resource list\n"));
162 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH
);
165 /* Perform the conversion */
167 if (resource
->type
== ACPI_RESOURCE_TYPE_SERIAL_BUS
) {
168 if (resource
->data
.common_serial_bus
.type
>
169 AML_RESOURCE_MAX_SERIALBUSTYPE
) {
170 conversion_table
= NULL
;
172 /* This is an I2C, SPI, UART or CSI2 serial_bus descriptor */
175 acpi_gbl_convert_resource_serial_bus_dispatch
176 [resource
->data
.common_serial_bus
.type
];
180 acpi_gbl_set_resource_dispatch
[resource
->type
];
183 if (!conversion_table
) {
185 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
187 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE
);
190 status
= acpi_rs_convert_resource_to_aml(resource
,
195 if (ACPI_FAILURE(status
)) {
196 ACPI_EXCEPTION((AE_INFO
, status
,
197 "Could not convert resource (type 0x%X) to AML",
199 return_ACPI_STATUS(status
);
202 /* Perform final sanity check on the new AML resource descriptor */
205 acpi_ut_validate_resource(NULL
,
206 ACPI_CAST_PTR(union aml_resource
,
208 if (ACPI_FAILURE(status
)) {
209 return_ACPI_STATUS(status
);
212 /* Check for end-of-list, normal exit */
214 if (resource
->type
== ACPI_RESOURCE_TYPE_END_TAG
) {
216 /* An End Tag indicates the end of the input Resource Template */
218 return_ACPI_STATUS(AE_OK
);
222 * Extract the total length of the new descriptor and set the
223 * Aml to point to the next (output) resource descriptor
225 aml
+= acpi_ut_get_descriptor_length(aml
);
227 /* Point to the next input resource descriptor */
229 resource
= ACPI_NEXT_RESOURCE(resource
);
232 /* Completed buffer, but did not find an end_tag resource descriptor */
234 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG
);