Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2011 Freescale Semiconductor, Inc. |
Andy Fleming | b36a4d4 | 2014-07-25 17:39:08 -0500 | [diff] [blame] | 4 | * Andy Fleming <afleming@gmail.com> |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 5 | * |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 6 | * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h |
| 7 | */ |
| 8 | |
| 9 | #ifndef _PHY_H |
| 10 | #define _PHY_H |
| 11 | |
Roger Quadros | b4ef5a1 | 2024-02-28 12:35:26 +0200 | [diff] [blame] | 12 | #include <asm-generic/gpio.h> |
Simon Glass | 992b603 | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 13 | #include <log.h> |
| 14 | #include <phy_interface.h> |
| 15 | #include <dm/ofnode.h> |
| 16 | #include <dm/read.h> |
Simon Glass | fb6f482 | 2020-02-03 07:36:17 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 18 | #include <linux/list.h> |
| 19 | #include <linux/mii.h> |
| 20 | #include <linux/ethtool.h> |
| 21 | #include <linux/mdio.h> |
Simon Glass | 992b603 | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 22 | |
| 23 | struct udevice; |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 24 | |
Hannes Schmelzer | da49460 | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 25 | #define PHY_FIXED_ID 0xa5a55a5a |
Samuel Mendoza-Jonas | 2325c44 | 2019-06-18 11:37:17 +1000 | [diff] [blame] | 26 | #define PHY_NCSI_ID 0xbeefcafe |
| 27 | |
Siva Durga Prasad Paladugu | d5c4e1e | 2018-11-27 11:49:11 +0530 | [diff] [blame] | 28 | /* |
| 29 | * There is no actual id for this. |
| 30 | * This is just a dummy id for gmii2rgmmi converter. |
| 31 | */ |
| 32 | #define PHY_GMII2RGMII_ID 0x5a5a5a5a |
Hannes Schmelzer | da49460 | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 33 | |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 34 | #define PHY_MAX_ADDR 32 |
| 35 | |
Shaohui Xie | 62a7b92 | 2016-01-28 15:55:46 +0800 | [diff] [blame] | 36 | #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */ |
| 37 | |
Florian Fainelli | 33bbc24 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 38 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 39 | SUPPORTED_TP | \ |
| 40 | SUPPORTED_MII) |
| 41 | |
Florian Fainelli | 33bbc24 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 42 | #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ |
| 43 | SUPPORTED_10baseT_Full) |
| 44 | |
| 45 | #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ |
| 46 | SUPPORTED_100baseT_Full) |
| 47 | |
| 48 | #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 49 | SUPPORTED_1000baseT_Full) |
| 50 | |
Florian Fainelli | 33bbc24 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 51 | #define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \ |
| 52 | PHY_100BT_FEATURES | \ |
| 53 | PHY_DEFAULT_FEATURES) |
| 54 | |
| 55 | #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ |
| 56 | PHY_1000BT_FEATURES) |
| 57 | |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 58 | #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \ |
| 59 | SUPPORTED_10000baseT_Full) |
| 60 | |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 61 | struct phy_device; |
| 62 | |
| 63 | #define MDIO_NAME_LEN 32 |
| 64 | |
| 65 | struct mii_dev { |
| 66 | struct list_head link; |
| 67 | char name[MDIO_NAME_LEN]; |
| 68 | void *priv; |
| 69 | int (*read)(struct mii_dev *bus, int addr, int devad, int reg); |
| 70 | int (*write)(struct mii_dev *bus, int addr, int devad, int reg, |
| 71 | u16 val); |
| 72 | int (*reset)(struct mii_dev *bus); |
| 73 | struct phy_device *phymap[PHY_MAX_ADDR]; |
| 74 | u32 phy_mask; |
Roger Quadros | b4ef5a1 | 2024-02-28 12:35:26 +0200 | [diff] [blame] | 75 | /** @reset_delay_us: Bus GPIO reset pulse width in microseconds */ |
| 76 | int reset_delay_us; |
| 77 | /** @reset_post_delay_us: Bus GPIO reset deassert delay in microseconds */ |
| 78 | int reset_post_delay_us; |
| 79 | /** @reset_gpiod: Bus Reset GPIO descriptor pointer */ |
| 80 | struct gpio_desc reset_gpiod; |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | /* struct phy_driver: a structure which defines PHY behavior |
| 84 | * |
| 85 | * uid will contain a number which represents the PHY. During |
| 86 | * startup, the driver will poll the PHY to find out what its |
| 87 | * UID--as defined by registers 2 and 3--is. The 32-bit result |
| 88 | * gotten from the PHY will be masked to |
| 89 | * discard any bits which may change based on revision numbers |
| 90 | * unimportant to functionality |
| 91 | * |
| 92 | */ |
| 93 | struct phy_driver { |
| 94 | char *name; |
| 95 | unsigned int uid; |
| 96 | unsigned int mask; |
| 97 | unsigned int mmds; |
| 98 | |
| 99 | u32 features; |
| 100 | |
| 101 | /* Called to do any driver startup necessities */ |
| 102 | /* Will be called during phy_connect */ |
| 103 | int (*probe)(struct phy_device *phydev); |
| 104 | |
| 105 | /* Called to configure the PHY, and modify the controller |
| 106 | * based on the results. Should be called after phy_connect */ |
| 107 | int (*config)(struct phy_device *phydev); |
| 108 | |
| 109 | /* Called when starting up the controller */ |
| 110 | int (*startup)(struct phy_device *phydev); |
| 111 | |
| 112 | /* Called when bringing down the controller */ |
| 113 | int (*shutdown)(struct phy_device *phydev); |
| 114 | |
Stefano Babic | 6b8c597 | 2013-09-02 15:42:30 +0200 | [diff] [blame] | 115 | int (*readext)(struct phy_device *phydev, int addr, int devad, int reg); |
| 116 | int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg, |
| 117 | u16 val); |
Carlo Caione | 4de87e2 | 2019-02-08 17:25:06 +0000 | [diff] [blame] | 118 | |
| 119 | /* Phy specific driver override for reading a MMD register */ |
| 120 | int (*read_mmd)(struct phy_device *phydev, int devad, int reg); |
| 121 | |
| 122 | /* Phy specific driver override for writing a MMD register */ |
| 123 | int (*write_mmd)(struct phy_device *phydev, int devad, int reg, |
| 124 | u16 val); |
| 125 | |
Alex Marginean | 1fd5416 | 2019-11-14 18:28:29 +0200 | [diff] [blame] | 126 | /* driver private data */ |
| 127 | ulong data; |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct phy_device { |
| 131 | /* Information about the PHY type */ |
| 132 | /* And management functions */ |
| 133 | struct mii_dev *bus; |
| 134 | struct phy_driver *drv; |
| 135 | void *priv; |
| 136 | |
Simon Glass | dbad346 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 137 | struct udevice *dev; |
Grygorii Strashko | 6189c06 | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 138 | ofnode node; |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 139 | |
| 140 | /* forced speed & duplex (no autoneg) |
| 141 | * partner speed & duplex & pause (autoneg) |
| 142 | */ |
| 143 | int speed; |
| 144 | int duplex; |
| 145 | |
| 146 | /* The most recently read link state */ |
| 147 | int link; |
| 148 | int port; |
| 149 | phy_interface_t interface; |
| 150 | |
| 151 | u32 advertising; |
| 152 | u32 supported; |
| 153 | u32 mmds; |
| 154 | |
| 155 | int autoneg; |
| 156 | int addr; |
| 157 | int pause; |
| 158 | int asym_pause; |
| 159 | u32 phy_id; |
Pankaj Bansal | 3c43a48 | 2018-11-16 06:26:18 +0000 | [diff] [blame] | 160 | bool is_c45; |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 161 | u32 flags; |
| 162 | }; |
| 163 | |
Shaohui Xie | b48127f | 2013-11-14 19:00:31 +0800 | [diff] [blame] | 164 | struct fixed_link { |
| 165 | int phy_id; |
| 166 | int duplex; |
| 167 | int link_speed; |
| 168 | int pause; |
| 169 | int asym_pause; |
| 170 | }; |
| 171 | |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 172 | /** |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 173 | * phy_reset() - Resets the specified PHY |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 174 | * Issues a reset of the PHY and waits for it to complete |
| 175 | * |
| 176 | * @phydev: PHY to reset |
Dan Murphy | 98422d9 | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 177 | * @return: 0 if OK, -ve on error |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 178 | */ |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 179 | int phy_reset(struct phy_device *phydev); |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 180 | |
| 181 | /** |
Marek Vasut | cf54eeb | 2024-03-18 15:57:01 +0100 | [diff] [blame] | 182 | * phy_gpio_reset() - Resets the specified PHY using GPIO reset |
| 183 | * Toggles the optional PHY reset GPIO |
| 184 | * |
| 185 | * @dev: PHY udevice to reset |
| 186 | * @return: 0 if OK, -ve on error |
| 187 | */ |
| 188 | int phy_gpio_reset(struct udevice *dev); |
| 189 | |
| 190 | /** |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 191 | * phy_find_by_mask() - Searches for a PHY on the specified MDIO bus |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 192 | * The function checks the PHY addresses flagged in phy_mask and returns a |
| 193 | * phy_device pointer if it detects a PHY. |
| 194 | * This function should only be called if just one PHY is expected to be present |
| 195 | * in the set of addresses flagged in phy_mask. If multiple PHYs are present, |
| 196 | * it is undefined which of these PHYs is returned. |
| 197 | * |
| 198 | * @bus: MII/MDIO bus to scan |
| 199 | * @phy_mask: bitmap of PYH addresses to scan |
Dan Murphy | 98422d9 | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 200 | * @return: pointer to phy_device if a PHY is found, or NULL otherwise |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 201 | */ |
Marek BehĂșn | 3927efb | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 202 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask); |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 203 | |
Vladimir Oltean | 8c089f7 | 2021-01-25 14:23:52 +0200 | [diff] [blame] | 204 | #ifdef CONFIG_PHY_FIXED |
| 205 | |
| 206 | /** |
| 207 | * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device |
| 208 | * @node: OF node for the container of the fixed-link node |
| 209 | * |
| 210 | * Description: Creates a struct phy_device based on a fixed-link of_node |
| 211 | * description. Can be used without phy_connect by drivers which do not expose |
| 212 | * a UCLASS_ETH udevice. |
| 213 | */ |
| 214 | struct phy_device *fixed_phy_create(ofnode node); |
| 215 | |
| 216 | #else |
| 217 | |
| 218 | static inline struct phy_device *fixed_phy_create(ofnode node) |
| 219 | { |
| 220 | return NULL; |
| 221 | } |
| 222 | |
| 223 | #endif |
| 224 | |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 225 | /** |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 226 | * phy_connect() - Creates a PHY device for the Ethernet interface |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 227 | * Creates a PHY device for the PHY at the given address, if one doesn't exist |
| 228 | * already, and associates it with the Ethernet device. |
| 229 | * The function may be called with addr <= 0, in this case addr value is ignored |
| 230 | * and the bus is scanned to detect a PHY. Scanning should only be used if only |
| 231 | * one PHY is expected to be present on the MDIO bus, otherwise it is undefined |
| 232 | * which PHY is returned. |
| 233 | * |
| 234 | * @bus: MII/MDIO bus that hosts the PHY |
| 235 | * @addr: PHY address on MDIO bus |
| 236 | * @dev: Ethernet device to associate to the PHY |
| 237 | * @interface: type of MAC-PHY interface |
Dan Murphy | 98422d9 | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 238 | * @return: pointer to phy_device if a PHY is found, or NULL otherwise |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 239 | */ |
Simon Glass | dbad346 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 240 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 241 | struct udevice *dev, |
| 242 | phy_interface_t interface); |
Michal Simek | c1c1603 | 2022-02-23 15:45:41 +0100 | [diff] [blame] | 243 | /** |
| 244 | * phy_device_create() - Create a PHY device |
| 245 | * |
| 246 | * @bus: MII/MDIO bus that hosts the PHY |
| 247 | * @addr: PHY address on MDIO bus |
| 248 | * @phy_id: where to store the ID retrieved |
| 249 | * @is_c45: Device Identifiers if is_c45 |
Michal Simek | c1c1603 | 2022-02-23 15:45:41 +0100 | [diff] [blame] | 250 | * @return: pointer to phy_device if a PHY is found, or NULL otherwise |
| 251 | */ |
| 252 | struct phy_device *phy_device_create(struct mii_dev *bus, int addr, |
Marek BehĂșn | 3927efb | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 253 | u32 phy_id, bool is_c45); |
Alex Marginean | 64d5f39 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 254 | |
Michal Simek | 488eec5 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 255 | /** |
| 256 | * phy_connect_phy_id() - Connect to phy device by reading PHY id |
| 257 | * from phy node. |
| 258 | * |
| 259 | * @bus: MII/MDIO bus that hosts the PHY |
| 260 | * @dev: Ethernet device to associate to the PHY |
Michal Simek | 488eec5 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 261 | * @return: pointer to phy_device if a PHY is found, |
| 262 | * or NULL otherwise |
| 263 | */ |
| 264 | struct phy_device *phy_connect_phy_id(struct mii_dev *bus, struct udevice *dev, |
Tom Rini | 6a25a7e | 2022-04-15 08:09:52 -0400 | [diff] [blame] | 265 | int phyaddr); |
Michal Simek | 488eec5 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 266 | |
Grygorii Strashko | 6189c06 | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 267 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
| 268 | { |
| 269 | if (ofnode_valid(phydev->node)) |
| 270 | return phydev->node; |
| 271 | else |
| 272 | return dev_ofnode(phydev->dev); |
| 273 | } |
Ramon Fried | 5d74726 | 2022-06-05 03:44:15 +0300 | [diff] [blame] | 274 | |
Marek Vasut | f522e0f | 2023-03-19 18:08:08 +0100 | [diff] [blame] | 275 | /** |
| 276 | * phy_read_mmd_poll_timeout - Periodically poll a PHY register until a |
| 277 | * condition is met or a timeout occurs |
| 278 | * |
| 279 | * @phydev: The phy_device struct |
| 280 | * @devaddr: The MMD to read from |
| 281 | * @regnum: The register on the MMD to read |
| 282 | * @val: Variable to read the register into |
| 283 | * @cond: Break condition (usually involving @val) |
| 284 | * @sleep_us: Maximum time to sleep between reads in us (0 |
| 285 | * tight-loops). Should be less than ~20ms since usleep_range |
| 286 | * is used (see Documentation/timers/timers-howto.rst). |
| 287 | * @timeout_us: Timeout in us, 0 means never timeout |
| 288 | * @sleep_before_read: if it is true, sleep @sleep_us before read. |
| 289 | * Returns 0 on success and -ETIMEDOUT upon a timeout. In either |
| 290 | * case, the last read value at @args is stored in @val. Must not |
| 291 | * be called from atomic context if sleep_us or timeout_us are used. |
| 292 | */ |
| 293 | #define phy_read_mmd_poll_timeout(phydev, devaddr, regnum, val, cond, \ |
| 294 | sleep_us, timeout_us, sleep_before_read) \ |
| 295 | ({ \ |
| 296 | int __ret = read_poll_timeout(phy_read_mmd, val, (cond) || val < 0, \ |
| 297 | sleep_us, timeout_us, \ |
| 298 | phydev, devaddr, regnum); \ |
| 299 | if (val < 0) \ |
| 300 | __ret = val; \ |
| 301 | if (__ret) \ |
| 302 | dev_err(phydev->dev, "%s failed: %d\n", __func__, __ret); \ |
| 303 | __ret; \ |
| 304 | }) |
| 305 | |
Ramon Fried | 5d74726 | 2022-06-05 03:44:15 +0300 | [diff] [blame] | 306 | int phy_read(struct phy_device *phydev, int devad, int regnum); |
| 307 | int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val); |
| 308 | void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum); |
| 309 | int phy_read_mmd(struct phy_device *phydev, int devad, int regnum); |
| 310 | int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val); |
| 311 | int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
| 312 | int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
Marek Vasut | 9cd9d22 | 2023-03-19 18:08:07 +0100 | [diff] [blame] | 313 | int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, |
| 314 | u16 mask, u16 set); |
| 315 | int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, |
| 316 | u16 mask, u16 set); |
Ramon Fried | 5d74726 | 2022-06-05 03:44:15 +0300 | [diff] [blame] | 317 | |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 318 | int phy_startup(struct phy_device *phydev); |
| 319 | int phy_config(struct phy_device *phydev); |
| 320 | int phy_shutdown(struct phy_device *phydev); |
Alexey Brodkin | e476bb2 | 2016-01-13 16:59:34 +0300 | [diff] [blame] | 321 | int phy_set_supported(struct phy_device *phydev, u32 max_speed); |
Ariel D'Alessandro | 9c18c91 | 2022-04-12 10:31:36 -0300 | [diff] [blame] | 322 | int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask, |
| 323 | u16 set); |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 324 | int genphy_config_aneg(struct phy_device *phydev); |
Troy Kisky | 80b6b09 | 2012-02-07 14:08:48 +0000 | [diff] [blame] | 325 | int genphy_restart_aneg(struct phy_device *phydev); |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 326 | int genphy_update_link(struct phy_device *phydev); |
Yegor Yefremov | c40f5d3 | 2012-11-28 11:15:17 +0100 | [diff] [blame] | 327 | int genphy_parse_link(struct phy_device *phydev); |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 328 | int genphy_config(struct phy_device *phydev); |
| 329 | int genphy_startup(struct phy_device *phydev); |
| 330 | int genphy_shutdown(struct phy_device *phydev); |
| 331 | int gen10g_config(struct phy_device *phydev); |
| 332 | int gen10g_startup(struct phy_device *phydev); |
| 333 | int gen10g_shutdown(struct phy_device *phydev); |
| 334 | int gen10g_discover_mmds(struct phy_device *phydev); |
| 335 | |
Marek Vasut | 2994e30 | 2023-03-19 18:02:42 +0100 | [diff] [blame] | 336 | /** |
| 337 | * U_BOOT_PHY_DRIVER() - Declare a new U-Boot driver |
| 338 | * @__name: name of the driver |
| 339 | */ |
| 340 | #define U_BOOT_PHY_DRIVER(__name) \ |
| 341 | ll_entry_declare(struct phy_driver, __name, phy_driver) |
| 342 | |
Fabio Estevam | 55e0f19 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 343 | int board_phy_config(struct phy_device *phydev); |
Shengzhou Liu | 072b0fa | 2015-04-07 18:46:32 +0800 | [diff] [blame] | 344 | int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id); |
Fabio Estevam | 55e0f19 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 345 | |
Simon Glass | dbad346 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 346 | /** |
Dan Murphy | 63e3cde | 2016-05-02 15:46:00 -0500 | [diff] [blame] | 347 | * phy_interface_is_rgmii - Convenience function for testing if a PHY interface |
| 348 | * is RGMII (all variants) |
| 349 | * @phydev: the phy_device struct |
Dan Murphy | 98422d9 | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 350 | * @return: true if MII bus is RGMII or false if it is not |
Dan Murphy | 63e3cde | 2016-05-02 15:46:00 -0500 | [diff] [blame] | 351 | */ |
| 352 | static inline bool phy_interface_is_rgmii(struct phy_device *phydev) |
| 353 | { |
Nishanth Menon | 4db1d0b | 2023-04-14 17:06:45 -0500 | [diff] [blame] | 354 | switch (phydev->interface) { |
| 355 | case PHY_INTERFACE_MODE_RGMII: |
| 356 | case PHY_INTERFACE_MODE_RGMII_ID: |
| 357 | case PHY_INTERFACE_MODE_RGMII_RXID: |
| 358 | case PHY_INTERFACE_MODE_RGMII_TXID: |
| 359 | return 1; |
| 360 | default: |
| 361 | return 0; |
| 362 | } |
Dan Murphy | 63e3cde | 2016-05-02 15:46:00 -0500 | [diff] [blame] | 363 | } |
| 364 | |
Samuel Mendoza-Jonas | c8f4ab0 | 2022-08-08 21:46:03 +0930 | [diff] [blame] | 365 | bool phy_interface_is_ncsi(void); |
| 366 | |
Timur Tabi | 856f32f | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 367 | /* PHY UIDs for various PHYs that are referenced in external code */ |
Wolfgang Denk | 62fb2b4 | 2021-09-27 17:42:39 +0200 | [diff] [blame] | 368 | #define PHY_UID_CS4340 0x13e51002 |
| 369 | #define PHY_UID_CS4223 0x03e57003 |
Priyanka Jain | 46fa2bd | 2018-10-11 04:47:05 +0000 | [diff] [blame] | 370 | #define PHY_UID_TN2020 0x00a19410 |
| 371 | #define PHY_UID_IN112525_S03 0x02107440 |
Timur Tabi | 856f32f | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 372 | |
Andy Fleming | aecf6fc | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 373 | #endif |