blob: 42cfc59ec0ab2ce472c8c2ee2eb23fd73a65f9d2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Andy Fleming5f184712011-04-08 02:10:27 -05002/*
3 * Copyright 2011 Freescale Semiconductor, Inc.
Andy Flemingb21f87a32014-07-25 17:39:08 -05004 * Andy Fleming <afleming@gmail.com>
Andy Fleming5f184712011-04-08 02:10:27 -05005 *
Andy Fleming5f184712011-04-08 02:10:27 -05006 * 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
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -050012#include <dm.h>
Simon Glassf2176512020-02-03 07:36:17 -070013#include <linux/errno.h>
Andy Fleming5f184712011-04-08 02:10:27 -050014#include <linux/list.h>
15#include <linux/mii.h>
16#include <linux/ethtool.h>
17#include <linux/mdio.h>
Joe Hershbergerf070b1a2018-07-17 15:02:30 -050018#include <phy_interface.h>
Andy Fleming5f184712011-04-08 02:10:27 -050019
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010020#define PHY_FIXED_ID 0xa5a55a5a
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +053021/*
22 * There is no actual id for this.
23 * This is just a dummy id for gmii2rgmmi converter.
24 */
25#define PHY_GMII2RGMII_ID 0x5a5a5a5a
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010026
Andy Fleming5f184712011-04-08 02:10:27 -050027#define PHY_MAX_ADDR 32
28
Shaohui Xieddcd1f32016-01-28 15:55:46 +080029#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
30
Florian Fainelli4dae6102016-01-13 16:59:33 +030031#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming5f184712011-04-08 02:10:27 -050032 SUPPORTED_TP | \
33 SUPPORTED_MII)
34
Florian Fainelli4dae6102016-01-13 16:59:33 +030035#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
36 SUPPORTED_10baseT_Full)
37
38#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
39 SUPPORTED_100baseT_Full)
40
41#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
Andy Fleming5f184712011-04-08 02:10:27 -050042 SUPPORTED_1000baseT_Full)
43
Florian Fainelli4dae6102016-01-13 16:59:33 +030044#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
45 PHY_100BT_FEATURES | \
46 PHY_DEFAULT_FEATURES)
47
48#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
49 PHY_1000BT_FEATURES)
50
Andy Fleming5f184712011-04-08 02:10:27 -050051#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
52 SUPPORTED_10000baseT_Full)
53
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020054#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050055#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020056#endif
Andy Fleming5f184712011-04-08 02:10:27 -050057
58
Andy Fleming5f184712011-04-08 02:10:27 -050059struct phy_device;
60
61#define MDIO_NAME_LEN 32
62
63struct mii_dev {
64 struct list_head link;
65 char name[MDIO_NAME_LEN];
66 void *priv;
67 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
68 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
69 u16 val);
70 int (*reset)(struct mii_dev *bus);
71 struct phy_device *phymap[PHY_MAX_ADDR];
72 u32 phy_mask;
73};
74
75/* struct phy_driver: a structure which defines PHY behavior
76 *
77 * uid will contain a number which represents the PHY. During
78 * startup, the driver will poll the PHY to find out what its
79 * UID--as defined by registers 2 and 3--is. The 32-bit result
80 * gotten from the PHY will be masked to
81 * discard any bits which may change based on revision numbers
82 * unimportant to functionality
83 *
84 */
85struct phy_driver {
86 char *name;
87 unsigned int uid;
88 unsigned int mask;
89 unsigned int mmds;
90
91 u32 features;
92
93 /* Called to do any driver startup necessities */
94 /* Will be called during phy_connect */
95 int (*probe)(struct phy_device *phydev);
96
97 /* Called to configure the PHY, and modify the controller
98 * based on the results. Should be called after phy_connect */
99 int (*config)(struct phy_device *phydev);
100
101 /* Called when starting up the controller */
102 int (*startup)(struct phy_device *phydev);
103
104 /* Called when bringing down the controller */
105 int (*shutdown)(struct phy_device *phydev);
106
Stefano Babicb71841b2013-09-02 15:42:30 +0200107 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
108 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
109 u16 val);
Carlo Caione4f6746d2019-02-08 17:25:06 +0000110
111 /* Phy specific driver override for reading a MMD register */
112 int (*read_mmd)(struct phy_device *phydev, int devad, int reg);
113
114 /* Phy specific driver override for writing a MMD register */
115 int (*write_mmd)(struct phy_device *phydev, int devad, int reg,
116 u16 val);
117
Andy Fleming5f184712011-04-08 02:10:27 -0500118 struct list_head list;
Alex Margineand718b692019-11-14 18:28:29 +0200119
120 /* driver private data */
121 ulong data;
Andy Fleming5f184712011-04-08 02:10:27 -0500122};
123
124struct phy_device {
125 /* Information about the PHY type */
126 /* And management functions */
127 struct mii_dev *bus;
128 struct phy_driver *drv;
129 void *priv;
130
Simon Glassc74c8e62015-04-05 16:07:39 -0600131#ifdef CONFIG_DM_ETH
132 struct udevice *dev;
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500133 ofnode node;
Simon Glassc74c8e62015-04-05 16:07:39 -0600134#else
Andy Fleming5f184712011-04-08 02:10:27 -0500135 struct eth_device *dev;
Simon Glassc74c8e62015-04-05 16:07:39 -0600136#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500137
138 /* forced speed & duplex (no autoneg)
139 * partner speed & duplex & pause (autoneg)
140 */
141 int speed;
142 int duplex;
143
144 /* The most recently read link state */
145 int link;
146 int port;
147 phy_interface_t interface;
148
149 u32 advertising;
150 u32 supported;
151 u32 mmds;
152
153 int autoneg;
154 int addr;
155 int pause;
156 int asym_pause;
157 u32 phy_id;
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000158 bool is_c45;
Andy Fleming5f184712011-04-08 02:10:27 -0500159 u32 flags;
160};
161
Shaohui Xief55a7762013-11-14 19:00:31 +0800162struct fixed_link {
163 int phy_id;
164 int duplex;
165 int link_speed;
166 int pause;
167 int asym_pause;
168};
169
Andy Fleming5f184712011-04-08 02:10:27 -0500170static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
171{
172 struct mii_dev *bus = phydev->bus;
173
174 return bus->read(bus, phydev->addr, devad, regnum);
175}
176
177static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
178 u16 val)
179{
180 struct mii_dev *bus = phydev->bus;
181
182 return bus->write(bus, phydev->addr, devad, regnum, val);
183}
184
Carlo Caione4f6746d2019-02-08 17:25:06 +0000185static inline void phy_mmd_start_indirect(struct phy_device *phydev, int devad,
186 int regnum)
187{
188 /* Write the desired MMD Devad */
189 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad);
190
191 /* Write the desired MMD register address */
192 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum);
193
194 /* Select the Function : DATA with no post increment */
195 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL,
196 (devad | MII_MMD_CTRL_NOINCR));
197}
198
199static inline int phy_read_mmd(struct phy_device *phydev, int devad,
200 int regnum)
201{
202 struct phy_driver *drv = phydev->drv;
203
204 if (regnum > (u16)~0 || devad > 32)
205 return -EINVAL;
206
207 /* driver-specific access */
208 if (drv->read_mmd)
209 return drv->read_mmd(phydev, devad, regnum);
210
211 /* direct C45 / C22 access */
212 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
213 devad == MDIO_DEVAD_NONE || !devad)
214 return phy_read(phydev, devad, regnum);
215
216 /* indirect C22 access */
217 phy_mmd_start_indirect(phydev, devad, regnum);
218
219 /* Read the content of the MMD's selected register */
220 return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA);
221}
222
223static inline int phy_write_mmd(struct phy_device *phydev, int devad,
224 int regnum, u16 val)
225{
226 struct phy_driver *drv = phydev->drv;
227
228 if (regnum > (u16)~0 || devad > 32)
229 return -EINVAL;
230
231 /* driver-specific access */
232 if (drv->write_mmd)
233 return drv->write_mmd(phydev, devad, regnum, val);
234
235 /* direct C45 / C22 access */
236 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
237 devad == MDIO_DEVAD_NONE || !devad)
238 return phy_write(phydev, devad, regnum, val);
239
240 /* indirect C22 access */
241 phy_mmd_start_indirect(phydev, devad, regnum);
242
243 /* Write the data into MMD's selected register */
244 return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val);
245}
246
Andy Fleming5f184712011-04-08 02:10:27 -0500247#ifdef CONFIG_PHYLIB_10G
248extern struct phy_driver gen10g_driver;
249
250/* For now, XGMII is the only 10G interface */
251static inline int is_10g_interface(phy_interface_t interface)
252{
253 return interface == PHY_INTERFACE_MODE_XGMII;
254}
255
256#endif
257
Alex Margineanc38ac282019-07-11 18:32:56 +0300258/**
259 * phy_init() - Initializes the PHY drivers
260 *
261 * This function registers all available PHY drivers
262 *
263 * @return 0 if OK, -ve on error
264 */
Andy Fleming5f184712011-04-08 02:10:27 -0500265int phy_init(void);
Alex Margineanc38ac282019-07-11 18:32:56 +0300266
267/**
268 * phy_reset() - Resets the specified PHY
269 *
270 * Issues a reset of the PHY and waits for it to complete
271 *
272 * @phydev: PHY to reset
273 * @return 0 if OK, -ve on error
274 */
Andy Fleming5f184712011-04-08 02:10:27 -0500275int phy_reset(struct phy_device *phydev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300276
277/**
278 * phy_find_by_mask() - Searches for a PHY on the specified MDIO bus
279 *
280 * The function checks the PHY addresses flagged in phy_mask and returns a
281 * phy_device pointer if it detects a PHY.
282 * This function should only be called if just one PHY is expected to be present
283 * in the set of addresses flagged in phy_mask. If multiple PHYs are present,
284 * it is undefined which of these PHYs is returned.
285 *
286 * @bus: MII/MDIO bus to scan
287 * @phy_mask: bitmap of PYH addresses to scan
288 * @interface: type of MAC-PHY interface
289 * @return pointer to phy_device if a PHY is found, or NULL otherwise
290 */
Troy Kisky1adb4062012-10-22 16:40:43 +0000291struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
292 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300293
Simon Glassc74c8e62015-04-05 16:07:39 -0600294#ifdef CONFIG_DM_ETH
Alex Margineanc38ac282019-07-11 18:32:56 +0300295
296/**
297 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
298 * @phydev: PHY device
299 * @dev: Ethernet device
300 */
Simon Glassc74c8e62015-04-05 16:07:39 -0600301void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300302
303/**
304 * phy_connect() - Creates a PHY device for the Ethernet interface
305 *
306 * Creates a PHY device for the PHY at the given address, if one doesn't exist
307 * already, and associates it with the Ethernet device.
308 * The function may be called with addr <= 0, in this case addr value is ignored
309 * and the bus is scanned to detect a PHY. Scanning should only be used if only
310 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
311 * which PHY is returned.
312 *
313 * @bus: MII/MDIO bus that hosts the PHY
314 * @addr: PHY address on MDIO bus
315 * @dev: Ethernet device to associate to the PHY
316 * @interface: type of MAC-PHY interface
317 * @return pointer to phy_device if a PHY is found, or NULL otherwise
318 */
Simon Glassc74c8e62015-04-05 16:07:39 -0600319struct phy_device *phy_connect(struct mii_dev *bus, int addr,
320 struct udevice *dev,
321 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300322
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500323static inline ofnode phy_get_ofnode(struct phy_device *phydev)
324{
325 if (ofnode_valid(phydev->node))
326 return phydev->node;
327 else
328 return dev_ofnode(phydev->dev);
329}
Simon Glassc74c8e62015-04-05 16:07:39 -0600330#else
Alex Margineanc38ac282019-07-11 18:32:56 +0300331
332/**
333 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
334 * @phydev: PHY device
335 * @dev: Ethernet device
336 */
Troy Kisky1adb4062012-10-22 16:40:43 +0000337void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300338
339/**
340 * phy_connect() - Creates a PHY device for the Ethernet interface
341 *
342 * Creates a PHY device for the PHY at the given address, if one doesn't exist
343 * already, and associates it with the Ethernet device.
344 * The function may be called with addr <= 0, in this case addr value is ignored
345 * and the bus is scanned to detect a PHY. Scanning should only be used if only
346 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
347 * which PHY is returned.
348 *
349 * @bus: MII/MDIO bus that hosts the PHY
350 * @addr: PHY address on MDIO bus
351 * @dev: Ethernet device to associate to the PHY
352 * @interface: type of MAC-PHY interface
353 * @return pointer to phy_device if a PHY is found, or NULL otherwise
354 */
Andy Fleming5f184712011-04-08 02:10:27 -0500355struct phy_device *phy_connect(struct mii_dev *bus, int addr,
356 struct eth_device *dev,
357 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300358
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500359static inline ofnode phy_get_ofnode(struct phy_device *phydev)
360{
361 return ofnode_null();
362}
Simon Glassc74c8e62015-04-05 16:07:39 -0600363#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500364int phy_startup(struct phy_device *phydev);
365int phy_config(struct phy_device *phydev);
366int phy_shutdown(struct phy_device *phydev);
367int phy_register(struct phy_driver *drv);
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300368int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Andy Fleming5f184712011-04-08 02:10:27 -0500369int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000370int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500371int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100372int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500373int genphy_config(struct phy_device *phydev);
374int genphy_startup(struct phy_device *phydev);
375int genphy_shutdown(struct phy_device *phydev);
376int gen10g_config(struct phy_device *phydev);
377int gen10g_startup(struct phy_device *phydev);
378int gen10g_shutdown(struct phy_device *phydev);
379int gen10g_discover_mmds(struct phy_device *phydev);
380
Florian Fainelli137963d2017-12-09 14:59:54 -0800381int phy_b53_init(void);
Kevin Smith24ae3962016-03-31 19:33:12 +0000382int phy_mv88e61xx_init(void);
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800383int phy_aquantia_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500384int phy_atheros_init(void);
385int phy_broadcom_init(void);
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800386int phy_cortina_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500387int phy_davicom_init(void);
Matt Porterf485c8a2013-03-20 05:38:13 +0000388int phy_et1011c_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500389int phy_lxt_init(void);
390int phy_marvell_init(void);
Alexandru Gagniucd397f7c2017-07-07 11:36:57 -0700391int phy_micrel_ksz8xxx_init(void);
392int phy_micrel_ksz90x1_init(void);
Neil Armstrong8995a962017-10-18 10:02:10 +0200393int phy_meson_gxl_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500394int phy_natsemi_init(void);
395int phy_realtek_init(void);
Vladimir Zapolskiyb6abf552011-12-29 15:18:37 +0000396int phy_smsc_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500397int phy_teranetics_init(void);
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700398int phy_ti_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500399int phy_vitesse_init(void);
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530400int phy_xilinx_init(void);
John Haechtena5fd13a2016-12-09 22:15:17 +0000401int phy_mscc_init(void);
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100402int phy_fixed_init(void);
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530403int phy_xilinx_gmii2rgmii_init(void);
Timur Tabia8366262011-10-18 18:44:34 -0500404
Fabio Estevam2fb63962014-02-15 14:52:00 -0200405int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800406int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200407
Simon Glassc74c8e62015-04-05 16:07:39 -0600408/**
409 * phy_get_interface_by_name() - Look up a PHY interface name
410 *
411 * @str: PHY interface name, e.g. "mii"
412 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
413 */
414int phy_get_interface_by_name(const char *str);
415
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500416/**
417 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
418 * is RGMII (all variants)
419 * @phydev: the phy_device struct
420 */
421static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
422{
423 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
424 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
425}
426
Dan Murphy3c221af2016-05-02 15:46:01 -0500427/**
428 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
429 * is SGMII (all variants)
430 * @phydev: the phy_device struct
431 */
432static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
433{
434 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
435 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
436}
437
Timur Tabia8366262011-10-18 18:44:34 -0500438/* PHY UIDs for various PHYs that are referenced in external code */
Priyanka Jain1ddcf5e2018-10-11 04:47:05 +0000439#define PHY_UID_CS4340 0x13e51002
440#define PHY_UID_CS4223 0x03e57003
441#define PHY_UID_TN2020 0x00a19410
442#define PHY_UID_IN112525_S03 0x02107440
Timur Tabia8366262011-10-18 18:44:34 -0500443
Andy Fleming5f184712011-04-08 02:10:27 -0500444#endif