1 /******************************************************************************
3 * Module Name: nsconvert - Object conversions for objects returned by
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2016, Intel Corp.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
45 #include <acpi/acpi.h>
52 #define _COMPONENT ACPI_NAMESPACE
53 ACPI_MODULE_NAME("nsconvert")
55 /*******************************************************************************
57 * FUNCTION: acpi_ns_convert_to_integer
59 * PARAMETERS: original_object - Object to be converted
60 * return_object - Where the new converted object is returned
62 * RETURN: Status. AE_OK if conversion was successful.
64 * DESCRIPTION: Attempt to convert a String/Buffer object to an Integer.
66 ******************************************************************************/
68 acpi_ns_convert_to_integer(union acpi_operand_object
*original_object
,
69 union acpi_operand_object
**return_object
)
71 union acpi_operand_object
*new_object
;
76 switch (original_object
->common
.type
) {
77 case ACPI_TYPE_STRING
:
79 /* String-to-Integer conversion */
81 status
= acpi_ut_strtoul64(original_object
->string
.pointer
,
82 acpi_gbl_integer_byte_width
, &value
);
83 if (ACPI_FAILURE(status
)) {
88 case ACPI_TYPE_BUFFER
:
90 /* Buffer-to-Integer conversion. Max buffer size is 64 bits. */
92 if (original_object
->buffer
.length
> 8) {
93 return (AE_AML_OPERAND_TYPE
);
96 /* Extract each buffer byte to create the integer */
98 for (i
= 0; i
< original_object
->buffer
.length
; i
++) {
100 original_object
->buffer
.pointer
[i
] << (i
*
107 return (AE_AML_OPERAND_TYPE
);
110 new_object
= acpi_ut_create_integer_object(value
);
112 return (AE_NO_MEMORY
);
115 *return_object
= new_object
;
119 /*******************************************************************************
121 * FUNCTION: acpi_ns_convert_to_string
123 * PARAMETERS: original_object - Object to be converted
124 * return_object - Where the new converted object is returned
126 * RETURN: Status. AE_OK if conversion was successful.
128 * DESCRIPTION: Attempt to convert a Integer/Buffer object to a String.
130 ******************************************************************************/
133 acpi_ns_convert_to_string(union acpi_operand_object
*original_object
,
134 union acpi_operand_object
**return_object
)
136 union acpi_operand_object
*new_object
;
140 switch (original_object
->common
.type
) {
141 case ACPI_TYPE_INTEGER
:
143 * Integer-to-String conversion. Commonly, convert
144 * an integer of value 0 to a NULL string. The last element of
145 * _BIF and _BIX packages occasionally need this fix.
147 if (original_object
->integer
.value
== 0) {
149 /* Allocate a new NULL string object */
151 new_object
= acpi_ut_create_string_object(0);
153 return (AE_NO_MEMORY
);
156 status
= acpi_ex_convert_to_string(original_object
,
158 ACPI_IMPLICIT_CONVERT_HEX
);
159 if (ACPI_FAILURE(status
)) {
165 case ACPI_TYPE_BUFFER
:
167 * Buffer-to-String conversion. Use a to_string
168 * conversion, no transform performed on the buffer data. The best
169 * example of this is the _BIF method, where the string data from
170 * the battery is often (incorrectly) returned as buffer object(s).
173 while ((length
< original_object
->buffer
.length
) &&
174 (original_object
->buffer
.pointer
[length
])) {
178 /* Allocate a new string object */
180 new_object
= acpi_ut_create_string_object(length
);
182 return (AE_NO_MEMORY
);
186 * Copy the raw buffer data with no transform. String is already NULL
187 * terminated at Length+1.
189 memcpy(new_object
->string
.pointer
,
190 original_object
->buffer
.pointer
, length
);
195 return (AE_AML_OPERAND_TYPE
);
198 *return_object
= new_object
;
202 /*******************************************************************************
204 * FUNCTION: acpi_ns_convert_to_buffer
206 * PARAMETERS: original_object - Object to be converted
207 * return_object - Where the new converted object is returned
209 * RETURN: Status. AE_OK if conversion was successful.
211 * DESCRIPTION: Attempt to convert a Integer/String/Package object to a Buffer.
213 ******************************************************************************/
216 acpi_ns_convert_to_buffer(union acpi_operand_object
*original_object
,
217 union acpi_operand_object
**return_object
)
219 union acpi_operand_object
*new_object
;
221 union acpi_operand_object
**elements
;
226 switch (original_object
->common
.type
) {
227 case ACPI_TYPE_INTEGER
:
229 * Integer-to-Buffer conversion.
230 * Convert the Integer to a packed-byte buffer. _MAT and other
231 * objects need this sometimes, if a read has been performed on a
232 * Field object that is less than or equal to the global integer
233 * size (32 or 64 bits).
236 acpi_ex_convert_to_buffer(original_object
, &new_object
);
237 if (ACPI_FAILURE(status
)) {
242 case ACPI_TYPE_STRING
:
244 /* String-to-Buffer conversion. Simple data copy */
246 new_object
= acpi_ut_create_buffer_object
247 (original_object
->string
.length
);
249 return (AE_NO_MEMORY
);
252 memcpy(new_object
->buffer
.pointer
,
253 original_object
->string
.pointer
,
254 original_object
->string
.length
);
257 case ACPI_TYPE_PACKAGE
:
259 * This case is often seen for predefined names that must return a
260 * Buffer object with multiple DWORD integers within. For example,
261 * _FDE and _GTM. The Package can be converted to a Buffer.
264 /* All elements of the Package must be integers */
266 elements
= original_object
->package
.elements
;
267 count
= original_object
->package
.count
;
269 for (i
= 0; i
< count
; i
++) {
271 ((*elements
)->common
.type
!= ACPI_TYPE_INTEGER
)) {
272 return (AE_AML_OPERAND_TYPE
);
277 /* Create the new buffer object to replace the Package */
279 new_object
= acpi_ut_create_buffer_object(ACPI_MUL_4(count
));
281 return (AE_NO_MEMORY
);
284 /* Copy the package elements (integers) to the buffer as DWORDs */
286 elements
= original_object
->package
.elements
;
287 dword_buffer
= ACPI_CAST_PTR(u32
, new_object
->buffer
.pointer
);
289 for (i
= 0; i
< count
; i
++) {
290 *dword_buffer
= (u32
)(*elements
)->integer
.value
;
298 return (AE_AML_OPERAND_TYPE
);
301 *return_object
= new_object
;
305 /*******************************************************************************
307 * FUNCTION: acpi_ns_convert_to_unicode
309 * PARAMETERS: scope - Namespace node for the method/object
310 * original_object - ASCII String Object to be converted
311 * return_object - Where the new converted object is returned
313 * RETURN: Status. AE_OK if conversion was successful.
315 * DESCRIPTION: Attempt to convert a String object to a Unicode string Buffer.
317 ******************************************************************************/
320 acpi_ns_convert_to_unicode(struct acpi_namespace_node
*scope
,
321 union acpi_operand_object
*original_object
,
322 union acpi_operand_object
**return_object
)
324 union acpi_operand_object
*new_object
;
330 if (!original_object
) {
334 /* If a Buffer was returned, it must be at least two bytes long */
336 if (original_object
->common
.type
== ACPI_TYPE_BUFFER
) {
337 if (original_object
->buffer
.length
< 2) {
338 return (AE_AML_OPERAND_VALUE
);
341 *return_object
= NULL
;
346 * The original object is an ASCII string. Convert this string to
349 ascii_string
= original_object
->string
.pointer
;
350 unicode_length
= (original_object
->string
.length
* 2) + 2;
352 /* Create a new buffer object for the Unicode data */
354 new_object
= acpi_ut_create_buffer_object(unicode_length
);
356 return (AE_NO_MEMORY
);
359 unicode_buffer
= ACPI_CAST_PTR(u16
, new_object
->buffer
.pointer
);
361 /* Convert ASCII to Unicode */
363 for (i
= 0; i
< original_object
->string
.length
; i
++) {
364 unicode_buffer
[i
] = (u16
)ascii_string
[i
];
367 *return_object
= new_object
;
371 /*******************************************************************************
373 * FUNCTION: acpi_ns_convert_to_resource
375 * PARAMETERS: scope - Namespace node for the method/object
376 * original_object - Object to be converted
377 * return_object - Where the new converted object is returned
379 * RETURN: Status. AE_OK if conversion was successful
381 * DESCRIPTION: Attempt to convert a Integer object to a resource_template
384 ******************************************************************************/
387 acpi_ns_convert_to_resource(struct acpi_namespace_node
*scope
,
388 union acpi_operand_object
*original_object
,
389 union acpi_operand_object
**return_object
)
391 union acpi_operand_object
*new_object
;
395 * We can fix the following cases for an expected resource template:
396 * 1. No return value (interpreter slack mode is disabled)
397 * 2. A "Return (Zero)" statement
398 * 3. A "Return empty buffer" statement
400 * We will return a buffer containing a single end_tag
401 * resource descriptor.
403 if (original_object
) {
404 switch (original_object
->common
.type
) {
405 case ACPI_TYPE_INTEGER
:
407 /* We can only repair an Integer==0 */
409 if (original_object
->integer
.value
) {
410 return (AE_AML_OPERAND_TYPE
);
414 case ACPI_TYPE_BUFFER
:
416 if (original_object
->buffer
.length
) {
418 /* Additional checks can be added in the future */
420 *return_object
= NULL
;
425 case ACPI_TYPE_STRING
:
428 return (AE_AML_OPERAND_TYPE
);
432 /* Create the new buffer object for the resource descriptor */
434 new_object
= acpi_ut_create_buffer_object(2);
436 return (AE_NO_MEMORY
);
439 buffer
= ACPI_CAST_PTR(u8
, new_object
->buffer
.pointer
);
441 /* Initialize the Buffer with a single end_tag descriptor */
443 buffer
[0] = (ACPI_RESOURCE_NAME_END_TAG
| ASL_RDESC_END_TAG_SIZE
);
446 *return_object
= new_object
;
450 /*******************************************************************************
452 * FUNCTION: acpi_ns_convert_to_reference
454 * PARAMETERS: scope - Namespace node for the method/object
455 * original_object - Object to be converted
456 * return_object - Where the new converted object is returned
458 * RETURN: Status. AE_OK if conversion was successful
460 * DESCRIPTION: Attempt to convert a Integer object to a object_reference.
463 ******************************************************************************/
466 acpi_ns_convert_to_reference(struct acpi_namespace_node
*scope
,
467 union acpi_operand_object
*original_object
,
468 union acpi_operand_object
**return_object
)
470 union acpi_operand_object
*new_object
= NULL
;
472 struct acpi_namespace_node
*node
;
473 union acpi_generic_state scope_info
;
476 ACPI_FUNCTION_NAME(ns_convert_to_reference
);
478 /* Convert path into internal presentation */
481 acpi_ns_internalize_name(original_object
->string
.pointer
, &name
);
482 if (ACPI_FAILURE(status
)) {
483 return_ACPI_STATUS(status
);
486 /* Find the namespace node */
488 scope_info
.scope
.node
=
489 ACPI_CAST_PTR(struct acpi_namespace_node
, scope
);
491 acpi_ns_lookup(&scope_info
, name
, ACPI_TYPE_ANY
, ACPI_IMODE_EXECUTE
,
492 ACPI_NS_SEARCH_PARENT
| ACPI_NS_DONT_OPEN_SCOPE
,
494 if (ACPI_FAILURE(status
)) {
496 /* Check if we are resolving a named reference within a package */
498 ACPI_ERROR_NAMESPACE(original_object
->string
.pointer
, status
);
502 /* Create and init a new internal ACPI object */
504 new_object
= acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE
);
506 status
= AE_NO_MEMORY
;
509 new_object
->reference
.node
= node
;
510 new_object
->reference
.object
= node
->object
;
511 new_object
->reference
.class = ACPI_REFCLASS_NAME
;
514 * Increase reference of the object if needed (the object is likely a
515 * null for device nodes).
517 acpi_ut_add_reference(node
->object
);
521 *return_object
= new_object
;