rslist.c 7.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: rslist - Linked list utilities
 *
 ******************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2006, R. Byron Moore
L
Linus Torvalds 已提交
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
 * 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
	while (aml < end_aml) {
B
Bob Moore 已提交
80

B
Bob Moore 已提交
81
		/* Validate the Resource Type and Resource Length */
B
Bob Moore 已提交
82

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

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

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

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

B
Bob Moore 已提交
106
		if (acpi_ut_get_resource_type(aml) ==
B
Bob Moore 已提交
107
		    ACPI_RESOURCE_NAME_END_TAG) {
R
Robert Moore 已提交
108 109 110
			return_ACPI_STATUS(AE_OK);
		}

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

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

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

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

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

R
Robert Moore 已提交
124
	return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
L
Linus Torvalds 已提交
125 126 127 128
}

/*******************************************************************************
 *
B
Bob Moore 已提交
129
 * FUNCTION:    acpi_rs_convert_resources_to_aml
L
Linus Torvalds 已提交
130
 *
B
Bob Moore 已提交
131 132 133 134 135 136 137
 * 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 已提交
138 139 140 141 142 143 144 145 146
 *
 * 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 已提交
147 148
acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
				 acpi_size aml_size_needed, u8 * output_buffer)
L
Linus Torvalds 已提交
149
{
B
Bob Moore 已提交
150 151
	u8 *aml = output_buffer;
	u8 *end_aml = output_buffer + aml_size_needed;
R
Robert Moore 已提交
152
	acpi_status status;
L
Linus Torvalds 已提交
153

B
Bob Moore 已提交
154
	ACPI_FUNCTION_TRACE("rs_convert_resources_to_aml");
L
Linus Torvalds 已提交
155

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

B
Bob Moore 已提交
158
	while (aml < end_aml) {
B
Bob Moore 已提交
159

B
Bob Moore 已提交
160
		/* Validate the (internal) Resource Type */
R
Robert Moore 已提交
161

B
Bob Moore 已提交
162
		if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
B
Bob Moore 已提交
163 164 165
			ACPI_ERROR((AE_INFO,
				    "Invalid descriptor type (%X) in resource list",
				    resource->type));
R
Robert Moore 已提交
166
			return_ACPI_STATUS(AE_BAD_DATA);
R
Robert Moore 已提交
167
		}
L
Linus Torvalds 已提交
168

B
Bob Moore 已提交
169
		/* Perform the conversion */
B
Bob Moore 已提交
170

B
Bob Moore 已提交
171 172 173
		status = acpi_rs_convert_resource_to_aml(resource,
							 ACPI_CAST_PTR(union
								       aml_resource,
B
Bob Moore 已提交
174
								       aml),
B
Bob Moore 已提交
175 176
							 acpi_gbl_set_resource_dispatch
							 [resource->type]);
B
Bob Moore 已提交
177
		if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
178 179 180
			ACPI_EXCEPTION((AE_INFO, status,
					"Could not convert resource (type %X) to AML",
					resource->type));
B
Bob Moore 已提交
181 182 183 184
			return_ACPI_STATUS(status);
		}

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

B
Bob Moore 已提交
186
		status =
B
Bob Moore 已提交
187 188
		    acpi_ut_validate_resource(ACPI_CAST_PTR
					      (union aml_resource, aml), NULL);
L
Len Brown 已提交
189 190
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
191 192
		}

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

B
Bob Moore 已提交
195
		if (resource->type == ACPI_RESOURCE_TYPE_END_TAG) {
B
Bob Moore 已提交
196

B
Bob Moore 已提交
197
			/* An End Tag indicates the end of the input Resource Template */
R
Robert Moore 已提交
198 199 200 201

			return_ACPI_STATUS(AE_OK);
		}

B
Bob Moore 已提交
202 203
		/*
		 * Extract the total length of the new descriptor and set the
B
Bob Moore 已提交
204
		 * Aml to point to the next (output) resource descriptor
B
Bob Moore 已提交
205
		 */
B
Bob Moore 已提交
206
		aml += acpi_ut_get_descriptor_length(aml);
L
Linus Torvalds 已提交
207

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

B
Bob Moore 已提交
210
		resource =
B
Bob Moore 已提交
211
		    ACPI_ADD_PTR(struct acpi_resource, resource,
B
Bob Moore 已提交
212
				 resource->length);
L
Linus Torvalds 已提交
213
	}
B
Bob Moore 已提交
214 215 216 217

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

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