mii.h revision 1.2 1 1.2 thorpej /* $NetBSD: mii.h,v 1.2 1999/09/29 22:49:33 thorpej Exp $ */
2 1.1 thorpej
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 * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed by Manuel Bouyer.
20 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
21 1.1 thorpej * derived from this software without specific prior written permission.
22 1.1 thorpej *
23 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 thorpej */
34 1.1 thorpej
35 1.1 thorpej #ifndef _DEV_MII_MII_H_
36 1.1 thorpej #define _DEV_MII_MII_H_
37 1.1 thorpej
38 1.1 thorpej /*
39 1.1 thorpej * Registers common to all PHYs.
40 1.1 thorpej */
41 1.1 thorpej
42 1.1 thorpej #define MII_NPHY 32 /* max # of PHYs per MII */
43 1.1 thorpej
44 1.1 thorpej /*
45 1.1 thorpej * MII commands, used if a device must drive the MII lines
46 1.1 thorpej * manually.
47 1.1 thorpej */
48 1.1 thorpej #define MII_COMMAND_START 0x01
49 1.1 thorpej #define MII_COMMAND_READ 0x02
50 1.1 thorpej #define MII_COMMAND_WRITE 0x01
51 1.1 thorpej #define MII_COMMAND_ACK 0x02
52 1.1 thorpej
53 1.1 thorpej #define MII_BMCR 0x00 /* Basic mode control register (rw) */
54 1.1 thorpej #define BMCR_RESET 0x8000 /* reset */
55 1.1 thorpej #define BMCR_LOOP 0x4000 /* loopback */
56 1.1 thorpej #define BMCR_S100 0x2000 /* speed (10/100) select */
57 1.1 thorpej #define BMCR_AUTOEN 0x1000 /* autonegotiation enable */
58 1.1 thorpej #define BMCR_PDOWN 0x0800 /* power down */
59 1.1 thorpej #define BMCR_ISO 0x0400 /* isolate */
60 1.1 thorpej #define BMCR_STARTNEG 0x0200 /* restart autonegotiation */
61 1.1 thorpej #define BMCR_FDX 0x0100 /* Set duplex mode */
62 1.1 thorpej #define BMCR_CTEST 0x0080 /* collision test */
63 1.1 thorpej
64 1.1 thorpej #define MII_BMSR 0x01 /* Basic mode status register (ro) */
65 1.1 thorpej #define BMSR_100T4 0x8000 /* 100 base T4 capable */
66 1.1 thorpej #define BMSR_100TXFDX 0x4000 /* 100 base Tx full duplex capable */
67 1.1 thorpej #define BMSR_100TXHDX 0x2000 /* 100 base Tx half duplex capable */
68 1.1 thorpej #define BMSR_10TFDX 0x1000 /* 10 base T full duplex capable */
69 1.1 thorpej #define BMSR_10THDX 0x0800 /* 10 base T half duplex capable */
70 1.1 thorpej #define BMSR_ACOMP 0x0020 /* Autonegotiation complete */
71 1.1 thorpej #define BMSR_RFAULT 0x0010 /* Link partner fault */
72 1.1 thorpej #define BMSR_ANEG 0x0008 /* Autonegotiation capable */
73 1.1 thorpej #define BMSR_LINK 0x0004 /* Link status */
74 1.1 thorpej #define BMSR_JABBER 0x0002 /* Jabber detected */
75 1.1 thorpej #define BMSR_EXT 0x0001 /* Extended capability */
76 1.1 thorpej
77 1.1 thorpej #define BMSR_MEDIAMASK (BMSR_100T4|BMSR_100TXFDX|BMSR_100TXHDX|BMSR_10TFDX| \
78 1.1 thorpej BMSR_10THDX|BMSR_ANEG)
79 1.1 thorpej
80 1.1 thorpej /*
81 1.1 thorpej * Convert BMSR media capabilities to ANAR bits for autonegotiation.
82 1.1 thorpej * Note the shift chopps off the BMSR_ANEG bit.
83 1.1 thorpej */
84 1.1 thorpej #define BMSR_MEDIA_TO_ANAR(x) (((x) & BMSR_MEDIAMASK) >> 6)
85 1.1 thorpej
86 1.1 thorpej #define MII_PHYIDR1 0x02 /* ID register 1 (ro) */
87 1.1 thorpej
88 1.1 thorpej #define MII_PHYIDR2 0x03 /* ID register 2 (ro) */
89 1.1 thorpej #define IDR2_OUILSB 0xfc00 /* OUI LSB */
90 1.1 thorpej #define IDR2_MODEL 0x03f0 /* vendor model */
91 1.1 thorpej #define IDR2_REV 0x000f /* vendor revision */
92 1.1 thorpej
93 1.1 thorpej #define MII_OUI(id1, id2) (((id1) << 6) | ((id2) >> 10))
94 1.1 thorpej #define MII_MODEL(id2) (((id2) & IDR2_MODEL) >> 4)
95 1.1 thorpej #define MII_REV(id2) ((id2) & IDR2_REV)
96 1.1 thorpej
97 1.1 thorpej #define MII_ANAR 0x04 /* Autonegotiation advertisement (rw) */
98 1.1 thorpej #define ANAR_NP 0x8000 /* Next page (ro) */
99 1.1 thorpej #define ANAR_ACK 0x4000 /* link partner abilities acknowledged (ro) */
100 1.1 thorpej #define ANAR_RF 0x2000 /* remote fault (ro) */
101 1.2 thorpej #define ANAR_FC 0x0400 /* local device supports PAUSE */
102 1.1 thorpej #define ANAR_T4 0x0200 /* local device supports 100bT4 */
103 1.1 thorpej #define ANAR_TX_FD 0x0100 /* local device supports 100bTx FD */
104 1.1 thorpej #define ANAR_TX 0x0080 /* local device supports 100bTx */
105 1.1 thorpej #define ANAR_10_FD 0x0040 /* local device supports 10bT FD */
106 1.1 thorpej #define ANAR_10 0x0020 /* local device supports 10bT */
107 1.1 thorpej #define ANAR_CSMA 0x0001 /* protocol selector CSMA/CD */
108 1.1 thorpej
109 1.1 thorpej #define MII_ANLPAR 0x05 /* Autonegotiation lnk partner abilities (rw) */
110 1.1 thorpej #define ANLPAR_NP 0x8000 /* Next page (ro) */
111 1.1 thorpej #define ANLPAR_ACK 0x4000 /* link partner accepted ACK (ro) */
112 1.1 thorpej #define ANLPAR_RF 0x2000 /* remote fault (ro) */
113 1.2 thorpej #define ANLPAR_FC 0x0400 /* link partner supports PAUSE */
114 1.1 thorpej #define ANLPAR_T4 0x0200 /* link partner supports 100bT4 */
115 1.1 thorpej #define ANLPAR_TX_FD 0x0100 /* link partner supports 100bTx FD */
116 1.1 thorpej #define ANLPAR_TX 0x0080 /* link partner supports 100bTx */
117 1.1 thorpej #define ANLPAR_10_FD 0x0040 /* link partner supports 10bT FD */
118 1.1 thorpej #define ANLPAR_10 0x0020 /* link partner supports 10bT */
119 1.1 thorpej #define ANLPAR_CSMA 0x0001 /* protocol selector CSMA/CD */
120 1.1 thorpej
121 1.1 thorpej #define MII_ANER 0x06 /* Autonegotiation expansion (ro) */
122 1.1 thorpej #define ANER_MLF 0x0010 /* multiple link detection fault */
123 1.1 thorpej #define ANER_LPNP 0x0008 /* link parter next page-able */
124 1.1 thorpej #define ANER_NP 0x0004 /* next page-able */
125 1.1 thorpej #define ANER_PAGE_RX 0x0002 /* Page received */
126 1.1 thorpej #define ANER_LPAN 0x0001 /* link parter autoneg-able */
127 1.1 thorpej
128 1.1 thorpej #endif /* _DEV_MII_MII_H_ */
129