blob: 8c42dd73455902dd2f016e659710005de91177c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acresrc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("rslist")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*******************************************************************************
52 *
Bob Moore50eca3e2005-09-30 19:03:00 -040053 * FUNCTION: acpi_rs_convert_aml_to_resources
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
Bob Moore616861242006-03-17 16:44:00 -050055 * PARAMETERS: acpi_walk_aml_callback
56 * resource_ptr - Pointer to the buffer that will
57 * contain the output structures
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * RETURN: Status
60 *
Bob Moore616861242006-03-17 16:44:00 -050061 * DESCRIPTION: Convert an AML resource to an internal representation of the
62 * resource that is aligned and easier to access.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 *
64 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070065acpi_status
Bob Moore616861242006-03-17 16:44:00 -050066acpi_rs_convert_aml_to_resources(u8 * aml,
67 u32 length,
Bob Moore793c2382006-03-31 00:00:00 -050068 u32 offset, u8 resource_index, void **context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Bob Moore793c2382006-03-31 00:00:00 -050070 struct acpi_resource **resource_ptr =
71 ACPI_CAST_INDIRECT_PTR(struct acpi_resource, context);
72 struct acpi_resource *resource;
Lin Minge0fe0a82011-11-16 14:38:13 +080073 union aml_resource *aml_resource;
74 struct acpi_rsconvert_info *conversion_table;
Len Brown4be44fc2005-08-05 00:44:28 -040075 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bob Mooreb229cf92006-04-21 17:15:00 -040077 ACPI_FUNCTION_TRACE(rs_convert_aml_to_resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Bob Moore616861242006-03-17 16:44:00 -050079 /*
80 * Check that the input buffer and all subsequent pointers into it
81 * are aligned on a native word boundary. Most important on IA64
82 */
Bob Moore793c2382006-03-31 00:00:00 -050083 resource = *resource_ptr;
Bob Moore616861242006-03-17 16:44:00 -050084 if (ACPI_IS_MISALIGNED(resource)) {
85 ACPI_WARNING((AE_INFO,
86 "Misaligned resource pointer %p", resource));
Robert Moore44f6c012005-04-18 22:49:35 -040087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Lin Minge0fe0a82011-11-16 14:38:13 +080089 /* Get the appropriate conversion info table */
90
91 aml_resource = ACPI_CAST_PTR(union aml_resource, aml);
Bob Moore1fad8732015-12-29 13:54:36 +080092
Lin Minge0fe0a82011-11-16 14:38:13 +080093 if (acpi_ut_get_resource_type(aml) == ACPI_RESOURCE_NAME_SERIAL_BUS) {
94 if (aml_resource->common_serial_bus.type >
95 AML_RESOURCE_MAX_SERIALBUSTYPE) {
96 conversion_table = NULL;
97 } else {
98 /* This is an I2C, SPI, or UART serial_bus descriptor */
99
100 conversion_table =
101 acpi_gbl_convert_resource_serial_bus_dispatch
102 [aml_resource->common_serial_bus.type];
103 }
104 } else {
105 conversion_table =
106 acpi_gbl_get_resource_dispatch[resource_index];
107 }
108
109 if (!conversion_table) {
110 ACPI_ERROR((AE_INFO,
111 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
112 resource_index));
Bob Moore68aafc32012-10-31 02:26:01 +0000113 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
Lin Minge0fe0a82011-11-16 14:38:13 +0800114 }
115
Bob Moore616861242006-03-17 16:44:00 -0500116 /* Convert the AML byte stream resource to a local resource struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Bob Moore616861242006-03-17 16:44:00 -0500118 status =
Lin Minge0fe0a82011-11-16 14:38:13 +0800119 acpi_rs_convert_aml_to_resource(resource, aml_resource,
120 conversion_table);
Bob Moore616861242006-03-17 16:44:00 -0500121 if (ACPI_FAILURE(status)) {
122 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800123 "Could not convert AML resource (Type 0x%X)",
Bob Moore616861242006-03-17 16:44:00 -0500124 *aml));
125 return_ACPI_STATUS(status);
126 }
127
128 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400129 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Moore616861242006-03-17 16:44:00 -0500130 acpi_ut_get_resource_type(aml), length,
131 resource->length));
132
133 /* Point to the next structure in the output buffer */
134
Lin Minge0fe0a82011-11-16 14:38:13 +0800135 *resource_ptr = ACPI_NEXT_RESOURCE(resource);
Bob Moore616861242006-03-17 16:44:00 -0500136 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*******************************************************************************
140 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400141 * FUNCTION: acpi_rs_convert_resources_to_aml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
Bob Mooreba494be2012-07-12 09:40:10 +0800143 * PARAMETERS: resource - Pointer to the resource linked list
Bob Moore50eca3e2005-09-30 19:03:00 -0400144 * aml_size_needed - Calculated size of the byte stream
145 * needed from calling acpi_rs_get_aml_length()
146 * The size of the output_buffer is
147 * guaranteed to be >= aml_size_needed
148 * output_buffer - Pointer to the buffer that will
149 * contain the byte stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
151 * RETURN: Status
152 *
153 * DESCRIPTION: Takes the resource linked list and parses it, creating a
154 * byte stream of resources in the caller's output buffer
155 *
156 ******************************************************************************/
157
158acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400159acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
160 acpi_size aml_size_needed, u8 * output_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Bob Moore96db2552005-11-02 00:00:00 -0500162 u8 *aml = output_buffer;
163 u8 *end_aml = output_buffer + aml_size_needed;
Lin Minge0fe0a82011-11-16 14:38:13 +0800164 struct acpi_rsconvert_info *conversion_table;
Robert Moorebda663d2005-09-16 16:51:15 -0400165 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Bob Mooreb229cf92006-04-21 17:15:00 -0400167 ACPI_FUNCTION_TRACE(rs_convert_resources_to_aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Bob Moore08978312005-10-21 00:00:00 -0400169 /* Walk the resource descriptor list, convert each descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Bob Moore96db2552005-11-02 00:00:00 -0500171 while (aml < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400172
Bob Moore96db2552005-11-02 00:00:00 -0500173 /* Validate the (internal) Resource Type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Bob Moore50eca3e2005-09-30 19:03:00 -0400175 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500176 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800177 "Invalid descriptor type (0x%X) in resource list",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500178 resource->type));
Robert Moorebda663d2005-09-16 16:51:15 -0400179 return_ACPI_STATUS(AE_BAD_DATA);
Robert Moore44f6c012005-04-18 22:49:35 -0400180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Bob Moorec13085e2013-03-08 09:19:38 +0000182 /* Sanity check the length. It must not be zero, or we loop forever */
183
184 if (!resource->length) {
185 ACPI_ERROR((AE_INFO,
186 "Invalid zero length descriptor in resource list\n"));
187 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
188 }
189
Bob Moore08978312005-10-21 00:00:00 -0400190 /* Perform the conversion */
Robert Moorebda663d2005-09-16 16:51:15 -0400191
Lin Minge0fe0a82011-11-16 14:38:13 +0800192 if (resource->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
193 if (resource->data.common_serial_bus.type >
194 AML_RESOURCE_MAX_SERIALBUSTYPE) {
195 conversion_table = NULL;
196 } else {
197 /* This is an I2C, SPI, or UART serial_bus descriptor */
198
199 conversion_table =
200 acpi_gbl_convert_resource_serial_bus_dispatch
201 [resource->data.common_serial_bus.type];
202 }
203 } else {
204 conversion_table =
205 acpi_gbl_set_resource_dispatch[resource->type];
206 }
207
208 if (!conversion_table) {
209 ACPI_ERROR((AE_INFO,
210 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
211 resource->type));
Bob Moore68aafc32012-10-31 02:26:01 +0000212 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
Lin Minge0fe0a82011-11-16 14:38:13 +0800213 }
214
215 status = acpi_rs_convert_resource_to_aml(resource,
216 ACPI_CAST_PTR(union
217 aml_resource,
218 aml),
219 conversion_table);
Bob Moore50eca3e2005-09-30 19:03:00 -0400220 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500221 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooref6a22b02010-03-05 17:56:40 +0800222 "Could not convert resource (type 0x%X) to AML",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500223 resource->type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400224 return_ACPI_STATUS(status);
225 }
226
227 /* Perform final sanity check on the new AML resource descriptor */
228
Bob Moore1fad8732015-12-29 13:54:36 +0800229 status =
230 acpi_ut_validate_resource(NULL,
231 ACPI_CAST_PTR(union aml_resource,
232 aml), NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400233 if (ACPI_FAILURE(status)) {
234 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Bob Moore50eca3e2005-09-30 19:03:00 -0400237 /* Check for end-of-list, normal exit */
Robert Moorebda663d2005-09-16 16:51:15 -0400238
Bob Moore50eca3e2005-09-30 19:03:00 -0400239 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400240
Bob Moore50eca3e2005-09-30 19:03:00 -0400241 /* An End Tag indicates the end of the input Resource Template */
Robert Moorebda663d2005-09-16 16:51:15 -0400242
243 return_ACPI_STATUS(AE_OK);
244 }
245
Bob Moore08978312005-10-21 00:00:00 -0400246 /*
247 * Extract the total length of the new descriptor and set the
Bob Moore96db2552005-11-02 00:00:00 -0500248 * Aml to point to the next (output) resource descriptor
Bob Moore08978312005-10-21 00:00:00 -0400249 */
Bob Moore96db2552005-11-02 00:00:00 -0500250 aml += acpi_ut_get_descriptor_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Bob Moore50eca3e2005-09-30 19:03:00 -0400252 /* Point to the next input resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400253
Lin Minge0fe0a82011-11-16 14:38:13 +0800254 resource = ACPI_NEXT_RESOURCE(resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Bob Moore08978312005-10-21 00:00:00 -0400256
257 /* Completed buffer, but did not find an end_tag resource descriptor */
258
259 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}