aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acutils.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2005-11-02 00:00:00 -0500
committerLen Brown <len.brown@intel.com>2005-12-10 00:26:05 -0500
commit96db255c8f014ae3497507104e8df809785a619f (patch)
tree79d2c506644370fd6c10d94bd40c419cd3bad148 /include/acpi/acutils.h
parent0897831bb54eb36fd9e2a22da7f0f64be1b20d09 (diff)
[ACPI] ACPICA 20051102
Modified the subsystem initialization sequence to improve GPE support. The GPE initialization has been split into two parts in order to defer execution of the _PRW methods (Power Resources for Wake) until after the hardware is fully initialized and the SCI handler is installed. This allows the _PRW methods to access fields protected by the Global Lock. This will fix systems where a NO_GLOBAL_LOCK exception has been seen during initialization. Fixed a regression with the ConcatenateResTemplate() ASL operator introduced in the 20051021 release. Implemented support for "local" internal ACPI object types within the debugger "Object" command and the acpi_walk_namespace() external interfaces. These local types include RegionFields, BankFields, IndexFields, Alias, and reference objects. Moved common AML resource handling code into a new file, "utresrc.c". This code is shared by both the Resource Manager and the AML Debugger. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/acutils.h')
-rw-r--r--include/acpi/acutils.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/acpi/acutils.h b/include/acpi/acutils.h
index 7386eb81bd2a..4ff963323de3 100644
--- a/include/acpi/acutils.h
+++ b/include/acpi/acutils.h
@@ -44,6 +44,15 @@
44#ifndef _ACUTILS_H 44#ifndef _ACUTILS_H
45#define _ACUTILS_H 45#define _ACUTILS_H
46 46
47extern const u8 acpi_gbl_resource_aml_sizes[];
48
49/* Types for Resource descriptor entries */
50
51#define ACPI_INVALID_RESOURCE 0
52#define ACPI_FIXED_LENGTH 1
53#define ACPI_VARIABLE_LENGTH 2
54#define ACPI_SMALL_VARIABLE_LENGTH 3
55
47typedef 56typedef
48acpi_status(*acpi_pkg_callback) (u8 object_type, 57acpi_status(*acpi_pkg_callback) (u8 object_type,
49 union acpi_operand_object * source_object, 58 union acpi_operand_object * source_object,
@@ -418,13 +427,19 @@ acpi_ut_strtoul64(char *string, u32 base, acpi_integer * ret_integer);
418 427
419#define ACPI_ANY_BASE 0 428#define ACPI_ANY_BASE 0
420 429
430acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);
431
421u32 acpi_ut_get_descriptor_length(void *aml); 432u32 acpi_ut_get_descriptor_length(void *aml);
422 433
423u16 acpi_ut_get_resource_length(void *aml); 434u16 acpi_ut_get_resource_length(void *aml);
424 435
436u8 acpi_ut_get_resource_header_length(void *aml);
437
425u8 acpi_ut_get_resource_type(void *aml); 438u8 acpi_ut_get_resource_type(void *aml);
426 439
427u8 *acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc); 440acpi_status
441acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc,
442 u8 ** end_tag);
428 443
429u8 acpi_ut_generate_checksum(u8 * buffer, u32 length); 444u8 acpi_ut_generate_checksum(u8 * buffer, u32 length);
430 445