diff options
author | Corey Minyard | 2016-06-10 11:15:42 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2016-06-24 04:13:57 +0200 |
commit | 86e91dd713414dda40bb16aabe2f1fc9ba95a3a7 (patch) | |
tree | a4d03ce0a965701c3e4b6d65531127fe906502df /stubs/ipmi.c | |
parent | ipmi: Add SMBIOS table entry (diff) | |
download | qemu-86e91dd713414dda40bb16aabe2f1fc9ba95a3a7.tar.gz qemu-86e91dd713414dda40bb16aabe2f1fc9ba95a3a7.tar.xz qemu-86e91dd713414dda40bb16aabe2f1fc9ba95a3a7.zip |
acpi: Add IPMI table entries
Use the ACPI table construction tools to create an ACPI entry
for IPMI. This adds a function called build_acpi_ipmi_devices
to add an DSDT entry for IPMI if IPMI is compiled in and an
IPMI device exists. It also adds a dummy function if IPMI
is not compiled in.
This conforms to section "C3-2 Locating IPMI System Interfaces in
ACPI Name Space" in the IPMI 2.0 specification.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'stubs/ipmi.c')
-rw-r--r-- | stubs/ipmi.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/stubs/ipmi.c b/stubs/ipmi.c new file mode 100644 index 0000000000..98b6dcee0d --- /dev/null +++ b/stubs/ipmi.c @@ -0,0 +1,14 @@ +/* + * IPMI ACPI firmware handling + * + * Copyright (c) 2015,2016 Corey Minyard, MontaVista Software, LLC + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ + +#include "hw/acpi/ipmi.h" + +void build_acpi_ipmi_devices(Aml *table, BusState *bus) +{ +} |