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 | |
Simon Glass | 2a64ada | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 12 | #include <log.h> |
| 13 | #include <phy_interface.h> |
| 14 | #include <dm/ofnode.h> |
| 15 | #include <dm/read.h> |
Simon Glass | f217651 | 2020-02-03 07:36:17 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 17 | #include <linux/list.h> |
| 18 | #include <linux/mii.h> |
| 19 | #include <linux/ethtool.h> |
| 20 | #include <linux/mdio.h> |
Simon Glass | 2a64ada | 2020-07-19 10:15:39 -0600 | [diff] [blame] | 21 | |
| 22 | struct udevice; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 23 | |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 24 | #define PHY_FIXED_ID 0xa5a55a5a |
Samuel Mendoza-Jonas | f641a8a | 2019-06-18 11:37:17 +1000 | [diff] [blame] | 25 | #define PHY_NCSI_ID 0xbeefcafe |
| 26 | |
Siva Durga Prasad Paladugu | f41e588 | 2018-11-27 11:49:11 +0530 | [diff] [blame] | 27 | /* |
| 28 | * There is no actual id for this. |
| 29 | * This is just a dummy id for gmii2rgmmi converter. |
| 30 | */ |
| 31 | #define PHY_GMII2RGMII_ID 0x5a5a5a5a |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 32 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 33 | #define PHY_MAX_ADDR 32 |
| 34 | |
Shaohui Xie | ddcd1f3 | 2016-01-28 15:55:46 +0800 | [diff] [blame] | 35 | #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */ |
| 36 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 37 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 38 | SUPPORTED_TP | \ |
| 39 | SUPPORTED_MII) |
| 40 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 41 | #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ |
| 42 | SUPPORTED_10baseT_Full) |
| 43 | |
| 44 | #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ |
| 45 | SUPPORTED_100baseT_Full) |
| 46 | |
| 47 | #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 48 | SUPPORTED_1000baseT_Full) |
| 49 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 50 | #define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \ |
| 51 | PHY_100BT_FEATURES | \ |
| 52 | PHY_DEFAULT_FEATURES) |
| 53 | |
Radu Pirea (NXP OSS) | 3ef2050 | 2021-06-18 21:58:30 +0300 | [diff] [blame] | 54 | #define PHY_100BT1_FEATURES (SUPPORTED_TP | \ |
| 55 | SUPPORTED_MII | \ |
| 56 | SUPPORTED_100baseT_Full) |
| 57 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 58 | #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ |
| 59 | PHY_1000BT_FEATURES) |
| 60 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 61 | #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \ |
| 62 | SUPPORTED_10000baseT_Full) |
| 63 | |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 64 | #ifndef PHY_ANEG_TIMEOUT |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 65 | #define PHY_ANEG_TIMEOUT 4000 |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 66 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 67 | |
| 68 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 69 | struct phy_device; |
| 70 | |
| 71 | #define MDIO_NAME_LEN 32 |
| 72 | |
| 73 | struct mii_dev { |
| 74 | struct list_head link; |
| 75 | char name[MDIO_NAME_LEN]; |
| 76 | void *priv; |
| 77 | int (*read)(struct mii_dev *bus, int addr, int devad, int reg); |
| 78 | int (*write)(struct mii_dev *bus, int addr, int devad, int reg, |
| 79 | u16 val); |
| 80 | int (*reset)(struct mii_dev *bus); |
| 81 | struct phy_device *phymap[PHY_MAX_ADDR]; |
| 82 | u32 phy_mask; |
| 83 | }; |
| 84 | |
| 85 | /* struct phy_driver: a structure which defines PHY behavior |
| 86 | * |
| 87 | * uid will contain a number which represents the PHY. During |
| 88 | * startup, the driver will poll the PHY to find out what its |
| 89 | * UID--as defined by registers 2 and 3--is. The 32-bit result |
| 90 | * gotten from the PHY will be masked to |
| 91 | * discard any bits which may change based on revision numbers |
| 92 | * unimportant to functionality |
| 93 | * |
| 94 | */ |
| 95 | struct phy_driver { |
| 96 | char *name; |
| 97 | unsigned int uid; |
| 98 | unsigned int mask; |
| 99 | unsigned int mmds; |
| 100 | |
| 101 | u32 features; |
| 102 | |
| 103 | /* Called to do any driver startup necessities */ |
| 104 | /* Will be called during phy_connect */ |
| 105 | int (*probe)(struct phy_device *phydev); |
| 106 | |
| 107 | /* Called to configure the PHY, and modify the controller |
| 108 | * based on the results. Should be called after phy_connect */ |
| 109 | int (*config)(struct phy_device *phydev); |
| 110 | |
| 111 | /* Called when starting up the controller */ |
| 112 | int (*startup)(struct phy_device *phydev); |
| 113 | |
| 114 | /* Called when bringing down the controller */ |
| 115 | int (*shutdown)(struct phy_device *phydev); |
| 116 | |
Stefano Babic | b71841b | 2013-09-02 15:42:30 +0200 | [diff] [blame] | 117 | int (*readext)(struct phy_device *phydev, int addr, int devad, int reg); |
| 118 | int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg, |
| 119 | u16 val); |
Carlo Caione | 4f6746d | 2019-02-08 17:25:06 +0000 | [diff] [blame] | 120 | |
| 121 | /* Phy specific driver override for reading a MMD register */ |
| 122 | int (*read_mmd)(struct phy_device *phydev, int devad, int reg); |
| 123 | |
| 124 | /* Phy specific driver override for writing a MMD register */ |
| 125 | int (*write_mmd)(struct phy_device *phydev, int devad, int reg, |
| 126 | u16 val); |
| 127 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 128 | struct list_head list; |
Alex Marginean | d718b69 | 2019-11-14 18:28:29 +0200 | [diff] [blame] | 129 | |
| 130 | /* driver private data */ |
| 131 | ulong data; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 132 | }; |
| 133 | |
| 134 | struct phy_device { |
| 135 | /* Information about the PHY type */ |
| 136 | /* And management functions */ |
| 137 | struct mii_dev *bus; |
| 138 | struct phy_driver *drv; |
| 139 | void *priv; |
| 140 | |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 141 | struct udevice *dev; |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 142 | ofnode node; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 143 | |
| 144 | /* forced speed & duplex (no autoneg) |
| 145 | * partner speed & duplex & pause (autoneg) |
| 146 | */ |
| 147 | int speed; |
| 148 | int duplex; |
| 149 | |
| 150 | /* The most recently read link state */ |
| 151 | int link; |
| 152 | int port; |
| 153 | phy_interface_t interface; |
| 154 | |
| 155 | u32 advertising; |
| 156 | u32 supported; |
| 157 | u32 mmds; |
| 158 | |
| 159 | int autoneg; |
| 160 | int addr; |
| 161 | int pause; |
| 162 | int asym_pause; |
| 163 | u32 phy_id; |
Pankaj Bansal | b3eabd8 | 2018-11-16 06:26:18 +0000 | [diff] [blame] | 164 | bool is_c45; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 165 | u32 flags; |
| 166 | }; |
| 167 | |
Shaohui Xie | f55a776 | 2013-11-14 19:00:31 +0800 | [diff] [blame] | 168 | struct fixed_link { |
| 169 | int phy_id; |
| 170 | int duplex; |
| 171 | int link_speed; |
| 172 | int pause; |
| 173 | int asym_pause; |
| 174 | }; |
| 175 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 176 | #ifdef CONFIG_PHYLIB_10G |
| 177 | extern struct phy_driver gen10g_driver; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 178 | #endif |
| 179 | |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 180 | /** |
| 181 | * phy_init() - Initializes the PHY drivers |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 182 | * This function registers all available PHY drivers |
| 183 | * |
Dan Murphy | ea756fb | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 184 | * @return: 0 if OK, -ve on error |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 185 | */ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 186 | int phy_init(void); |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 187 | |
| 188 | /** |
| 189 | * phy_reset() - Resets the specified PHY |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 190 | * Issues a reset of the PHY and waits for it to complete |
| 191 | * |
| 192 | * @phydev: PHY to reset |
Dan Murphy | ea756fb | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 193 | * @return: 0 if OK, -ve on error |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 194 | */ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 195 | int phy_reset(struct phy_device *phydev); |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 196 | |
| 197 | /** |
| 198 | * 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] | 199 | * The function checks the PHY addresses flagged in phy_mask and returns a |
| 200 | * phy_device pointer if it detects a PHY. |
| 201 | * This function should only be called if just one PHY is expected to be present |
| 202 | * in the set of addresses flagged in phy_mask. If multiple PHYs are present, |
| 203 | * it is undefined which of these PHYs is returned. |
| 204 | * |
| 205 | * @bus: MII/MDIO bus to scan |
| 206 | * @phy_mask: bitmap of PYH addresses to scan |
Dan Murphy | ea756fb | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 207 | * @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] | 208 | */ |
Marek Behún | e24b58f | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 209 | 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] | 210 | |
Vladimir Oltean | d0781c9 | 2021-01-25 14:23:52 +0200 | [diff] [blame] | 211 | #ifdef CONFIG_PHY_FIXED |
| 212 | |
| 213 | /** |
| 214 | * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device |
| 215 | * @node: OF node for the container of the fixed-link node |
| 216 | * |
| 217 | * Description: Creates a struct phy_device based on a fixed-link of_node |
| 218 | * description. Can be used without phy_connect by drivers which do not expose |
| 219 | * a UCLASS_ETH udevice. |
| 220 | */ |
| 221 | struct phy_device *fixed_phy_create(ofnode node); |
| 222 | |
| 223 | #else |
| 224 | |
| 225 | static inline struct phy_device *fixed_phy_create(ofnode node) |
| 226 | { |
| 227 | return NULL; |
| 228 | } |
| 229 | |
| 230 | #endif |
| 231 | |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 232 | /** |
| 233 | * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices |
| 234 | * @phydev: PHY device |
| 235 | * @dev: Ethernet device |
Marek Behún | e24b58f | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 236 | * @interface: type of MAC-PHY interface |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 237 | */ |
Marek Behún | e24b58f | 2022-04-07 00:33:08 +0200 | [diff] [blame] | 238 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev, |
| 239 | phy_interface_t interface); |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 240 | |
| 241 | /** |
| 242 | * phy_connect() - Creates a PHY device for the Ethernet interface |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 243 | * Creates a PHY device for the PHY at the given address, if one doesn't exist |
| 244 | * already, and associates it with the Ethernet device. |
| 245 | * The function may be called with addr <= 0, in this case addr value is ignored |
| 246 | * and the bus is scanned to detect a PHY. Scanning should only be used if only |
| 247 | * one PHY is expected to be present on the MDIO bus, otherwise it is undefined |
| 248 | * which PHY is returned. |
| 249 | * |
| 250 | * @bus: MII/MDIO bus that hosts the PHY |
| 251 | * @addr: PHY address on MDIO bus |
| 252 | * @dev: Ethernet device to associate to the PHY |
| 253 | * @interface: type of MAC-PHY interface |
Dan Murphy | ea756fb | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 254 | * @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] | 255 | */ |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 256 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 257 | struct udevice *dev, |
| 258 | phy_interface_t interface); |
Michal Simek | 3249116 | 2022-02-23 15:45:41 +0100 | [diff] [blame] | 259 | /** |
| 260 | * phy_device_create() - Create a PHY device |
| 261 | * |
| 262 | * @bus: MII/MDIO bus that hosts the PHY |
| 263 | * @addr: PHY address on MDIO bus |
| 264 | * @phy_id: where to store the ID retrieved |
| 265 | * @is_c45: Device Identifiers if is_c45 |
Michal Simek | 3249116 | 2022-02-23 15:45:41 +0100 | [diff] [blame] | 266 | * @return: pointer to phy_device if a PHY is found, or NULL otherwise |
| 267 | */ |
| 268 | 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] | 269 | u32 phy_id, bool is_c45); |
Alex Marginean | c38ac28 | 2019-07-11 18:32:56 +0300 | [diff] [blame] | 270 | |
Michal Simek | a744a28 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 271 | /** |
| 272 | * phy_connect_phy_id() - Connect to phy device by reading PHY id |
| 273 | * from phy node. |
| 274 | * |
| 275 | * @bus: MII/MDIO bus that hosts the PHY |
| 276 | * @dev: Ethernet device to associate to the PHY |
Michal Simek | a744a28 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 277 | * @return: pointer to phy_device if a PHY is found, |
| 278 | * or NULL otherwise |
| 279 | */ |
| 280 | 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] | 281 | int phyaddr); |
Michal Simek | a744a28 | 2022-02-23 15:45:42 +0100 | [diff] [blame] | 282 | |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 283 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
| 284 | { |
| 285 | if (ofnode_valid(phydev->node)) |
| 286 | return phydev->node; |
| 287 | else |
| 288 | return dev_ofnode(phydev->dev); |
| 289 | } |
Ramon Fried | 65f2266 | 2022-06-05 03:44:15 +0300 | [diff] [blame] | 290 | |
| 291 | int phy_read(struct phy_device *phydev, int devad, int regnum); |
| 292 | int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val); |
| 293 | void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum); |
| 294 | int phy_read_mmd(struct phy_device *phydev, int devad, int regnum); |
| 295 | int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val); |
| 296 | int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
| 297 | int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val); |
| 298 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 299 | int phy_startup(struct phy_device *phydev); |
| 300 | int phy_config(struct phy_device *phydev); |
| 301 | int phy_shutdown(struct phy_device *phydev); |
| 302 | int phy_register(struct phy_driver *drv); |
Alexey Brodkin | b18acb0 | 2016-01-13 16:59:34 +0300 | [diff] [blame] | 303 | int phy_set_supported(struct phy_device *phydev, u32 max_speed); |
Ariel D'Alessandro | 087baf8 | 2022-04-12 10:31:36 -0300 | [diff] [blame] | 304 | int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask, |
| 305 | u16 set); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 306 | int genphy_config_aneg(struct phy_device *phydev); |
Troy Kisky | 8682aba | 2012-02-07 14:08:48 +0000 | [diff] [blame] | 307 | int genphy_restart_aneg(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 308 | int genphy_update_link(struct phy_device *phydev); |
Yegor Yefremov | e2043f5 | 2012-11-28 11:15:17 +0100 | [diff] [blame] | 309 | int genphy_parse_link(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 310 | int genphy_config(struct phy_device *phydev); |
| 311 | int genphy_startup(struct phy_device *phydev); |
| 312 | int genphy_shutdown(struct phy_device *phydev); |
| 313 | int gen10g_config(struct phy_device *phydev); |
| 314 | int gen10g_startup(struct phy_device *phydev); |
| 315 | int gen10g_shutdown(struct phy_device *phydev); |
| 316 | int gen10g_discover_mmds(struct phy_device *phydev); |
| 317 | |
Florian Fainelli | 137963d | 2017-12-09 14:59:54 -0800 | [diff] [blame] | 318 | int phy_b53_init(void); |
Kevin Smith | 24ae396 | 2016-03-31 19:33:12 +0000 | [diff] [blame] | 319 | int phy_mv88e61xx_init(void); |
Nate Drude | d79f1a8 | 2022-04-08 11:28:14 -0500 | [diff] [blame] | 320 | int phy_adin_init(void); |
Shaohui Xie | f7c38cf | 2014-12-30 18:32:04 +0800 | [diff] [blame] | 321 | int phy_aquantia_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 322 | int phy_atheros_init(void); |
| 323 | int phy_broadcom_init(void); |
Shengzhou Liu | 9b18e51 | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 324 | int phy_cortina_init(void); |
Abbie Chang | a70d7b0 | 2021-01-14 13:34:12 -0800 | [diff] [blame] | 325 | int phy_cortina_access_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 326 | int phy_davicom_init(void); |
Matt Porter | f485c8a | 2013-03-20 05:38:13 +0000 | [diff] [blame] | 327 | int phy_et1011c_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 328 | int phy_lxt_init(void); |
| 329 | int phy_marvell_init(void); |
Alexandru Gagniuc | d397f7c | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 330 | int phy_micrel_ksz8xxx_init(void); |
| 331 | int phy_micrel_ksz90x1_init(void); |
Neil Armstrong | 8995a96 | 2017-10-18 10:02:10 +0200 | [diff] [blame] | 332 | int phy_meson_gxl_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 333 | int phy_natsemi_init(void); |
Ariel D'Alessandro | 01c67a3 | 2022-04-12 10:31:34 -0300 | [diff] [blame] | 334 | int phy_nxp_c45_tja11xx_init(void); |
Michael Trimarchi | a2f5c93 | 2022-04-12 10:31:37 -0300 | [diff] [blame] | 335 | int phy_nxp_tja11xx_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 336 | int phy_realtek_init(void); |
Vladimir Zapolskiy | b6abf55 | 2011-12-29 15:18:37 +0000 | [diff] [blame] | 337 | int phy_smsc_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 338 | int phy_teranetics_init(void); |
Edgar E. Iglesias | 721aed7 | 2015-09-25 23:46:08 -0700 | [diff] [blame] | 339 | int phy_ti_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 340 | int phy_vitesse_init(void); |
Siva Durga Prasad Paladugu | ed6fad3 | 2016-02-05 13:22:10 +0530 | [diff] [blame] | 341 | int phy_xilinx_init(void); |
Tim Harvey | 5e6c069 | 2022-11-17 13:27:09 -0800 | [diff] [blame] | 342 | int phy_xway_init(void); |
John Haechten | a5fd13a | 2016-12-09 22:15:17 +0000 | [diff] [blame] | 343 | int phy_mscc_init(void); |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 344 | int phy_fixed_init(void); |
Samuel Mendoza-Jonas | e2ffeaa | 2019-06-18 11:37:18 +1000 | [diff] [blame] | 345 | int phy_ncsi_init(void); |
Siva Durga Prasad Paladugu | f41e588 | 2018-11-27 11:49:11 +0530 | [diff] [blame] | 346 | int phy_xilinx_gmii2rgmii_init(void); |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 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 | { |
| 359 | return phydev->interface >= PHY_INTERFACE_MODE_RGMII && |
| 360 | phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID; |
| 361 | } |
| 362 | |
Dan Murphy | 3c221af | 2016-05-02 15:46:01 -0500 | [diff] [blame] | 363 | /** |
| 364 | * phy_interface_is_sgmii - Convenience function for testing if a PHY interface |
| 365 | * is SGMII (all variants) |
| 366 | * @phydev: the phy_device struct |
Dan Murphy | ea756fb | 2020-05-04 16:14:37 -0500 | [diff] [blame] | 367 | * @return: true if MII bus is SGMII or false if it is not |
Dan Murphy | 3c221af | 2016-05-02 15:46:01 -0500 | [diff] [blame] | 368 | */ |
| 369 | static inline bool phy_interface_is_sgmii(struct phy_device *phydev) |
| 370 | { |
| 371 | return phydev->interface >= PHY_INTERFACE_MODE_SGMII && |
| 372 | phydev->interface <= PHY_INTERFACE_MODE_QSGMII; |
| 373 | } |
| 374 | |
Samuel Mendoza-Jonas | 09bd3d0 | 2022-08-08 21:46:03 +0930 | [diff] [blame] | 375 | bool phy_interface_is_ncsi(void); |
| 376 | |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 377 | /* PHY UIDs for various PHYs that are referenced in external code */ |
Wolfgang Denk | 0cf207e | 2021-09-27 17:42:39 +0200 | [diff] [blame] | 378 | #define PHY_UID_CS4340 0x13e51002 |
| 379 | #define PHY_UID_CS4223 0x03e57003 |
Priyanka Jain | 1ddcf5e | 2018-10-11 04:47:05 +0000 | [diff] [blame] | 380 | #define PHY_UID_TN2020 0x00a19410 |
| 381 | #define PHY_UID_IN112525_S03 0x02107440 |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 382 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 383 | #endif |