forked from aptivate/linux-ischool-classmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
r8169-Restore-MAC-address-after-resume-on-buggy-BIOS.patch
81 lines (72 loc) · 2.62 KB
/
r8169-Restore-MAC-address-after-resume-on-buggy-BIOS.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
From patchwork Tue Nov 22 10:35:37 2011
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: r8169: Restore MAC address after resume on buggy BIOS
Date: Tue, 22 Nov 2011 00:35:37 -0000
From: Lee, Chun-Yi <joeyli.kernel@gmail.com>
X-Patchwork-Id: 127058
Message-Id: <1321958137-23281-1-git-send-email-jlee@suse.com>
To: nic_swsd@realtek.com
Cc: netdev@vger.kernel.org, "Lee, Chun-Yi" <jlee@suse.com>,
Hayes Wang <hayeswang@realtek.com>, Francois Romieu <romieu@fr.zoreil.com>
When we test r8169 driver with RTL8111E-VL, found have buggy BIOS
write garbage MAC address (e.g. FF:FF:FF:FF:FF:FF) to extended GigaMAC
registers when S3 resume. And, we also found Realtek Windows driver
can cover this buggy BIOS's problem.
So, this patch add a MAC address check in resume callback function and
restore MAC address if buggy BIOS changed it.
Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
Cc: Hayes Wang <hayeswang@realtek.com>
Cc: Realtek linux nic maintainers <nic_swsd@realtek.com>
Cc: Francois Romieu <romieu@fr.zoreil.com>
---
drivers/net/ethernet/realtek/r8169.c | 33 +++++++++++++++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
index 6f06aa1..91d4a09 100644
--- a/drivers/net/ethernet/realtek/r8169.c
+++ b/drivers/net/ethernet/realtek/r8169.c
@@ -3335,6 +3335,35 @@ static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
spin_unlock_irq(&tp->lock);
}
+static bool rtl_rar_check(struct rtl8169_private *tp, u8 *addr)
+{
+ void __iomem *ioaddr = tp->mmio_addr;
+ u32 high;
+ u32 low;
+
+ low = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
+ high = addr[4] | (addr[5] << 8);
+
+ if (RTL_R32(MAC4) != high)
+ return false;
+ if (RTL_R32(MAC0) != low)
+ return false;
+
+ if (tp->mac_version == RTL_GIGA_MAC_VER_34) {
+ if (rtl_eri_read(ioaddr, 0xe0, ERIAR_EXGMAC) != low)
+ return false;
+ if (rtl_eri_read(ioaddr, 0xe4, ERIAR_EXGMAC) != high)
+ return false;
+ if (rtl_eri_read(ioaddr, 0xf0, ERIAR_EXGMAC) != (low << 16))
+ return false;
+ if (rtl_eri_read(ioaddr, 0xf4, ERIAR_EXGMAC) != (high << 16 |
+ low >> 16))
+ return false;
+ }
+
+ return true;
+}
+
static int rtl_set_mac_address(struct net_device *dev, void *p)
{
struct rtl8169_private *tp = netdev_priv(dev);
@@ -6098,6 +6127,10 @@ static int rtl8169_resume(struct device *device)
rtl8169_init_phy(dev, tp);
+ /* Restore MAC address if buggy BIOS changed it */
+ if (!rtl_rar_check(tp, dev->dev_addr))
+ rtl_rar_set(tp, dev->dev_addr);
+
if (netif_running(dev))
__rtl8169_resume(dev);