qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [HACK] make vmmouse work with KVM
@ 2009-08-17 14:47 Reimar Döffinger
  2009-08-17 15:11 ` Anthony Liguori
  2009-08-17 15:29 ` [Qemu-devel] " Reimar Döffinger
  0 siblings, 2 replies; 10+ messages in thread
From: Reimar Döffinger @ 2009-08-17 14:47 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 410 bytes --]

Hello,
vmmouse uses a giant hack: it uses io ports (in instruction) but passes
data via registers.
This currently does not work since the qemu CPU registers are
(understandably) not kept in sync with the real KVM registers for this
operation.
Attached patch detects access to the vmmouse port and loads/stores CPU
registers into/from the QEMU state.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>

[-- Attachment #2: kvm_vmmouse.diff --]
[-- Type: text/plain, Size: 1003 bytes --]

diff --git a/kvm-all.c b/kvm-all.c
index f669c3a..207378b 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -611,11 +611,21 @@ int kvm_cpu_exec(CPUState *env)
         switch (run->exit_reason) {
         case KVM_EXIT_IO:
             dprintf("handle_io\n");
+#if defined(TARGET_I386) || defined(TARGET_X86_64)
+            // HACK to make vmport/vmmouse work
+            if (run->io.port == 0x5658)
+                kvm_arch_get_registers(env);
+#endif
             ret = kvm_handle_io(env, run->io.port,
                                 (uint8_t *)run + run->io.data_offset,
                                 run->io.direction,
                                 run->io.size,
                                 run->io.count);
+#if defined(TARGET_I386) || defined(TARGET_X86_64)
+            // HACK to make vmport/vmmouse work
+            if (run->io.port == 0x5658)
+                kvm_arch_put_registers(env);
+#endif
             break;
         case KVM_EXIT_MMIO:
             dprintf("handle_mmio\n");

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-08-28 17:16 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-17 14:47 [Qemu-devel] [HACK] make vmmouse work with KVM Reimar Döffinger
2009-08-17 15:11 ` Anthony Liguori
2009-08-17 15:45   ` Reimar Döffinger
2009-08-17 16:44     ` [Qemu-devel] " Paolo Bonzini
2009-08-17 17:00       ` Reimar Döffinger
     [not found]       ` <20090817170017.GB1835@1und1.de>
2009-08-17 17:16         ` Paolo Bonzini
2009-08-17 17:32           ` Reimar Döffinger
2009-08-28 15:53             ` Reimar Döffinger
2009-08-28 17:16               ` Anthony Liguori
2009-08-17 15:29 ` [Qemu-devel] " Reimar Döffinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).