Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/20087
Change subject: arch/x86/acpigen: Add additional opcodes ......................................................................
arch/x86/acpigen: Add additional opcodes
Add additional ACPI opcodes, that are going to be used in the following commits.
Change-Id: I20c3aa5a1412e5ef68831027137e9ed9e26ddbc9 Signed-off-by: Patrick Rudolph siro@das-labor.org --- M src/arch/x86/include/arch/acpigen.h 1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/20087/1
diff --git a/src/arch/x86/include/arch/acpigen.h b/src/arch/x86/include/arch/acpigen.h index f76fce8..37d0d55 100644 --- a/src/arch/x86/include/arch/acpigen.h +++ b/src/arch/x86/include/arch/acpigen.h @@ -53,6 +53,7 @@ DUAL_NAME_PREFIX = 0x2E, MULTI_NAME_PREFIX = 0x2F, EXT_OP_PREFIX = 0x5B, + CREATEFIELD_OP = 0x13, SLEEP_OP = 0x22, DEBUG_OP = 0x31, OPREGION_OP = 0x80, @@ -76,10 +77,14 @@ ARG5_OP = 0x6D, ARG6_OP = 0x6E, STORE_OP = 0x70, + SUBTRACT_OP = 0x74, + MULTIPLY_OP = 0x77, AND_OP = 0x7B, OR_OP = 0x7D, NOT_OP = 0x80, LEQUAL_OP = 0x93, + LGREATER_OP = 0x94, + LLESS_OP = 0x95, TO_BUFFER_OP = 0x96, TO_INTEGER_OP = 0x99, IF_OP = 0xA0,