blob: 8c1a68629b75792a27fe75b3d613d4749574a70f [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*******************************************************************************
3 *
4 * Module Name: rsutils - Utilities for the resource manager
5 *
6 ******************************************************************************/
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -05009#include "accommon.h"
10#include "acnamesp.h"
11#include "acresrc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040014ACPI_MODULE_NAME("rsutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*******************************************************************************
17 *
Bob Moore08978312005-10-21 00:00:00 -040018 * FUNCTION: acpi_rs_decode_bitmask
19 *
Bob Mooreba494be2012-07-12 09:40:10 +080020 * PARAMETERS: mask - Bitmask to decode
21 * list - Where the converted list is returned
Bob Moore08978312005-10-21 00:00:00 -040022 *
23 * RETURN: Count of bits set (length of list)
24 *
25 * DESCRIPTION: Convert a bit mask into a list of values
26 *
27 ******************************************************************************/
28u8 acpi_rs_decode_bitmask(u16 mask, u8 * list)
29{
Bob Moore67a119f2008-06-10 13:42:13 +080030 u8 i;
Bob Moore08978312005-10-21 00:00:00 -040031 u8 bit_count;
32
Bob Moore96db2552005-11-02 00:00:00 -050033 ACPI_FUNCTION_ENTRY();
34
Bob Moore08978312005-10-21 00:00:00 -040035 /* Decode the mask bits */
36
37 for (i = 0, bit_count = 0; mask; i++) {
38 if (mask & 0x0001) {
Bob Moore67a119f2008-06-10 13:42:13 +080039 list[bit_count] = i;
Bob Moore08978312005-10-21 00:00:00 -040040 bit_count++;
41 }
42
43 mask >>= 1;
44 }
45
46 return (bit_count);
47}
48
49/*******************************************************************************
50 *
51 * FUNCTION: acpi_rs_encode_bitmask
52 *
Bob Mooreba494be2012-07-12 09:40:10 +080053 * PARAMETERS: list - List of values to encode
54 * count - Length of list
Bob Moore08978312005-10-21 00:00:00 -040055 *
56 * RETURN: Encoded bitmask
57 *
58 * DESCRIPTION: Convert a list of values to an encoded bitmask
59 *
60 ******************************************************************************/
61
62u16 acpi_rs_encode_bitmask(u8 * list, u8 count)
63{
Bob Moore67a119f2008-06-10 13:42:13 +080064 u32 i;
65 u16 mask;
Bob Moore08978312005-10-21 00:00:00 -040066
Bob Moore96db2552005-11-02 00:00:00 -050067 ACPI_FUNCTION_ENTRY();
68
Bob Moore08978312005-10-21 00:00:00 -040069 /* Encode the list into a single bitmask */
70
71 for (i = 0, mask = 0; i < count; i++) {
Bob Moore1d18c052008-04-10 19:06:40 +040072 mask |= (0x1 << list[i]);
Bob Moore08978312005-10-21 00:00:00 -040073 }
74
Lv Zheng9c0d7932012-12-19 05:37:21 +000075 return (mask);
Bob Moore08978312005-10-21 00:00:00 -040076}
77
78/*******************************************************************************
79 *
Bob Moore50eca3e2005-09-30 19:03:00 -040080 * FUNCTION: acpi_rs_move_data
81 *
Bob Mooreba494be2012-07-12 09:40:10 +080082 * PARAMETERS: destination - Pointer to the destination descriptor
83 * source - Pointer to the source descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -040084 * item_count - How many items to move
85 * move_type - Byte width
86 *
87 * RETURN: None
88 *
89 * DESCRIPTION: Move multiple data items from one descriptor to another. Handles
90 * alignment issues and endian issues if necessary, as configured
91 * via the ACPI_MOVE_* macros. (This is why a memcpy is not used)
92 *
93 ******************************************************************************/
Bob Moore08978312005-10-21 00:00:00 -040094
Bob Moore50eca3e2005-09-30 19:03:00 -040095void
96acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type)
97{
Bob Moore67a119f2008-06-10 13:42:13 +080098 u32 i;
Bob Moore50eca3e2005-09-30 19:03:00 -040099
Bob Moore96db2552005-11-02 00:00:00 -0500100 ACPI_FUNCTION_ENTRY();
101
Bob Moore50eca3e2005-09-30 19:03:00 -0400102 /* One move per item */
103
104 for (i = 0; i < item_count; i++) {
105 switch (move_type) {
Bob Moore08978312005-10-21 00:00:00 -0400106 /*
107 * For the 8-bit case, we can perform the move all at once
108 * since there are no alignment or endian issues
109 */
110 case ACPI_RSC_MOVE8:
Lin Minge0fe0a82011-11-16 14:38:13 +0800111 case ACPI_RSC_MOVE_GPIO_RES:
112 case ACPI_RSC_MOVE_SERIAL_VEN:
113 case ACPI_RSC_MOVE_SERIAL_RES:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000114
Bob Moore4fa46162015-07-01 14:45:11 +0800115 memcpy(destination, source, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400116 return;
117
118 /*
119 * 16-, 32-, and 64-bit cases must use the move macros that perform
Lucas De Marchi58f87ed2010-09-07 12:49:45 -0400120 * endian conversion and/or accommodate hardware that cannot perform
Bob Moore08978312005-10-21 00:00:00 -0400121 * misaligned memory transfers
122 */
123 case ACPI_RSC_MOVE16:
Lin Minge0fe0a82011-11-16 14:38:13 +0800124 case ACPI_RSC_MOVE_GPIO_PIN:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000125
Bob Moorec51a4de2005-11-17 13:07:00 -0500126 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i],
127 &ACPI_CAST_PTR(u16, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400128 break;
129
Bob Moore08978312005-10-21 00:00:00 -0400130 case ACPI_RSC_MOVE32:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000131
Bob Moorec51a4de2005-11-17 13:07:00 -0500132 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i],
133 &ACPI_CAST_PTR(u32, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400134 break;
135
Bob Moore08978312005-10-21 00:00:00 -0400136 case ACPI_RSC_MOVE64:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000137
Bob Moorec51a4de2005-11-17 13:07:00 -0500138 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i],
139 &ACPI_CAST_PTR(u64, source)[i]);
Bob Moore50eca3e2005-09-30 19:03:00 -0400140 break;
141
142 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000143
Bob Moore50eca3e2005-09-30 19:03:00 -0400144 return;
145 }
146 }
147}
148
149/*******************************************************************************
150 *
Bob Moore08978312005-10-21 00:00:00 -0400151 * FUNCTION: acpi_rs_set_resource_length
Bob Moore50eca3e2005-09-30 19:03:00 -0400152 *
Bob Moore08978312005-10-21 00:00:00 -0400153 * PARAMETERS: total_length - Length of the AML descriptor, including
154 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800155 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400156 *
Bob Moore08978312005-10-21 00:00:00 -0400157 * RETURN: None
Bob Moore50eca3e2005-09-30 19:03:00 -0400158 *
Bob Moore08978312005-10-21 00:00:00 -0400159 * DESCRIPTION: Set the resource_length field of an AML
160 * resource descriptor, both Large and Small descriptors are
161 * supported automatically. Note: Descriptor Type field must
162 * be valid.
Bob Moore50eca3e2005-09-30 19:03:00 -0400163 *
164 ******************************************************************************/
165
Bob Moore08978312005-10-21 00:00:00 -0400166void
167acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
168 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400169{
Bob Moore08978312005-10-21 00:00:00 -0400170 acpi_rs_length resource_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400171
172 ACPI_FUNCTION_ENTRY();
173
Bob Moore96db2552005-11-02 00:00:00 -0500174 /* Length is the total descriptor length minus the header length */
175
176 resource_length = (acpi_rs_length)
177 (total_length - acpi_ut_get_resource_header_length(aml));
178
179 /* Length is stored differently for large and small descriptors */
Bob Moore50eca3e2005-09-30 19:03:00 -0400180
Bob Moore08978312005-10-21 00:00:00 -0400181 if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400182
Bob Moore96db2552005-11-02 00:00:00 -0500183 /* Large descriptor -- bytes 1-2 contain the 16-bit length */
Bob Moore08978312005-10-21 00:00:00 -0400184
185 ACPI_MOVE_16_TO_16(&aml->large_header.resource_length,
186 &resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400187 } else {
Bob Moore1fad8732015-12-29 13:54:36 +0800188 /*
189 * Small descriptor -- bits 2:0 of byte 0 contain the length
190 * Clear any existing length, preserving descriptor type bits
191 */
Bob Moore08978312005-10-21 00:00:00 -0400192 aml->small_header.descriptor_type = (u8)
Bob Moore1fad8732015-12-29 13:54:36 +0800193 ((aml->small_header.descriptor_type &
194 ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK)
Bob Moore08978312005-10-21 00:00:00 -0400195 | resource_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400196 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400197}
198
199/*******************************************************************************
200 *
201 * FUNCTION: acpi_rs_set_resource_header
202 *
203 * PARAMETERS: descriptor_type - Byte to be inserted as the type
204 * total_length - Length of the AML descriptor, including
205 * the header and length fields.
Bob Mooreba494be2012-07-12 09:40:10 +0800206 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400207 *
208 * RETURN: None
209 *
210 * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML
211 * resource descriptor, both Large and Small descriptors are
212 * supported automatically
213 *
214 ******************************************************************************/
215
216void
217acpi_rs_set_resource_header(u8 descriptor_type,
Bob Moore08978312005-10-21 00:00:00 -0400218 acpi_rsdesc_size total_length,
219 union aml_resource *aml)
Bob Moore50eca3e2005-09-30 19:03:00 -0400220{
Bob Moore50eca3e2005-09-30 19:03:00 -0400221 ACPI_FUNCTION_ENTRY();
222
Bob Moore96db2552005-11-02 00:00:00 -0500223 /* Set the Resource Type */
Bob Moore50eca3e2005-09-30 19:03:00 -0400224
225 aml->small_header.descriptor_type = descriptor_type;
226
Bob Moore08978312005-10-21 00:00:00 -0400227 /* Set the Resource Length */
Bob Moore50eca3e2005-09-30 19:03:00 -0400228
Bob Moore08978312005-10-21 00:00:00 -0400229 acpi_rs_set_resource_length(total_length, aml);
Bob Moore50eca3e2005-09-30 19:03:00 -0400230}
231
232/*******************************************************************************
233 *
234 * FUNCTION: acpi_rs_strcpy
235 *
Bob Mooreba494be2012-07-12 09:40:10 +0800236 * PARAMETERS: destination - Pointer to the destination string
237 * source - Pointer to the source string
Bob Moore50eca3e2005-09-30 19:03:00 -0400238 *
239 * RETURN: String length, including NULL terminator
240 *
241 * DESCRIPTION: Local string copy that returns the string length, saving a
242 * strcpy followed by a strlen.
243 *
244 ******************************************************************************/
245
246static u16 acpi_rs_strcpy(char *destination, char *source)
247{
248 u16 i;
249
250 ACPI_FUNCTION_ENTRY();
251
252 for (i = 0; source[i]; i++) {
253 destination[i] = source[i];
254 }
255
256 destination[i] = 0;
257
258 /* Return string length including the NULL terminator */
259
260 return ((u16) (i + 1));
261}
262
263/*******************************************************************************
264 *
265 * FUNCTION: acpi_rs_get_resource_source
266 *
267 * PARAMETERS: resource_length - Length field of the descriptor
268 * minimum_length - Minimum length of the descriptor (minus
269 * any optional fields)
270 * resource_source - Where the resource_source is returned
Bob Mooreba494be2012-07-12 09:40:10 +0800271 * aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400272 * string_ptr - (optional) where to store the actual
273 * resource_source string
274 *
Bob Mooreea936b72006-02-17 00:00:00 -0500275 * RETURN: Length of the string plus NULL terminator, rounded up to native
276 * word boundary
Bob Moore50eca3e2005-09-30 19:03:00 -0400277 *
278 * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor
279 * to an internal resource descriptor
280 *
281 ******************************************************************************/
282
Bob Moore08978312005-10-21 00:00:00 -0400283acpi_rs_length
284acpi_rs_get_resource_source(acpi_rs_length resource_length,
285 acpi_rs_length minimum_length,
Bob Moore50eca3e2005-09-30 19:03:00 -0400286 struct acpi_resource_source * resource_source,
287 union aml_resource * aml, char *string_ptr)
288{
Bob Moore08978312005-10-21 00:00:00 -0400289 acpi_rsdesc_size total_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400290 u8 *aml_resource_source;
291
292 ACPI_FUNCTION_ENTRY();
293
294 total_length =
295 resource_length + sizeof(struct aml_resource_large_header);
Bob Moorec51a4de2005-11-17 13:07:00 -0500296 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400297
298 /*
Bob Moore1fad8732015-12-29 13:54:36 +0800299 * resource_source is present if the length of the descriptor is longer
300 * than the minimum length.
Bob Moore50eca3e2005-09-30 19:03:00 -0400301 *
302 * Note: Some resource descriptors will have an additional null, so
303 * we add 1 to the minimum length.
304 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800305 if (total_length > (acpi_rsdesc_size)(minimum_length + 1)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400306
Bob Moore50eca3e2005-09-30 19:03:00 -0400307 /* Get the resource_source_index */
308
309 resource_source->index = aml_resource_source[0];
310
311 resource_source->string_ptr = string_ptr;
312 if (!string_ptr) {
313 /*
314 * String destination pointer is not specified; Set the String
315 * pointer to the end of the current resource_source structure.
316 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500317 resource_source->string_ptr =
318 ACPI_ADD_PTR(char, resource_source,
319 sizeof(struct acpi_resource_source));
Bob Moore50eca3e2005-09-30 19:03:00 -0400320 }
321
Bob Moore08978312005-10-21 00:00:00 -0400322 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500323 * In order for the Resource length to be a multiple of the native
324 * word, calculate the length of the string (+1 for NULL terminator)
325 * and expand to the next word multiple.
Bob Moore08978312005-10-21 00:00:00 -0400326 *
327 * Zero the entire area of the buffer.
328 */
Lv Zheng3e8214e2012-12-19 05:37:15 +0000329 total_length =
Bob Moore4fa46162015-07-01 14:45:11 +0800330 (u32)strlen(ACPI_CAST_PTR(char, &aml_resource_source[1])) +
Lv Zheng3e8214e2012-12-19 05:37:15 +0000331 1;
Bob Moore1fad8732015-12-29 13:54:36 +0800332
Lv Zheng52c1d802015-06-19 11:38:16 +0800333 total_length = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(total_length);
Bob Moore52fc0b02006-10-02 00:00:00 -0400334
Bob Moore4fa46162015-07-01 14:45:11 +0800335 memset(resource_source->string_ptr, 0, total_length);
Bob Moore08978312005-10-21 00:00:00 -0400336
Bob Moore50eca3e2005-09-30 19:03:00 -0400337 /* Copy the resource_source string to the destination */
338
339 resource_source->string_length =
340 acpi_rs_strcpy(resource_source->string_ptr,
Bob Moore52fc0b02006-10-02 00:00:00 -0400341 ACPI_CAST_PTR(char,
342 &aml_resource_source[1]));
Bob Moore50eca3e2005-09-30 19:03:00 -0400343
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800344 return ((acpi_rs_length)total_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400345 }
Bob Moore96db2552005-11-02 00:00:00 -0500346
347 /* resource_source is not present */
348
349 resource_source->index = 0;
350 resource_source->string_length = 0;
351 resource_source->string_ptr = NULL;
352 return (0);
Bob Moore50eca3e2005-09-30 19:03:00 -0400353}
354
355/*******************************************************************************
356 *
357 * FUNCTION: acpi_rs_set_resource_source
358 *
Bob Mooreba494be2012-07-12 09:40:10 +0800359 * PARAMETERS: aml - Pointer to the raw AML descriptor
Bob Moore50eca3e2005-09-30 19:03:00 -0400360 * minimum_length - Minimum length of the descriptor (minus
361 * any optional fields)
362 * resource_source - Internal resource_source
363
364 *
365 * RETURN: Total length of the AML descriptor
366 *
Bob Moore08978312005-10-21 00:00:00 -0400367 * DESCRIPTION: Convert an optional resource_source from internal format to a
Bob Moore50eca3e2005-09-30 19:03:00 -0400368 * raw AML resource descriptor
369 *
370 ******************************************************************************/
371
Bob Moore08978312005-10-21 00:00:00 -0400372acpi_rsdesc_size
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800373acpi_rs_set_resource_source(union aml_resource *aml,
Bob Moore08978312005-10-21 00:00:00 -0400374 acpi_rs_length minimum_length,
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800375 struct acpi_resource_source *resource_source)
Bob Moore50eca3e2005-09-30 19:03:00 -0400376{
377 u8 *aml_resource_source;
Bob Moore08978312005-10-21 00:00:00 -0400378 acpi_rsdesc_size descriptor_length;
Bob Moore50eca3e2005-09-30 19:03:00 -0400379
380 ACPI_FUNCTION_ENTRY();
381
382 descriptor_length = minimum_length;
383
384 /* Non-zero string length indicates presence of a resource_source */
385
386 if (resource_source->string_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400387
Bob Moore50eca3e2005-09-30 19:03:00 -0400388 /* Point to the end of the AML descriptor */
389
Bob Moorec51a4de2005-11-17 13:07:00 -0500390 aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length);
Bob Moore50eca3e2005-09-30 19:03:00 -0400391
392 /* Copy the resource_source_index */
393
394 aml_resource_source[0] = (u8) resource_source->index;
395
396 /* Copy the resource_source string */
397
Bob Moore4fa46162015-07-01 14:45:11 +0800398 strcpy(ACPI_CAST_PTR(char, &aml_resource_source[1]),
399 resource_source->string_ptr);
Bob Moore50eca3e2005-09-30 19:03:00 -0400400
401 /*
402 * Add the length of the string (+ 1 for null terminator) to the
403 * final descriptor length
404 */
Bob Moore1fad8732015-12-29 13:54:36 +0800405 descriptor_length += ((acpi_rsdesc_size)
406 resource_source->string_length + 1);
Bob Moore50eca3e2005-09-30 19:03:00 -0400407 }
408
409 /* Return the new total length of the AML descriptor */
410
411 return (descriptor_length);
412}
413
414/*******************************************************************************
415 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * FUNCTION: acpi_rs_get_prt_method_data
417 *
Bob Mooreba494be2012-07-12 09:40:10 +0800418 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400419 * ret_buffer - Pointer to a buffer structure for the
420 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 *
422 * RETURN: Status
423 *
424 * DESCRIPTION: This function is called to get the _PRT value of an object
425 * contained in an object specified by the handle passed in
426 *
427 * If the function fails an appropriate status will be returned
428 * and the contents of the callers buffer is undefined.
429 *
430 ******************************************************************************/
Bob Moore50eca3e2005-09-30 19:03:00 -0400431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432acpi_status
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800433acpi_rs_get_prt_method_data(struct acpi_namespace_node *node,
434 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Len Brown4be44fc2005-08-05 00:44:28 -0400436 union acpi_operand_object *obj_desc;
437 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Bob Mooreb229cf92006-04-21 17:15:00 -0400439 ACPI_FUNCTION_TRACE(rs_get_prt_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* Parameters guaranteed valid by caller */
442
Robert Moore44f6c012005-04-18 22:49:35 -0400443 /* Execute the method, no parameters */
444
Bob Moore1fad8732015-12-29 13:54:36 +0800445 status =
446 acpi_ut_evaluate_object(node, METHOD_NAME__PRT, ACPI_BTYPE_PACKAGE,
447 &obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400448 if (ACPI_FAILURE(status)) {
449 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 /*
453 * Create a resource linked list from the byte stream buffer that comes
454 * back from the _CRS method execution.
455 */
Len Brown4be44fc2005-08-05 00:44:28 -0400456 status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* On exit, we must delete the object returned by evaluate_object */
459
Len Brown4be44fc2005-08-05 00:44:28 -0400460 acpi_ut_remove_reference(obj_desc);
461 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*******************************************************************************
465 *
466 * FUNCTION: acpi_rs_get_crs_method_data
467 *
Bob Mooreba494be2012-07-12 09:40:10 +0800468 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400469 * ret_buffer - Pointer to a buffer structure for the
470 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *
472 * RETURN: Status
473 *
474 * DESCRIPTION: This function is called to get the _CRS value of an object
475 * contained in an object specified by the handle passed in
476 *
477 * If the function fails an appropriate status will be returned
478 * and the contents of the callers buffer is undefined.
479 *
480 ******************************************************************************/
481
482acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400483acpi_rs_get_crs_method_data(struct acpi_namespace_node *node,
484 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Len Brown4be44fc2005-08-05 00:44:28 -0400486 union acpi_operand_object *obj_desc;
487 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Bob Mooreb229cf92006-04-21 17:15:00 -0400489 ACPI_FUNCTION_TRACE(rs_get_crs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* Parameters guaranteed valid by caller */
492
Robert Moore44f6c012005-04-18 22:49:35 -0400493 /* Execute the method, no parameters */
494
Bob Moore1fad8732015-12-29 13:54:36 +0800495 status =
496 acpi_ut_evaluate_object(node, METHOD_NAME__CRS, ACPI_BTYPE_BUFFER,
497 &obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400498 if (ACPI_FAILURE(status)) {
499 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501
502 /*
503 * Make the call to create a resource linked list from the
504 * byte stream buffer that comes back from the _CRS method
505 * execution.
506 */
Len Brown4be44fc2005-08-05 00:44:28 -0400507 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Bob Mooreba494be2012-07-12 09:40:10 +0800509 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 acpi_ut_remove_reference(obj_desc);
512 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/*******************************************************************************
516 *
517 * FUNCTION: acpi_rs_get_prs_method_data
518 *
Bob Mooreba494be2012-07-12 09:40:10 +0800519 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400520 * ret_buffer - Pointer to a buffer structure for the
521 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 *
523 * RETURN: Status
524 *
525 * DESCRIPTION: This function is called to get the _PRS value of an object
526 * contained in an object specified by the handle passed in
527 *
528 * If the function fails an appropriate status will be returned
529 * and the contents of the callers buffer is undefined.
530 *
531 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400534acpi_rs_get_prs_method_data(struct acpi_namespace_node *node,
535 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Len Brown4be44fc2005-08-05 00:44:28 -0400537 union acpi_operand_object *obj_desc;
538 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Bob Mooreb229cf92006-04-21 17:15:00 -0400540 ACPI_FUNCTION_TRACE(rs_get_prs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* Parameters guaranteed valid by caller */
543
Robert Moore44f6c012005-04-18 22:49:35 -0400544 /* Execute the method, no parameters */
545
Bob Moore1fad8732015-12-29 13:54:36 +0800546 status =
547 acpi_ut_evaluate_object(node, METHOD_NAME__PRS, ACPI_BTYPE_BUFFER,
548 &obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400549 if (ACPI_FAILURE(status)) {
550 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
553 /*
554 * Make the call to create a resource linked list from the
555 * byte stream buffer that comes back from the _CRS method
556 * execution.
557 */
Len Brown4be44fc2005-08-05 00:44:28 -0400558 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Bob Mooreba494be2012-07-12 09:40:10 +0800560 /* On exit, we must delete the object returned by evaluateObject */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 acpi_ut_remove_reference(obj_desc);
563 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566/*******************************************************************************
567 *
Bob Moorea91cdde22011-11-16 14:46:57 +0800568 * FUNCTION: acpi_rs_get_aei_method_data
569 *
Bob Mooreba494be2012-07-12 09:40:10 +0800570 * PARAMETERS: node - Device node
Bob Moorea91cdde22011-11-16 14:46:57 +0800571 * ret_buffer - Pointer to a buffer structure for the
572 * results
573 *
574 * RETURN: Status
575 *
576 * DESCRIPTION: This function is called to get the _AEI value of an object
577 * contained in an object specified by the handle passed in
578 *
579 * If the function fails an appropriate status will be returned
580 * and the contents of the callers buffer is undefined.
581 *
582 ******************************************************************************/
583
584acpi_status
585acpi_rs_get_aei_method_data(struct acpi_namespace_node *node,
586 struct acpi_buffer *ret_buffer)
587{
588 union acpi_operand_object *obj_desc;
589 acpi_status status;
590
591 ACPI_FUNCTION_TRACE(rs_get_aei_method_data);
592
593 /* Parameters guaranteed valid by caller */
594
595 /* Execute the method, no parameters */
596
Bob Moore1fad8732015-12-29 13:54:36 +0800597 status =
598 acpi_ut_evaluate_object(node, METHOD_NAME__AEI, ACPI_BTYPE_BUFFER,
599 &obj_desc);
Bob Moorea91cdde22011-11-16 14:46:57 +0800600 if (ACPI_FAILURE(status)) {
601 return_ACPI_STATUS(status);
602 }
603
604 /*
605 * Make the call to create a resource linked list from the
606 * byte stream buffer that comes back from the _CRS method
607 * execution.
608 */
609 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
610
Bob Mooreba494be2012-07-12 09:40:10 +0800611 /* On exit, we must delete the object returned by evaluateObject */
Bob Moorea91cdde22011-11-16 14:46:57 +0800612
613 acpi_ut_remove_reference(obj_desc);
614 return_ACPI_STATUS(status);
615}
616
617/*******************************************************************************
618 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * FUNCTION: acpi_rs_get_method_data
620 *
Bob Mooreba494be2012-07-12 09:40:10 +0800621 * PARAMETERS: handle - Handle to the containing object
622 * path - Path to method, relative to Handle
Bob Moore52fc0b02006-10-02 00:00:00 -0400623 * ret_buffer - Pointer to a buffer structure for the
624 * results
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 *
626 * RETURN: Status
627 *
628 * DESCRIPTION: This function is called to get the _CRS or _PRS value of an
629 * object contained in an object specified by the handle passed in
630 *
631 * If the function fails an appropriate status will be returned
632 * and the contents of the callers buffer is undefined.
633 *
634 ******************************************************************************/
635
636acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400637acpi_rs_get_method_data(acpi_handle handle,
Bob Moore0dfaaa32016-03-24 09:40:40 +0800638 const char *path, struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Len Brown4be44fc2005-08-05 00:44:28 -0400640 union acpi_operand_object *obj_desc;
641 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Bob Mooreb229cf92006-04-21 17:15:00 -0400643 ACPI_FUNCTION_TRACE(rs_get_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Parameters guaranteed valid by caller */
646
Robert Moore44f6c012005-04-18 22:49:35 -0400647 /* Execute the method, no parameters */
648
Len Brown4be44fc2005-08-05 00:44:28 -0400649 status =
Rafael J. Wysocki0fdce472012-12-31 00:05:58 +0000650 acpi_ut_evaluate_object(ACPI_CAST_PTR
651 (struct acpi_namespace_node, handle), path,
652 ACPI_BTYPE_BUFFER, &obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400653 if (ACPI_FAILURE(status)) {
654 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
657 /*
658 * Make the call to create a resource linked list from the
659 * byte stream buffer that comes back from the method
660 * execution.
661 */
Len Brown4be44fc2005-08-05 00:44:28 -0400662 status = acpi_rs_create_resource_list(obj_desc, ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* On exit, we must delete the object returned by evaluate_object */
665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 acpi_ut_remove_reference(obj_desc);
667 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670/*******************************************************************************
671 *
672 * FUNCTION: acpi_rs_set_srs_method_data
673 *
Bob Mooreba494be2012-07-12 09:40:10 +0800674 * PARAMETERS: node - Device node
Bob Moore52fc0b02006-10-02 00:00:00 -0400675 * in_buffer - Pointer to a buffer structure of the
676 * parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
678 * RETURN: Status
679 *
680 * DESCRIPTION: This function is called to set the _SRS of an object contained
681 * in an object specified by the handle passed in
682 *
683 * If the function fails an appropriate status will be returned
684 * and the contents of the callers buffer is undefined.
685 *
Bob Moore41195322006-05-26 16:36:00 -0400686 * Note: Parameters guaranteed valid by caller
687 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ******************************************************************************/
689
690acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400691acpi_rs_set_srs_method_data(struct acpi_namespace_node *node,
692 struct acpi_buffer *in_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Bob Moore41195322006-05-26 16:36:00 -0400694 struct acpi_evaluate_info *info;
695 union acpi_operand_object *args[2];
Len Brown4be44fc2005-08-05 00:44:28 -0400696 acpi_status status;
697 struct acpi_buffer buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Bob Mooreb229cf92006-04-21 17:15:00 -0400699 ACPI_FUNCTION_TRACE(rs_set_srs_method_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Bob Moore41195322006-05-26 16:36:00 -0400701 /* Allocate and initialize the evaluation information block */
702
703 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
704 if (!info) {
705 return_ACPI_STATUS(AE_NO_MEMORY);
706 }
707
708 info->prefix_node = node;
Bob Moore29a241c2013-05-30 10:00:01 +0800709 info->relative_pathname = METHOD_NAME__SRS;
Bob Moore41195322006-05-26 16:36:00 -0400710 info->parameters = args;
Bob Moore41195322006-05-26 16:36:00 -0400711 info->flags = ACPI_IGNORE_RETURN_VALUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /*
714 * The in_buffer parameter will point to a linked list of
Bob Moore41195322006-05-26 16:36:00 -0400715 * resource parameters. It needs to be formatted into a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 * byte stream to be sent in as an input parameter to _SRS
717 *
718 * Convert the linked list into a byte stream
719 */
720 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
Lv Zheng9a0a3592013-11-21 12:17:34 +0800721 status = acpi_rs_create_aml_resources(in_buffer, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400722 if (ACPI_FAILURE(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400723 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Bob Moore41195322006-05-26 16:36:00 -0400726 /* Create and initialize the method parameter object */
Robert Moore44f6c012005-04-18 22:49:35 -0400727
Bob Moore41195322006-05-26 16:36:00 -0400728 args[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
729 if (!args[0]) {
730 /*
731 * Must free the buffer allocated above (otherwise it is freed
732 * later)
733 */
734 ACPI_FREE(buffer.pointer);
735 status = AE_NO_MEMORY;
736 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Bob Moore41195322006-05-26 16:36:00 -0400739 args[0]->buffer.length = (u32) buffer.length;
740 args[0]->buffer.pointer = buffer.pointer;
741 args[0]->common.flags = AOPOBJ_DATA_VALID;
742 args[1] = NULL;
Robert Moore44f6c012005-04-18 22:49:35 -0400743
Bob Moore41195322006-05-26 16:36:00 -0400744 /* Execute the method, no return value is expected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Bob Moore41195322006-05-26 16:36:00 -0400746 status = acpi_ns_evaluate(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Bob Moore41195322006-05-26 16:36:00 -0400748 /* Clean up and return the status from acpi_ns_evaluate */
Robert Moore44f6c012005-04-18 22:49:35 -0400749
Bob Moore41195322006-05-26 16:36:00 -0400750 acpi_ut_remove_reference(args[0]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400751
Lv Zheng10622bf2013-10-29 09:30:02 +0800752cleanup:
Bob Moore41195322006-05-26 16:36:00 -0400753 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400754 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}