utmisc.c 30.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: utmisc - common utility procedures
 *
 ******************************************************************************/

/*
L
Len Brown 已提交
8
 * Copyright (C) 2000 - 2008, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

44 45
#include <linux/module.h>

L
Linus Torvalds 已提交
46
#include <acpi/acpi.h>
L
Len Brown 已提交
47 48
#include "accommon.h"
#include "acnamesp.h"
L
Linus Torvalds 已提交
49 50

#define _COMPONENT          ACPI_UTILITIES
L
Len Brown 已提交
51
ACPI_MODULE_NAME("utmisc")
R
Robert Moore 已提交
52

53 54 55 56
/*
 * Common suffix for messages
 */
#define ACPI_COMMON_MSG_SUFFIX \
57
	acpi_os_printf(" (%8.8X/%s-%u)\n", ACPI_CA_VERSION, module_name, line_number)
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_validate_exception
 *
 * PARAMETERS:  Status       - The acpi_status code to be formatted
 *
 * RETURN:      A string containing the exception text. NULL if exception is
 *              not valid.
 *
 * DESCRIPTION: This function validates and translates an ACPI exception into
 *              an ASCII string.
 *
 ******************************************************************************/
const char *acpi_ut_validate_exception(acpi_status status)
{
73
	u32 sub_status;
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
	const char *exception = NULL;

	ACPI_FUNCTION_ENTRY();

	/*
	 * Status is composed of two parts, a "type" and an actual code
	 */
	sub_status = (status & ~AE_CODE_MASK);

	switch (status & AE_CODE_MASK) {
	case AE_CODE_ENVIRONMENTAL:

		if (sub_status <= AE_CODE_ENV_MAX) {
			exception = acpi_gbl_exception_names_env[sub_status];
		}
		break;

	case AE_CODE_PROGRAMMER:

		if (sub_status <= AE_CODE_PGM_MAX) {
94
			exception = acpi_gbl_exception_names_pgm[sub_status];
95 96 97 98 99 100
		}
		break;

	case AE_CODE_ACPI_TABLES:

		if (sub_status <= AE_CODE_TBL_MAX) {
101
			exception = acpi_gbl_exception_names_tbl[sub_status];
102 103 104 105 106 107
		}
		break;

	case AE_CODE_AML:

		if (sub_status <= AE_CODE_AML_MAX) {
108
			exception = acpi_gbl_exception_names_aml[sub_status];
109 110 111 112 113 114
		}
		break;

	case AE_CODE_CONTROL:

		if (sub_status <= AE_CODE_CTRL_MAX) {
115
			exception = acpi_gbl_exception_names_ctrl[sub_status];
116 117 118 119 120 121 122 123 124 125
		}
		break;

	default:
		break;
	}

	return (ACPI_CAST_PTR(const char, exception));
}

126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_is_pci_root_bridge
 *
 * PARAMETERS:  Id              - The HID/CID in string format
 *
 * RETURN:      TRUE if the Id is a match for a PCI/PCI-Express Root Bridge
 *
 * DESCRIPTION: Determine if the input ID is a PCI Root Bridge ID.
 *
 ******************************************************************************/

u8 acpi_ut_is_pci_root_bridge(char *id)
{

	/*
	 * Check if this is a PCI root bridge.
	 * ACPI 3.0+: check for a PCI Express root also.
	 */
	if (!(ACPI_STRCMP(id,
			  PCI_ROOT_HID_STRING)) ||
	    !(ACPI_STRCMP(id, PCI_EXPRESS_ROOT_HID_STRING))) {
		return (TRUE);
	}

	return (FALSE);
}

B
Bob Moore 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_is_aml_table
 *
 * PARAMETERS:  Table               - An ACPI table
 *
 * RETURN:      TRUE if table contains executable AML; FALSE otherwise
 *
 * DESCRIPTION: Check ACPI Signature for a table that contains AML code.
 *              Currently, these are DSDT,SSDT,PSDT. All other table types are
 *              data tables that do not contain AML code.
 *
 ******************************************************************************/
167

B
Bob Moore 已提交
168 169 170
u8 acpi_ut_is_aml_table(struct acpi_table_header *table)
{

B
Bob Moore 已提交
171
	/* These are the only tables that contain executable AML */
B
Bob Moore 已提交
172

173 174 175
	if (ACPI_COMPARE_NAME(table->signature, ACPI_SIG_DSDT) ||
	    ACPI_COMPARE_NAME(table->signature, ACPI_SIG_PSDT) ||
	    ACPI_COMPARE_NAME(table->signature, ACPI_SIG_SSDT)) {
B
Bob Moore 已提交
176 177 178 179 180 181
		return (TRUE);
	}

	return (FALSE);
}

182 183 184 185 186 187
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_allocate_owner_id
 *
 * PARAMETERS:  owner_id        - Where the new owner ID is returned
 *
188 189 190 191 192
 * RETURN:      Status
 *
 * DESCRIPTION: Allocate a table or method owner ID. The owner ID is used to
 *              track objects created by the table or method, to be deleted
 *              when the method exits or the table is unloaded.
193 194
 *
 ******************************************************************************/
B
Bob Moore 已提交
195

L
Len Brown 已提交
196
acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id)
197
{
198 199 200
	u32 i;
	u32 j;
	u32 k;
L
Len Brown 已提交
201
	acpi_status status;
202

B
Bob Moore 已提交
203
	ACPI_FUNCTION_TRACE(ut_allocate_owner_id);
204

R
Robert Moore 已提交
205 206 207
	/* Guard against multiple allocations of ID to the same location */

	if (*owner_id) {
B
Bob Moore 已提交
208 209
		ACPI_ERROR((AE_INFO, "Owner ID [%2.2X] already exists",
			    *owner_id));
R
Robert Moore 已提交
210 211 212
		return_ACPI_STATUS(AE_ALREADY_EXISTS);
	}

213 214
	/* Mutex for the global ID mask */

L
Len Brown 已提交
215 216 217
	status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
218 219
	}

