blob: 7c3fc5ce40cce94f21ad79da6a8ebcc1e6f84fe8 [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
12#include <linux/list.h>
13#include <linux/mii.h>
14#include <linux/ethtool.h>
15#include <linux/mdio.h>
16
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010017#define PHY_FIXED_ID 0xa5a55a5a
18
Andy Fleming5f184712011-04-08 02:10:27 -050019#define PHY_MAX_ADDR 32
20
Shaohui Xieddcd1f32016-01-28 15:55:46 +080021#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
22
Florian Fainelli4dae6102016-01-13 16:59:33 +030023#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming5f184712011-04-08 02:10:27 -050024 SUPPORTED_TP | \
25 SUPPORTED_MII)
26
Florian Fainelli4dae6102016-01-13 16:59:33 +030027#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
28 SUPPORTED_10baseT_Full)
29
30#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
31 SUPPORTED_100baseT_Full)
32
33#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
Andy Fleming5f184712011-04-08 02:10:27 -050034 SUPPORTED_1000baseT_Full)
35
Florian Fainelli4dae6102016-01-13 16:59:33 +030036#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
37 PHY_100BT_FEATURES | \
38 PHY_DEFAULT_FEATURES)
39
40#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
41 PHY_1000BT_FEATURES)
42
Andy Fleming5f184712011-04-08 02:10:27 -050043#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
44 SUPPORTED_10000baseT_Full)
45
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020046#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050047#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020048#endif
Andy Fleming5f184712011-04-08 02:10:27 -050049
50
51typedef enum {
52 PHY_INTERFACE_MODE_MII,
53 PHY_INTERFACE_MODE_GMII,
54 PHY_INTERFACE_MODE_SGMII,
Shengzhou Liuc35f8692014-10-23 17:20:57 +080055 PHY_INTERFACE_MODE_SGMII_2500,
Shaohui Xie7794b1a2013-03-25 07:39:31 +000056 PHY_INTERFACE_MODE_QSGMII,
Andy Fleming5f184712011-04-08 02:10:27 -050057 PHY_INTERFACE_MODE_TBI,
58 PHY_INTERFACE_MODE_RMII,
59 PHY_INTERFACE_MODE_RGMII,
60 PHY_INTERFACE_MODE_RGMII_ID,
61 PHY_INTERFACE_MODE_RGMII_RXID,
62 PHY_INTERFACE_MODE_RGMII_TXID,
63 PHY_INTERFACE_MODE_RTBI,
64 PHY_INTERFACE_MODE_XGMII,
Stefan Roesed11e9342017-02-23 11:58:26 +010065 PHY_INTERFACE_MODE_XAUI,
66 PHY_INTERFACE_MODE_RXAUI,
67 PHY_INTERFACE_MODE_SFI,
Kunihiko Hayashiff114e02018-05-18 11:12:04 +090068 PHY_INTERFACE_MODE_INTERNAL,
Simon Glassc74c8e62015-04-05 16:07:39 -060069 PHY_INTERFACE_MODE_NONE, /* Must be last */
70
71 PHY_INTERFACE_MODE_COUNT,
Andy Fleming5f184712011-04-08 02:10:27 -050072} phy_interface_t;
73
74static const char *phy_interface_strings[] = {
75 [PHY_INTERFACE_MODE_MII] = "mii",
76 [PHY_INTERFACE_MODE_GMII] = "gmii",
77 [PHY_INTERFACE_MODE_SGMII] = "sgmii",
Shengzhou Liuc35f8692014-10-23 17:20:57 +080078 [PHY_INTERFACE_MODE_SGMII_2500] = "sgmii-2500",
Shaohui Xie7794b1a2013-03-25 07:39:31 +000079 [PHY_INTERFACE_MODE_QSGMII] = "qsgmii",
Andy Fleming5f184712011-04-08 02:10:27 -050080 [PHY_INTERFACE_MODE_TBI] = "tbi",
81 [PHY_INTERFACE_MODE_RMII] = "rmii",
82 [PHY_INTERFACE_MODE_RGMII] = "rgmii",
83 [PHY_INTERFACE_MODE_RGMII_ID] = "rgmii-id",
84 [PHY_INTERFACE_MODE_RGMII_RXID] = "rgmii-rxid",
85 [PHY_INTERFACE_MODE_RGMII_TXID] = "rgmii-txid",
86 [PHY_INTERFACE_MODE_RTBI] = "rtbi",
87 [PHY_INTERFACE_MODE_XGMII] = "xgmii",
Stefan Roesed11e9342017-02-23 11:58:26 +010088 [PHY_INTERFACE_MODE_XAUI] = "xaui",
89 [PHY_INTERFACE_MODE_RXAUI] = "rxaui",
90 [PHY_INTERFACE_MODE_SFI] = "sfi",
Kunihiko Hayashiff114e02018-05-18 11:12:04 +090091 [PHY_INTERFACE_MODE_INTERNAL] = "internal",
Andy Fleming5f184712011-04-08 02:10:27 -050092 [PHY_INTERFACE_MODE_NONE] = "",
93};
94
95static inline const char *phy_string_for_interface(phy_interface_t i)
96{
97 /* Default to unknown */
98 if (i > PHY_INTERFACE_MODE_NONE)
99 i = PHY_INTERFACE_MODE_NONE;
100
101 return phy_interface_strings[i];
102}
103
104
105struct phy_device;
106
107#define MDIO_NAME_LEN 32
108
109struct mii_dev {
110 struct list_head link;
111 char name[MDIO_NAME_LEN];
112 void *priv;
113 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
114 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
115 u16 val);
116 int (*reset)(struct mii_dev *bus);
117 struct phy_device *phymap[PHY_MAX_ADDR];
118 u32 phy_mask;
119};
120
121/* struct phy_driver: a structure which defines PHY behavior
122 *
123 * uid will contain a number which represents the PHY. During
124 * startup, the driver will poll the PHY to find out what its
125 * UID--as defined by registers 2 and 3--is. The 32-bit result
126 * gotten from the PHY will be masked to
127 * discard any bits which may change based on revision numbers
128 * unimportant to functionality
129 *
130 */
131struct phy_driver {
132 char *name;
133 unsigned int uid;
134 unsigned int mask;
135 unsigned int mmds;
136
137 u32 features;
138
139 /* Called to do any driver startup necessities */
140 /* Will be called during phy_connect */
141 int (*probe)(struct phy_device *phydev);
142
143 /* Called to configure the PHY, and modify the controller
144 * based on the results. Should be called after phy_connect */
145 int (*config)(struct phy_device *phydev);
146
147 /* Called when starting up the controller */
148 int (*startup)(struct phy_device *phydev);
149
150 /* Called when bringing down the controller */
151 int (*shutdown)(struct phy_device *phydev);
152
Stefano Babicb71841b2013-09-02 15:42:30 +0200153 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
154 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
155 u16 val);
Andy Fleming5f184712011-04-08 02:10:27 -0500156 struct list_head list;
157};
158
159struct phy_device {
160 /* Information about the PHY type */
161 /* And management functions */
162 struct mii_dev *bus;
163 struct phy_driver *drv;
164 void *priv;
165
Simon Glassc74c8e62015-04-05 16:07:39 -0600166#ifdef CONFIG_DM_ETH
167 struct udevice *dev;
168#else
Andy Fleming5f184712011-04-08 02:10:27 -0500169 struct eth_device *dev;
Simon Glassc74c8e62015-04-05 16:07:39 -0600170#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500171
172 /* forced speed & duplex (no autoneg)
173 * partner speed & duplex & pause (autoneg)
174 */
175 int speed;
176 int duplex;
177
178 /* The most recently read link state */
179 int link;
180 int port;
181 phy_interface_t interface;
182
183 u32 advertising;
184 u32 supported;
185 u32 mmds;
186
187 int autoneg;
188 int addr;
189 int pause;
190 int asym_pause;
191 u32 phy_id;
192 u32 flags;
193};
194
Shaohui Xief55a7762013-11-14 19:00:31 +0800195struct fixed_link {
196 int phy_id;
197 int duplex;
198 int link_speed;
199 int pause;
200 int asym_pause;
201};
202
Andy Fleming5f184712011-04-08 02:10:27 -0500203static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
204{
205 struct mii_dev *bus = phydev->bus;
206
207 return bus->read(bus, phydev->addr, devad, regnum);
208}
209
210static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
211 u16 val)
212{
213 struct mii_dev *bus = phydev->bus;
214
215 return bus->write(bus, phydev->addr, devad, regnum, val);
216}
217
218#ifdef CONFIG_PHYLIB_10G
219extern struct phy_driver gen10g_driver;
220
221/* For now, XGMII is the only 10G interface */
222static inline int is_10g_interface(phy_interface_t interface)
223{
224 return interface == PHY_INTERFACE_MODE_XGMII;
225}
226
227#endif
228
229int phy_init(void);
230int phy_reset(struct phy_device *phydev);
Troy Kisky1adb4062012-10-22 16:40:43 +0000231struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
232 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600233#ifdef CONFIG_DM_ETH
234void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
235struct phy_device *phy_connect(struct mii_dev *bus, int addr,
236 struct udevice *dev,
237 phy_interface_t interface);
238#else
Troy Kisky1adb4062012-10-22 16:40:43 +0000239void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Andy Fleming5f184712011-04-08 02:10:27 -0500240struct phy_device *phy_connect(struct mii_dev *bus, int addr,
241 struct eth_device *dev,
242 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600243#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500244int phy_startup(struct phy_device *phydev);
245int phy_config(struct phy_device *phydev);
246int phy_shutdown(struct phy_device *phydev);
247int phy_register(struct phy_driver *drv);
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300248int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Andy Fleming5f184712011-04-08 02:10:27 -0500249int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000250int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500251int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100252int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500253int genphy_config(struct phy_device *phydev);
254int genphy_startup(struct phy_device *phydev);
255int genphy_shutdown(struct phy_device *phydev);
256int gen10g_config(struct phy_device *phydev);
257int gen10g_startup(struct phy_device *phydev);
258int gen10g_shutdown(struct phy_device *phydev);
259int gen10g_discover_mmds(struct phy_device *phydev);
260
Florian Fainelli137963d2017-12-09 14:59:54 -0800261int phy_b53_init(void);
Kevin Smith24ae3962016-03-31 19:33:12 +0000262int phy_mv88e61xx_init(void);
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800263int phy_aquantia_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500264int phy_atheros_init(void);
265int phy_broadcom_init(void);
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800266int phy_cortina_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500267int phy_davicom_init(void);
Matt Porterf485c8a2013-03-20 05:38:13 +0000268int phy_et1011c_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500269int phy_lxt_init(void);
270int phy_marvell_init(void);
Alexandru Gagniucd397f7c2017-07-07 11:36:57 -0700271int phy_micrel_ksz8xxx_init(void);
272int phy_micrel_ksz90x1_init(void);
Neil Armstrong8995a962017-10-18 10:02:10 +0200273int phy_meson_gxl_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500274int phy_natsemi_init(void);
275int phy_realtek_init(void);
Vladimir Zapolskiyb6abf552011-12-29 15:18:37 +0000276int phy_smsc_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500277int phy_teranetics_init(void);
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700278int phy_ti_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500279int phy_vitesse_init(void);
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530280int phy_xilinx_init(void);
John Haechtena5fd13a2016-12-09 22:15:17 +0000281int phy_mscc_init(void);
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100282int phy_fixed_init(void);
Timur Tabia8366262011-10-18 18:44:34 -0500283
Fabio Estevam2fb63962014-02-15 14:52:00 -0200284int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800285int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200286
Simon Glassc74c8e62015-04-05 16:07:39 -0600287/**
288 * phy_get_interface_by_name() - Look up a PHY interface name
289 *
290 * @str: PHY interface name, e.g. "mii"
291 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
292 */
293int phy_get_interface_by_name(const char *str);
294
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500295/**
296 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
297 * is RGMII (all variants)
298 * @phydev: the phy_device struct
299 */
300static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
301{
302 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
303 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
304}
305
Dan Murphy3c221af2016-05-02 15:46:01 -0500306/**
307 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
308 * is SGMII (all variants)
309 * @phydev: the phy_device struct
310 */
311static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
312{
313 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
314 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
315}
316
Timur Tabia8366262011-10-18 18:44:34 -0500317/* PHY UIDs for various PHYs that are referenced in external code */
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800318#define PHY_UID_CS4340 0x13e51002
Vicentiu Galanopulo552e7c52018-05-02 06:23:38 -0500319#define PHY_UID_CS4223 0x03e57003
Timur Tabia8366262011-10-18 18:44:34 -0500320#define PHY_UID_TN2020 0x00a19410
321
Andy Fleming5f184712011-04-08 02:10:27 -0500322#endif