drivers: net: cpsw: fix parsing of phy-handle DT property in dual_emac config
Commit9e42f71526
("drivers: net: cpsw: add phy-handle parsing") saved the "phy-handle" phandle into a new cpsw_priv field. However, phy connections are per-slave, so the phy_node field should be in cpsw_slave_data rather than cpsw_priv. This would go unnoticed in a single emac configuration. But in dual_emac mode, the last "phy-handle" property parsed for either slave would be used by both of them, causing them both to refer to the same phy_device. Fixes:9e42f71526
("drivers: net: cpsw: add phy-handle parsing") Signed-off-by: David Rivshin <drivshin@allworx.com> Tested-by: Nicolas Chauvet <kwizart@gmail.com> Tested-by: Andrew Goodbody <andrew.goodbody@cambrionix.com> Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com> Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bbdd09ebd7
commit
552165bcf7
|
@ -367,7 +367,6 @@ struct cpsw_priv {
|
||||||
spinlock_t lock;
|
spinlock_t lock;
|
||||||
struct platform_device *pdev;
|
struct platform_device *pdev;
|
||||||
struct net_device *ndev;
|
struct net_device *ndev;
|
||||||
struct device_node *phy_node;
|
|
||||||
struct napi_struct napi_rx;
|
struct napi_struct napi_rx;
|
||||||
struct napi_struct napi_tx;
|
struct napi_struct napi_tx;
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
|
@ -1148,8 +1147,8 @@ static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
|
||||||
cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
|
cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
|
||||||
1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
|
1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
|
||||||
|
|
||||||
if (priv->phy_node)
|
if (slave->data->phy_node)
|
||||||
slave->phy = of_phy_connect(priv->ndev, priv->phy_node,
|
slave->phy = of_phy_connect(priv->ndev, slave->data->phy_node,
|
||||||
&cpsw_adjust_link, 0, slave->data->phy_if);
|
&cpsw_adjust_link, 0, slave->data->phy_if);
|
||||||
else
|
else
|
||||||
slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
|
slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
|
||||||
|
@ -1940,12 +1939,11 @@ static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
|
||||||
slave->port_vlan = data->dual_emac_res_vlan;
|
slave->port_vlan = data->dual_emac_res_vlan;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cpsw_probe_dt(struct cpsw_priv *priv,
|
static int cpsw_probe_dt(struct cpsw_platform_data *data,
|
||||||
struct platform_device *pdev)
|
struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device_node *node = pdev->dev.of_node;
|
struct device_node *node = pdev->dev.of_node;
|
||||||
struct device_node *slave_node;
|
struct device_node *slave_node;
|
||||||
struct cpsw_platform_data *data = &priv->data;
|
|
||||||
int i = 0, ret;
|
int i = 0, ret;
|
||||||
u32 prop;
|
u32 prop;
|
||||||
|
|
||||||
|
@ -2033,7 +2031,8 @@ static int cpsw_probe_dt(struct cpsw_priv *priv,
|
||||||
if (strcmp(slave_node->name, "slave"))
|
if (strcmp(slave_node->name, "slave"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
priv->phy_node = of_parse_phandle(slave_node, "phy-handle", 0);
|
slave_data->phy_node = of_parse_phandle(slave_node,
|
||||||
|
"phy-handle", 0);
|
||||||
parp = of_get_property(slave_node, "phy_id", &lenp);
|
parp = of_get_property(slave_node, "phy_id", &lenp);
|
||||||
if (of_phy_is_fixed_link(slave_node)) {
|
if (of_phy_is_fixed_link(slave_node)) {
|
||||||
struct device_node *phy_node;
|
struct device_node *phy_node;
|
||||||
|
@ -2275,7 +2274,7 @@ static int cpsw_probe(struct platform_device *pdev)
|
||||||
/* Select default pin state */
|
/* Select default pin state */
|
||||||
pinctrl_pm_select_default_state(&pdev->dev);
|
pinctrl_pm_select_default_state(&pdev->dev);
|
||||||
|
|
||||||
if (cpsw_probe_dt(priv, pdev)) {
|
if (cpsw_probe_dt(&priv->data, pdev)) {
|
||||||
dev_err(&pdev->dev, "cpsw: platform data missing\n");
|
dev_err(&pdev->dev, "cpsw: platform data missing\n");
|
||||||
ret = -ENODEV;
|
ret = -ENODEV;
|
||||||
goto clean_runtime_disable_ret;
|
goto clean_runtime_disable_ret;
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
|
|
||||||
struct cpsw_slave_data {
|
struct cpsw_slave_data {
|
||||||
|
struct device_node *phy_node;
|
||||||
char phy_id[MII_BUS_ID_SIZE];
|
char phy_id[MII_BUS_ID_SIZE];
|
||||||
int phy_if;
|
int phy_if;
|
||||||
u8 mac_addr[ETH_ALEN];
|
u8 mac_addr[ETH_ALEN];
|
||||||
|
|
Loading…
Reference in New Issue