[ACPI] ACPICA 20060317
[linux-block.git] / drivers / acpi / resources / rslist.c
CommitLineData
1da177e4
LT
1/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
4a90c7e8 8 * Copyright (C) 2000 - 2006, R. Byron Moore
1da177e4
LT
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
1da177e4
LT
44#include <acpi/acpi.h>
45#include <acpi/acresrc.h>
46
47#define _COMPONENT ACPI_RESOURCES
4be44fcd 48ACPI_MODULE_NAME("rslist")
1da177e4 49
1da177e4
LT
50/*******************************************************************************
51 *
50eca3eb 52 * FUNCTION: acpi_rs_convert_aml_to_resources
1da177e4 53 *
61686124
BM
54 * PARAMETERS: acpi_walk_aml_callback
55 * resource_ptr - Pointer to the buffer that will
56 * contain the output structures
1da177e4
LT
57 *
58 * RETURN: Status
59 *
61686124
BM
60 * DESCRIPTION: Convert an AML resource to an internal representation of the
61 * resource that is aligned and easier to access.
1da177e4
LT
62 *
63 ******************************************************************************/
1da177e4 64acpi_status
61686124
BM
65acpi_rs_convert_aml_to_resources(u8 * aml,
66 u32 length,
67 u32 offset,
68 u8 resource_index, void **resource_ptr)
1da177e4 69{
61686124 70 struct acpi_resource *resource = *resource_ptr;
4be44fcd 71 acpi_status status;
4be44fcd 72
50eca3eb 73 ACPI_FUNCTION_TRACE("rs_convert_aml_to_resources");
4be44fcd 74
61686124
BM
75 /*
76 * Check that the input buffer and all subsequent pointers into it
77 * are aligned on a native word boundary. Most important on IA64
78 */
79 if (ACPI_IS_MISALIGNED(resource)) {
80 ACPI_WARNING((AE_INFO,
81 "Misaligned resource pointer %p", resource));
82 }
44f6c012 83
61686124
BM
84 /* Convert the AML byte stream resource to a local resource struct */
85
86 status =
87 acpi_rs_convert_aml_to_resource(resource,
88 ACPI_CAST_PTR(union aml_resource,
89 aml),
90 acpi_gbl_get_resource_dispatch
91 [resource_index]);
92 if (ACPI_FAILURE(status)) {
93 ACPI_EXCEPTION((AE_INFO, status,
94 "Could not convert AML resource (Type %X)",
95 *aml));
96 return_ACPI_STATUS(status);
44f6c012 97 }
1da177e4 98
61686124
BM
99 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
100 "Type %.2X, aml_length %.2X internal_length %.2X\n",
101 acpi_ut_get_resource_type(aml), length,
102 resource->length));
103
104 /* Point to the next structure in the output buffer */
1da177e4 105
61686124
BM
106 *resource_ptr = ACPI_ADD_PTR(void, resource, resource->length);
107 return_ACPI_STATUS(AE_OK);
1da177e4
LT
108}
109
1da177e4
LT
110/*******************************************************************************
111 *
50eca3eb 112 * FUNCTION: acpi_rs_convert_resources_to_aml
1da177e4 113 *
50eca3eb
BM
114 * PARAMETERS: Resource - Pointer to the resource linked list
115 * aml_size_needed - Calculated size of the byte stream
116 * needed from calling acpi_rs_get_aml_length()
117 * The size of the output_buffer is
118 * guaranteed to be >= aml_size_needed
119 * output_buffer - Pointer to the buffer that will
120 * contain the byte stream
1da177e4
LT
121 *
122 * RETURN: Status
123 *
124 * DESCRIPTION: Takes the resource linked list and parses it, creating a
125 * byte stream of resources in the caller's output buffer
126 *
127 ******************************************************************************/
128
129acpi_status
50eca3eb
BM
130acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
131 acpi_size aml_size_needed, u8 * output_buffer)
1da177e4 132{
96db255c
BM
133 u8 *aml = output_buffer;
134 u8 *end_aml = output_buffer + aml_size_needed;
bda663d3 135 acpi_status status;
1da177e4 136
50eca3eb 137 ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
1da177e4 138
0897831b 139 /* Walk the resource descriptor list, convert each descriptor */
1da177e4 140
96db255c 141 while (aml < end_aml) {
52fc0b02 142
96db255c 143 /* Validate the (internal) Resource Type */
44f6c012 144
50eca3eb 145 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
b8e4d893
BM
146 ACPI_ERROR((AE_INFO,
147 "Invalid descriptor type (%X) in resource list",
148 resource->type));
bda663d3 149 return_ACPI_STATUS(AE_BAD_DATA);
44f6c012 150 }
1da177e4 151
0897831b 152 /* Perform the conversion */
50eca3eb 153
0897831b
BM
154 status = acpi_rs_convert_resource_to_aml(resource,
155 ACPI_CAST_PTR(union
156 aml_resource,
96db255c 157 aml),
0897831b
BM
158 acpi_gbl_set_resource_dispatch
159 [resource->type]);
50eca3eb 160 if (ACPI_FAILURE(status)) {
b8e4d893
BM
161 ACPI_EXCEPTION((AE_INFO, status,
162 "Could not convert resource (type %X) to AML",
163 resource->type));
50eca3eb
BM
164 return_ACPI_STATUS(status);
165 }
166
167 /* Perform final sanity check on the new AML resource descriptor */
bda663d3 168
50eca3eb 169 status =
96db255c
BM
170 acpi_ut_validate_resource(ACPI_CAST_PTR
171 (union aml_resource, aml), NULL);
4be44fcd
LB
172 if (ACPI_FAILURE(status)) {
173 return_ACPI_STATUS(status);
1da177e4
LT
174 }
175
50eca3eb 176 /* Check for end-of-list, normal exit */
bda663d3 177
50eca3eb 178 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
52fc0b02 179
50eca3eb 180 /* An End Tag indicates the end of the input Resource Template */
bda663d3
RM
181
182 return_ACPI_STATUS(AE_OK);
183 }
184
0897831b
BM
185 /*
186 * Extract the total length of the new descriptor and set the
96db255c 187 * Aml to point to the next (output) resource descriptor
0897831b 188 */
96db255c 189 aml += acpi_ut_get_descriptor_length(aml);
1da177e4 190
50eca3eb 191 /* Point to the next input resource descriptor */
44f6c012 192
50eca3eb 193 resource =
c51a4de8 194 ACPI_ADD_PTR(struct acpi_resource, resource,
50eca3eb 195 resource->length);
1da177e4 196 }
0897831b
BM
197
198 /* Completed buffer, but did not find an end_tag resource descriptor */
199
200 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
1da177e4 201}