net: phy: fixed_phy: add helper fixed_phy_find

Factor out the functionality to search for a fixed_phy matching an
address. This improves readability of the code.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Heiner Kallweit
2025-09-07 00:01:52 +02:00
committed by Jakub Kicinski
parent 0625b3bfbb
commit f8db55c8eb
+41 -38
View File
@@ -40,42 +40,49 @@ static struct fixed_mdio_bus platform_fmb = {
.phys = LIST_HEAD_INIT(platform_fmb.phys), .phys = LIST_HEAD_INIT(platform_fmb.phys),
}; };
int fixed_phy_change_carrier(struct net_device *dev, bool new_carrier) static struct fixed_phy *fixed_phy_find(int addr)
{ {
struct fixed_mdio_bus *fmb = &platform_fmb; struct fixed_mdio_bus *fmb = &platform_fmb;
struct fixed_phy *fp;
list_for_each_entry(fp, &fmb->phys, node) {
if (fp->addr == addr)
return fp;
}
return NULL;
}
int fixed_phy_change_carrier(struct net_device *dev, bool new_carrier)
{
struct phy_device *phydev = dev->phydev; struct phy_device *phydev = dev->phydev;
struct fixed_phy *fp; struct fixed_phy *fp;
if (!phydev || !phydev->mdio.bus) if (!phydev || !phydev->mdio.bus)
return -EINVAL; return -EINVAL;
list_for_each_entry(fp, &fmb->phys, node) { fp = fixed_phy_find(phydev->mdio.addr);
if (fp->addr == phydev->mdio.addr) { if (!fp)
fp->status.link = new_carrier; return -EINVAL;
return 0;
} fp->status.link = new_carrier;
}
return -EINVAL; return 0;
} }
EXPORT_SYMBOL_GPL(fixed_phy_change_carrier); EXPORT_SYMBOL_GPL(fixed_phy_change_carrier);
static int fixed_mdio_read(struct mii_bus *bus, int phy_addr, int reg_num) static int fixed_mdio_read(struct mii_bus *bus, int phy_addr, int reg_num)
{ {
struct fixed_mdio_bus *fmb = bus->priv;
struct fixed_phy *fp; struct fixed_phy *fp;
list_for_each_entry(fp, &fmb->phys, node) { fp = fixed_phy_find(phy_addr);
if (fp->addr == phy_addr) { if (!fp)
/* Issue callback if user registered it. */ return 0xffff;
if (fp->link_update)
fp->link_update(fp->phydev->attached_dev,
&fp->status);
return swphy_read_reg(reg_num, &fp->status); if (fp->link_update)
} fp->link_update(fp->phydev->attached_dev, &fp->status);
}
return 0xFFFF; return swphy_read_reg(reg_num, &fp->status);
} }
static int fixed_mdio_write(struct mii_bus *bus, int phy_addr, int reg_num, static int fixed_mdio_write(struct mii_bus *bus, int phy_addr, int reg_num,
@@ -93,21 +100,19 @@ int fixed_phy_set_link_update(struct phy_device *phydev,
int (*link_update)(struct net_device *, int (*link_update)(struct net_device *,
struct fixed_phy_status *)) struct fixed_phy_status *))
{ {
struct fixed_mdio_bus *fmb = &platform_fmb;
struct fixed_phy *fp; struct fixed_phy *fp;
if (!phydev || !phydev->mdio.bus) if (!phydev || !phydev->mdio.bus)
return -EINVAL; return -EINVAL;
list_for_each_entry(fp, &fmb->phys, node) { fp = fixed_phy_find(phydev->mdio.addr);
if (fp->addr == phydev->mdio.addr) { if (!fp)
fp->link_update = link_update; return -ENOENT;
fp->phydev = phydev;
return 0;
}
}
return -ENOENT; fp->link_update = link_update;
fp->phydev = phydev;
return 0;
} }
EXPORT_SYMBOL_GPL(fixed_phy_set_link_update); EXPORT_SYMBOL_GPL(fixed_phy_set_link_update);
@@ -144,17 +149,15 @@ static DEFINE_IDA(phy_fixed_ida);
static void fixed_phy_del(int phy_addr) static void fixed_phy_del(int phy_addr)
{ {
struct fixed_mdio_bus *fmb = &platform_fmb; struct fixed_phy *fp;
struct fixed_phy *fp, *tmp;
list_for_each_entry_safe(fp, tmp, &fmb->phys, node) { fp = fixed_phy_find(phy_addr);
if (fp->addr == phy_addr) { if (!fp)
list_del(&fp->node); return;
kfree(fp);
ida_free(&phy_fixed_ida, phy_addr); list_del(&fp->node);
return; kfree(fp);
} ida_free(&phy_fixed_ida, phy_addr);
}
} }
struct phy_device *fixed_phy_register(const struct fixed_phy_status *status, struct phy_device *fixed_phy_register(const struct fixed_phy_status *status,