blob: e02cbdb58c9ec527d802a47c0fb13ee83c7eaba2 [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
Simon Glass2a64ada2020-07-19 10:15:39 -060012#include <log.h>
13#include <phy_interface.h>
14#include <dm/ofnode.h>
15#include <dm/read.h>
Simon Glassf2176512020-02-03 07:36:17 -070016#include <linux/errno.h>
Andy Fleming5f184712011-04-08 02:10:27 -050017#include <linux/list.h>
18#include <linux/mii.h>
19#include <linux/ethtool.h>
20#include <linux/mdio.h>
Simon Glass2a64ada2020-07-19 10:15:39 -060021
22struct udevice;
Andy Fleming5f184712011-04-08 02:10:27 -050023
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010024#define PHY_FIXED_ID 0xa5a55a5a
Samuel Mendoza-Jonasf641a8a2019-06-18 11:37:17 +100025#define PHY_NCSI_ID 0xbeefcafe
26
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +053027/*
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 Schmelzerdb40c1a2017-03-23 15:11:43 +010032
Andy Fleming5f184712011-04-08 02:10:27 -050033#define PHY_MAX_ADDR 32
34
Shaohui Xieddcd1f32016-01-28 15:55:46 +080035#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
36
Florian Fainelli4dae6102016-01-13 16:59:33 +030037#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming5f184712011-04-08 02:10:27 -050038 SUPPORTED_TP | \
39 SUPPORTED_MII)
40
Florian Fainelli4dae6102016-01-13 16:59:33 +030041#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 Fleming5f184712011-04-08 02:10:27 -050048 SUPPORTED_1000baseT_Full)
49
Florian Fainelli4dae6102016-01-13 16:59:33 +030050#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
51 PHY_100BT_FEATURES | \
52 PHY_DEFAULT_FEATURES)
53
54#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
55 PHY_1000BT_FEATURES)
56
Andy Fleming5f184712011-04-08 02:10:27 -050057#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
58 SUPPORTED_10000baseT_Full)
59
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020060#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050061#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020062#endif
Andy Fleming5f184712011-04-08 02:10:27 -050063
64
Andy Fleming5f184712011-04-08 02:10:27 -050065struct phy_device;
66
67#define MDIO_NAME_LEN 32
68
69struct mii_dev {
70 struct list_head link;
71 char name[MDIO_NAME_LEN];
72 void *priv;
73 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
74 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
75 u16 val);
76 int (*reset)(struct mii_dev *bus);
77 struct phy_device *phymap[PHY_MAX_ADDR];
78 u32 phy_mask;
79};
80
81/* struct phy_driver: a structure which defines PHY behavior
82 *
83 * uid will contain a number which represents the PHY. During
84 * startup, the driver will poll the PHY to find out what its
85 * UID--as defined by registers 2 and 3--is. The 32-bit result
86 * gotten from the PHY will be masked to
87 * discard any bits which may change based on revision numbers
88 * unimportant to functionality
89 *
90 */
91struct phy_driver {
92 char *name;
93 unsigned int uid;
94 unsigned int mask;
95 unsigned int mmds;
96
97 u32 features;
98
99 /* Called to do any driver startup necessities */
100 /* Will be called during phy_connect */
101 int (*probe)(struct phy_device *phydev);
102
103 /* Called to configure the PHY, and modify the controller
104 * based on the results. Should be called after phy_connect */
105 int (*config)(struct phy_device *phydev);
106
107 /* Called when starting up the controller */
108 int (*startup)(struct phy_device *phydev);
109
110 /* Called when bringing down the controller */
111 int (*shutdown)(struct phy_device *phydev);
112
Stefano Babicb71841b2013-09-02 15:42:30 +0200113 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
114 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
115 u16 val);
Carlo Caione4f6746d2019-02-08 17:25:06 +0000116
117 /* Phy specific driver override for reading a MMD register */
118 int (*read_mmd)(struct phy_device *phydev, int devad, int reg);
119
120 /* Phy specific driver override for writing a MMD register */
121 int (*write_mmd)(struct phy_device *phydev, int devad, int reg,
122 u16 val);
123
Alex Margineand718b692019-11-14 18:28:29 +0200124 /* driver private data */
125 ulong data;
Andy Fleming5f184712011-04-08 02:10:27 -0500126};
127
128struct phy_device {
129 /* Information about the PHY type */
130 /* And management functions */
131 struct mii_dev *bus;
132 struct phy_driver *drv;
133 void *priv;
134
Simon Glassc74c8e62015-04-05 16:07:39 -0600135 struct udevice *dev;
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500136 ofnode node;
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
Alex Margineanc38ac282019-07-11 18:32:56 +0300170/**
Alex Margineanc38ac282019-07-11 18:32:56 +0300171 * phy_reset() - Resets the specified PHY
Alex Margineanc38ac282019-07-11 18:32:56 +0300172 * Issues a reset of the PHY and waits for it to complete
173 *
174 * @phydev: PHY to reset
Dan Murphyea756fb2020-05-04 16:14:37 -0500175 * @return: 0 if OK, -ve on error
Alex Margineanc38ac282019-07-11 18:32:56 +0300176 */
Andy Fleming5f184712011-04-08 02:10:27 -0500177int phy_reset(struct phy_device *phydev);
Alex Margineanc38ac282019-07-11 18:32:56 +0300178
179/**
180 * phy_find_by_mask() - Searches for a PHY on the specified MDIO bus
Alex Margineanc38ac282019-07-11 18:32:56 +0300181 * The function checks the PHY addresses flagged in phy_mask and returns a
182 * phy_device pointer if it detects a PHY.
183 * This function should only be called if just one PHY is expected to be present
184 * in the set of addresses flagged in phy_mask. If multiple PHYs are present,
185 * it is undefined which of these PHYs is returned.
186 *
187 * @bus: MII/MDIO bus to scan
188 * @phy_mask: bitmap of PYH addresses to scan
Dan Murphyea756fb2020-05-04 16:14:37 -0500189 * @return: pointer to phy_device if a PHY is found, or NULL otherwise
Alex Margineanc38ac282019-07-11 18:32:56 +0300190 */
Marek BehĂșne24b58f2022-04-07 00:33:08 +0200191struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask);
Alex Margineanc38ac282019-07-11 18:32:56 +0300192
Vladimir Olteand0781c92021-01-25 14:23:52 +0200193#ifdef CONFIG_PHY_FIXED
194
195/**
196 * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device
197 * @node: OF node for the container of the fixed-link node
198 *
199 * Description: Creates a struct phy_device based on a fixed-link of_node
200 * description. Can be used without phy_connect by drivers which do not expose
201 * a UCLASS_ETH udevice.
202 */
203struct phy_device *fixed_phy_create(ofnode node);
204
205#else
206
207static inline struct phy_device *fixed_phy_create(ofnode node)
208{
209 return NULL;
210}
211
212#endif
213
Alex Margineanc38ac282019-07-11 18:32:56 +0300214/**
Alex Margineanc38ac282019-07-11 18:32:56 +0300215 * phy_connect() - Creates a PHY device for the Ethernet interface
Alex Margineanc38ac282019-07-11 18:32:56 +0300216 * Creates a PHY device for the PHY at the given address, if one doesn't exist
217 * already, and associates it with the Ethernet device.
218 * The function may be called with addr <= 0, in this case addr value is ignored
219 * and the bus is scanned to detect a PHY. Scanning should only be used if only
220 * one PHY is expected to be present on the MDIO bus, otherwise it is undefined
221 * which PHY is returned.
222 *
223 * @bus: MII/MDIO bus that hosts the PHY
224 * @addr: PHY address on MDIO bus
225 * @dev: Ethernet device to associate to the PHY
226 * @interface: type of MAC-PHY interface
Dan Murphyea756fb2020-05-04 16:14:37 -0500227 * @return: pointer to phy_device if a PHY is found, or NULL otherwise
Alex Margineanc38ac282019-07-11 18:32:56 +0300228 */
Simon Glassc74c8e62015-04-05 16:07:39 -0600229struct phy_device *phy_connect(struct mii_dev *bus, int addr,
230 struct udevice *dev,
231 phy_interface_t interface);
Michal Simek32491162022-02-23 15:45:41 +0100232/**
233 * phy_device_create() - Create a PHY device
234 *
235 * @bus: MII/MDIO bus that hosts the PHY
236 * @addr: PHY address on MDIO bus
237 * @phy_id: where to store the ID retrieved
238 * @is_c45: Device Identifiers if is_c45
Michal Simek32491162022-02-23 15:45:41 +0100239 * @return: pointer to phy_device if a PHY is found, or NULL otherwise
240 */
241struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Marek BehĂșne24b58f2022-04-07 00:33:08 +0200242 u32 phy_id, bool is_c45);
Alex Margineanc38ac282019-07-11 18:32:56 +0300243
Michal Simeka744a282022-02-23 15:45:42 +0100244/**
245 * phy_connect_phy_id() - Connect to phy device by reading PHY id
246 * from phy node.
247 *
248 * @bus: MII/MDIO bus that hosts the PHY
249 * @dev: Ethernet device to associate to the PHY
Michal Simeka744a282022-02-23 15:45:42 +0100250 * @return: pointer to phy_device if a PHY is found,
251 * or NULL otherwise
252 */
253struct phy_device *phy_connect_phy_id(struct mii_dev *bus, struct udevice *dev,
Tom Rini7f418ea2022-04-15 08:09:52 -0400254 int phyaddr);
Michal Simeka744a282022-02-23 15:45:42 +0100255
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500256static inline ofnode phy_get_ofnode(struct phy_device *phydev)
257{
258 if (ofnode_valid(phydev->node))
259 return phydev->node;
260 else
261 return dev_ofnode(phydev->dev);
262}
Ramon Fried65f22662022-06-05 03:44:15 +0300263
Marek Vasut1f614d52023-03-19 18:08:08 +0100264/**
265 * phy_read_mmd_poll_timeout - Periodically poll a PHY register until a
266 * condition is met or a timeout occurs
267 *
268 * @phydev: The phy_device struct
269 * @devaddr: The MMD to read from
270 * @regnum: The register on the MMD to read
271 * @val: Variable to read the register into
272 * @cond: Break condition (usually involving @val)
273 * @sleep_us: Maximum time to sleep between reads in us (0
274 * tight-loops). Should be less than ~20ms since usleep_range
275 * is used (see Documentation/timers/timers-howto.rst).
276 * @timeout_us: Timeout in us, 0 means never timeout
277 * @sleep_before_read: if it is true, sleep @sleep_us before read.
278 * Returns 0 on success and -ETIMEDOUT upon a timeout. In either
279 * case, the last read value at @args is stored in @val. Must not
280 * be called from atomic context if sleep_us or timeout_us are used.
281 */
282#define phy_read_mmd_poll_timeout(phydev, devaddr, regnum, val, cond, \
283 sleep_us, timeout_us, sleep_before_read) \
284({ \
285 int __ret = read_poll_timeout(phy_read_mmd, val, (cond) || val < 0, \
286 sleep_us, timeout_us, \
287 phydev, devaddr, regnum); \
288 if (val < 0) \
289 __ret = val; \
290 if (__ret) \
291 dev_err(phydev->dev, "%s failed: %d\n", __func__, __ret); \
292 __ret; \
293})
294
Ramon Fried65f22662022-06-05 03:44:15 +0300295int phy_read(struct phy_device *phydev, int devad, int regnum);
296int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val);
297void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum);
298int phy_read_mmd(struct phy_device *phydev, int devad, int regnum);
299int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val);
300int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
301int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val);
Marek Vasut87b75022023-03-19 18:08:07 +0100302int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
303 u16 mask, u16 set);
304int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
305 u16 mask, u16 set);
Ramon Fried65f22662022-06-05 03:44:15 +0300306
Andy Fleming5f184712011-04-08 02:10:27 -0500307int phy_startup(struct phy_device *phydev);
308int phy_config(struct phy_device *phydev);
309int phy_shutdown(struct phy_device *phydev);
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300310int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Ariel D'Alessandro087baf82022-04-12 10:31:36 -0300311int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask,
312 u16 set);
Andy Fleming5f184712011-04-08 02:10:27 -0500313int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000314int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500315int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100316int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500317int genphy_config(struct phy_device *phydev);
318int genphy_startup(struct phy_device *phydev);
319int genphy_shutdown(struct phy_device *phydev);
320int gen10g_config(struct phy_device *phydev);
321int gen10g_startup(struct phy_device *phydev);
322int gen10g_shutdown(struct phy_device *phydev);
323int gen10g_discover_mmds(struct phy_device *phydev);
324
Marek Vasut7940a932023-03-19 18:02:42 +0100325/**
326 * U_BOOT_PHY_DRIVER() - Declare a new U-Boot driver
327 * @__name: name of the driver
328 */
329#define U_BOOT_PHY_DRIVER(__name) \
330 ll_entry_declare(struct phy_driver, __name, phy_driver)
331
Fabio Estevam2fb63962014-02-15 14:52:00 -0200332int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800333int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200334
Simon Glassc74c8e62015-04-05 16:07:39 -0600335/**
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500336 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
337 * is RGMII (all variants)
338 * @phydev: the phy_device struct
Dan Murphyea756fb2020-05-04 16:14:37 -0500339 * @return: true if MII bus is RGMII or false if it is not
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500340 */
341static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
342{
Nishanth Menon09005c22023-04-14 17:06:45 -0500343 switch (phydev->interface) {
344 case PHY_INTERFACE_MODE_RGMII:
345 case PHY_INTERFACE_MODE_RGMII_ID:
346 case PHY_INTERFACE_MODE_RGMII_RXID:
347 case PHY_INTERFACE_MODE_RGMII_TXID:
348 return 1;
349 default:
350 return 0;
351 }
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500352}
353
Samuel Mendoza-Jonas09bd3d02022-08-08 21:46:03 +0930354bool phy_interface_is_ncsi(void);
355
Timur Tabia8366262011-10-18 18:44:34 -0500356/* PHY UIDs for various PHYs that are referenced in external code */
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200357#define PHY_UID_CS4340 0x13e51002
358#define PHY_UID_CS4223 0x03e57003
Priyanka Jain1ddcf5e2018-10-11 04:47:05 +0000359#define PHY_UID_TN2020 0x00a19410
360#define PHY_UID_IN112525_S03 0x02107440
Timur Tabia8366262011-10-18 18:44:34 -0500361
Andy Fleming5f184712011-04-08 02:10:27 -0500362#endif