From: Bernhard Beschow Date: Wed, 11 Dec 2024 15:30:52 +0000 (+0000) Subject: hw/net/lan9118_phy: Add missing 100 mbps full duplex advertisement X-Git-Tag: v10.0.0-rc0~124^2~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=973a2fac48590d9b4e6f1601a13c7f96a1fd5deb;p=thirdparty%2Fqemu.git hw/net/lan9118_phy: Add missing 100 mbps full duplex advertisement The real device advertises this mode and the device model already advertises 100 mbps half duplex and 10 mbps full+half duplex. So advertise this mode to make the model more realistic. Reviewed-by: Peter Maydell Signed-off-by: Bernhard Beschow Tested-by: Guenter Roeck Message-id: 20241102125724.532843-6-shentey@gmail.com Signed-off-by: Peter Maydell --- diff --git a/hw/net/lan9118_phy.c b/hw/net/lan9118_phy.c index 874dae4155a..5c53a4a1e3f 100644 --- a/hw/net/lan9118_phy.c +++ b/hw/net/lan9118_phy.c @@ -110,8 +110,8 @@ void lan9118_phy_write(Lan9118PhyState *s, int reg, uint16_t val) break; case MII_ANAR: s->advertise = (val & (MII_ANAR_RFAULT | MII_ANAR_PAUSE_ASYM | - MII_ANAR_PAUSE | MII_ANAR_10FD | MII_ANAR_10 | - MII_ANAR_SELECT)) + MII_ANAR_PAUSE | MII_ANAR_TXFD | MII_ANAR_10FD | + MII_ANAR_10 | MII_ANAR_SELECT)) | MII_ANAR_TX; break; case 30: /* Interrupt mask */