mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-26 14:19:43 +00:00
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
|
From e3e9e9039fa6ae885c7d5c954d7b9f105fa23e8f Mon Sep 17 00:00:00 2001
|
||
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
||
|
Date: Wed, 6 Nov 2024 17:57:08 +0100
|
||
|
Subject: [PATCH] r8169: align WAKE_PHY handling with r8125/r8126 vendor
|
||
|
drivers
|
||
|
|
||
|
Vendor drivers r8125/r8126 apply this additional magic setting when
|
||
|
enabling WAKE_PHY, so do the same here.
|
||
|
|
||
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
||
|
Reviewed-by: Simon Horman <horms@kernel.org>
|
||
|
Link: https://patch.msgid.link/51130715-45be-4db5-abb7-05d87e1f5df9@gmail.com
|
||
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
||
|
---
|
||
|
drivers/net/ethernet/realtek/r8169_main.c | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
--- a/drivers/net/ethernet/realtek/r8169_main.c
|
||
|
+++ b/drivers/net/ethernet/realtek/r8169_main.c
|
||
|
@@ -1563,6 +1563,9 @@ static void __rtl8169_set_wol(struct rtl
|
||
|
}
|
||
|
|
||
|
r8169_mod_reg8_cond(tp, Config3, LinkUp, wolopts & WAKE_PHY);
|
||
|
+ if (rtl_is_8125(tp))
|
||
|
+ r8168_mac_ocp_modify(tp, 0xe0c6, 0x3f,
|
||
|
+ wolopts & WAKE_PHY ? 0x13 : 0);
|
||
|
r8169_mod_reg8_cond(tp, Config5, UWF, wolopts & WAKE_UCAST);
|
||
|
r8169_mod_reg8_cond(tp, Config5, BWF, wolopts & WAKE_BCAST);
|
||
|
r8169_mod_reg8_cond(tp, Config5, MWF, wolopts & WAKE_MCAST);
|