rslist.c 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*******************************************************************************
 *
 * Module Name: rslist - Linked list utilities
 *
 ******************************************************************************/

/*
 * Copyright (C) 2000 - 2005, R. Byron Moore
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include <acpi/acresrc.h>

#define _COMPONENT          ACPI_RESOURCES
L
Len Brown 已提交
48
ACPI_MODULE_NAME("rslist")
L
Linus Torvalds 已提交
49 50 51

/*******************************************************************************
 *
B
Bob Moore 已提交
52
 * FUNCTION:    acpi_rs_convert_aml_to_resources
L
Linus Torvalds 已提交
53
 *
B
Bob Moore 已提交
54 55
 * PARAMETERS:  Aml                 - Pointer to the resource byte stream
 *              aml_length          - Length of Aml
B
Bob Moore 已提交
56 57
 *              output_buffer       - Pointer to the buffer that will
 *                                    contain the output structures
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Takes the resource byte stream and parses it, creating a
 *              linked list of resources in the caller's output buffer
 *
 ******************************************************************************/
acpi_status
B
Bob Moore 已提交
66
acpi_rs_convert_aml_to_resources(u8 * aml, u32 aml_length, u8 * output_buffer)
L
Linus Torvalds 已提交
67
{
B
Bob Moore 已提交
68
	struct acpi_resource *resource = (void *)output_buffer;
L
Len Brown 已提交
69
	acpi_status status;
B
Bob Moore 已提交
70 71
	u8 resource_index;
	u8 *end_aml;
L
Len Brown 已提交
72

B
Bob Moore 已提交
73
	ACPI_FUNCTION_TRACE("rs_convert_aml_to_resources");
L
Len Brown 已提交
74

B
Bob Moore 已提交
75
	end_aml = aml + aml_length;
R
Robert Moore 已提交
76

B
Bob Moore 已提交
77
	/* Loop until end-of-buffer or an end_tag is found */
R
Robert Moore 已提交
78

B
Bob Moore 已提交
79 80
	while (aml < end_aml) {
		/* Validate the Resource Type and Resource Length */
B
Bob Moore 已提交
81

B
Bob Moore 已提交
82
		status = acpi_ut_validate_resource(aml, &resource_index);
B
Bob Moore 已提交
83 84
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
85 86
		}

B
Bob Moore 已提交
87
		/* Convert the AML byte stream resource to a local resource struct */
B
Bob Moore 已提交
88

B
Bob Moore 已提交
89
		status =
B
Bob Moore 已提交
90
		    acpi_rs_convert_aml_to_resource(resource,
B
Bob Moore 已提交
91 92
						    ACPI_CAST_PTR(union
								  aml_resource,
B
Bob Moore 已提交
93 94 95
								  aml),
						    acpi_gbl_get_resource_dispatch
						    [resource_index]);
L
Len Brown 已提交
96
		if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
97
			ACPI_REPORT_ERROR(("Could not convert AML resource (Type %X) to resource, %s\n", *aml, acpi_format_exception(status)));
L
Len Brown 已提交
98
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
99 100
		}

R
Robert Moore 已提交
101
		/* Normal exit on completion of an end_tag resource descriptor */
R
Robert Moore 已提交
102

B
Bob Moore 已提交
103
		if (acpi_ut_get_resource_type(aml) ==
B
Bob Moore 已提交
104
		    ACPI_RESOURCE_NAME_END_TAG) {
R
Robert Moore 已提交
105 106 107
			return_ACPI_STATUS(AE_OK);
		}

B
Bob Moore 已提交
108
		/* Point to the next input AML resource */
R
Robert Moore 已提交
109

B
Bob Moore 已提交
110
		aml += acpi_ut_get_descriptor_length(aml);
L
Linus Torvalds 已提交
111

R
Robert Moore 已提交
112
		/* Point to the next structure in the output buffer */
R
Robert Moore 已提交
113

B
Bob Moore 已提交
114
		resource =
B
Bob Moore 已提交
115
		    ACPI_ADD_PTR(struct acpi_resource, resource,
B
Bob Moore 已提交
116
				 resource->length);
R
Robert Moore 已提交
117
	}
L
Linus Torvalds 已提交
118

B
Bob Moore 已提交
119
	/* Did not find an end_tag resource descriptor */
L
Linus Torvalds 已提交
120

R
Robert Moore 已提交
121
	return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
L
Linus Torvalds 已提交
122 123 124 125
}

/*******************************************************************************
 *
B
Bob Moore 已提交
126
 * FUNCTION:    acpi_rs_convert_resources_to_aml
L
Linus Torvalds 已提交
127
 *
B
Bob Moore 已提交
128 129 130 131 132 133 134
 * PARAMETERS:  Resource            - Pointer to the resource linked list
 *              aml_size_needed     - Calculated size of the byte stream
 *                                    needed from calling acpi_rs_get_aml_length()
 *                                    The size of the output_buffer is
 *                                    guaranteed to be >= aml_size_needed
 *              output_buffer       - Pointer to the buffer that will
 *                                    contain the byte stream
L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142 143
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Takes the resource linked list and parses it, creating a
 *              byte stream of resources in the caller's output buffer
 *
 ******************************************************************************/

acpi_status
B
Bob Moore 已提交
144 145
acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
				 acpi_size aml_size_needed, u8 * output_buffer)
L
Linus Torvalds 已提交
146
{
B
Bob Moore 已提交
147 148
	u8 *aml = output_buffer;
	u8 *end_aml = output_buffer + aml_size_needed;
R
Robert Moore 已提交
149
	acpi_status status;
L
Linus Torvalds 已提交
150

B
Bob Moore 已提交
151
	ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
L
Linus Torvalds 已提交
152

B
Bob Moore 已提交
153
	/* Walk the resource descriptor list, convert each descriptor */
L
Linus Torvalds 已提交
154

B
Bob Moore 已提交
155 156
	while (aml < end_aml) {
		/* Validate the (internal) Resource Type */
R
Robert Moore 已提交
157

B
Bob Moore 已提交
158
		if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
L
Len Brown 已提交
159 160
			ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
					  "Invalid descriptor type (%X) in resource list\n",
R
Robert Moore 已提交
161 162
					  resource->type));
			return_ACPI_STATUS(AE_BAD_DATA);
R
Robert Moore 已提交
163
		}
L
Linus Torvalds 已提交
164

B
Bob Moore 已提交
165
		/* Perform the conversion */
B
Bob Moore 已提交
166

B
Bob Moore 已提交
167 168 169
		status = acpi_rs_convert_resource_to_aml(resource,
							 ACPI_CAST_PTR(union
								       aml_resource,
B
Bob Moore 已提交
170
								       aml),
B
Bob Moore 已提交
171 172
							 acpi_gbl_set_resource_dispatch
							 [resource->type]);
B
Bob Moore 已提交
173 174 175 176 177 178
		if (ACPI_FAILURE(status)) {
			ACPI_REPORT_ERROR(("Could not convert resource (type %X) to AML, %s\n", resource->type, acpi_format_exception(status)));
			return_ACPI_STATUS(status);
		}

		/* Perform final sanity check on the new AML resource descriptor */
R
Robert Moore 已提交
179

B
Bob Moore 已提交
180
		status =
B
Bob Moore 已提交
181 182
		    acpi_ut_validate_resource(ACPI_CAST_PTR
					      (union aml_resource, aml), NULL);
L
Len Brown 已提交
183 184
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
185 186
		}

B
Bob Moore 已提交
187
		/* Check for end-of-list, normal exit */
R
Robert Moore 已提交
188

B
Bob Moore 已提交
189 190
		if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
			/* An End Tag indicates the end of the input Resource Template */
R
Robert Moore 已提交
191 192 193 194

			return_ACPI_STATUS(AE_OK);
		}

B
Bob Moore 已提交
195 196
		/*
		 * Extract the total length of the new descriptor and set the
B
Bob Moore 已提交
197
		 * Aml to point to the next (output) resource descriptor
B
Bob Moore 已提交
198
		 */
B
Bob Moore 已提交
199
		aml += acpi_ut_get_descriptor_length(aml);
L
Linus Torvalds 已提交
200

B
Bob Moore 已提交
201
		/* Point to the next input resource descriptor */
R
Robert Moore 已提交
202

B
Bob Moore 已提交
203
		resource =
B
Bob Moore 已提交
204
		    ACPI_ADD_PTR(struct acpi_resource, resource,
B
Bob Moore 已提交
205
				 resource->length);
L
Linus Torvalds 已提交
206
	}
B
Bob Moore 已提交
207 208 209 210

	/* Completed buffer, but did not find an end_tag resource descriptor */

	return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
L
Linus Torvalds 已提交
211
}