Thomas Gleixner | 55716d2 | 2019-06-01 10:08:42 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Grant Likely | 8bc487d | 2009-04-25 12:52:56 +0000 | [diff] [blame] | 2 | /* |
| 3 | * OF helpers for the MDIO (Ethernet PHY) API |
| 4 | * |
| 5 | * Copyright (c) 2009 Secret Lab Technologies, Ltd. |
Grant Likely | 8bc487d | 2009-04-25 12:52:56 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __LINUX_OF_MDIO_H |
| 9 | #define __LINUX_OF_MDIO_H |
| 10 | |
Bartosz Golaszewski | 14eeb6e | 2020-06-29 14:03:45 +0200 | [diff] [blame] | 11 | #include <linux/device.h> |
Grant Likely | 8bc487d | 2009-04-25 12:52:56 +0000 | [diff] [blame] | 12 | #include <linux/phy.h> |
| 13 | #include <linux/of.h> |
| 14 | |
Florian Fainelli | e6e14f6 | 2017-03-23 10:01:17 -0700 | [diff] [blame] | 15 | #if IS_ENABLED(CONFIG_OF_MDIO) |
Bartosz Golaszewski | a0bd96f | 2020-06-29 14:03:44 +0200 | [diff] [blame] | 16 | bool of_mdiobus_child_is_phy(struct device_node *child); |
| 17 | int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np); |
Bartosz Golaszewski | 14eeb6e | 2020-06-29 14:03:45 +0200 | [diff] [blame] | 18 | int devm_of_mdiobus_register(struct device *dev, struct mii_bus *mdio, |
| 19 | struct device_node *np); |
Russell King | b5b6775 | 2020-09-23 18:41:22 +0300 | [diff] [blame] | 20 | struct mdio_device *of_mdio_find_device(struct device_node *np); |
Bartosz Golaszewski | a0bd96f | 2020-06-29 14:03:44 +0200 | [diff] [blame] | 21 | struct phy_device *of_phy_find_device(struct device_node *phy_np); |
| 22 | struct phy_device * |
| 23 | of_phy_connect(struct net_device *dev, struct device_node *phy_np, |
| 24 | void (*hndlr)(struct net_device *), u32 flags, |
| 25 | phy_interface_t iface); |
| 26 | struct phy_device * |
Dongpo Li | b786241 | 2016-07-15 16:26:34 +0800 | [diff] [blame] | 27 | of_phy_get_and_connect(struct net_device *dev, struct device_node *np, |
| 28 | void (*hndlr)(struct net_device *)); |
Bartosz Golaszewski | a0bd96f | 2020-06-29 14:03:44 +0200 | [diff] [blame] | 29 | struct phy_device * |
| 30 | of_phy_attach(struct net_device *dev, struct device_node *phy_np, |
| 31 | u32 flags, phy_interface_t iface); |
Grant Likely | 8bc487d | 2009-04-25 12:52:56 +0000 | [diff] [blame] | 32 | |
Bartosz Golaszewski | a0bd96f | 2020-06-29 14:03:44 +0200 | [diff] [blame] | 33 | struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np); |
| 34 | int of_phy_register_fixed_link(struct device_node *np); |
| 35 | void of_phy_deregister_fixed_link(struct device_node *np); |
| 36 | bool of_phy_is_fixed_link(struct device_node *np); |
| 37 | int of_mdiobus_phy_device_register(struct mii_bus *mdio, struct phy_device *phy, |
| 38 | struct device_node *child, u32 addr); |
Jon Mason | 4798a71 | 2017-06-13 10:56:08 -0400 | [diff] [blame] | 39 | |
| 40 | static inline int of_mdio_parse_addr(struct device *dev, |
| 41 | const struct device_node *np) |
| 42 | { |
| 43 | u32 addr; |
| 44 | int ret; |
| 45 | |
| 46 | ret = of_property_read_u32(np, "reg", &addr); |
| 47 | if (ret < 0) { |
| 48 | dev_err(dev, "%s has invalid PHY address\n", np->full_name); |
| 49 | return ret; |
| 50 | } |
| 51 | |
| 52 | /* A PHY must have a reg property in the range [0-31] */ |
| 53 | if (addr >= PHY_MAX_ADDR) { |
| 54 | dev_err(dev, "%s PHY address %i is too large\n", |
| 55 | np->full_name, addr); |
| 56 | return -EINVAL; |
| 57 | } |
| 58 | |
| 59 | return addr; |
| 60 | } |
| 61 | |
Florian Fainelli | e6e14f6 | 2017-03-23 10:01:17 -0700 | [diff] [blame] | 62 | #else /* CONFIG_OF_MDIO */ |
Geert Uytterhoeven | 7df2281 | 2019-12-23 11:03:21 +0100 | [diff] [blame] | 63 | static inline bool of_mdiobus_child_is_phy(struct device_node *child) |
Antoine Tenart | 0aa4d01 | 2019-12-17 18:07:41 +0100 | [diff] [blame] | 64 | { |
| 65 | return false; |
| 66 | } |
| 67 | |
Mark Brown | 2a5cf80 | 2012-10-09 18:33:38 +0000 | [diff] [blame] | 68 | static inline int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np) |
Srinivas Kandagatla | f9dc9ac | 2012-08-24 01:58:59 +0000 | [diff] [blame] | 69 | { |
Daniel Mack | 23a456f | 2014-05-06 18:52:16 +0200 | [diff] [blame] | 70 | /* |
| 71 | * Fall back to the non-DT function to register a bus. |
| 72 | * This way, we don't have to keep compat bits around in drivers. |
| 73 | */ |
| 74 | |
| 75 | return mdiobus_register(mdio); |
Srinivas Kandagatla | f9dc9ac | 2012-08-24 01:58:59 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Vladimir Oltean | 6ceb018 | 2021-05-18 20:49:24 +0300 | [diff] [blame] | 78 | static inline int devm_of_mdiobus_register(struct device *dev, |
| 79 | struct mii_bus *mdio, |
| 80 | struct device_node *np) |
| 81 | { |
| 82 | return devm_mdiobus_register(dev, mdio); |
| 83 | } |
| 84 | |
Russell King | b5b6775 | 2020-09-23 18:41:22 +0300 | [diff] [blame] | 85 | static inline struct mdio_device *of_mdio_find_device(struct device_node *np) |
| 86 | { |
| 87 | return NULL; |
| 88 | } |
| 89 | |
Mark Brown | 2a5cf80 | 2012-10-09 18:33:38 +0000 | [diff] [blame] | 90 | static inline struct phy_device *of_phy_find_device(struct device_node *phy_np) |
Srinivas Kandagatla | f9dc9ac | 2012-08-24 01:58:59 +0000 | [diff] [blame] | 91 | { |
| 92 | return NULL; |
| 93 | } |
| 94 | |
Mark Brown | 2a5cf80 | 2012-10-09 18:33:38 +0000 | [diff] [blame] | 95 | static inline struct phy_device *of_phy_connect(struct net_device *dev, |
| 96 | struct device_node *phy_np, |
| 97 | void (*hndlr)(struct net_device *), |
| 98 | u32 flags, phy_interface_t iface) |
Srinivas Kandagatla | f9dc9ac | 2012-08-24 01:58:59 +0000 | [diff] [blame] | 99 | { |
| 100 | return NULL; |
| 101 | } |
| 102 | |
Dongpo Li | b786241 | 2016-07-15 16:26:34 +0800 | [diff] [blame] | 103 | static inline struct phy_device * |
| 104 | of_phy_get_and_connect(struct net_device *dev, struct device_node *np, |
| 105 | void (*hndlr)(struct net_device *)) |
| 106 | { |
| 107 | return NULL; |
| 108 | } |
| 109 | |
Andy Fleming | 7614aba | 2014-01-10 14:28:11 +0800 | [diff] [blame] | 110 | static inline struct phy_device *of_phy_attach(struct net_device *dev, |
| 111 | struct device_node *phy_np, |
| 112 | u32 flags, phy_interface_t iface) |
| 113 | { |
| 114 | return NULL; |
| 115 | } |
| 116 | |
Mark Brown | 2a5cf80 | 2012-10-09 18:33:38 +0000 | [diff] [blame] | 117 | static inline struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np) |
Srinivas Kandagatla | f9dc9ac | 2012-08-24 01:58:59 +0000 | [diff] [blame] | 118 | { |
| 119 | return NULL; |
| 120 | } |
Florian Fainelli | 33d6737 | 2015-03-10 16:57:11 -0700 | [diff] [blame] | 121 | |
| 122 | static inline int of_mdio_parse_addr(struct device *dev, |
| 123 | const struct device_node *np) |
| 124 | { |
| 125 | return -ENOSYS; |
| 126 | } |
Thomas Petazzoni | 3be2a49 | 2014-05-16 16:14:05 +0200 | [diff] [blame] | 127 | static inline int of_phy_register_fixed_link(struct device_node *np) |
| 128 | { |
| 129 | return -ENOSYS; |
| 130 | } |
Johan Hovold | 3f65047 | 2016-11-28 19:24:55 +0100 | [diff] [blame] | 131 | static inline void of_phy_deregister_fixed_link(struct device_node *np) |
| 132 | { |
| 133 | } |
Thomas Petazzoni | 3be2a49 | 2014-05-16 16:14:05 +0200 | [diff] [blame] | 134 | static inline bool of_phy_is_fixed_link(struct device_node *np) |
| 135 | { |
| 136 | return false; |
| 137 | } |
Oleksij Rempel | 5972157 | 2020-04-22 11:24:55 +0200 | [diff] [blame] | 138 | |
| 139 | static inline int of_mdiobus_phy_device_register(struct mii_bus *mdio, |
| 140 | struct phy_device *phy, |
| 141 | struct device_node *child, u32 addr) |
| 142 | { |
| 143 | return -ENOSYS; |
| 144 | } |
Thomas Petazzoni | 3be2a49 | 2014-05-16 16:14:05 +0200 | [diff] [blame] | 145 | #endif |
| 146 | |
| 147 | |
Grant Likely | 8bc487d | 2009-04-25 12:52:56 +0000 | [diff] [blame] | 148 | #endif /* __LINUX_OF_MDIO_H */ |