blob: 52b024df00524bffae3bb1117cffa0d3dc31eb3b [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/*
David E. Box82a80942015-02-05 15:20:45 +08008 * Copyright (C) 2000 - 2015, 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
Lv Zheng9c0d7932012-12-19 05:37:21 +0000111 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:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000150
Bob Moore4fa46162015-07-01 14:45:11 +0800151 memcpy(destination, source, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400152 return;
153
154 /*
155 * 16-, 32-, and 64-bit cases must use the move macros that perform
Lucas De Marchi58f87ed2010-09-07 12:49:45 -0400156 * endian conversion and/or accommodate hardware that cannot perform
Bob Moore08978312005-10-21 00:00:00 -0400157 * misaligned memory transfers
158 */
159 case ACPI_RSC_MOVE16:
Lin Minge0fe0a82011-11-16 14:38:13 +0800160 case ACPI_RSC_MOVE_GPIO_PIN:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000161
Bob Moorec51a4de2005-11-17 13:07:00 -0500162 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i],
163 &ACPI_CAST_PTR(u16, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400164 break;
165
Bob Moore08978312005-10-21 00:00:00 -0400166 case ACPI_RSC_MOVE32:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000167
Bob Moorec51a4de2005-11-17 13:07:00 -0500168 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i],
169 &ACPI_CAST_PTR(u32, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400170 break;
171
Bob Moore08978312005-10-21 00:00:00 -0400172 case ACPI_RSC_MOVE64:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000173
Bob Moorec51a4de2005-11-17 13:07:00 -0500174 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i],
175 &ACPI_CAST_PTR(u64, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400176 break;
177
178 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000179
Bob Moore50eca3e2005-09-30 19:03:00 -0400180 return;
181 }
182 }
183}
184
185/*******************************************************************************
186 *
Bob Moore08978312005-10-21 00:00:00 -0400187 * FUNCTION: acpi_rs_set_resource_length
Bob Moore50eca3e2005-09-30 19:03:00 -0400188 *
Bob Moore08978312005-10-21 00:00:00 -0400189 * PARAMETERS: total_length - Length of the AML descriptor, including
190 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800191 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400192 *
Bob Moore08978312005-10-21 00:00:00 -0400193 * RETURN: None
Bob Moore50eca3e2005-09-30 19:03:00 -0400194 *
Bob Moore08978312005-10-21 00:00:00 -0400195 * DESCRIPTION: Set the resource_length field of an AML
196 * resource descriptor, both Large and Small descriptors are
197 * supported automatically. Note: Descriptor Type field must
198 * be valid.
Bob Moore50eca3e2005-09-30 19:03:00 -0400199 *
200 ******************************************************************************/
201
Bob Moore08978312005-10-21 00:00:00 -0400202void
203acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
204 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400205{
Bob Moore08978312005-10-21 00:00:00 -0400206 acpi_rs_length resource_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400207
208 ACPI_FUNCTION_ENTRY();
209
Bob Moore96db2552005-11-02 00:00:00 -0500210 /* Length is the total descriptor length minus the header length */
211
212 resource_length = (acpi_rs_length)
213 (total_length - acpi_ut_get_resource_header_length(aml));
214
215 /* Length is stored differently for large and small descriptors */
Bob Moore50eca3e2005-09-30 19:03:00 -0400216
Bob Moore08978312005-10-21 00:00:00 -0400217 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400218
Bob Moore96db2552005-11-02 00:00:00 -0500219 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
Bob Moore08978312005-10-21 00:00:00 -0400220
221 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
222 &resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400223 } else {
Bob Moore96db2552005-11-02 00:00:00 -0500224 /* Small descriptor -- bits 2:0 of byte 0 contain the length */
Bob Moore08978312005-10-21 00:00:00 -0400225
226 aml->small_header.descriptor_type = (u8)
227
228 /* Clear any existing length, preserving descriptor type bits */
229 ((aml->small_header.
230 descriptor_type & ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK)
231
232 | resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400233 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400234}
235
236/*******************************************************************************
237 *
238 * FUNCTION: acpi_rs_set_resource_header
239 *
240 * PARAMETERS: descriptor_type - Byte to be inserted as the type
241 * total_length - Length of the AML descriptor, including
242 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800243 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400244 *
245 * RETURN: None
246 *
247 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
248 * resource descriptor, both Large and Small descriptors are
249 * supported automatically
250 *
251 ******************************************************************************/
252
253void
254acpi_rs_set_resource_header(u8 descriptor_type,
Bob Moore08978312005-10-21 00:00:00 -0400255 acpi_rsdesc_size total_length,
256 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400257{
Bob Moore50eca3e2005-09-30 19:03:00 -0400258 ACPI_FUNCTION_ENTRY();
259
Bob Moore96db2552005-11-02 00:00:00 -0500260 /* Set the Resource Type */
Bob Moore50eca3e2005-09-30 19:03:00 -0400261
262 aml->small_header.descriptor_type = descriptor_type;
263
Bob Moore08978312005-10-21 00:00:00 -0400264 /* Set the Resource Length */
Bob Moore50eca3e2005-09-30 19:03:00 -0400265
Bob Moore08978312005-10-21 00:00:00 -0400266 acpi_rs_set_resource_length(total_length, aml);
Bob Moore50eca3e2005-09-30 19:03:00 -0400267}
268
269/*******************************************************************************
270 *
271 * FUNCTION: acpi_rs_strcpy
272 *
Bob Mooreba494be2012-07-12 09:40:10 +0800273 * PARAMETERS: destination - Pointer to the destination string
274 * source - Pointer to the source string
Bob Moore50eca3e2005-09-30 19:03:00 -0400275 *
276 * RETURN: String length, including NULL terminator
277 *
278 * DESCRIPTION: Local string copy that returns the string length, saving a
279 * strcpy followed by a strlen.
280 *
281 ******************************************************************************/
282
283static u16 acpi_rs_strcpy(char *destination, char *source)
284{
285 u16 i;
286
287 ACPI_FUNCTION_ENTRY();
288
289 for (i = 0; source[i]; i++) {
290 destination[i] = source[i];
291 }
292
293 destination[i] = 0;
294
295 /* Return string length including the NULL terminator */
296
297 return ((u16) (i + 1));
298}
299
300/*******************************************************************************
301 *
302 * FUNCTION: acpi_rs_get_resource_source
303 *
304 * PARAMETERS: resource_length - Length field of the descriptor
305 * minimum_length - Minimum length of the descriptor (minus
306 * any optional fields)
307 * resource_source - Where the resource_source is returned
Bob Mooreba494be2012-07-12 09:40:10 +0800308 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400309 * string_ptr - (optional) where to store the actual
310 * resource_source string
311 *
Bob Mooreea936b72006-02-17 00:00:00 -0500312 * RETURN: Length of the string plus NULL terminator, rounded up to native
313 * word boundary
Bob Moore50eca3e2005-09-30 19:03:00 -0400314 *
315 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
316 * to an internal resource descriptor
317 *
318 ******************************************************************************/
319
Bob Moore08978312005-10-21 00:00:00 -0400320acpi_rs_length
321acpi_rs_get_resource_source(acpi_rs_length resource_length,
322 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400323 struct acpi_resource_source * resource_source,
324 union aml_resource * aml, char *string_ptr)
325{
Bob Moore08978312005-10-21 00:00:00 -0400326 acpi_rsdesc_size total_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400327 u8 *aml_resource_source;
328
329 ACPI_FUNCTION_ENTRY();
330
331 total_length =
332 resource_length + sizeof(struct aml_resource_large_header);
Bob Moorec51a4de2005-11-17 13:07:00 -0500333 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400334
335 /*
336 * resource_source is present if the length of the descriptor is longer than
337 * the minimum length.
338 *
339 * Note: Some resource descriptors will have an additional null, so
340 * we add 1 to the minimum length.
341 */
Bob Moore08978312005-10-21 00:00:00 -0400342 if (total_length > (acpi_rsdesc_size) (minimum_length + 1)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400343
Bob Moore50eca3e2005-09-30 19:03:00 -0400344 /* Get the resource_source_index */
345
346 resource_source->index = aml_resource_source[0];
347
348 resource_source->string_ptr = string_ptr;
349 if (!string_ptr) {
350 /*
351 * String destination pointer is not specified; Set the String
352 * pointer to the end of the current resource_source structure.
353 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500354 resource_source->string_ptr =
355 ACPI_ADD_PTR(char, resource_source,
356 sizeof(struct acpi_resource_source));
Bob Moore50eca3e2005-09-30 19:03:00 -0400357 }
358
Bob Moore08978312005-10-21 00:00:00 -0400359 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500360 * In order for the Resource length to be a multiple of the native
361 * word, calculate the length of the string (+1 for NULL terminator)
362 * and expand to the next word multiple.
Bob Moore08978312005-10-21 00:00:00 -0400363 *
364 * Zero the entire area of the buffer.
365 */
Lv Zheng3e8214e2012-12-19 05:37:15 +0000366 total_length =
Bob Moore4fa46162015-07-01 14:45:11 +0800367 (u32)strlen(ACPI_CAST_PTR(char, &aml_resource_source[1])) +
Lv Zheng3e8214e2012-12-19 05:37:15 +0000368 1;
Lv Zheng52c1d802015-06-19 11:38:16 +0800369 total_length = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(total_length);
Bob Moore52fc0b02006-10-02 00:00:00 -0400370
Bob Moore4fa46162015-07-01 14:45:11 +0800371 memset(resource_source->string_ptr, 0, total_length);
Bob Moore08978312005-10-21 00:00:00 -0400372
Bob Moore50eca3e2005-09-30 19:03:00 -0400373 /* Copy the resource_source string to the destination */
374
375 resource_source->string_length =
376 acpi_rs_strcpy(resource_source->string_ptr,
Bob Moore52fc0b02006-10-02 00:00:00 -0400377 ACPI_CAST_PTR(char,
378 &aml_resource_source[1]));
Bob Moore50eca3e2005-09-30 19:03:00 -0400379
Bob Moore08978312005-10-21 00:00:00 -0400380 return ((acpi_rs_length) total_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400381 }
Bob Moore96db2552005-11-02 00:00:00 -0500382
383 /* resource_source is not present */
384
385 resource_source->index = 0;
386 resource_source->string_length = 0;
387 resource_source->string_ptr = NULL;
388 return (0);
Bob Moore50eca3e2005-09-30 19:03:00 -0400389}
390
391/*******************************************************************************
392 *
393 * FUNCTION: acpi_rs_set_resource_source
394 *
Bob Mooreba494be2012-07-12 09:40:10 +0800395 * PARAMETERS: aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400396 * minimum_length - Minimum length of the descriptor (minus
397 * any optional fields)
398 * resource_source - Internal resource_source
399
400 *
401 * RETURN: Total length of the AML descriptor
402 *
Bob Moore08978312005-10-21 00:00:00 -0400403 * DESCRIPTION: Convert an optional resource_source from internal format to a
Bob Moore50eca3e2005-09-30 19:03:00 -0400404 * raw AML resource descriptor
405 *
406 ******************************************************************************/
407
Bob Moore08978312005-10-21 00:00:00 -0400408acpi_rsdesc_size
Bob Moore50eca3e2005-09-30 19:03:00 -0400409acpi_rs_set_resource_source(union aml_resource * aml,
Bob Moore08978312005-10-21 00:00:00 -0400410 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400411 struct acpi_resource_source * resource_source)
412{
413 u8 *aml_resource_source;
Bob Moore08978312005-10-21 00:00:00 -0400414 acpi_rsdesc_size descriptor_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400415
416 ACPI_FUNCTION_ENTRY();
417
418 descriptor_length = minimum_length;
419
420 /* Non-zero string length indicates presence of a resource_source */
421
422 if (resource_source->string_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400423
Bob Moore50eca3e2005-09-30 19:03:00 -0400424 /* Point to the end of the AML descriptor */
425
Bob Moorec51a4de2005-11-17 13:07:00 -0500426 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400427
428 /* Copy the resource_source_index */
429
430 aml_resource_source[0] = (u8) resource_source->index;
431
432 /* Copy the resource_source string */
433
Bob Moore4fa46162015-07-01 14:45:11 +0800434 strcpy(ACPI_CAST_PTR(char, &aml_resource_source[1]),
435 resource_source->string_ptr);
Bob Moore50eca3e2005-09-30 19:03:00 -0400436
437 /*
438 * Add the length of the string (+ 1 for null terminator) to the
439 * final descriptor length
440 */
441 descriptor_length +=
Bob Moore08978312005-10-21 00:00:00 -0400442 ((acpi_rsdesc_size) resource_source->string_length + 1);
Bob Moore50eca3e2005-09-30 19:03:00 -0400443 }
444
445 /* Return the new total length of the AML descriptor */
446
447 return (descriptor_length);
448}
449
450/*******************************************************************************
451 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * FUNCTION: acpi_rs_get_prt_method_data
453 *
Bob Mooreba494be2012-07-12 09:40:10 +0800454 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400455 * ret_buffer - Pointer to a buffer structure for the
456 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
458 * RETURN: Status
459 *
460 * DESCRIPTION: This function is called to get the _PRT value of an object
461 * contained in an object specified by the handle passed in
462 *
463 * If the function fails an appropriate status will be returned
464 * and the contents of the callers buffer is undefined.
465 *
466 ******************************************************************************/
Bob Moore50eca3e2005-09-30 19:03:00 -0400467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400469acpi_rs_get_prt_method_data(struct acpi_namespace_node * node,
470 struct acpi_buffer * ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Len Brown4be44fc2005-08-05 00:44:28 -0400472 union acpi_operand_object *obj_desc;
473 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Bob Mooreb229cf92006-04-21 17:15:00 -0400475 ACPI_FUNCTION_TRACE(rs_get_prt_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /* Parameters guaranteed valid by caller */
478
Robert Moore44f6c012005-04-18 22:49:35 -0400479 /* Execute the method, no parameters */
480
Bob Moore41195322006-05-26 16:36:00 -0400481 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRT,
Len Brown4be44fc2005-08-05 00:44:28 -0400482 ACPI_BTYPE_PACKAGE, &obj_desc);
483 if (ACPI_FAILURE(status)) {
484 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 /*
488 * Create a resource linked list from the byte stream buffer that comes
489 * back from the _CRS method execution.
490 */
Len Brown4be44fc2005-08-05 00:44:28 -0400491 status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* On exit, we must delete the object returned by evaluate_object */
494
Len Brown4be44fc2005-08-05 00:44:28 -0400495 acpi_ut_remove_reference(obj_desc);
496 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*******************************************************************************
500 *
501 * FUNCTION: acpi_rs_get_crs_method_data
502 *
Bob Mooreba494be2012-07-12 09:40:10 +0800503 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400504 * ret_buffer - Pointer to a buffer structure for the
505 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 *
507 * RETURN: Status
508 *
509 * DESCRIPTION: This function is called to get the _CRS value of an object
510 * contained in an object specified by the handle passed in
511 *
512 * If the function fails an appropriate status will be returned
513 * and the contents of the callers buffer is undefined.
514 *
515 ******************************************************************************/
516
517acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400518acpi_rs_get_crs_method_data(struct acpi_namespace_node *node,
519 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Len Brown4be44fc2005-08-05 00:44:28 -0400521 union acpi_operand_object *obj_desc;
522 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Bob Mooreb229cf92006-04-21 17:15:00 -0400524 ACPI_FUNCTION_TRACE(rs_get_crs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 /* Parameters guaranteed valid by caller */
527
Robert Moore44f6c012005-04-18 22:49:35 -0400528 /* Execute the method, no parameters */
529
Bob Moore41195322006-05-26 16:36:00 -0400530 status = acpi_ut_evaluate_object(node, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400531 ACPI_BTYPE_BUFFER, &obj_desc);
532 if (ACPI_FAILURE(status)) {
533 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
536 /*
537 * Make the call to create a resource linked list from the
538 * byte stream buffer that comes back from the _CRS method
539 * execution.
540 */
Len Brown4be44fc2005-08-05 00:44:28 -0400541 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Bob Mooreba494be2012-07-12 09:40:10 +0800543 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Len Brown4be44fc2005-08-05 00:44:28 -0400545 acpi_ut_remove_reference(obj_desc);
546 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*******************************************************************************
550 *
551 * FUNCTION: acpi_rs_get_prs_method_data
552 *
Bob Mooreba494be2012-07-12 09:40:10 +0800553 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400554 * ret_buffer - Pointer to a buffer structure for the
555 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
557 * RETURN: Status
558 *
559 * DESCRIPTION: This function is called to get the _PRS value of an object
560 * contained in an object specified by the handle passed in
561 *
562 * If the function fails an appropriate status will be returned
563 * and the contents of the callers buffer is undefined.
564 *
565 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567#ifdef ACPI_FUTURE_USAGE
568acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400569acpi_rs_get_prs_method_data(struct acpi_namespace_node *node,
570 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Len Brown4be44fc2005-08-05 00:44:28 -0400572 union acpi_operand_object *obj_desc;
573 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Bob Mooreb229cf92006-04-21 17:15:00 -0400575 ACPI_FUNCTION_TRACE(rs_get_prs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 /* Parameters guaranteed valid by caller */
578
Robert Moore44f6c012005-04-18 22:49:35 -0400579 /* Execute the method, no parameters */
580
Bob Moore41195322006-05-26 16:36:00 -0400581 status = acpi_ut_evaluate_object(node, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400582 ACPI_BTYPE_BUFFER, &obj_desc);
583 if (ACPI_FAILURE(status)) {
584 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
587 /*
588 * Make the call to create a resource linked list from the
589 * byte stream buffer that comes back from the _CRS method
590 * execution.
591 */
Len Brown4be44fc2005-08-05 00:44:28 -0400592 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Bob Mooreba494be2012-07-12 09:40:10 +0800594 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Len Brown4be44fc2005-08-05 00:44:28 -0400596 acpi_ut_remove_reference(obj_desc);
597 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
Len Brown4be44fc2005-08-05 00:44:28 -0400599#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601/*******************************************************************************
602 *
Bob Moorea91cdde2011-11-16 14:46:57 +0800603 * FUNCTION: acpi_rs_get_aei_method_data
604 *
Bob Mooreba494be2012-07-12 09:40:10 +0800605 * PARAMETERS: node - Device node
Bob Moorea91cdde2011-11-16 14:46:57 +0800606 * ret_buffer - Pointer to a buffer structure for the
607 * results
608 *
609 * RETURN: Status
610 *
611 * DESCRIPTION: This function is called to get the _AEI value of an object
612 * contained in an object specified by the handle passed in
613 *
614 * If the function fails an appropriate status will be returned
615 * and the contents of the callers buffer is undefined.
616 *
617 ******************************************************************************/
618
619acpi_status
620acpi_rs_get_aei_method_data(struct acpi_namespace_node *node,
621 struct acpi_buffer *ret_buffer)
622{
623 union acpi_operand_object *obj_desc;
624 acpi_status status;
625
626 ACPI_FUNCTION_TRACE(rs_get_aei_method_data);
627
628 /* Parameters guaranteed valid by caller */
629
630 /* Execute the method, no parameters */
631
632 status = acpi_ut_evaluate_object(node, METHOD_NAME__AEI,
633 ACPI_BTYPE_BUFFER, &obj_desc);
634 if (ACPI_FAILURE(status)) {
635 return_ACPI_STATUS(status);
636 }
637
638 /*
639 * Make the call to create a resource linked list from the
640 * byte stream buffer that comes back from the _CRS method
641 * execution.
642 */
643 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
644
Bob Mooreba494be2012-07-12 09:40:10 +0800645 /* On exit, we must delete the object returned by evaluateObject */
Bob Moorea91cdde2011-11-16 14:46:57 +0800646
647 acpi_ut_remove_reference(obj_desc);
648 return_ACPI_STATUS(status);
649}
650
651/*******************************************************************************
652 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * FUNCTION: acpi_rs_get_method_data
654 *
Bob Mooreba494be2012-07-12 09:40:10 +0800655 * PARAMETERS: handle - Handle to the containing object
656 * path - Path to method, relative to Handle
Bob Moore52fc0b02006-10-02 00:00:00 -0400657 * ret_buffer - Pointer to a buffer structure for the
658 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 *
660 * RETURN: Status
661 *
662 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
663 * object contained in an object specified by the handle passed in
664 *
665 * If the function fails an appropriate status will be returned
666 * and the contents of the callers buffer is undefined.
667 *
668 ******************************************************************************/
669
670acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400671acpi_rs_get_method_data(acpi_handle handle,
672 char *path, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Len Brown4be44fc2005-08-05 00:44:28 -0400674 union acpi_operand_object *obj_desc;
675 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Bob Mooreb229cf92006-04-21 17:15:00 -0400677 ACPI_FUNCTION_TRACE(rs_get_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* Parameters guaranteed valid by caller */
680
Robert Moore44f6c012005-04-18 22:49:35 -0400681 /* Execute the method, no parameters */
682
Len Brown4be44fc2005-08-05 00:44:28 -0400683 status =
Rafael J. Wysocki0fdce472012-12-31 00:05:58 +0000684 acpi_ut_evaluate_object(ACPI_CAST_PTR
685 (struct acpi_namespace_node, handle), path,
686 ACPI_BTYPE_BUFFER, &obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400687 if (ACPI_FAILURE(status)) {
688 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
691 /*
692 * Make the call to create a resource linked list from the
693 * byte stream buffer that comes back from the method
694 * execution.
695 */
Len Brown4be44fc2005-08-05 00:44:28 -0400696 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* On exit, we must delete the object returned by evaluate_object */
699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 acpi_ut_remove_reference(obj_desc);
701 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704/*******************************************************************************
705 *
706 * FUNCTION: acpi_rs_set_srs_method_data
707 *
Bob Mooreba494be2012-07-12 09:40:10 +0800708 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400709 * in_buffer - Pointer to a buffer structure of the
710 * parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 *
712 * RETURN: Status
713 *
714 * DESCRIPTION: This function is called to set the _SRS of an object contained
715 * in an object specified by the handle passed in
716 *
717 * If the function fails an appropriate status will be returned
718 * and the contents of the callers buffer is undefined.
719 *
Bob Moore41195322006-05-26 16:36:00 -0400720 * Note: Parameters guaranteed valid by caller
721 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 ******************************************************************************/
723
724acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400725acpi_rs_set_srs_method_data(struct acpi_namespace_node *node,
726 struct acpi_buffer *in_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Bob Moore41195322006-05-26 16:36:00 -0400728 struct acpi_evaluate_info *info;
729 union acpi_operand_object *args[2];
Len Brown4be44fc2005-08-05 00:44:28 -0400730 acpi_status status;
731 struct acpi_buffer buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Bob Mooreb229cf92006-04-21 17:15:00 -0400733 ACPI_FUNCTION_TRACE(rs_set_srs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Bob Moore41195322006-05-26 16:36:00 -0400735 /* Allocate and initialize the evaluation information block */
736
737 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
738 if (!info) {
739 return_ACPI_STATUS(AE_NO_MEMORY);
740 }
741
742 info->prefix_node = node;
Bob Moore29a241c2013-05-30 10:00:01 +0800743 info->relative_pathname = METHOD_NAME__SRS;
Bob Moore41195322006-05-26 16:36:00 -0400744 info->parameters = args;
Bob Moore41195322006-05-26 16:36:00 -0400745 info->flags = ACPI_IGNORE_RETURN_VALUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 /*
748 * The in_buffer parameter will point to a linked list of
Bob Moore41195322006-05-26 16:36:00 -0400749 * resource parameters. It needs to be formatted into a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * byte stream to be sent in as an input parameter to _SRS
751 *
752 * Convert the linked list into a byte stream
753 */
754 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
Lv Zheng9a0a3592013-11-21 12:17:34 +0800755 status = acpi_rs_create_aml_resources(in_buffer, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400756 if (ACPI_FAILURE(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400757 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759
Bob Moore41195322006-05-26 16:36:00 -0400760 /* Create and initialize the method parameter object */
Robert Moore44f6c012005-04-18 22:49:35 -0400761
Bob Moore41195322006-05-26 16:36:00 -0400762 args[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
763 if (!args[0]) {
764 /*
765 * Must free the buffer allocated above (otherwise it is freed
766 * later)
767 */
768 ACPI_FREE(buffer.pointer);
769 status = AE_NO_MEMORY;
770 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
Bob Moore41195322006-05-26 16:36:00 -0400773 args[0]->buffer.length = (u32) buffer.length;
774 args[0]->buffer.pointer = buffer.pointer;
775 args[0]->common.flags = AOPOBJ_DATA_VALID;
776 args[1] = NULL;
Robert Moore44f6c012005-04-18 22:49:35 -0400777
Bob Moore41195322006-05-26 16:36:00 -0400778 /* Execute the method, no return value is expected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Bob Moore41195322006-05-26 16:36:00 -0400780 status = acpi_ns_evaluate(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Bob Moore41195322006-05-26 16:36:00 -0400782 /* Clean up and return the status from acpi_ns_evaluate */
Robert Moore44f6c012005-04-18 22:49:35 -0400783
Bob Moore41195322006-05-26 16:36:00 -0400784 acpi_ut_remove_reference(args[0]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400785
Lv Zheng10622bf2013-10-29 09:30:02 +0800786cleanup:
Bob Moore41195322006-05-26 16:36:00 -0400787 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400788 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}