blob: 1b1dbc69f08719921cd58a1ff0eb20b0a57ff97f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rslist - Linked list utilities
4 *
5 ******************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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 Moore61686122006-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 Moore61686122006-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 Moore61686122006-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;
Len Brown4be44fc2005-08-05 00:44:28 -040073 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Bob Mooreb229cf92006-04-21 17:15:00 -040075 ACPI_FUNCTION_TRACE(rs_convert_aml_to_resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bob Moore61686122006-03-17 16:44:00 -050077 /*
78 * Check that the input buffer and all subsequent pointers into it
79 * are aligned on a native word boundary. Most important on IA64
80 */
Bob Moore793c2382006-03-31 00:00:00 -050081 resource = *resource_ptr;
Bob Moore61686122006-03-17 16:44:00 -050082 if (ACPI_IS_MISALIGNED(resource)) {
83 ACPI_WARNING((AE_INFO,
84 "Misaligned resource pointer %p", resource));
Robert Moore44f6c012005-04-18 22:49:35 -040085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Bob Moore61686122006-03-17 16:44:00 -050087 /* Convert the AML byte stream resource to a local resource struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Bob Moore61686122006-03-17 16:44:00 -050089 status =
90 acpi_rs_convert_aml_to_resource(resource,
91 ACPI_CAST_PTR(union aml_resource,
92 aml),
93 acpi_gbl_get_resource_dispatch
94 [resource_index]);
95 if (ACPI_FAILURE(status)) {
96 ACPI_EXCEPTION((AE_INFO, status,
97 "Could not convert AML resource (Type %X)",
98 *aml));
99 return_ACPI_STATUS(status);
100 }
101
102 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400103 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Moore61686122006-03-17 16:44:00 -0500104 acpi_ut_get_resource_type(aml), length,
105 resource->length));
106
107 /* Point to the next structure in the output buffer */
108
109 *resource_ptr = ACPI_ADD_PTR(void, resource, resource->length);
110 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*******************************************************************************
114 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400115 * FUNCTION: acpi_rs_convert_resources_to_aml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400117 * PARAMETERS: Resource - Pointer to the resource linked list
118 * aml_size_needed - Calculated size of the byte stream
119 * needed from calling acpi_rs_get_aml_length()
120 * The size of the output_buffer is
121 * guaranteed to be >= aml_size_needed
122 * output_buffer - Pointer to the buffer that will
123 * contain the byte stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *
125 * RETURN: Status
126 *
127 * DESCRIPTION: Takes the resource linked list and parses it, creating a
128 * byte stream of resources in the caller's output buffer
129 *
130 ******************************************************************************/
131
132acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400133acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
134 acpi_size aml_size_needed, u8 * output_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Bob Moore96db2552005-11-02 00:00:00 -0500136 u8 *aml = output_buffer;
137 u8 *end_aml = output_buffer + aml_size_needed;
Robert Moorebda663d2005-09-16 16:51:15 -0400138 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Bob Mooreb229cf92006-04-21 17:15:00 -0400140 ACPI_FUNCTION_TRACE(rs_convert_resources_to_aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Bob Moore08978312005-10-21 00:00:00 -0400142 /* Walk the resource descriptor list, convert each descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Bob Moore96db2552005-11-02 00:00:00 -0500144 while (aml < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400145
Bob Moore96db2552005-11-02 00:00:00 -0500146 /* Validate the (internal) Resource Type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Bob Moore50eca3e2005-09-30 19:03:00 -0400148 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500149 ACPI_ERROR((AE_INFO,
150 "Invalid descriptor type (%X) in resource list",
151 resource->type));
Robert Moorebda663d2005-09-16 16:51:15 -0400152 return_ACPI_STATUS(AE_BAD_DATA);
Robert Moore44f6c012005-04-18 22:49:35 -0400153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Bob Moore08978312005-10-21 00:00:00 -0400155 /* Perform the conversion */
Robert Moorebda663d2005-09-16 16:51:15 -0400156
Len Brownfd350942007-05-09 23:34:35 -0400157 status = acpi_rs_convert_resource_to_aml(resource, ACPI_CAST_PTR(union
158 aml_resource,
159 aml),
Bob Moore08978312005-10-21 00:00:00 -0400160 acpi_gbl_set_resource_dispatch
161 [resource->type]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400162 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500163 ACPI_EXCEPTION((AE_INFO, status,
164 "Could not convert resource (type %X) to AML",
165 resource->type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400166 return_ACPI_STATUS(status);
167 }
168
169 /* Perform final sanity check on the new AML resource descriptor */
170
171 status =
Bob Moore96db2552005-11-02 00:00:00 -0500172 acpi_ut_validate_resource(ACPI_CAST_PTR
173 (union aml_resource, aml), NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400174 if (ACPI_FAILURE(status)) {
175 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
Bob Moore50eca3e2005-09-30 19:03:00 -0400178 /* Check for end-of-list, normal exit */
Robert Moorebda663d2005-09-16 16:51:15 -0400179
Bob Moore50eca3e2005-09-30 19:03:00 -0400180 if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400181
Bob Moore50eca3e2005-09-30 19:03:00 -0400182 /* An End Tag indicates the end of the input Resource Template */
Robert Moorebda663d2005-09-16 16:51:15 -0400183
184 return_ACPI_STATUS(AE_OK);
185 }
186
Bob Moore08978312005-10-21 00:00:00 -0400187 /*
188 * Extract the total length of the new descriptor and set the
Bob Moore96db2552005-11-02 00:00:00 -0500189 * Aml to point to the next (output) resource descriptor
Bob Moore08978312005-10-21 00:00:00 -0400190 */
Bob Moore96db2552005-11-02 00:00:00 -0500191 aml += acpi_ut_get_descriptor_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Bob Moore50eca3e2005-09-30 19:03:00 -0400193 /* Point to the next input resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400194
Bob Moore50eca3e2005-09-30 19:03:00 -0400195 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500196 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore50eca3e2005-09-30 19:03:00 -0400197 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Bob Moore08978312005-10-21 00:00:00 -0400199
200 /* Completed buffer, but did not find an end_tag resource descriptor */
201
202 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}