summaryrefslogtreecommitdiff
path: root/xen-all.c
diff options
context:
space:
mode:
authorAnthony PERARD <anthony.perard@citrix.com>2010-06-30 12:58:34 +0100
committerAlexander Graf <agraf@suse.de>2011-05-08 10:10:00 +0200
commit29d3ccde82a0d782b81da39342fb3e3bcf547537 (patch)
tree3042f903723b14b37f5887a32f849bbae0b4a411 /xen-all.c
parente0e7e67b455afa254356acdac1254653f6eed47b (diff)
downloadqemu-29d3ccde82a0d782b81da39342fb3e3bcf547537.tar.gz
xen: Add xenfv machine
Introduce the Xen FV (Fully Virtualized) machine to Qemu, some more Xen specific call will be added in further patches. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'xen-all.c')
-rw-r--r--xen-all.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/xen-all.c b/xen-all.c
index e2872f9527..0b984b25a6 100644
--- a/xen-all.c
+++ b/xen-all.c
@@ -9,6 +9,25 @@
#include "hw/xen_common.h"
#include "hw/xen_backend.h"
+/* VCPU Operations, MMIO, IO ring ... */
+
+static void xen_reset_vcpu(void *opaque)
+{
+ CPUState *env = opaque;
+
+ env->halted = 1;
+}
+
+void xen_vcpu_init(void)
+{
+ CPUState *first_cpu;
+
+ if ((first_cpu = qemu_get_cpu(0))) {
+ qemu_register_reset(xen_reset_vcpu, first_cpu);
+ xen_reset_vcpu(first_cpu);
+ }
+}
+
/* Initialise Xen */
int xen_init(void)
@@ -21,3 +40,8 @@ int xen_init(void)
return 0;
}
+
+int xen_hvm_init(void)
+{
+ return 0;
+}