blob: 2b0dcf4f2ce1af67d7f02f7100757dad921c85d4 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * This provides a bit-banged interface to the ethernet MII management
26 * channel.
27 */
28
29#include <common.h>
30#include <miiphy.h>
31
32#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
33
34/*****************************************************************************
35 *
36 * Read the OUI, manufacture's model number, and revision number.
37 *
38 * OUI: 22 bits (unsigned int)
39 * Model: 6 bits (unsigned char)
40 * Revision: 4 bits (unsigned char)
41 *
42 * Returns:
43 * 0 on success
44 */
45int miiphy_info (unsigned char addr,
46 unsigned int *oui,
47 unsigned char *model, unsigned char *rev)
48{
49 unsigned int reg = 0;
wdenk8bf3b002003-12-06 23:20:41 +000050 unsigned short tmp;
wdenkc6097192002-11-03 00:24:07 +000051
wdenk8bf3b002003-12-06 23:20:41 +000052 if (miiphy_read (addr, PHY_PHYIDR2, &tmp) != 0) {
wdenkc6097192002-11-03 00:24:07 +000053#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +000054 puts ("PHY ID register 2 read failed\n");
wdenkc6097192002-11-03 00:24:07 +000055#endif
56 return (-1);
57 }
wdenk8bf3b002003-12-06 23:20:41 +000058 reg = tmp;
wdenkc6097192002-11-03 00:24:07 +000059
60#ifdef DEBUG
61 printf ("PHY_PHYIDR2 @ 0x%x = 0x%04x\n", addr, reg);
62#endif
63 if (reg == 0xFFFF) {
64 /* No physical device present at this address */
65 return (-1);
66 }
67
wdenk8bf3b002003-12-06 23:20:41 +000068 if (miiphy_read (addr, PHY_PHYIDR1, &tmp) != 0) {
wdenkc6097192002-11-03 00:24:07 +000069#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +000070 puts ("PHY ID register 1 read failed\n");
wdenkc6097192002-11-03 00:24:07 +000071#endif
72 return (-1);
73 }
wdenk8bf3b002003-12-06 23:20:41 +000074 reg |= tmp << 16;
wdenkc6097192002-11-03 00:24:07 +000075#ifdef DEBUG
76 printf ("PHY_PHYIDR[1,2] @ 0x%x = 0x%08x\n", addr, reg);
77#endif
78 *oui = ( reg >> 10);
79 *model = (unsigned char) ((reg >> 4) & 0x0000003F);
80 *rev = (unsigned char) ( reg & 0x0000000F);
81 return (0);
82}
83
84
85/*****************************************************************************
86 *
87 * Reset the PHY.
88 * Returns:
89 * 0 on success
90 */
91int miiphy_reset (unsigned char addr)
92{
93 unsigned short reg;
94 int loop_cnt;
95
96 if (miiphy_write (addr, PHY_BMCR, 0x8000) != 0) {
97#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +000098 puts ("PHY reset failed\n");
wdenkc6097192002-11-03 00:24:07 +000099#endif
100 return (-1);
101 }
wdenk5653fc32004-02-08 22:55:38 +0000102#ifdef CONFIG_PHY_RESET_DELAY
103 udelay (CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
104#endif
wdenkc6097192002-11-03 00:24:07 +0000105 /*
106 * Poll the control register for the reset bit to go to 0 (it is
107 * auto-clearing). This should happen within 0.5 seconds per the
108 * IEEE spec.
109 */
110 loop_cnt = 0;
111 reg = 0x8000;
112 while (((reg & 0x8000) != 0) && (loop_cnt++ < 1000000)) {
113 if (miiphy_read (addr, PHY_BMCR, &reg) != 0) {
114# ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000115 puts ("PHY status read failed\n");
wdenkc6097192002-11-03 00:24:07 +0000116# endif
117 return (-1);
118 }
119 }
120 if ((reg & 0x8000) == 0) {
121 return (0);
122 } else {
wdenk4b9206e2004-03-23 22:14:11 +0000123 puts ("PHY reset timed out\n");
wdenkc6097192002-11-03 00:24:07 +0000124 return (-1);
125 }
126 return (0);
127}
128
129
130/*****************************************************************************
131 *
132 * Determine the ethernet speed (10/100).
133 */
134int miiphy_speed (unsigned char addr)
135{
136 unsigned short reg;
137
wdenk6fb6af62004-03-23 23:20:24 +0000138#if defined(CONFIG_PHY_GIGE)
wdenk855a4962004-03-14 18:23:55 +0000139 if (miiphy_read (addr, PHY_1000BTSR, &reg)) {
140 printf ("PHY 1000BT Status read failed\n");
141 } else {
142 if (reg != 0xFFFF) {
143 if ((reg & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) !=0) {
144 return (_1000BASET);
145 }
146 }
147 }
wdenk6fb6af62004-03-23 23:20:24 +0000148#endif /* CONFIG_PHY_GIGE */
wdenk855a4962004-03-14 18:23:55 +0000149
wdenka56bd922004-06-06 23:13:55 +0000150 /* Check Basic Management Control Register first. */
151 if (miiphy_read (addr, PHY_BMCR, &reg)) {
152 puts ("PHY speed read failed, assuming 10bT\n");
wdenkc6097192002-11-03 00:24:07 +0000153 return (_10BASET);
154 }
wdenka56bd922004-06-06 23:13:55 +0000155 /* Check if auto-negotiation is on. */
156 if ((reg & PHY_BMCR_AUTON) != 0) {
157 /* Get auto-negotiation results. */
158 if (miiphy_read (addr, PHY_ANLPAR, &reg)) {
159 puts ("PHY AN speed read failed, assuming 10bT\n");
160 return (_10BASET);
161 }
162 if ((reg & PHY_ANLPAR_100) != 0) {
163 return (_100BASET);
164 } else {
165 return (_10BASET);
166 }
167 }
168 /* Get speed from basic control settings. */
169 else if (reg & PHY_BMCR_100MB) {
wdenkc6097192002-11-03 00:24:07 +0000170 return (_100BASET);
171 } else {
172 return (_10BASET);
173 }
wdenka56bd922004-06-06 23:13:55 +0000174
wdenkc6097192002-11-03 00:24:07 +0000175}
176
177
178/*****************************************************************************
179 *
180 * Determine full/half duplex.
181 */
182int miiphy_duplex (unsigned char addr)
183{
184 unsigned short reg;
185
wdenk6fb6af62004-03-23 23:20:24 +0000186#if defined(CONFIG_PHY_GIGE)
wdenk855a4962004-03-14 18:23:55 +0000187 if (miiphy_read (addr, PHY_1000BTSR, &reg)) {
188 printf ("PHY 1000BT Status read failed\n");
189 } else {
190 if ( (reg != 0xFFFF) &&
191 (reg & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) ) {
192 if ((reg & PHY_1000BTSR_1000FD) !=0) {
193 return (FULL);
194 } else {
195 return (HALF);
196 }
197 }
198 }
wdenk6fb6af62004-03-23 23:20:24 +0000199#endif /* CONFIG_PHY_GIGE */
wdenk855a4962004-03-14 18:23:55 +0000200
wdenka56bd922004-06-06 23:13:55 +0000201 /* Check Basic Management Control Register first. */
202 if (miiphy_read (addr, PHY_BMCR, &reg)) {
wdenk4b9206e2004-03-23 22:14:11 +0000203 puts ("PHY duplex read failed, assuming half duplex\n");
wdenkc6097192002-11-03 00:24:07 +0000204 return (HALF);
205 }
wdenka56bd922004-06-06 23:13:55 +0000206 /* Check if auto-negotiation is on. */
207 if ((reg & PHY_BMCR_AUTON) != 0) {
208 /* Get auto-negotiation results. */
209 if (miiphy_read (addr, PHY_ANLPAR, &reg)) {
210 puts ("PHY AN duplex read failed, assuming half duplex\n");
211 return (HALF);
212 }
wdenkc6097192002-11-03 00:24:07 +0000213
wdenka56bd922004-06-06 23:13:55 +0000214 if ((reg & (PHY_ANLPAR_10FD | PHY_ANLPAR_TXFD)) != 0) {
215 return (FULL);
216 } else {
217 return (HALF);
218 }
219 }
220 /* Get speed from basic control settings. */
221 else if (reg & PHY_BMCR_DPLX) {
wdenkc6097192002-11-03 00:24:07 +0000222 return (FULL);
223 } else {
224 return (HALF);
225 }
wdenka56bd922004-06-06 23:13:55 +0000226
wdenkc6097192002-11-03 00:24:07 +0000227}
228
wdenkfc3e2162003-10-08 22:33:00 +0000229#ifdef CFG_FAULT_ECHO_LINK_DOWN
230/*****************************************************************************
231 *
232 * Determine link status
233 */
234int miiphy_link (unsigned char addr)
235{
236 unsigned short reg;
237
wdenka3d991b2004-04-15 21:48:45 +0000238 /* dummy read; needed to latch some phys */
239 (void)miiphy_read(addr, PHY_BMSR, &reg);
wdenkfc3e2162003-10-08 22:33:00 +0000240 if (miiphy_read (addr, PHY_BMSR, &reg)) {
wdenk4b9206e2004-03-23 22:14:11 +0000241 puts ("PHY_BMSR read failed, assuming no link\n");
wdenkfc3e2162003-10-08 22:33:00 +0000242 return (0);
243 }
244
245 /* Determine if a link is active */
246 if ((reg & PHY_BMSR_LS) != 0) {
247 return (1);
248 } else {
249 return (0);
250 }
251}
252#endif
253
wdenkc6097192002-11-03 00:24:07 +0000254#endif /* CONFIG_MII || (CONFIG_COMMANDS & CFG_CMD_MII) */