[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 08/17] ipmi: Add documentation
From: |
minyard |
Subject: |
[Qemu-devel] [PATCH 08/17] ipmi: Add documentation |
Date: |
Thu, 23 Apr 2015 17:57:49 -0500 |
From: Corey Minyard <address@hidden>
Add some basic documentation for the IPMI device.
Signed-off-by: Corey Minyard <address@hidden>
---
qemu-options.hx | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/qemu-options.hx b/qemu-options.hx
index 319d971..598c631 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -373,6 +373,44 @@ Add device @var{driver}. @address@hidden sets driver
properties. Valid properties depend on the driver. To get help on
possible drivers and properties, use @code{-device help} and
@code{-device @var{driver},help}.
+
+Some drivers are:
address@hidden -device
isa-ipmi[,interface=kcs|bt][,address@hidden,address@hidden,address@hidden,chardev=name]
+
+Add an IPMI device. This also adds a corresponding ACPI and SMBIOS entries,
+if appropriate. The following options are handled:
address@hidden @option
address@hidden interface=kcs|bt
+Define the interface type to use. Currently the IPMI-defined KCS and
+BT interfaces are handled. The default is KCS.
address@hidden address@hidden
+Define the I/O address of the interface. The default is 0xca0 for KCS
+and 0xe4 for BT.
address@hidden address@hidden
+Define the interrupt to use. The default is 5. To disable interrupts,
+set this to 0.
address@hidden address@hidden
+The IPMI slave address to use for the BMC. The default is 0x20.
+This address is the BMC's address on the I2C network of management
+controllers. If you don't know what this means, it is safe to ignore
+it.
address@hidden chardev=name
+If a chardev is not specified, the IPMI driver uses a built-in baseboard
+management controller (BMC) simulator. It provides a basic BMC with a
+watchdog timer and associated sensor.
+
+If a chardev is specified, A connection is made to an external BMC
+simulator. If you do this, it is strongly recommended that you use
+the "reconnect=" chardev option to reconnect to the simulator if the
+connection is lost. Note that if this is not used carefully, it can
+be a security issue, as the interface has the ability to send resets,
+NMIs, and power off the VM. It's best if QEMU makes a connection to
+an external simulator running on a secure port on localhost, so
+neither the simulator nor QEMU is exposed to any outside network.
+
+See the "lanserv/README.vm" file in the OpenIPMI library for more
+details on the external interface.
address@hidden table
ETEXI
DEF("name", HAS_ARG, QEMU_OPTION_name,
--
1.8.3.1
- [Qemu-devel] [PATCH 00/17] Update to adding an IPMI device to qemu, minyard, 2015/04/23
- [Qemu-devel] [PATCH 01/17] Add a base IPMI interface, minyard, 2015/04/23
- [Qemu-devel] [PATCH 02/17] ipmi: Add a PC ISA type structure, minyard, 2015/04/23
- [Qemu-devel] [PATCH 03/17] ipmi: Add a KCS low-level interface, minyard, 2015/04/23
- [Qemu-devel] [PATCH 04/17] ipmi: Add a BT low-level interface, minyard, 2015/04/23
- [Qemu-devel] [PATCH 05/17] ipmi: Add a local BMC simulation, minyard, 2015/04/23
- [Qemu-devel] [PATCH 06/17] ipmi: Add an external connection simulation interface, minyard, 2015/04/23
- [Qemu-devel] [PATCH 07/17] ipmi: Add tests, minyard, 2015/04/23
- [Qemu-devel] [PATCH 08/17] ipmi: Add documentation,
minyard <=
- [Qemu-devel] [PATCH 09/17] ipmi: Add migration capability to the IPMI device., minyard, 2015/04/23
- [Qemu-devel] [PATCH 10/17] ipmi: Add a firmware configuration repository, minyard, 2015/04/23
- [Qemu-devel] [PATCH 12/17] smbios: Add a function to directly add an entry, minyard, 2015/04/23
- [Qemu-devel] [PATCH 13/17] pc: Postpone SMBIOS table installation to post machine init, minyard, 2015/04/23
- [Qemu-devel] [PATCH 14/17] ipmi: Add SMBIOS table entry, minyard, 2015/04/23
- [Qemu-devel] [PATCH 15/17] acpi: Add a way for devices to add ACPI tables, minyard, 2015/04/23
- [Qemu-devel] [PATCH 16/17] ipmi: Add ACPI table entries, minyard, 2015/04/23
- [Qemu-devel] [PATCH 17/17] bios: Add tests for the IPMI ACPI and SMBIOS entries, minyard, 2015/04/23