1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2004
6 * (C) Copyright 2007 Freescale Semiconductor, Inc.
21 #include <asm/global_data.h>
22 #include <asm/immap.h>
23 #include <linux/delay.h>
24 #include <linux/mii.h>
29 /* Ethernet Transmit and Receive Buffers */
30 #define DBUF_LENGTH 1520
32 #define PKT_MAXBUF_SIZE 1518
33 #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)
38 DECLARE_GLOBAL_DATA_PTR;
40 static void init_eth_info(struct fec_info_s *info)
42 #ifdef CFG_SYS_FEC_BUF_USE_SRAM
46 tmp = CFG_SYS_INIT_RAM_ADDR + 0x1000;
48 info->rxbd = (cbd_t *)DBUF_LENGTH;
50 /* setup Receive and Transmit buffer descriptor */
51 info->rxbd = (cbd_t *)((u32)info->rxbd + tmp);
52 tmp = (u32)info->rxbd;
54 (cbd_t *)((u32)info->txbd + tmp +
55 (PKTBUFSRX * sizeof(cbd_t)));
56 tmp = (u32)info->txbd;
58 (char *)((u32)info->txbuf + tmp +
59 (CFG_SYS_TX_ETH_BUFFER * sizeof(cbd_t)));
60 tmp = (u32)info->txbuf;
63 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
64 (PKTBUFSRX * sizeof(cbd_t)));
66 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
67 (TX_BUF_CNT * sizeof(cbd_t)));
69 (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, DBUF_LENGTH);
73 printf("rxbd %x txbd %x\n", (int)info->rxbd, (int)info->txbd);
75 info->phy_name = (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, 32);
78 static void fec_reset(struct fec_info_s *info)
80 volatile fec_t *fecp = (fec_t *)(info->iobase);
83 fecp->ecr = FEC_ECR_RESET;
84 for (i = 0; (fecp->ecr & FEC_ECR_RESET) && (i < FEC_RESET_DELAY); ++i)
87 if (i == FEC_RESET_DELAY)
88 printf("FEC_RESET_DELAY timeout\n");
91 static void set_fec_duplex_speed(volatile fec_t *fecp, int dup_spd)
93 struct bd_info *bd = gd->bd;
95 if ((dup_spd >> 16) == FULL) {
96 /* Set maximum frame length */
97 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) | FEC_RCR_MII_MODE |
99 fecp->tcr = FEC_TCR_FDEN;
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;
107 if ((dup_spd & 0xFFFF) == _100BASET) {
111 bd->bi_ethspeed = 100;
116 bd->bi_ethspeed = 10;
121 static void dbg_fec_regs(struct udevice *dev)
123 struct fec_info_s *info = dev_get_priv(dev);
124 volatile fec_t *fecp = (fec_t *)(info->iobase);
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);
152 printf("rmon_t_drop %x - %x\n", (int)&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,
168 printf("rmon_t_jab %x - %x\n", (int)&fecp->rmon_t_jab,
170 printf("rmon_t_col %x - %x\n", (int)&fecp->rmon_t_col,
172 printf("rmon_t_p64 %x - %x\n", (int)&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);
190 printf("ieee_t_drop %x - %x\n", (int)&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,
196 printf("ieee_t_mcol %x - %x\n", (int)&fecp->ieee_t_mcol,
198 printf("ieee_t_def %x - %x\n", (int)&fecp->ieee_t_def,
200 printf("ieee_t_lcol %x - %x\n", (int)&fecp->ieee_t_lcol,
202 printf("ieee_t_excol %x - %x\n", (int)&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,
208 printf("ieee_t_sqe %x - %x\n", (int)&fecp->ieee_t_sqe,
210 printf("ieee_t_fdxfc %x - %x\n", (int)&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);
216 printf("rmon_r_drop %x - %x\n", (int)&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,
232 printf("rmon_r_jab %x - %x\n", (int)&fecp->rmon_r_jab,
234 printf("rmon_r_p64 %x - %x\n", (int)&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);
252 printf("ieee_r_drop %x - %x\n", (int)&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,
258 printf("ieee_r_align %x - %x\n", (int)&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,
264 printf("ieee_r_octets_ok %x - %x\n", (int)&fecp->ieee_r_octets_ok,
265 fecp->ieee_r_octets_ok);
271 int mcffec_init(struct udevice *dev)
273 struct fec_info_s *info = dev_get_priv(dev);
274 volatile fec_t *fecp = (fec_t *) (info->iobase);
278 fecpin_setclear(info, 1);
283 set_fec_duplex_speed(fecp, info->dup_spd);
285 /* We use strictly polling mode only */
288 /* Clear any pending interrupt */
289 fecp->eir = 0xffffffff;
291 /* Set station address */
292 if (info->index == 0)
293 rval = eth_env_get_enetaddr("ethaddr", ea);
295 rval = eth_env_get_enetaddr("eth1addr", ea);
298 puts("Please set a valid MAC address\n");
303 (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]);
304 fecp->paur = (ea[4] << 24) | (ea[5] << 16);
306 /* Clear unicast address hash table */
310 /* Clear multicast address hash table */
314 /* Set maximum receive buffer size. */
315 fecp->emrbr = PKT_MAXBLR_SIZE;
318 * Setup Buffers and Buffer Descriptors
324 * Setup Receiver Buffer Descriptors (13.14.24.18)
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 */
331 info->rxbd[i].cbd_bufaddr = (uint) net_rx_packets[i];
333 info->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP;
336 * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19)
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]);
345 info->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP;
347 /* Set receive and transmit descriptor base */
348 fecp->erdsr = (unsigned int)(&info->rxbd[0]);
349 fecp->etdsr = (unsigned int)(&info->txbd[0]);
351 /* Now enable the transmit and receive processing */
352 fecp->ecr |= FEC_ECR_ETHER_EN;
354 /* And last, try to fill Rx Buffer Descriptors
355 * Descriptor polling active
357 fecp->rdar = 0x01000000;
362 static int mcffec_send(struct udevice *dev, void *packet, int length)
364 struct fec_info_s *info = dev_get_priv(dev);
365 volatile fec_t *fecp = (fec_t *)info->iobase;
369 miiphy_read(dev->name, info->phy_addr, MII_BMSR, &phy_status);
375 while ((info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_READY) &&
376 (j < info->to_loop)) {
380 if (j >= info->to_loop)
381 printf("TX not ready\n");
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;
387 /* Activate transmit Buffer Descriptor polling */
388 fecp->tdar = 0x01000000; /* Descriptor polling active */
390 #ifndef CFG_SYS_FEC_BUF_USE_SRAM
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.
401 #ifdef CONFIG_SYS_UNIFY_CACHE
406 while ((info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_READY) &&
407 (j < info->to_loop)) {
411 if (j >= info->to_loop)
412 printf("TX timeout\n");
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);
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;
428 static int mcffec_recv(struct udevice *dev, int flags, uchar **packetp)
430 struct fec_info_s *info = dev_get_priv(dev);
431 volatile fec_t *fecp = (fec_t *)info->iobase;
435 #ifdef CONFIG_SYS_UNIFY_CACHE
438 /* If nothing received - leave for() loop */
439 if (info->rxbd[info->rx_idx].cbd_sc & BD_ENET_RX_EMPTY)
442 length = info->rxbd[info->rx_idx].cbd_datlen;
444 if (info->rxbd[info->rx_idx].cbd_sc & 0x003f) {
445 printf("%s[%d] err: %x\n",
447 info->rxbd[info->rx_idx].cbd_sc);
452 * Pass the buffer ptr up to the protocol layers.
454 *packetp = net_rx_packets[info->rx_idx];
456 fecp->eir |= FEC_EIR_RXF;
459 /* Give the buffer back to the FEC. */
460 info->rxbd[info->rx_idx].cbd_datlen = 0;
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;
467 info->rxbd[info->rx_idx].cbd_sc = BD_ENET_RX_EMPTY;
471 /* Try to fill Buffer Descriptors
472 * Descriptor polling active
474 fecp->rdar = 0x01000000;
480 static void mcffec_halt(struct udevice *dev)
482 struct fec_info_s *info = dev_get_priv(dev);
485 fecpin_setclear(info, 0);
490 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);
495 static const struct eth_ops mcffec_ops = {
496 .start = mcffec_init,
503 * Boot sequence, called just after mcffec_of_to_plat,
504 * as DM way, it replaces old mcffec_initialize.
506 static int mcffec_probe(struct udevice *dev)
508 struct eth_pdata *pdata = dev_get_plat(dev);
509 struct fec_info_s *info = dev_get_priv(dev);
510 int node = dev_of_offset(dev);
514 info->index = dev_seq(dev);
515 info->iobase = pdata->iobase;
518 val = fdt_getprop(gd->fdt_blob, node, "mii-base", NULL);
522 fec_idx = fdt32_to_cpu(*val);
523 if (fec_idx == info->index) {
524 fec_iobase = info->iobase;
526 printf("mii base != base address, fec_idx %d\n",
528 retval = fec_get_base_addr(fec_idx, &fec_iobase);
532 info->miibase = fec_iobase;
535 val = fdt_getprop(gd->fdt_blob, node, "phy-addr", NULL);
537 info->phy_addr = fdt32_to_cpu(*val);
539 val = fdt_getprop(gd->fdt_blob, node, "timeout-loop", NULL);
541 info->to_loop = fdt32_to_cpu(*val);
545 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
546 info->bus = mdio_alloc();
549 strcpy(info->bus->name, dev->name);
550 info->bus->read = mcffec_miiphy_read;
551 info->bus->write = mcffec_miiphy_write;
553 retval = mdio_register(info->bus);
561 static int mcffec_remove(struct udevice *dev)
563 struct fec_info_s *priv = dev_get_priv(dev);
565 mdio_unregister(priv->bus);
566 mdio_free(priv->bus);
572 * Boot sequence, called 1st
574 static int mcffec_of_to_plat(struct udevice *dev)
576 struct eth_pdata *pdata = dev_get_plat(dev);
579 pdata->iobase = dev_read_addr(dev);
580 /* Default to 10Mbit/s */
581 pdata->max_speed = 10;
583 val = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
586 pdata->max_speed = fdt32_to_cpu(*val);
591 static const struct udevice_id mcffec_ids[] = {
592 { .compatible = "fsl,mcf-fec" },
596 U_BOOT_DRIVER(mcffec) = {
599 .of_match = mcffec_ids,
600 .of_to_plat = mcffec_of_to_plat,
601 .probe = mcffec_probe,
602 .remove = mcffec_remove,
604 .priv_auto = sizeof(struct fec_info_s),
605 .plat_auto = sizeof(struct eth_pdata),