B
Bob Moore 已提交
220 221
	/*
	 * Find a free owner ID, cycle through all possible IDs on repeated
B
Bob Moore 已提交
222 223
	 * allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index may have
	 * to be scanned twice.
B
Bob Moore 已提交
224
	 */
B
Bob Moore 已提交
225 226 227 228
	for (i = 0, j = acpi_gbl_last_owner_id_index;
	     i < (ACPI_NUM_OWNERID_MASKS + 1); i++, j++) {
		if (j >= ACPI_NUM_OWNERID_MASKS) {
			j = 0;	/* Wraparound to start of mask array */
B
Bob Moore 已提交
229 230
		}

B
Bob Moore 已提交
231 232
		for (k = acpi_gbl_next_owner_id_offset; k < 32; k++) {
			if (acpi_gbl_owner_id_mask[j] == ACPI_UINT32_MAX) {
B
Bob Moore 已提交
233

B
Bob Moore 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
				/* There are no free IDs in this mask */

				break;
			}

			if (!(acpi_gbl_owner_id_mask[j] & (1 << k))) {
				/*
				 * Found a free ID. The actual ID is the bit index plus one,
				 * making zero an invalid Owner ID. Save this as the last ID
				 * allocated and update the global ID mask.
				 */
				acpi_gbl_owner_id_mask[j] |= (1 << k);

				acpi_gbl_last_owner_id_index = (u8) j;
				acpi_gbl_next_owner_id_offset = (u8) (k + 1);

				/*
				 * Construct encoded ID from the index and bit position
				 *
				 * Note: Last [j].k (bit 255) is never used and is marked
				 * permanently allocated (prevents +1 overflow)
				 */
				*owner_id =
				    (acpi_owner_id) ((k + 1) + ACPI_MUL_32(j));

				ACPI_DEBUG_PRINT((ACPI_DB_VALUES,
B
Bob Moore 已提交
260
						  "Allocated OwnerId: %2.2X\n",
B
Bob Moore 已提交
261 262 263
						  (unsigned int)*owner_id));
				goto exit;
			}
264
		}
B
Bob Moore 已提交
265 266

		acpi_gbl_next_owner_id_offset = 0;
267 268 269
	}

	/*
B
Bob Moore 已提交
270
	 * All owner_ids have been allocated. This typically should
271 272 273 274
	 * not happen since the IDs are reused after deallocation. The IDs are
	 * allocated upon table load (one per table) and method execution, and
	 * they are released when a table is unloaded or a method completes
	 * execution.
B
Bob Moore 已提交
275 276 277
	 *
	 * If this error happens, there may be very deep nesting of invoked control
	 * methods, or there may be a bug where the IDs are not released.
278 279
	 */
	status = AE_OWNER_ID_LIMIT;
B
Bob Moore 已提交
280
	ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
281
		    "Could not allocate new OwnerId (255 max), AE_OWNER_ID_LIMIT"));
282

L
Len Brown 已提交
283 284 285
      exit:
	(void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
	return_ACPI_STATUS(status);
286 287 288 289 290 291
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_release_owner_id
 *
292
 * PARAMETERS:  owner_id_ptr        - Pointer to a previously allocated owner_iD
293
 *
294 295 296 297
 * RETURN:      None. No error is returned because we are either exiting a
 *              control method or unloading a table. Either way, we would
 *              ignore any error anyway.
 *
B
Bob Moore 已提交
298
 * DESCRIPTION: Release a table or method owner ID.  Valid IDs are 1 - 255
299 300 301
 *
 ******************************************************************************/

L
Len Brown 已提交
302
void acpi_ut_release_owner_id(acpi_owner_id * owner_id_ptr)
303
{
L
Len Brown 已提交
304 305
	acpi_owner_id owner_id = *owner_id_ptr;
	acpi_status status;
306
	u32 index;
B
Bob Moore 已提交
307
	u32 bit;
308

B
Bob Moore 已提交
309
	ACPI_FUNCTION_TRACE_U32(ut_release_owner_id, owner_id);
310

311 312 313 314 315 316
	/* Always clear the input owner_id (zero is an invalid ID) */

	*owner_id_ptr = 0;

	/* Zero is not a valid owner_iD */

B
Bob Moore 已提交
317
	if (owner_id == 0) {
B
Bob Moore 已提交
318
		ACPI_ERROR((AE_INFO, "Invalid OwnerId: %2.2X", owner_id));
319 320 321 322 323
		return_VOID;
	}

	/* Mutex for the global ID mask */

L
Len Brown 已提交
324 325
	status = acpi_ut_acquire_mutex(ACPI_MTX_CACHES);
	if (ACPI_FAILURE(status)) {
326
		return_VOID;
327 328
	}

R
Robert Moore 已提交
329 330 331
	/* Normalize the ID to zero */

	owner_id--;
332

B
Bob Moore 已提交
333 334 335 336 337
	/* Decode ID to index/offset pair */

	index = ACPI_DIV_32(owner_id);
	bit = 1 << ACPI_MOD_32(owner_id);

338
	/* Free the owner ID only if it is valid */
339

B
Bob Moore 已提交
340 341 342
	if (acpi_gbl_owner_id_mask[index] & bit) {
		acpi_gbl_owner_id_mask[index] ^= bit;
	} else {
B
Bob Moore 已提交
343
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
344
			    "Release of non-allocated OwnerId: %2.2X",
B
Bob Moore 已提交
345
			    owner_id + 1));
346 347
	}

L
Len Brown 已提交
348
	(void)acpi_ut_release_mutex(ACPI_MTX_CACHES);
349
	return_VOID;
350 351
}

R
Robert Moore 已提交
352 353 354 355 356 357
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strupr (strupr)
 *
 * PARAMETERS:  src_string      - The source string to convert
 *
358
 * RETURN:      None
R
Robert Moore 已提交
359 360 361 362 363 364 365
 *
 * DESCRIPTION: Convert string to uppercase
 *
 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
 *
 ******************************************************************************/

L
Len Brown 已提交
366
void acpi_ut_strupr(char *src_string)
R
Robert Moore 已提交
367
{
L
Len Brown 已提交
368
	char *string;
R
Robert Moore 已提交
369

L
Len Brown 已提交
370
	ACPI_FUNCTION_ENTRY();
R
Robert Moore 已提交
371

372
	if (!src_string) {
373
		return;
374 375
	}

R
Robert Moore 已提交
376 377 378
	/* Walk entire string, uppercasing the letters */

	for (string = src_string; *string; string++) {
L
Len Brown 已提交
379
		*string = (char)ACPI_TOUPPER(*string);
R
Robert Moore 已提交
380 381
	}

382
	return;
R
Robert Moore 已提交
383 384
}

L
Linus Torvalds 已提交
385 386 387 388 389
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_print_string
 *
 * PARAMETERS:  String          - Null terminated ASCII string
R
Robert Moore 已提交
390
 *              max_length      - Maximum output length
L
Linus Torvalds 已提交
391 392 393 394 395 396 397 398
 *
 * RETURN:      None
 *
 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
 *              sequences.
 *
 ******************************************************************************/

L
Len Brown 已提交
399
void acpi_ut_print_string(char *string, u8 max_length)
L
Linus Torvalds 已提交
400
{
L
Len Brown 已提交
401
	u32 i;
L
Linus Torvalds 已提交
402 403

	if (!string) {
L
Len Brown 已提交
404
		acpi_os_printf("<\"NULL STRING PTR\">");
L
Linus Torvalds 已提交
405 406 407
		return;
	}

L
Len Brown 已提交
408
	acpi_os_printf("\"");
L
Linus Torvalds 已提交
409
	for (i = 0; string[i] && (i < max_length); i++) {
B
Bob Moore 已提交
410

L
Linus Torvalds 已提交
411 412 413 414
		/* Escape sequences */

		switch (string[i]) {
		case 0x07:
L
Len Brown 已提交
415
			acpi_os_printf("\\a");	/* BELL */
L
Linus Torvalds 已提交
416 417 418
			break;

		case 0x08:
L
Len Brown 已提交
419
			acpi_os_printf("\\b");	/* BACKSPACE */
L
Linus Torvalds 已提交
420 421 422
			break;

		case 0x0C:
L
Len Brown 已提交
423
			acpi_os_printf("\\f");	/* FORMFEED */
L
Linus Torvalds 已提交
424 425 426
			break;

		case 0x0A:
L
Len Brown 已提交
427
			acpi_os_printf("\\n");	/* LINEFEED */
L
Linus Torvalds 已提交
428 429 430
			break;

		case 0x0D:
L
Len Brown 已提交
431
			acpi_os_printf("\\r");	/* CARRIAGE RETURN */
L
Linus Torvalds 已提交
432 433 434
			break;

		case 0x09:
L
Len Brown 已提交
435
			acpi_os_printf("\\t");	/* HORIZONTAL TAB */
L
Linus Torvalds 已提交
436 437 438
			break;

		case 0x0B:
L
Len Brown 已提交
439
			acpi_os_printf("\\v");	/* VERTICAL TAB */
L
Linus Torvalds 已提交
440 441
			break;

L
Len Brown 已提交
442 443 444 445
		case '\'':	/* Single Quote */
		case '\"':	/* Double Quote */
		case '\\':	/* Backslash */
			acpi_os_printf("\\%c", (int)string[i]);
L
Linus Torvalds 已提交
446 447 448 449 450 451
			break;

		default:

			/* Check for printable character or hex escape */

L
Len Brown 已提交
452
			if (ACPI_IS_PRINT(string[i])) {
L
Linus Torvalds 已提交
453 454
				/* This is a normal character */

L
Len Brown 已提交
455 456
				acpi_os_printf("%c", (int)string[i]);
			} else {
L
Linus Torvalds 已提交
457 458
				/* All others will be Hex escapes */

L
Len Brown 已提交
459
				acpi_os_printf("\\x%2.2X", (s32) string[i]);
L
Linus Torvalds 已提交
460 461 462 463
			}
			break;
		}
	}
L
Len Brown 已提交
464
	acpi_os_printf("\"");
L
Linus Torvalds 已提交
465 466

	if (i == max_length && string[i]) {
L
Len Brown 已提交
467
		acpi_os_printf("...");
L
Linus Torvalds 已提交
468 469 470 471 472 473 474 475 476
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_dword_byte_swap
 *
 * PARAMETERS:  Value           - Value to be converted
 *
R
Robert Moore 已提交
477 478
 * RETURN:      u32 integer with bytes swapped
 *
L
Linus Torvalds 已提交
479 480 481 482
 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
 *
 ******************************************************************************/

L
Len Brown 已提交
483
u32 acpi_ut_dword_byte_swap(u32 value)
L
Linus Torvalds 已提交
484 485
{
	union {
L
Len Brown 已提交
486 487
		u32 value;
		u8 bytes[4];
L
Linus Torvalds 已提交
488 489
	} out;
	union {
L
Len Brown 已提交
490 491
		u32 value;
		u8 bytes[4];
L
Linus Torvalds 已提交
492 493
	} in;

L
Len Brown 已提交
494
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520

	in.value = value;

	out.bytes[0] = in.bytes[3];
	out.bytes[1] = in.bytes[2];
	out.bytes[2] = in.bytes[1];
	out.bytes[3] = in.bytes[0];

	return (out.value);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_set_integer_width
 *
 * PARAMETERS:  Revision            From DSDT header
 *
 * RETURN:      None
 *
 * DESCRIPTION: Set the global integer bit width based upon the revision
 *              of the DSDT.  For Revision 1 and 0, Integers are 32 bits.
 *              For Revision 2 and above, Integers are 64 bits.  Yes, this
 *              makes a difference.
 *
 ******************************************************************************/

L
Len Brown 已提交
521
void acpi_ut_set_integer_width(u8 revision)
L
Linus Torvalds 已提交
522 523
{

524
	if (revision < 2) {
B
Bob Moore 已提交
525 526 527

		/* 32-bit case */

L
Linus Torvalds 已提交
528 529 530
		acpi_gbl_integer_bit_width = 32;
		acpi_gbl_integer_nybble_width = 8;
		acpi_gbl_integer_byte_width = 4;
L
Len Brown 已提交
531
	} else {
B
Bob Moore 已提交
532 533
		/* 64-bit case (ACPI 2.0+) */

L
Linus Torvalds 已提交
534 535 536 537 538 539 540 541 542 543 544
		acpi_gbl_integer_bit_width = 64;
		acpi_gbl_integer_nybble_width = 16;
		acpi_gbl_integer_byte_width = 8;
	}
}

#ifdef ACPI_DEBUG_OUTPUT
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_display_init_pathname
 *
R
Robert Moore 已提交
545 546
 * PARAMETERS:  Type                - Object type of the node
 *              obj_handle          - Handle whose pathname will be displayed
L
Linus Torvalds 已提交
547 548 549 550 551 552 553 554 555 556
 *              Path                - Additional path string to be appended.
 *                                      (NULL if no extra path)
 *
 * RETURN:      acpi_status
 *
 * DESCRIPTION: Display full pathname of an object, DEBUG ONLY
 *
 ******************************************************************************/

void
L
Len Brown 已提交
557 558 559
acpi_ut_display_init_pathname(u8 type,
			      struct acpi_namespace_node *obj_handle,
			      char *path)
L
Linus Torvalds 已提交
560
{
L
Len Brown 已提交
561 562
	acpi_status status;
	struct acpi_buffer buffer;
L
Linus Torvalds 已提交
563

L
Len Brown 已提交
564
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572 573 574

	/* Only print the path if the appropriate debug level is enabled */

	if (!(acpi_dbg_level & ACPI_LV_INIT_NAMES)) {
		return;
	}

	/* Get the full pathname to the node */

	buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
L
Len Brown 已提交
575 576
	status = acpi_ns_handle_to_pathname(obj_handle, &buffer);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
577 578 579 580 581 582 583
		return;
	}

	/* Print what we're doing */

	switch (type) {
	case ACPI_TYPE_METHOD:
L
Len Brown 已提交
584
		acpi_os_printf("Executing  ");
L
Linus Torvalds 已提交
585 586 587
		break;

	default:
L
Len Brown 已提交
588
		acpi_os_printf("Initializing ");
L
Linus Torvalds 已提交
589 590 591 592 593
		break;
	}

	/* Print the object type and pathname */

L
Len Brown 已提交
594 595
	acpi_os_printf("%-12s %s",
		       acpi_ut_get_type_name(type), (char *)buffer.pointer);
L
Linus Torvalds 已提交
596 597 598 599

	/* Extra path is used to append names like _STA, _INI, etc. */

	if (path) {
L
Len Brown 已提交
600
		acpi_os_printf(".%s", path);
L
Linus Torvalds 已提交
601
	}
L
Len Brown 已提交
602
	acpi_os_printf("\n");
L
Linus Torvalds 已提交
603

B
Bob Moore 已提交
604
	ACPI_FREE(buffer.pointer);
L
Linus Torvalds 已提交
605 606 607
}
#endif

B
Bob Moore 已提交
608 609 610 611 612
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_valid_acpi_char
 *
 * PARAMETERS:  Char            - The character to be examined
B
Bob Moore 已提交
613
 *              Position        - Byte position (0-3)
B
Bob Moore 已提交
614 615 616 617 618 619 620 621 622 623 624 625
 *
 * RETURN:      TRUE if the character is valid, FALSE otherwise
 *
 * DESCRIPTION: Check for a valid ACPI character. Must be one of:
 *              1) Upper case alpha
 *              2) numeric
 *              3) underscore
 *
 *              We allow a '!' as the last character because of the ASF! table
 *
 ******************************************************************************/

626
u8 acpi_ut_valid_acpi_char(char character, u32 position)
B
Bob Moore 已提交
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
{

	if (!((character >= 'A' && character <= 'Z') ||
	      (character >= '0' && character <= '9') || (character == '_'))) {

		/* Allow a '!' in the last position */

		if (character == '!' && position == 3) {
			return (TRUE);
		}

		return (FALSE);
	}

	return (TRUE);
}

