qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] 2nd try: [PATCH] fix for bad macaddr of e1000 in Windows 20


From: Naphtali Sprei
Subject: [Qemu-devel] 2nd try: [PATCH] fix for bad macaddr of e1000 in Windows 2003 server with original Microsoft driver
Date: Wed, 15 Jul 2009 15:18:39 +0300
User-agent: Thunderbird 2.0.0.22 (X11/20090608)

After comments from address@hidden and address@hidden, here's the 2nd try:


The sequence of reading from eeprom is "offset by one" moved because of a false detection of a clock cycle after an eeprom reset. Keeping the last clock value after a reset keeps it in sync.

Signed-off-by: Naphtali Sprei <address@hidden>
---
hw/e1000.c |    2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/hw/e1000.c b/hw/e1000.c
index 4ac8918..15598ab 100644
--- a/hw/e1000.c
+++ b/hw/e1000.c
@@ -262,6 +262,8 @@ set_eecd(E1000State *s, int index, uint32_t val)
    }
if (!(val & E1000_EECD_CS)) { // rising, no CS (EEPROM reset)
        memset(&s->eecd_state, 0, sizeof s->eecd_state);
+ // restore old_eecd's E1000_EECD_SK to avoid false detection of a clock edge
+        s->eecd_state.old_eecd = E1000_EECD_SK;
        return;
    }
    s->eecd_state.val_in <<= 1;
--
1.5.5.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]