blob: 0d0febbbafdf0801ae09c8eebd85a1d4a03c3dca [file] [log] [blame]
Andy Fleming5f184712011-04-08 02:10:27 -05001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
Andy Flemingb21f87a2014-07-25 17:39:08 -05003 * Andy Fleming <afleming@gmail.com>
Andy Fleming5f184712011-04-08 02:10:27 -05004 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Andy Fleming5f184712011-04-08 02:10:27 -05006 *
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_MAX_ADDR 32
19
20#define PHY_BASIC_FEATURES (SUPPORTED_10baseT_Half | \
21 SUPPORTED_10baseT_Full | \
22 SUPPORTED_100baseT_Half | \
23 SUPPORTED_100baseT_Full | \
24 SUPPORTED_Autoneg | \
25 SUPPORTED_TP | \
26 SUPPORTED_MII)
27
28#define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
29 SUPPORTED_1000baseT_Half | \
30 SUPPORTED_1000baseT_Full)
31
32#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
33 SUPPORTED_10000baseT_Full)
34
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020035#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050036#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020037#endif
Andy Fleming5f184712011-04-08 02:10:27 -050038
39
40typedef enum {
41 PHY_INTERFACE_MODE_MII,
42 PHY_INTERFACE_MODE_GMII,
43 PHY_INTERFACE_MODE_SGMII,
Shengzhou Liuc35f8692014-10-23 17:20:57 +080044 PHY_INTERFACE_MODE_SGMII_2500,
Shaohui Xie7794b1a2013-03-25 07:39:31 +000045 PHY_INTERFACE_MODE_QSGMII,
Andy Fleming5f184712011-04-08 02:10:27 -050046 PHY_INTERFACE_MODE_TBI,
47 PHY_INTERFACE_MODE_RMII,
48 PHY_INTERFACE_MODE_RGMII,
49 PHY_INTERFACE_MODE_RGMII_ID,
50 PHY_INTERFACE_MODE_RGMII_RXID,
51 PHY_INTERFACE_MODE_RGMII_TXID,
52 PHY_INTERFACE_MODE_RTBI,
53 PHY_INTERFACE_MODE_XGMII,
Akila Nd0541542016-08-30 19:17:03 +053054 PHY_INTERFACE_MODE_PSGMII,
Simon Glassc74c8e62015-04-05 16:07:39 -060055 PHY_INTERFACE_MODE_NONE, /* Must be last */
56
57 PHY_INTERFACE_MODE_COUNT,
Andy Fleming5f184712011-04-08 02:10:27 -050058} phy_interface_t;
59
60static const char *phy_interface_strings[] = {
61 [PHY_INTERFACE_MODE_MII] = "mii",
62 [PHY_INTERFACE_MODE_GMII] = "gmii",
63 [PHY_INTERFACE_MODE_SGMII] = "sgmii",
Shengzhou Liuc35f8692014-10-23 17:20:57 +080064 [PHY_INTERFACE_MODE_SGMII_2500] = "sgmii-2500",
Shaohui Xie7794b1a2013-03-25 07:39:31 +000065 [PHY_INTERFACE_MODE_QSGMII] = "qsgmii",
Andy Fleming5f184712011-04-08 02:10:27 -050066 [PHY_INTERFACE_MODE_TBI] = "tbi",
67 [PHY_INTERFACE_MODE_RMII] = "rmii",
68 [PHY_INTERFACE_MODE_RGMII] = "rgmii",
69 [PHY_INTERFACE_MODE_RGMII_ID] = "rgmii-id",
70 [PHY_INTERFACE_MODE_RGMII_RXID] = "rgmii-rxid",
71 [PHY_INTERFACE_MODE_RGMII_TXID] = "rgmii-txid",
72 [PHY_INTERFACE_MODE_RTBI] = "rtbi",
73 [PHY_INTERFACE_MODE_XGMII] = "xgmii",
Akila Nd0541542016-08-30 19:17:03 +053074 [PHY_INTERFACE_MODE_PSGMII] = "psgmii",
Andy Fleming5f184712011-04-08 02:10:27 -050075 [PHY_INTERFACE_MODE_NONE] = "",
76};
77
78static inline const char *phy_string_for_interface(phy_interface_t i)
79{
80 /* Default to unknown */
81 if (i > PHY_INTERFACE_MODE_NONE)
82 i = PHY_INTERFACE_MODE_NONE;
83
84 return phy_interface_strings[i];
85}
86
87
88struct phy_device;
89
90#define MDIO_NAME_LEN 32
91
92struct mii_dev {
93 struct list_head link;
94 char name[MDIO_NAME_LEN];
95 void *priv;
96 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
97 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
98 u16 val);
99 int (*reset)(struct mii_dev *bus);
100 struct phy_device *phymap[PHY_MAX_ADDR];
101 u32 phy_mask;
102};
103
104/* struct phy_driver: a structure which defines PHY behavior
105 *
106 * uid will contain a number which represents the PHY. During
107 * startup, the driver will poll the PHY to find out what its
108 * UID--as defined by registers 2 and 3--is. The 32-bit result
109 * gotten from the PHY will be masked to
110 * discard any bits which may change based on revision numbers
111 * unimportant to functionality
112 *
113 */
114struct phy_driver {
115 char *name;
116 unsigned int uid;
117 unsigned int mask;
118 unsigned int mmds;
119
120 u32 features;
121
122 /* Called to do any driver startup necessities */
123 /* Will be called during phy_connect */
124 int (*probe)(struct phy_device *phydev);
125
126 /* Called to configure the PHY, and modify the controller
127 * based on the results. Should be called after phy_connect */
128 int (*config)(struct phy_device *phydev);
129
130 /* Called when starting up the controller */
131 int (*startup)(struct phy_device *phydev);
132
133 /* Called when bringing down the controller */
134 int (*shutdown)(struct phy_device *phydev);
135
Stefano Babicb71841b2013-09-02 15:42:30 +0200136 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
137 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
138 u16 val);
Andy Fleming5f184712011-04-08 02:10:27 -0500139 struct list_head list;
140};
141
142struct phy_device {
143 /* Information about the PHY type */
144 /* And management functions */
145 struct mii_dev *bus;
146 struct phy_driver *drv;
147 void *priv;
148
Simon Glassc74c8e62015-04-05 16:07:39 -0600149#ifdef CONFIG_DM_ETH
150 struct udevice *dev;
151#else
Andy Fleming5f184712011-04-08 02:10:27 -0500152 struct eth_device *dev;
Simon Glassc74c8e62015-04-05 16:07:39 -0600153#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500154
155 /* forced speed & duplex (no autoneg)
156 * partner speed & duplex & pause (autoneg)
157 */
158 int speed;
159 int duplex;
160
161 /* The most recently read link state */
162 int link;
163 int port;
164 phy_interface_t interface;
165
166 u32 advertising;
167 u32 supported;
168 u32 mmds;
169
170 int autoneg;
171 int addr;
172 int pause;
173 int asym_pause;
174 u32 phy_id;
175 u32 flags;
176};
177
Shaohui Xief55a7762013-11-14 19:00:31 +0800178struct fixed_link {
179 int phy_id;
180 int duplex;
181 int link_speed;
182 int pause;
183 int asym_pause;
184};
185
Andy Fleming5f184712011-04-08 02:10:27 -0500186static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
187{
188 struct mii_dev *bus = phydev->bus;
189
190 return bus->read(bus, phydev->addr, devad, regnum);
191}
192
193static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
194 u16 val)
195{
196 struct mii_dev *bus = phydev->bus;
197
198 return bus->write(bus, phydev->addr, devad, regnum, val);
199}
200
201#ifdef CONFIG_PHYLIB_10G
202extern struct phy_driver gen10g_driver;
203
204/* For now, XGMII is the only 10G interface */
205static inline int is_10g_interface(phy_interface_t interface)
206{
207 return interface == PHY_INTERFACE_MODE_XGMII;
208}
209
210#endif
211
212int phy_init(void);
213int phy_reset(struct phy_device *phydev);
Troy Kisky1adb4062012-10-22 16:40:43 +0000214struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
215 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600216#ifdef CONFIG_DM_ETH
217void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
218struct phy_device *phy_connect(struct mii_dev *bus, int addr,
219 struct udevice *dev,
220 phy_interface_t interface);
221#else
Troy Kisky1adb4062012-10-22 16:40:43 +0000222void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Andy Fleming5f184712011-04-08 02:10:27 -0500223struct phy_device *phy_connect(struct mii_dev *bus, int addr,
224 struct eth_device *dev,
225 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600226#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500227int phy_startup(struct phy_device *phydev);
228int phy_config(struct phy_device *phydev);
229int phy_shutdown(struct phy_device *phydev);
230int phy_register(struct phy_driver *drv);
231int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000232int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500233int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100234int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500235int genphy_config(struct phy_device *phydev);
236int genphy_startup(struct phy_device *phydev);
237int genphy_shutdown(struct phy_device *phydev);
238int gen10g_config(struct phy_device *phydev);
239int gen10g_startup(struct phy_device *phydev);
240int gen10g_shutdown(struct phy_device *phydev);
241int gen10g_discover_mmds(struct phy_device *phydev);
242
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800243int phy_aquantia_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500244int phy_atheros_init(void);
245int phy_broadcom_init(void);
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800246int phy_cortina_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500247int phy_davicom_init(void);
Matt Porterf485c8a2013-03-20 05:38:13 +0000248int phy_et1011c_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500249int phy_lxt_init(void);
250int phy_marvell_init(void);
251int phy_micrel_init(void);
252int phy_natsemi_init(void);
253int phy_realtek_init(void);
Vladimir Zapolskiyb6abf552011-12-29 15:18:37 +0000254int phy_smsc_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500255int phy_teranetics_init(void);
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700256int phy_ti_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500257int phy_vitesse_init(void);
Timur Tabia8366262011-10-18 18:44:34 -0500258
Fabio Estevam2fb63962014-02-15 14:52:00 -0200259int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800260int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200261
Simon Glassc74c8e62015-04-05 16:07:39 -0600262/**
263 * phy_get_interface_by_name() - Look up a PHY interface name
264 *
265 * @str: PHY interface name, e.g. "mii"
266 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
267 */
268int phy_get_interface_by_name(const char *str);
269
Timur Tabia8366262011-10-18 18:44:34 -0500270/* PHY UIDs for various PHYs that are referenced in external code */
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800271#define PHY_UID_CS4340 0x13e51002
Timur Tabia8366262011-10-18 18:44:34 -0500272#define PHY_UID_TN2020 0x00a19410
273
Andy Fleming5f184712011-04-08 02:10:27 -0500274#endif