Commit 03430fa1 authored by David S. Miller's avatar David S. Miller

Merge branch 'bcm_sf2-fixes'

Florian Fainelli says:

====================
net: dsa: bcm_sf2: Couple fixes

Here are a couple of fixes for bcm_sf2, please queue these up for -stable
as well, thank you very much!
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents a2cd64f3 2cfe8f82
...@@ -393,7 +393,7 @@ static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum) ...@@ -393,7 +393,7 @@ static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr)) if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0); return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
else else
return mdiobus_read(priv->master_mii_bus, addr, regnum); return mdiobus_read_nested(priv->master_mii_bus, addr, regnum);
} }
static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum, static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
...@@ -407,7 +407,7 @@ static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum, ...@@ -407,7 +407,7 @@ static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr)) if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val); bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
else else
mdiobus_write(priv->master_mii_bus, addr, regnum, val); mdiobus_write_nested(priv->master_mii_bus, addr, regnum, val);
return 0; return 0;
} }
...@@ -982,6 +982,7 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev) ...@@ -982,6 +982,7 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev)
const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME; const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
struct device_node *dn = pdev->dev.of_node; struct device_node *dn = pdev->dev.of_node;
struct b53_platform_data *pdata; struct b53_platform_data *pdata;
struct dsa_switch_ops *ops;
struct bcm_sf2_priv *priv; struct bcm_sf2_priv *priv;
struct b53_device *dev; struct b53_device *dev;
struct dsa_switch *ds; struct dsa_switch *ds;
...@@ -995,6 +996,10 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev) ...@@ -995,6 +996,10 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev)
if (!priv) if (!priv)
return -ENOMEM; return -ENOMEM;
ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
if (!ops)
return -ENOMEM;
dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv); dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
if (!dev) if (!dev)
return -ENOMEM; return -ENOMEM;
...@@ -1014,6 +1019,8 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev) ...@@ -1014,6 +1019,8 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev)
ds = dev->ds; ds = dev->ds;
/* Override the parts that are non-standard wrt. normal b53 devices */ /* Override the parts that are non-standard wrt. normal b53 devices */
memcpy(ops, ds->ops, sizeof(*ops));
ds->ops = ops;
ds->ops->get_tag_protocol = bcm_sf2_sw_get_tag_protocol; ds->ops->get_tag_protocol = bcm_sf2_sw_get_tag_protocol;
ds->ops->setup = bcm_sf2_sw_setup; ds->ops->setup = bcm_sf2_sw_setup;
ds->ops->get_phy_flags = bcm_sf2_sw_get_phy_flags; ds->ops->get_phy_flags = bcm_sf2_sw_get_phy_flags;
......
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