
The patch adding temperature sensor support for r8169 has been removed upstream
and the functionality will be added to Realtek PHY instead:
1f691a1fc4
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From 2cd02f2fdd8a92e5b6b85ff64eab0fc549b30c07 Mon Sep 17 00:00:00 2001
|
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Date: Sat, 2 Nov 2024 14:49:01 +0100
|
|
Subject: [PATCH] r8169: improve initialization of RSS registers on
|
|
RTL8125/RTL8126
|
|
|
|
Replace the register addresses with the names used in r8125/r8126
|
|
vendor driver, and consider that RSS_CTRL_8125 is a 32 bit register.
|
|
|
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Link: https://patch.msgid.link/3bf2f340-b369-4174-97bf-fd38d4217492@gmail.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/ethernet/realtek/r8169_main.c | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/ethernet/realtek/r8169_main.c
|
|
+++ b/drivers/net/ethernet/realtek/r8169_main.c
|
|
@@ -346,6 +346,8 @@ enum rtl8125_registers {
|
|
TxPoll_8125 = 0x90,
|
|
LEDSEL3 = 0x96,
|
|
MAC0_BKP = 0x19e0,
|
|
+ RSS_CTRL_8125 = 0x4500,
|
|
+ Q_NUM_CTRL_8125 = 0x4800,
|
|
EEE_TXIDLE_TIMER_8125 = 0x6048,
|
|
};
|
|
|
|
@@ -3769,8 +3771,8 @@ static void rtl_hw_start_8125_common(str
|
|
rtl_pcie_state_l2l3_disable(tp);
|
|
|
|
RTL_W16(tp, 0x382, 0x221b);
|
|
- RTL_W8(tp, 0x4500, 0);
|
|
- RTL_W16(tp, 0x4800, 0);
|
|
+ RTL_W32(tp, RSS_CTRL_8125, 0);
|
|
+ RTL_W16(tp, Q_NUM_CTRL_8125, 0);
|
|
|
|
/* disable UPS */
|
|
r8168_mac_ocp_modify(tp, 0xd40a, 0x0010, 0x0000);
|