diff options
author | Marek BehĂșn | 2022-04-07 00:32:58 +0200 |
---|---|---|
committer | Ramon Fried | 2022-04-10 08:44:12 +0300 |
commit | 351bfa6ebdcc454441b32976e895002a5b0523b5 (patch) | |
tree | 31ad0bbc05cfd6b56c7575febad1b45fc1c21e06 /include/miiphy.h | |
parent | f3dd213e151ece2a382e730f5e75156536b2419d (diff) |
net: mdio-uclass: add wrappers for read/write/reset operations
Add wrappers dm_mdio_read(), dm_mdio_write() and dm_mdio_reset() for
DM MDIO's .read(), .write() and .reset() operations.
Signed-off-by: Marek BehĂșn <marek.behun@nic.cz>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Diffstat (limited to 'include/miiphy.h')
-rw-r--r-- | include/miiphy.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/miiphy.h b/include/miiphy.h index 235ae066ddd..110921f20d2 100644 --- a/include/miiphy.h +++ b/include/miiphy.h @@ -158,6 +158,37 @@ struct mdio_ops { void dm_mdio_probe_devices(void); /** + * dm_mdio_read - Wrapper over .read() operation for DM MDIO + * + * @mdiodev: mdio device + * @addr: PHY address on MDIO bus + * @devad: device address on PHY if C45; should be MDIO_DEVAD_NONE if C22 + * @reg: register address + * Return: register value if non-negative, -error code otherwise + */ +int dm_mdio_read(struct udevice *mdio_dev, int addr, int devad, int reg); + +/** + * dm_mdio_write - Wrapper over .write() operation for DM MDIO + * + * @mdiodev: mdio device + * @addr: PHY address on MDIO bus + * @devad: device address on PHY if C45; should be MDIO_DEVAD_NONE if C22 + * @reg: register address + * @val: value to write + * Return: 0 on success, -error code otherwise + */ +int dm_mdio_write(struct udevice *mdio_dev, int addr, int devad, int reg, u16 val); + +/** + * dm_mdio_reset - Wrapper over .reset() operation for DM MDIO + * + * @mdiodev: mdio device + * Return: 0 on success, -error code otherwise + */ +int dm_mdio_reset(struct udevice *mdio_dev); + +/** * dm_mdio_phy_connect - Wrapper over phy_connect for DM MDIO * * @mdiodev: mdio device the PHY is accesible on |