L
Linus Torvalds 已提交
644 645 646 647
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_valid_acpi_name
 *
R
Robert Moore 已提交
648
 * PARAMETERS:  Name            - The name to be examined
L
Linus Torvalds 已提交
649
 *
R
Robert Moore 已提交
650
 * RETURN:      TRUE if the name is valid, FALSE otherwise
L
Linus Torvalds 已提交
651 652 653 654 655 656 657 658
 *
 * DESCRIPTION: Check for a valid ACPI name.  Each character must be one of:
 *              1) Upper case alpha
 *              2) numeric
 *              3) underscore
 *
 ******************************************************************************/

L
Len Brown 已提交
659
u8 acpi_ut_valid_acpi_name(u32 name)
L
Linus Torvalds 已提交
660
{
661
	u32 i;
L
Linus Torvalds 已提交
662

L
Len Brown 已提交
663
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
664 665

	for (i = 0; i < ACPI_NAME_SIZE; i++) {
B
Bob Moore 已提交
666 667
		if (!acpi_ut_valid_acpi_char
		    ((ACPI_CAST_PTR(char, &name))[i], i)) {
L
Linus Torvalds 已提交
668 669 670 671 672 673 674 675 676
			return (FALSE);
		}
	}

	return (TRUE);
}

/*******************************************************************************
 *
B
Bob Moore 已提交
677
 * FUNCTION:    acpi_ut_repair_name
L
Linus Torvalds 已提交
678
 *
B
Bob Moore 已提交
679
 * PARAMETERS:  Name            - The ACPI name to be repaired
L
Linus Torvalds 已提交
680
 *
B
Bob Moore 已提交
681
 * RETURN:      Repaired version of the name
L
Linus Torvalds 已提交
682
 *
B
Bob Moore 已提交
683 684
 * DESCRIPTION: Repair an ACPI name: Change invalid characters to '*' and
 *              return the new name.
L
Linus Torvalds 已提交
685 686 687
 *
 ******************************************************************************/

688
acpi_name acpi_ut_repair_name(char *name)
L
Linus Torvalds 已提交
689
{
690
       u32 i;
691
	char new_name[ACPI_NAME_SIZE];
L
Linus Torvalds 已提交
692

B
Bob Moore 已提交
693
	for (i = 0; i < ACPI_NAME_SIZE; i++) {
694
		new_name[i] = name[i];
B
Bob Moore 已提交
695 696 697 698 699 700

		/*
		 * Replace a bad character with something printable, yet technically
		 * still invalid. This prevents any collisions with existing "good"
		 * names in the namespace.
		 */
701
		if (!acpi_ut_valid_acpi_char(name[i], i)) {
B
Bob Moore 已提交
702 703 704
			new_name[i] = '*';
		}
	}
L
Linus Torvalds 已提交
705

706
	return (*(u32 *) new_name);
L
Linus Torvalds 已提交
707 708 709 710 711 712 713
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_strtoul64
 *
 * PARAMETERS:  String          - Null terminated string
B
Bob Moore 已提交
714 715
 *              Base            - Radix of the string: 16 or ACPI_ANY_BASE;
 *                                ACPI_ANY_BASE means 'in behalf of to_integer'
L
Linus Torvalds 已提交
716 717 718 719
 *              ret_integer     - Where the converted integer is returned
 *
 * RETURN:      Status and Converted value
 *
B
Bob Moore 已提交
720 721 722
 * DESCRIPTION: Convert a string into an unsigned value. Performs either a
 *              32-bit or 64-bit conversion, depending on the current mode
 *              of the interpreter.
L
Linus Torvalds 已提交
723 724 725 726 727
 *              NOTE: Does not support Octal strings, not needed.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
728
acpi_ut_strtoul64(char *string, u32 base, acpi_integer * ret_integer)
L
Linus Torvalds 已提交
729
{
L
Len Brown 已提交
730 731 732
	u32 this_digit = 0;
	acpi_integer return_value = 0;
	acpi_integer quotient;
B
Bob Moore 已提交
733 734 735 736 737 738
	acpi_integer dividend;
	u32 to_integer_op = (base == ACPI_ANY_BASE);
	u32 mode32 = (acpi_gbl_integer_byte_width == 4);
	u8 valid_digits = 0;
	u8 sign_of0x = 0;
	u8 term = 0;
L
Linus Torvalds 已提交
739

B
Bob Moore 已提交
740
	ACPI_FUNCTION_TRACE_STR(ut_stroul64, string);
L
Linus Torvalds 已提交
741 742 743 744 745 746 747 748

	switch (base) {
	case ACPI_ANY_BASE:
	case 16:
		break;

	default:
		/* Invalid Base */
L
Len Brown 已提交
749
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
750 751
	}

B
Bob Moore 已提交
752 753 754 755
	if (!string) {
		goto error_exit;
	}

L
Linus Torvalds 已提交
756 757
	/* Skip over any white space in the buffer */

B
Bob Moore 已提交
758
	while ((*string) && (ACPI_IS_SPACE(*string) || *string == '\t')) {
L
Linus Torvalds 已提交
759 760 761
		string++;
	}

B
Bob Moore 已提交
762 763 764 765 766
	if (to_integer_op) {
		/*
		 * Base equal to ACPI_ANY_BASE means 'to_integer operation case'.
		 * We need to determine if it is decimal or hexadecimal.
		 */
L
Len Brown 已提交
767
		if ((*string == '0') && (ACPI_TOLOWER(*(string + 1)) == 'x')) {
B
Bob Moore 已提交
768
			sign_of0x = 1;
L
Linus Torvalds 已提交
769
			base = 16;
B
Bob Moore 已提交
770 771

			/* Skip over the leading '0x' */
L
Linus Torvalds 已提交
772
			string += 2;
L
Len Brown 已提交
773
		} else {
L
Linus Torvalds 已提交
774 775 776 777
			base = 10;
		}
	}

B
Bob Moore 已提交
778 779 780 781 782 783 784 785
	/* Any string left? Check that '0x' is not followed by white space. */

	if (!(*string) || ACPI_IS_SPACE(*string) || *string == '\t') {
		if (to_integer_op) {
			goto error_exit;
		} else {
			goto all_done;
		}
L
Linus Torvalds 已提交
786 787
	}

B
Bob Moore 已提交
788 789 790 791
	/*
	 * Perform a 32-bit or 64-bit conversion, depending upon the current
	 * execution mode of the interpreter
	 */
B
Bob Moore 已提交
792
	dividend = (mode32) ? ACPI_UINT32_MAX : ACPI_UINT64_MAX;
L
Linus Torvalds 已提交
793

B
Bob Moore 已提交
794
	/* Main loop: convert the string to a 32- or 64-bit integer */
L
Linus Torvalds 已提交
795 796

	while (*string) {
L
Len Brown 已提交
797
		if (ACPI_IS_DIGIT(*string)) {
B
Bob Moore 已提交
798

L
Linus Torvalds 已提交
799 800
			/* Convert ASCII 0-9 to Decimal value */

L
Len Brown 已提交
801
			this_digit = ((u8) * string) - '0';
B
Bob Moore 已提交
802
		} else if (base == 10) {
L
Linus Torvalds 已提交
803

B
Bob Moore 已提交
804
			/* Digit is out of range; possible in to_integer case only */
L
Linus Torvalds 已提交
805

B
Bob Moore 已提交
806 807
			term = 1;
		} else {
L
Len Brown 已提交
808 809
			this_digit = (u8) ACPI_TOUPPER(*string);
			if (ACPI_IS_XDIGIT((char)this_digit)) {
B
Bob Moore 已提交
810

L
Linus Torvalds 已提交
811 812 813
				/* Convert ASCII Hex char to value */

				this_digit = this_digit - 'A' + 10;
L
Len Brown 已提交
814
			} else {
B
Bob Moore 已提交
815 816 817 818 819 820 821 822
				term = 1;
			}
		}

		if (term) {
			if (to_integer_op) {
				goto error_exit;
			} else {
L
Linus Torvalds 已提交
823 824
				break;
			}
B
Bob Moore 已提交
825 826 827 828 829 830 831 832 833 834
		} else if ((valid_digits == 0) && (this_digit == 0)
			   && !sign_of0x) {

			/* Skip zeros */
			string++;
			continue;
		}

		valid_digits++;

L
Len Brown 已提交
835 836
		if (sign_of0x && ((valid_digits > 16)
				  || ((valid_digits > 8) && mode32))) {
B
Bob Moore 已提交
837 838 839 840 841 842
			/*
			 * This is to_integer operation case.
			 * No any restrictions for string-to-integer conversion,
			 * see ACPI spec.
			 */
			goto error_exit;
L
Linus Torvalds 已提交
843 844 845 846
		}

		/* Divide the digit into the correct position */

L
Len Brown 已提交
847
		(void)
B
Bob Moore 已提交
848 849 850
		    acpi_ut_short_divide((dividend - (acpi_integer) this_digit),
					 base, &quotient, NULL);

L
Linus Torvalds 已提交
851
		if (return_value > quotient) {
B
Bob Moore 已提交
852 853 854 855 856
			if (to_integer_op) {
				goto error_exit;
			} else {
				break;
			}
L
Linus Torvalds 已提交
857 858 859 860 861 862 863 864 865
		}

		return_value *= base;
		return_value += this_digit;
		string++;
	}

	/* All done, normal exit */

B
Bob Moore 已提交
866 867
      all_done:

B
Bob Moore 已提交
868 869 870
	ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Converted value: %8.8X%8.8X\n",
			  ACPI_FORMAT_UINT64(return_value)));

L
Linus Torvalds 已提交
871
	*ret_integer = return_value;
L
Len Brown 已提交
872
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
873

L
Len Brown 已提交
874
      error_exit:
L
Linus Torvalds 已提交
875 876 877
	/* Base was set/validated above */

	if (base == 10) {
L
Len Brown 已提交
878 879 880
		return_ACPI_STATUS(AE_BAD_DECIMAL_CONSTANT);
	} else {
		return_ACPI_STATUS(AE_BAD_HEX_CONSTANT);
L
Linus Torvalds 已提交
881 882 883 884 885 886 887
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_update_state_and_push
 *
R
Robert Moore 已提交
888
 * PARAMETERS:  Object          - Object to be added to the new state
L
Linus Torvalds 已提交
889 890 891
 *              Action          - Increment/Decrement
 *              state_list      - List the state will be added to
 *
R
Robert Moore 已提交
892
 * RETURN:      Status
L
Linus Torvalds 已提交
893 894 895 896 897 898
 *
 * DESCRIPTION: Create a new state and push it
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
899 900 901
acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
				     u16 action,
				     union acpi_generic_state **state_list)
