blob: cc61a107403856947d410455676ec021d1a0d6e3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiew95e87872008-01-15 14:00:25 -06002/*
3 * (C) Copyright 2000-2004
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2007 Freescale Semiconductor, Inc.
7 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
Angelo Durgehellof0a0c882019-11-15 23:54:19 +01008 *
9 * Conversion to DM
10 * (C) 2019 Angelo Dureghello <angelo.dureghello@timesys.com>
TsiChungLiew95e87872008-01-15 14:00:25 -060011 */
12
13#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060014#include <env.h>
Simon Glassf11478f2019-12-28 10:45:07 -070015#include <hang.h>
TsiChungLiew95e87872008-01-15 14:00:25 -060016#include <malloc.h>
17#include <command.h>
18#include <config.h>
19#include <net.h>
20#include <miiphy.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060022#include <linux/delay.h>
Simon Glasscaefa322019-11-14 12:57:31 -070023#include <linux/mii.h>
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010024#include <asm/immap.h>
25#include <asm/fsl_mcdmafec.h>
26
27#include "MCD_dma.h"
TsiChungLiew95e87872008-01-15 14:00:25 -060028
TsiChungLiew95e87872008-01-15 14:00:25 -060029#undef ET_DEBUG
30#undef MII_DEBUG
31
32/* Ethernet Transmit and Receive Buffers */
33#define DBUF_LENGTH 1520
34#define PKT_MAXBUF_SIZE 1518
TsiChungLiew95e87872008-01-15 14:00:25 -060035#define FIFO_ERRSTAT (FIFO_STAT_RXW | FIFO_STAT_UF | FIFO_STAT_OF)
36
37/* RxBD bits definitions */
38#define BD_ENET_RX_ERR (BD_ENET_RX_LG | BD_ENET_RX_NO | BD_ENET_RX_CR | \
39 BD_ENET_RX_OV | BD_ENET_RX_TR)
40
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010041DECLARE_GLOBAL_DATA_PTR;
TsiChungLiew95e87872008-01-15 14:00:25 -060042
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010043static void init_eth_info(struct fec_info_dma *info)
44{
45 /* setup Receive and Transmit buffer descriptor */
Tom Rini6a5dccc2022-11-16 13:10:41 -050046#ifdef CFG_SYS_FEC_BUF_USE_SRAM
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010047 static u32 tmp;
TsiChungLiew95e87872008-01-15 14:00:25 -060048
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010049 if (info->index == 0)
Tom Rini6a5dccc2022-11-16 13:10:41 -050050 tmp = CFG_SYS_INIT_RAM_ADDR + 0x1000;
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010051 else
52 info->rxbd = (cbd_t *)DBUF_LENGTH;
53
54 info->rxbd = (cbd_t *)((u32)info->rxbd + tmp);
55 tmp = (u32)info->rxbd;
56 info->txbd =
57 (cbd_t *)((u32)info->txbd + tmp +
58 (PKTBUFSRX * sizeof(cbd_t)));
59 tmp = (u32)info->txbd;
60 info->txbuf =
61 (char *)((u32)info->txbuf + tmp +
Tom Rini6a5dccc2022-11-16 13:10:41 -050062 (CFG_SYS_TX_ETH_BUFFER * sizeof(cbd_t)));
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010063 tmp = (u32)info->txbuf;
TsiChung Liew1844b8f2008-04-30 12:11:19 -050064#else
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010065 info->rxbd =
66 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
67 (PKTBUFSRX * sizeof(cbd_t)));
68 info->txbd =
69 (cbd_t *)memalign(CONFIG_SYS_CACHELINE_SIZE,
Tom Rini6a5dccc2022-11-16 13:10:41 -050070 (CFG_SYS_TX_ETH_BUFFER * sizeof(cbd_t)));
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010071 info->txbuf =
72 (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, DBUF_LENGTH);
TsiChung Liew1844b8f2008-04-30 12:11:19 -050073#endif
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010074
75#ifdef ET_DEBUG
76 printf("rxbd %x txbd %x\n", (int)info->rxbd, (int)info->txbd);
TsiChungLiew95e87872008-01-15 14:00:25 -060077#endif
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010078 info->phy_name = (char *)memalign(CONFIG_SYS_CACHELINE_SIZE, 32);
79}
80
81static void fec_halt(struct udevice *dev)
82{
Simon Glass95588622020-12-22 19:30:28 -070083 struct fec_info_dma *info = dev_get_priv(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +010084 volatile fecdma_t *fecp = (fecdma_t *)info->iobase;
85 int counter = 0xffff;
86
87 /* issue graceful stop command to the FEC transmitter if necessary */
88 fecp->tcr |= FEC_TCR_GTS;
89
90 /* wait for graceful stop to register */
91 while ((counter--) && (!(fecp->eir & FEC_EIR_GRA)))
92 ;
93
94 /* Disable DMA tasks */
95 MCD_killDma(info->tx_task);
96 MCD_killDma(info->rx_task);
97
98 /* Disable the Ethernet Controller */
99 fecp->ecr &= ~FEC_ECR_ETHER_EN;
100
101 /* Clear FIFO status registers */
102 fecp->rfsr &= FIFO_ERRSTAT;
103 fecp->tfsr &= FIFO_ERRSTAT;
104
105 fecp->frst = 0x01000000;
TsiChungLiew95e87872008-01-15 14:00:25 -0600106
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100107 /* Issue a reset command to the FEC chip */
108 fecp->ecr |= FEC_ECR_RESET;
109
110 /* wait at least 20 clock cycles */
111 mdelay(10);
112
113#ifdef ET_DEBUG
114 printf("Ethernet task stopped\n");
115#endif
116}
TsiChungLiew95e87872008-01-15 14:00:25 -0600117
118#ifdef ET_DEBUG
119static void dbg_fec_regs(struct eth_device *dev)
120{
121 struct fec_info_dma *info = dev->priv;
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100122 volatile fecdma_t *fecp = (fecdma_t *)info->iobase;
TsiChungLiew95e87872008-01-15 14:00:25 -0600123
124 printf("=====\n");
125 printf("ievent %x - %x\n", (int)&fecp->eir, fecp->eir);
126 printf("imask %x - %x\n", (int)&fecp->eimr, fecp->eimr);
127 printf("ecntrl %x - %x\n", (int)&fecp->ecr, fecp->ecr);
128 printf("mii_mframe %x - %x\n", (int)&fecp->mmfr, fecp->mmfr);
129 printf("mii_speed %x - %x\n", (int)&fecp->mscr, fecp->mscr);
130 printf("mii_ctrlstat %x - %x\n", (int)&fecp->mibc, fecp->mibc);
131 printf("r_cntrl %x - %x\n", (int)&fecp->rcr, fecp->rcr);
132 printf("r hash %x - %x\n", (int)&fecp->rhr, fecp->rhr);
133 printf("x_cntrl %x - %x\n", (int)&fecp->tcr, fecp->tcr);
134 printf("padr_l %x - %x\n", (int)&fecp->palr, fecp->palr);
135 printf("padr_u %x - %x\n", (int)&fecp->paur, fecp->paur);
136 printf("op_pause %x - %x\n", (int)&fecp->opd, fecp->opd);
137 printf("iadr_u %x - %x\n", (int)&fecp->iaur, fecp->iaur);
138 printf("iadr_l %x - %x\n", (int)&fecp->ialr, fecp->ialr);
139 printf("gadr_u %x - %x\n", (int)&fecp->gaur, fecp->gaur);
140 printf("gadr_l %x - %x\n", (int)&fecp->galr, fecp->galr);
141 printf("x_wmrk %x - %x\n", (int)&fecp->tfwr, fecp->tfwr);
142 printf("r_fdata %x - %x\n", (int)&fecp->rfdr, fecp->rfdr);
143 printf("r_fstat %x - %x\n", (int)&fecp->rfsr, fecp->rfsr);
144 printf("r_fctrl %x - %x\n", (int)&fecp->rfcr, fecp->rfcr);
145 printf("r_flrfp %x - %x\n", (int)&fecp->rlrfp, fecp->rlrfp);
146 printf("r_flwfp %x - %x\n", (int)&fecp->rlwfp, fecp->rlwfp);
147 printf("r_frfar %x - %x\n", (int)&fecp->rfar, fecp->rfar);
148 printf("r_frfrp %x - %x\n", (int)&fecp->rfrp, fecp->rfrp);
149 printf("r_frfwp %x - %x\n", (int)&fecp->rfwp, fecp->rfwp);
150 printf("t_fdata %x - %x\n", (int)&fecp->tfdr, fecp->tfdr);
151 printf("t_fstat %x - %x\n", (int)&fecp->tfsr, fecp->tfsr);
152 printf("t_fctrl %x - %x\n", (int)&fecp->tfcr, fecp->tfcr);
153 printf("t_flrfp %x - %x\n", (int)&fecp->tlrfp, fecp->tlrfp);
154 printf("t_flwfp %x - %x\n", (int)&fecp->tlwfp, fecp->tlwfp);
155 printf("t_ftfar %x - %x\n", (int)&fecp->tfar, fecp->tfar);
156 printf("t_ftfrp %x - %x\n", (int)&fecp->tfrp, fecp->tfrp);
157 printf("t_ftfwp %x - %x\n", (int)&fecp->tfwp, fecp->tfwp);
158 printf("frst %x - %x\n", (int)&fecp->frst, fecp->frst);
159 printf("ctcwr %x - %x\n", (int)&fecp->ctcwr, fecp->ctcwr);
160}
161#endif
162
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100163static void set_fec_duplex_speed(volatile fecdma_t *fecp, int dup_spd)
TsiChungLiew95e87872008-01-15 14:00:25 -0600164{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900165 struct bd_info *bd = gd->bd;
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100166
TsiChungLiew95e87872008-01-15 14:00:25 -0600167 if ((dup_spd >> 16) == FULL) {
168 /* Set maximum frame length */
169 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) | FEC_RCR_MII_MODE |
170 FEC_RCR_PROM | 0x100;
171 fecp->tcr = FEC_TCR_FDEN;
172 } else {
173 /* Half duplex mode */
174 fecp->rcr = FEC_RCR_MAX_FL(PKT_MAXBUF_SIZE) |
175 FEC_RCR_MII_MODE | FEC_RCR_DRT;
176 fecp->tcr &= ~FEC_TCR_FDEN;
177 }
178
179 if ((dup_spd & 0xFFFF) == _100BASET) {
180#ifdef MII_DEBUG
181 printf("100Mbps\n");
182#endif
183 bd->bi_ethspeed = 100;
184 } else {
185#ifdef MII_DEBUG
186 printf("10Mbps\n");
187#endif
188 bd->bi_ethspeed = 10;
189 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600190}
191
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100192static void fec_set_hwaddr(volatile fecdma_t *fecp, u8 *mac)
TsiChungLiew95e87872008-01-15 14:00:25 -0600193{
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100194 u8 curr_byte; /* byte for which to compute the CRC */
TsiChungLiew95e87872008-01-15 14:00:25 -0600195 int byte; /* loop - counter */
196 int bit; /* loop - counter */
197 u32 crc = 0xffffffff; /* initial value */
198
199 for (byte = 0; byte < 6; byte++) {
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100200 curr_byte = mac[byte];
TsiChungLiew95e87872008-01-15 14:00:25 -0600201 for (bit = 0; bit < 8; bit++) {
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100202 if ((curr_byte & 0x01) ^ (crc & 0x01)) {
TsiChungLiew95e87872008-01-15 14:00:25 -0600203 crc >>= 1;
204 crc = crc ^ 0xedb88320;
205 } else {
206 crc >>= 1;
207 }
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100208 curr_byte >>= 1;
TsiChungLiew95e87872008-01-15 14:00:25 -0600209 }
210 }
211
212 crc = crc >> 26;
213
214 /* Set individual hash table register */
215 if (crc >= 32) {
216 fecp->ialr = (1 << (crc - 32));
217 fecp->iaur = 0;
218 } else {
219 fecp->ialr = 0;
220 fecp->iaur = (1 << crc);
221 }
222
223 /* Set physical address */
224 fecp->palr = (mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3];
225 fecp->paur = (mac[4] << 24) + (mac[5] << 16) + 0x8808;
226
227 /* Clear multicast address hash table */
228 fecp->gaur = 0;
229 fecp->galr = 0;
230}
231
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100232static int fec_init(struct udevice *dev)
TsiChungLiew95e87872008-01-15 14:00:25 -0600233{
Simon Glass95588622020-12-22 19:30:28 -0700234 struct fec_info_dma *info = dev_get_priv(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100235 volatile fecdma_t *fecp = (fecdma_t *)info->iobase;
236 int rval, i;
Mike Frysingerb2039652009-02-11 19:01:26 -0500237 uchar enetaddr[6];
TsiChungLiew95e87872008-01-15 14:00:25 -0600238
239#ifdef ET_DEBUG
240 printf("fec_init: iobase 0x%08x ...\n", info->iobase);
241#endif
242
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100243 fecpin_setclear(info, 1);
TsiChungLiew95e87872008-01-15 14:00:25 -0600244 fec_halt(dev);
245
TsiChungLiew95e87872008-01-15 14:00:25 -0600246 mii_init();
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100247 set_fec_duplex_speed(fecp, info->dup_spd);
TsiChungLiew95e87872008-01-15 14:00:25 -0600248
249 /* We use strictly polling mode only */
250 fecp->eimr = 0;
251
252 /* Clear any pending interrupt */
253 fecp->eir = 0xffffffff;
254
255 /* Set station address */
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100256 if (info->index == 0)
257 rval = eth_env_get_enetaddr("ethaddr", enetaddr);
Mike Frysingerb2039652009-02-11 19:01:26 -0500258 else
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100259 rval = eth_env_get_enetaddr("eth1addr", enetaddr);
260
261 if (!rval) {
262 puts("Please set a valid MAC address\n");
263 return -EINVAL;
264 }
265
Mike Frysingerb2039652009-02-11 19:01:26 -0500266 fec_set_hwaddr(fecp, enetaddr);
TsiChungLiew95e87872008-01-15 14:00:25 -0600267
268 /* Set Opcode/Pause Duration Register */
269 fecp->opd = 0x00010020;
270
Heinrich Schuchardt42376962017-08-29 18:44:37 +0200271 /* Setup Buffers and Buffer Descriptors */
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100272 info->rx_idx = 0;
273 info->tx_idx = 0;
TsiChungLiew95e87872008-01-15 14:00:25 -0600274
275 /* Setup Receiver Buffer Descriptors (13.14.24.18)
276 * Settings: Empty, Wrap */
277 for (i = 0; i < PKTBUFSRX; i++) {
278 info->rxbd[i].cbd_sc = BD_ENET_RX_EMPTY;
279 info->rxbd[i].cbd_datlen = PKTSIZE_ALIGN;
Joe Hershberger9f09a362015-04-08 01:41:06 -0500280 info->rxbd[i].cbd_bufaddr = (uint) net_rx_packets[i];
TsiChungLiew95e87872008-01-15 14:00:25 -0600281 }
282 info->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP;
283
284 /* Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19)
285 * Settings: Last, Tx CRC */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500286 for (i = 0; i < CFG_SYS_TX_ETH_BUFFER; i++) {
TsiChungLiew95e87872008-01-15 14:00:25 -0600287 info->txbd[i].cbd_sc = 0;
288 info->txbd[i].cbd_datlen = 0;
289 info->txbd[i].cbd_bufaddr = (uint) (&info->txbuf[0]);
290 }
Tom Rini6a5dccc2022-11-16 13:10:41 -0500291 info->txbd[CFG_SYS_TX_ETH_BUFFER - 1].cbd_sc |= BD_ENET_TX_WRAP;
TsiChungLiew95e87872008-01-15 14:00:25 -0600292
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100293 info->used_tbd_idx = 0;
Tom Rini6a5dccc2022-11-16 13:10:41 -0500294 info->clean_tbd_num = CFG_SYS_TX_ETH_BUFFER;
TsiChungLiew95e87872008-01-15 14:00:25 -0600295
296 /* Set Rx FIFO alarm and granularity value */
297 fecp->rfcr = 0x0c000000;
298 fecp->rfar = 0x0000030c;
299
300 /* Set Tx FIFO granularity value */
301 fecp->tfcr = FIFO_CTRL_FRAME | FIFO_CTRL_GR(6) | 0x00040000;
302 fecp->tfar = 0x00000080;
303
304 fecp->tfwr = 0x2;
305 fecp->ctcwr = 0x03000000;
306
307 /* Enable DMA receive task */
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100308 MCD_startDma(info->rx_task,
309 (s8 *)info->rxbd,
310 0,
311 (s8 *)&fecp->rfdr,
312 4,
313 0,
314 4,
315 info->rx_init,
316 info->rx_pri,
317 (MCD_FECRX_DMA | MCD_TT_FLAGS_DEF),
318 (MCD_NO_CSUM | MCD_NO_BYTE_SWAP)
TsiChungLiew95e87872008-01-15 14:00:25 -0600319 );
320
321 /* Enable DMA tx task with no ready buffer descriptors */
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100322 MCD_startDma(info->tx_task,
323 (s8 *)info->txbd,
324 0,
325 (s8 *)&fecp->tfdr,
326 4,
327 0,
328 4,
329 info->tx_init,
330 info->tx_pri,
331 (MCD_FECTX_DMA | MCD_TT_FLAGS_DEF),
332 (MCD_NO_CSUM | MCD_NO_BYTE_SWAP)
TsiChungLiew95e87872008-01-15 14:00:25 -0600333 );
334
335 /* Now enable the transmit and receive processing */
336 fecp->ecr |= FEC_ECR_ETHER_EN;
337
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100338 return 0;
339}
340
341static int mcdmafec_init(struct udevice *dev)
342{
343 return fec_init(dev);
TsiChungLiew95e87872008-01-15 14:00:25 -0600344}
345
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100346static int mcdmafec_send(struct udevice *dev, void *packet, int length)
TsiChungLiew95e87872008-01-15 14:00:25 -0600347{
Simon Glass95588622020-12-22 19:30:28 -0700348 struct fec_info_dma *info = dev_get_priv(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100349 cbd_t *p_tbd, *p_used_tbd;
350 u16 phy_status;
TsiChungLiew95e87872008-01-15 14:00:25 -0600351
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100352 miiphy_read(dev->name, info->phy_addr, MII_BMSR, &phy_status);
TsiChungLiew95e87872008-01-15 14:00:25 -0600353
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100354 /* process all the consumed TBDs */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500355 while (info->clean_tbd_num < CFG_SYS_TX_ETH_BUFFER) {
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100356 p_used_tbd = &info->txbd[info->used_tbd_idx];
357 if (p_used_tbd->cbd_sc & BD_ENET_TX_READY) {
358#ifdef ET_DEBUG
359 printf("Cannot clean TBD %d, in use\n",
360 info->clean_tbd_num);
361#endif
362 return 0;
363 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600364
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100365 /* clean this buffer descriptor */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500366 if (info->used_tbd_idx == (CFG_SYS_TX_ETH_BUFFER - 1))
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100367 p_used_tbd->cbd_sc = BD_ENET_TX_WRAP;
368 else
369 p_used_tbd->cbd_sc = 0;
TsiChungLiew95e87872008-01-15 14:00:25 -0600370
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100371 /* update some indeces for a correct handling of TBD ring */
372 info->clean_tbd_num++;
373 info->used_tbd_idx = (info->used_tbd_idx + 1)
Tom Rini6a5dccc2022-11-16 13:10:41 -0500374 % CFG_SYS_TX_ETH_BUFFER;
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100375 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600376
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100377 /* Check for valid length of data. */
378 if (length > 1500 || length <= 0)
379 return -1;
TsiChungLiew95e87872008-01-15 14:00:25 -0600380
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100381 /* Check the number of vacant TxBDs. */
382 if (info->clean_tbd_num < 1) {
383 printf("No available TxBDs ...\n");
384 return -1;
385 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600386
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100387 /* Get the first TxBD to send the mac header */
388 p_tbd = &info->txbd[info->tx_idx];
389 p_tbd->cbd_datlen = length;
390 p_tbd->cbd_bufaddr = (u32)packet;
391 p_tbd->cbd_sc |= BD_ENET_TX_LAST | BD_ENET_TX_TC | BD_ENET_TX_READY;
Tom Rini6a5dccc2022-11-16 13:10:41 -0500392 info->tx_idx = (info->tx_idx + 1) % CFG_SYS_TX_ETH_BUFFER;
TsiChungLiew95e87872008-01-15 14:00:25 -0600393
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100394 /* Enable DMA transmit task */
395 MCD_continDma(info->tx_task);
TsiChungLiew95e87872008-01-15 14:00:25 -0600396
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100397 info->clean_tbd_num -= 1;
398
399 /* wait until frame is sent . */
400 while (p_tbd->cbd_sc & BD_ENET_TX_READY)
401 udelay(10);
402
403 return (int)(info->txbd[info->tx_idx].cbd_sc & BD_ENET_TX_STATS);
TsiChungLiew95e87872008-01-15 14:00:25 -0600404}
405
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100406static int mcdmafec_recv(struct udevice *dev, int flags, uchar **packetp)
TsiChungLiew95e87872008-01-15 14:00:25 -0600407{
Simon Glass95588622020-12-22 19:30:28 -0700408 struct fec_info_dma *info = dev_get_priv(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100409 volatile fecdma_t *fecp = (fecdma_t *)info->iobase;
TsiChungLiew95e87872008-01-15 14:00:25 -0600410
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100411 cbd_t *prbd = &info->rxbd[info->rx_idx];
412 u32 ievent;
413 int frame_length, len = 0;
TsiChungLiew95e87872008-01-15 14:00:25 -0600414
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100415 /* Check if any critical events have happened */
416 ievent = fecp->eir;
417 if (ievent != 0) {
418 fecp->eir = ievent;
TsiChungLiew95e87872008-01-15 14:00:25 -0600419
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100420 if (ievent & (FEC_EIR_BABT | FEC_EIR_TXERR | FEC_EIR_RXERR)) {
421 printf("fec_recv: error\n");
422 fec_halt(dev);
423 fec_init(dev);
424 return 0;
425 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600426
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100427 if (ievent & FEC_EIR_HBERR) {
428 /* Heartbeat error */
429 fecp->tcr |= FEC_TCR_GTS;
430 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600431
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100432 if (ievent & FEC_EIR_GRA) {
433 /* Graceful stop complete */
434 if (fecp->tcr & FEC_TCR_GTS) {
435 printf("fec_recv: tcr_gts\n");
436 fec_halt(dev);
437 fecp->tcr &= ~FEC_TCR_GTS;
438 fec_init(dev);
439 }
440 }
441 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600442
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100443 if (!(prbd->cbd_sc & BD_ENET_RX_EMPTY)) {
444 if ((prbd->cbd_sc & BD_ENET_RX_LAST) &&
445 !(prbd->cbd_sc & BD_ENET_RX_ERR) &&
446 ((prbd->cbd_datlen - 4) > 14)) {
447 /* Get buffer address and size */
448 frame_length = prbd->cbd_datlen - 4;
TsiChungLiew95e87872008-01-15 14:00:25 -0600449
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100450 /* Fill the buffer and pass it to upper layers */
451 net_process_received_packet((uchar *)prbd->cbd_bufaddr,
452 frame_length);
453 len = frame_length;
454 }
TsiChungLiew95e87872008-01-15 14:00:25 -0600455
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100456 /* Reset buffer descriptor as empty */
457 if (info->rx_idx == (PKTBUFSRX - 1))
458 prbd->cbd_sc = (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY);
459 else
460 prbd->cbd_sc = BD_ENET_RX_EMPTY;
461
462 prbd->cbd_datlen = PKTSIZE_ALIGN;
TsiChungLiew95e87872008-01-15 14:00:25 -0600463
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100464 /* Now, we have an empty RxBD, restart the DMA receive task */
465 MCD_continDma(info->rx_task);
466
467 /* Increment BD count */
468 info->rx_idx = (info->rx_idx + 1) % PKTBUFSRX;
469 }
470
471 return len;
472}
473
474static void mcdmafec_halt(struct udevice *dev)
475{
476 fec_halt(dev);
477}
478
479static const struct eth_ops mcdmafec_ops = {
480 .start = mcdmafec_init,
481 .send = mcdmafec_send,
482 .recv = mcdmafec_recv,
483 .stop = mcdmafec_halt,
484};
485
486/*
Simon Glassaad29ae2020-12-03 16:55:21 -0700487 * Boot sequence, called just after mcffec_of_to_plat,
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100488 * as DM way, it replaces old mcffec_initialize.
489 */
490static int mcdmafec_probe(struct udevice *dev)
491{
Simon Glass95588622020-12-22 19:30:28 -0700492 struct fec_info_dma *info = dev_get_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -0700493 struct eth_pdata *pdata = dev_get_plat(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100494 int node = dev_of_offset(dev);
495 int retval;
496 const u32 *val;
497
Simon Glass75e534b2020-12-16 21:20:07 -0700498 info->index = dev_seq(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100499 info->iobase = pdata->iobase;
500 info->miibase = pdata->iobase;
501 info->phy_addr = -1;
502
503 val = fdt_getprop(gd->fdt_blob, node, "rx-task", NULL);
504 if (val)
505 info->rx_task = fdt32_to_cpu(*val);
506
507 val = fdt_getprop(gd->fdt_blob, node, "tx-task", NULL);
508 if (val)
509 info->tx_task = fdt32_to_cpu(*val);
510
511 val = fdt_getprop(gd->fdt_blob, node, "rx-prioprity", NULL);
512 if (val)
513 info->rx_pri = fdt32_to_cpu(*val);
514
515 val = fdt_getprop(gd->fdt_blob, node, "tx-prioprity", NULL);
516 if (val)
517 info->tx_pri = fdt32_to_cpu(*val);
518
519 val = fdt_getprop(gd->fdt_blob, node, "rx-init", NULL);
520 if (val)
521 info->rx_init = fdt32_to_cpu(*val);
522
523 val = fdt_getprop(gd->fdt_blob, node, "tx-init", NULL);
524 if (val)
525 info->tx_init = fdt32_to_cpu(*val);
526
Tom Rini6a5dccc2022-11-16 13:10:41 -0500527#ifdef CFG_SYS_FEC_BUF_USE_SRAM
528 u32 tmp = CFG_SYS_INIT_RAM_ADDR + 0x1000;
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100529#endif
530 init_eth_info(info);
TsiChungLiew95e87872008-01-15 14:00:25 -0600531
532#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100533 info->bus = mdio_alloc();
534 if (!info->bus)
535 return -ENOMEM;
Vladimir Olteanc99dd242021-09-27 14:21:49 +0300536 strlcpy(info->bus->name, dev->name, MDIO_NAME_LEN);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100537 info->bus->read = mcffec_miiphy_read;
538 info->bus->write = mcffec_miiphy_write;
Joe Hershberger1fbcbed2016-08-08 11:28:38 -0500539
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100540 retval = mdio_register(info->bus);
541 if (retval < 0)
542 return retval;
TsiChungLiew95e87872008-01-15 14:00:25 -0600543#endif
544
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100545 return 0;
546}
TsiChungLiew95e87872008-01-15 14:00:25 -0600547
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100548static int mcdmafec_remove(struct udevice *dev)
549{
550 struct fec_info_dma *priv = dev_get_priv(dev);
551
552 mdio_unregister(priv->bus);
553 mdio_free(priv->bus);
TsiChungLiew95e87872008-01-15 14:00:25 -0600554
Ben Warrene7edd4e2008-08-26 22:12:36 -0700555 return 0;
TsiChungLiew95e87872008-01-15 14:00:25 -0600556}
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100557
558/*
559 * Boot sequence, called 1st
560 */
Simon Glassaad29ae2020-12-03 16:55:21 -0700561static int mcdmafec_of_to_plat(struct udevice *dev)
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100562{
Simon Glassfa20e932020-12-03 16:55:20 -0700563 struct eth_pdata *pdata = dev_get_plat(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100564 const u32 *val;
565
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900566 pdata->iobase = dev_read_addr(dev);
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100567 /* Default to 10Mbit/s */
568 pdata->max_speed = 10;
569
570 val = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "max-speed", NULL);
571 if (val)
572 pdata->max_speed = fdt32_to_cpu(*val);
573
574 return 0;
575}
576
577static const struct udevice_id mcdmafec_ids[] = {
578 { .compatible = "fsl,mcf-dma-fec" },
579 { }
580};
581
582U_BOOT_DRIVER(mcffec) = {
583 .name = "mcdmafec",
584 .id = UCLASS_ETH,
585 .of_match = mcdmafec_ids,
Simon Glassaad29ae2020-12-03 16:55:21 -0700586 .of_to_plat = mcdmafec_of_to_plat,
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100587 .probe = mcdmafec_probe,
588 .remove = mcdmafec_remove,
589 .ops = &mcdmafec_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700590 .priv_auto = sizeof(struct fec_info_dma),
Simon Glass71fa5b42020-12-03 16:55:18 -0700591 .plat_auto = sizeof(struct eth_pdata),
Angelo Durgehellof0a0c882019-11-15 23:54:19 +0100592};