mii.h revision 1.15 1 1.15 msaitoh /* $NetBSD: mii.h,v 1.15 2013/04/03 03:24:27 msaitoh Exp $ */
2 1.12 perry
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
5 1.1 thorpej *
6 1.1 thorpej * Modification to match BSD/OS 3.0 MII interface by Jason R. Thorpe,
7 1.1 thorpej * Numerical Aerospace Simulation Facility, NASA Ames Research Center.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej *
18 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.1 thorpej */
29 1.1 thorpej
30 1.1 thorpej #ifndef _DEV_MII_MII_H_
31 1.1 thorpej #define _DEV_MII_MII_H_
32 1.1 thorpej
33 1.1 thorpej /*
34 1.1 thorpej * Registers common to all PHYs.
35 1.1 thorpej */
36 1.1 thorpej
37 1.1 thorpej #define MII_NPHY 32 /* max # of PHYs per MII */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * MII commands, used if a device must drive the MII lines
41 1.1 thorpej * manually.
42 1.1 thorpej */
43 1.1 thorpej #define MII_COMMAND_START 0x01
44 1.1 thorpej #define MII_COMMAND_READ 0x02
45 1.1 thorpej #define MII_COMMAND_WRITE 0x01
46 1.1 thorpej #define MII_COMMAND_ACK 0x02
47 1.1 thorpej
48 1.1 thorpej #define MII_BMCR 0x00 /* Basic mode control register (rw) */
49 1.1 thorpej #define BMCR_RESET 0x8000 /* reset */
50 1.1 thorpej #define BMCR_LOOP 0x4000 /* loopback */
51 1.5 thorpej #define BMCR_SPEED0 0x2000 /* speed selection (LSB) */
52 1.1 thorpej #define BMCR_AUTOEN 0x1000 /* autonegotiation enable */
53 1.1 thorpej #define BMCR_PDOWN 0x0800 /* power down */
54 1.1 thorpej #define BMCR_ISO 0x0400 /* isolate */
55 1.1 thorpej #define BMCR_STARTNEG 0x0200 /* restart autonegotiation */
56 1.1 thorpej #define BMCR_FDX 0x0100 /* Set duplex mode */
57 1.1 thorpej #define BMCR_CTEST 0x0080 /* collision test */
58 1.5 thorpej #define BMCR_SPEED1 0x0040 /* speed selection (MSB) */
59 1.5 thorpej
60 1.5 thorpej #define BMCR_S10 0x0000 /* 10 Mb/s */
61 1.5 thorpej #define BMCR_S100 BMCR_SPEED0 /* 100 Mb/s */
62 1.5 thorpej #define BMCR_S1000 BMCR_SPEED1 /* 1000 Mb/s */
63 1.5 thorpej
64 1.5 thorpej #define BMCR_SPEED(x) ((x) & (BMCR_SPEED0|BMCR_SPEED1))
65 1.1 thorpej
66 1.1 thorpej #define MII_BMSR 0x01 /* Basic mode status register (ro) */
67 1.1 thorpej #define BMSR_100T4 0x8000 /* 100 base T4 capable */
68 1.1 thorpej #define BMSR_100TXFDX 0x4000 /* 100 base Tx full duplex capable */
69 1.1 thorpej #define BMSR_100TXHDX 0x2000 /* 100 base Tx half duplex capable */
70 1.1 thorpej #define BMSR_10TFDX 0x1000 /* 10 base T full duplex capable */
71 1.1 thorpej #define BMSR_10THDX 0x0800 /* 10 base T half duplex capable */
72 1.5 thorpej #define BMSR_100T2FDX 0x0400 /* 100 base T2 full duplex capable */
73 1.5 thorpej #define BMSR_100T2HDX 0x0200 /* 100 base T2 half duplex capable */
74 1.7 matt #define BMSR_EXTSTAT 0x0100 /* Extended status in register 15 */
75 1.3 thorpej #define BMSR_MFPS 0x0040 /* MII Frame Preamble Suppression */
76 1.1 thorpej #define BMSR_ACOMP 0x0020 /* Autonegotiation complete */
77 1.1 thorpej #define BMSR_RFAULT 0x0010 /* Link partner fault */
78 1.1 thorpej #define BMSR_ANEG 0x0008 /* Autonegotiation capable */
79 1.1 thorpej #define BMSR_LINK 0x0004 /* Link status */
80 1.1 thorpej #define BMSR_JABBER 0x0002 /* Jabber detected */
81 1.5 thorpej #define BMSR_EXTCAP 0x0001 /* Extended capability */
82 1.5 thorpej
83 1.5 thorpej /*
84 1.5 thorpej * Note that the EXTSTAT bit indicates that there is extended status
85 1.5 thorpej * info available in register 15, but 802.3 section 22.2.4.3 also
86 1.5 thorpej * states that that all 1000 Mb/s capable PHYs will set this bit to 1.
87 1.5 thorpej */
88 1.1 thorpej
89 1.5 thorpej #define BMSR_MEDIAMASK (BMSR_100T4|BMSR_100TXFDX|BMSR_100TXHDX| \
90 1.5 thorpej BMSR_10TFDX|BMSR_10THDX|BMSR_100T2FDX|BMSR_100T2HDX)
91 1.1 thorpej
92 1.1 thorpej /*
93 1.1 thorpej * Convert BMSR media capabilities to ANAR bits for autonegotiation.
94 1.1 thorpej * Note the shift chopps off the BMSR_ANEG bit.
95 1.1 thorpej */
96 1.1 thorpej #define BMSR_MEDIA_TO_ANAR(x) (((x) & BMSR_MEDIAMASK) >> 6)
97 1.1 thorpej
98 1.1 thorpej #define MII_PHYIDR1 0x02 /* ID register 1 (ro) */
99 1.1 thorpej
100 1.1 thorpej #define MII_PHYIDR2 0x03 /* ID register 2 (ro) */
101 1.1 thorpej #define IDR2_OUILSB 0xfc00 /* OUI LSB */
102 1.1 thorpej #define IDR2_MODEL 0x03f0 /* vendor model */
103 1.1 thorpej #define IDR2_REV 0x000f /* vendor revision */
104 1.1 thorpej
105 1.1 thorpej #define MII_ANAR 0x04 /* Autonegotiation advertisement (rw) */
106 1.5 thorpej /* section 28.2.4.1 and 37.2.6.1 */
107 1.1 thorpej #define ANAR_NP 0x8000 /* Next page (ro) */
108 1.1 thorpej #define ANAR_ACK 0x4000 /* link partner abilities acknowledged (ro) */
109 1.1 thorpej #define ANAR_RF 0x2000 /* remote fault (ro) */
110 1.2 thorpej #define ANAR_FC 0x0400 /* local device supports PAUSE */
111 1.1 thorpej #define ANAR_T4 0x0200 /* local device supports 100bT4 */
112 1.1 thorpej #define ANAR_TX_FD 0x0100 /* local device supports 100bTx FD */
113 1.1 thorpej #define ANAR_TX 0x0080 /* local device supports 100bTx */
114 1.1 thorpej #define ANAR_10_FD 0x0040 /* local device supports 10bT FD */
115 1.1 thorpej #define ANAR_10 0x0020 /* local device supports 10bT */
116 1.1 thorpej #define ANAR_CSMA 0x0001 /* protocol selector CSMA/CD */
117 1.1 thorpej
118 1.10 thorpej #define ANAR_X_FD 0x0020 /* local device supports 1000BASE-X FD */
119 1.10 thorpej #define ANAR_X_HD 0x0040 /* local device supports 1000BASE-X HD */
120 1.11 thorpej #define ANAR_X_PAUSE_NONE (0 << 10)
121 1.11 thorpej #define ANAR_X_PAUSE_SYM (1 << 10)
122 1.11 thorpej #define ANAR_X_PAUSE_ASYM (2 << 10)
123 1.11 thorpej #define ANAR_X_PAUSE_TOWARDS (3 << 10)
124 1.10 thorpej
125 1.1 thorpej #define MII_ANLPAR 0x05 /* Autonegotiation lnk partner abilities (rw) */
126 1.5 thorpej /* section 28.2.4.1 and 37.2.6.1 */
127 1.1 thorpej #define ANLPAR_NP 0x8000 /* Next page (ro) */
128 1.1 thorpej #define ANLPAR_ACK 0x4000 /* link partner accepted ACK (ro) */
129 1.1 thorpej #define ANLPAR_RF 0x2000 /* remote fault (ro) */
130 1.2 thorpej #define ANLPAR_FC 0x0400 /* link partner supports PAUSE */
131 1.1 thorpej #define ANLPAR_T4 0x0200 /* link partner supports 100bT4 */
132 1.1 thorpej #define ANLPAR_TX_FD 0x0100 /* link partner supports 100bTx FD */
133 1.1 thorpej #define ANLPAR_TX 0x0080 /* link partner supports 100bTx */
134 1.1 thorpej #define ANLPAR_10_FD 0x0040 /* link partner supports 10bT FD */
135 1.1 thorpej #define ANLPAR_10 0x0020 /* link partner supports 10bT */
136 1.1 thorpej #define ANLPAR_CSMA 0x0001 /* protocol selector CSMA/CD */
137 1.10 thorpej
138 1.10 thorpej #define ANLPAR_X_FD 0x0020 /* local device supports 1000BASE-X FD */
139 1.10 thorpej #define ANLPAR_X_HD 0x0040 /* local device supports 1000BASE-X HD */
140 1.11 thorpej #define ANLPAR_X_PAUSE_MASK (3 << 10)
141 1.11 thorpej #define ANLPAR_X_PAUSE_NONE (0 << 10)
142 1.11 thorpej #define ANLPAR_X_PAUSE_SYM (1 << 10)
143 1.11 thorpej #define ANLPAR_X_PAUSE_ASYM (2 << 10)
144 1.11 thorpej #define ANLPAR_X_PAUSE_TOWARDS (3 << 10)
145 1.1 thorpej
146 1.1 thorpej #define MII_ANER 0x06 /* Autonegotiation expansion (ro) */
147 1.5 thorpej /* section 28.2.4.1 and 37.2.6.1 */
148 1.1 thorpej #define ANER_MLF 0x0010 /* multiple link detection fault */
149 1.1 thorpej #define ANER_LPNP 0x0008 /* link parter next page-able */
150 1.1 thorpej #define ANER_NP 0x0004 /* next page-able */
151 1.1 thorpej #define ANER_PAGE_RX 0x0002 /* Page received */
152 1.1 thorpej #define ANER_LPAN 0x0001 /* link parter autoneg-able */
153 1.5 thorpej
154 1.5 thorpej #define MII_ANNP 0x07 /* Autonegotiation next page */
155 1.5 thorpej /* section 28.2.4.1 and 37.2.6.1 */
156 1.5 thorpej
157 1.5 thorpej #define MII_ANLPRNP 0x08 /* Autonegotiation link partner rx next page */
158 1.5 thorpej /* section 32.5.1 and 37.2.6.1 */
159 1.5 thorpej
160 1.8 thorpej /* This is also the 1000baseT control register */
161 1.5 thorpej #define MII_100T2CR 0x09 /* 100base-T2 control register */
162 1.8 thorpej #define GTCR_TEST_MASK 0xe000 /* see 802.3ab ss. 40.6.1.1.2 */
163 1.8 thorpej #define GTCR_MAN_MS 0x1000 /* enable manual master/slave control */
164 1.8 thorpej #define GTCR_ADV_MS 0x0800 /* 1 = adv. master, 0 = adv. slave */
165 1.8 thorpej #define GTCR_PORT_TYPE 0x0400 /* 1 = DCE, 0 = DTE (NIC) */
166 1.8 thorpej #define GTCR_ADV_1000TFDX 0x0200 /* adv. 1000baseT FDX */
167 1.8 thorpej #define GTCR_ADV_1000THDX 0x0100 /* adv. 1000baseT HDX */
168 1.5 thorpej
169 1.8 thorpej /* This is also the 1000baseT status register */
170 1.5 thorpej #define MII_100T2SR 0x0a /* 100base-T2 status register */
171 1.8 thorpej #define GTSR_MAN_MS_FLT 0x8000 /* master/slave config fault */
172 1.8 thorpej #define GTSR_MS_RES 0x4000 /* result: 1 = master, 0 = slave */
173 1.8 thorpej #define GTSR_LRS 0x2000 /* local rx status, 1 = ok */
174 1.15 msaitoh #define GTSR_RRS 0x1000 /* remote rx status, 1 = ok */
175 1.8 thorpej #define GTSR_LP_1000TFDX 0x0800 /* link partner 1000baseT FDX capable */
176 1.8 thorpej #define GTSR_LP_1000THDX 0x0400 /* link partner 1000baseT HDX capable */
177 1.8 thorpej #define GTSR_LP_ASM_DIR 0x0200 /* link partner asym. pause dir. capable */
178 1.9 thorpej #define GTSR_IDLE_ERR 0x00ff /* IDLE error count */
179 1.5 thorpej
180 1.5 thorpej #define MII_EXTSR 0x0f /* Extended status register */
181 1.5 thorpej #define EXTSR_1000XFDX 0x8000 /* 1000X full-duplex capable */
182 1.5 thorpej #define EXTSR_1000XHDX 0x4000 /* 1000X half-duplex capable */
183 1.5 thorpej #define EXTSR_1000TFDX 0x2000 /* 1000T full-duplex capable */
184 1.5 thorpej #define EXTSR_1000THDX 0x1000 /* 1000T half-duplex capable */
185 1.6 thorpej
186 1.6 thorpej #define EXTSR_MEDIAMASK (EXTSR_1000XFDX|EXTSR_1000XHDX| \
187 1.6 thorpej EXTSR_1000TFDX|EXTSR_1000THDX)
188 1.1 thorpej
189 1.1 thorpej #endif /* _DEV_MII_MII_H_ */
190