blob: 50bbb19bf4aee7301ab43816b8fa9ff56f22a5df [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 Moore616861242006-03-17 16:44:00 -050054 * PARAMETERS: acpi_walk_aml_callback
55 * resource_ptr - Pointer to the buffer that will
56 * contain the output structures
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * RETURN: Status
59 *
Bob Moore616861242006-03-17 16:44:00 -050060 * DESCRIPTION: Convert an AML resource to an internal representation of the
61 * resource that is aligned and easier to access.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
63 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070064acpi_status
Bob Moore616861242006-03-17 16:44:00 -050065acpi_rs_convert_aml_to_resources(u8 * aml,
66 u32 length,
67 u32 offset,
68 u8 resource_index, void **resource_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Bob Moore616861242006-03-17 16:44:00 -050070 struct acpi_resource *resource = *resource_ptr;
Len Brown4be44fc2005-08-05 00:44:28 -040071 acpi_status status;
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 Moore616861242006-03-17 16:44:00 -050075 /*
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));
Robert Moore44f6c012005-04-18 22:49:35 -040082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Moore616861242006-03-17 16:44:00 -050084 /* Convert the AML byte stream resource to a local resource struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Bob Moore616861242006-03-17 16:44:00 -050086 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);
97 }
98
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 */
105
106 *resource_ptr = ACPI_ADD_PTR(void, resource, resource->length);
107 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*******************************************************************************
111 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400112 * FUNCTION: acpi_rs_convert_resources_to_aml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400114 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
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
Bob Moore50eca3e2005-09-30 19:03:00 -0400130acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
131 acpi_size aml_size_needed, u8 * output_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Bob Moore96db2552005-11-02 00:00:00 -0500133 u8 *aml = output_buffer;
134 u8 *end_aml = output_buffer + aml_size_needed;
Robert Moorebda663d2005-09-16 16:51:15 -0400135 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Bob Moore50eca3e2005-09-30 19:03:00 -0400137 ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Bob Moore08978312005-10-21 00:00:00 -0400139 /* Walk the resource descriptor list, convert each descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Bob Moore96db2552005-11-02 00:00:00 -0500141 while (aml < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400142
Bob Moore96db2552005-11-02 00:00:00 -0500143 /* Validate the (internal) Resource Type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Bob Moore50eca3e2005-09-30 19:03:00 -0400145 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500146 ACPI_ERROR((AE_INFO,
147 "Invalid descriptor type (%X) in resource list",
148 resource->type));
Robert Moorebda663d2005-09-16 16:51:15 -0400149 return_ACPI_STATUS(AE_BAD_DATA);
Robert Moore44f6c012005-04-18 22:49:35 -0400150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Bob Moore08978312005-10-21 00:00:00 -0400152 /* Perform the conversion */
Robert Moorebda663d2005-09-16 16:51:15 -0400153
Bob Moore08978312005-10-21 00:00:00 -0400154 status = acpi_rs_convert_resource_to_aml(resource,
155 ACPI_CAST_PTR(union
156 aml_resource,
Bob Moore96db2552005-11-02 00:00:00 -0500157 aml),
Bob Moore08978312005-10-21 00:00:00 -0400158 acpi_gbl_set_resource_dispatch
159 [resource->type]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400160 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500161 ACPI_EXCEPTION((AE_INFO, status,
162 "Could not convert resource (type %X) to AML",
163 resource->type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400164 return_ACPI_STATUS(status);
165 }
166
167 /* Perform final sanity check on the new AML resource descriptor */
168
169 status =
Bob Moore96db2552005-11-02 00:00:00 -0500170 acpi_ut_validate_resource(ACPI_CAST_PTR
171 (union aml_resource, aml), NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400172 if (ACPI_FAILURE(status)) {
173 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
Bob Moore50eca3e2005-09-30 19:03:00 -0400176 /* Check for end-of-list, normal exit */
Robert Moorebda663d2005-09-16 16:51:15 -0400177
Bob Moore50eca3e2005-09-30 19:03:00 -0400178 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400179
Bob Moore50eca3e2005-09-30 19:03:00 -0400180 /* An End Tag indicates the end of the input Resource Template */
Robert Moorebda663d2005-09-16 16:51:15 -0400181
182 return_ACPI_STATUS(AE_OK);
183 }
184
Bob Moore08978312005-10-21 00:00:00 -0400185 /*
186 * Extract the total length of the new descriptor and set the
Bob Moore96db2552005-11-02 00:00:00 -0500187 * Aml to point to the next (output) resource descriptor
Bob Moore08978312005-10-21 00:00:00 -0400188 */
Bob Moore96db2552005-11-02 00:00:00 -0500189 aml += acpi_ut_get_descriptor_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Bob Moore50eca3e2005-09-30 19:03:00 -0400191 /* Point to the next input resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400192
Bob Moore50eca3e2005-09-30 19:03:00 -0400193 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500194 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore50eca3e2005-09-30 19:03:00 -0400195 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Bob Moore08978312005-10-21 00:00:00 -0400197
198 /* Completed buffer, but did not find an end_tag resource descriptor */
199
200 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}