initial commit with v2.6.9
[linux-2.6.9-moxart.git] / drivers / acpi / resources / rsutils.c
blob01dea9b9441c8b0223f457c6071817229b6b7c54
1 /*******************************************************************************
3 * Module Name: rsutils - Utilities for the resource manager
5 ******************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2004, R. Byron Moore
9 * All rights reserved.
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.
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.
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.
45 #include <acpi/acpi.h>
46 #include <acpi/acnamesp.h>
47 #include <acpi/acresrc.h>
50 #define _COMPONENT ACPI_RESOURCES
51 ACPI_MODULE_NAME ("rsutils")
54 /*******************************************************************************
56 * FUNCTION: acpi_rs_get_prt_method_data
58 * PARAMETERS: Handle - a handle to the containing object
59 * ret_buffer - a pointer to a buffer structure for the
60 * results
62 * RETURN: Status
64 * DESCRIPTION: This function is called to get the _PRT value of an object
65 * contained in an object specified by the handle passed in
67 * If the function fails an appropriate status will be returned
68 * and the contents of the callers buffer is undefined.
70 ******************************************************************************/
72 acpi_status
73 acpi_rs_get_prt_method_data (
74 acpi_handle handle,
75 struct acpi_buffer *ret_buffer)
77 union acpi_operand_object *obj_desc;
78 acpi_status status;
81 ACPI_FUNCTION_TRACE ("rs_get_prt_method_data");
84 /* Parameters guaranteed valid by caller */
87 * Execute the method, no parameters
89 status = acpi_ut_evaluate_object (handle, "_PRT", ACPI_BTYPE_PACKAGE, &obj_desc);
90 if (ACPI_FAILURE (status)) {
91 return_ACPI_STATUS (status);
95 * Create a resource linked list from the byte stream buffer that comes
96 * back from the _CRS method execution.
98 status = acpi_rs_create_pci_routing_table (obj_desc, ret_buffer);
100 /* On exit, we must delete the object returned by evaluate_object */
102 acpi_ut_remove_reference (obj_desc);
103 return_ACPI_STATUS (status);
107 /*******************************************************************************
109 * FUNCTION: acpi_rs_get_crs_method_data
111 * PARAMETERS: Handle - a handle to the containing object
112 * ret_buffer - a pointer to a buffer structure for the
113 * results
115 * RETURN: Status
117 * DESCRIPTION: This function is called to get the _CRS value of an object
118 * contained in an object specified by the handle passed in
120 * If the function fails an appropriate status will be returned
121 * and the contents of the callers buffer is undefined.
123 ******************************************************************************/
125 acpi_status
126 acpi_rs_get_crs_method_data (
127 acpi_handle handle,
128 struct acpi_buffer *ret_buffer)
130 union acpi_operand_object *obj_desc;
131 acpi_status status;
134 ACPI_FUNCTION_TRACE ("rs_get_crs_method_data");
137 /* Parameters guaranteed valid by caller */
140 * Execute the method, no parameters
142 status = acpi_ut_evaluate_object (handle, "_CRS", ACPI_BTYPE_BUFFER, &obj_desc);
143 if (ACPI_FAILURE (status)) {
144 return_ACPI_STATUS (status);
148 * Make the call to create a resource linked list from the
149 * byte stream buffer that comes back from the _CRS method
150 * execution.
152 status = acpi_rs_create_resource_list (obj_desc, ret_buffer);
154 /* on exit, we must delete the object returned by evaluate_object */
156 acpi_ut_remove_reference (obj_desc);
157 return_ACPI_STATUS (status);
161 /*******************************************************************************
163 * FUNCTION: acpi_rs_get_prs_method_data
165 * PARAMETERS: Handle - a handle to the containing object
166 * ret_buffer - a pointer to a buffer structure for the
167 * results
169 * RETURN: Status
171 * DESCRIPTION: This function is called to get the _PRS value of an object
172 * contained in an object specified by the handle passed in
174 * If the function fails an appropriate status will be returned
175 * and the contents of the callers buffer is undefined.
177 ******************************************************************************/
179 acpi_status
180 acpi_rs_get_prs_method_data (
181 acpi_handle handle,
182 struct acpi_buffer *ret_buffer)
184 union acpi_operand_object *obj_desc;
185 acpi_status status;
188 ACPI_FUNCTION_TRACE ("rs_get_prs_method_data");
191 /* Parameters guaranteed valid by caller */
194 * Execute the method, no parameters
196 status = acpi_ut_evaluate_object (handle, "_PRS", ACPI_BTYPE_BUFFER, &obj_desc);
197 if (ACPI_FAILURE (status)) {
198 return_ACPI_STATUS (status);
202 * Make the call to create a resource linked list from the
203 * byte stream buffer that comes back from the _CRS method
204 * execution.
206 status = acpi_rs_create_resource_list (obj_desc, ret_buffer);
208 /* on exit, we must delete the object returned by evaluate_object */
210 acpi_ut_remove_reference (obj_desc);
211 return_ACPI_STATUS (status);
215 /*******************************************************************************
217 * FUNCTION: acpi_rs_get_method_data
219 * PARAMETERS: Handle - a handle to the containing object
220 * ret_buffer - a pointer to a buffer structure for the
221 * results
223 * RETURN: Status
225 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
226 * object contained in an object specified by the handle passed in
228 * If the function fails an appropriate status will be returned
229 * and the contents of the callers buffer is undefined.
231 ******************************************************************************/
233 acpi_status
234 acpi_rs_get_method_data (
235 acpi_handle handle,
236 char *path,
237 struct acpi_buffer *ret_buffer)
239 union acpi_operand_object *obj_desc;
240 acpi_status status;
243 ACPI_FUNCTION_TRACE ("rs_get_method_data");
246 /* Parameters guaranteed valid by caller */
249 * Execute the method, no parameters
251 status = acpi_ut_evaluate_object (handle, path, ACPI_BTYPE_BUFFER, &obj_desc);
252 if (ACPI_FAILURE (status)) {
253 return_ACPI_STATUS (status);
257 * Make the call to create a resource linked list from the
258 * byte stream buffer that comes back from the method
259 * execution.
261 status = acpi_rs_create_resource_list (obj_desc, ret_buffer);
263 /* On exit, we must delete the object returned by evaluate_object */
265 acpi_ut_remove_reference (obj_desc);
266 return_ACPI_STATUS (status);
269 /*******************************************************************************
271 * FUNCTION: acpi_rs_set_srs_method_data
273 * PARAMETERS: Handle - a handle to the containing object
274 * in_buffer - a pointer to a buffer structure of the
275 * parameter
277 * RETURN: Status
279 * DESCRIPTION: This function is called to set the _SRS of an object contained
280 * in an object specified by the handle passed in
282 * If the function fails an appropriate status will be returned
283 * and the contents of the callers buffer is undefined.
285 ******************************************************************************/
287 acpi_status
288 acpi_rs_set_srs_method_data (
289 acpi_handle handle,
290 struct acpi_buffer *in_buffer)
292 struct acpi_parameter_info info;
293 union acpi_operand_object *params[2];
294 acpi_status status;
295 struct acpi_buffer buffer;
298 ACPI_FUNCTION_TRACE ("rs_set_srs_method_data");
301 /* Parameters guaranteed valid by caller */
304 * The in_buffer parameter will point to a linked list of
305 * resource parameters. It needs to be formatted into a
306 * byte stream to be sent in as an input parameter to _SRS
308 * Convert the linked list into a byte stream
310 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
311 status = acpi_rs_create_byte_stream (in_buffer->pointer, &buffer);
312 if (ACPI_FAILURE (status)) {
313 return_ACPI_STATUS (status);
317 * Init the param object
319 params[0] = acpi_ut_create_internal_object (ACPI_TYPE_BUFFER);
320 if (!params[0]) {
321 acpi_os_free (buffer.pointer);
322 return_ACPI_STATUS (AE_NO_MEMORY);
326 * Set up the parameter object
328 params[0]->buffer.length = (u32) buffer.length;
329 params[0]->buffer.pointer = buffer.pointer;
330 params[0]->common.flags = AOPOBJ_DATA_VALID;
331 params[1] = NULL;
333 info.node = handle;
334 info.parameters = params;
335 info.parameter_type = ACPI_PARAM_ARGS;
338 * Execute the method, no return value
340 status = acpi_ns_evaluate_relative ("_SRS", &info);
343 * Clean up and return the status from acpi_ns_evaluate_relative
345 acpi_ut_remove_reference (params[0]);
346 return_ACPI_STATUS (status);