blob: 09645a8ddb0cf26e135cf5cecdececb3084a5ce2 [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 Flemingb21f87a2014-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>
Joe Hershbergerf070b1a2018-07-17 15:02:30 -050016#include <phy_interface.h>
Andy Fleming5f184712011-04-08 02:10:27 -050017
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +010018#define PHY_FIXED_ID 0xa5a55a5a
19
Andy Fleming5f184712011-04-08 02:10:27 -050020#define PHY_MAX_ADDR 32
21
Shaohui Xieddcd1f32016-01-28 15:55:46 +080022#define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */
23
Florian Fainelli4dae6102016-01-13 16:59:33 +030024#define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \
Andy Fleming5f184712011-04-08 02:10:27 -050025 SUPPORTED_TP | \
26 SUPPORTED_MII)
27
Florian Fainelli4dae6102016-01-13 16:59:33 +030028#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 | \
Andy Fleming5f184712011-04-08 02:10:27 -050035 SUPPORTED_1000baseT_Full)
36
Florian Fainelli4dae6102016-01-13 16:59:33 +030037#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
Andy Fleming5f184712011-04-08 02:10:27 -050044#define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \
45 SUPPORTED_10000baseT_Full)
46
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020047#ifndef PHY_ANEG_TIMEOUT
Andy Fleming5f184712011-04-08 02:10:27 -050048#define PHY_ANEG_TIMEOUT 4000
Stefan Roese4fb3f0c2014-10-22 12:13:15 +020049#endif
Andy Fleming5f184712011-04-08 02:10:27 -050050
51
Andy Fleming5f184712011-04-08 02:10:27 -050052struct phy_device;
53
54#define MDIO_NAME_LEN 32
55
56struct mii_dev {
57 struct list_head link;
58 char name[MDIO_NAME_LEN];
59 void *priv;
60 int (*read)(struct mii_dev *bus, int addr, int devad, int reg);
61 int (*write)(struct mii_dev *bus, int addr, int devad, int reg,
62 u16 val);
63 int (*reset)(struct mii_dev *bus);
64 struct phy_device *phymap[PHY_MAX_ADDR];
65 u32 phy_mask;
66};
67
68/* struct phy_driver: a structure which defines PHY behavior
69 *
70 * uid will contain a number which represents the PHY. During
71 * startup, the driver will poll the PHY to find out what its
72 * UID--as defined by registers 2 and 3--is. The 32-bit result
73 * gotten from the PHY will be masked to
74 * discard any bits which may change based on revision numbers
75 * unimportant to functionality
76 *
77 */
78struct phy_driver {
79 char *name;
80 unsigned int uid;
81 unsigned int mask;
82 unsigned int mmds;
83
84 u32 features;
85
86 /* Called to do any driver startup necessities */
87 /* Will be called during phy_connect */
88 int (*probe)(struct phy_device *phydev);
89
90 /* Called to configure the PHY, and modify the controller
91 * based on the results. Should be called after phy_connect */
92 int (*config)(struct phy_device *phydev);
93
94 /* Called when starting up the controller */
95 int (*startup)(struct phy_device *phydev);
96
97 /* Called when bringing down the controller */
98 int (*shutdown)(struct phy_device *phydev);
99
Stefano Babicb71841b2013-09-02 15:42:30 +0200100 int (*readext)(struct phy_device *phydev, int addr, int devad, int reg);
101 int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg,
102 u16 val);
Andy Fleming5f184712011-04-08 02:10:27 -0500103 struct list_head list;
104};
105
106struct phy_device {
107 /* Information about the PHY type */
108 /* And management functions */
109 struct mii_dev *bus;
110 struct phy_driver *drv;
111 void *priv;
112
Simon Glassc74c8e62015-04-05 16:07:39 -0600113#ifdef CONFIG_DM_ETH
114 struct udevice *dev;
115#else
Andy Fleming5f184712011-04-08 02:10:27 -0500116 struct eth_device *dev;
Simon Glassc74c8e62015-04-05 16:07:39 -0600117#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500118
119 /* forced speed & duplex (no autoneg)
120 * partner speed & duplex & pause (autoneg)
121 */
122 int speed;
123 int duplex;
124
125 /* The most recently read link state */
126 int link;
127 int port;
128 phy_interface_t interface;
129
130 u32 advertising;
131 u32 supported;
132 u32 mmds;
133
134 int autoneg;
135 int addr;
136 int pause;
137 int asym_pause;
138 u32 phy_id;
139 u32 flags;
140};
141
Shaohui Xief55a7762013-11-14 19:00:31 +0800142struct fixed_link {
143 int phy_id;
144 int duplex;
145 int link_speed;
146 int pause;
147 int asym_pause;
148};
149
Andy Fleming5f184712011-04-08 02:10:27 -0500150static inline int phy_read(struct phy_device *phydev, int devad, int regnum)
151{
152 struct mii_dev *bus = phydev->bus;
153
154 return bus->read(bus, phydev->addr, devad, regnum);
155}
156
157static inline int phy_write(struct phy_device *phydev, int devad, int regnum,
158 u16 val)
159{
160 struct mii_dev *bus = phydev->bus;
161
162 return bus->write(bus, phydev->addr, devad, regnum, val);
163}
164
165#ifdef CONFIG_PHYLIB_10G
166extern struct phy_driver gen10g_driver;
167
168/* For now, XGMII is the only 10G interface */
169static inline int is_10g_interface(phy_interface_t interface)
170{
171 return interface == PHY_INTERFACE_MODE_XGMII;
172}
173
174#endif
175
176int phy_init(void);
177int phy_reset(struct phy_device *phydev);
Troy Kisky1adb4062012-10-22 16:40:43 +0000178struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask,
179 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600180#ifdef CONFIG_DM_ETH
181void phy_connect_dev(struct phy_device *phydev, struct udevice *dev);
182struct phy_device *phy_connect(struct mii_dev *bus, int addr,
183 struct udevice *dev,
184 phy_interface_t interface);
185#else
Troy Kisky1adb4062012-10-22 16:40:43 +0000186void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev);
Andy Fleming5f184712011-04-08 02:10:27 -0500187struct phy_device *phy_connect(struct mii_dev *bus, int addr,
188 struct eth_device *dev,
189 phy_interface_t interface);
Simon Glassc74c8e62015-04-05 16:07:39 -0600190#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500191int phy_startup(struct phy_device *phydev);
192int phy_config(struct phy_device *phydev);
193int phy_shutdown(struct phy_device *phydev);
194int phy_register(struct phy_driver *drv);
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300195int phy_set_supported(struct phy_device *phydev, u32 max_speed);
Andy Fleming5f184712011-04-08 02:10:27 -0500196int genphy_config_aneg(struct phy_device *phydev);
Troy Kisky8682aba2012-02-07 14:08:48 +0000197int genphy_restart_aneg(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500198int genphy_update_link(struct phy_device *phydev);
Yegor Yefremove2043f52012-11-28 11:15:17 +0100199int genphy_parse_link(struct phy_device *phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500200int genphy_config(struct phy_device *phydev);
201int genphy_startup(struct phy_device *phydev);
202int genphy_shutdown(struct phy_device *phydev);
203int gen10g_config(struct phy_device *phydev);
204int gen10g_startup(struct phy_device *phydev);
205int gen10g_shutdown(struct phy_device *phydev);
206int gen10g_discover_mmds(struct phy_device *phydev);
207
Florian Fainelli137963d2017-12-09 14:59:54 -0800208int phy_b53_init(void);
Kevin Smith24ae3962016-03-31 19:33:12 +0000209int phy_mv88e61xx_init(void);
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800210int phy_aquantia_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500211int phy_atheros_init(void);
212int phy_broadcom_init(void);
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800213int phy_cortina_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500214int phy_davicom_init(void);
Matt Porterf485c8a2013-03-20 05:38:13 +0000215int phy_et1011c_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500216int phy_lxt_init(void);
217int phy_marvell_init(void);
Alexandru Gagniucd397f7c2017-07-07 11:36:57 -0700218int phy_micrel_ksz8xxx_init(void);
219int phy_micrel_ksz90x1_init(void);
Neil Armstrong8995a962017-10-18 10:02:10 +0200220int phy_meson_gxl_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500221int phy_natsemi_init(void);
222int phy_realtek_init(void);
Vladimir Zapolskiyb6abf552011-12-29 15:18:37 +0000223int phy_smsc_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500224int phy_teranetics_init(void);
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700225int phy_ti_init(void);
Andy Fleming9082eea2011-04-07 21:56:05 -0500226int phy_vitesse_init(void);
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530227int phy_xilinx_init(void);
John Haechtena5fd13a2016-12-09 22:15:17 +0000228int phy_mscc_init(void);
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100229int phy_fixed_init(void);
Timur Tabia8366262011-10-18 18:44:34 -0500230
Fabio Estevam2fb63962014-02-15 14:52:00 -0200231int board_phy_config(struct phy_device *phydev);
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800232int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id);
Fabio Estevam2fb63962014-02-15 14:52:00 -0200233
Simon Glassc74c8e62015-04-05 16:07:39 -0600234/**
235 * phy_get_interface_by_name() - Look up a PHY interface name
236 *
237 * @str: PHY interface name, e.g. "mii"
238 * @return PHY_INTERFACE_MODE_... value, or -1 if not found
239 */
240int phy_get_interface_by_name(const char *str);
241
Dan Murphy3ab72fe2016-05-02 15:46:00 -0500242/**
243 * phy_interface_is_rgmii - Convenience function for testing if a PHY interface
244 * is RGMII (all variants)
245 * @phydev: the phy_device struct
246 */
247static inline bool phy_interface_is_rgmii(struct phy_device *phydev)
248{
249 return phydev->interface >= PHY_INTERFACE_MODE_RGMII &&
250 phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID;
251}
252
Dan Murphy3c221af2016-05-02 15:46:01 -0500253/**
254 * phy_interface_is_sgmii - Convenience function for testing if a PHY interface
255 * is SGMII (all variants)
256 * @phydev: the phy_device struct
257 */
258static inline bool phy_interface_is_sgmii(struct phy_device *phydev)
259{
260 return phydev->interface >= PHY_INTERFACE_MODE_SGMII &&
261 phydev->interface <= PHY_INTERFACE_MODE_QSGMII;
262}
263
Timur Tabia8366262011-10-18 18:44:34 -0500264/* PHY UIDs for various PHYs that are referenced in external code */
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800265#define PHY_UID_CS4340 0x13e51002
Vicentiu Galanopulo552e7c52018-05-02 06:23:38 -0500266#define PHY_UID_CS4223 0x03e57003
Timur Tabia8366262011-10-18 18:44:34 -0500267#define PHY_UID_TN2020 0x00a19410
268
Andy Fleming5f184712011-04-08 02:10:27 -0500269#endif