blob: 37d5241c0acf731d2581bb51f68c84f5ae4643d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsutils - Utilities for the resource manager
4 *
5 ******************************************************************************/
6
7/*
Bob Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, 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 "acnamesp.h"
47#include "acresrc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("rsutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
Bob Moore08978312005-10-21 00:00:00 -040054 * FUNCTION: acpi_rs_decode_bitmask
55 *
Bob Mooreba494be2012-07-12 09:40:10 +080056 * PARAMETERS: mask - Bitmask to decode
57 * list - Where the converted list is returned
Bob Moore08978312005-10-21 00:00:00 -040058 *
59 * RETURN: Count of bits set (length of list)
60 *
61 * DESCRIPTION: Convert a bit mask into a list of values
62 *
63 ******************************************************************************/
64u8 acpi_rs_decode_bitmask(u16 mask, u8 * list)
65{
Bob Moore67a119f2008-06-10 13:42:13 +080066 u8 i;
Bob Moore08978312005-10-21 00:00:00 -040067 u8 bit_count;
68
Bob Moore96db2552005-11-02 00:00:00 -050069 ACPI_FUNCTION_ENTRY();
70
Bob Moore08978312005-10-21 00:00:00 -040071 /* Decode the mask bits */
72
73 for (i = 0, bit_count = 0; mask; i++) {
74 if (mask & 0x0001) {
Bob Moore67a119f2008-06-10 13:42:13 +080075 list[bit_count] = i;
Bob Moore08978312005-10-21 00:00:00 -040076 bit_count++;
77 }
78
79 mask >>= 1;
80 }
81
82 return (bit_count);
83}
84
85/*******************************************************************************
86 *
87 * FUNCTION: acpi_rs_encode_bitmask
88 *
Bob Mooreba494be2012-07-12 09:40:10 +080089 * PARAMETERS: list - List of values to encode
90 * count - Length of list
Bob Moore08978312005-10-21 00:00:00 -040091 *
92 * RETURN: Encoded bitmask
93 *
94 * DESCRIPTION: Convert a list of values to an encoded bitmask
95 *
96 ******************************************************************************/
97
98u16 acpi_rs_encode_bitmask(u8 * list, u8 count)
99{
Bob Moore67a119f2008-06-10 13:42:13 +0800100 u32 i;
101 u16 mask;
Bob Moore08978312005-10-21 00:00:00 -0400102
Bob Moore96db2552005-11-02 00:00:00 -0500103 ACPI_FUNCTION_ENTRY();
104
Bob Moore08978312005-10-21 00:00:00 -0400105 /* Encode the list into a single bitmask */
106
107 for (i = 0, mask = 0; i < count; i++) {
Bob Moore1d18c052008-04-10 19:06:40 +0400108 mask |= (0x1 << list[i]);
Bob Moore08978312005-10-21 00:00:00 -0400109 }
110
Bob Moore67a119f2008-06-10 13:42:13 +0800111 return mask;
Bob Moore08978312005-10-21 00:00:00 -0400112}
113
114/*******************************************************************************
115 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400116 * FUNCTION: acpi_rs_move_data
117 *
Bob Mooreba494be2012-07-12 09:40:10 +0800118 * PARAMETERS: destination - Pointer to the destination descriptor
119 * source - Pointer to the source descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400120 * item_count - How many items to move
121 * move_type - Byte width
122 *
123 * RETURN: None
124 *
125 * DESCRIPTION: Move multiple data items from one descriptor to another. Handles
126 * alignment issues and endian issues if necessary, as configured
127 * via the ACPI_MOVE_* macros. (This is why a memcpy is not used)
128 *
129 ******************************************************************************/
Bob Moore08978312005-10-21 00:00:00 -0400130
Bob Moore50eca3e2005-09-30 19:03:00 -0400131void
132acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type)
133{
Bob Moore67a119f2008-06-10 13:42:13 +0800134 u32 i;
Bob Moore50eca3e2005-09-30 19:03:00 -0400135
Bob Moore96db2552005-11-02 00:00:00 -0500136 ACPI_FUNCTION_ENTRY();
137
Bob Moore50eca3e2005-09-30 19:03:00 -0400138 /* One move per item */
139
140 for (i = 0; i < item_count; i++) {
141 switch (move_type) {
Bob Moore08978312005-10-21 00:00:00 -0400142 /*
143 * For the 8-bit case, we can perform the move all at once
144 * since there are no alignment or endian issues
145 */
146 case ACPI_RSC_MOVE8:
Lin Minge0fe0a82011-11-16 14:38:13 +0800147 case ACPI_RSC_MOVE_GPIO_RES:
148 case ACPI_RSC_MOVE_SERIAL_VEN:
149 case ACPI_RSC_MOVE_SERIAL_RES:
Bob Moore08978312005-10-21 00:00:00 -0400150 ACPI_MEMCPY(destination, source, item_count);
151 return;
152
153 /*
154 * 16-, 32-, and 64-bit cases must use the move macros that perform
Lucas De Marchi58f87ed2010-09-07 12:49:45 -0400155 * endian conversion and/or accommodate hardware that cannot perform
Bob Moore08978312005-10-21 00:00:00 -0400156 * misaligned memory transfers
157 */
158 case ACPI_RSC_MOVE16:
Lin Minge0fe0a82011-11-16 14:38:13 +0800159 case ACPI_RSC_MOVE_GPIO_PIN:
Bob Moorec51a4de2005-11-17 13:07:00 -0500160 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i],
161 &ACPI_CAST_PTR(u16, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400162 break;
163
Bob Moore08978312005-10-21 00:00:00 -0400164 case ACPI_RSC_MOVE32:
Bob Moorec51a4de2005-11-17 13:07:00 -0500165 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i],
166 &ACPI_CAST_PTR(u32, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400167 break;
168
Bob Moore08978312005-10-21 00:00:00 -0400169 case ACPI_RSC_MOVE64:
Bob Moorec51a4de2005-11-17 13:07:00 -0500170 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i],
171 &ACPI_CAST_PTR(u64, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400172 break;
173
174 default:
175 return;
176 }
177 }
178}
179
180/*******************************************************************************
181 *
Bob Moore08978312005-10-21 00:00:00 -0400182 * FUNCTION: acpi_rs_set_resource_length
Bob Moore50eca3e2005-09-30 19:03:00 -0400183 *
Bob Moore08978312005-10-21 00:00:00 -0400184 * PARAMETERS: total_length - Length of the AML descriptor, including
185 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800186 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400187 *
Bob Moore08978312005-10-21 00:00:00 -0400188 * RETURN: None
Bob Moore50eca3e2005-09-30 19:03:00 -0400189 *
Bob Moore08978312005-10-21 00:00:00 -0400190 * DESCRIPTION: Set the resource_length field of an AML
191 * resource descriptor, both Large and Small descriptors are
192 * supported automatically. Note: Descriptor Type field must
193 * be valid.
Bob Moore50eca3e2005-09-30 19:03:00 -0400194 *
195 ******************************************************************************/
196
Bob Moore08978312005-10-21 00:00:00 -0400197void
198acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
199 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400200{
Bob Moore08978312005-10-21 00:00:00 -0400201 acpi_rs_length resource_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400202
203 ACPI_FUNCTION_ENTRY();
204
Bob Moore96db2552005-11-02 00:00:00 -0500205 /* Length is the total descriptor length minus the header length */
206
207 resource_length = (acpi_rs_length)
208 (total_length - acpi_ut_get_resource_header_length(aml));
209
210 /* Length is stored differently for large and small descriptors */
Bob Moore50eca3e2005-09-30 19:03:00 -0400211
Bob Moore08978312005-10-21 00:00:00 -0400212 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400213
Bob Moore96db2552005-11-02 00:00:00 -0500214 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
Bob Moore08978312005-10-21 00:00:00 -0400215
216 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
217 &resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400218 } else {
Bob Moore96db2552005-11-02 00:00:00 -0500219 /* Small descriptor -- bits 2:0 of byte 0 contain the length */
Bob Moore08978312005-10-21 00:00:00 -0400220
221 aml->small_header.descriptor_type = (u8)
222
223 /* Clear any existing length, preserving descriptor type bits */
224 ((aml->small_header.
225 descriptor_type & ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK)
226
227 | resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400228 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400229}
230
231/*******************************************************************************
232 *
233 * FUNCTION: acpi_rs_set_resource_header
234 *
235 * PARAMETERS: descriptor_type - Byte to be inserted as the type
236 * total_length - Length of the AML descriptor, including
237 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800238 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400239 *
240 * RETURN: None
241 *
242 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
243 * resource descriptor, both Large and Small descriptors are
244 * supported automatically
245 *
246 ******************************************************************************/
247
248void
249acpi_rs_set_resource_header(u8 descriptor_type,
Bob Moore08978312005-10-21 00:00:00 -0400250 acpi_rsdesc_size total_length,
251 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400252{
Bob Moore50eca3e2005-09-30 19:03:00 -0400253 ACPI_FUNCTION_ENTRY();
254
Bob Moore96db2552005-11-02 00:00:00 -0500255 /* Set the Resource Type */
Bob Moore50eca3e2005-09-30 19:03:00 -0400256
257 aml->small_header.descriptor_type = descriptor_type;
258
Bob Moore08978312005-10-21 00:00:00 -0400259 /* Set the Resource Length */
Bob Moore50eca3e2005-09-30 19:03:00 -0400260
Bob Moore08978312005-10-21 00:00:00 -0400261 acpi_rs_set_resource_length(total_length, aml);
Bob Moore50eca3e2005-09-30 19:03:00 -0400262}
263
264/*******************************************************************************
265 *
266 * FUNCTION: acpi_rs_strcpy
267 *
Bob Mooreba494be2012-07-12 09:40:10 +0800268 * PARAMETERS: destination - Pointer to the destination string
269 * source - Pointer to the source string
Bob Moore50eca3e2005-09-30 19:03:00 -0400270 *
271 * RETURN: String length, including NULL terminator
272 *
273 * DESCRIPTION: Local string copy that returns the string length, saving a
274 * strcpy followed by a strlen.
275 *
276 ******************************************************************************/
277
278static u16 acpi_rs_strcpy(char *destination, char *source)
279{
280 u16 i;
281
282 ACPI_FUNCTION_ENTRY();
283
284 for (i = 0; source[i]; i++) {
285 destination[i] = source[i];
286 }
287
288 destination[i] = 0;
289
290 /* Return string length including the NULL terminator */
291
292 return ((u16) (i + 1));
293}
294
295/*******************************************************************************
296 *
297 * FUNCTION: acpi_rs_get_resource_source
298 *
299 * PARAMETERS: resource_length - Length field of the descriptor
300 * minimum_length - Minimum length of the descriptor (minus
301 * any optional fields)
302 * resource_source - Where the resource_source is returned
Bob Mooreba494be2012-07-12 09:40:10 +0800303 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400304 * string_ptr - (optional) where to store the actual
305 * resource_source string
306 *
Bob Mooreea936b72006-02-17 00:00:00 -0500307 * RETURN: Length of the string plus NULL terminator, rounded up to native
308 * word boundary
Bob Moore50eca3e2005-09-30 19:03:00 -0400309 *
310 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
311 * to an internal resource descriptor
312 *
313 ******************************************************************************/
314
Bob Moore08978312005-10-21 00:00:00 -0400315acpi_rs_length
316acpi_rs_get_resource_source(acpi_rs_length resource_length,
317 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400318 struct acpi_resource_source * resource_source,
319 union aml_resource * aml, char *string_ptr)
320{
Bob Moore08978312005-10-21 00:00:00 -0400321 acpi_rsdesc_size total_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400322 u8 *aml_resource_source;
323
324 ACPI_FUNCTION_ENTRY();
325
326 total_length =
327 resource_length + sizeof(struct aml_resource_large_header);
Bob Moorec51a4de2005-11-17 13:07:00 -0500328 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400329
330 /*
331 * resource_source is present if the length of the descriptor is longer than
332 * the minimum length.
333 *
334 * Note: Some resource descriptors will have an additional null, so
335 * we add 1 to the minimum length.
336 */
Bob Moore08978312005-10-21 00:00:00 -0400337 if (total_length > (acpi_rsdesc_size) (minimum_length + 1)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400338
Bob Moore50eca3e2005-09-30 19:03:00 -0400339 /* Get the resource_source_index */
340
341 resource_source->index = aml_resource_source[0];
342
343 resource_source->string_ptr = string_ptr;
344 if (!string_ptr) {
345 /*
346 * String destination pointer is not specified; Set the String
347 * pointer to the end of the current resource_source structure.
348 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500349 resource_source->string_ptr =
350 ACPI_ADD_PTR(char, resource_source,
351 sizeof(struct acpi_resource_source));
Bob Moore50eca3e2005-09-30 19:03:00 -0400352 }
353
Bob Moore08978312005-10-21 00:00:00 -0400354 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500355 * In order for the Resource length to be a multiple of the native
356 * word, calculate the length of the string (+1 for NULL terminator)
357 * and expand to the next word multiple.
Bob Moore08978312005-10-21 00:00:00 -0400358 *
359 * Zero the entire area of the buffer.
360 */
Len Brownfd350942007-05-09 23:34:35 -0400361 total_length = (u32)
362 ACPI_STRLEN(ACPI_CAST_PTR(char, &aml_resource_source[1])) + 1;
Bob Mooreea936b72006-02-17 00:00:00 -0500363 total_length = (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(total_length);
Bob Moore52fc0b02006-10-02 00:00:00 -0400364
Bob Moore08978312005-10-21 00:00:00 -0400365 ACPI_MEMSET(resource_source->string_ptr, 0, total_length);
366
Bob Moore50eca3e2005-09-30 19:03:00 -0400367 /* Copy the resource_source string to the destination */
368
369 resource_source->string_length =
370 acpi_rs_strcpy(resource_source->string_ptr,
Bob Moore52fc0b02006-10-02 00:00:00 -0400371 ACPI_CAST_PTR(char,
372 &aml_resource_source[1]));
Bob Moore50eca3e2005-09-30 19:03:00 -0400373
Bob Moore08978312005-10-21 00:00:00 -0400374 return ((acpi_rs_length) total_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400375 }
Bob Moore96db2552005-11-02 00:00:00 -0500376
377 /* resource_source is not present */
378
379 resource_source->index = 0;
380 resource_source->string_length = 0;
381 resource_source->string_ptr = NULL;
382 return (0);
Bob Moore50eca3e2005-09-30 19:03:00 -0400383}
384
385/*******************************************************************************
386 *
387 * FUNCTION: acpi_rs_set_resource_source
388 *
Bob Mooreba494be2012-07-12 09:40:10 +0800389 * PARAMETERS: aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400390 * minimum_length - Minimum length of the descriptor (minus
391 * any optional fields)
392 * resource_source - Internal resource_source
393
394 *
395 * RETURN: Total length of the AML descriptor
396 *
Bob Moore08978312005-10-21 00:00:00 -0400397 * DESCRIPTION: Convert an optional resource_source from internal format to a
Bob Moore50eca3e2005-09-30 19:03:00 -0400398 * raw AML resource descriptor
399 *
400 ******************************************************************************/
401
Bob Moore08978312005-10-21 00:00:00 -0400402acpi_rsdesc_size
Bob Moore50eca3e2005-09-30 19:03:00 -0400403acpi_rs_set_resource_source(union aml_resource * aml,
Bob Moore08978312005-10-21 00:00:00 -0400404 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400405 struct acpi_resource_source * resource_source)
406{
407 u8 *aml_resource_source;
Bob Moore08978312005-10-21 00:00:00 -0400408 acpi_rsdesc_size descriptor_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400409
410 ACPI_FUNCTION_ENTRY();
411
412 descriptor_length = minimum_length;
413
414 /* Non-zero string length indicates presence of a resource_source */
415
416 if (resource_source->string_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400417
Bob Moore50eca3e2005-09-30 19:03:00 -0400418 /* Point to the end of the AML descriptor */
419
Bob Moorec51a4de2005-11-17 13:07:00 -0500420 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400421
422 /* Copy the resource_source_index */
423
424 aml_resource_source[0] = (u8) resource_source->index;
425
426 /* Copy the resource_source string */
427
Bob Moore52fc0b02006-10-02 00:00:00 -0400428 ACPI_STRCPY(ACPI_CAST_PTR(char, &aml_resource_source[1]),
Bob Moore50eca3e2005-09-30 19:03:00 -0400429 resource_source->string_ptr);
430
431 /*
432 * Add the length of the string (+ 1 for null terminator) to the
433 * final descriptor length
434 */
435 descriptor_length +=
Bob Moore08978312005-10-21 00:00:00 -0400436 ((acpi_rsdesc_size) resource_source->string_length + 1);
Bob Moore50eca3e2005-09-30 19:03:00 -0400437 }
438
439 /* Return the new total length of the AML descriptor */
440
441 return (descriptor_length);
442}
443
444/*******************************************************************************
445 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * FUNCTION: acpi_rs_get_prt_method_data
447 *
Bob Mooreba494be2012-07-12 09:40:10 +0800448 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400449 * ret_buffer - Pointer to a buffer structure for the
450 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
452 * RETURN: Status
453 *
454 * DESCRIPTION: This function is called to get the _PRT value of an object
455 * contained in an object specified by the handle passed in
456 *
457 * If the function fails an appropriate status will be returned
458 * and the contents of the callers buffer is undefined.
459 *
460 ******************************************************************************/
Bob Moore50eca3e2005-09-30 19:03:00 -0400461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400463acpi_rs_get_prt_method_data(struct acpi_namespace_node * node,
464 struct acpi_buffer * ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Len Brown4be44fc2005-08-05 00:44:28 -0400466 union acpi_operand_object *obj_desc;
467 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Bob Mooreb229cf92006-04-21 17:15:00 -0400469 ACPI_FUNCTION_TRACE(rs_get_prt_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* Parameters guaranteed valid by caller */
472
Robert Moore44f6c012005-04-18 22:49:35 -0400473 /* Execute the method, no parameters */
474
Bob Moore41195322006-05-26 16:36:00 -0400475 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRT,
Len Brown4be44fc2005-08-05 00:44:28 -0400476 ACPI_BTYPE_PACKAGE, &obj_desc);
477 if (ACPI_FAILURE(status)) {
478 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 /*
482 * Create a resource linked list from the byte stream buffer that comes
483 * back from the _CRS method execution.
484 */
Len Brown4be44fc2005-08-05 00:44:28 -0400485 status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /* On exit, we must delete the object returned by evaluate_object */
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 acpi_ut_remove_reference(obj_desc);
490 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493/*******************************************************************************
494 *
495 * FUNCTION: acpi_rs_get_crs_method_data
496 *
Bob Mooreba494be2012-07-12 09:40:10 +0800497 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400498 * ret_buffer - Pointer to a buffer structure for the
499 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 *
501 * RETURN: Status
502 *
503 * DESCRIPTION: This function is called to get the _CRS value of an object
504 * contained in an object specified by the handle passed in
505 *
506 * If the function fails an appropriate status will be returned
507 * and the contents of the callers buffer is undefined.
508 *
509 ******************************************************************************/
510
511acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400512acpi_rs_get_crs_method_data(struct acpi_namespace_node *node,
513 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Len Brown4be44fc2005-08-05 00:44:28 -0400515 union acpi_operand_object *obj_desc;
516 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Bob Mooreb229cf92006-04-21 17:15:00 -0400518 ACPI_FUNCTION_TRACE(rs_get_crs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /* Parameters guaranteed valid by caller */
521
Robert Moore44f6c012005-04-18 22:49:35 -0400522 /* Execute the method, no parameters */
523
Bob Moore41195322006-05-26 16:36:00 -0400524 status = acpi_ut_evaluate_object(node, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400525 ACPI_BTYPE_BUFFER, &obj_desc);
526 if (ACPI_FAILURE(status)) {
527 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 /*
531 * Make the call to create a resource linked list from the
532 * byte stream buffer that comes back from the _CRS method
533 * execution.
534 */
Len Brown4be44fc2005-08-05 00:44:28 -0400535 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Bob Mooreba494be2012-07-12 09:40:10 +0800537 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Len Brown4be44fc2005-08-05 00:44:28 -0400539 acpi_ut_remove_reference(obj_desc);
540 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/*******************************************************************************
544 *
545 * FUNCTION: acpi_rs_get_prs_method_data
546 *
Bob Mooreba494be2012-07-12 09:40:10 +0800547 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400548 * ret_buffer - Pointer to a buffer structure for the
549 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
551 * RETURN: Status
552 *
553 * DESCRIPTION: This function is called to get the _PRS value of an object
554 * contained in an object specified by the handle passed in
555 *
556 * If the function fails an appropriate status will be returned
557 * and the contents of the callers buffer is undefined.
558 *
559 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#ifdef ACPI_FUTURE_USAGE
562acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400563acpi_rs_get_prs_method_data(struct acpi_namespace_node *node,
564 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Len Brown4be44fc2005-08-05 00:44:28 -0400566 union acpi_operand_object *obj_desc;
567 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Bob Mooreb229cf92006-04-21 17:15:00 -0400569 ACPI_FUNCTION_TRACE(rs_get_prs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* Parameters guaranteed valid by caller */
572
Robert Moore44f6c012005-04-18 22:49:35 -0400573 /* Execute the method, no parameters */
574
Bob Moore41195322006-05-26 16:36:00 -0400575 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400576 ACPI_BTYPE_BUFFER, &obj_desc);
577 if (ACPI_FAILURE(status)) {
578 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
581 /*
582 * Make the call to create a resource linked list from the
583 * byte stream buffer that comes back from the _CRS method
584 * execution.
585 */
Len Brown4be44fc2005-08-05 00:44:28 -0400586 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Bob Mooreba494be2012-07-12 09:40:10 +0800588 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 acpi_ut_remove_reference(obj_desc);
591 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
Len Brown4be44fc2005-08-05 00:44:28 -0400593#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595/*******************************************************************************
596 *
Bob Moorea91cdde2011-11-16 14:46:57 +0800597 * FUNCTION: acpi_rs_get_aei_method_data
598 *
Bob Mooreba494be2012-07-12 09:40:10 +0800599 * PARAMETERS: node - Device node
Bob Moorea91cdde2011-11-16 14:46:57 +0800600 * ret_buffer - Pointer to a buffer structure for the
601 * results
602 *
603 * RETURN: Status
604 *
605 * DESCRIPTION: This function is called to get the _AEI value of an object
606 * contained in an object specified by the handle passed in
607 *
608 * If the function fails an appropriate status will be returned
609 * and the contents of the callers buffer is undefined.
610 *
611 ******************************************************************************/
612
613acpi_status
614acpi_rs_get_aei_method_data(struct acpi_namespace_node *node,
615 struct acpi_buffer *ret_buffer)
616{
617 union acpi_operand_object *obj_desc;
618 acpi_status status;
619
620 ACPI_FUNCTION_TRACE(rs_get_aei_method_data);
621
622 /* Parameters guaranteed valid by caller */
623
624 /* Execute the method, no parameters */
625
626 status = acpi_ut_evaluate_object(node, METHOD_NAME__AEI,
627 ACPI_BTYPE_BUFFER, &obj_desc);
628 if (ACPI_FAILURE(status)) {
629 return_ACPI_STATUS(status);
630 }
631
632 /*
633 * Make the call to create a resource linked list from the
634 * byte stream buffer that comes back from the _CRS method
635 * execution.
636 */
637 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
638
Bob Mooreba494be2012-07-12 09:40:10 +0800639 /* On exit, we must delete the object returned by evaluateObject */
Bob Moorea91cdde2011-11-16 14:46:57 +0800640
641 acpi_ut_remove_reference(obj_desc);
642 return_ACPI_STATUS(status);
643}
644
645/*******************************************************************************
646 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * FUNCTION: acpi_rs_get_method_data
648 *
Bob Mooreba494be2012-07-12 09:40:10 +0800649 * PARAMETERS: handle - Handle to the containing object
650 * path - Path to method, relative to Handle
Bob Moore52fc0b02006-10-02 00:00:00 -0400651 * ret_buffer - Pointer to a buffer structure for the
652 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *
654 * RETURN: Status
655 *
656 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
657 * object contained in an object specified by the handle passed in
658 *
659 * If the function fails an appropriate status will be returned
660 * and the contents of the callers buffer is undefined.
661 *
662 ******************************************************************************/
663
664acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400665acpi_rs_get_method_data(acpi_handle handle,
666 char *path, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Len Brown4be44fc2005-08-05 00:44:28 -0400668 union acpi_operand_object *obj_desc;
669 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Bob Mooreb229cf92006-04-21 17:15:00 -0400671 ACPI_FUNCTION_TRACE(rs_get_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* Parameters guaranteed valid by caller */
674
Robert Moore44f6c012005-04-18 22:49:35 -0400675 /* Execute the method, no parameters */
676
Len Brown4be44fc2005-08-05 00:44:28 -0400677 status =
678 acpi_ut_evaluate_object(handle, path, ACPI_BTYPE_BUFFER, &obj_desc);
679 if (ACPI_FAILURE(status)) {
680 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
683 /*
684 * Make the call to create a resource linked list from the
685 * byte stream buffer that comes back from the method
686 * execution.
687 */
Len Brown4be44fc2005-08-05 00:44:28 -0400688 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* On exit, we must delete the object returned by evaluate_object */
691
Len Brown4be44fc2005-08-05 00:44:28 -0400692 acpi_ut_remove_reference(obj_desc);
693 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696/*******************************************************************************
697 *
698 * FUNCTION: acpi_rs_set_srs_method_data
699 *
Bob Mooreba494be2012-07-12 09:40:10 +0800700 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400701 * in_buffer - Pointer to a buffer structure of the
702 * parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 *
704 * RETURN: Status
705 *
706 * DESCRIPTION: This function is called to set the _SRS of an object contained
707 * in an object specified by the handle passed in
708 *
709 * If the function fails an appropriate status will be returned
710 * and the contents of the callers buffer is undefined.
711 *
Bob Moore41195322006-05-26 16:36:00 -0400712 * Note: Parameters guaranteed valid by caller
713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 ******************************************************************************/
715
716acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400717acpi_rs_set_srs_method_data(struct acpi_namespace_node *node,
718 struct acpi_buffer *in_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Bob Moore41195322006-05-26 16:36:00 -0400720 struct acpi_evaluate_info *info;
721 union acpi_operand_object *args[2];
Len Brown4be44fc2005-08-05 00:44:28 -0400722 acpi_status status;
723 struct acpi_buffer buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Bob Mooreb229cf92006-04-21 17:15:00 -0400725 ACPI_FUNCTION_TRACE(rs_set_srs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Bob Moore41195322006-05-26 16:36:00 -0400727 /* Allocate and initialize the evaluation information block */
728
729 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
730 if (!info) {
731 return_ACPI_STATUS(AE_NO_MEMORY);
732 }
733
734 info->prefix_node = node;
735 info->pathname = METHOD_NAME__SRS;
736 info->parameters = args;
Bob Moore41195322006-05-26 16:36:00 -0400737 info->flags = ACPI_IGNORE_RETURN_VALUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 /*
740 * The in_buffer parameter will point to a linked list of
Bob Moore41195322006-05-26 16:36:00 -0400741 * resource parameters. It needs to be formatted into a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * byte stream to be sent in as an input parameter to _SRS
743 *
744 * Convert the linked list into a byte stream
745 */
746 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400747 status = acpi_rs_create_aml_resources(in_buffer->pointer, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400748 if (ACPI_FAILURE(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400749 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
Bob Moore41195322006-05-26 16:36:00 -0400752 /* Create and initialize the method parameter object */
Robert Moore44f6c012005-04-18 22:49:35 -0400753
Bob Moore41195322006-05-26 16:36:00 -0400754 args[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
755 if (!args[0]) {
756 /*
757 * Must free the buffer allocated above (otherwise it is freed
758 * later)
759 */
760 ACPI_FREE(buffer.pointer);
761 status = AE_NO_MEMORY;
762 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Bob Moore41195322006-05-26 16:36:00 -0400765 args[0]->buffer.length = (u32) buffer.length;
766 args[0]->buffer.pointer = buffer.pointer;
767 args[0]->common.flags = AOPOBJ_DATA_VALID;
768 args[1] = NULL;
Robert Moore44f6c012005-04-18 22:49:35 -0400769
Bob Moore41195322006-05-26 16:36:00 -0400770 /* Execute the method, no return value is expected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Bob Moore41195322006-05-26 16:36:00 -0400772 status = acpi_ns_evaluate(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Bob Moore41195322006-05-26 16:36:00 -0400774 /* Clean up and return the status from acpi_ns_evaluate */
Robert Moore44f6c012005-04-18 22:49:35 -0400775
Bob Moore41195322006-05-26 16:36:00 -0400776 acpi_ut_remove_reference(args[0]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400777
Bob Moore41195322006-05-26 16:36:00 -0400778 cleanup:
779 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400780 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}