]> Git Repo - qemu.git/commitdiff
serial: refine serial_thr_ipending_needed
authorPaolo Bonzini <[email protected]>
Mon, 22 Dec 2014 07:51:57 +0000 (08:51 +0100)
committerPaolo Bonzini <[email protected]>
Sat, 3 Jan 2015 08:22:12 +0000 (09:22 +0100)
If the THR interrupt is disabled, there is no need to migrate thr_ipending
because LSR.THRE will be sampled again when the interrupt is enabled.
(This is the behavior that is not documented in the datasheet, but
relied on by Windows!)

Note that in this case IIR will never be 0x2 so, if thr_ipending were
to be one, QEMU would produce the subsection.

Reported-by: Igor Mammedov <[email protected]>
Cc: [email protected]
Signed-off-by: Paolo Bonzini <[email protected]>
hw/char/serial.c

index 6d522ff4f326eae8ed88387e035918498a27f7b7..3aca87416de2b638e06bc64deac4e224f2c42982 100644 (file)
@@ -645,8 +645,17 @@ static int serial_post_load(void *opaque, int version_id)
 static bool serial_thr_ipending_needed(void *opaque)
 {
     SerialState *s = opaque;
-    bool expected_value = ((s->iir & UART_IIR_ID) == UART_IIR_THRI);
-    return s->thr_ipending != expected_value;
+
+    if (s->ier & UART_IER_THRI) {
+        bool expected_value = ((s->iir & UART_IIR_ID) == UART_IIR_THRI);
+        return s->thr_ipending != expected_value;
+    } else {
+        /* LSR.THRE will be sampled again when the interrupt is
+         * enabled.  thr_ipending is not used in this case, do
+         * not migrate it.
+         */
+        return false;
+    }
 }
 
 const VMStateDescription vmstate_serial_thr_ipending = {
This page took 0.026261 seconds and 4 git commands to generate.