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/amlcode.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/amlcode.h')
-rw-r--r-- | drivers/acpi/acpica/amlcode.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/amlcode.h b/drivers/acpi/acpica/amlcode.h index 1077f17859ed..adf7a71ea766 100644 --- a/drivers/acpi/acpica/amlcode.h +++ b/drivers/acpi/acpica/amlcode.h | |||
@@ -189,6 +189,14 @@ | |||
189 | #define AML_LNOTEQUAL_OP (u16) 0x9293 | 189 | #define AML_LNOTEQUAL_OP (u16) 0x9293 |
190 | 190 | ||
191 | /* | 191 | /* |
192 | * Opcodes for "Field" operators | ||
193 | */ | ||
194 | #define AML_FIELD_OFFSET_OP (u8) 0x00 | ||
195 | #define AML_FIELD_ACCESS_OP (u8) 0x01 | ||
196 | #define AML_FIELD_CONNECTION_OP (u8) 0x02 /* ACPI 5.0 */ | ||
197 | #define AML_FIELD_EXT_ACCESS_OP (u8) 0x03 /* ACPI 5.0 */ | ||
198 | |||
199 | /* | ||
192 | * Internal opcodes | 200 | * Internal opcodes |
193 | * Use only "Unknown" AML opcodes, don't attempt to use | 201 | * Use only "Unknown" AML opcodes, don't attempt to use |
194 | * any valid ACPI ASCII values (A-Z, 0-9, '-') | 202 | * any valid ACPI ASCII values (A-Z, 0-9, '-') |
@@ -202,6 +210,8 @@ | |||
202 | #define AML_INT_METHODCALL_OP (u16) 0x0035 | 210 | #define AML_INT_METHODCALL_OP (u16) 0x0035 |
203 | #define AML_INT_RETURN_VALUE_OP (u16) 0x0036 | 211 | #define AML_INT_RETURN_VALUE_OP (u16) 0x0036 |
204 | #define AML_INT_EVAL_SUBTREE_OP (u16) 0x0037 | 212 | #define AML_INT_EVAL_SUBTREE_OP (u16) 0x0037 |
213 | #define AML_INT_CONNECTION_OP (u16) 0x0038 | ||
214 | #define AML_INT_EXTACCESSFIELD_OP (u16) 0x0039 | ||
205 | 215 | ||
206 | #define ARG_NONE 0x0 | 216 | #define ARG_NONE 0x0 |
207 | 217 | ||