aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acresrc.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/acresrc.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/acresrc.h')
-rw-r--r--include/acpi/acresrc.h27
1 files changed, 4 insertions, 23 deletions
diff --git a/include/acpi/acresrc.h b/include/acpi/acresrc.h
index 25cff0d5ba58..2bf53940f259 100644
--- a/include/acpi/acresrc.h
+++ b/include/acpi/acresrc.h
@@ -101,27 +101,11 @@ typedef const struct acpi_rsconvert_info {
101#define ACPI_RS_OFFSET(f) (u8) ACPI_OFFSET (struct acpi_resource,f) 101#define ACPI_RS_OFFSET(f) (u8) ACPI_OFFSET (struct acpi_resource,f)
102#define AML_OFFSET(f) (u8) ACPI_OFFSET (union aml_resource,f) 102#define AML_OFFSET(f) (u8) ACPI_OFFSET (union aml_resource,f)
103 103
104/*
105 * Resource dispatch and info tables
106 */
107typedef const struct acpi_resource_info {
108 u8 length_type;
109 u8 minimum_aml_resource_length;
110 u8 minimum_internal_struct_length;
111
112} acpi_resource_info;
113
114/* Types for length_type above */
115
116#define ACPI_FIXED_LENGTH 0
117#define ACPI_VARIABLE_LENGTH 1
118#define ACPI_SMALL_VARIABLE_LENGTH 2
119
120typedef const struct acpi_rsdump_info { 104typedef const struct acpi_rsdump_info {
121 u8 opcode; 105 u8 opcode;
122 u8 offset; 106 u8 offset;
123 char *name; 107 char *name;
124 const void *pointer; 108 const char **pointer;
125 109
126} acpi_rsdump_info; 110} acpi_rsdump_info;
127 111
@@ -153,10 +137,9 @@ extern struct acpi_rsconvert_info *acpi_gbl_set_resource_dispatch[];
153 137
154/* Resource tables indexed by raw AML resource descriptor type */ 138/* Resource tables indexed by raw AML resource descriptor type */
155 139
156extern struct acpi_resource_info acpi_gbl_sm_resource_info[]; 140extern struct acpi_rsconvert_info *acpi_gbl_get_resource_dispatch[];
157extern struct acpi_resource_info acpi_gbl_lg_resource_info[]; 141
158extern struct acpi_rsconvert_info *acpi_gbl_sm_get_resource_dispatch[]; 142extern const u8 acpi_gbl_resource_struct_sizes[];
159extern struct acpi_rsconvert_info *acpi_gbl_lg_get_resource_dispatch[];
160 143
161/* 144/*
162 * rscreate 145 * rscreate
@@ -272,8 +255,6 @@ void
272acpi_rs_set_resource_length(acpi_rsdesc_size total_length, 255acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
273 union aml_resource *aml); 256 union aml_resource *aml);
274 257
275struct acpi_resource_info *acpi_rs_get_resource_info(u8 resource_type);
276
277/* 258/*
278 * rsdump 259 * rsdump
279 */ 260 */