]> git.baikalelectronics.ru Git - kernel.git/commit
phylib: add reset after clk enable support
authorRichard Leitner <richard.leitner@skidata.com>
Mon, 11 Dec 2017 12:16:58 +0000 (13:16 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 13 Dec 2017 16:22:53 +0000 (11:22 -0500)
commitd6be2a8616c230c03b5d98270b0646a23b8d4da1
treec1140d2c4f2df5c11bfc460bb1500cf1b11149a5
parent7a21b750871eb45b378fac25b27401dd67c6785d
phylib: add reset after clk enable support

Some PHYs need the refclk to be a continuous clock. Therefore they don't
allow turning it off and on again during operation. Nonetheless such a
clock switching is performed by some ETH drivers (namely FEC [1]) for
power saving reasons. An example for an affected PHY is the
SMSC/Microchip LAN8720 in "REF_CLK In Mode".

In order to provide a uniform method to overcome this problem this patch
adds a new phy_driver flag (PHY_RST_AFTER_CLK_EN) and corresponding
function phy_reset_after_clk_enable() to the phylib. These should be
used to trigger reset of the PHY after the refclk is switched on again.

[1] commit 229950af2928 ("net: fec: optimize the clock management to save power")

Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy_device.c
include/linux/phy.h