blob: 6f2d8de3952344a86a7b01eeded6b2aa24c62c5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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>
45#include <acpi/acresrc.h>
46
47#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040048ACPI_MODULE_NAME("rslist")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*******************************************************************************
51 *
Bob Moore50eca3e2005-09-30 19:03:00 -040052 * FUNCTION: acpi_rs_convert_aml_to_resources
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 *
Bob Moore96db2552005-11-02 00:00:00 -050054 * PARAMETERS: Aml - Pointer to the resource byte stream
55 * aml_length - Length of Aml
Bob Moore50eca3e2005-09-30 19:03:00 -040056 * output_buffer - Pointer to the buffer that will
57 * contain the output structures
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * RETURN: Status
60 *
61 * DESCRIPTION: Takes the resource byte stream and parses it, creating a
62 * linked list of resources in the caller's output buffer
63 *
64 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070065acpi_status
Bob Moore96db2552005-11-02 00:00:00 -050066acpi_rs_convert_aml_to_resources(u8 * aml, u32 aml_length, u8 * output_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Bob Moore96db2552005-11-02 00:00:00 -050068 struct acpi_resource *resource = (void *)output_buffer;
Len Brown4be44fc2005-08-05 00:44:28 -040069 acpi_status status;
Bob Moore96db2552005-11-02 00:00:00 -050070 u8 resource_index;
71 u8 *end_aml;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Bob Moore50eca3e2005-09-30 19:03:00 -040073 ACPI_FUNCTION_TRACE("rs_convert_aml_to_resources");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Bob Moore96db2552005-11-02 00:00:00 -050075 end_aml = aml + aml_length;
76
Robert Moorebda663d2005-09-16 16:51:15 -040077 /* Loop until end-of-buffer or an end_tag is found */
Robert Moore44f6c012005-04-18 22:49:35 -040078
Bob Moore96db2552005-11-02 00:00:00 -050079 while (aml < end_aml) {
Bob Mooreea936b72006-02-17 00:00:00 -050080 /*
81 * Check that the input buffer and all subsequent pointers into it
82 * are aligned on a native word boundary. Most important on IA64
83 */
84 if (ACPI_IS_MISALIGNED(resource)) {
85 ACPI_WARNING((AE_INFO,
86 "Misaligned resource pointer %p",
87 resource));
88 }
Bob Moore52fc0b02006-10-02 00:00:00 -040089
Bob Moore96db2552005-11-02 00:00:00 -050090 /* Validate the Resource Type and Resource Length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Bob Moore96db2552005-11-02 00:00:00 -050092 status = acpi_ut_validate_resource(aml, &resource_index);
Len Brown4be44fc2005-08-05 00:44:28 -040093 if (ACPI_FAILURE(status)) {
94 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
Bob Moore08978312005-10-21 00:00:00 -040097 /* Convert the AML byte stream resource to a local resource struct */
Bob Moore50eca3e2005-09-30 19:03:00 -040098
Bob Moore08978312005-10-21 00:00:00 -040099 status =
Bob Moore96db2552005-11-02 00:00:00 -0500100 acpi_rs_convert_aml_to_resource(resource,
Bob Moore08978312005-10-21 00:00:00 -0400101 ACPI_CAST_PTR(union
102 aml_resource,
Bob Moore96db2552005-11-02 00:00:00 -0500103 aml),
104 acpi_gbl_get_resource_dispatch
105 [resource_index]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400106 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500107 ACPI_EXCEPTION((AE_INFO, status,
108 "Could not convert AML resource (Type %X)",
109 *aml));
Bob Moore50eca3e2005-09-30 19:03:00 -0400110 return_ACPI_STATUS(status);
111 }
112
Bob Mooreea936b72006-02-17 00:00:00 -0500113 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
114 "Type %.2X, Aml %.2X internal %.2X\n",
115 acpi_ut_get_resource_type(aml),
116 acpi_ut_get_descriptor_length(aml),
117 resource->length));
118
Robert Moorebda663d2005-09-16 16:51:15 -0400119 /* Normal exit on completion of an end_tag resource descriptor */
120
Bob Moore96db2552005-11-02 00:00:00 -0500121 if (acpi_ut_get_resource_type(aml) ==
Bob Moore50eca3e2005-09-30 19:03:00 -0400122 ACPI_RESOURCE_NAME_END_TAG) {
Robert Moorebda663d2005-09-16 16:51:15 -0400123 return_ACPI_STATUS(AE_OK);
124 }
125
Bob Moore96db2552005-11-02 00:00:00 -0500126 /* Point to the next input AML resource */
Robert Moorebda663d2005-09-16 16:51:15 -0400127
Bob Moore96db2552005-11-02 00:00:00 -0500128 aml += acpi_ut_get_descriptor_length(aml);
Robert Moorebda663d2005-09-16 16:51:15 -0400129
130 /* Point to the next structure in the output buffer */
131
Bob Moore96db2552005-11-02 00:00:00 -0500132 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500133 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore96db2552005-11-02 00:00:00 -0500134 resource->length);
Robert Moore44f6c012005-04-18 22:49:35 -0400135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Bob Moore96db2552005-11-02 00:00:00 -0500137 /* Did not find an end_tag resource descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Robert Moorebda663d2005-09-16 16:51:15 -0400139 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*******************************************************************************
143 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400144 * FUNCTION: acpi_rs_convert_resources_to_aml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400146 * PARAMETERS: Resource - Pointer to the resource linked list
147 * aml_size_needed - Calculated size of the byte stream
148 * needed from calling acpi_rs_get_aml_length()
149 * The size of the output_buffer is
150 * guaranteed to be >= aml_size_needed
151 * output_buffer - Pointer to the buffer that will
152 * contain the byte stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
154 * RETURN: Status
155 *
156 * DESCRIPTION: Takes the resource linked list and parses it, creating a
157 * byte stream of resources in the caller's output buffer
158 *
159 ******************************************************************************/
160
161acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400162acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
163 acpi_size aml_size_needed, u8 * output_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Bob Moore96db2552005-11-02 00:00:00 -0500165 u8 *aml = output_buffer;
166 u8 *end_aml = output_buffer + aml_size_needed;
Robert Moorebda663d2005-09-16 16:51:15 -0400167 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Bob Moore50eca3e2005-09-30 19:03:00 -0400169 ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Bob Moore08978312005-10-21 00:00:00 -0400171 /* Walk the resource descriptor list, convert each descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Bob Moore96db2552005-11-02 00:00:00 -0500173 while (aml < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400174
Bob Moore96db2552005-11-02 00:00:00 -0500175 /* Validate the (internal) Resource Type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Bob Moore50eca3e2005-09-30 19:03:00 -0400177 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500178 ACPI_ERROR((AE_INFO,
179 "Invalid descriptor type (%X) in resource list",
180 resource->type));
Robert Moorebda663d2005-09-16 16:51:15 -0400181 return_ACPI_STATUS(AE_BAD_DATA);
Robert Moore44f6c012005-04-18 22:49:35 -0400182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Bob Moore08978312005-10-21 00:00:00 -0400184 /* Perform the conversion */
Robert Moorebda663d2005-09-16 16:51:15 -0400185
Bob Moore08978312005-10-21 00:00:00 -0400186 status = acpi_rs_convert_resource_to_aml(resource,
187 ACPI_CAST_PTR(union
188 aml_resource,
Bob Moore96db2552005-11-02 00:00:00 -0500189 aml),
Bob Moore08978312005-10-21 00:00:00 -0400190 acpi_gbl_set_resource_dispatch
191 [resource->type]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400192 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500193 ACPI_EXCEPTION((AE_INFO, status,
194 "Could not convert resource (type %X) to AML",
195 resource->type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400196 return_ACPI_STATUS(status);
197 }
198
199 /* Perform final sanity check on the new AML resource descriptor */
200
201 status =
Bob Moore96db2552005-11-02 00:00:00 -0500202 acpi_ut_validate_resource(ACPI_CAST_PTR
203 (union aml_resource, aml), NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400204 if (ACPI_FAILURE(status)) {
205 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
Bob Moore50eca3e2005-09-30 19:03:00 -0400208 /* Check for end-of-list, normal exit */
Robert Moorebda663d2005-09-16 16:51:15 -0400209
Bob Moore50eca3e2005-09-30 19:03:00 -0400210 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400211
Bob Moore50eca3e2005-09-30 19:03:00 -0400212 /* An End Tag indicates the end of the input Resource Template */
Robert Moorebda663d2005-09-16 16:51:15 -0400213
214 return_ACPI_STATUS(AE_OK);
215 }
216
Bob Moore08978312005-10-21 00:00:00 -0400217 /*
218 * Extract the total length of the new descriptor and set the
Bob Moore96db2552005-11-02 00:00:00 -0500219 * Aml to point to the next (output) resource descriptor
Bob Moore08978312005-10-21 00:00:00 -0400220 */
Bob Moore96db2552005-11-02 00:00:00 -0500221 aml += acpi_ut_get_descriptor_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Bob Moore50eca3e2005-09-30 19:03:00 -0400223 /* Point to the next input resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400224
Bob Moore50eca3e2005-09-30 19:03:00 -0400225 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500226 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore50eca3e2005-09-30 19:03:00 -0400227 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Bob Moore08978312005-10-21 00:00:00 -0400229
230 /* Completed buffer, but did not find an end_tag resource descriptor */
231
232 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}