]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
5f184715 AF |
2 | /* |
3 | * Copyright 2011 Freescale Semiconductor, Inc. | |
b21f87a3 | 4 | * Andy Fleming <[email protected]> |
5f184715 | 5 | * |
5f184715 AF |
6 | * 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 | ||
eef0b8a9 | 12 | #include <dm.h> |
5f184715 AF |
13 | #include <linux/list.h> |
14 | #include <linux/mii.h> | |
15 | #include <linux/ethtool.h> | |
16 | #include <linux/mdio.h> | |
f070b1a2 | 17 | #include <phy_interface.h> |
5f184715 | 18 | |
db40c1aa HS |
19 | #define PHY_FIXED_ID 0xa5a55a5a |
20 | ||
5f184715 AF |
21 | #define PHY_MAX_ADDR 32 |
22 | ||
ddcd1f30 SX |
23 | #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */ |
24 | ||
4dae610b | 25 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
5f184715 AF |
26 | SUPPORTED_TP | \ |
27 | SUPPORTED_MII) | |
28 | ||
4dae610b FF |
29 | #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 | \ | |
5f184715 AF |
36 | SUPPORTED_1000baseT_Full) |
37 | ||
4dae610b FF |
38 | #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 | ||
5f184715 AF |
45 | #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \ |
46 | SUPPORTED_10000baseT_Full) | |
47 | ||
4fb3f0c8 | 48 | #ifndef PHY_ANEG_TIMEOUT |
5f184715 | 49 | #define PHY_ANEG_TIMEOUT 4000 |
4fb3f0c8 | 50 | #endif |
5f184715 AF |
51 | |
52 | ||
5f184715 AF |
53 | struct phy_device; |
54 | ||
55 | #define MDIO_NAME_LEN 32 | |
56 | ||
57 | struct 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 | */ | |
79 | struct 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 | ||
b71841b9 SB |
101 | 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); | |
5f184715 AF |
104 | struct list_head list; |
105 | }; | |
106 | ||
107 | struct 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 | ||
c74c8e66 SG |
114 | #ifdef CONFIG_DM_ETH |
115 | struct udevice *dev; | |
eef0b8a9 | 116 | ofnode node; |
c74c8e66 | 117 | #else |
5f184715 | 118 | struct eth_device *dev; |
c74c8e66 | 119 | #endif |
5f184715 AF |
120 | |
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; | |
b3eabd82 | 141 | bool is_c45; |
5f184715 AF |
142 | u32 flags; |
143 | }; | |
144 | ||
f55a776c SX |
145 | struct fixed_link { |
146 | int phy_id; | |
147 | int duplex; | |
148 | int link_speed; | |
149 | int pause; | |
150 | int asym_pause; | |
151 | }; | |
152 | ||
5f184715 AF |
153 | static inline int phy_read(struct phy_device *phydev, int devad, int regnum) |
154 | { | |
155 | struct mii_dev *bus = phydev->bus; | |
156 | ||
157 | return bus->read(bus, phydev->addr, devad, regnum); | |
158 | } | |
159 | ||
160 | static inline int phy_write(struct phy_device *phydev, int devad, int regnum, | |
161 | u16 val) | |
162 | { | |
163 | struct mii_dev *bus = phydev->bus; | |
164 | ||
165 | return bus->write(bus, phydev->addr, devad, regnum, val); | |
166 | } | |
167 | ||
168 | #ifdef CONFIG_PHYLIB_10G | |
169 | extern struct phy_driver gen10g_driver; | |
170 | ||
171 | /* For now, XGMII is the only 10G interface */ | |
172 | static inline int is_10g_interface(phy_interface_t interface) | |
173 | { | |
174 | return interface == PHY_INTERFACE_MODE_XGMII; | |
175 | } | |
176 | ||
177 | #endif | |
178 | ||
179 | int phy_init(void); | |
180 | int phy_reset(struct phy_device *phydev); | |
1adb406b TK |
181 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask, |
182 | phy_interface_t interface); | |
c74c8e66 SG |
183 | #ifdef CONFIG_DM_ETH |
184 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev); | |
185 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, | |
186 | struct udevice *dev, | |
187 | phy_interface_t interface); | |
eef0b8a9 GS |
188 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
189 | { | |
190 | if (ofnode_valid(phydev->node)) | |
191 | return phydev->node; | |
192 | else | |
193 | return dev_ofnode(phydev->dev); | |
194 | } | |
c74c8e66 | 195 | #else |
1adb406b | 196 | void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev); |
5f184715 AF |
197 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
198 | struct eth_device *dev, | |
199 | phy_interface_t interface); | |
eef0b8a9 GS |
200 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
201 | { | |
202 | return ofnode_null(); | |
203 | } | |
c74c8e66 | 204 | #endif |
5f184715 AF |
205 | int phy_startup(struct phy_device *phydev); |
206 | int phy_config(struct phy_device *phydev); | |
207 | int phy_shutdown(struct phy_device *phydev); | |
208 | int phy_register(struct phy_driver *drv); | |
b18acb0a | 209 | int phy_set_supported(struct phy_device *phydev, u32 max_speed); |
5f184715 | 210 | int genphy_config_aneg(struct phy_device *phydev); |
8682aba7 | 211 | int genphy_restart_aneg(struct phy_device *phydev); |
5f184715 | 212 | int genphy_update_link(struct phy_device *phydev); |
e2043f5c | 213 | int genphy_parse_link(struct phy_device *phydev); |
5f184715 AF |
214 | int genphy_config(struct phy_device *phydev); |
215 | int genphy_startup(struct phy_device *phydev); | |
216 | int genphy_shutdown(struct phy_device *phydev); | |
217 | int gen10g_config(struct phy_device *phydev); | |
218 | int gen10g_startup(struct phy_device *phydev); | |
219 | int gen10g_shutdown(struct phy_device *phydev); | |
220 | int gen10g_discover_mmds(struct phy_device *phydev); | |
221 | ||
137963d7 | 222 | int phy_b53_init(void); |
24ae3961 | 223 | int phy_mv88e61xx_init(void); |
f7c38cf8 | 224 | int phy_aquantia_init(void); |
9082eeac AF |
225 | int phy_atheros_init(void); |
226 | int phy_broadcom_init(void); | |
9b18e519 | 227 | int phy_cortina_init(void); |
9082eeac | 228 | int phy_davicom_init(void); |
f485c8a3 | 229 | int phy_et1011c_init(void); |
9082eeac AF |
230 | int phy_lxt_init(void); |
231 | int phy_marvell_init(void); | |
d397f7c4 AG |
232 | int phy_micrel_ksz8xxx_init(void); |
233 | int phy_micrel_ksz90x1_init(void); | |
8995a96d | 234 | int phy_meson_gxl_init(void); |
9082eeac AF |
235 | int phy_natsemi_init(void); |
236 | int phy_realtek_init(void); | |
b6abf555 | 237 | int phy_smsc_init(void); |
9082eeac | 238 | int phy_teranetics_init(void); |
721aed79 | 239 | int phy_ti_init(void); |
9082eeac | 240 | int phy_vitesse_init(void); |
ed6fad3e | 241 | int phy_xilinx_init(void); |
a5fd13ad | 242 | int phy_mscc_init(void); |
db40c1aa | 243 | int phy_fixed_init(void); |
a836626c | 244 | |
2fb63964 | 245 | int board_phy_config(struct phy_device *phydev); |
5707d5ff | 246 | int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id); |
2fb63964 | 247 | |
c74c8e66 SG |
248 | /** |
249 | * phy_get_interface_by_name() - Look up a PHY interface name | |
250 | * | |
251 | * @str: PHY interface name, e.g. "mii" | |
252 | * @return PHY_INTERFACE_MODE_... value, or -1 if not found | |
253 | */ | |
254 | int phy_get_interface_by_name(const char *str); | |
255 | ||
3ab72fe8 DM |
256 | /** |
257 | * phy_interface_is_rgmii - Convenience function for testing if a PHY interface | |
258 | * is RGMII (all variants) | |
259 | * @phydev: the phy_device struct | |
260 | */ | |
261 | static inline bool phy_interface_is_rgmii(struct phy_device *phydev) | |
262 | { | |
263 | return phydev->interface >= PHY_INTERFACE_MODE_RGMII && | |
264 | phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID; | |
265 | } | |
266 | ||
3c221af3 DM |
267 | /** |
268 | * phy_interface_is_sgmii - Convenience function for testing if a PHY interface | |
269 | * is SGMII (all variants) | |
270 | * @phydev: the phy_device struct | |
271 | */ | |
272 | static inline bool phy_interface_is_sgmii(struct phy_device *phydev) | |
273 | { | |
274 | return phydev->interface >= PHY_INTERFACE_MODE_SGMII && | |
275 | phydev->interface <= PHY_INTERFACE_MODE_QSGMII; | |
276 | } | |
277 | ||
a836626c | 278 | /* PHY UIDs for various PHYs that are referenced in external code */ |
1ddcf5ed PJ |
279 | #define PHY_UID_CS4340 0x13e51002 |
280 | #define PHY_UID_CS4223 0x03e57003 | |
281 | #define PHY_UID_TN2020 0x00a19410 | |
282 | #define PHY_UID_IN112525_S03 0x02107440 | |
a836626c | 283 | |
5f184715 | 284 | #endif |