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/acobject.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/acobject.h')
-rw-r--r-- | drivers/acpi/acpica/acobject.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/acobject.h b/drivers/acpi/acpica/acobject.h index 6d276c20b57b..435dd2f847bb 100644 --- a/drivers/acpi/acpica/acobject.h +++ b/drivers/acpi/acpica/acobject.h | |||
@@ -254,6 +254,7 @@ ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO}; | |||
254 | u32 base_byte_offset; /* Byte offset within containing object */\ | 254 | u32 base_byte_offset; /* Byte offset within containing object */\ |
255 | u32 value; /* Value to store into the Bank or Index register */\ | 255 | u32 value; /* Value to store into the Bank or Index register */\ |
256 | u8 start_field_bit_offset;/* Bit offset within first field datum (0-63) */\ | 256 | u8 start_field_bit_offset;/* Bit offset within first field datum (0-63) */\ |
257 | u8 access_length; /* For serial regions/fields */ | ||
257 | 258 | ||
258 | 259 | ||
259 | struct acpi_object_field_common { /* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */ | 260 | struct acpi_object_field_common { /* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */ |
@@ -261,7 +262,9 @@ struct acpi_object_field_common { /* COMMON FIELD (for BUFFER, REGION, BANK, and | |||
261 | }; | 262 | }; |
262 | 263 | ||
263 | struct acpi_object_region_field { | 264 | struct acpi_object_region_field { |
264 | ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj; /* Containing op_region object */ | 265 | ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO u16 resource_length; |
266 | union acpi_operand_object *region_obj; /* Containing op_region object */ | ||
267 | u8 *resource_buffer; /* resource_template for serial regions/fields */ | ||
265 | }; | 268 | }; |
266 | 269 | ||
267 | struct acpi_object_bank_field { | 270 | struct acpi_object_bank_field { |