Message ID | 20210806091556.1297186-376-nic_swsd@realtek.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9c40186488145b57f800de120f0872168772adfe |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | r8169: adjust the setting for RTL8106e | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | warning | 2 maintainers not CCed: davem@davemloft.net kuba@kernel.org |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 9 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
On 06.08.2021 11:15, Hayes Wang wrote: > The original L0 and L1 entrance latencies of RTL8106e are 4us. And > they cause the delay of link-up interrupt when enabling ASPM. Change > the L0 entrance latency to 7us and L1 entrance latency to 32us. Then, > they could avoid the issue. > > Tested-by: Koba Ko <koba.ko@canonical.com> > Signed-off-by: Hayes Wang <hayeswang@realtek.com> > --- > drivers/net/ethernet/realtek/r8169_main.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c > index d2647036b1e7..2c643ec36bdf 100644 > --- a/drivers/net/ethernet/realtek/r8169_main.c > +++ b/drivers/net/ethernet/realtek/r8169_main.c > @@ -3502,6 +3502,9 @@ static void rtl_hw_start_8106(struct rtl8169_private *tp) > RTL_W8(tp, MCU, RTL_R8(tp, MCU) | EN_NDP | EN_OOB_RESET); > RTL_W8(tp, DLLPR, RTL_R8(tp, DLLPR) & ~PFM_EN); > > + /* The default value is 0x13. Change it to 0x2f */ > + rtl_csi_access_enable(tp, 0x2f); Most chip versions use rtl_set_def_aspm_entry_latency() that sets the value to 0x27. Does this value also work for RTL8106e? Then we could simply use the same call here. Can you explain how the L0 and L1 times in us map to the register value? Then we could add a function that doesn't work with a magic value but takes the L0 and L1 times in us as parameter. > + > rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000); > > /* disable EEE */ >
Heiner Kallweit <hkallweit1@gmail.com> > Sent: Saturday, August 7, 2021 5:28 AM [...] > Most chip versions use rtl_set_def_aspm_entry_latency() that sets > the value to 0x27. Does this value also work for RTL8106e? No, it doesn't work. > Can you explain how the L0 and L1 times in us map to the > register value? Then we could add a function that doesn't work > with a magic value but takes the L0 and L1 times in us as > parameter. L0 (bit 0~2): 0: 1us 1: 2us 2: 3us 3: 4us 4: 5us 5: 6us 6: 7us 7: 7us (The maximum is 7us) L1 (bit 3~5): 0: 1us 1: 2us 2: 4us 3: 8us 4: 16us 5: 32us 6: 64us 7: 64us (The maximum is 64us) Best Regards, Hayes
diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c index d2647036b1e7..2c643ec36bdf 100644 --- a/drivers/net/ethernet/realtek/r8169_main.c +++ b/drivers/net/ethernet/realtek/r8169_main.c @@ -3502,6 +3502,9 @@ static void rtl_hw_start_8106(struct rtl8169_private *tp) RTL_W8(tp, MCU, RTL_R8(tp, MCU) | EN_NDP | EN_OOB_RESET); RTL_W8(tp, DLLPR, RTL_R8(tp, DLLPR) & ~PFM_EN); + /* The default value is 0x13. Change it to 0x2f */ + rtl_csi_access_enable(tp, 0x2f); + rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000); /* disable EEE */