blob: 0987266c96ef248572830d90d4127fc31eaf161f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChung Liew54bdcc92008-10-23 16:27:24 +00002/*
3 * Copyright (C) 2004-2008 Freescale Semiconductor, Inc.
4 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChung Liew54bdcc92008-10-23 16:27:24 +00005 */
6
7#include <common.h>
8#include <config.h>
9#include <net.h>
10#include <netdev.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060012#include <linux/delay.h>
TsiChung Liew54bdcc92008-10-23 16:27:24 +000013
14#ifdef CONFIG_MCF547x_8x
15#include <asm/fsl_mcdmafec.h>
16#else
17#include <asm/fec.h>
18#endif
19#include <asm/immap.h>
Simon Glass68a6aa82019-11-14 12:57:31 -070020#include <linux/mii.h>
TsiChung Liew54bdcc92008-10-23 16:27:24 +000021
22DECLARE_GLOBAL_DATA_PTR;
23
Mike Frysingere2a53452011-10-02 10:01:27 +000024#if defined(CONFIG_CMD_NET)
TsiChung Liew54bdcc92008-10-23 16:27:24 +000025#undef MII_DEBUG
26#undef ET_DEBUG
27
28/*extern int fecpin_setclear(struct eth_device *dev, int setclear);*/
29
30#if defined(CONFIG_SYS_DISCOVER_PHY) || defined(CONFIG_CMD_MII)
31#include <miiphy.h>
32
33/* Make MII read/write commands for the FEC. */
34#define mk_mii_read(ADDR, REG) (0x60020000 | ((ADDR << 23) | \
35 (REG & 0x1f) << 18))
36#define mk_mii_write(ADDR, REG, VAL) (0x50020000 | ((ADDR << 23) | \
37 (REG & 0x1f) << 18) | (VAL & 0xffff))
38
39#ifndef CONFIG_SYS_UNSPEC_PHYID
40# define CONFIG_SYS_UNSPEC_PHYID 0
41#endif
42#ifndef CONFIG_SYS_UNSPEC_STRID
43# define CONFIG_SYS_UNSPEC_STRID 0
44#endif
45
TsiChung Liew54bdcc92008-10-23 16:27:24 +000046typedef struct phy_info_struct {
47 u32 phyid;
48 char *strid;
49} phy_info_t;
50
51phy_info_t phyinfo[] = {
52 {0x0022561B, "AMD79C784VC"}, /* AMD 79C784VC */
53 {0x00406322, "BCM5222"}, /* Broadcom 5222 */
54 {0x02a80150, "Intel82555"}, /* Intel 82555 */
55 {0x0016f870, "LSI80225"}, /* LSI 80225 */
56 {0x0016f880, "LSI80225/B"}, /* LSI 80225/B */
57 {0x78100000, "LXT970"}, /* LXT970 */
58 {0x001378e0, "LXT971"}, /* LXT971 and 972 */
59 {0x00221619, "KS8721BL"}, /* Micrel KS8721BL/SL */
60 {0x00221512, "KSZ8041NL"}, /* Micrel KSZ8041NL */
61 {0x20005CE1, "N83640"}, /* National 83640 */
62 {0x20005C90, "N83848"}, /* National 83848 */
63 {0x20005CA2, "N83849"}, /* National 83849 */
64 {0x01814400, "QS6612"}, /* QS6612 */
65#if defined(CONFIG_SYS_UNSPEC_PHYID) && defined(CONFIG_SYS_UNSPEC_STRID)
66 {CONFIG_SYS_UNSPEC_PHYID, CONFIG_SYS_UNSPEC_STRID},
67#endif
68 {0, 0}
69};
70
71/*
72 * mii_init -- Initialize the MII for MII command without ethernet
73 * This function is a subset of eth_init
74 */
Angelo Durgehello48f885a2019-11-15 23:54:20 +010075void mii_reset(fec_info_t *info)
TsiChung Liew54bdcc92008-10-23 16:27:24 +000076{
77 volatile FEC_T *fecp = (FEC_T *) (info->miibase);
78 int i;
79
80 fecp->ecr = FEC_ECR_RESET;
81
82 for (i = 0; (fecp->ecr & FEC_ECR_RESET) && (i < FEC_RESET_DELAY); ++i) {
83 udelay(1);
84 }
85 if (i == FEC_RESET_DELAY)
86 printf("FEC_RESET_DELAY timeout\n");
87}
88
89/* send command to phy using mii, wait for result */
90uint mii_send(uint mii_cmd)
91{
Angelo Durgehello48f885a2019-11-15 23:54:20 +010092#ifdef CONFIG_DM_ETH
93 struct udevice *dev;
94#else
TsiChung Liew54bdcc92008-10-23 16:27:24 +000095 struct eth_device *dev;
Angelo Durgehello48f885a2019-11-15 23:54:20 +010096#endif
97 fec_info_t *info;
98 volatile FEC_T *ep;
TsiChung Liew54bdcc92008-10-23 16:27:24 +000099 uint mii_reply;
100 int j = 0;
101
102 /* retrieve from register structure */
103 dev = eth_get_dev();
Simon Glass0fd3d912020-12-22 19:30:28 -0700104#ifdef CONFIG_DM_ETH
105 info = dev_get_priv(dev);
106#else
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000107 info = dev->priv;
Simon Glass0fd3d912020-12-22 19:30:28 -0700108#endif
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000109
110 ep = (FEC_T *) info->miibase;
111
112 ep->mmfr = mii_cmd; /* command to phy */
113
114 /* wait for mii complete */
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100115 while (!(ep->eir & FEC_EIR_MII) && (j < info->to_loop)) {
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000116 udelay(1);
117 j++;
118 }
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100119 if (j >= info->to_loop) {
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000120 printf("MII not complete\n");
121 return -1;
122 }
123
124 mii_reply = ep->mmfr; /* result from phy */
125 ep->eir = FEC_EIR_MII; /* clear MII complete */
126#ifdef ET_DEBUG
127 printf("%s[%d] %s: sent=0x%8.8x, reply=0x%8.8x\n",
128 __FILE__, __LINE__, __FUNCTION__, mii_cmd, mii_reply);
129#endif
130
131 return (mii_reply & 0xffff); /* data read from phy */
132}
133#endif /* CONFIG_SYS_DISCOVER_PHY || (CONFIG_MII) */
134
135#if defined(CONFIG_SYS_DISCOVER_PHY)
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100136int mii_discover_phy(fec_info_t *info)
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000137{
138#define MAX_PHY_PASSES 11
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000139 int phyaddr, pass;
140 uint phyno, phytype;
141 int i, found = 0;
142
143 if (info->phyname_init)
144 return info->phy_addr;
145
146 phyaddr = -1; /* didn't find a PHY yet */
147 for (pass = 1; pass <= MAX_PHY_PASSES && phyaddr < 0; ++pass) {
148 if (pass > 1) {
149 /* PHY may need more time to recover from reset.
150 * The LXT970 needs 50ms typical, no maximum is
151 * specified, so wait 10ms before try again.
152 * With 11 passes this gives it 100ms to wake up.
153 */
154 udelay(10000); /* wait 10ms */
155 }
156
157 for (phyno = 0; phyno < 32 && phyaddr < 0; ++phyno) {
158
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500159 phytype = mii_send(mk_mii_read(phyno, MII_PHYSID1));
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000160#ifdef ET_DEBUG
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100161 printf("PHY type 0x%x pass %d\n", phytype, pass);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000162#endif
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200163 if (phytype == 0xffff)
164 continue;
165 phyaddr = phyno;
166 phytype <<= 16;
167 phytype |=
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500168 mii_send(mk_mii_read(phyno, MII_PHYSID2));
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000169
170#ifdef ET_DEBUG
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200171 printf("PHY @ 0x%x pass %d\n", phyno, pass);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000172#endif
173
Axel Lina62cd292013-07-03 11:24:18 +0800174 for (i = 0; (i < ARRAY_SIZE(phyinfo))
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200175 && (phyinfo[i].phyid != 0); i++) {
176 if (phyinfo[i].phyid == phytype) {
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000177#ifdef ET_DEBUG
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200178 printf("phyid %x - %s\n",
179 phyinfo[i].phyid,
180 phyinfo[i].strid);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000181#endif
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200182 strcpy(info->phy_name, phyinfo[i].strid);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000183 info->phyname_init = 1;
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200184 found = 1;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000185 break;
186 }
187 }
Wolfgang Wegner33f684d2010-04-06 11:13:02 +0200188
189 if (!found) {
190#ifdef ET_DEBUG
191 printf("0x%08x\n", phytype);
192#endif
193 strcpy(info->phy_name, "unknown");
194 info->phyname_init = 1;
195 break;
196 }
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000197 }
198 }
199
200 if (phyaddr < 0)
201 printf("No PHY device found.\n");
202
203 return phyaddr;
204}
205#endif /* CONFIG_SYS_DISCOVER_PHY */
206
207void mii_init(void) __attribute__((weak,alias("__mii_init")));
208
209void __mii_init(void)
210{
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100211#ifdef CONFIG_DM_ETH
212 struct udevice *dev;
213#else
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000214 struct eth_device *dev;
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100215#endif
216 fec_info_t *info;
217 volatile FEC_T *fecp;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000218 int miispd = 0, i = 0;
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500219 u16 status = 0;
220 u16 linkgood = 0;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000221
222 /* retrieve from register structure */
223 dev = eth_get_dev();
Simon Glass0fd3d912020-12-22 19:30:28 -0700224#ifdef CONFIG_DM_ETH
225 info = dev_get_priv(dev);
226#else
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000227 info = dev->priv;
Simon Glass0fd3d912020-12-22 19:30:28 -0700228#endif
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000229
230 fecp = (FEC_T *) info->miibase;
231
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100232 fecpin_setclear(info, 1);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000233
234 mii_reset(info);
235
236 /* We use strictly polling mode only */
237 fecp->eimr = 0;
238
239 /* Clear any pending interrupt */
240 fecp->eir = 0xffffffff;
241
242 /* Set MII speed */
243 miispd = (gd->bus_clk / 1000000) / 5;
244 fecp->mscr = miispd << 1;
245
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100246#ifdef CONFIG_SYS_DISCOVER_PHY
247 info->phy_addr = mii_discover_phy(info);
248#endif
249 if (info->phy_addr == -1)
250 return;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000251
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100252 while (i < info->to_loop) {
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500253 status = 0;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000254 i++;
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500255 /* Read PHY control register */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500256 miiphy_read(dev->name, info->phy_addr, MII_BMCR, &status);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000257
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500258 /* If phy set to autonegotiate, wait for autonegotiation done,
259 * if phy is not autonegotiating, just wait for link up.
260 */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500261 if ((status & BMCR_ANENABLE) == BMCR_ANENABLE) {
262 linkgood = (BMSR_ANEGCOMPLETE | BMSR_LSTATUS);
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500263 } else {
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500264 linkgood = BMSR_LSTATUS;
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500265 }
266 /* Read PHY status register */
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500267 miiphy_read(dev->name, info->phy_addr, MII_BMSR, &status);
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500268 if ((status & linkgood) == linkgood)
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000269 break;
270
Richard Retanubun44578be2009-05-26 08:29:29 -0400271 udelay(1);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000272 }
Angelo Durgehello48f885a2019-11-15 23:54:20 +0100273 if (i >= info->to_loop)
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500274 printf("Link UP timeout\n");
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000275
Richard Retanubunc4ff77f2009-01-23 14:42:58 -0500276 /* adapt to the duplex and speed settings of the phy */
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000277 info->dup_spd = miiphy_duplex(dev->name, info->phy_addr) << 16;
278 info->dup_spd |= miiphy_speed(dev->name, info->phy_addr);
279}
280
281/*
282 * Read and write a MII PHY register, routines used by MII Utilities
283 *
284 * FIXME: These routines are expected to return 0 on success, but mii_send
285 * does _not_ return an error code. Maybe 0xFFFF means error, i.e.
286 * no PHY connected...
287 * For now always return 0.
288 * FIXME: These routines only work after calling eth_init() at least once!
289 * Otherwise they hang in mii_send() !!! Sorry!
290 */
291
Joe Hershbergerdfcc4962016-08-08 11:28:39 -0500292int mcffec_miiphy_read(struct mii_dev *bus, int addr, int devad, int reg)
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000293{
294 short rdreg; /* register working value */
295
296#ifdef MII_DEBUG
297 printf("miiphy_read(0x%x) @ 0x%x = ", reg, addr);
298#endif
299 rdreg = mii_send(mk_mii_read(addr, reg));
300
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000301#ifdef MII_DEBUG
Joe Hershbergerdfcc4962016-08-08 11:28:39 -0500302 printf("0x%04x\n", rdreg);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000303#endif
304
Joe Hershbergerdfcc4962016-08-08 11:28:39 -0500305 return rdreg;
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000306}
307
Joe Hershbergerdfcc4962016-08-08 11:28:39 -0500308int mcffec_miiphy_write(struct mii_dev *bus, int addr, int devad, int reg,
309 u16 value)
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000310{
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000311#ifdef MII_DEBUG
Joe Hershbergerdfcc4962016-08-08 11:28:39 -0500312 printf("miiphy_write(0x%x) @ 0x%x = 0x%04x\n", reg, addr, value);
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000313#endif
314
Marek Vasut2b758ca2012-10-03 13:28:47 +0000315 mii_send(mk_mii_write(addr, reg, value));
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000316
TsiChung Liew54bdcc92008-10-23 16:27:24 +0000317 return 0;
318}
319
Mike Frysingere2a53452011-10-02 10:01:27 +0000320#endif /* CONFIG_CMD_NET */