Re: [PATCH] r8169: remember WOL preferences on driver load
From: Peter Wu <hidden>
Date: 2013-08-14 12:56:58
On Tuesday 13 August 2013 23:28:43 Francois Romieu wrote:
quoted
The r8168 vendor driver used to write to both Config1 and Config5, but in recent versions, this is commented out. Here we keep writing PMEnable to Config1 because there may be older chips where PMEnable is not sticky.<sneak regression paranoia> Please include the bits you want to keep in the "&" mask. </sneak regression paranoia>
I previously tried:
RTL_W8(Config5, RTL_R8(Config5) & (BWF | MWF | UWF | LanWake | PMEStatus));
but then I realized that the Realtek r8168 vendor driver does not touch this
register on load. The bits not included in the above mask are 2, 3 and 7. On
most datasheets for recent hardware, these are marked reserved.
For RTL8100C(L) (datasheet 1.3 from 2007), RTL8139D(L) (datasheet 1.3 from
2005) and RTL8101L (1.6 from 2008)
- bit 2 is Link Down Power Saving mode (1=disable, 0=enable; loaded from
EEPROM on RTL8139D(L))
- bit 3 is FIFOAddrPtr (internal use for testing FIFO SRAM, default 0)
- bit 7 is reserved
I'll let Hayes judge which approach is more appropriate.
Regards,
Peter