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