diff options
author | Igor Mammedov <imammedo@redhat.com> | 2022-06-08 09:53:18 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-06-09 19:32:48 -0400 |
commit | ea01c52291ffb7b571e21bb137470abd9e1c3175 (patch) | |
tree | 97085a1a6bf9e1922539cda84e550fbf1c95cda5 /include/hw/acpi | |
parent | 4ccf0937a41dc11f515ee965631a0e44ede97427 (diff) | |
download | qemu-ea01c52291ffb7b571e21bb137470abd9e1c3175.zip qemu-ea01c52291ffb7b571e21bb137470abd9e1c3175.tar.gz qemu-ea01c52291ffb7b571e21bb137470abd9e1c3175.tar.bz2 |
ipmi: acpi: use relative path to resource source
smbus-ipmi AML description needs to specify a path to its parent
node in _CRS. The rest of IPMI inplementations (ISA based)
do not need path at all. Instead of passing through a full path
use relative path to point to smbus-ipmi's parent node, it will
let follow up patches to create IPMI device AML in a generic
way instead of current ad-hoc way. (i.e. AML will be generated
the same way it's done for other ISA device, and smbus will be
converted to generate AML for its slave devices the same way
as ISA)
expected AML change:
Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings
{
I2cSerialBusV2 (0x0000, ControllerInitiated, 0x000186A0,
- AddressingMode7Bit, "\\_SB.PCI0.SMB0",
+ AddressingMode7Bit, "^",
0x00, ResourceProducer, , Exclusive,
)
})
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20220608135340.3304695-14-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi')
-rw-r--r-- | include/hw/acpi/ipmi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/acpi/ipmi.h b/include/hw/acpi/ipmi.h index c14ad68..c384835 100644 --- a/include/hw/acpi/ipmi.h +++ b/include/hw/acpi/ipmi.h @@ -16,6 +16,6 @@ * bus matches the given bus. The resource is the ACPI resource that * contains the IPMI device, this is required for the I2C CRS. */ -void build_acpi_ipmi_devices(Aml *table, BusState *bus, const char *resource); +void build_acpi_ipmi_devices(Aml *table, BusState *bus); #endif /* HW_ACPI_IPMI_H */ |