blob: ec1fae9688bdf04f6ddd6f2eea965a40a01314a3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChung Liew8e585f02007-06-18 13:50:13 -05002/*
3 * (C) Copyright 2000-2004
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
TsiChungLiewf2208fb2007-07-05 23:13:58 -05006 * (C) Copyright 2007 Freescale Semiconductor, Inc.
TsiChung Liew8e585f02007-06-18 13:50:13 -05007 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +01008 *
9 * Conversion to DM
10 * (C) 2019 Angelo Dureghello <angelo.dureghello@timesys.com>
TsiChung Liew8e585f02007-06-18 13:50:13 -050011 */
12
13#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -060014#include <env.h>
Simon Glassdb41d652019-12-28 10:45:07 -070015#include <hang.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050016#include <malloc.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050017#include <command.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050018#include <net.h>
19#include <miiphy.h>
TsiChung Liew54bdcc92008-10-23 16:27:24 +000020#include <asm/fec.h>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
TsiChung Liew54bdcc92008-10-23 16:27:24 +000022#include <asm/immap.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Simon Glass68a6aa82019-11-14 12:57:31 -070024#include <linux/mii.h>
TsiChung Liew54bdcc92008-10-23 16:27:24 +000025
TsiChung Liew8e585f02007-06-18 13:50:13 -050026#undef ET_DEBUG
27#undef MII_DEBUG
28
29/* Ethernet Transmit and Receive Buffers */
TsiChungLiewf2208fb2007-07-05 23:13:58 -050030#define DBUF_LENGTH 1520
31#define TX_BUF_CNT 2
TsiChung Liew8e585f02007-06-18 13:50:13 -050032#define PKT_MAXBUF_SIZE 1518
TsiChung Liew8e585f02007-06-18 13:50:13 -050033#define PKT_MAXBLR_SIZE 1520
34#define LAST_PKTBUFSRX PKTBUFSRX - 1
35#define BD_ENET_RX_W_E (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY)
36#define BD_ENET_TX_RDY_LST (BD_ENET_TX_READY | BD_ENET_TX_LAST)
37
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010038DECLARE_GLOBAL_DATA_PTR;
TsiChung Liew8e585f02007-06-18 13:50:13 -050039
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010040static void init_eth_info(struct fec_info_s *info)
TsiChung Liew8e585f02007-06-18 13:50:13 -050041{
Tom Rini65cc0e22022-11-16 13:10:41 -050042#ifdef CFG_SYS_FEC_BUF_USE_SRAM
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010043 static u32 tmp;
44
45 if (info->index == 0)
Tom Rini65cc0e22022-11-16 13:10:41 -050046 tmp = CFG_SYS_INIT_RAM_ADDR + 0x1000;
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010047 else
48 info->rxbd = (cbd_t *)DBUF_LENGTH;
49
50 /* setup Receive and Transmit buffer descriptor */
51 info->rxbd = (cbd_t *)((u32)info->rxbd + tmp);
52 tmp = (u32)info->rxbd;
53 info->txbd =
54 (cbd_t *)((u32)info->txbd + tmp +
55 (PKTBUFSRX * sizeof(cbd_t)));
56 tmp = (u32)info->txbd;
57 info->txbuf =
58 (char *)((u32)info->txbuf + tmp +
Tom Rini65cc0e22022-11-16 13:10:41 -050059 (CFG_SYS_TX_ETH_BUFFER * sizeof(cbd_t)));
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010060 tmp = (u32)info->txbuf;
61#else
62 info->rxbd =
63 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
64 (PKTBUFSRX * sizeof(cbd_t)));
65 info->txbd =
66 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
67 (TX_BUF_CNT * sizeof(cbd_t)));
68 info->txbuf =
69 (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, DBUF_LENGTH);
70#endif
71
72#ifdef ET_DEBUG
73 printf("rxbd %x txbd %x\n", (int)info->rxbd, (int)info->txbd);
74#endif
75 info->phy_name = (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, 32);
76}
77
78static void fec_reset(struct fec_info_s *info)
79{
80 volatile fec_t *fecp = (fec_t *)(info->iobase);
81 int i;
82
83 fecp->ecr = FEC_ECR_RESET;
84 for (i = 0; (fecp->ecr & FEC_ECR_RESET) && (i < FEC_RESET_DELAY); ++i)
85 udelay(1);
86
87 if (i == FEC_RESET_DELAY)
88 printf("FEC_RESET_DELAY timeout\n");
89}
90
91static void set_fec_duplex_speed(volatile fec_t *fecp, int dup_spd)
92{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090093 struct bd_info *bd = gd->bd;
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +010094
TsiChung Liew8e585f02007-06-18 13:50:13 -050095 if ((dup_spd >> 16) == FULL) {
96 /* Set maximum frame length */
97 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) | FEC_RCR_MII_MODE |
98 FEC_RCR_PROM | 0x100;
99 fecp->tcr = FEC_TCR_FDEN;
100 } else {
101 /* Half duplex mode */
102 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) |
103 FEC_RCR_MII_MODE | FEC_RCR_DRT;
104 fecp->tcr &= ~FEC_TCR_FDEN;
105 }
106
107 if ((dup_spd & 0xFFFF) == _100BASET) {
108#ifdef MII_DEBUG
109 printf("100Mbps\n");
110#endif
111 bd->bi_ethspeed = 100;
112 } else {
113#ifdef MII_DEBUG
114 printf("10Mbps\n");
115#endif
116 bd->bi_ethspeed = 10;
117 }
118}
119
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100120#ifdef ET_DEBUG
121static void dbg_fec_regs(struct udevice *dev)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500122{
Simon Glass0fd3d912020-12-22 19:30:28 -0700123 struct fec_info_s *info = dev_get_priv(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100124 volatile fec_t *fecp = (fec_t *)(info->iobase);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500125
126 printf("=====\n");
127 printf("ievent %x - %x\n", (int)&fecp->eir, fecp->eir);
128 printf("imask %x - %x\n", (int)&fecp->eimr, fecp->eimr);
129 printf("r_des_active %x - %x\n", (int)&fecp->rdar, fecp->rdar);
130 printf("x_des_active %x - %x\n", (int)&fecp->tdar, fecp->tdar);
131 printf("ecntrl %x - %x\n", (int)&fecp->ecr, fecp->ecr);
132 printf("mii_mframe %x - %x\n", (int)&fecp->mmfr, fecp->mmfr);
133 printf("mii_speed %x - %x\n", (int)&fecp->mscr, fecp->mscr);
134 printf("mii_ctrlstat %x - %x\n", (int)&fecp->mibc, fecp->mibc);
135 printf("r_cntrl %x - %x\n", (int)&fecp->rcr, fecp->rcr);
136 printf("x_cntrl %x - %x\n", (int)&fecp->tcr, fecp->tcr);
137 printf("padr_l %x - %x\n", (int)&fecp->palr, fecp->palr);
138 printf("padr_u %x - %x\n", (int)&fecp->paur, fecp->paur);
139 printf("op_pause %x - %x\n", (int)&fecp->opd, fecp->opd);
140 printf("iadr_u %x - %x\n", (int)&fecp->iaur, fecp->iaur);
141 printf("iadr_l %x - %x\n", (int)&fecp->ialr, fecp->ialr);
142 printf("gadr_u %x - %x\n", (int)&fecp->gaur, fecp->gaur);
143 printf("gadr_l %x - %x\n", (int)&fecp->galr, fecp->galr);
144 printf("x_wmrk %x - %x\n", (int)&fecp->tfwr, fecp->tfwr);
145 printf("r_bound %x - %x\n", (int)&fecp->frbr, fecp->frbr);
146 printf("r_fstart %x - %x\n", (int)&fecp->frsr, fecp->frsr);
147 printf("r_drng %x - %x\n", (int)&fecp->erdsr, fecp->erdsr);
148 printf("x_drng %x - %x\n", (int)&fecp->etdsr, fecp->etdsr);
149 printf("r_bufsz %x - %x\n", (int)&fecp->emrbr, fecp->emrbr);
150
151 printf("\n");
152 printf("rmon_t_drop %x - %x\n", (int)&fecp->rmon_t_drop,
153 fecp->rmon_t_drop);
154 printf("rmon_t_packets %x - %x\n", (int)&fecp->rmon_t_packets,
155 fecp->rmon_t_packets);
156 printf("rmon_t_bc_pkt %x - %x\n", (int)&fecp->rmon_t_bc_pkt,
157 fecp->rmon_t_bc_pkt);
158 printf("rmon_t_mc_pkt %x - %x\n", (int)&fecp->rmon_t_mc_pkt,
159 fecp->rmon_t_mc_pkt);
160 printf("rmon_t_crc_align %x - %x\n", (int)&fecp->rmon_t_crc_align,
161 fecp->rmon_t_crc_align);
162 printf("rmon_t_undersize %x - %x\n", (int)&fecp->rmon_t_undersize,
163 fecp->rmon_t_undersize);
164 printf("rmon_t_oversize %x - %x\n", (int)&fecp->rmon_t_oversize,
165 fecp->rmon_t_oversize);
166 printf("rmon_t_frag %x - %x\n", (int)&fecp->rmon_t_frag,
167 fecp->rmon_t_frag);
168 printf("rmon_t_jab %x - %x\n", (int)&fecp->rmon_t_jab,
169 fecp->rmon_t_jab);
170 printf("rmon_t_col %x - %x\n", (int)&fecp->rmon_t_col,
171 fecp->rmon_t_col);
172 printf("rmon_t_p64 %x - %x\n", (int)&fecp->rmon_t_p64,
173 fecp->rmon_t_p64);
174 printf("rmon_t_p65to127 %x - %x\n", (int)&fecp->rmon_t_p65to127,
175 fecp->rmon_t_p65to127);
176 printf("rmon_t_p128to255 %x - %x\n", (int)&fecp->rmon_t_p128to255,
177 fecp->rmon_t_p128to255);
178 printf("rmon_t_p256to511 %x - %x\n", (int)&fecp->rmon_t_p256to511,
179 fecp->rmon_t_p256to511);
180 printf("rmon_t_p512to1023 %x - %x\n", (int)&fecp->rmon_t_p512to1023,
181 fecp->rmon_t_p512to1023);
182 printf("rmon_t_p1024to2047 %x - %x\n", (int)&fecp->rmon_t_p1024to2047,
183 fecp->rmon_t_p1024to2047);
184 printf("rmon_t_p_gte2048 %x - %x\n", (int)&fecp->rmon_t_p_gte2048,
185 fecp->rmon_t_p_gte2048);
186 printf("rmon_t_octets %x - %x\n", (int)&fecp->rmon_t_octets,
187 fecp->rmon_t_octets);
188
189 printf("\n");
190 printf("ieee_t_drop %x - %x\n", (int)&fecp->ieee_t_drop,
191 fecp->ieee_t_drop);
192 printf("ieee_t_frame_ok %x - %x\n", (int)&fecp->ieee_t_frame_ok,
193 fecp->ieee_t_frame_ok);
194 printf("ieee_t_1col %x - %x\n", (int)&fecp->ieee_t_1col,
195 fecp->ieee_t_1col);
196 printf("ieee_t_mcol %x - %x\n", (int)&fecp->ieee_t_mcol,
197 fecp->ieee_t_mcol);
198 printf("ieee_t_def %x - %x\n", (int)&fecp->ieee_t_def,
199 fecp->ieee_t_def);
200 printf("ieee_t_lcol %x - %x\n", (int)&fecp->ieee_t_lcol,
201 fecp->ieee_t_lcol);
202 printf("ieee_t_excol %x - %x\n", (int)&fecp->ieee_t_excol,
203 fecp->ieee_t_excol);
204 printf("ieee_t_macerr %x - %x\n", (int)&fecp->ieee_t_macerr,
205 fecp->ieee_t_macerr);
206 printf("ieee_t_cserr %x - %x\n", (int)&fecp->ieee_t_cserr,
207 fecp->ieee_t_cserr);
208 printf("ieee_t_sqe %x - %x\n", (int)&fecp->ieee_t_sqe,
209 fecp->ieee_t_sqe);
210 printf("ieee_t_fdxfc %x - %x\n", (int)&fecp->ieee_t_fdxfc,
211 fecp->ieee_t_fdxfc);
212 printf("ieee_t_octets_ok %x - %x\n", (int)&fecp->ieee_t_octets_ok,
213 fecp->ieee_t_octets_ok);
214
215 printf("\n");
216 printf("rmon_r_drop %x - %x\n", (int)&fecp->rmon_r_drop,
217 fecp->rmon_r_drop);
218 printf("rmon_r_packets %x - %x\n", (int)&fecp->rmon_r_packets,
219 fecp->rmon_r_packets);
220 printf("rmon_r_bc_pkt %x - %x\n", (int)&fecp->rmon_r_bc_pkt,
221 fecp->rmon_r_bc_pkt);
222 printf("rmon_r_mc_pkt %x - %x\n", (int)&fecp->rmon_r_mc_pkt,
223 fecp->rmon_r_mc_pkt);
224 printf("rmon_r_crc_align %x - %x\n", (int)&fecp->rmon_r_crc_align,
225 fecp->rmon_r_crc_align);
226 printf("rmon_r_undersize %x - %x\n", (int)&fecp->rmon_r_undersize,
227 fecp->rmon_r_undersize);
228 printf("rmon_r_oversize %x - %x\n", (int)&fecp->rmon_r_oversize,
229 fecp->rmon_r_oversize);
230 printf("rmon_r_frag %x - %x\n", (int)&fecp->rmon_r_frag,
231 fecp->rmon_r_frag);
232 printf("rmon_r_jab %x - %x\n", (int)&fecp->rmon_r_jab,
233 fecp->rmon_r_jab);
234 printf("rmon_r_p64 %x - %x\n", (int)&fecp->rmon_r_p64,
235 fecp->rmon_r_p64);
236 printf("rmon_r_p65to127 %x - %x\n", (int)&fecp->rmon_r_p65to127,
237 fecp->rmon_r_p65to127);
238 printf("rmon_r_p128to255 %x - %x\n", (int)&fecp->rmon_r_p128to255,
239 fecp->rmon_r_p128to255);
240 printf("rmon_r_p256to511 %x - %x\n", (int)&fecp->rmon_r_p256to511,
241 fecp->rmon_r_p256to511);
242 printf("rmon_r_p512to1023 %x - %x\n", (int)&fecp->rmon_r_p512to1023,
243 fecp->rmon_r_p512to1023);
244 printf("rmon_r_p1024to2047 %x - %x\n", (int)&fecp->rmon_r_p1024to2047,
245 fecp->rmon_r_p1024to2047);
246 printf("rmon_r_p_gte2048 %x - %x\n", (int)&fecp->rmon_r_p_gte2048,
247 fecp->rmon_r_p_gte2048);
248 printf("rmon_r_octets %x - %x\n", (int)&fecp->rmon_r_octets,
249 fecp->rmon_r_octets);
250
251 printf("\n");
252 printf("ieee_r_drop %x - %x\n", (int)&fecp->ieee_r_drop,
253 fecp->ieee_r_drop);
254 printf("ieee_r_frame_ok %x - %x\n", (int)&fecp->ieee_r_frame_ok,
255 fecp->ieee_r_frame_ok);
256 printf("ieee_r_crc %x - %x\n", (int)&fecp->ieee_r_crc,
257 fecp->ieee_r_crc);
258 printf("ieee_r_align %x - %x\n", (int)&fecp->ieee_r_align,
259 fecp->ieee_r_align);
260 printf("ieee_r_macerr %x - %x\n", (int)&fecp->ieee_r_macerr,
261 fecp->ieee_r_macerr);
262 printf("ieee_r_fdxfc %x - %x\n", (int)&fecp->ieee_r_fdxfc,
263 fecp->ieee_r_fdxfc);
264 printf("ieee_r_octets_ok %x - %x\n", (int)&fecp->ieee_r_octets_ok,
265 fecp->ieee_r_octets_ok);
266
267 printf("\n\n\n");
268}
269#endif
270
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100271int mcffec_init(struct udevice *dev)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500272{
Simon Glass0fd3d912020-12-22 19:30:28 -0700273 struct fec_info_s *info = dev_get_priv(dev);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500274 volatile fec_t *fecp = (fec_t *) (info->iobase);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100275 int rval, i;
Mike Frysingerd3f87142009-02-11 19:01:26 -0500276 uchar ea[6];
TsiChung Liew8e585f02007-06-18 13:50:13 -0500277
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100278 fecpin_setclear(info, 1);
279 fec_reset(info);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500280
TsiChung Liew8e585f02007-06-18 13:50:13 -0500281 mii_init();
282
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100283 set_fec_duplex_speed(fecp, info->dup_spd);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500284
285 /* We use strictly polling mode only */
286 fecp->eimr = 0;
287
288 /* Clear any pending interrupt */
289 fecp->eir = 0xffffffff;
290
291 /* Set station address */
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100292 if (info->index == 0)
293 rval = eth_env_get_enetaddr("ethaddr", ea);
294 else
295 rval = eth_env_get_enetaddr("eth1addr", ea);
296
297 if (!rval) {
298 puts("Please set a valid MAC address\n");
299 return -EINVAL;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500300 }
301
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100302 fecp->palr =
303 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
304 fecp->paur = (ea[4] << 24) | (ea[5] << 16);
305
TsiChung Liew8e585f02007-06-18 13:50:13 -0500306 /* Clear unicast address hash table */
307 fecp->iaur = 0;
308 fecp->ialr = 0;
309
310 /* Clear multicast address hash table */
311 fecp->gaur = 0;
312 fecp->galr = 0;
313
314 /* Set maximum receive buffer size. */
315 fecp->emrbr = PKT_MAXBLR_SIZE;
316
317 /*
Heinrich Schuchardte4691562017-08-29 18:44:37 +0200318 * Setup Buffers and Buffer Descriptors
TsiChung Liew8e585f02007-06-18 13:50:13 -0500319 */
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100320 info->rx_idx = 0;
321 info->tx_idx = 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500322
323 /*
324 * Setup Receiver Buffer Descriptors (13.14.24.18)
325 * Settings:
326 * Empty, Wrap
327 */
328 for (i = 0; i < PKTBUFSRX; i++) {
329 info->rxbd[i].cbd_sc = BD_ENET_RX_EMPTY;
330 info->rxbd[i].cbd_datlen = 0; /* Reset */
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500331 info->rxbd[i].cbd_bufaddr = (uint) net_rx_packets[i];
TsiChung Liew8e585f02007-06-18 13:50:13 -0500332 }
333 info->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP;
334
335 /*
336 * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19)
337 * Settings:
338 * Last, Tx CRC
339 */
340 for (i = 0; i < TX_BUF_CNT; i++) {
341 info->txbd[i].cbd_sc = BD_ENET_TX_LAST | BD_ENET_TX_TC;
342 info->txbd[i].cbd_datlen = 0; /* Reset */
343 info->txbd[i].cbd_bufaddr = (uint) (&info->txbuf[0]);
344 }
345 info->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP;
346
347 /* Set receive and transmit descriptor base */
348 fecp->erdsr = (unsigned int)(&info->rxbd[0]);
349 fecp->etdsr = (unsigned int)(&info->txbd[0]);
350
351 /* Now enable the transmit and receive processing */
352 fecp->ecr |= FEC_ECR_ETHER_EN;
353
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100354 /* And last, try to fill Rx Buffer Descriptors
355 * Descriptor polling active
356 */
357 fecp->rdar = 0x01000000;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500358
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100359 return 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500360}
361
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100362static int mcffec_send(struct udevice *dev, void *packet, int length)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500363{
Simon Glass0fd3d912020-12-22 19:30:28 -0700364 struct fec_info_s *info = dev_get_priv(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100365 volatile fec_t *fecp = (fec_t *)info->iobase;
366 int j, rc;
367 u16 phy_status;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500368
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100369 miiphy_read(dev->name, info->phy_addr, MII_BMSR, &phy_status);
370
371 /* section 16.9.23.3
372 * Wait for ready
373 */
374 j = 0;
375 while ((info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_READY) &&
376 (j < info->to_loop)) {
TsiChung Liew8e585f02007-06-18 13:50:13 -0500377 udelay(1);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100378 j++;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500379 }
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100380 if (j >= info->to_loop)
381 printf("TX not ready\n");
382
383 info->txbd[info->tx_idx].cbd_bufaddr = (uint)packet;
384 info->txbd[info->tx_idx].cbd_datlen = length;
385 info->txbd[info->tx_idx].cbd_sc |= BD_ENET_TX_RDY_LST;
386
387 /* Activate transmit Buffer Descriptor polling */
388 fecp->tdar = 0x01000000; /* Descriptor polling active */
389
Tom Rini65cc0e22022-11-16 13:10:41 -0500390#ifndef CFG_SYS_FEC_BUF_USE_SRAM
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100391 /*
392 * FEC unable to initial transmit data packet.
393 * A nop will ensure the descriptor polling active completed.
394 * CF Internal RAM has shorter cycle access than DRAM. If use
395 * DRAM as Buffer descriptor and data, a nop is a must.
396 * Affect only V2 and V3.
397 */
398 __asm__ ("nop");
399#endif
400
401#ifdef CONFIG_SYS_UNIFY_CACHE
402 icache_invalid();
403#endif
404
405 j = 0;
406 while ((info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_READY) &&
407 (j < info->to_loop)) {
408 udelay(1);
409 j++;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500410 }
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100411 if (j >= info->to_loop)
412 printf("TX timeout\n");
413
414#ifdef ET_DEBUG
415 printf("%s[%d] %s: cycles: %d status: %x retry cnt: %d\n",
416 __FILE__, __LINE__, __func__, j,
417 info->txbd[info->tx_idx].cbd_sc,
418 (info->txbd[info->tx_idx].cbd_sc & 0x003C) >> 2);
419#endif
420
421 /* return only status bits */
422 rc = (info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_STATS);
423 info->tx_idx = (info->tx_idx + 1) % TX_BUF_CNT;
424
425 return rc;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500426}
427
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100428static int mcffec_recv(struct udevice *dev, int flags, uchar **packetp)
429{
Simon Glass0fd3d912020-12-22 19:30:28 -0700430 struct fec_info_s *info = dev_get_priv(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100431 volatile fec_t *fecp = (fec_t *)info->iobase;
432 int length = -1;
433
434 for (;;) {
435#ifdef CONFIG_SYS_UNIFY_CACHE
436 icache_invalid();
437#endif
438 /* If nothing received - leave for() loop */
439 if (info->rxbd[info->rx_idx].cbd_sc & BD_ENET_RX_EMPTY)
440 break;
441
442 length = info->rxbd[info->rx_idx].cbd_datlen;
443
444 if (info->rxbd[info->rx_idx].cbd_sc & 0x003f) {
445 printf("%s[%d] err: %x\n",
446 __func__, __LINE__,
447 info->rxbd[info->rx_idx].cbd_sc);
448 } else {
449 length -= 4;
450
451 /*
452 * Pass the buffer ptr up to the protocol layers.
453 */
454 *packetp = net_rx_packets[info->rx_idx];
455
456 fecp->eir |= FEC_EIR_RXF;
457 }
458
459 /* Give the buffer back to the FEC. */
460 info->rxbd[info->rx_idx].cbd_datlen = 0;
461
462 /* wrap around buffer index when necessary */
463 if (info->rx_idx == LAST_PKTBUFSRX) {
464 info->rxbd[PKTBUFSRX - 1].cbd_sc = BD_ENET_RX_W_E;
465 info->rx_idx = 0;
466 } else {
467 info->rxbd[info->rx_idx].cbd_sc = BD_ENET_RX_EMPTY;
468 info->rx_idx++;
469 }
470
471 /* Try to fill Buffer Descriptors
472 * Descriptor polling active
473 */
474 fecp->rdar = 0x01000000;
475 }
476
477 return length;
478}
479
480static void mcffec_halt(struct udevice *dev)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500481{
Simon Glass0fd3d912020-12-22 19:30:28 -0700482 struct fec_info_s *info = dev_get_priv(dev);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500483
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100484 fec_reset(info);
485 fecpin_setclear(info, 0);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500486
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100487 info->rx_idx = 0;
488 info->tx_idx = 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500489
TsiChung Liew8e585f02007-06-18 13:50:13 -0500490 memset(info->rxbd, 0, PKTBUFSRX * sizeof(cbd_t));
491 memset(info->txbd, 0, TX_BUF_CNT * sizeof(cbd_t));
492 memset(info->txbuf, 0, DBUF_LENGTH);
493}
494
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100495static const struct eth_ops mcffec_ops = {
496 .start = mcffec_init,
497 .send = mcffec_send,
498 .recv = mcffec_recv,
499 .stop = mcffec_halt,
500};
501
502/*
Simon Glassd1998a92020-12-03 16:55:21 -0700503 * Boot sequence, called just after mcffec_of_to_plat,
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100504 * as DM way, it replaces old mcffec_initialize.
505 */
506static int mcffec_probe(struct udevice *dev)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500507{
Simon Glassc69cda22020-12-03 16:55:20 -0700508 struct eth_pdata *pdata = dev_get_plat(dev);
Simon Glass0fd3d912020-12-22 19:30:28 -0700509 struct fec_info_s *info = dev_get_priv(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100510 int node = dev_of_offset(dev);
511 int retval, fec_idx;
512 const u32 *val;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500513
Simon Glass8b85dfc2020-12-16 21:20:07 -0700514 info->index = dev_seq(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100515 info->iobase = pdata->iobase;
516 info->phy_addr = -1;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500517
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100518 val = fdt_getprop(gd->fdt_blob, node, "mii-base", NULL);
519 if (val) {
520 u32 fec_iobase;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500521
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100522 fec_idx = fdt32_to_cpu(*val);
523 if (fec_idx == info->index) {
524 fec_iobase = info->iobase;
525 } else {
526 printf("mii base != base address, fec_idx %d\n",
527 fec_idx);
528 retval = fec_get_base_addr(fec_idx, &fec_iobase);
529 if (retval)
530 return retval;
531 }
532 info->miibase = fec_iobase;
533 }
TsiChung Liew8e585f02007-06-18 13:50:13 -0500534
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100535 val = fdt_getprop(gd->fdt_blob, node, "phy-addr", NULL);
536 if (val)
537 info->phy_addr = fdt32_to_cpu(*val);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500538
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100539 val = fdt_getprop(gd->fdt_blob, node, "timeout-loop", NULL);
540 if (val)
541 info->to_loop = fdt32_to_cpu(*val);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500542
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100543 init_eth_info(info);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500544
TsiChungLiewab77bc52007-08-15 15:39:17 -0500545#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100546 info->bus = mdio_alloc();
547 if (!info->bus)
548 return -ENOMEM;
549 strcpy(info->bus->name, dev->name);
550 info->bus->read = mcffec_miiphy_read;
551 info->bus->write = mcffec_miiphy_write;
Joe Hershberger5a49f172016-08-08 11:28:38 -0500552
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100553 retval = mdio_register(info->bus);
554 if (retval < 0)
555 return retval;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500556#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500557
Ben Warren86882b82008-08-26 22:16:25 -0700558 return 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500559}
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100560
561static int mcffec_remove(struct udevice *dev)
562{
563 struct fec_info_s *priv = dev_get_priv(dev);
564
565 mdio_unregister(priv->bus);
566 mdio_free(priv->bus);
567
568 return 0;
569}
570
571/*
572 * Boot sequence, called 1st
573 */
Simon Glassd1998a92020-12-03 16:55:21 -0700574static int mcffec_of_to_plat(struct udevice *dev)
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100575{
Simon Glassc69cda22020-12-03 16:55:20 -0700576 struct eth_pdata *pdata = dev_get_plat(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100577 const u32 *val;
578
Masahiro Yamada25484932020-07-17 14:36:48 +0900579 pdata->iobase = dev_read_addr(dev);
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100580 /* Default to 10Mbit/s */
581 pdata->max_speed = 10;
582
583 val = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
584 "max-speed", NULL);
585 if (val)
586 pdata->max_speed = fdt32_to_cpu(*val);
587
588 return 0;
589}
590
591static const struct udevice_id mcffec_ids[] = {
592 { .compatible = "fsl,mcf-fec" },
593 { }
594};
595
596U_BOOT_DRIVER(mcffec) = {
597 .name = "mcffec",
598 .id = UCLASS_ETH,
599 .of_match = mcffec_ids,
Simon Glassd1998a92020-12-03 16:55:21 -0700600 .of_to_plat = mcffec_of_to_plat,
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100601 .probe = mcffec_probe,
602 .remove = mcffec_remove,
603 .ops = &mcffec_ops,
Simon Glass41575d82020-12-03 16:55:17 -0700604 .priv_auto = sizeof(struct fec_info_s),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700605 .plat_auto = sizeof(struct eth_pdata),
Angelo Durgehelloa7bcace2019-11-15 23:54:18 +0100606};