blob: d6a83150cf688237010ec7d7db4a5b5f83b09605 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Andy Flemingaecf6fc2011-04-08 02:10:27 -05002/*
3 * Copyright 2011 Freescale Semiconductor, Inc.
Andy Flemingb36a4d42014-07-25 17:39:08 -05004 * Andy Fleming <afleming@gmail.com>
Andy Flemingaecf6fc2011-04-08 02:10:27 -05005 *
Andy Flemingaecf6fc2011-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 Strashko6189c062018-07-05 12:02:48 -050012#include <dm.h>
Andy Flemingaecf6fc2011-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 Hershbergerf5581fb2018-07-17 15:02:30 -050017#include <phy_interface.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050018
Hannes Schmelzerda494602017-03-23 15:11:43 +010019#define PHY_FIXED_ID 0xa5a55a5a
20
Andy Flemingaecf6fc2011-04-08 02:10:27 -050021#define PHY_MAX_ADDR 32
22
Shaohui Xie62a7b922016-01-28 15:55:46 +080023#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
24
Florian Fainelli33bbc242016-01-13 16:59:33 +030025#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Flemingaecf6fc2011-04-08 02:10:27 -050026 SUPPORTED_TP | \
27 SUPPORTED_MII)
28
Florian Fainelli33bbc242016-01-13 16:59:33 +030029#define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \
30 SUPPORTED_10baseT_Full)
31
32#define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \
33 SUPPORTED_100baseT_Full)
34
35#define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \
Andy Flemingaecf6fc2011-04-08 02:10:27 -050036 SUPPORTED_1000baseT_Full)
37
Florian Fainelli33bbc242016-01-13 16:59:33 +030038#define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \
39 PHY_100BT_FEATURES | \
40 PHY_DEFAULT_FEATURES)
41
42#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
43 PHY_1000BT_FEATURES)
44
Andy Flemingaecf6fc2011-04-08 02:10:27 -050045#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
46 SUPPORTED_10000baseT_Full)
47
Stefan Roeseb6af5572014-10-22 12:13:15 +020048#ifndef PHY_ANEG_TIMEOUT
Andy Flemingaecf6fc2011-04-08 02:10:27 -050049#define PHY_ANEG_TIMEOUT 4000
Stefan Roeseb6af5572014-10-22 12:13:15 +020050#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -050051
52
Andy Flemingaecf6fc2011-04-08 02:10:27 -050053struct phy_device;
54
55#define MDIO_NAME_LEN 32
56
57struct mii_dev {
58 struct list_head link;
59 char name[MDIO_NAME_LEN];
60 void *priv;
61 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
62 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
63 u16 val);
64 int (*reset)(struct mii_dev *bus);
65 struct phy_device *phymap[PHY_MAX_ADDR];
66 u32 phy_mask;
67};
68
69/* struct phy_driver: a structure which defines PHY behavior
70 *
71 * uid will contain a number which represents the PHY. During
72 * startup, the driver will poll the PHY to find out what its
73 * UID--as defined by registers 2 and 3--is. The 32-bit result
74 * gotten from the PHY will be masked to
75 * discard any bits which may change based on revision numbers
76 * unimportant to functionality
77 *
78 */
79struct phy_driver {
80 char *name;
81 unsigned int uid;
82 unsigned int mask;
83 unsigned int mmds;
84
85 u32 features;
86
87 /* Called to do any driver startup necessities */
88 /* Will be called during phy_connect */
89 int (*probe)(struct phy_device *phydev);
90
91 /* Called to configure the PHY, and modify the controller
92 * based on the results. Should be called after phy_connect */
93 int (*config)(struct phy_device *phydev);
94
95 /* Called when starting up the controller */
96 int (*startup)(struct phy_device *phydev);
97
98 /* Called when bringing down the controller */
99 int (*shutdown)(struct phy_device *phydev);
100
Stefano Babic6b8c5972013-09-02 15:42:30 +0200101 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
102 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
103 u16 val);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500104 struct list_head list;
105};
106
107struct phy_device {
108 /* Information about the PHY type */
109 /* And management functions */
110 struct mii_dev *bus;
111 struct phy_driver *drv;
112 void *priv;
113
Simon Glassdbad3462015-04-05 16:07:39 -0600114#ifdef CONFIG_DM_ETH
115 struct udevice *dev;
Grygorii Strashko6189c062018-07-05 12:02:48 -0500116 ofnode node;
Simon Glassdbad3462015-04-05 16:07:39 -0600117#else
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500118 struct eth_device *dev;
Simon Glassdbad3462015-04-05 16:07:39 -0600119#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500120
121 /* forced speed & duplex (no autoneg)
122 * partner speed & duplex & pause (autoneg)
123 */
124 int speed;
125 int duplex;
126
127 /* The most recently read link state */
128 int link;
129 int port;
130 phy_interface_t interface;
131
132 u32 advertising;
133 u32 supported;
134 u32 mmds;
135
136 int autoneg;
137 int addr;
138 int pause;
139 int asym_pause;
140 u32 phy_id;
141 u32 flags;
142};
143
Shaohui Xieb48127f2013-11-14 19:00:31 +0800144struct fixed_link {
145 int phy_id;
146 int duplex;
147 int link_speed;
148 int pause;
149 int asym_pause;
150};
151
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500152static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
153{
154 struct mii_dev *bus = phydev->bus;
155
156 return bus->read(bus, phydev->addr, devad, regnum);
157}
158
159static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
160 u16 val)
161{
162 struct mii_dev *bus = phydev->bus;
163
164 return bus->write(bus, phydev->addr, devad, regnum, val);
165}
166
167#ifdef CONFIG_PHYLIB_10G
168extern struct phy_driver gen10g_driver;
169
170/* For now, XGMII is the only 10G interface */
171static inline int is_10g_interface(phy_interface_t interface)
172{
173 return interface == PHY_INTERFACE_MODE_XGMII;
174}
175
176#endif
177
178int phy_init(void);
179int phy_reset(struct phy_device *phydev);
Troy Kisky9519bc52012-10-22 16:40:43 +0000180struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
181 phy_interface_t interface);
Simon Glassdbad3462015-04-05 16:07:39 -0600182#ifdef CONFIG_DM_ETH
183void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
184struct phy_device *phy_connect(struct mii_dev *bus, int addr,
185 struct udevice *dev,
186 phy_interface_t interface);
Grygorii Strashko6189c062018-07-05 12:02:48 -0500187static inline ofnode phy_get_ofnode(struct phy_device *phydev)
188{
189 if (ofnode_valid(phydev->node))
190 return phydev->node;
191 else
192 return dev_ofnode(phydev->dev);
193}
Simon Glassdbad3462015-04-05 16:07:39 -0600194#else
Troy Kisky9519bc52012-10-22 16:40:43 +0000195void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500196struct phy_device *phy_connect(struct mii_dev *bus, int addr,
197 struct eth_device *dev,
198 phy_interface_t interface);
Grygorii Strashko6189c062018-07-05 12:02:48 -0500199static inline ofnode phy_get_ofnode(struct phy_device *phydev)
200{
201 return ofnode_null();
202}
Simon Glassdbad3462015-04-05 16:07:39 -0600203#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500204int phy_startup(struct phy_device *phydev);
205int phy_config(struct phy_device *phydev);
206int phy_shutdown(struct phy_device *phydev);
207int phy_register(struct phy_driver *drv);
Alexey Brodkine476bb22016-01-13 16:59:34 +0300208int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500209int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky80b6b092012-02-07 14:08:48 +0000210int genphy_restart_aneg(struct phy_device *phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500211int genphy_update_link(struct phy_device *phydev);
Yegor Yefremovc40f5d32012-11-28 11:15:17 +0100212int genphy_parse_link(struct phy_device *phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500213int genphy_config(struct phy_device *phydev);
214int genphy_startup(struct phy_device *phydev);
215int genphy_shutdown(struct phy_device *phydev);
216int gen10g_config(struct phy_device *phydev);
217int gen10g_startup(struct phy_device *phydev);
218int gen10g_shutdown(struct phy_device *phydev);
219int gen10g_discover_mmds(struct phy_device *phydev);
220
Florian Fainelli01b4ade2017-12-09 14:59:54 -0800221int phy_b53_init(void);
Kevin Smith87b2c4e2016-03-31 19:33:12 +0000222int phy_mv88e61xx_init(void);
Shaohui Xie0e548d72014-12-30 18:32:04 +0800223int phy_aquantia_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500224int phy_atheros_init(void);
225int phy_broadcom_init(void);
Shengzhou Liuc878bdb2014-11-10 18:32:29 +0800226int phy_cortina_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500227int phy_davicom_init(void);
Matt Porter3bbeb792013-03-20 05:38:13 +0000228int phy_et1011c_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500229int phy_lxt_init(void);
230int phy_marvell_init(void);
Alexandru Gagniuc757bb672017-07-07 11:36:57 -0700231int phy_micrel_ksz8xxx_init(void);
232int phy_micrel_ksz90x1_init(void);
Neil Armstrong7a4c90d2017-10-18 10:02:10 +0200233int phy_meson_gxl_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500234int phy_natsemi_init(void);
235int phy_realtek_init(void);
Vladimir Zapolskiyaf9605f2011-12-29 15:18:37 +0000236int phy_smsc_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500237int phy_teranetics_init(void);
Edgar E. Iglesias8d3ce682015-09-25 23:46:08 -0700238int phy_ti_init(void);
Andy Fleming60ca78b2011-04-07 21:56:05 -0500239int phy_vitesse_init(void);
Siva Durga Prasad Paladugudd6cbd32016-02-05 13:22:10 +0530240int phy_xilinx_init(void);
John Haechtenee253f92016-12-09 22:15:17 +0000241int phy_mscc_init(void);
Hannes Schmelzerda494602017-03-23 15:11:43 +0100242int phy_fixed_init(void);
Timur Tabi856f32f2011-10-18 18:44:34 -0500243
Fabio Estevam55e0f192014-02-15 14:52:00 -0200244int board_phy_config(struct phy_device *phydev);
Shengzhou Liu072b0fa2015-04-07 18:46:32 +0800245int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam55e0f192014-02-15 14:52:00 -0200246
Simon Glassdbad3462015-04-05 16:07:39 -0600247/**
248 * phy_get_interface_by_name() - Look up a PHY interface name
249 *
250 * @str: PHY interface name, e.g. "mii"
251 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
252 */
253int phy_get_interface_by_name(const char *str);
254
Dan Murphy63e3cde2016-05-02 15:46:00 -0500255/**
256 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
257 * is RGMII (all variants)
258 * @phydev: the phy_device struct
259 */
260static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
261{
262 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
263 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
264}
265
Dan Murphy07cf56a2016-05-02 15:46:01 -0500266/**
267 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
268 * is SGMII (all variants)
269 * @phydev: the phy_device struct
270 */
271static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
272{
273 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
274 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
275}
276
Timur Tabi856f32f2011-10-18 18:44:34 -0500277/* PHY UIDs for various PHYs that are referenced in external code */
Shengzhou Liuc878bdb2014-11-10 18:32:29 +0800278#define PHY_UID_CS4340 0x13e51002
Vicentiu Galanopulo33f68aa2018-05-02 06:23:38 -0500279#define PHY_UID_CS4223 0x03e57003
Timur Tabi856f32f2011-10-18 18:44:34 -0500280#define PHY_UID_TN2020 0x00a19410
281
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500282#endif