1 /*******************************************************************************
3 * Module Name: utmisc - common utility procedures
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2007, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
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.
44 #include <linux/module.h>
46 #include <acpi/acpi.h>
47 #include <acpi/acnamesp.h>
49 #define _COMPONENT ACPI_UTILITIES
50 ACPI_MODULE_NAME("utmisc")
52 /*******************************************************************************
54 * FUNCTION: acpi_ut_validate_exception
56 * PARAMETERS: Status - The acpi_status code to be formatted
58 * RETURN: A string containing the exception text. NULL if exception is
61 * DESCRIPTION: This function validates and translates an ACPI exception into
64 ******************************************************************************/
65 const char *acpi_ut_validate_exception(acpi_status status
)
67 acpi_status sub_status
;
68 const char *exception
= NULL
;
70 ACPI_FUNCTION_ENTRY();
73 * Status is composed of two parts, a "type" and an actual code
75 sub_status
= (status
& ~AE_CODE_MASK
);
77 switch (status
& AE_CODE_MASK
) {
78 case AE_CODE_ENVIRONMENTAL
:
80 if (sub_status
<= AE_CODE_ENV_MAX
) {
81 exception
= acpi_gbl_exception_names_env
[sub_status
];
85 case AE_CODE_PROGRAMMER
:
87 if (sub_status
<= AE_CODE_PGM_MAX
) {
89 acpi_gbl_exception_names_pgm
[sub_status
- 1];
93 case AE_CODE_ACPI_TABLES
:
95 if (sub_status
<= AE_CODE_TBL_MAX
) {
97 acpi_gbl_exception_names_tbl
[sub_status
- 1];
103 if (sub_status
<= AE_CODE_AML_MAX
) {
105 acpi_gbl_exception_names_aml
[sub_status
- 1];
109 case AE_CODE_CONTROL
:
111 if (sub_status
<= AE_CODE_CTRL_MAX
) {
113 acpi_gbl_exception_names_ctrl
[sub_status
- 1];
121 return (ACPI_CAST_PTR(const char, exception
));
124 /*******************************************************************************
126 * FUNCTION: acpi_ut_is_aml_table
128 * PARAMETERS: Table - An ACPI table
130 * RETURN: TRUE if table contains executable AML; FALSE otherwise
132 * DESCRIPTION: Check ACPI Signature for a table that contains AML code.
133 * Currently, these are DSDT,SSDT,PSDT. All other table types are
134 * data tables that do not contain AML code.
136 ******************************************************************************/
138 u8
acpi_ut_is_aml_table(struct acpi_table_header
*table
)
141 /* These are the only tables that contain executable AML */
143 if (ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_DSDT
) ||
144 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_PSDT
) ||
145 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_SSDT
)) {
152 /*******************************************************************************
154 * FUNCTION: acpi_ut_allocate_owner_id
156 * PARAMETERS: owner_id - Where the new owner ID is returned
160 * DESCRIPTION: Allocate a table or method owner ID. The owner ID is used to
161 * track objects created by the table or method, to be deleted
162 * when the method exits or the table is unloaded.
164 ******************************************************************************/
166 acpi_status
acpi_ut_allocate_owner_id(acpi_owner_id
* owner_id
)
173 ACPI_FUNCTION_TRACE(ut_allocate_owner_id
);
175 /* Guard against multiple allocations of ID to the same location */
178 ACPI_ERROR((AE_INFO
, "Owner ID [%2.2X] already exists",
180 return_ACPI_STATUS(AE_ALREADY_EXISTS
);
183 /* Mutex for the global ID mask */
185 status
= acpi_ut_acquire_mutex(ACPI_MTX_CACHES
);
186 if (ACPI_FAILURE(status
)) {
187 return_ACPI_STATUS(status
);
191 * Find a free owner ID, cycle through all possible IDs on repeated
192 * allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index may have
193 * to be scanned twice.
195 for (i
= 0, j
= acpi_gbl_last_owner_id_index
;
196 i
< (ACPI_NUM_OWNERID_MASKS
+ 1); i
++, j
++) {
197 if (j
>= ACPI_NUM_OWNERID_MASKS
) {
198 j
= 0; /* Wraparound to start of mask array */
201 for (k
= acpi_gbl_next_owner_id_offset
; k
< 32; k
++) {
202 if (acpi_gbl_owner_id_mask
[j
] == ACPI_UINT32_MAX
) {
204 /* There are no free IDs in this mask */
209 if (!(acpi_gbl_owner_id_mask
[j
] & (1 << k
))) {
211 * Found a free ID. The actual ID is the bit index plus one,
212 * making zero an invalid Owner ID. Save this as the last ID
213 * allocated and update the global ID mask.
215 acpi_gbl_owner_id_mask
[j
] |= (1 << k
);
217 acpi_gbl_last_owner_id_index
= (u8
) j
;
218 acpi_gbl_next_owner_id_offset
= (u8
) (k
+ 1);
221 * Construct encoded ID from the index and bit position
223 * Note: Last [j].k (bit 255) is never used and is marked
224 * permanently allocated (prevents +1 overflow)
227 (acpi_owner_id
) ((k
+ 1) + ACPI_MUL_32(j
));
229 ACPI_DEBUG_PRINT((ACPI_DB_VALUES
,
230 "Allocated OwnerId: %2.2X\n",
231 (unsigned int)*owner_id
));
236 acpi_gbl_next_owner_id_offset
= 0;
240 * All owner_ids have been allocated. This typically should
241 * not happen since the IDs are reused after deallocation. The IDs are
242 * allocated upon table load (one per table) and method execution, and
243 * they are released when a table is unloaded or a method completes
246 * If this error happens, there may be very deep nesting of invoked control
247 * methods, or there may be a bug where the IDs are not released.
249 status
= AE_OWNER_ID_LIMIT
;
251 "Could not allocate new OwnerId (255 max), AE_OWNER_ID_LIMIT"));
254 (void)acpi_ut_release_mutex(ACPI_MTX_CACHES
);
255 return_ACPI_STATUS(status
);
258 /*******************************************************************************
260 * FUNCTION: acpi_ut_release_owner_id
262 * PARAMETERS: owner_id_ptr - Pointer to a previously allocated owner_iD
264 * RETURN: None. No error is returned because we are either exiting a
265 * control method or unloading a table. Either way, we would
266 * ignore any error anyway.
268 * DESCRIPTION: Release a table or method owner ID. Valid IDs are 1 - 255
270 ******************************************************************************/
272 void acpi_ut_release_owner_id(acpi_owner_id
* owner_id_ptr
)
274 acpi_owner_id owner_id
= *owner_id_ptr
;
276 acpi_native_uint index
;
279 ACPI_FUNCTION_TRACE_U32(ut_release_owner_id
, owner_id
);
281 /* Always clear the input owner_id (zero is an invalid ID) */
285 /* Zero is not a valid owner_iD */
288 ACPI_ERROR((AE_INFO
, "Invalid OwnerId: %2.2X", owner_id
));
292 /* Mutex for the global ID mask */
294 status
= acpi_ut_acquire_mutex(ACPI_MTX_CACHES
);
295 if (ACPI_FAILURE(status
)) {
299 /* Normalize the ID to zero */
303 /* Decode ID to index/offset pair */
305 index
= ACPI_DIV_32(owner_id
);
306 bit
= 1 << ACPI_MOD_32(owner_id
);
308 /* Free the owner ID only if it is valid */
310 if (acpi_gbl_owner_id_mask
[index
] & bit
) {
311 acpi_gbl_owner_id_mask
[index
] ^= bit
;
314 "Release of non-allocated OwnerId: %2.2X",
318 (void)acpi_ut_release_mutex(ACPI_MTX_CACHES
);
322 /*******************************************************************************
324 * FUNCTION: acpi_ut_strupr (strupr)
326 * PARAMETERS: src_string - The source string to convert
330 * DESCRIPTION: Convert string to uppercase
332 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
334 ******************************************************************************/
336 void acpi_ut_strupr(char *src_string
)
340 ACPI_FUNCTION_ENTRY();
346 /* Walk entire string, uppercasing the letters */
348 for (string
= src_string
; *string
; string
++) {
349 *string
= (char)ACPI_TOUPPER(*string
);
355 /*******************************************************************************
357 * FUNCTION: acpi_ut_print_string
359 * PARAMETERS: String - Null terminated ASCII string
360 * max_length - Maximum output length
364 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
367 ******************************************************************************/
369 void acpi_ut_print_string(char *string
, u8 max_length
)
374 acpi_os_printf("<\"NULL STRING PTR\">");
378 acpi_os_printf("\"");
379 for (i
= 0; string
[i
] && (i
< max_length
); i
++) {
381 /* Escape sequences */
385 acpi_os_printf("\\a"); /* BELL */
389 acpi_os_printf("\\b"); /* BACKSPACE */
393 acpi_os_printf("\\f"); /* FORMFEED */
397 acpi_os_printf("\\n"); /* LINEFEED */
401 acpi_os_printf("\\r"); /* CARRIAGE RETURN */
405 acpi_os_printf("\\t"); /* HORIZONTAL TAB */
409 acpi_os_printf("\\v"); /* VERTICAL TAB */
412 case '\'': /* Single Quote */
413 case '\"': /* Double Quote */
414 case '\\': /* Backslash */
415 acpi_os_printf("\\%c", (int)string
[i
]);
420 /* Check for printable character or hex escape */
422 if (ACPI_IS_PRINT(string
[i
])) {
423 /* This is a normal character */
425 acpi_os_printf("%c", (int)string
[i
]);
427 /* All others will be Hex escapes */
429 acpi_os_printf("\\x%2.2X", (s32
) string
[i
]);
434 acpi_os_printf("\"");
436 if (i
== max_length
&& string
[i
]) {
437 acpi_os_printf("...");
441 /*******************************************************************************
443 * FUNCTION: acpi_ut_dword_byte_swap
445 * PARAMETERS: Value - Value to be converted
447 * RETURN: u32 integer with bytes swapped
449 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
451 ******************************************************************************/
453 u32
acpi_ut_dword_byte_swap(u32 value
)
464 ACPI_FUNCTION_ENTRY();
468 out
.bytes
[0] = in
.bytes
[3];
469 out
.bytes
[1] = in
.bytes
[2];
470 out
.bytes
[2] = in
.bytes
[1];
471 out
.bytes
[3] = in
.bytes
[0];
476 /*******************************************************************************
478 * FUNCTION: acpi_ut_set_integer_width
480 * PARAMETERS: Revision From DSDT header
484 * DESCRIPTION: Set the global integer bit width based upon the revision
485 * of the DSDT. For Revision 1 and 0, Integers are 32 bits.
486 * For Revision 2 and above, Integers are 64 bits. Yes, this
487 * makes a difference.
489 ******************************************************************************/
491 void acpi_ut_set_integer_width(u8 revision
)
498 acpi_gbl_integer_bit_width
= 32;
499 acpi_gbl_integer_nybble_width
= 8;
500 acpi_gbl_integer_byte_width
= 4;
502 /* 64-bit case (ACPI 2.0+) */
504 acpi_gbl_integer_bit_width
= 64;
505 acpi_gbl_integer_nybble_width
= 16;
506 acpi_gbl_integer_byte_width
= 8;
510 #ifdef ACPI_DEBUG_OUTPUT
511 /*******************************************************************************
513 * FUNCTION: acpi_ut_display_init_pathname
515 * PARAMETERS: Type - Object type of the node
516 * obj_handle - Handle whose pathname will be displayed
517 * Path - Additional path string to be appended.
518 * (NULL if no extra path)
520 * RETURN: acpi_status
522 * DESCRIPTION: Display full pathname of an object, DEBUG ONLY
524 ******************************************************************************/
527 acpi_ut_display_init_pathname(u8 type
,
528 struct acpi_namespace_node
*obj_handle
,
532 struct acpi_buffer buffer
;
534 ACPI_FUNCTION_ENTRY();
536 /* Only print the path if the appropriate debug level is enabled */
538 if (!(acpi_dbg_level
& ACPI_LV_INIT_NAMES
)) {
542 /* Get the full pathname to the node */
544 buffer
.length
= ACPI_ALLOCATE_LOCAL_BUFFER
;
545 status
= acpi_ns_handle_to_pathname(obj_handle
, &buffer
);
546 if (ACPI_FAILURE(status
)) {
550 /* Print what we're doing */
553 case ACPI_TYPE_METHOD
:
554 acpi_os_printf("Executing ");
558 acpi_os_printf("Initializing ");
562 /* Print the object type and pathname */
564 acpi_os_printf("%-12s %s",
565 acpi_ut_get_type_name(type
), (char *)buffer
.pointer
);
567 /* Extra path is used to append names like _STA, _INI, etc. */
570 acpi_os_printf(".%s", path
);
572 acpi_os_printf("\n");
574 ACPI_FREE(buffer
.pointer
);
578 /*******************************************************************************
580 * FUNCTION: acpi_ut_valid_acpi_char
582 * PARAMETERS: Char - The character to be examined
583 * Position - Byte position (0-3)
585 * RETURN: TRUE if the character is valid, FALSE otherwise
587 * DESCRIPTION: Check for a valid ACPI character. Must be one of:
588 * 1) Upper case alpha
592 * We allow a '!' as the last character because of the ASF! table
594 ******************************************************************************/
596 u8
acpi_ut_valid_acpi_char(char character
, acpi_native_uint position
)
599 if (!((character
>= 'A' && character
<= 'Z') ||
600 (character
>= '0' && character
<= '9') || (character
== '_'))) {
602 /* Allow a '!' in the last position */
604 if (character
== '!' && position
== 3) {
614 /*******************************************************************************
616 * FUNCTION: acpi_ut_valid_acpi_name
618 * PARAMETERS: Name - The name to be examined
620 * RETURN: TRUE if the name is valid, FALSE otherwise
622 * DESCRIPTION: Check for a valid ACPI name. Each character must be one of:
623 * 1) Upper case alpha
627 ******************************************************************************/
629 u8
acpi_ut_valid_acpi_name(u32 name
)
633 ACPI_FUNCTION_ENTRY();
635 for (i
= 0; i
< ACPI_NAME_SIZE
; i
++) {
636 if (!acpi_ut_valid_acpi_char
637 ((ACPI_CAST_PTR(char, &name
))[i
], i
)) {
645 /*******************************************************************************
647 * FUNCTION: acpi_ut_repair_name
649 * PARAMETERS: Name - The ACPI name to be repaired
651 * RETURN: Repaired version of the name
653 * DESCRIPTION: Repair an ACPI name: Change invalid characters to '*' and
654 * return the new name.
656 ******************************************************************************/
658 acpi_name
acpi_ut_repair_name(char *name
)
661 char new_name
[ACPI_NAME_SIZE
];
663 for (i
= 0; i
< ACPI_NAME_SIZE
; i
++) {
664 new_name
[i
] = name
[i
];
667 * Replace a bad character with something printable, yet technically
668 * still invalid. This prevents any collisions with existing "good"
669 * names in the namespace.
671 if (!acpi_ut_valid_acpi_char(name
[i
], i
)) {
676 return (*(u32
*) new_name
);
679 /*******************************************************************************
681 * FUNCTION: acpi_ut_strtoul64
683 * PARAMETERS: String - Null terminated string
684 * Base - Radix of the string: 16 or ACPI_ANY_BASE;
685 * ACPI_ANY_BASE means 'in behalf of to_integer'
686 * ret_integer - Where the converted integer is returned
688 * RETURN: Status and Converted value
690 * DESCRIPTION: Convert a string into an unsigned value. Performs either a
691 * 32-bit or 64-bit conversion, depending on the current mode
692 * of the interpreter.
693 * NOTE: Does not support Octal strings, not needed.
695 ******************************************************************************/
698 acpi_ut_strtoul64(char *string
, u32 base
, acpi_integer
* ret_integer
)
701 acpi_integer return_value
= 0;
702 acpi_integer quotient
;
703 acpi_integer dividend
;
704 u32 to_integer_op
= (base
== ACPI_ANY_BASE
);
705 u32 mode32
= (acpi_gbl_integer_byte_width
== 4);
710 ACPI_FUNCTION_TRACE_STR(ut_stroul64
, string
);
719 return_ACPI_STATUS(AE_BAD_PARAMETER
);
726 /* Skip over any white space in the buffer */
728 while ((*string
) && (ACPI_IS_SPACE(*string
) || *string
== '\t')) {
734 * Base equal to ACPI_ANY_BASE means 'to_integer operation case'.
735 * We need to determine if it is decimal or hexadecimal.
737 if ((*string
== '0') && (ACPI_TOLOWER(*(string
+ 1)) == 'x')) {
741 /* Skip over the leading '0x' */
748 /* Any string left? Check that '0x' is not followed by white space. */
750 if (!(*string
) || ACPI_IS_SPACE(*string
) || *string
== '\t') {
759 * Perform a 32-bit or 64-bit conversion, depending upon the current
760 * execution mode of the interpreter
762 dividend
= (mode32
) ? ACPI_UINT32_MAX
: ACPI_UINT64_MAX
;
764 /* Main loop: convert the string to a 32- or 64-bit integer */
767 if (ACPI_IS_DIGIT(*string
)) {
769 /* Convert ASCII 0-9 to Decimal value */
771 this_digit
= ((u8
) * string
) - '0';
772 } else if (base
== 10) {
774 /* Digit is out of range; possible in to_integer case only */
778 this_digit
= (u8
) ACPI_TOUPPER(*string
);
779 if (ACPI_IS_XDIGIT((char)this_digit
)) {
781 /* Convert ASCII Hex char to value */
783 this_digit
= this_digit
- 'A' + 10;
795 } else if ((valid_digits
== 0) && (this_digit
== 0)
805 if (sign_of0x
&& ((valid_digits
> 16)
806 || ((valid_digits
> 8) && mode32
))) {
808 * This is to_integer operation case.
809 * No any restrictions for string-to-integer conversion,
815 /* Divide the digit into the correct position */
818 acpi_ut_short_divide((dividend
- (acpi_integer
) this_digit
),
819 base
, "ient
, NULL
);
821 if (return_value
> quotient
) {
829 return_value
*= base
;
830 return_value
+= this_digit
;
834 /* All done, normal exit */
838 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
, "Converted value: %8.8X%8.8X\n",
839 ACPI_FORMAT_UINT64(return_value
)));
841 *ret_integer
= return_value
;
842 return_ACPI_STATUS(AE_OK
);
845 /* Base was set/validated above */
848 return_ACPI_STATUS(AE_BAD_DECIMAL_CONSTANT
);
850 return_ACPI_STATUS(AE_BAD_HEX_CONSTANT
);
854 /*******************************************************************************
856 * FUNCTION: acpi_ut_create_update_state_and_push
858 * PARAMETERS: Object - Object to be added to the new state
859 * Action - Increment/Decrement
860 * state_list - List the state will be added to
864 * DESCRIPTION: Create a new state and push it
866 ******************************************************************************/
869 acpi_ut_create_update_state_and_push(union acpi_operand_object
*object
,
871 union acpi_generic_state
**state_list
)
873 union acpi_generic_state
*state
;
875 ACPI_FUNCTION_ENTRY();
877 /* Ignore null objects; these are expected */
883 state
= acpi_ut_create_update_state(object
, action
);
885 return (AE_NO_MEMORY
);
888 acpi_ut_push_generic_state(state_list
, state
);
892 /*******************************************************************************
894 * FUNCTION: acpi_ut_walk_package_tree
896 * PARAMETERS: source_object - The package to walk
897 * target_object - Target object (if package is being copied)
898 * walk_callback - Called once for each package element
899 * Context - Passed to the callback function
903 * DESCRIPTION: Walk through a package
905 ******************************************************************************/
908 acpi_ut_walk_package_tree(union acpi_operand_object
* source_object
,
910 acpi_pkg_callback walk_callback
, void *context
)
912 acpi_status status
= AE_OK
;
913 union acpi_generic_state
*state_list
= NULL
;
914 union acpi_generic_state
*state
;
916 union acpi_operand_object
*this_source_obj
;
918 ACPI_FUNCTION_TRACE(ut_walk_package_tree
);
920 state
= acpi_ut_create_pkg_state(source_object
, target_object
, 0);
922 return_ACPI_STATUS(AE_NO_MEMORY
);
927 /* Get one element of the package */
929 this_index
= state
->pkg
.index
;
930 this_source_obj
= (union acpi_operand_object
*)
931 state
->pkg
.source_object
->package
.elements
[this_index
];
935 * 1) An uninitialized package element. It is completely
936 * legal to declare a package and leave it uninitialized
937 * 2) Not an internal object - can be a namespace node instead
938 * 3) Any type other than a package. Packages are handled in else
941 if ((!this_source_obj
) ||
942 (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj
) !=
943 ACPI_DESC_TYPE_OPERAND
)
944 || (ACPI_GET_OBJECT_TYPE(this_source_obj
) !=
945 ACPI_TYPE_PACKAGE
)) {
947 walk_callback(ACPI_COPY_TYPE_SIMPLE
,
948 this_source_obj
, state
, context
);
949 if (ACPI_FAILURE(status
)) {
950 return_ACPI_STATUS(status
);
954 while (state
->pkg
.index
>=
955 state
->pkg
.source_object
->package
.count
) {
957 * We've handled all of the objects at this level, This means
958 * that we have just completed a package. That package may
959 * have contained one or more packages itself.
961 * Delete this state and pop the previous state (package).
963 acpi_ut_delete_generic_state(state
);
964 state
= acpi_ut_pop_generic_state(&state_list
);
966 /* Finished when there are no more states */
970 * We have handled all of the objects in the top level
971 * package just add the length of the package objects
974 return_ACPI_STATUS(AE_OK
);
978 * Go back up a level and move the index past the just
979 * completed package object.
984 /* This is a subobject of type package */
987 walk_callback(ACPI_COPY_TYPE_PACKAGE
,
988 this_source_obj
, state
, context
);
989 if (ACPI_FAILURE(status
)) {
990 return_ACPI_STATUS(status
);
994 * Push the current state and create a new one
995 * The callback above returned a new target package object.
997 acpi_ut_push_generic_state(&state_list
, state
);
998 state
= acpi_ut_create_pkg_state(this_source_obj
,
1000 this_target_obj
, 0);
1002 return_ACPI_STATUS(AE_NO_MEMORY
);
1007 /* We should never get here */
1009 return_ACPI_STATUS(AE_AML_INTERNAL
);
1012 /*******************************************************************************
1014 * FUNCTION: acpi_ut_error, acpi_ut_warning, acpi_ut_info
1016 * PARAMETERS: module_name - Caller's module name (for error output)
1017 * line_number - Caller's line number (for error output)
1018 * Format - Printf format string + additional args
1022 * DESCRIPTION: Print message with module/line/version info
1024 ******************************************************************************/
1026 void ACPI_INTERNAL_VAR_XFACE
1027 acpi_ut_error(char *module_name
, u32 line_number
, char *format
, ...)
1031 acpi_os_printf("ACPI Error (%s-%04d): ", module_name
, line_number
);
1033 va_start(args
, format
);
1034 acpi_os_vprintf(format
, args
);
1035 acpi_os_printf(" [%X]\n", ACPI_CA_VERSION
);
1038 void ACPI_INTERNAL_VAR_XFACE
1039 acpi_ut_exception(char *module_name
,
1040 u32 line_number
, acpi_status status
, char *format
, ...)
1044 acpi_os_printf("ACPI Exception (%s-%04d): %s, ", module_name
,
1045 line_number
, acpi_format_exception(status
));
1047 va_start(args
, format
);
1048 acpi_os_vprintf(format
, args
);
1049 acpi_os_printf(" [%X]\n", ACPI_CA_VERSION
);
1052 EXPORT_SYMBOL(acpi_ut_exception
);
1054 void ACPI_INTERNAL_VAR_XFACE
1055 acpi_ut_warning(char *module_name
, u32 line_number
, char *format
, ...)
1059 acpi_os_printf("ACPI Warning (%s-%04d): ", module_name
, line_number
);
1061 va_start(args
, format
);
1062 acpi_os_vprintf(format
, args
);
1063 acpi_os_printf(" [%X]\n", ACPI_CA_VERSION
);
1066 void ACPI_INTERNAL_VAR_XFACE
1067 acpi_ut_info(char *module_name
, u32 line_number
, char *format
, ...)
1072 * Removed module_name, line_number, and acpica version, not needed
1075 acpi_os_printf("ACPI: ");
1077 va_start(args
, format
);
1078 acpi_os_vprintf(format
, args
);
1079 acpi_os_printf("\n");