1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2011 Freescale Semiconductor, Inc.
4 * Andy Fleming <afleming@gmail.com>
6 * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h
13 #include <linux/errno.h>
14 #include <linux/list.h>
15 #include <linux/mii.h>
16 #include <linux/ethtool.h>
17 #include <linux/mdio.h>
19 #include <phy_interface.h>
21 #define PHY_FIXED_ID 0xa5a55a5a
22 #define PHY_NCSI_ID 0xbeefcafe
25 * There is no actual id for this.
26 * This is just a dummy id for gmii2rgmmi converter.
28 #define PHY_GMII2RGMII_ID 0x5a5a5a5a
30 #define PHY_MAX_ADDR 32
32 #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
34 #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
38 #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
39 SUPPORTED_10baseT_Full)
41 #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
42 SUPPORTED_100baseT_Full)
44 #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
45 SUPPORTED_1000baseT_Full)
47 #define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
48 PHY_100BT_FEATURES | \
51 #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
54 #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
55 SUPPORTED_10000baseT_Full)
57 #ifndef PHY_ANEG_TIMEOUT
58 #define PHY_ANEG_TIMEOUT 4000
64 #define MDIO_NAME_LEN 32
67 struct list_head link;
68 char name[MDIO_NAME_LEN];
70 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
71 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
73 int (*reset)(struct mii_dev *bus);
74 struct phy_device *phymap[PHY_MAX_ADDR];
78 /* struct phy_driver: a structure which defines PHY behavior
80 * uid will contain a number which represents the PHY. During
81 * startup, the driver will poll the PHY to find out what its
82 * UID--as defined by registers 2 and 3--is. The 32-bit result
83 * gotten from the PHY will be masked to
84 * discard any bits which may change based on revision numbers
85 * unimportant to functionality
96 /* Called to do any driver startup necessities */
97 /* Will be called during phy_connect */
98 int (*probe)(struct phy_device *phydev);
100 /* Called to configure the PHY, and modify the controller
101 * based on the results. Should be called after phy_connect */
102 int (*config)(struct phy_device *phydev);
104 /* Called when starting up the controller */
105 int (*startup)(struct phy_device *phydev);
107 /* Called when bringing down the controller */
108 int (*shutdown)(struct phy_device *phydev);
110 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
111 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
114 /* Phy specific driver override for reading a MMD register */
115 int (*read_mmd)(struct phy_device *phydev, int devad, int reg);
117 /* Phy specific driver override for writing a MMD register */
118 int (*write_mmd)(struct phy_device *phydev, int devad, int reg,
121 struct list_head list;
123 /* driver private data */
128 /* Information about the PHY type */
129 /* And management functions */
131 struct phy_driver *drv;
138 struct eth_device *dev;
141 /* forced speed & duplex (no autoneg)
142 * partner speed & duplex & pause (autoneg)
147 /* The most recently read link state */
150 phy_interface_t interface;
174 * phy_read - Convenience function for reading a given PHY register
175 * @phydev: the phy_device struct
176 * @devad: The MMD to read from
177 * @regnum: register number to read
178 * @return: value for success or negative errno for failure
180 static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
182 struct mii_dev *bus = phydev->bus;
184 if (!bus || !bus->read) {
185 debug("%s: No bus configured\n", __func__);
189 return bus->read(bus, phydev->addr, devad, regnum);
193 * phy_write - Convenience function for writing a given PHY register
194 * @phydev: the phy_device struct
195 * @devad: The MMD to read from
196 * @regnum: register number to write
197 * @val: value to write to @regnum
198 * @return: 0 for success or negative errno for failure
200 static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
203 struct mii_dev *bus = phydev->bus;
205 if (!bus || !bus->read) {
206 debug("%s: No bus configured\n", __func__);
210 return bus->write(bus, phydev->addr, devad, regnum, val);
214 * phy_mmd_start_indirect - Convenience function for writing MMD registers
215 * @phydev: the phy_device struct
216 * @devad: The MMD to read from
217 * @regnum: register number to write
220 static inline void phy_mmd_start_indirect(struct phy_device *phydev, int devad,
223 /* Write the desired MMD Devad */
224 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad);
226 /* Write the desired MMD register address */
227 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum);
229 /* Select the Function : DATA with no post increment */
230 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL,
231 (devad | MII_MMD_CTRL_NOINCR));
235 * phy_read_mmd - Convenience function for reading a register
236 * from an MMD on a given PHY.
237 * @phydev: The phy_device struct
238 * @devad: The MMD to read from
239 * @regnum: The register on the MMD to read
240 * @return: Value for success or negative errno for failure
242 static inline int phy_read_mmd(struct phy_device *phydev, int devad,
245 struct phy_driver *drv = phydev->drv;
247 if (regnum > (u16)~0 || devad > 32)
250 /* driver-specific access */
252 return drv->read_mmd(phydev, devad, regnum);
254 /* direct C45 / C22 access */
255 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
256 devad == MDIO_DEVAD_NONE || !devad)
257 return phy_read(phydev, devad, regnum);
259 /* indirect C22 access */
260 phy_mmd_start_indirect(phydev, devad, regnum);
262 /* Read the content of the MMD's selected register */
263 return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA);
267 * phy_write_mmd - Convenience function for writing a register
268 * on an MMD on a given PHY.
269 * @phydev: The phy_device struct
270 * @devad: The MMD to read from
271 * @regnum: The register on the MMD to read
272 * @val: value to write to @regnum
273 * @return: 0 for success or negative errno for failure
275 static inline int phy_write_mmd(struct phy_device *phydev, int devad,
278 struct phy_driver *drv = phydev->drv;
280 if (regnum > (u16)~0 || devad > 32)
283 /* driver-specific access */
285 return drv->write_mmd(phydev, devad, regnum, val);
287 /* direct C45 / C22 access */
288 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
289 devad == MDIO_DEVAD_NONE || !devad)
290 return phy_write(phydev, devad, regnum, val);
292 /* indirect C22 access */
293 phy_mmd_start_indirect(phydev, devad, regnum);
295 /* Write the data into MMD's selected register */
296 return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val);
299 #ifdef CONFIG_PHYLIB_10G
300 extern struct phy_driver gen10g_driver;
303 * List all 10G interfaces here, the assumption being that PHYs on these
306 static inline int is_10g_interface(phy_interface_t interface)
308 return interface == PHY_INTERFACE_MODE_XGMII ||
309 interface == PHY_INTERFACE_MODE_USXGMII ||
310 interface == PHY_INTERFACE_MODE_XFI;
316 * phy_init() - Initializes the PHY drivers
318 * This function registers all available PHY drivers
320 * @return 0 if OK, -ve on error
325 * phy_reset() - Resets the specified PHY
327 * Issues a reset of the PHY and waits for it to complete
329 * @phydev: PHY to reset
330 * @return 0 if OK, -ve on error
332 int phy_reset(struct phy_device *phydev);
335 * phy_find_by_mask() - Searches for a PHY on the specified MDIO bus
337 * The function checks the PHY addresses flagged in phy_mask and returns a
338 * phy_device pointer if it detects a PHY.
339 * This function should only be called if just one PHY is expected to be present
340 * in the set of addresses flagged in phy_mask. If multiple PHYs are present,
341 * it is undefined which of these PHYs is returned.
343 * @bus: MII/MDIO bus to scan
344 * @phy_mask: bitmap of PYH addresses to scan
345 * @interface: type of MAC-PHY interface
346 * @return pointer to phy_device if a PHY is found, or NULL otherwise
348 struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
349 phy_interface_t interface);
354 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
355 * @phydev: PHY device
356 * @dev: Ethernet device
358 void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
361 * phy_connect() - Creates a PHY device for the Ethernet interface
363 * Creates a PHY device for the PHY at the given address, if one doesn't exist
364 * already, and associates it with the Ethernet device.
365 * The function may be called with addr <= 0, in this case addr value is ignored
366 * and the bus is scanned to detect a PHY. Scanning should only be used if only
367 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
368 * which PHY is returned.
370 * @bus: MII/MDIO bus that hosts the PHY
371 * @addr: PHY address on MDIO bus
372 * @dev: Ethernet device to associate to the PHY
373 * @interface: type of MAC-PHY interface
374 * @return pointer to phy_device if a PHY is found, or NULL otherwise
376 struct phy_device *phy_connect(struct mii_dev *bus, int addr,
378 phy_interface_t interface);
380 static inline ofnode phy_get_ofnode(struct phy_device *phydev)
382 if (ofnode_valid(phydev->node))
385 return dev_ofnode(phydev->dev);
390 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
391 * @phydev: PHY device
392 * @dev: Ethernet device
394 void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
397 * phy_connect() - Creates a PHY device for the Ethernet interface
399 * Creates a PHY device for the PHY at the given address, if one doesn't exist
400 * already, and associates it with the Ethernet device.
401 * The function may be called with addr <= 0, in this case addr value is ignored
402 * and the bus is scanned to detect a PHY. Scanning should only be used if only
403 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
404 * which PHY is returned.
406 * @bus: MII/MDIO bus that hosts the PHY
407 * @addr: PHY address on MDIO bus
408 * @dev: Ethernet device to associate to the PHY
409 * @interface: type of MAC-PHY interface
410 * @return pointer to phy_device if a PHY is found, or NULL otherwise
412 struct phy_device *phy_connect(struct mii_dev *bus, int addr,
413 struct eth_device *dev,
414 phy_interface_t interface);
416 static inline ofnode phy_get_ofnode(struct phy_device *phydev)
418 return ofnode_null();
421 int phy_startup(struct phy_device *phydev);
422 int phy_config(struct phy_device *phydev);
423 int phy_shutdown(struct phy_device *phydev);
424 int phy_register(struct phy_driver *drv);
425 int phy_set_supported(struct phy_device *phydev, u32 max_speed);
426 int genphy_config_aneg(struct phy_device *phydev);
427 int genphy_restart_aneg(struct phy_device *phydev);
428 int genphy_update_link(struct phy_device *phydev);
429 int genphy_parse_link(struct phy_device *phydev);
430 int genphy_config(struct phy_device *phydev);
431 int genphy_startup(struct phy_device *phydev);
432 int genphy_shutdown(struct phy_device *phydev);
433 int gen10g_config(struct phy_device *phydev);
434 int gen10g_startup(struct phy_device *phydev);
435 int gen10g_shutdown(struct phy_device *phydev);
436 int gen10g_discover_mmds(struct phy_device *phydev);
438 int phy_b53_init(void);
439 int phy_mv88e61xx_init(void);
440 int phy_aquantia_init(void);
441 int phy_atheros_init(void);
442 int phy_broadcom_init(void);
443 int phy_cortina_init(void);
444 int phy_davicom_init(void);
445 int phy_et1011c_init(void);
446 int phy_lxt_init(void);
447 int phy_marvell_init(void);
448 int phy_micrel_ksz8xxx_init(void);
449 int phy_micrel_ksz90x1_init(void);
450 int phy_meson_gxl_init(void);
451 int phy_natsemi_init(void);
452 int phy_realtek_init(void);
453 int phy_smsc_init(void);
454 int phy_teranetics_init(void);
455 int phy_ti_init(void);
456 int phy_vitesse_init(void);
457 int phy_xilinx_init(void);
458 int phy_mscc_init(void);
459 int phy_fixed_init(void);
460 int phy_ncsi_init(void);
461 int phy_xilinx_gmii2rgmii_init(void);
463 int board_phy_config(struct phy_device *phydev);
464 int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
467 * phy_get_interface_by_name() - Look up a PHY interface name
469 * @str: PHY interface name, e.g. "mii"
470 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
472 int phy_get_interface_by_name(const char *str);
475 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
476 * is RGMII (all variants)
477 * @phydev: the phy_device struct
479 static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
481 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
482 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
486 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
487 * is SGMII (all variants)
488 * @phydev: the phy_device struct
490 static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
492 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
493 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
496 /* PHY UIDs for various PHYs that are referenced in external code */
497 #define PHY_UID_CS4340 0x13e51002
498 #define PHY_UID_CS4223 0x03e57003
499 #define PHY_UID_TN2020 0x00a19410
500 #define PHY_UID_IN112525_S03 0x02107440