diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-16 00:39:07 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:29 -0500 |
commit | 9ce81784c9c0396a6a6be05248928a71134fe60b (patch) | |
tree | cccb8fc3a3514276ed0b1801f7bb26ba2319d62d /drivers/acpi/acpica/aclocal.h | |
parent | ffef68273b6278e98a99dd4051671d4854b20fe0 (diff) |
ACPI 5.0: Implement Connection() and AccessAs() changes
Support within the interpreter and operation region dispatch.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/aclocal.h')
-rw-r--r-- | drivers/acpi/acpica/aclocal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/aclocal.h b/drivers/acpi/acpica/aclocal.h index 5552125d8340..52c4ebddbcf1 100644 --- a/drivers/acpi/acpica/aclocal.h +++ b/drivers/acpi/acpica/aclocal.h | |||
@@ -53,7 +53,7 @@ typedef u32 acpi_mutex_handle; | |||
53 | 53 | ||
54 | /* Total number of aml opcodes defined */ | 54 | /* Total number of aml opcodes defined */ |
55 | 55 | ||
56 | #define AML_NUM_OPCODES 0x7F | 56 | #define AML_NUM_OPCODES 0x81 |
57 | 57 | ||
58 | /* Forward declarations */ | 58 | /* Forward declarations */ |
59 | 59 | ||
@@ -249,12 +249,16 @@ struct acpi_create_field_info { | |||
249 | struct acpi_namespace_node *field_node; | 249 | struct acpi_namespace_node *field_node; |
250 | struct acpi_namespace_node *register_node; | 250 | struct acpi_namespace_node *register_node; |
251 | struct acpi_namespace_node *data_register_node; | 251 | struct acpi_namespace_node *data_register_node; |
252 | struct acpi_namespace_node *connection_node; | ||
253 | u8 *resource_buffer; | ||
252 | u32 bank_value; | 254 | u32 bank_value; |
253 | u32 field_bit_position; | 255 | u32 field_bit_position; |
254 | u32 field_bit_length; | 256 | u32 field_bit_length; |
257 | u16 resource_length; | ||
255 | u8 field_flags; | 258 | u8 field_flags; |
256 | u8 attribute; | 259 | u8 attribute; |
257 | u8 field_type; | 260 | u8 field_type; |
261 | u8 access_length; | ||
258 | }; | 262 | }; |
259 | 263 | ||
260 | typedef | 264 | typedef |