mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
acpi: extend aml_or() to accept target argument
Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
This commit is contained in:
parent
a23b887281
commit
ca3df95df8
4 changed files with 8 additions and 7 deletions
|
@ -505,9 +505,9 @@ Aml *aml_and(Aml *arg1, Aml *arg2)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefOr */
|
/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefOr */
|
||||||
Aml *aml_or(Aml *arg1, Aml *arg2)
|
Aml *aml_or(Aml *arg1, Aml *arg2, Aml *dst)
|
||||||
{
|
{
|
||||||
return build_opcode_2arg_dst(0x7D /* OrOp */, arg1, arg2, NULL);
|
return build_opcode_2arg_dst(0x7D /* OrOp */, arg1, arg2, dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefLOr */
|
/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefLOr */
|
||||||
|
|
|
@ -278,12 +278,12 @@ static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap,
|
||||||
aml_name("CTRL")));
|
aml_name("CTRL")));
|
||||||
|
|
||||||
ifctx1 = aml_if(aml_lnot(aml_equal(aml_arg(1), aml_int(0x1))));
|
ifctx1 = aml_if(aml_lnot(aml_equal(aml_arg(1), aml_int(0x1))));
|
||||||
aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x08)),
|
aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x08), NULL),
|
||||||
aml_name("CDW1")));
|
aml_name("CDW1")));
|
||||||
aml_append(ifctx, ifctx1);
|
aml_append(ifctx, ifctx1);
|
||||||
|
|
||||||
ifctx1 = aml_if(aml_lnot(aml_equal(aml_name("CDW3"), aml_name("CTRL"))));
|
ifctx1 = aml_if(aml_lnot(aml_equal(aml_name("CDW3"), aml_name("CTRL"))));
|
||||||
aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x10)),
|
aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x10), NULL),
|
||||||
aml_name("CDW1")));
|
aml_name("CDW1")));
|
||||||
aml_append(ifctx, ifctx1);
|
aml_append(ifctx, ifctx1);
|
||||||
|
|
||||||
|
@ -292,7 +292,7 @@ static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap,
|
||||||
aml_append(method, ifctx);
|
aml_append(method, ifctx);
|
||||||
|
|
||||||
elsectx = aml_else();
|
elsectx = aml_else();
|
||||||
aml_append(elsectx, aml_store(aml_or(aml_name("CDW1"), aml_int(4)),
|
aml_append(elsectx, aml_store(aml_or(aml_name("CDW1"), aml_int(4), NULL),
|
||||||
aml_name("CDW1")));
|
aml_name("CDW1")));
|
||||||
aml_append(elsectx, aml_return(aml_arg(3)));
|
aml_append(elsectx, aml_return(aml_arg(3)));
|
||||||
aml_append(method, elsectx);
|
aml_append(method, elsectx);
|
||||||
|
|
|
@ -680,7 +680,8 @@ static Aml *build_prt(void)
|
||||||
|
|
||||||
/* route[0] = 0x[slot]FFFF */
|
/* route[0] = 0x[slot]FFFF */
|
||||||
aml_append(while_ctx,
|
aml_append(while_ctx,
|
||||||
aml_store(aml_or(aml_shiftleft(slot, aml_int(16)), aml_int(0xFFFF)),
|
aml_store(aml_or(aml_shiftleft(slot, aml_int(16)), aml_int(0xFFFF),
|
||||||
|
NULL),
|
||||||
aml_index(route, aml_int(0))));
|
aml_index(route, aml_int(0))));
|
||||||
/* route[1] = pin & 3 */
|
/* route[1] = pin & 3 */
|
||||||
aml_append(while_ctx,
|
aml_append(while_ctx,
|
||||||
|
|
|
@ -252,7 +252,7 @@ Aml *aml_to_hexstring(Aml *src, Aml *dst);
|
||||||
Aml *aml_to_buffer(Aml *src, Aml *dst);
|
Aml *aml_to_buffer(Aml *src, Aml *dst);
|
||||||
Aml *aml_store(Aml *val, Aml *target);
|
Aml *aml_store(Aml *val, Aml *target);
|
||||||
Aml *aml_and(Aml *arg1, Aml *arg2);
|
Aml *aml_and(Aml *arg1, Aml *arg2);
|
||||||
Aml *aml_or(Aml *arg1, Aml *arg2);
|
Aml *aml_or(Aml *arg1, Aml *arg2, Aml *dst);
|
||||||
Aml *aml_lor(Aml *arg1, Aml *arg2);
|
Aml *aml_lor(Aml *arg1, Aml *arg2);
|
||||||
Aml *aml_shiftleft(Aml *arg1, Aml *count);
|
Aml *aml_shiftleft(Aml *arg1, Aml *count);
|
||||||
Aml *aml_shiftright(Aml *arg1, Aml *count, Aml *dst);
|
Aml *aml_shiftright(Aml *arg1, Aml *count, Aml *dst);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue