1 /* SPDX-License-Identifier: GPL-2.0 */
3 * linux/mii.h: definitions for MII-compatible transceivers
4 * Originally drivers/net/sunhme.h.
6 * Copyright (C) 1996, 1999, 2001 David S. Miller (davem@redhat.com)
8 #ifndef __LINUX_MII_H__
9 #define __LINUX_MII_H__
13 #include <uapi/linux/mii.h>
23 unsigned int full_duplex
: 1; /* is full duplex? */
24 unsigned int force_media
: 1; /* is autoneg. disabled? */
25 unsigned int supports_gmii
: 1; /* are GMII registers supported? */
27 struct net_device
*dev
;
28 int (*mdio_read
) (struct net_device
*dev
, int phy_id
, int location
);
29 void (*mdio_write
) (struct net_device
*dev
, int phy_id
, int location
, int val
);
32 extern int mii_link_ok (struct mii_if_info
*mii
);
33 extern int mii_nway_restart (struct mii_if_info
*mii
);
34 extern int mii_ethtool_gset(struct mii_if_info
*mii
, struct ethtool_cmd
*ecmd
);
35 extern void mii_ethtool_get_link_ksettings(
36 struct mii_if_info
*mii
, struct ethtool_link_ksettings
*cmd
);
37 extern int mii_ethtool_sset(struct mii_if_info
*mii
, struct ethtool_cmd
*ecmd
);
38 extern int mii_ethtool_set_link_ksettings(
39 struct mii_if_info
*mii
, const struct ethtool_link_ksettings
*cmd
);
40 extern int mii_check_gmii_support(struct mii_if_info
*mii
);
41 extern void mii_check_link (struct mii_if_info
*mii
);
42 extern unsigned int mii_check_media (struct mii_if_info
*mii
,
43 unsigned int ok_to_print
,
44 unsigned int init_media
);
45 extern int generic_mii_ioctl(struct mii_if_info
*mii_if
,
46 struct mii_ioctl_data
*mii_data
, int cmd
,
47 unsigned int *duplex_changed
);
50 static inline struct mii_ioctl_data
*if_mii(struct ifreq
*rq
)
52 return (struct mii_ioctl_data
*) &rq
->ifr_ifru
;
57 * @negotiated: value of MII ANAR and'd with ANLPAR
59 * Given a set of MII abilities, check each bit and returns the
60 * currently supported media, in the priority order defined by
61 * IEEE 802.3u. We use LPA_xxx constants but note this is not the
62 * value of LPA solely, as described above.
64 * The one exception to IEEE 802.3u is that 100baseT4 is placed
65 * between 100T-full and 100T-half. If your phy does not support
66 * 100T4 this is fine. If your phy places 100T4 elsewhere in the
67 * priority order, you will need to roll your own function.
69 static inline unsigned int mii_nway_result (unsigned int negotiated
)
73 if (negotiated
& LPA_100FULL
)
75 else if (negotiated
& LPA_100BASE4
)
77 else if (negotiated
& LPA_100HALF
)
79 else if (negotiated
& LPA_10FULL
)
89 * @duplex_lock: Non-zero if duplex is locked at full
90 * @negotiated: value of MII ANAR and'd with ANLPAR
92 * A small helper function for a common case. Returns one
93 * if the media is operating or locked at full duplex, and
94 * returns zero otherwise.
96 static inline unsigned int mii_duplex (unsigned int duplex_lock
,
97 unsigned int negotiated
)
101 if (mii_nway_result(negotiated
) & LPA_DUPLEX
)
107 * ethtool_adv_to_mii_adv_t
108 * @ethadv: the ethtool advertisement settings
110 * A small helper function that translates ethtool advertisement
111 * settings to phy autonegotiation advertisements for the
112 * MII_ADVERTISE register.
114 static inline u32
ethtool_adv_to_mii_adv_t(u32 ethadv
)
118 if (ethadv
& ADVERTISED_10baseT_Half
)
119 result
|= ADVERTISE_10HALF
;
120 if (ethadv
& ADVERTISED_10baseT_Full
)
121 result
|= ADVERTISE_10FULL
;
122 if (ethadv
& ADVERTISED_100baseT_Half
)
123 result
|= ADVERTISE_100HALF
;
124 if (ethadv
& ADVERTISED_100baseT_Full
)
125 result
|= ADVERTISE_100FULL
;
126 if (ethadv
& ADVERTISED_Pause
)
127 result
|= ADVERTISE_PAUSE_CAP
;
128 if (ethadv
& ADVERTISED_Asym_Pause
)
129 result
|= ADVERTISE_PAUSE_ASYM
;
135 * mii_adv_to_ethtool_adv_t
136 * @adv: value of the MII_ADVERTISE register
138 * A small helper function that translates MII_ADVERTISE bits
139 * to ethtool advertisement settings.
141 static inline u32
mii_adv_to_ethtool_adv_t(u32 adv
)
145 if (adv
& ADVERTISE_10HALF
)
146 result
|= ADVERTISED_10baseT_Half
;
147 if (adv
& ADVERTISE_10FULL
)
148 result
|= ADVERTISED_10baseT_Full
;
149 if (adv
& ADVERTISE_100HALF
)
150 result
|= ADVERTISED_100baseT_Half
;
151 if (adv
& ADVERTISE_100FULL
)
152 result
|= ADVERTISED_100baseT_Full
;
153 if (adv
& ADVERTISE_PAUSE_CAP
)
154 result
|= ADVERTISED_Pause
;
155 if (adv
& ADVERTISE_PAUSE_ASYM
)
156 result
|= ADVERTISED_Asym_Pause
;
162 * ethtool_adv_to_mii_ctrl1000_t
163 * @ethadv: the ethtool advertisement settings
165 * A small helper function that translates ethtool advertisement
166 * settings to phy autonegotiation advertisements for the
167 * MII_CTRL1000 register when in 1000T mode.
169 static inline u32
ethtool_adv_to_mii_ctrl1000_t(u32 ethadv
)
173 if (ethadv
& ADVERTISED_1000baseT_Half
)
174 result
|= ADVERTISE_1000HALF
;
175 if (ethadv
& ADVERTISED_1000baseT_Full
)
176 result
|= ADVERTISE_1000FULL
;
182 * mii_ctrl1000_to_ethtool_adv_t
183 * @adv: value of the MII_CTRL1000 register
185 * A small helper function that translates MII_CTRL1000
186 * bits, when in 1000Base-T mode, to ethtool
187 * advertisement settings.
189 static inline u32
mii_ctrl1000_to_ethtool_adv_t(u32 adv
)
193 if (adv
& ADVERTISE_1000HALF
)
194 result
|= ADVERTISED_1000baseT_Half
;
195 if (adv
& ADVERTISE_1000FULL
)
196 result
|= ADVERTISED_1000baseT_Full
;
202 * mii_lpa_to_ethtool_lpa_t
203 * @adv: value of the MII_LPA register
205 * A small helper function that translates MII_LPA
206 * bits, when in 1000Base-T mode, to ethtool
207 * LP advertisement settings.
209 static inline u32
mii_lpa_to_ethtool_lpa_t(u32 lpa
)
214 result
|= ADVERTISED_Autoneg
;
216 return result
| mii_adv_to_ethtool_adv_t(lpa
);
220 * mii_stat1000_to_ethtool_lpa_t
221 * @adv: value of the MII_STAT1000 register
223 * A small helper function that translates MII_STAT1000
224 * bits, when in 1000Base-T mode, to ethtool
225 * advertisement settings.
227 static inline u32
mii_stat1000_to_ethtool_lpa_t(u32 lpa
)
231 if (lpa
& LPA_1000HALF
)
232 result
|= ADVERTISED_1000baseT_Half
;
233 if (lpa
& LPA_1000FULL
)
234 result
|= ADVERTISED_1000baseT_Full
;
240 * ethtool_adv_to_mii_adv_x
241 * @ethadv: the ethtool advertisement settings
243 * A small helper function that translates ethtool advertisement
244 * settings to phy autonegotiation advertisements for the
245 * MII_CTRL1000 register when in 1000Base-X mode.
247 static inline u32
ethtool_adv_to_mii_adv_x(u32 ethadv
)
251 if (ethadv
& ADVERTISED_1000baseT_Half
)
252 result
|= ADVERTISE_1000XHALF
;
253 if (ethadv
& ADVERTISED_1000baseT_Full
)
254 result
|= ADVERTISE_1000XFULL
;
255 if (ethadv
& ADVERTISED_Pause
)
256 result
|= ADVERTISE_1000XPAUSE
;
257 if (ethadv
& ADVERTISED_Asym_Pause
)
258 result
|= ADVERTISE_1000XPSE_ASYM
;
264 * mii_adv_to_ethtool_adv_x
265 * @adv: value of the MII_CTRL1000 register
267 * A small helper function that translates MII_CTRL1000
268 * bits, when in 1000Base-X mode, to ethtool
269 * advertisement settings.
271 static inline u32
mii_adv_to_ethtool_adv_x(u32 adv
)
275 if (adv
& ADVERTISE_1000XHALF
)
276 result
|= ADVERTISED_1000baseT_Half
;
277 if (adv
& ADVERTISE_1000XFULL
)
278 result
|= ADVERTISED_1000baseT_Full
;
279 if (adv
& ADVERTISE_1000XPAUSE
)
280 result
|= ADVERTISED_Pause
;
281 if (adv
& ADVERTISE_1000XPSE_ASYM
)
282 result
|= ADVERTISED_Asym_Pause
;
288 * mii_lpa_to_ethtool_lpa_x
289 * @adv: value of the MII_LPA register
291 * A small helper function that translates MII_LPA
292 * bits, when in 1000Base-X mode, to ethtool
293 * LP advertisement settings.
295 static inline u32
mii_lpa_to_ethtool_lpa_x(u32 lpa
)
300 result
|= ADVERTISED_Autoneg
;
302 return result
| mii_adv_to_ethtool_adv_x(lpa
);
306 * mii_advertise_flowctrl - get flow control advertisement flags
307 * @cap: Flow control capabilities (FLOW_CTRL_RX, FLOW_CTRL_TX or both)
309 static inline u16
mii_advertise_flowctrl(int cap
)
313 if (cap
& FLOW_CTRL_RX
)
314 adv
= ADVERTISE_PAUSE_CAP
| ADVERTISE_PAUSE_ASYM
;
315 if (cap
& FLOW_CTRL_TX
)
316 adv
^= ADVERTISE_PAUSE_ASYM
;
322 * mii_resolve_flowctrl_fdx
323 * @lcladv: value of MII ADVERTISE register
324 * @rmtadv: value of MII LPA register
326 * Resolve full duplex flow control as per IEEE 802.3-2005 table 28B-3
328 static inline u8
mii_resolve_flowctrl_fdx(u16 lcladv
, u16 rmtadv
)
332 if (lcladv
& rmtadv
& ADVERTISE_PAUSE_CAP
) {
333 cap
= FLOW_CTRL_TX
| FLOW_CTRL_RX
;
334 } else if (lcladv
& rmtadv
& ADVERTISE_PAUSE_ASYM
) {
335 if (lcladv
& ADVERTISE_PAUSE_CAP
)
337 else if (rmtadv
& ADVERTISE_PAUSE_CAP
)
344 #endif /* __LINUX_MII_H__ */