Commit 7300c9b5 authored by Detlev Casanova's avatar Detlev Casanova Committed by David S. Miller

net: phy: realtek: Add optional external PHY clock

In some cases, the PHY can use an external clock source instead of a
crystal.

Add an optional clock in the phy node to make sure that the clock source
is enabled, if specified, before probing.
Reviewed-by: default avatarFlorian Fainelli <florian.fainelli@broadcom.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDetlev Casanova <detlev.casanova@collabora.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4cab498f
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/phy.h> #include <linux/phy.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/clk.h>
#define RTL821x_PHYSR 0x11 #define RTL821x_PHYSR 0x11
#define RTL821x_PHYSR_DUPLEX BIT(13) #define RTL821x_PHYSR_DUPLEX BIT(13)
...@@ -80,6 +81,7 @@ struct rtl821x_priv { ...@@ -80,6 +81,7 @@ struct rtl821x_priv {
u16 phycr1; u16 phycr1;
u16 phycr2; u16 phycr2;
bool has_phycr2; bool has_phycr2;
struct clk *clk;
}; };
static int rtl821x_read_page(struct phy_device *phydev) static int rtl821x_read_page(struct phy_device *phydev)
...@@ -103,6 +105,11 @@ static int rtl821x_probe(struct phy_device *phydev) ...@@ -103,6 +105,11 @@ static int rtl821x_probe(struct phy_device *phydev)
if (!priv) if (!priv)
return -ENOMEM; return -ENOMEM;
priv->clk = devm_clk_get_optional_enabled(dev, NULL);
if (IS_ERR(priv->clk))
return dev_err_probe(dev, PTR_ERR(priv->clk),
"failed to get phy clock\n");
ret = phy_read_paged(phydev, 0xa43, RTL8211F_PHYCR1); ret = phy_read_paged(phydev, 0xa43, RTL8211F_PHYCR1);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment