From: françois romieu Date: Wed, 20 Jun 2012 12:09:18 +0000 (+0000) Subject: r8169: RxConfig hack for the 8168evl. X-Git-Tag: v2.6.39-400.9.0~338^2~10 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=11a37da97883d7ef9969eaa5cbc6e94249a2b5b4;p=users%2Fjedix%2Flinux-maple.git r8169: RxConfig hack for the 8168evl. The 8168evl (RTL_GIGA_MAC_VER_34) based Gigabyte GA-990FXA motherboards are very prone to NETDEV watchdog problems without this change. See https://bugzilla.kernel.org/show_bug.cgi?id=42899 for instance. I don't know why it *works*. It's depressingly effective though. For the record: - the problem may go along IOMMU (AMD-Vi) errors but it really looks like a red herring. - the patch sets the RX_MULTI_EN bit. If the 8168c doc is any guide, the chipset now fetches several Rx descriptors at a time. - long ago the driver ignored the RX_MULTI_EN bit. e542a2269f232d61270ceddd42b73a4348dee2bb changed the RxConfig settings. Whatever the problem it's now labeled a regression. - Realtek's own driver can identify two different 8168evl devices (CFG_METHOD_16 and CFG_METHOD_17) where the r8169 driver only sees one. It sucks. (cherry picked from commit eb2dc35d99028b698cdedba4f5522bc43e576bd2) Signed-off-by: Francois Romieu Signed-off-by: David S. Miller Signed-off-by: Joe Jin --- diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 608894a16b79..71ec002c5ffb 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c @@ -3881,6 +3881,7 @@ static void rtl_init_rxcfg(struct rtl8169_private *tp) case RTL_GIGA_MAC_VER_22: case RTL_GIGA_MAC_VER_23: case RTL_GIGA_MAC_VER_24: + case RTL_GIGA_MAC_VER_34: RTL_W32(RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST); break; default: