blob: 6ace9b3a0c4c7b21c4b6b6c8a9793f2be2ee1315 [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>
Andy Fleming5f184712011-04-08 02:10:27 -050013#include <linux/list.h>
14#include <linux/mii.h>
15#include <linux/ethtool.h>
16#include <linux/mdio.h>
Joe Hershbergerf070b1a2018-07-17 15:02:30 -050017#include <phy_interface.h>
Andy Fleming5f184712011-04-08 02:10:27 -050018
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010019#define PHY_FIXED_ID 0xa5a55a5a
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +053020/*
21 * There is no actual id for this.
22 * This is just a dummy id for gmii2rgmmi converter.
23 */
24#define PHY_GMII2RGMII_ID 0x5a5a5a5a
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010025
Andy Fleming5f184712011-04-08 02:10:27 -050026#define PHY_MAX_ADDR 32
27
Shaohui Xieddcd1f32016-01-28 15:55:46 +080028#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
29
Florian Fainelli4dae6102016-01-13 16:59:33 +030030#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming5f184712011-04-08 02:10:27 -050031 SUPPORTED_TP | \
32 SUPPORTED_MII)
33
Florian Fainelli4dae6102016-01-13 16:59:33 +030034#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
35 SUPPORTED_10baseT_Full)
36
37#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
38 SUPPORTED_100baseT_Full)
39
40#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
Andy Fleming5f184712011-04-08 02:10:27 -050041 SUPPORTED_1000baseT_Full)
42
Florian Fainelli4dae6102016-01-13 16:59:33 +030043#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
44 PHY_100BT_FEATURES | \
45 PHY_DEFAULT_FEATURES)
46
47#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
48 PHY_1000BT_FEATURES)
49
Andy Fleming5f184712011-04-08 02:10:27 -050050#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
51 SUPPORTED_10000baseT_Full)
52
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020053#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050054#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020055#endif
Andy Fleming5f184712011-04-08 02:10:27 -050056
57
Andy Fleming5f184712011-04-08 02:10:27 -050058struct phy_device;
59
60#define MDIO_NAME_LEN 32
61
62struct mii_dev {
63 struct list_head link;
64 char name[MDIO_NAME_LEN];
65 void *priv;
66 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
67 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
68 u16 val);
69 int (*reset)(struct mii_dev *bus);
70 struct phy_device *phymap[PHY_MAX_ADDR];
71 u32 phy_mask;
72};
73
74/* struct phy_driver: a structure which defines PHY behavior
75 *
76 * uid will contain a number which represents the PHY. During
77 * startup, the driver will poll the PHY to find out what its
78 * UID--as defined by registers 2 and 3--is. The 32-bit result
79 * gotten from the PHY will be masked to
80 * discard any bits which may change based on revision numbers
81 * unimportant to functionality
82 *
83 */
84struct phy_driver {
85 char *name;
86 unsigned int uid;
87 unsigned int mask;
88 unsigned int mmds;
89
90 u32 features;
91
92 /* Called to do any driver startup necessities */
93 /* Will be called during phy_connect */
94 int (*probe)(struct phy_device *phydev);
95
96 /* Called to configure the PHY, and modify the controller
97 * based on the results. Should be called after phy_connect */
98 int (*config)(struct phy_device *phydev);
99
100 /* Called when starting up the controller */
101 int (*startup)(struct phy_device *phydev);
102
103 /* Called when bringing down the controller */
104 int (*shutdown)(struct phy_device *phydev);
105
Stefano Babicb71841b2013-09-02 15:42:30 +0200106 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
107 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
108 u16 val);
Carlo Caione4f6746d2019-02-08 17:25:06 +0000109
110 /* Phy specific driver override for reading a MMD register */
111 int (*read_mmd)(struct phy_device *phydev, int devad, int reg);
112
113 /* Phy specific driver override for writing a MMD register */
114 int (*write_mmd)(struct phy_device *phydev, int devad, int reg,
115 u16 val);
116
Andy Fleming5f184712011-04-08 02:10:27 -0500117 struct list_head list;
Alex Margineand718b692019-11-14 18:28:29 +0200118
119 /* driver private data */
120 ulong data;
Andy Fleming5f184712011-04-08 02:10:27 -0500121};
122
123struct phy_device {
124 /* Information about the PHY type */
125 /* And management functions */
126 struct mii_dev *bus;
127 struct phy_driver *drv;
128 void *priv;
129
Simon Glassc74c8e62015-04-05 16:07:39 -0600130#ifdef CONFIG_DM_ETH
131 struct udevice *dev;
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500132 ofnode node;
Simon Glassc74c8e62015-04-05 16:07:39 -0600133#else
Andy Fleming5f184712011-04-08 02:10:27 -0500134 struct eth_device *dev;
Simon Glassc74c8e62015-04-05 16:07:39 -0600135#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500136
137 /* forced speed & duplex (no autoneg)
138 * partner speed & duplex & pause (autoneg)
139 */
140 int speed;
141 int duplex;
142
143 /* The most recently read link state */
144 int link;
145 int port;
146 phy_interface_t interface;
147
148 u32 advertising;
149 u32 supported;
150 u32 mmds;
151
152 int autoneg;
153 int addr;
154 int pause;
155 int asym_pause;
156 u32 phy_id;
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000157 bool is_c45;
Andy Fleming5f184712011-04-08 02:10:27 -0500158 u32 flags;
159};
160
Shaohui Xief55a7762013-11-14 19:00:31 +0800161struct fixed_link {
162 int phy_id;
163 int duplex;
164 int link_speed;
165 int pause;
166 int asym_pause;
167};
168
Andy Fleming5f184712011-04-08 02:10:27 -0500169static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
170{
171 struct mii_dev *bus = phydev->bus;
172
173 return bus->read(bus, phydev->addr, devad, regnum);
174}
175
176static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
177 u16 val)
178{
179 struct mii_dev *bus = phydev->bus;
180
181 return bus->write(bus, phydev->addr, devad, regnum, val);
182}
183
Carlo Caione4f6746d2019-02-08 17:25:06 +0000184static inline void phy_mmd_start_indirect(struct phy_device *phydev, int devad,
185 int regnum)
186{
187 /* Write the desired MMD Devad */
188 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad);
189
190 /* Write the desired MMD register address */
191 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum);
192
193 /* Select the Function : DATA with no post increment */
194 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL,
195 (devad | MII_MMD_CTRL_NOINCR));
196}
197
198static inline int phy_read_mmd(struct phy_device *phydev, int devad,
199 int regnum)
200{
201 struct phy_driver *drv = phydev->drv;
202
203 if (regnum > (u16)~0 || devad > 32)
204 return -EINVAL;
205
206 /* driver-specific access */
207 if (drv->read_mmd)
208 return drv->read_mmd(phydev, devad, regnum);
209
210 /* direct C45 / C22 access */
211 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
212 devad == MDIO_DEVAD_NONE || !devad)
213 return phy_read(phydev, devad, regnum);
214
215 /* indirect C22 access */
216 phy_mmd_start_indirect(phydev, devad, regnum);
217
218 /* Read the content of the MMD's selected register */
219 return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA);
220}
221
222static inline int phy_write_mmd(struct phy_device *phydev, int devad,
223 int regnum, u16 val)
224{
225 struct phy_driver *drv = phydev->drv;
226
227 if (regnum > (u16)~0 || devad > 32)
228 return -EINVAL;
229
230 /* driver-specific access */
231 if (drv->write_mmd)
232 return drv->write_mmd(phydev, devad, regnum, val);
233
234 /* direct C45 / C22 access */
235 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
236 devad == MDIO_DEVAD_NONE || !devad)
237 return phy_write(phydev, devad, regnum, val);
238
239 /* indirect C22 access */
240 phy_mmd_start_indirect(phydev, devad, regnum);
241
242 /* Write the data into MMD's selected register */
243 return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val);
244}
245
Andy Fleming5f184712011-04-08 02:10:27 -0500246#ifdef CONFIG_PHYLIB_10G
247extern struct phy_driver gen10g_driver;
248
249/* For now, XGMII is the only 10G interface */
250static inline int is_10g_interface(phy_interface_t interface)
251{
252 return interface == PHY_INTERFACE_MODE_XGMII;
253}
254
255#endif
256
Alex Margineanc38ac282019-07-11 18:32:56 +0300257/**
258 * phy_init() - Initializes the PHY drivers
259 *
260 * This function registers all available PHY drivers
261 *
262 * @return 0 if OK, -ve on error
263 */
Andy Fleming5f184712011-04-08 02:10:27 -0500264int phy_init(void);
Alex Margineanc38ac282019-07-11 18:32:56 +0300265
266/**
267 * phy_reset() - Resets the specified PHY
268 *
269 * Issues a reset of the PHY and waits for it to complete
270 *
271 * @phydev: PHY to reset
272 * @return 0 if OK, -ve on error
273 */
Andy Fleming5f184712011-04-08 02:10:27 -0500274int phy_reset(struct phy_device *phydev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300275
276/**
277 * phy_find_by_mask() - Searches for a PHY on the specified MDIO bus
278 *
279 * The function checks the PHY addresses flagged in phy_mask and returns a
280 * phy_device pointer if it detects a PHY.
281 * This function should only be called if just one PHY is expected to be present
282 * in the set of addresses flagged in phy_mask. If multiple PHYs are present,
283 * it is undefined which of these PHYs is returned.
284 *
285 * @bus: MII/MDIO bus to scan
286 * @phy_mask: bitmap of PYH addresses to scan
287 * @interface: type of MAC-PHY interface
288 * @return pointer to phy_device if a PHY is found, or NULL otherwise
289 */
Troy Kisky1adb4062012-10-22 16:40:43 +0000290struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
291 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300292
Simon Glassc74c8e62015-04-05 16:07:39 -0600293#ifdef CONFIG_DM_ETH
Alex Margineanc38ac282019-07-11 18:32:56 +0300294
295/**
296 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
297 * @phydev: PHY device
298 * @dev: Ethernet device
299 */
Simon Glassc74c8e62015-04-05 16:07:39 -0600300void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300301
302/**
303 * phy_connect() - Creates a PHY device for the Ethernet interface
304 *
305 * Creates a PHY device for the PHY at the given address, if one doesn't exist
306 * already, and associates it with the Ethernet device.
307 * The function may be called with addr <= 0, in this case addr value is ignored
308 * and the bus is scanned to detect a PHY. Scanning should only be used if only
309 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
310 * which PHY is returned.
311 *
312 * @bus: MII/MDIO bus that hosts the PHY
313 * @addr: PHY address on MDIO bus
314 * @dev: Ethernet device to associate to the PHY
315 * @interface: type of MAC-PHY interface
316 * @return pointer to phy_device if a PHY is found, or NULL otherwise
317 */
Simon Glassc74c8e62015-04-05 16:07:39 -0600318struct phy_device *phy_connect(struct mii_dev *bus, int addr,
319 struct udevice *dev,
320 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300321
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500322static inline ofnode phy_get_ofnode(struct phy_device *phydev)
323{
324 if (ofnode_valid(phydev->node))
325 return phydev->node;
326 else
327 return dev_ofnode(phydev->dev);
328}
Simon Glassc74c8e62015-04-05 16:07:39 -0600329#else
Alex Margineanc38ac282019-07-11 18:32:56 +0300330
331/**
332 * phy_connect_dev() - Associates the given pair of PHY and Ethernet devices
333 * @phydev: PHY device
334 * @dev: Ethernet device
335 */
Troy Kisky1adb4062012-10-22 16:40:43 +0000336void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300337
338/**
339 * phy_connect() - Creates a PHY device for the Ethernet interface
340 *
341 * Creates a PHY device for the PHY at the given address, if one doesn't exist
342 * already, and associates it with the Ethernet device.
343 * The function may be called with addr <= 0, in this case addr value is ignored
344 * and the bus is scanned to detect a PHY. Scanning should only be used if only
345 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
346 * which PHY is returned.
347 *
348 * @bus: MII/MDIO bus that hosts the PHY
349 * @addr: PHY address on MDIO bus
350 * @dev: Ethernet device to associate to the PHY
351 * @interface: type of MAC-PHY interface
352 * @return pointer to phy_device if a PHY is found, or NULL otherwise
353 */
Andy Fleming5f184712011-04-08 02:10:27 -0500354struct phy_device *phy_connect(struct mii_dev *bus, int addr,
355 struct eth_device *dev,
356 phy_interface_t interface);
Alex Margineanc38ac282019-07-11 18:32:56 +0300357
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500358static inline ofnode phy_get_ofnode(struct phy_device *phydev)
359{
360 return ofnode_null();
361}
Simon Glassc74c8e62015-04-05 16:07:39 -0600362#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500363int phy_startup(struct phy_device *phydev);
364int phy_config(struct phy_device *phydev);
365int phy_shutdown(struct phy_device *phydev);
366int phy_register(struct phy_driver *drv);
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300367int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Andy Fleming5f184712011-04-08 02:10:27 -0500368int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000369int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500370int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100371int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500372int genphy_config(struct phy_device *phydev);
373int genphy_startup(struct phy_device *phydev);
374int genphy_shutdown(struct phy_device *phydev);
375int gen10g_config(struct phy_device *phydev);
376int gen10g_startup(struct phy_device *phydev);
377int gen10g_shutdown(struct phy_device *phydev);
378int gen10g_discover_mmds(struct phy_device *phydev);
379
Florian Fainelli137963d2017-12-09 14:59:54 -0800380int phy_b53_init(void);
Kevin Smith24ae3962016-03-31 19:33:12 +0000381int phy_mv88e61xx_init(void);
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800382int phy_aquantia_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500383int phy_atheros_init(void);
384int phy_broadcom_init(void);
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800385int phy_cortina_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500386int phy_davicom_init(void);
Matt Porterf485c8a2013-03-20 05:38:13 +0000387int phy_et1011c_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500388int phy_lxt_init(void);
389int phy_marvell_init(void);
Alexandru Gagniucd397f7c2017-07-07 11:36:57 -0700390int phy_micrel_ksz8xxx_init(void);
391int phy_micrel_ksz90x1_init(void);
Neil Armstrong8995a962017-10-18 10:02:10 +0200392int phy_meson_gxl_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500393int phy_natsemi_init(void);
394int phy_realtek_init(void);
Vladimir Zapolskiyb6abf552011-12-29 15:18:37 +0000395int phy_smsc_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500396int phy_teranetics_init(void);
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700397int phy_ti_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500398int phy_vitesse_init(void);
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530399int phy_xilinx_init(void);
John Haechtena5fd13a2016-12-09 22:15:17 +0000400int phy_mscc_init(void);
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100401int phy_fixed_init(void);
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530402int phy_xilinx_gmii2rgmii_init(void);
Timur Tabia8366262011-10-18 18:44:34 -0500403
Fabio Estevam2fb63962014-02-15 14:52:00 -0200404int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800405int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200406
Simon Glassc74c8e62015-04-05 16:07:39 -0600407/**
408 * phy_get_interface_by_name() - Look up a PHY interface name
409 *
410 * @str: PHY interface name, e.g. "mii"
411 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
412 */
413int phy_get_interface_by_name(const char *str);
414
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500415/**
416 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
417 * is RGMII (all variants)
418 * @phydev: the phy_device struct
419 */
420static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
421{
422 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
423 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
424}
425
Dan Murphy3c221af2016-05-02 15:46:01 -0500426/**
427 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
428 * is SGMII (all variants)
429 * @phydev: the phy_device struct
430 */
431static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
432{
433 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
434 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
435}
436
Timur Tabia8366262011-10-18 18:44:34 -0500437/* PHY UIDs for various PHYs that are referenced in external code */
Priyanka Jain1ddcf5e2018-10-11 04:47:05 +0000438#define PHY_UID_CS4340 0x13e51002
439#define PHY_UID_CS4223 0x03e57003
440#define PHY_UID_TN2020 0x00a19410
441#define PHY_UID_IN112525_S03 0x02107440
Timur Tabia8366262011-10-18 18:44:34 -0500442
Andy Fleming5f184712011-04-08 02:10:27 -0500443#endif