xref: /openbmc/u-boot/include/phy.h (revision 76b00aca)
1 /*
2  * Copyright 2011 Freescale Semiconductor, Inc.
3  *	Andy Fleming <afleming@gmail.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  *
7  * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h
8  */
9 
10 #ifndef _PHY_H
11 #define _PHY_H
12 
13 #include <linux/list.h>
14 #include <linux/mii.h>
15 #include <linux/ethtool.h>
16 #include <linux/mdio.h>
17 
18 #define PHY_FIXED_ID		0xa5a55a5a
19 
20 #define PHY_MAX_ADDR 32
21 
22 #define PHY_FLAG_BROKEN_RESET	(1 << 0) /* soft reset not supported */
23 
24 #define PHY_DEFAULT_FEATURES	(SUPPORTED_Autoneg | \
25 				 SUPPORTED_TP | \
26 				 SUPPORTED_MII)
27 
28 #define PHY_10BT_FEATURES	(SUPPORTED_10baseT_Half | \
29 				 SUPPORTED_10baseT_Full)
30 
31 #define PHY_100BT_FEATURES	(SUPPORTED_100baseT_Half | \
32 				 SUPPORTED_100baseT_Full)
33 
34 #define PHY_1000BT_FEATURES	(SUPPORTED_1000baseT_Half | \
35 				 SUPPORTED_1000baseT_Full)
36 
37 #define PHY_BASIC_FEATURES	(PHY_10BT_FEATURES | \
38 				 PHY_100BT_FEATURES | \
39 				 PHY_DEFAULT_FEATURES)
40 
41 #define PHY_GBIT_FEATURES	(PHY_BASIC_FEATURES | \
42 				 PHY_1000BT_FEATURES)
43 
44 #define PHY_10G_FEATURES	(PHY_GBIT_FEATURES | \
45 				SUPPORTED_10000baseT_Full)
46 
47 #ifndef PHY_ANEG_TIMEOUT
48 #define PHY_ANEG_TIMEOUT	4000
49 #endif
50 
51 
52 typedef enum {
53 	PHY_INTERFACE_MODE_MII,
54 	PHY_INTERFACE_MODE_GMII,
55 	PHY_INTERFACE_MODE_SGMII,
56 	PHY_INTERFACE_MODE_SGMII_2500,
57 	PHY_INTERFACE_MODE_QSGMII,
58 	PHY_INTERFACE_MODE_TBI,
59 	PHY_INTERFACE_MODE_RMII,
60 	PHY_INTERFACE_MODE_RGMII,
61 	PHY_INTERFACE_MODE_RGMII_ID,
62 	PHY_INTERFACE_MODE_RGMII_RXID,
63 	PHY_INTERFACE_MODE_RGMII_TXID,
64 	PHY_INTERFACE_MODE_RTBI,
65 	PHY_INTERFACE_MODE_XGMII,
66 	PHY_INTERFACE_MODE_XAUI,
67 	PHY_INTERFACE_MODE_RXAUI,
68 	PHY_INTERFACE_MODE_SFI,
69 	PHY_INTERFACE_MODE_NONE,	/* Must be last */
70 
71 	PHY_INTERFACE_MODE_COUNT,
72 } phy_interface_t;
73 
74 static const char *phy_interface_strings[] = {
75 	[PHY_INTERFACE_MODE_MII]		= "mii",
76 	[PHY_INTERFACE_MODE_GMII]		= "gmii",
77 	[PHY_INTERFACE_MODE_SGMII]		= "sgmii",
78 	[PHY_INTERFACE_MODE_SGMII_2500]		= "sgmii-2500",
79 	[PHY_INTERFACE_MODE_QSGMII]		= "qsgmii",
80 	[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",
88 	[PHY_INTERFACE_MODE_XAUI]		= "xaui",
89 	[PHY_INTERFACE_MODE_RXAUI]		= "rxaui",
90 	[PHY_INTERFACE_MODE_SFI]		= "sfi",
91 	[PHY_INTERFACE_MODE_NONE]		= "",
92 };
93 
94 static inline const char *phy_string_for_interface(phy_interface_t i)
95 {
96 	/* Default to unknown */
97 	if (i > PHY_INTERFACE_MODE_NONE)
98 		i = PHY_INTERFACE_MODE_NONE;
99 
100 	return phy_interface_strings[i];
101 }
102 
103 
104 struct phy_device;
105 
106 #define MDIO_NAME_LEN 32
107 
108 struct mii_dev {
109 	struct list_head link;
110 	char name[MDIO_NAME_LEN];
111 	void *priv;
112 	int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
113 	int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
114 			u16 val);
115 	int (*reset)(struct mii_dev *bus);
116 	struct phy_device *phymap[PHY_MAX_ADDR];
117 	u32 phy_mask;
118 };
119 
120 /* struct phy_driver: a structure which defines PHY behavior
121  *
122  * uid will contain a number which represents the PHY.  During
123  * startup, the driver will poll the PHY to find out what its
124  * UID--as defined by registers 2 and 3--is.  The 32-bit result
125  * gotten from the PHY will be masked to
126  * discard any bits which may change based on revision numbers
127  * unimportant to functionality
128  *
129  */
130 struct phy_driver {
131 	char *name;
132 	unsigned int uid;
133 	unsigned int mask;
134 	unsigned int mmds;
135 
136 	u32 features;
137 
138 	/* Called to do any driver startup necessities */
139 	/* Will be called during phy_connect */
140 	int (*probe)(struct phy_device *phydev);
141 
142 	/* Called to configure the PHY, and modify the controller
143 	 * based on the results.  Should be called after phy_connect */
144 	int (*config)(struct phy_device *phydev);
145 
146 	/* Called when starting up the controller */
147 	int (*startup)(struct phy_device *phydev);
148 
149 	/* Called when bringing down the controller */
150 	int (*shutdown)(struct phy_device *phydev);
151 
152 	int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
153 	int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
154 			u16 val);
155 	struct list_head list;
156 };
157 
158 struct phy_device {
159 	/* Information about the PHY type */
160 	/* And management functions */
161 	struct mii_dev *bus;
162 	struct phy_driver *drv;
163 	void *priv;
164 
165 #ifdef CONFIG_DM_ETH
166 	struct udevice *dev;
167 #else
168 	struct eth_device *dev;
169 #endif
170 
171 	/* forced speed & duplex (no autoneg)
172 	 * partner speed & duplex & pause (autoneg)
173 	 */
174 	int speed;
175 	int duplex;
176 
177 	/* The most recently read link state */
178 	int link;
179 	int port;
180 	phy_interface_t interface;
181 
182 	u32 advertising;
183 	u32 supported;
184 	u32 mmds;
185 
186 	int autoneg;
187 	int addr;
188 	int pause;
189 	int asym_pause;
190 	u32 phy_id;
191 	u32 flags;
192 };
193 
194 struct fixed_link {
195 	int phy_id;
196 	int duplex;
197 	int link_speed;
198 	int pause;
199 	int asym_pause;
200 };
201 
202 static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
203 {
204 	struct mii_dev *bus = phydev->bus;
205 
206 	return bus->read(bus, phydev->addr, devad, regnum);
207 }
208 
209 static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
210 			u16 val)
211 {
212 	struct mii_dev *bus = phydev->bus;
213 
214 	return bus->write(bus, phydev->addr, devad, regnum, val);
215 }
216 
217 #ifdef CONFIG_PHYLIB_10G
218 extern struct phy_driver gen10g_driver;
219 
220 /* For now, XGMII is the only 10G interface */
221 static inline int is_10g_interface(phy_interface_t interface)
222 {
223 	return interface == PHY_INTERFACE_MODE_XGMII;
224 }
225 
226 #endif
227 
228 int phy_init(void);
229 int phy_reset(struct phy_device *phydev);
230 struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
231 		phy_interface_t interface);
232 #ifdef CONFIG_DM_ETH
233 void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
234 struct phy_device *phy_connect(struct mii_dev *bus, int addr,
235 				struct udevice *dev,
236 				phy_interface_t interface);
237 #else
238 void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
239 struct phy_device *phy_connect(struct mii_dev *bus, int addr,
240 				struct eth_device *dev,
241 				phy_interface_t interface);
242 #endif
243 int phy_startup(struct phy_device *phydev);
244 int phy_config(struct phy_device *phydev);
245 int phy_shutdown(struct phy_device *phydev);
246 int phy_register(struct phy_driver *drv);
247 int phy_set_supported(struct phy_device *phydev, u32 max_speed);
248 int genphy_config_aneg(struct phy_device *phydev);
249 int genphy_restart_aneg(struct phy_device *phydev);
250 int genphy_update_link(struct phy_device *phydev);
251 int genphy_parse_link(struct phy_device *phydev);
252 int genphy_config(struct phy_device *phydev);
253 int genphy_startup(struct phy_device *phydev);
254 int genphy_shutdown(struct phy_device *phydev);
255 int gen10g_config(struct phy_device *phydev);
256 int gen10g_startup(struct phy_device *phydev);
257 int gen10g_shutdown(struct phy_device *phydev);
258 int gen10g_discover_mmds(struct phy_device *phydev);
259 
260 int phy_mv88e61xx_init(void);
261 int phy_aquantia_init(void);
262 int phy_atheros_init(void);
263 int phy_broadcom_init(void);
264 int phy_cortina_init(void);
265 int phy_davicom_init(void);
266 int phy_et1011c_init(void);
267 int phy_lxt_init(void);
268 int phy_marvell_init(void);
269 int phy_micrel_init(void);
270 int phy_natsemi_init(void);
271 int phy_realtek_init(void);
272 int phy_smsc_init(void);
273 int phy_teranetics_init(void);
274 int phy_ti_init(void);
275 int phy_vitesse_init(void);
276 int phy_xilinx_init(void);
277 int phy_mscc_init(void);
278 int phy_fixed_init(void);
279 
280 int board_phy_config(struct phy_device *phydev);
281 int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
282 
283 /**
284  * phy_get_interface_by_name() - Look up a PHY interface name
285  *
286  * @str:	PHY interface name, e.g. "mii"
287  * @return PHY_INTERFACE_MODE_... value, or -1 if not found
288  */
289 int phy_get_interface_by_name(const char *str);
290 
291 /**
292  * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
293  * is RGMII (all variants)
294  * @phydev: the phy_device struct
295  */
296 static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
297 {
298 	return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
299 		phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
300 }
301 
302 /**
303  * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
304  * is SGMII (all variants)
305  * @phydev: the phy_device struct
306  */
307 static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
308 {
309 	return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
310 		phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
311 }
312 
313 /* PHY UIDs for various PHYs that are referenced in external code */
314 #define PHY_UID_CS4340  0x13e51002
315 #define PHY_UID_TN2020	0x00a19410
316 
317 #endif
318