[ACPI] ACPICA 20051102
[deliverable/linux.git] / drivers / acpi / resources / rslist.c
1 /*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7 /*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
9 * 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
44 #include <acpi/acpi.h>
45 #include <acpi/acresrc.h>
46
47 #define _COMPONENT ACPI_RESOURCES
48 ACPI_MODULE_NAME("rslist")
49
50 /*******************************************************************************
51 *
52 * FUNCTION: acpi_rs_convert_aml_to_resources
53 *
54 * PARAMETERS: Aml - Pointer to the resource byte stream
55 * aml_length - Length of Aml
56 * output_buffer - Pointer to the buffer that will
57 * contain the output structures
58 *
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 ******************************************************************************/
65 acpi_status
66 acpi_rs_convert_aml_to_resources(u8 * aml, u32 aml_length, u8 * output_buffer)
67 {
68 struct acpi_resource *resource = (void *)output_buffer;
69 acpi_status status;
70 u8 resource_index;
71 u8 *end_aml;
72
73 ACPI_FUNCTION_TRACE("rs_convert_aml_to_resources");
74
75 end_aml = aml + aml_length;
76
77 /* Loop until end-of-buffer or an end_tag is found */
78
79 while (aml < end_aml) {
80 /* Validate the Resource Type and Resource Length */
81
82 status = acpi_ut_validate_resource(aml, &resource_index);
83 if (ACPI_FAILURE(status)) {
84 return_ACPI_STATUS(status);
85 }
86
87 /* Convert the AML byte stream resource to a local resource struct */
88
89 status =
90 acpi_rs_convert_aml_to_resource(resource,
91 ACPI_CAST_PTR(union
92 aml_resource,
93 aml),
94 acpi_gbl_get_resource_dispatch
95 [resource_index]);
96 if (ACPI_FAILURE(status)) {
97 ACPI_REPORT_ERROR(("Could not convert AML resource (Type %X) to resource, %s\n", *aml, acpi_format_exception(status)));
98 return_ACPI_STATUS(status);
99 }
100
101 /* Normal exit on completion of an end_tag resource descriptor */
102
103 if (acpi_ut_get_resource_type(aml) ==
104 ACPI_RESOURCE_NAME_END_TAG) {
105 return_ACPI_STATUS(AE_OK);
106 }
107
108 /* Point to the next input AML resource */
109
110 aml += acpi_ut_get_descriptor_length(aml);
111
112 /* Point to the next structure in the output buffer */
113
114 resource =
115 ACPI_PTR_ADD(struct acpi_resource, resource,
116 resource->length);
117 }
118
119 /* Did not find an end_tag resource descriptor */
120
121 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
122 }
123
124 /*******************************************************************************
125 *
126 * FUNCTION: acpi_rs_convert_resources_to_aml
127 *
128 * PARAMETERS: Resource - Pointer to the resource linked list
129 * aml_size_needed - Calculated size of the byte stream
130 * needed from calling acpi_rs_get_aml_length()
131 * The size of the output_buffer is
132 * guaranteed to be >= aml_size_needed
133 * output_buffer - Pointer to the buffer that will
134 * contain the byte stream
135 *
136 * RETURN: Status
137 *
138 * DESCRIPTION: Takes the resource linked list and parses it, creating a
139 * byte stream of resources in the caller's output buffer
140 *
141 ******************************************************************************/
142
143 acpi_status
144 acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
145 acpi_size aml_size_needed, u8 * output_buffer)
146 {
147 u8 *aml = output_buffer;
148 u8 *end_aml = output_buffer + aml_size_needed;
149 acpi_status status;
150
151 ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
152
153 /* Walk the resource descriptor list, convert each descriptor */
154
155 while (aml < end_aml) {
156 /* Validate the (internal) Resource Type */
157
158 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
159 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
160 "Invalid descriptor type (%X) in resource list\n",
161 resource->type));
162 return_ACPI_STATUS(AE_BAD_DATA);
163 }
164
165 /* Perform the conversion */
166
167 status = acpi_rs_convert_resource_to_aml(resource,
168 ACPI_CAST_PTR(union
169 aml_resource,
170 aml),
171 acpi_gbl_set_resource_dispatch
172 [resource->type]);
173 if (ACPI_FAILURE(status)) {
174 ACPI_REPORT_ERROR(("Could not convert resource (type %X) to AML, %s\n", resource->type, acpi_format_exception(status)));
175 return_ACPI_STATUS(status);
176 }
177
178 /* Perform final sanity check on the new AML resource descriptor */
179
180 status =
181 acpi_ut_validate_resource(ACPI_CAST_PTR
182 (union aml_resource, aml), NULL);
183 if (ACPI_FAILURE(status)) {
184 return_ACPI_STATUS(status);
185 }
186
187 /* Check for end-of-list, normal exit */
188
189 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
190 /* An End Tag indicates the end of the input Resource Template */
191
192 return_ACPI_STATUS(AE_OK);
193 }
194
195 /*
196 * Extract the total length of the new descriptor and set the
197 * Aml to point to the next (output) resource descriptor
198 */
199 aml += acpi_ut_get_descriptor_length(aml);
200
201 /* Point to the next input resource descriptor */
202
203 resource =
204 ACPI_PTR_ADD(struct acpi_resource, resource,
205 resource->length);
206 }
207
208 /* Completed buffer, but did not find an end_tag resource descriptor */
209
210 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
211 }
This page took 0.035753 seconds and 5 git commands to generate.