L
Linus Torvalds 已提交
902
{
L
Len Brown 已提交
903
	union acpi_generic_state *state;
L
Linus Torvalds 已提交
904

L
Len Brown 已提交
905
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
906 907 908 909 910 911 912

	/* Ignore null objects; these are expected */

	if (!object) {
		return (AE_OK);
	}

L
Len Brown 已提交
913
	state = acpi_ut_create_update_state(object, action);
L
Linus Torvalds 已提交
914 915 916 917
	if (!state) {
		return (AE_NO_MEMORY);
	}

L
Len Brown 已提交
918
	acpi_ut_push_generic_state(state_list, state);
L
Linus Torvalds 已提交
919 920 921 922 923 924 925
	return (AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_walk_package_tree
 *
R
Robert Moore 已提交
926 927 928 929
 * PARAMETERS:  source_object       - The package to walk
 *              target_object       - Target object (if package is being copied)
 *              walk_callback       - Called once for each package element
 *              Context             - Passed to the callback function
L
Linus Torvalds 已提交
930 931 932 933 934 935 936 937
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Walk through a package
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
938 939 940
acpi_ut_walk_package_tree(union acpi_operand_object * source_object,
			  void *target_object,
			  acpi_pkg_callback walk_callback, void *context)
L
Linus Torvalds 已提交
941
{
L
Len Brown 已提交
942 943 944 945 946
	acpi_status status = AE_OK;
	union acpi_generic_state *state_list = NULL;
	union acpi_generic_state *state;
	u32 this_index;
	union acpi_operand_object *this_source_obj;
L
Linus Torvalds 已提交
947

B
Bob Moore 已提交
948
	ACPI_FUNCTION_TRACE(ut_walk_package_tree);
L
Linus Torvalds 已提交
949

L
Len Brown 已提交
950
	state = acpi_ut_create_pkg_state(source_object, target_object, 0);
L
Linus Torvalds 已提交
951
	if (!state) {
L
Len Brown 已提交
952
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
953 954 955
	}

	while (state) {
B
Bob Moore 已提交
956

L
Linus Torvalds 已提交
957 958
		/* Get one element of the package */

L
Len Brown 已提交
959
		this_index = state->pkg.index;
L
Linus Torvalds 已提交
960
		this_source_obj = (union acpi_operand_object *)
L
Len Brown 已提交
961
		    state->pkg.source_object->package.elements[this_index];
L
Linus Torvalds 已提交
962 963 964 965 966 967 968 969 970 971

		/*
		 * Check for:
		 * 1) An uninitialized package element.  It is completely
		 *    legal to declare a package and leave it uninitialized
		 * 2) Not an internal object - can be a namespace node instead
		 * 3) Any type other than a package.  Packages are handled in else
		 *    case below.
		 */
		if ((!this_source_obj) ||
L
Len Brown 已提交
972 973
		    (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj) !=
		     ACPI_DESC_TYPE_OPERAND)
974
		    || (this_source_obj->common.type != ACPI_TYPE_PACKAGE)) {
L
Len Brown 已提交
975 976 977 978 979
			status =
			    walk_callback(ACPI_COPY_TYPE_SIMPLE,
					  this_source_obj, state, context);
			if (ACPI_FAILURE(status)) {
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
980 981 982
			}

			state->pkg.index++;
L
Len Brown 已提交
983 984
			while (state->pkg.index >=
			       state->pkg.source_object->package.count) {
L
Linus Torvalds 已提交
985 986 987 988 989 990 991
				/*
				 * We've handled all of the objects at this level,  This means
				 * that we have just completed a package.  That package may
				 * have contained one or more packages itself.
				 *
				 * Delete this state and pop the previous state (package).
				 */
L
Len Brown 已提交
992 993
				acpi_ut_delete_generic_state(state);
				state = acpi_ut_pop_generic_state(&state_list);
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000 1001 1002

				/* Finished when there are no more states */

				if (!state) {
					/*
					 * We have handled all of the objects in the top level
					 * package just add the length of the package objects
					 * and exit
					 */
L
Len Brown 已提交
1003
					return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
1004 1005 1006 1007 1008 1009 1010 1011
				}

				/*
				 * Go back up a level and move the index past the just
				 * completed package object.
				 */
				state->pkg.index++;
			}
L
Len Brown 已提交
1012
		} else {
L
Linus Torvalds 已提交
1013 1014
			/* This is a subobject of type package */

L
Len Brown 已提交
1015 1016 1017 1018 1019
			status =
			    walk_callback(ACPI_COPY_TYPE_PACKAGE,
					  this_source_obj, state, context);
			if (ACPI_FAILURE(status)) {
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
1020 1021 1022 1023 1024 1025
			}

			/*
			 * Push the current state and create a new one
			 * The callback above returned a new target package object.
			 */
L
Len Brown 已提交
1026 1027 1028 1029
			acpi_ut_push_generic_state(&state_list, state);
			state = acpi_ut_create_pkg_state(this_source_obj,
							 state->pkg.
							 this_target_obj, 0);
L
Linus Torvalds 已提交
1030
			if (!state) {
1031 1032 1033 1034 1035 1036 1037 1038 1039

				/* Free any stacked Update State objects */

				while (state_list) {
					state =
					    acpi_ut_pop_generic_state
					    (&state_list);
					acpi_ut_delete_generic_state(state);
				}
L
Len Brown 已提交
1040
				return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
1041 1042 1043 1044 1045 1046
			}
		}
	}

	/* We should never get here */

L
Len Brown 已提交
1047
	return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
1048 1049 1050 1051
}

/*******************************************************************************
 *
1052
 * FUNCTION:    acpi_error, acpi_exception, acpi_warning, acpi_info
L
Linus Torvalds 已提交
1053 1054 1055
 *
 * PARAMETERS:  module_name         - Caller's module name (for error output)
 *              line_number         - Caller's line number (for error output)
B
Bob Moore 已提交
1056
 *              Format              - Printf format string + additional args
L
Linus Torvalds 已提交
1057 1058 1059
 *
 * RETURN:      None
 *
B
Bob Moore 已提交
1060
 * DESCRIPTION: Print message with module/line/version info
L
Linus Torvalds 已提交
1061 1062 1063
 *
 ******************************************************************************/

B
Bob Moore 已提交
1064
void ACPI_INTERNAL_VAR_XFACE
1065
acpi_error(const char *module_name, u32 line_number, const char *format, ...)
L
Linus Torvalds 已提交
1066
{
B
Bob Moore 已提交
1067
	va_list args;
L
Linus Torvalds 已提交
1068

1069
	acpi_os_printf("ACPI Error: ");
B
Bob Moore 已提交
1070 1071 1072

	va_start(args, format);
	acpi_os_vprintf(format, args);
1073
	ACPI_COMMON_MSG_SUFFIX;
1074
	va_end(args);
L
Linus Torvalds 已提交
1075 1076
}

B
Bob Moore 已提交
1077
void ACPI_INTERNAL_VAR_XFACE
1078 1079
acpi_exception(const char *module_name,
	       u32 line_number, acpi_status status, const char *format, ...)
B
Bob Moore 已提交
1080 1081
{
	va_list args;
L
Linus Torvalds 已提交
1082

1083
	acpi_os_printf("ACPI Exception: %s, ", acpi_format_exception(status));
B
Bob Moore 已提交
1084 1085 1086

	va_start(args, format);
	acpi_os_vprintf(format, args);
1087
	ACPI_COMMON_MSG_SUFFIX;
1088
	va_end(args);
B
Bob Moore 已提交
1089
}
L
Len Brown 已提交
1090

B
Bob Moore 已提交
1091
void ACPI_INTERNAL_VAR_XFACE
1092
acpi_warning(const char *module_name, u32 line_number, const char *format, ...)
L
Linus Torvalds 已提交
1093
{
B
Bob Moore 已提交
1094
	va_list args;
L
Linus Torvalds 已提交
1095

1096
	acpi_os_printf("ACPI Warning: ");
B
Bob Moore 已提交
1097 1098 1099

	va_start(args, format);
	acpi_os_vprintf(format, args);
1100
	ACPI_COMMON_MSG_SUFFIX;
1101
	va_end(args);
B
Bob Moore 已提交
1102
}
1103

B
Bob Moore 已提交
1104
void ACPI_INTERNAL_VAR_XFACE
1105
acpi_info(const char *module_name, u32 line_number, const char *format, ...)
B
Bob Moore 已提交
1106 1107 1108
{
	va_list args;

1109
	acpi_os_printf("ACPI: ");
B
Bob Moore 已提交
1110 1111 1112

	va_start(args, format);
	acpi_os_vprintf(format, args);
1113
	acpi_os_printf("\n");
1114
	va_end(args);
L
Linus Torvalds 已提交
1115
}
1116 1117 1118 1119 1120

ACPI_EXPORT_SYMBOL(acpi_error)
ACPI_EXPORT_SYMBOL(acpi_exception)
ACPI_EXPORT_SYMBOL(acpi_warning)
ACPI_EXPORT_SYMBOL(acpi_info)
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_predefined_warning
 *
 * PARAMETERS:  module_name     - Caller's module name (for error output)
 *              line_number     - Caller's line number (for error output)
 *              Pathname        - Full pathname to the node
 *              node_flags      - From Namespace node for the method/object
 *              Format          - Printf format string + additional args
 *
 * RETURN:      None
 *
 * DESCRIPTION: Warnings for the predefined validation module. Messages are
 *              only emitted the first time a problem with a particular
 *              method/object is detected. This prevents a flood of error
 *              messages for methods that are repeatedly evaluated.
 *
******************************************************************************/

void ACPI_INTERNAL_VAR_XFACE
acpi_ut_predefined_warning(const char *module_name,
			   u32 line_number,
			   char *pathname,
			   u8 node_flags, const char *format, ...)
{
	va_list args;

	/*
	 * Warning messages for this method/object will be disabled after the
	 * first time a validation fails or an object is successfully repaired.
	 */
	if (node_flags & ANOBJ_EVALUATED) {
		return;
	}

	acpi_os_printf("ACPI Warning for %s: ", pathname);

	va_start(args, format);
	acpi_os_vprintf(format, args);
	ACPI_COMMON_MSG_SUFFIX;
	va_end(args);
}
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_predefined_info
 *
 * PARAMETERS:  module_name     - Caller's module name (for error output)
 *              line_number     - Caller's line number (for error output)
 *              Pathname        - Full pathname to the node
 *              node_flags      - From Namespace node for the method/object
 *              Format          - Printf format string + additional args
 *
 * RETURN:      None
 *
 * DESCRIPTION: Info messages for the predefined validation module. Messages
 *              are only emitted the first time a problem with a particular
 *              method/object is detected. This prevents a flood of
 *              messages for methods that are repeatedly evaluated.
 *
 ******************************************************************************/

void ACPI_INTERNAL_VAR_XFACE
acpi_ut_predefined_info(const char *module_name,
			u32 line_number,
			char *pathname, u8 node_flags, const char *format, ...)
{
	va_list args;

	/*
	 * Warning messages for this method/object will be disabled after the
	 * first time a validation fails or an object is successfully repaired.
	 */
	if (node_flags & ANOBJ_EVALUATED) {
		return;
	}

	acpi_os_printf("ACPI Info for %s: ", pathname);

	va_start(args, format);
	acpi_os_vprintf(format, args);
	ACPI_COMMON_MSG_SUFFIX;
	va_end(args);
}