summary refs log tree commit diff stats
path: root/hw/ipmi/ipmi_bmc_extern.c
diff options
context:
space:
mode:
authorCorey Minyard <cminyard@mvista.com>2015-12-17 12:50:19 -0600
committerMichael S. Tsirkin <mst@redhat.com>2015-12-22 18:39:19 +0200
commitad2a8077188f05155b07489747ea682070eb135f (patch)
tree9b381cfde31b6b4702f537c8f7a0759806eb11bf /hw/ipmi/ipmi_bmc_extern.c
parent44d3db0d969ccfd70d81231ac531c724adf9e4ae (diff)
downloadfocaccia-qemu-ad2a8077188f05155b07489747ea682070eb135f.tar.gz
focaccia-qemu-ad2a8077188f05155b07489747ea682070eb135f.zip
ipmi: Add a force off function
Allow the IPMI interface to request a forced power off.

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 'hw/ipmi/ipmi_bmc_extern.c')
-rw-r--r--hw/ipmi/ipmi_bmc_extern.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/ipmi/ipmi_bmc_extern.c b/hw/ipmi/ipmi_bmc_extern.c
index 05b91212e1..56073b37ae 100644
--- a/hw/ipmi/ipmi_bmc_extern.c
+++ b/hw/ipmi/ipmi_bmc_extern.c
@@ -30,6 +30,7 @@
 #include <stdint.h>
 #include "qemu/timer.h"
 #include "sysemu/char.h"
+#include "sysemu/sysemu.h"
 #include "hw/ipmi/ipmi.h"
 
 #define VM_MSG_CHAR        0xA0 /* Marks end of message */
@@ -52,6 +53,7 @@
 #define   VM_CAPABILITIES_IRQ      0x04
 #define   VM_CAPABILITIES_NMI      0x08
 #define   VM_CAPABILITIES_ATTN     0x10
+#define VM_CMD_FORCEOFF            0x09
 
 #define TYPE_IPMI_BMC_EXTERN "ipmi-bmc-extern"
 #define IPMI_BMC_EXTERN(obj) OBJECT_CHECK(IPMIBmcExtern, (obj), \
@@ -268,6 +270,10 @@ static void handle_hw_op(IPMIBmcExtern *ibe, unsigned char hw_op)
     case VM_CMD_SEND_NMI:
         k->do_hw_op(s, IPMI_SEND_NMI, 0);
         break;
+
+    case VM_CMD_FORCEOFF:
+        qemu_system_shutdown_request();
+        break;
     }
 }