1
2
3
4
5
6
7
8#ifndef __LINUX_MII_H__
9#define __LINUX_MII_H__
10
11#include <linux/types.h>
12
13
14
15#define MII_BMCR 0x00
16#define MII_BMSR 0x01
17#define MII_PHYSID1 0x02
18#define MII_PHYSID2 0x03
19#define MII_ADVERTISE 0x04
20#define MII_LPA 0x05
21#define MII_EXPANSION 0x06
22#define MII_CTRL1000 0x09
23#define MII_STAT1000 0x0a
24#define MII_ESTATUS 0x0f
25#define MII_DCOUNTER 0x12
26#define MII_FCSCOUNTER 0x13
27#define MII_NWAYTEST 0x14
28#define MII_RERRCOUNTER 0x15
29#define MII_SREVISION 0x16
30#define MII_RESV1 0x17
31#define MII_LBRERROR 0x18
32#define MII_PHYADDR 0x19
33#define MII_RESV2 0x1a
34#define MII_TPISTATUS 0x1b
35#define MII_NCONFIG 0x1c
36
37
38#define BMCR_RESV 0x003f
39#define BMCR_SPEED1000 0x0040
40#define BMCR_CTST 0x0080
41#define BMCR_FULLDPLX 0x0100
42#define BMCR_ANRESTART 0x0200
43#define BMCR_ISOLATE 0x0400
44#define BMCR_PDOWN 0x0800
45#define BMCR_ANENABLE 0x1000
46#define BMCR_SPEED100 0x2000
47#define BMCR_LOOPBACK 0x4000
48#define BMCR_RESET 0x8000
49
50
51#define BMSR_ERCAP 0x0001
52#define BMSR_JCD 0x0002
53#define BMSR_LSTATUS 0x0004
54#define BMSR_ANEGCAPABLE 0x0008
55#define BMSR_RFAULT 0x0010
56#define BMSR_ANEGCOMPLETE 0x0020
57#define BMSR_RESV 0x00c0
58#define BMSR_ESTATEN 0x0100
59#define BMSR_100HALF2 0x0200
60#define BMSR_100FULL2 0x0400
61#define BMSR_10HALF 0x0800
62#define BMSR_10FULL 0x1000
63#define BMSR_100HALF 0x2000
64#define BMSR_100FULL 0x4000
65#define BMSR_100BASE4 0x8000
66
67
68#define ADVERTISE_SLCT 0x001f
69#define ADVERTISE_CSMA 0x0001
70#define ADVERTISE_10HALF 0x0020
71#define ADVERTISE_1000XFULL 0x0020
72#define ADVERTISE_10FULL 0x0040
73#define ADVERTISE_1000XHALF 0x0040
74#define ADVERTISE_100HALF 0x0080
75#define ADVERTISE_1000XPAUSE 0x0080
76#define ADVERTISE_100FULL 0x0100
77#define ADVERTISE_1000XPSE_ASYM 0x0100
78#define ADVERTISE_100BASE4 0x0200
79#define ADVERTISE_PAUSE_CAP 0x0400
80#define ADVERTISE_PAUSE_ASYM 0x0800
81#define ADVERTISE_RESV 0x1000
82#define ADVERTISE_RFAULT 0x2000
83#define ADVERTISE_LPACK 0x4000
84#define ADVERTISE_NPAGE 0x8000
85
86#define ADVERTISE_FULL (ADVERTISE_100FULL | ADVERTISE_10FULL | \
87 ADVERTISE_CSMA)
88#define ADVERTISE_ALL (ADVERTISE_10HALF | ADVERTISE_10FULL | \
89 ADVERTISE_100HALF | ADVERTISE_100FULL)
90
91
92#define LPA_SLCT 0x001f
93#define LPA_10HALF 0x0020
94#define LPA_1000XFULL 0x0020
95#define LPA_10FULL 0x0040
96#define LPA_1000XHALF 0x0040
97#define LPA_100HALF 0x0080
98#define LPA_1000XPAUSE 0x0080
99#define LPA_100FULL 0x0100
100#define LPA_1000XPAUSE_ASYM 0x0100
101#define LPA_100BASE4 0x0200
102#define LPA_PAUSE_CAP 0x0400
103#define LPA_PAUSE_ASYM 0x0800
104#define LPA_RESV 0x1000
105#define LPA_RFAULT 0x2000
106#define LPA_LPACK 0x4000
107#define LPA_NPAGE 0x8000
108
109#define LPA_DUPLEX (LPA_10FULL | LPA_100FULL)
110#define LPA_100 (LPA_100FULL | LPA_100HALF | LPA_100BASE4)
111
112
113#define EXPANSION_NWAY 0x0001
114#define EXPANSION_LCWP 0x0002
115#define EXPANSION_ENABLENPAGE 0x0004
116#define EXPANSION_NPCAPABLE 0x0008
117#define EXPANSION_MFAULTS 0x0010
118#define EXPANSION_RESV 0xffe0
119
120#define ESTATUS_1000_TFULL 0x2000
121#define ESTATUS_1000_THALF 0x1000
122
123
124#define NWAYTEST_RESV1 0x00ff
125#define NWAYTEST_LOOPBACK 0x0100
126#define NWAYTEST_RESV2 0xfe00
127
128
129#define ADVERTISE_1000FULL 0x0200
130#define ADVERTISE_1000HALF 0x0100
131
132
133#define LPA_1000LOCALRXOK 0x2000
134#define LPA_1000REMRXOK 0x1000
135#define LPA_1000FULL 0x0800
136#define LPA_1000HALF 0x0400
137
138
139struct mii_ioctl_data {
140 __u16 phy_id;
141 __u16 reg_num;
142 __u16 val_in;
143 __u16 val_out;
144};
145
146#ifdef __KERNEL__
147
148#include <linux/if.h>
149
150struct ethtool_cmd;
151
152struct mii_if_info {
153 int phy_id;
154 int advertising;
155 int phy_id_mask;
156 int reg_num_mask;
157
158 unsigned int full_duplex : 1;
159 unsigned int force_media : 1;
160 unsigned int supports_gmii : 1;
161
162 struct net_device *dev;
163 int (*mdio_read) (struct net_device *dev, int phy_id, int location);
164 void (*mdio_write) (struct net_device *dev, int phy_id, int location, int val);
165};
166
167extern int mii_link_ok (struct mii_if_info *mii);
168extern int mii_nway_restart (struct mii_if_info *mii);
169extern int mii_ethtool_gset(struct mii_if_info *mii, struct ethtool_cmd *ecmd);
170extern int mii_ethtool_sset(struct mii_if_info *mii, struct ethtool_cmd *ecmd);
171extern int mii_check_gmii_support(struct mii_if_info *mii);
172extern void mii_check_link (struct mii_if_info *mii);
173extern unsigned int mii_check_media (struct mii_if_info *mii,
174 unsigned int ok_to_print,
175 unsigned int init_media);
176extern int generic_mii_ioctl(struct mii_if_info *mii_if,
177 struct mii_ioctl_data *mii_data, int cmd,
178 unsigned int *duplex_changed);
179
180
181static inline struct mii_ioctl_data *if_mii(struct ifreq *rq)
182{
183 return (struct mii_ioctl_data *) &rq->ifr_ifru;
184}
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201static inline unsigned int mii_nway_result (unsigned int negotiated)
202{
203 unsigned int ret;
204
205 if (negotiated & LPA_100FULL)
206 ret = LPA_100FULL;
207 else if (negotiated & LPA_100BASE4)
208 ret = LPA_100BASE4;
209 else if (negotiated & LPA_100HALF)
210 ret = LPA_100HALF;
211 else if (negotiated & LPA_10FULL)
212 ret = LPA_10FULL;
213 else
214 ret = LPA_10HALF;
215
216 return ret;
217}
218
219
220
221
222
223
224
225
226
227
228static inline unsigned int mii_duplex (unsigned int duplex_lock,
229 unsigned int negotiated)
230{
231 if (duplex_lock)
232 return 1;
233 if (mii_nway_result(negotiated) & LPA_DUPLEX)
234 return 1;
235 return 0;
236}
237
238#endif
239#endif
240