blob: 7c4b210b00111070b4b037cb944a4e1481969bd1 [file] [log] [blame]
TsiChung Liew8e585f02007-06-18 13:50:13 -05001/*
2 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
TsiChungLiewf2208fb2007-07-05 23:13:58 -05005 * (C) Copyright 2007 Freescale Semiconductor, Inc.
TsiChung Liew8e585f02007-06-18 13:50:13 -05006 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
TsiChung Liew8e585f02007-06-18 13:50:13 -05009 */
10
11#include <common.h>
12#include <malloc.h>
13
TsiChung Liew8e585f02007-06-18 13:50:13 -050014#include <command.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050015#include <net.h>
Ben Warren89973f82008-08-31 22:22:04 -070016#include <netdev.h>
TsiChung Liew8e585f02007-06-18 13:50:13 -050017#include <miiphy.h>
18
TsiChung Liew54bdcc92008-10-23 16:27:24 +000019#include <asm/fec.h>
20#include <asm/immap.h>
21
TsiChung Liew8e585f02007-06-18 13:50:13 -050022#undef ET_DEBUG
23#undef MII_DEBUG
24
25/* Ethernet Transmit and Receive Buffers */
TsiChungLiewf2208fb2007-07-05 23:13:58 -050026#define DBUF_LENGTH 1520
27#define TX_BUF_CNT 2
TsiChung Liew8e585f02007-06-18 13:50:13 -050028#define PKT_MAXBUF_SIZE 1518
29#define PKT_MINBUF_SIZE 64
30#define PKT_MAXBLR_SIZE 1520
31#define LAST_PKTBUFSRX PKTBUFSRX - 1
32#define BD_ENET_RX_W_E (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY)
33#define BD_ENET_TX_RDY_LST (BD_ENET_TX_READY | BD_ENET_TX_LAST)
34
35DECLARE_GLOBAL_DATA_PTR;
36
TsiChung Liew8e585f02007-06-18 13:50:13 -050037struct fec_info_s fec_info[] = {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038#ifdef CONFIG_SYS_FEC0_IOBASE
TsiChung Liew8e585f02007-06-18 13:50:13 -050039 {
40 0, /* index */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041 CONFIG_SYS_FEC0_IOBASE, /* io base */
42 CONFIG_SYS_FEC0_PINMUX, /* gpio pin muxing */
43 CONFIG_SYS_FEC0_MIIBASE, /* mii base */
TsiChung Liew8e585f02007-06-18 13:50:13 -050044 -1, /* phy_addr */
45 0, /* duplex and speed */
46 0, /* phy name */
47 0, /* phyname init */
48 0, /* RX BD */
49 0, /* TX BD */
50 0, /* rx Index */
51 0, /* tx Index */
52 0, /* tx buffer */
53 0, /* initialized flag */
TsiChung Liew1803f7f2008-08-19 21:26:32 +000054 (struct fec_info_s *)-1,
TsiChung Liew8e585f02007-06-18 13:50:13 -050055 },
56#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057#ifdef CONFIG_SYS_FEC1_IOBASE
TsiChung Liew8e585f02007-06-18 13:50:13 -050058 {
59 1, /* index */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060 CONFIG_SYS_FEC1_IOBASE, /* io base */
61 CONFIG_SYS_FEC1_PINMUX, /* gpio pin muxing */
62 CONFIG_SYS_FEC1_MIIBASE, /* mii base */
TsiChung Liew8e585f02007-06-18 13:50:13 -050063 -1, /* phy_addr */
64 0, /* duplex and speed */
65 0, /* phy name */
66 0, /* phy name init */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067#ifdef CONFIG_SYS_FEC_BUF_USE_SRAM
TsiChung Liew1803f7f2008-08-19 21:26:32 +000068 (cbd_t *)DBUF_LENGTH, /* RX BD */
69#else
TsiChung Liew8e585f02007-06-18 13:50:13 -050070 0, /* RX BD */
TsiChung Liew1803f7f2008-08-19 21:26:32 +000071#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -050072 0, /* TX BD */
73 0, /* rx Index */
74 0, /* tx Index */
75 0, /* tx buffer */
76 0, /* initialized flag */
TsiChung Liew1803f7f2008-08-19 21:26:32 +000077 (struct fec_info_s *)-1,
TsiChung Liew8e585f02007-06-18 13:50:13 -050078 }
79#endif
80};
81
TsiChung Liew8e585f02007-06-18 13:50:13 -050082int fec_recv(struct eth_device *dev);
83int fec_init(struct eth_device *dev, bd_t * bd);
84void fec_halt(struct eth_device *dev);
85void fec_reset(struct eth_device *dev);
86
TsiChung Liew8e585f02007-06-18 13:50:13 -050087void setFecDuplexSpeed(volatile fec_t * fecp, bd_t * bd, int dup_spd)
88{
89 if ((dup_spd >> 16) == FULL) {
90 /* Set maximum frame length */
91 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) | FEC_RCR_MII_MODE |
92 FEC_RCR_PROM | 0x100;
93 fecp->tcr = FEC_TCR_FDEN;
94 } else {
95 /* Half duplex mode */
96 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) |
97 FEC_RCR_MII_MODE | FEC_RCR_DRT;
98 fecp->tcr &= ~FEC_TCR_FDEN;
99 }
100
101 if ((dup_spd & 0xFFFF) == _100BASET) {
TsiChung Liewff36fbb2008-05-28 13:06:25 -0500102#ifdef CONFIG_MCF5445x
103 fecp->rcr &= ~0x200; /* disabled 10T base */
104#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500105#ifdef MII_DEBUG
106 printf("100Mbps\n");
107#endif
108 bd->bi_ethspeed = 100;
109 } else {
TsiChung Liewff36fbb2008-05-28 13:06:25 -0500110#ifdef CONFIG_MCF5445x
111 fecp->rcr |= 0x200; /* enabled 10T base */
112#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500113#ifdef MII_DEBUG
114 printf("10Mbps\n");
115#endif
116 bd->bi_ethspeed = 10;
117 }
118}
119
Joe Hershberger10cbe3b2012-05-22 18:36:19 +0000120static int fec_send(struct eth_device *dev, void *packet, int length)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500121{
122 struct fec_info_s *info = dev->priv;
123 volatile fec_t *fecp = (fec_t *) (info->iobase);
124 int j, rc;
125 u16 phyStatus;
126
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500127 miiphy_read(dev->name, info->phy_addr, MII_BMSR, &phyStatus);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500128
129 /* section 16.9.23.3
130 * Wait for ready
131 */
132 j = 0;
133 while ((info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_READY) &&
134 (j < MCFFEC_TOUT_LOOP)) {
135 udelay(1);
136 j++;
137 }
138 if (j >= MCFFEC_TOUT_LOOP) {
139 printf("TX not ready\n");
140 }
TsiChung0dca8742007-07-10 15:45:43 -0500141
TsiChung Liew8e585f02007-06-18 13:50:13 -0500142 info->txbd[info->txIdx].cbd_bufaddr = (uint) packet;
143 info->txbd[info->txIdx].cbd_datlen = length;
144 info->txbd[info->txIdx].cbd_sc |= BD_ENET_TX_RDY_LST;
145
146 /* Activate transmit Buffer Descriptor polling */
147 fecp->tdar = 0x01000000; /* Descriptor polling active */
148
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#ifndef CONFIG_SYS_FEC_BUF_USE_SRAM
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000150 /*
151 * FEC unable to initial transmit data packet.
Tsi-Chung Liewf6054792008-03-17 17:08:16 -0500152 * A nop will ensure the descriptor polling active completed.
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000153 * CF Internal RAM has shorter cycle access than DRAM. If use
154 * DRAM as Buffer descriptor and data, a nop is a must.
155 * Affect only V2 and V3.
Tsi-Chung Liewf6054792008-03-17 17:08:16 -0500156 */
Tsi-Chung Liewf6054792008-03-17 17:08:16 -0500157 __asm__ ("nop");
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000158
Tsi-Chung Liewf6054792008-03-17 17:08:16 -0500159#endif
160
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161#ifdef CONFIG_SYS_UNIFY_CACHE
TsiChungLiewf2208fb2007-07-05 23:13:58 -0500162 icache_invalid();
163#endif
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000164
TsiChung0dca8742007-07-10 15:45:43 -0500165 j = 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500166 while ((info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_READY) &&
167 (j < MCFFEC_TOUT_LOOP)) {
168 udelay(1);
169 j++;
170 }
171 if (j >= MCFFEC_TOUT_LOOP) {
172 printf("TX timeout\n");
173 }
TsiChung0dca8742007-07-10 15:45:43 -0500174
TsiChung Liew8e585f02007-06-18 13:50:13 -0500175#ifdef ET_DEBUG
176 printf("%s[%d] %s: cycles: %d status: %x retry cnt: %d\n",
177 __FILE__, __LINE__, __FUNCTION__, j,
178 info->txbd[info->txIdx].cbd_sc,
179 (info->txbd[info->txIdx].cbd_sc & 0x003C) >> 2);
180#endif
181
TsiChung0dca8742007-07-10 15:45:43 -0500182 /* return only status bits */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500183 rc = (info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_STATS);
184 info->txIdx = (info->txIdx + 1) % TX_BUF_CNT;
185
186 return rc;
187}
188
189int fec_recv(struct eth_device *dev)
190{
191 struct fec_info_s *info = dev->priv;
192 volatile fec_t *fecp = (fec_t *) (info->iobase);
193 int length;
194
195 for (;;) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196#ifndef CONFIG_SYS_FEC_BUF_USE_SRAM
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000197#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#ifdef CONFIG_SYS_UNIFY_CACHE
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200199 icache_invalid();
TsiChung0dca8742007-07-10 15:45:43 -0500200#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500201 /* section 16.9.23.2 */
202 if (info->rxbd[info->rxIdx].cbd_sc & BD_ENET_RX_EMPTY) {
203 length = -1;
204 break; /* nothing received - leave for() loop */
205 }
206
207 length = info->rxbd[info->rxIdx].cbd_datlen;
208
209 if (info->rxbd[info->rxIdx].cbd_sc & 0x003f) {
210 printf("%s[%d] err: %x\n",
211 __FUNCTION__, __LINE__,
212 info->rxbd[info->rxIdx].cbd_sc);
213#ifdef ET_DEBUG
214 printf("%s[%d] err: %x\n",
215 __FUNCTION__, __LINE__,
216 info->rxbd[info->rxIdx].cbd_sc);
217#endif
218 } else {
219
220 length -= 4;
221 /* Pass the packet up to the protocol layers. */
222 NetReceive(NetRxPackets[info->rxIdx], length);
223
224 fecp->eir |= FEC_EIR_RXF;
225 }
226
227 /* Give the buffer back to the FEC. */
228 info->rxbd[info->rxIdx].cbd_datlen = 0;
229
230 /* wrap around buffer index when necessary */
231 if (info->rxIdx == LAST_PKTBUFSRX) {
232 info->rxbd[PKTBUFSRX - 1].cbd_sc = BD_ENET_RX_W_E;
233 info->rxIdx = 0;
234 } else {
235 info->rxbd[info->rxIdx].cbd_sc = BD_ENET_RX_EMPTY;
236 info->rxIdx++;
237 }
238
239 /* Try to fill Buffer Descriptors */
240 fecp->rdar = 0x01000000; /* Descriptor polling active */
241 }
242
243 return length;
244}
245
TsiChung Liew8e585f02007-06-18 13:50:13 -0500246#ifdef ET_DEBUG
247void dbgFecRegs(struct eth_device *dev)
248{
249 struct fec_info_s *info = dev->priv;
250 volatile fec_t *fecp = (fec_t *) (info->iobase);
251
252 printf("=====\n");
253 printf("ievent %x - %x\n", (int)&fecp->eir, fecp->eir);
254 printf("imask %x - %x\n", (int)&fecp->eimr, fecp->eimr);
255 printf("r_des_active %x - %x\n", (int)&fecp->rdar, fecp->rdar);
256 printf("x_des_active %x - %x\n", (int)&fecp->tdar, fecp->tdar);
257 printf("ecntrl %x - %x\n", (int)&fecp->ecr, fecp->ecr);
258 printf("mii_mframe %x - %x\n", (int)&fecp->mmfr, fecp->mmfr);
259 printf("mii_speed %x - %x\n", (int)&fecp->mscr, fecp->mscr);
260 printf("mii_ctrlstat %x - %x\n", (int)&fecp->mibc, fecp->mibc);
261 printf("r_cntrl %x - %x\n", (int)&fecp->rcr, fecp->rcr);
262 printf("x_cntrl %x - %x\n", (int)&fecp->tcr, fecp->tcr);
263 printf("padr_l %x - %x\n", (int)&fecp->palr, fecp->palr);
264 printf("padr_u %x - %x\n", (int)&fecp->paur, fecp->paur);
265 printf("op_pause %x - %x\n", (int)&fecp->opd, fecp->opd);
266 printf("iadr_u %x - %x\n", (int)&fecp->iaur, fecp->iaur);
267 printf("iadr_l %x - %x\n", (int)&fecp->ialr, fecp->ialr);
268 printf("gadr_u %x - %x\n", (int)&fecp->gaur, fecp->gaur);
269 printf("gadr_l %x - %x\n", (int)&fecp->galr, fecp->galr);
270 printf("x_wmrk %x - %x\n", (int)&fecp->tfwr, fecp->tfwr);
271 printf("r_bound %x - %x\n", (int)&fecp->frbr, fecp->frbr);
272 printf("r_fstart %x - %x\n", (int)&fecp->frsr, fecp->frsr);
273 printf("r_drng %x - %x\n", (int)&fecp->erdsr, fecp->erdsr);
274 printf("x_drng %x - %x\n", (int)&fecp->etdsr, fecp->etdsr);
275 printf("r_bufsz %x - %x\n", (int)&fecp->emrbr, fecp->emrbr);
276
277 printf("\n");
278 printf("rmon_t_drop %x - %x\n", (int)&fecp->rmon_t_drop,
279 fecp->rmon_t_drop);
280 printf("rmon_t_packets %x - %x\n", (int)&fecp->rmon_t_packets,
281 fecp->rmon_t_packets);
282 printf("rmon_t_bc_pkt %x - %x\n", (int)&fecp->rmon_t_bc_pkt,
283 fecp->rmon_t_bc_pkt);
284 printf("rmon_t_mc_pkt %x - %x\n", (int)&fecp->rmon_t_mc_pkt,
285 fecp->rmon_t_mc_pkt);
286 printf("rmon_t_crc_align %x - %x\n", (int)&fecp->rmon_t_crc_align,
287 fecp->rmon_t_crc_align);
288 printf("rmon_t_undersize %x - %x\n", (int)&fecp->rmon_t_undersize,
289 fecp->rmon_t_undersize);
290 printf("rmon_t_oversize %x - %x\n", (int)&fecp->rmon_t_oversize,
291 fecp->rmon_t_oversize);
292 printf("rmon_t_frag %x - %x\n", (int)&fecp->rmon_t_frag,
293 fecp->rmon_t_frag);
294 printf("rmon_t_jab %x - %x\n", (int)&fecp->rmon_t_jab,
295 fecp->rmon_t_jab);
296 printf("rmon_t_col %x - %x\n", (int)&fecp->rmon_t_col,
297 fecp->rmon_t_col);
298 printf("rmon_t_p64 %x - %x\n", (int)&fecp->rmon_t_p64,
299 fecp->rmon_t_p64);
300 printf("rmon_t_p65to127 %x - %x\n", (int)&fecp->rmon_t_p65to127,
301 fecp->rmon_t_p65to127);
302 printf("rmon_t_p128to255 %x - %x\n", (int)&fecp->rmon_t_p128to255,
303 fecp->rmon_t_p128to255);
304 printf("rmon_t_p256to511 %x - %x\n", (int)&fecp->rmon_t_p256to511,
305 fecp->rmon_t_p256to511);
306 printf("rmon_t_p512to1023 %x - %x\n", (int)&fecp->rmon_t_p512to1023,
307 fecp->rmon_t_p512to1023);
308 printf("rmon_t_p1024to2047 %x - %x\n", (int)&fecp->rmon_t_p1024to2047,
309 fecp->rmon_t_p1024to2047);
310 printf("rmon_t_p_gte2048 %x - %x\n", (int)&fecp->rmon_t_p_gte2048,
311 fecp->rmon_t_p_gte2048);
312 printf("rmon_t_octets %x - %x\n", (int)&fecp->rmon_t_octets,
313 fecp->rmon_t_octets);
314
315 printf("\n");
316 printf("ieee_t_drop %x - %x\n", (int)&fecp->ieee_t_drop,
317 fecp->ieee_t_drop);
318 printf("ieee_t_frame_ok %x - %x\n", (int)&fecp->ieee_t_frame_ok,
319 fecp->ieee_t_frame_ok);
320 printf("ieee_t_1col %x - %x\n", (int)&fecp->ieee_t_1col,
321 fecp->ieee_t_1col);
322 printf("ieee_t_mcol %x - %x\n", (int)&fecp->ieee_t_mcol,
323 fecp->ieee_t_mcol);
324 printf("ieee_t_def %x - %x\n", (int)&fecp->ieee_t_def,
325 fecp->ieee_t_def);
326 printf("ieee_t_lcol %x - %x\n", (int)&fecp->ieee_t_lcol,
327 fecp->ieee_t_lcol);
328 printf("ieee_t_excol %x - %x\n", (int)&fecp->ieee_t_excol,
329 fecp->ieee_t_excol);
330 printf("ieee_t_macerr %x - %x\n", (int)&fecp->ieee_t_macerr,
331 fecp->ieee_t_macerr);
332 printf("ieee_t_cserr %x - %x\n", (int)&fecp->ieee_t_cserr,
333 fecp->ieee_t_cserr);
334 printf("ieee_t_sqe %x - %x\n", (int)&fecp->ieee_t_sqe,
335 fecp->ieee_t_sqe);
336 printf("ieee_t_fdxfc %x - %x\n", (int)&fecp->ieee_t_fdxfc,
337 fecp->ieee_t_fdxfc);
338 printf("ieee_t_octets_ok %x - %x\n", (int)&fecp->ieee_t_octets_ok,
339 fecp->ieee_t_octets_ok);
340
341 printf("\n");
342 printf("rmon_r_drop %x - %x\n", (int)&fecp->rmon_r_drop,
343 fecp->rmon_r_drop);
344 printf("rmon_r_packets %x - %x\n", (int)&fecp->rmon_r_packets,
345 fecp->rmon_r_packets);
346 printf("rmon_r_bc_pkt %x - %x\n", (int)&fecp->rmon_r_bc_pkt,
347 fecp->rmon_r_bc_pkt);
348 printf("rmon_r_mc_pkt %x - %x\n", (int)&fecp->rmon_r_mc_pkt,
349 fecp->rmon_r_mc_pkt);
350 printf("rmon_r_crc_align %x - %x\n", (int)&fecp->rmon_r_crc_align,
351 fecp->rmon_r_crc_align);
352 printf("rmon_r_undersize %x - %x\n", (int)&fecp->rmon_r_undersize,
353 fecp->rmon_r_undersize);
354 printf("rmon_r_oversize %x - %x\n", (int)&fecp->rmon_r_oversize,
355 fecp->rmon_r_oversize);
356 printf("rmon_r_frag %x - %x\n", (int)&fecp->rmon_r_frag,
357 fecp->rmon_r_frag);
358 printf("rmon_r_jab %x - %x\n", (int)&fecp->rmon_r_jab,
359 fecp->rmon_r_jab);
360 printf("rmon_r_p64 %x - %x\n", (int)&fecp->rmon_r_p64,
361 fecp->rmon_r_p64);
362 printf("rmon_r_p65to127 %x - %x\n", (int)&fecp->rmon_r_p65to127,
363 fecp->rmon_r_p65to127);
364 printf("rmon_r_p128to255 %x - %x\n", (int)&fecp->rmon_r_p128to255,
365 fecp->rmon_r_p128to255);
366 printf("rmon_r_p256to511 %x - %x\n", (int)&fecp->rmon_r_p256to511,
367 fecp->rmon_r_p256to511);
368 printf("rmon_r_p512to1023 %x - %x\n", (int)&fecp->rmon_r_p512to1023,
369 fecp->rmon_r_p512to1023);
370 printf("rmon_r_p1024to2047 %x - %x\n", (int)&fecp->rmon_r_p1024to2047,
371 fecp->rmon_r_p1024to2047);
372 printf("rmon_r_p_gte2048 %x - %x\n", (int)&fecp->rmon_r_p_gte2048,
373 fecp->rmon_r_p_gte2048);
374 printf("rmon_r_octets %x - %x\n", (int)&fecp->rmon_r_octets,
375 fecp->rmon_r_octets);
376
377 printf("\n");
378 printf("ieee_r_drop %x - %x\n", (int)&fecp->ieee_r_drop,
379 fecp->ieee_r_drop);
380 printf("ieee_r_frame_ok %x - %x\n", (int)&fecp->ieee_r_frame_ok,
381 fecp->ieee_r_frame_ok);
382 printf("ieee_r_crc %x - %x\n", (int)&fecp->ieee_r_crc,
383 fecp->ieee_r_crc);
384 printf("ieee_r_align %x - %x\n", (int)&fecp->ieee_r_align,
385 fecp->ieee_r_align);
386 printf("ieee_r_macerr %x - %x\n", (int)&fecp->ieee_r_macerr,
387 fecp->ieee_r_macerr);
388 printf("ieee_r_fdxfc %x - %x\n", (int)&fecp->ieee_r_fdxfc,
389 fecp->ieee_r_fdxfc);
390 printf("ieee_r_octets_ok %x - %x\n", (int)&fecp->ieee_r_octets_ok,
391 fecp->ieee_r_octets_ok);
392
393 printf("\n\n\n");
394}
395#endif
396
397int fec_init(struct eth_device *dev, bd_t * bd)
398{
399 struct fec_info_s *info = dev->priv;
400 volatile fec_t *fecp = (fec_t *) (info->iobase);
401 int i;
Mike Frysingerd3f87142009-02-11 19:01:26 -0500402 uchar ea[6];
TsiChung Liew8e585f02007-06-18 13:50:13 -0500403
404 fecpin_setclear(dev, 1);
405
406 fec_reset(dev);
407
TsiChungLiewab77bc52007-08-15 15:39:17 -0500408#if defined(CONFIG_CMD_MII) || defined (CONFIG_MII) || \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409 defined (CONFIG_SYS_DISCOVER_PHY)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500410
411 mii_init();
412
413 setFecDuplexSpeed(fecp, bd, info->dup_spd);
414#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200415#ifndef CONFIG_SYS_DISCOVER_PHY
TsiChung Liew8e585f02007-06-18 13:50:13 -0500416 setFecDuplexSpeed(fecp, bd, (FECDUPLEX << 16) | FECSPEED);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200417#endif /* ifndef CONFIG_SYS_DISCOVER_PHY */
TsiChungLiewab77bc52007-08-15 15:39:17 -0500418#endif /* CONFIG_CMD_MII || CONFIG_MII */
TsiChung Liew8e585f02007-06-18 13:50:13 -0500419
420 /* We use strictly polling mode only */
421 fecp->eimr = 0;
422
423 /* Clear any pending interrupt */
424 fecp->eir = 0xffffffff;
425
426 /* Set station address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200427 if ((u32) fecp == CONFIG_SYS_FEC0_IOBASE) {
428#ifdef CONFIG_SYS_FEC1_IOBASE
429 volatile fec_t *fecp1 = (fec_t *) (CONFIG_SYS_FEC1_IOBASE);
Mike Frysingerd3f87142009-02-11 19:01:26 -0500430 eth_getenv_enetaddr("eth1addr", ea);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500431 fecp1->palr =
432 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
433 fecp1->paur = (ea[4] << 24) | (ea[5] << 16);
434#endif
Mike Frysingerd3f87142009-02-11 19:01:26 -0500435 eth_getenv_enetaddr("ethaddr", ea);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500436 fecp->palr =
437 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
438 fecp->paur = (ea[4] << 24) | (ea[5] << 16);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500439 } else {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200440#ifdef CONFIG_SYS_FEC0_IOBASE
441 volatile fec_t *fecp0 = (fec_t *) (CONFIG_SYS_FEC0_IOBASE);
Mike Frysingerd3f87142009-02-11 19:01:26 -0500442 eth_getenv_enetaddr("ethaddr", ea);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500443 fecp0->palr =
444 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
445 fecp0->paur = (ea[4] << 24) | (ea[5] << 16);
446#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200447#ifdef CONFIG_SYS_FEC1_IOBASE
Mike Frysingerd3f87142009-02-11 19:01:26 -0500448 eth_getenv_enetaddr("eth1addr", ea);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500449 fecp->palr =
450 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
451 fecp->paur = (ea[4] << 24) | (ea[5] << 16);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500452#endif
453 }
454
TsiChung Liew8e585f02007-06-18 13:50:13 -0500455 /* Clear unicast address hash table */
456 fecp->iaur = 0;
457 fecp->ialr = 0;
458
459 /* Clear multicast address hash table */
460 fecp->gaur = 0;
461 fecp->galr = 0;
462
463 /* Set maximum receive buffer size. */
464 fecp->emrbr = PKT_MAXBLR_SIZE;
465
466 /*
467 * Setup Buffers and Buffer Desriptors
468 */
469 info->rxIdx = 0;
470 info->txIdx = 0;
471
472 /*
473 * Setup Receiver Buffer Descriptors (13.14.24.18)
474 * Settings:
475 * Empty, Wrap
476 */
477 for (i = 0; i < PKTBUFSRX; i++) {
478 info->rxbd[i].cbd_sc = BD_ENET_RX_EMPTY;
479 info->rxbd[i].cbd_datlen = 0; /* Reset */
480 info->rxbd[i].cbd_bufaddr = (uint) NetRxPackets[i];
481 }
482 info->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP;
483
484 /*
485 * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19)
486 * Settings:
487 * Last, Tx CRC
488 */
489 for (i = 0; i < TX_BUF_CNT; i++) {
490 info->txbd[i].cbd_sc = BD_ENET_TX_LAST | BD_ENET_TX_TC;
491 info->txbd[i].cbd_datlen = 0; /* Reset */
492 info->txbd[i].cbd_bufaddr = (uint) (&info->txbuf[0]);
493 }
494 info->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP;
495
496 /* Set receive and transmit descriptor base */
497 fecp->erdsr = (unsigned int)(&info->rxbd[0]);
498 fecp->etdsr = (unsigned int)(&info->txbd[0]);
499
500 /* Now enable the transmit and receive processing */
501 fecp->ecr |= FEC_ECR_ETHER_EN;
502
503 /* And last, try to fill Rx Buffer Descriptors */
504 fecp->rdar = 0x01000000; /* Descriptor polling active */
505
506 return 1;
507}
508
509void fec_reset(struct eth_device *dev)
510{
511 struct fec_info_s *info = dev->priv;
512 volatile fec_t *fecp = (fec_t *) (info->iobase);
513 int i;
514
515 fecp->ecr = FEC_ECR_RESET;
516 for (i = 0; (fecp->ecr & FEC_ECR_RESET) && (i < FEC_RESET_DELAY); ++i) {
517 udelay(1);
518 }
519 if (i == FEC_RESET_DELAY) {
520 printf("FEC_RESET_DELAY timeout\n");
521 }
522}
523
524void fec_halt(struct eth_device *dev)
525{
526 struct fec_info_s *info = dev->priv;
527
528 fec_reset(dev);
529
530 fecpin_setclear(dev, 0);
531
532 info->rxIdx = info->txIdx = 0;
533 memset(info->rxbd, 0, PKTBUFSRX * sizeof(cbd_t));
534 memset(info->txbd, 0, TX_BUF_CNT * sizeof(cbd_t));
535 memset(info->txbuf, 0, DBUF_LENGTH);
536}
537
538int mcffec_initialize(bd_t * bis)
539{
540 struct eth_device *dev;
541 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200542#ifdef CONFIG_SYS_FEC_BUF_USE_SRAM
543 u32 tmp = CONFIG_SYS_INIT_RAM_ADDR + 0x1000;
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000544#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500545
Axel Lina62cd292013-07-03 11:24:18 +0800546 for (i = 0; i < ARRAY_SIZE(fec_info); i++) {
TsiChung Liew8e585f02007-06-18 13:50:13 -0500547
TsiChungLiewf2208fb2007-07-05 23:13:58 -0500548 dev =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200549 (struct eth_device *)memalign(CONFIG_SYS_CACHELINE_SIZE,
TsiChungLiewf2208fb2007-07-05 23:13:58 -0500550 sizeof *dev);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500551 if (dev == NULL)
552 hang();
553
554 memset(dev, 0, sizeof(*dev));
555
556 sprintf(dev->name, "FEC%d", fec_info[i].index);
557
558 dev->priv = &fec_info[i];
559 dev->init = fec_init;
560 dev->halt = fec_halt;
561 dev->send = fec_send;
562 dev->recv = fec_recv;
563
564 /* setup Receive and Transmit buffer descriptor */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200565#ifdef CONFIG_SYS_FEC_BUF_USE_SRAM
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000566 fec_info[i].rxbd = (cbd_t *)((u32)fec_info[i].rxbd + tmp);
567 tmp = (u32)fec_info[i].rxbd;
568 fec_info[i].txbd =
569 (cbd_t *)((u32)fec_info[i].txbd + tmp +
570 (PKTBUFSRX * sizeof(cbd_t)));
571 tmp = (u32)fec_info[i].txbd;
572 fec_info[i].txbuf =
573 (char *)((u32)fec_info[i].txbuf + tmp +
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200574 (CONFIG_SYS_TX_ETH_BUFFER * sizeof(cbd_t)));
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000575 tmp = (u32)fec_info[i].txbuf;
576#else
TsiChung Liew8e585f02007-06-18 13:50:13 -0500577 fec_info[i].rxbd =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200578 (cbd_t *) memalign(CONFIG_SYS_CACHELINE_SIZE,
TsiChungLiewf2208fb2007-07-05 23:13:58 -0500579 (PKTBUFSRX * sizeof(cbd_t)));
TsiChung Liew8e585f02007-06-18 13:50:13 -0500580 fec_info[i].txbd =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200581 (cbd_t *) memalign(CONFIG_SYS_CACHELINE_SIZE,
TsiChungLiewf2208fb2007-07-05 23:13:58 -0500582 (TX_BUF_CNT * sizeof(cbd_t)));
583 fec_info[i].txbuf =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200584 (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, DBUF_LENGTH);
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000585#endif
586
TsiChung Liew8e585f02007-06-18 13:50:13 -0500587#ifdef ET_DEBUG
588 printf("rxbd %x txbd %x\n",
589 (int)fec_info[i].rxbd, (int)fec_info[i].txbd);
590#endif
591
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200592 fec_info[i].phy_name = (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, 32);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500593
594 eth_register(dev);
595
TsiChungLiewab77bc52007-08-15 15:39:17 -0500596#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500597 miiphy_register(dev->name,
598 mcffec_miiphy_read, mcffec_miiphy_write);
599#endif
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000600 if (i > 0)
601 fec_info[i - 1].next = &fec_info[i];
TsiChung Liew8e585f02007-06-18 13:50:13 -0500602 }
TsiChung Liew1803f7f2008-08-19 21:26:32 +0000603 fec_info[i - 1].next = &fec_info[0];
TsiChung Liew8e585f02007-06-18 13:50:13 -0500604
605 /* default speed */
606 bis->bi_ethspeed = 10;
607
Ben Warren86882b82008-08-26 22:16:25 -0700608 return 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500609}