bootstd: Update documentation
[platform/kernel/u-boot.git] / drivers / net / fec_mxc.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2009 Ilya Yanok, Emcraft Systems Ltd <yanok@emcraft.com>
4  * (C) Copyright 2008,2009 Eric Jarrige <eric.jarrige@armadeus.org>
5  * (C) Copyright 2008 Armadeus Systems nc
6  * (C) Copyright 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
7  * (C) Copyright 2007 Pengutronix, Juergen Beisert <j.beisert@pengutronix.de>
8  */
9
10 #include <common.h>
11 #include <cpu_func.h>
12 #include <dm.h>
13 #include <env.h>
14 #include <log.h>
15 #include <malloc.h>
16 #include <memalign.h>
17 #include <miiphy.h>
18 #include <net.h>
19 #include <netdev.h>
20 #include <asm/cache.h>
21 #include <asm/global_data.h>
22 #include <linux/delay.h>
23 #include <power/regulator.h>
24
25 #include <asm/io.h>
26 #include <linux/errno.h>
27 #include <linux/compiler.h>
28
29 #include <asm/arch/clock.h>
30 #include <asm/arch/imx-regs.h>
31 #include <asm/mach-imx/sys_proto.h>
32 #include <asm-generic/gpio.h>
33
34 #include "fec_mxc.h"
35 #include <eth_phy.h>
36
37 DECLARE_GLOBAL_DATA_PTR;
38
39 /*
40  * Timeout the transfer after 5 mS. This is usually a bit more, since
41  * the code in the tightloops this timeout is used in adds some overhead.
42  */
43 #define FEC_XFER_TIMEOUT        5000
44
45 /*
46  * The standard 32-byte DMA alignment does not work on mx6solox, which requires
47  * 64-byte alignment in the DMA RX FEC buffer.
48  * Introduce the FEC_DMA_RX_MINALIGN which can cover mx6solox needs and also
49  * satisfies the alignment on other SoCs (32-bytes)
50  */
51 #define FEC_DMA_RX_MINALIGN     64
52
53 #ifndef CONFIG_MII
54 #error "CONFIG_MII has to be defined!"
55 #endif
56
57 /*
58  * The i.MX28 operates with packets in big endian. We need to swap them before
59  * sending and after receiving.
60  */
61 #ifdef CONFIG_MX28
62 #define CONFIG_FEC_MXC_SWAP_PACKET
63 #endif
64
65 #define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
66
67 /* Check various alignment issues at compile time */
68 #if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
69 #error "ARCH_DMA_MINALIGN must be multiple of 16!"
70 #endif
71
72 #if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
73         (PKTALIGN % ARCH_DMA_MINALIGN != 0))
74 #error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
75 #endif
76
77 #undef DEBUG
78
79 #ifdef CONFIG_FEC_MXC_SWAP_PACKET
80 static void swap_packet(uint32_t *packet, int length)
81 {
82         int i;
83
84         for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
85                 packet[i] = __swab32(packet[i]);
86 }
87 #endif
88
89 /* MII-interface related functions */
90 static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyaddr,
91                 uint8_t regaddr)
92 {
93         uint32_t reg;           /* convenient holder for the PHY register */
94         uint32_t phy;           /* convenient holder for the PHY */
95         uint32_t start;
96         int val;
97
98         /*
99          * reading from any PHY's register is done by properly
100          * programming the FEC's MII data register.
101          */
102         writel(FEC_IEVENT_MII, &eth->ievent);
103         reg = regaddr << FEC_MII_DATA_RA_SHIFT;
104         phy = phyaddr << FEC_MII_DATA_PA_SHIFT;
105
106         writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
107                         phy | reg, &eth->mii_data);
108
109         /* wait for the related interrupt */
110         start = get_timer(0);
111         while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
112                 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
113                         printf("Read MDIO failed...\n");
114                         return -1;
115                 }
116         }
117
118         /* clear mii interrupt bit */
119         writel(FEC_IEVENT_MII, &eth->ievent);
120
121         /* it's now safe to read the PHY's register */
122         val = (unsigned short)readl(&eth->mii_data);
123         debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyaddr,
124               regaddr, val);
125         return val;
126 }
127
128 #ifndef imx_get_fecclk
129 u32 __weak imx_get_fecclk(void)
130 {
131         return 0;
132 }
133 #endif
134
135 static int fec_get_clk_rate(void *udev, int idx)
136 {
137         struct fec_priv *fec;
138         struct udevice *dev;
139         int ret;
140
141         if (IS_ENABLED(CONFIG_IMX8) ||
142             CONFIG_IS_ENABLED(CLK_CCF)) {
143                 dev = udev;
144                 if (!dev) {
145                         ret = uclass_get_device_by_seq(UCLASS_ETH, idx, &dev);
146                         if (ret < 0) {
147                                 debug("Can't get FEC udev: %d\n", ret);
148                                 return ret;
149                         }
150                 }
151
152                 fec = dev_get_priv(dev);
153                 if (fec)
154                         return fec->clk_rate;
155
156                 return -EINVAL;
157         } else {
158                 return imx_get_fecclk();
159         }
160 }
161
162 static void fec_mii_setspeed(struct ethernet_regs *eth)
163 {
164         /*
165          * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
166          * and do not drop the Preamble.
167          *
168          * The i.MX28 and i.MX6 types have another field in the MSCR (aka
169          * MII_SPEED) register that defines the MDIO output hold time. Earlier
170          * versions are RAZ there, so just ignore the difference and write the
171          * register always.
172          * The minimal hold time according to IEE802.3 (clause 22) is 10 ns.
173          * HOLDTIME + 1 is the number of clk cycles the fec is holding the
174          * output.
175          * The HOLDTIME bitfield takes values between 0 and 7 (inclusive).
176          * Given that ceil(clkrate / 5000000) <= 64, the calculation for
177          * holdtime cannot result in a value greater than 3.
178          */
179         u32 pclk;
180         u32 speed;
181         u32 hold;
182         int ret;
183
184         ret = fec_get_clk_rate(NULL, 0);
185         if (ret < 0) {
186                 printf("Can't find FEC0 clk rate: %d\n", ret);
187                 return;
188         }
189         pclk = ret;
190         speed = DIV_ROUND_UP(pclk, 5000000);
191         hold = DIV_ROUND_UP(pclk, 100000000) - 1;
192
193 #ifdef FEC_QUIRK_ENET_MAC
194         speed--;
195 #endif
196         writel(speed << 1 | hold << 8, &eth->mii_speed);
197         debug("%s: mii_speed %08x\n", __func__, readl(&eth->mii_speed));
198 }
199
200 static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyaddr,
201                 uint8_t regaddr, uint16_t data)
202 {
203         uint32_t reg;           /* convenient holder for the PHY register */
204         uint32_t phy;           /* convenient holder for the PHY */
205         uint32_t start;
206
207         reg = regaddr << FEC_MII_DATA_RA_SHIFT;
208         phy = phyaddr << FEC_MII_DATA_PA_SHIFT;
209
210         writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
211                 FEC_MII_DATA_TA | phy | reg | data, &eth->mii_data);
212
213         /* wait for the MII interrupt */
214         start = get_timer(0);
215         while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
216                 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
217                         printf("Write MDIO failed...\n");
218                         return -1;
219                 }
220         }
221
222         /* clear MII interrupt bit */
223         writel(FEC_IEVENT_MII, &eth->ievent);
224         debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyaddr,
225               regaddr, data);
226
227         return 0;
228 }
229
230 static int fec_phy_read(struct mii_dev *bus, int phyaddr, int dev_addr,
231                         int regaddr)
232 {
233         return fec_mdio_read(bus->priv, phyaddr, regaddr);
234 }
235
236 static int fec_phy_write(struct mii_dev *bus, int phyaddr, int dev_addr,
237                          int regaddr, u16 data)
238 {
239         return fec_mdio_write(bus->priv, phyaddr, regaddr, data);
240 }
241
242 #ifndef CONFIG_PHYLIB
243 static int miiphy_restart_aneg(struct eth_device *dev)
244 {
245         int ret = 0;
246 #if !defined(CONFIG_FEC_MXC_NO_ANEG)
247         struct fec_priv *fec = (struct fec_priv *)dev->priv;
248         struct ethernet_regs *eth = fec->bus->priv;
249
250         /*
251          * Wake up from sleep if necessary
252          * Reset PHY, then delay 300ns
253          */
254 #ifdef CONFIG_MX27
255         fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
256 #endif
257         fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
258         udelay(1000);
259
260         /* Set the auto-negotiation advertisement register bits */
261         fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
262                        LPA_100FULL | LPA_100HALF | LPA_10FULL |
263                        LPA_10HALF | PHY_ANLPAR_PSB_802_3);
264         fec_mdio_write(eth, fec->phy_id, MII_BMCR,
265                        BMCR_ANENABLE | BMCR_ANRESTART);
266
267         if (fec->mii_postcall)
268                 ret = fec->mii_postcall(fec->phy_id);
269
270 #endif
271         return ret;
272 }
273
274 #ifndef CONFIG_FEC_FIXED_SPEED
275 static int miiphy_wait_aneg(struct eth_device *dev)
276 {
277         uint32_t start;
278         int status;
279         struct fec_priv *fec = (struct fec_priv *)dev->priv;
280         struct ethernet_regs *eth = fec->bus->priv;
281
282         /* Wait for AN completion */
283         start = get_timer(0);
284         do {
285                 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
286                         printf("%s: Autonegotiation timeout\n", dev->name);
287                         return -1;
288                 }
289
290                 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
291                 if (status < 0) {
292                         printf("%s: Autonegotiation failed. status: %d\n",
293                                dev->name, status);
294                         return -1;
295                 }
296         } while (!(status & BMSR_LSTATUS));
297
298         return 0;
299 }
300 #endif /* CONFIG_FEC_FIXED_SPEED */
301 #endif
302
303 static int fec_rx_task_enable(struct fec_priv *fec)
304 {
305         writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
306         return 0;
307 }
308
309 static int fec_rx_task_disable(struct fec_priv *fec)
310 {
311         return 0;
312 }
313
314 static int fec_tx_task_enable(struct fec_priv *fec)
315 {
316         writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
317         return 0;
318 }
319
320 static int fec_tx_task_disable(struct fec_priv *fec)
321 {
322         return 0;
323 }
324
325 /**
326  * Initialize receive task's buffer descriptors
327  * @param[in] fec all we know about the device yet
328  * @param[in] count receive buffer count to be allocated
329  * @param[in] dsize desired size of each receive buffer
330  * Return: 0 on success
331  *
332  * Init all RX descriptors to default values.
333  */
334 static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
335 {
336         uint32_t size;
337         ulong data;
338         int i;
339
340         /*
341          * Reload the RX descriptors with default values and wipe
342          * the RX buffers.
343          */
344         size = roundup(dsize, ARCH_DMA_MINALIGN);
345         for (i = 0; i < count; i++) {
346                 data = fec->rbd_base[i].data_pointer;
347                 memset((void *)data, 0, dsize);
348                 flush_dcache_range(data, data + size);
349
350                 fec->rbd_base[i].status = FEC_RBD_EMPTY;
351                 fec->rbd_base[i].data_length = 0;
352         }
353
354         /* Mark the last RBD to close the ring. */
355         fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
356         fec->rbd_index = 0;
357
358         flush_dcache_range((ulong)fec->rbd_base,
359                            (ulong)fec->rbd_base + size);
360 }
361
362 /**
363  * Initialize transmit task's buffer descriptors
364  * @param[in] fec all we know about the device yet
365  *
366  * Transmit buffers are created externally. We only have to init the BDs here.\n
367  * Note: There is a race condition in the hardware. When only one BD is in
368  * use it must be marked with the WRAP bit to use it for every transmitt.
369  * This bit in combination with the READY bit results into double transmit
370  * of each data buffer. It seems the state machine checks READY earlier then
371  * resetting it after the first transfer.
372  * Using two BDs solves this issue.
373  */
374 static void fec_tbd_init(struct fec_priv *fec)
375 {
376         ulong addr = (ulong)fec->tbd_base;
377         unsigned size = roundup(2 * sizeof(struct fec_bd),
378                                 ARCH_DMA_MINALIGN);
379
380         memset(fec->tbd_base, 0, size);
381         fec->tbd_base[0].status = 0;
382         fec->tbd_base[1].status = FEC_TBD_WRAP;
383         fec->tbd_index = 0;
384         flush_dcache_range(addr, addr + size);
385 }
386
387 /**
388  * Mark the given read buffer descriptor as free
389  * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0
390  * @param[in] prbd buffer descriptor to mark free again
391  */
392 static void fec_rbd_clean(int last, struct fec_bd *prbd)
393 {
394         unsigned short flags = FEC_RBD_EMPTY;
395         if (last)
396                 flags |= FEC_RBD_WRAP;
397         writew(flags, &prbd->status);
398         writew(0, &prbd->data_length);
399 }
400
401 static int fec_get_hwaddr(int dev_id, unsigned char *mac)
402 {
403         imx_get_mac_from_fuse(dev_id, mac);
404         return !is_valid_ethaddr(mac);
405 }
406
407 static int fecmxc_set_hwaddr(struct udevice *dev)
408 {
409         struct fec_priv *fec = dev_get_priv(dev);
410         struct eth_pdata *pdata = dev_get_plat(dev);
411         uchar *mac = pdata->enetaddr;
412
413         writel(0, &fec->eth->iaddr1);
414         writel(0, &fec->eth->iaddr2);
415         writel(0, &fec->eth->gaddr1);
416         writel(0, &fec->eth->gaddr2);
417
418         /* Set physical address */
419         writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
420                &fec->eth->paddr1);
421         writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
422
423         return 0;
424 }
425
426 /* Do initial configuration of the FEC registers */
427 static void fec_reg_setup(struct fec_priv *fec)
428 {
429         uint32_t rcntrl;
430
431         /* Set interrupt mask register */
432         writel(0x00000000, &fec->eth->imask);
433
434         /* Clear FEC-Lite interrupt event register(IEVENT) */
435         writel(0xffffffff, &fec->eth->ievent);
436
437         /* Set FEC-Lite receive control register(R_CNTRL): */
438
439         /* Start with frame length = 1518, common for all modes. */
440         rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
441         if (fec->xcv_type != SEVENWIRE)         /* xMII modes */
442                 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
443         if (fec->xcv_type == RGMII)
444                 rcntrl |= FEC_RCNTRL_RGMII;
445         else if (fec->xcv_type == RMII)
446                 rcntrl |= FEC_RCNTRL_RMII;
447
448         if (fec->promisc)
449                 rcntrl |= 0x8;
450
451         writel(rcntrl, &fec->eth->r_cntrl);
452 }
453
454 /**
455  * Start the FEC engine
456  * @param[in] dev Our device to handle
457  */
458 static int fec_open(struct udevice *dev)
459 {
460         struct fec_priv *fec = dev_get_priv(dev);
461         int speed;
462         ulong addr, size;
463         int i;
464
465         debug("fec_open: fec_open(dev)\n");
466         /* full-duplex, heartbeat disabled */
467         writel(1 << 2, &fec->eth->x_cntrl);
468         fec->rbd_index = 0;
469
470         /* Invalidate all descriptors */
471         for (i = 0; i < FEC_RBD_NUM - 1; i++)
472                 fec_rbd_clean(0, &fec->rbd_base[i]);
473         fec_rbd_clean(1, &fec->rbd_base[i]);
474
475         /* Flush the descriptors into RAM */
476         size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
477                         ARCH_DMA_MINALIGN);
478         addr = (ulong)fec->rbd_base;
479         flush_dcache_range(addr, addr + size);
480
481 #ifdef FEC_QUIRK_ENET_MAC
482         /* Enable ENET HW endian SWAP */
483         writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
484                &fec->eth->ecntrl);
485         /* Enable ENET store and forward mode */
486         writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
487                &fec->eth->x_wmrk);
488 #endif
489         /* Enable FEC-Lite controller */
490         writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
491                &fec->eth->ecntrl);
492
493 #ifdef FEC_ENET_ENABLE_TXC_DELAY
494         writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_TXC_DLY,
495                &fec->eth->ecntrl);
496 #endif
497
498 #ifdef FEC_ENET_ENABLE_RXC_DELAY
499         writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RXC_DLY,
500                &fec->eth->ecntrl);
501 #endif
502
503 #if defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
504         udelay(100);
505
506         /* setup the MII gasket for RMII mode */
507         /* disable the gasket */
508         writew(0, &fec->eth->miigsk_enr);
509
510         /* wait for the gasket to be disabled */
511         while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
512                 udelay(2);
513
514         /* configure gasket for RMII, 50 MHz, no loopback, and no echo */
515         writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
516
517         /* re-enable the gasket */
518         writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
519
520         /* wait until MII gasket is ready */
521         int max_loops = 10;
522         while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
523                 if (--max_loops <= 0) {
524                         printf("WAIT for MII Gasket ready timed out\n");
525                         break;
526                 }
527         }
528 #endif
529
530 #ifdef CONFIG_PHYLIB
531         {
532                 /* Start up the PHY */
533                 int ret = phy_startup(fec->phydev);
534
535                 if (ret) {
536                         printf("Could not initialize PHY %s\n",
537                                fec->phydev->dev->name);
538                         return ret;
539                 }
540                 speed = fec->phydev->speed;
541         }
542 #elif CONFIG_FEC_FIXED_SPEED
543         speed = CONFIG_FEC_FIXED_SPEED;
544 #else
545         miiphy_wait_aneg(edev);
546         speed = miiphy_speed(edev->name, fec->phy_id);
547         miiphy_duplex(edev->name, fec->phy_id);
548 #endif
549
550 #ifdef FEC_QUIRK_ENET_MAC
551         {
552                 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
553                 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
554                 if (speed == _1000BASET)
555                         ecr |= FEC_ECNTRL_SPEED;
556                 else if (speed != _100BASET)
557                         rcr |= FEC_RCNTRL_RMII_10T;
558                 writel(ecr, &fec->eth->ecntrl);
559                 writel(rcr, &fec->eth->r_cntrl);
560         }
561 #endif
562         debug("%s:Speed=%i\n", __func__, speed);
563
564         /* Enable SmartDMA receive task */
565         fec_rx_task_enable(fec);
566
567         udelay(100000);
568         return 0;
569 }
570
571 static int fecmxc_init(struct udevice *dev)
572 {
573         struct fec_priv *fec = dev_get_priv(dev);
574         u8 *mib_ptr = (uint8_t *)&fec->eth->rmon_t_drop;
575         u8 *i;
576         ulong addr;
577
578         /* Initialize MAC address */
579         fecmxc_set_hwaddr(dev);
580
581         /* Setup transmit descriptors, there are two in total. */
582         fec_tbd_init(fec);
583
584         /* Setup receive descriptors. */
585         fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
586
587         fec_reg_setup(fec);
588
589         if (fec->xcv_type != SEVENWIRE)
590                 fec_mii_setspeed(fec->bus->priv);
591
592         /* Set Opcode/Pause Duration Register */
593         writel(0x00010020, &fec->eth->op_pause);        /* FIXME 0xffff0020; */
594         writel(0x2, &fec->eth->x_wmrk);
595
596         /* Set multicast address filter */
597         writel(0x00000000, &fec->eth->gaddr1);
598         writel(0x00000000, &fec->eth->gaddr2);
599
600         /* Do not access reserved register */
601         if (!is_mx6ul() && !is_mx6ull() && !is_imx8() && !is_imx8m() && !is_imx8ulp() &&
602             !is_imx93()) {
603                 /* clear MIB RAM */
604                 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
605                         writel(0, i);
606
607                 /* FIFO receive start register */
608                 writel(0x520, &fec->eth->r_fstart);
609         }
610
611         /* size and address of each buffer */
612         writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
613
614         addr = (ulong)fec->tbd_base;
615         writel((uint32_t)addr, &fec->eth->etdsr);
616
617         addr = (ulong)fec->rbd_base;
618         writel((uint32_t)addr, &fec->eth->erdsr);
619
620 #ifndef CONFIG_PHYLIB
621         if (fec->xcv_type != SEVENWIRE)
622                 miiphy_restart_aneg(dev);
623 #endif
624         fec_open(dev);
625         return 0;
626 }
627
628 /**
629  * Halt the FEC engine
630  * @param[in] dev Our device to handle
631  */
632 static void fecmxc_halt(struct udevice *dev)
633 {
634         struct fec_priv *fec = dev_get_priv(dev);
635         int counter = 0xffff;
636
637         /* issue graceful stop command to the FEC transmitter if necessary */
638         writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
639                &fec->eth->x_cntrl);
640
641         debug("eth_halt: wait for stop regs\n");
642         /* wait for graceful stop to register */
643         while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
644                 udelay(1);
645
646         /* Disable SmartDMA tasks */
647         fec_tx_task_disable(fec);
648         fec_rx_task_disable(fec);
649
650         /*
651          * Disable the Ethernet Controller
652          * Note: this will also reset the BD index counter!
653          */
654         writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
655                &fec->eth->ecntrl);
656         fec->rbd_index = 0;
657         fec->tbd_index = 0;
658         debug("eth_halt: done\n");
659 }
660
661 /**
662  * Transmit one frame
663  * @param[in] dev Our ethernet device to handle
664  * @param[in] packet Pointer to the data to be transmitted
665  * @param[in] length Data count in bytes
666  * Return: 0 on success
667  */
668 static int fecmxc_send(struct udevice *dev, void *packet, int length)
669 {
670         unsigned int status;
671         u32 size;
672         ulong addr, end;
673         int timeout = FEC_XFER_TIMEOUT;
674         int ret = 0;
675
676         /*
677          * This routine transmits one frame.  This routine only accepts
678          * 6-byte Ethernet addresses.
679          */
680         struct fec_priv *fec = dev_get_priv(dev);
681
682         /*
683          * Check for valid length of data.
684          */
685         if ((length > 1500) || (length <= 0)) {
686                 printf("Payload (%d) too large\n", length);
687                 return -1;
688         }
689
690         /*
691          * Setup the transmit buffer. We are always using the first buffer for
692          * transmission, the second will be empty and only used to stop the DMA
693          * engine. We also flush the packet to RAM here to avoid cache trouble.
694          */
695 #ifdef CONFIG_FEC_MXC_SWAP_PACKET
696         swap_packet((uint32_t *)packet, length);
697 #endif
698
699         addr = (ulong)packet;
700         end = roundup(addr + length, ARCH_DMA_MINALIGN);
701         addr &= ~(ARCH_DMA_MINALIGN - 1);
702         flush_dcache_range(addr, end);
703
704         writew(length, &fec->tbd_base[fec->tbd_index].data_length);
705         writel((uint32_t)addr, &fec->tbd_base[fec->tbd_index].data_pointer);
706
707         /*
708          * update BD's status now
709          * This block:
710          * - is always the last in a chain (means no chain)
711          * - should transmitt the CRC
712          * - might be the last BD in the list, so the address counter should
713          *   wrap (-> keep the WRAP flag)
714          */
715         status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
716         status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
717         writew(status, &fec->tbd_base[fec->tbd_index].status);
718
719         /*
720          * Flush data cache. This code flushes both TX descriptors to RAM.
721          * After this code, the descriptors will be safely in RAM and we
722          * can start DMA.
723          */
724         size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
725         addr = (ulong)fec->tbd_base;
726         flush_dcache_range(addr, addr + size);
727
728         /*
729          * Below we read the DMA descriptor's last four bytes back from the
730          * DRAM. This is important in order to make sure that all WRITE
731          * operations on the bus that were triggered by previous cache FLUSH
732          * have completed.
733          *
734          * Otherwise, on MX28, it is possible to observe a corruption of the
735          * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM
736          * for the bus structure of MX28. The scenario is as follows:
737          *
738          * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going
739          *    to DRAM due to flush_dcache_range()
740          * 2) ARM core writes the FEC registers via AHB_ARB2
741          * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3
742          *
743          * Note that 2) does sometimes finish before 1) due to reordering of
744          * WRITE accesses on the AHB bus, therefore triggering 3) before the
745          * DMA descriptor is fully written into DRAM. This results in occasional
746          * corruption of the DMA descriptor.
747          */
748         readl(addr + size - 4);
749
750         /* Enable SmartDMA transmit task */
751         fec_tx_task_enable(fec);
752
753         /*
754          * Wait until frame is sent. On each turn of the wait cycle, we must
755          * invalidate data cache to see what's really in RAM. Also, we need
756          * barrier here.
757          */
758         while (--timeout) {
759                 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
760                         break;
761         }
762
763         if (!timeout) {
764                 ret = -EINVAL;
765                 goto out;
766         }
767
768         /*
769          * The TDAR bit is cleared when the descriptors are all out from TX
770          * but on mx6solox we noticed that the READY bit is still not cleared
771          * right after TDAR.
772          * These are two distinct signals, and in IC simulation, we found that
773          * TDAR always gets cleared prior than the READY bit of last BD becomes
774          * cleared.
775          * In mx6solox, we use a later version of FEC IP. It looks like that
776          * this intrinsic behaviour of TDAR bit has changed in this newer FEC
777          * version.
778          *
779          * Fix this by polling the READY bit of BD after the TDAR polling,
780          * which covers the mx6solox case and does not harm the other SoCs.
781          */
782         timeout = FEC_XFER_TIMEOUT;
783         while (--timeout) {
784                 invalidate_dcache_range(addr, addr + size);
785                 if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
786                     FEC_TBD_READY))
787                         break;
788         }
789
790         if (!timeout)
791                 ret = -EINVAL;
792
793 out:
794         debug("fec_send: status 0x%x index %d ret %i\n",
795               readw(&fec->tbd_base[fec->tbd_index].status),
796               fec->tbd_index, ret);
797         /* for next transmission use the other buffer */
798         if (fec->tbd_index)
799                 fec->tbd_index = 0;
800         else
801                 fec->tbd_index = 1;
802
803         return ret;
804 }
805
806 /**
807  * Pull one frame from the card
808  * @param[in] dev Our ethernet device to handle
809  * Return: Length of packet read
810  */
811 static int fecmxc_recv(struct udevice *dev, int flags, uchar **packetp)
812 {
813         struct fec_priv *fec = dev_get_priv(dev);
814         struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
815         unsigned long ievent;
816         int frame_length, len = 0;
817         uint16_t bd_status;
818         ulong addr, size, end;
819         int i;
820
821         *packetp = memalign(ARCH_DMA_MINALIGN, FEC_MAX_PKT_SIZE);
822         if (*packetp == 0) {
823                 printf("%s: error allocating packetp\n", __func__);
824                 return -ENOMEM;
825         }
826
827         /* Check if any critical events have happened */
828         ievent = readl(&fec->eth->ievent);
829         writel(ievent, &fec->eth->ievent);
830         debug("fec_recv: ievent 0x%lx\n", ievent);
831         if (ievent & FEC_IEVENT_BABR) {
832                 fecmxc_halt(dev);
833                 fecmxc_init(dev);
834                 printf("some error: 0x%08lx\n", ievent);
835                 return 0;
836         }
837         if (ievent & FEC_IEVENT_HBERR) {
838                 /* Heartbeat error */
839                 writel(0x00000001 | readl(&fec->eth->x_cntrl),
840                        &fec->eth->x_cntrl);
841         }
842         if (ievent & FEC_IEVENT_GRA) {
843                 /* Graceful stop complete */
844                 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
845                         fecmxc_halt(dev);
846                         writel(~0x00000001 & readl(&fec->eth->x_cntrl),
847                                &fec->eth->x_cntrl);
848                         fecmxc_init(dev);
849                 }
850         }
851
852         /*
853          * Read the buffer status. Before the status can be read, the data cache
854          * must be invalidated, because the data in RAM might have been changed
855          * by DMA. The descriptors are properly aligned to cachelines so there's
856          * no need to worry they'd overlap.
857          *
858          * WARNING: By invalidating the descriptor here, we also invalidate
859          * the descriptors surrounding this one. Therefore we can NOT change the
860          * contents of this descriptor nor the surrounding ones. The problem is
861          * that in order to mark the descriptor as processed, we need to change
862          * the descriptor. The solution is to mark the whole cache line when all
863          * descriptors in the cache line are processed.
864          */
865         addr = (ulong)rbd;
866         addr &= ~(ARCH_DMA_MINALIGN - 1);
867         size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
868         invalidate_dcache_range(addr, addr + size);
869
870         bd_status = readw(&rbd->status);
871         debug("fec_recv: status 0x%x\n", bd_status);
872
873         if (!(bd_status & FEC_RBD_EMPTY)) {
874                 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
875                     ((readw(&rbd->data_length) - 4) > 14)) {
876                         /* Get buffer address and size */
877                         addr = readl(&rbd->data_pointer);
878                         frame_length = readw(&rbd->data_length) - 4;
879                         /* Invalidate data cache over the buffer */
880                         end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
881                         addr &= ~(ARCH_DMA_MINALIGN - 1);
882                         invalidate_dcache_range(addr, end);
883
884                         /* Fill the buffer and pass it to upper layers */
885 #ifdef CONFIG_FEC_MXC_SWAP_PACKET
886                         swap_packet((uint32_t *)addr, frame_length);
887 #endif
888
889                         memcpy(*packetp, (char *)addr, frame_length);
890                         len = frame_length;
891                 } else {
892                         if (bd_status & FEC_RBD_ERR)
893                                 debug("error frame: 0x%08lx 0x%08x\n",
894                                       addr, bd_status);
895                 }
896
897                 /*
898                  * Free the current buffer, restart the engine and move forward
899                  * to the next buffer. Here we check if the whole cacheline of
900                  * descriptors was already processed and if so, we mark it free
901                  * as whole.
902                  */
903                 size = RXDESC_PER_CACHELINE - 1;
904                 if ((fec->rbd_index & size) == size) {
905                         i = fec->rbd_index - size;
906                         addr = (ulong)&fec->rbd_base[i];
907                         for (; i <= fec->rbd_index ; i++) {
908                                 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
909                                               &fec->rbd_base[i]);
910                         }
911                         flush_dcache_range(addr,
912                                            addr + ARCH_DMA_MINALIGN);
913                 }
914
915                 fec_rx_task_enable(fec);
916                 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
917         }
918         debug("fec_recv: stop\n");
919
920         return len;
921 }
922
923 static void fec_set_dev_name(char *dest, int dev_id)
924 {
925         sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
926 }
927
928 static int fec_alloc_descs(struct fec_priv *fec)
929 {
930         unsigned int size;
931         int i;
932         uint8_t *data;
933         ulong addr;
934
935         /* Allocate TX descriptors. */
936         size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
937         fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
938         if (!fec->tbd_base)
939                 goto err_tx;
940
941         /* Allocate RX descriptors. */
942         size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
943         fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
944         if (!fec->rbd_base)
945                 goto err_rx;
946
947         memset(fec->rbd_base, 0, size);
948
949         /* Allocate RX buffers. */
950
951         /* Maximum RX buffer size. */
952         size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
953         for (i = 0; i < FEC_RBD_NUM; i++) {
954                 data = memalign(FEC_DMA_RX_MINALIGN, size);
955                 if (!data) {
956                         printf("%s: error allocating rxbuf %d\n", __func__, i);
957                         goto err_ring;
958                 }
959
960                 memset(data, 0, size);
961
962                 addr = (ulong)data;
963                 fec->rbd_base[i].data_pointer = (uint32_t)addr;
964                 fec->rbd_base[i].status = FEC_RBD_EMPTY;
965                 fec->rbd_base[i].data_length = 0;
966                 /* Flush the buffer to memory. */
967                 flush_dcache_range(addr, addr + size);
968         }
969
970         /* Mark the last RBD to close the ring. */
971         fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
972
973         fec->rbd_index = 0;
974         fec->tbd_index = 0;
975
976         return 0;
977
978 err_ring:
979         for (; i >= 0; i--) {
980                 addr = fec->rbd_base[i].data_pointer;
981                 free((void *)addr);
982         }
983         free(fec->rbd_base);
984 err_rx:
985         free(fec->tbd_base);
986 err_tx:
987         return -ENOMEM;
988 }
989
990 static void fec_free_descs(struct fec_priv *fec)
991 {
992         int i;
993         ulong addr;
994
995         for (i = 0; i < FEC_RBD_NUM; i++) {
996                 addr = fec->rbd_base[i].data_pointer;
997                 free((void *)addr);
998         }
999         free(fec->rbd_base);
1000         free(fec->tbd_base);
1001 }
1002
1003 struct mii_dev *fec_get_miibus(ulong base_addr, int dev_id)
1004 {
1005         struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1006         struct mii_dev *bus;
1007         int ret;
1008
1009         bus = mdio_alloc();
1010         if (!bus) {
1011                 printf("mdio_alloc failed\n");
1012                 return NULL;
1013         }
1014         bus->read = fec_phy_read;
1015         bus->write = fec_phy_write;
1016         bus->priv = eth;
1017         fec_set_dev_name(bus->name, dev_id);
1018
1019         ret = mdio_register(bus);
1020         if (ret) {
1021                 printf("mdio_register failed\n");
1022                 free(bus);
1023                 return NULL;
1024         }
1025         fec_mii_setspeed(eth);
1026         return bus;
1027 }
1028
1029 static int fecmxc_read_rom_hwaddr(struct udevice *dev)
1030 {
1031         struct fec_priv *priv = dev_get_priv(dev);
1032         struct eth_pdata *pdata = dev_get_plat(dev);
1033
1034         return fec_get_hwaddr(priv->dev_id, pdata->enetaddr);
1035 }
1036
1037 static int fecmxc_set_promisc(struct udevice *dev, bool enable)
1038 {
1039         struct fec_priv *priv = dev_get_priv(dev);
1040
1041         priv->promisc = enable;
1042
1043         return 0;
1044 }
1045
1046 static int fecmxc_free_pkt(struct udevice *dev, uchar *packet, int length)
1047 {
1048         if (packet)
1049                 free(packet);
1050
1051         return 0;
1052 }
1053
1054 static const struct eth_ops fecmxc_ops = {
1055         .start                  = fecmxc_init,
1056         .send                   = fecmxc_send,
1057         .recv                   = fecmxc_recv,
1058         .free_pkt               = fecmxc_free_pkt,
1059         .stop                   = fecmxc_halt,
1060         .write_hwaddr           = fecmxc_set_hwaddr,
1061         .read_rom_hwaddr        = fecmxc_read_rom_hwaddr,
1062         .set_promisc            = fecmxc_set_promisc,
1063 };
1064
1065 static int device_get_phy_addr(struct fec_priv *priv, struct udevice *dev)
1066 {
1067         struct ofnode_phandle_args phandle_args;
1068         int reg, ret;
1069
1070         ret = dev_read_phandle_with_args(dev, "phy-handle", NULL, 0, 0,
1071                                          &phandle_args);
1072         if (ret) {
1073                 priv->phy_of_node = ofnode_find_subnode(dev_ofnode(dev),
1074                                                         "fixed-link");
1075                 if (ofnode_valid(priv->phy_of_node))
1076                         return 0;
1077                 debug("Failed to find phy-handle (err = %d)\n", ret);
1078                 return ret;
1079         }
1080
1081         if (!ofnode_is_available(phandle_args.node))
1082                 return -ENOENT;
1083
1084         priv->phy_of_node = phandle_args.node;
1085         reg = ofnode_read_u32_default(phandle_args.node, "reg", 0);
1086
1087         return reg;
1088 }
1089
1090 static int fec_phy_init(struct fec_priv *priv, struct udevice *dev)
1091 {
1092         struct phy_device *phydev;
1093         int addr;
1094
1095         addr = device_get_phy_addr(priv, dev);
1096 #ifdef CONFIG_FEC_MXC_PHYADDR
1097         addr = CONFIG_FEC_MXC_PHYADDR;
1098 #endif
1099
1100         phydev = phy_connect(priv->bus, addr, dev, priv->interface);
1101         if (!phydev)
1102                 return -ENODEV;
1103
1104         priv->phydev = phydev;
1105         priv->phydev->node = priv->phy_of_node;
1106         phy_config(phydev);
1107
1108         return 0;
1109 }
1110
1111 #if CONFIG_IS_ENABLED(DM_GPIO)
1112 /* FEC GPIO reset */
1113 static void fec_gpio_reset(struct fec_priv *priv)
1114 {
1115         debug("fec_gpio_reset: fec_gpio_reset(dev)\n");
1116         if (dm_gpio_is_valid(&priv->phy_reset_gpio)) {
1117                 dm_gpio_set_value(&priv->phy_reset_gpio, 1);
1118                 mdelay(priv->reset_delay);
1119                 dm_gpio_set_value(&priv->phy_reset_gpio, 0);
1120                 if (priv->reset_post_delay)
1121                         mdelay(priv->reset_post_delay);
1122         }
1123 }
1124 #endif
1125
1126 static int fecmxc_probe(struct udevice *dev)
1127 {
1128         bool dm_mii_bus = true;
1129         struct eth_pdata *pdata = dev_get_plat(dev);
1130         struct fec_priv *priv = dev_get_priv(dev);
1131         struct mii_dev *bus = NULL;
1132         uint32_t start;
1133         int ret;
1134
1135         if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) {
1136                 if (enet_fused((ulong)priv->eth)) {
1137                         printf("SoC fuse indicates Ethernet@0x%lx is unavailable.\n", (ulong)priv->eth);
1138                         return -ENODEV;
1139                 }
1140         }
1141
1142         if (IS_ENABLED(CONFIG_IMX8)) {
1143                 ret = clk_get_by_name(dev, "ipg", &priv->ipg_clk);
1144                 if (ret < 0) {
1145                         debug("Can't get FEC ipg clk: %d\n", ret);
1146                         return ret;
1147                 }
1148                 ret = clk_enable(&priv->ipg_clk);
1149                 if (ret < 0) {
1150                         debug("Can't enable FEC ipg clk: %d\n", ret);
1151                         return ret;
1152                 }
1153
1154                 priv->clk_rate = clk_get_rate(&priv->ipg_clk);
1155         } else if (CONFIG_IS_ENABLED(CLK_CCF)) {
1156                 ret = clk_get_by_name(dev, "ipg", &priv->ipg_clk);
1157                 if (ret < 0) {
1158                         debug("Can't get FEC ipg clk: %d\n", ret);
1159                         return ret;
1160                 }
1161                 ret = clk_enable(&priv->ipg_clk);
1162                 if(ret)
1163                         return ret;
1164
1165                 ret = clk_get_by_name(dev, "ahb", &priv->ahb_clk);
1166                 if (ret < 0) {
1167                         debug("Can't get FEC ahb clk: %d\n", ret);
1168                         return ret;
1169                 }
1170                 ret = clk_enable(&priv->ahb_clk);
1171                 if (ret)
1172                         return ret;
1173
1174                 ret = clk_get_by_name(dev, "enet_out", &priv->clk_enet_out);
1175                 if (!ret) {
1176                         ret = clk_enable(&priv->clk_enet_out);
1177                         if (ret)
1178                                 return ret;
1179                 }
1180
1181                 ret = clk_get_by_name(dev, "enet_clk_ref", &priv->clk_ref);
1182                 if (!ret) {
1183                         ret = clk_enable(&priv->clk_ref);
1184                         if (ret)
1185                                 return ret;
1186                 }
1187
1188                 ret = clk_get_by_name(dev, "ptp", &priv->clk_ptp);
1189                 if (!ret) {
1190                         ret = clk_enable(&priv->clk_ptp);
1191                         if (ret)
1192                                 return ret;
1193                 }
1194
1195                 priv->clk_rate = clk_get_rate(&priv->ipg_clk);
1196         }
1197
1198         ret = fec_alloc_descs(priv);
1199         if (ret)
1200                 return ret;
1201
1202 #ifdef CONFIG_DM_REGULATOR
1203         if (priv->phy_supply) {
1204                 ret = regulator_set_enable(priv->phy_supply, true);
1205                 if (ret) {
1206                         printf("%s: Error enabling phy supply\n", dev->name);
1207                         return ret;
1208                 }
1209         }
1210 #endif
1211
1212 #if CONFIG_IS_ENABLED(DM_GPIO)
1213         fec_gpio_reset(priv);
1214 #endif
1215         /* Reset chip. */
1216         writel(readl(&priv->eth->ecntrl) | FEC_ECNTRL_RESET,
1217                &priv->eth->ecntrl);
1218         start = get_timer(0);
1219         while (readl(&priv->eth->ecntrl) & FEC_ECNTRL_RESET) {
1220                 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
1221                         printf("FEC MXC: Timeout resetting chip\n");
1222                         goto err_timeout;
1223                 }
1224                 udelay(10);
1225         }
1226
1227         fec_reg_setup(priv);
1228
1229         priv->dev_id = dev_seq(dev);
1230
1231 #ifdef CONFIG_DM_ETH_PHY
1232         bus = eth_phy_get_mdio_bus(dev);
1233 #endif
1234
1235         if (!bus) {
1236                 dm_mii_bus = false;
1237 #ifdef CONFIG_FEC_MXC_MDIO_BASE
1238                 bus = fec_get_miibus((ulong)CONFIG_FEC_MXC_MDIO_BASE,
1239                                      dev_seq(dev));
1240 #else
1241                 bus = fec_get_miibus((ulong)priv->eth, dev_seq(dev));
1242 #endif
1243         }
1244         if (!bus) {
1245                 ret = -ENOMEM;
1246                 goto err_mii;
1247         }
1248
1249 #ifdef CONFIG_DM_ETH_PHY
1250         eth_phy_set_mdio_bus(dev, bus);
1251 #endif
1252
1253         priv->bus = bus;
1254         priv->interface = pdata->phy_interface;
1255         switch (priv->interface) {
1256         case PHY_INTERFACE_MODE_MII:
1257                 priv->xcv_type = MII100;
1258                 break;
1259         case PHY_INTERFACE_MODE_RMII:
1260                 priv->xcv_type = RMII;
1261                 break;
1262         case PHY_INTERFACE_MODE_RGMII:
1263         case PHY_INTERFACE_MODE_RGMII_ID:
1264         case PHY_INTERFACE_MODE_RGMII_RXID:
1265         case PHY_INTERFACE_MODE_RGMII_TXID:
1266                 priv->xcv_type = RGMII;
1267                 break;
1268         default:
1269                 priv->xcv_type = MII100;
1270                 printf("Unsupported interface type %d defaulting to MII100\n",
1271                        priv->interface);
1272                 break;
1273         }
1274
1275         ret = fec_phy_init(priv, dev);
1276         if (ret)
1277                 goto err_phy;
1278
1279         return 0;
1280
1281 err_phy:
1282         if (!dm_mii_bus) {
1283                 mdio_unregister(bus);
1284                 free(bus);
1285         }
1286 err_mii:
1287 err_timeout:
1288         fec_free_descs(priv);
1289         return ret;
1290 }
1291
1292 static int fecmxc_remove(struct udevice *dev)
1293 {
1294         struct fec_priv *priv = dev_get_priv(dev);
1295
1296         free(priv->phydev);
1297         fec_free_descs(priv);
1298         mdio_unregister(priv->bus);
1299         mdio_free(priv->bus);
1300
1301 #ifdef CONFIG_DM_REGULATOR
1302         if (priv->phy_supply)
1303                 regulator_set_enable(priv->phy_supply, false);
1304 #endif
1305
1306         return 0;
1307 }
1308
1309 static int fecmxc_of_to_plat(struct udevice *dev)
1310 {
1311         int ret = 0;
1312         struct eth_pdata *pdata = dev_get_plat(dev);
1313         struct fec_priv *priv = dev_get_priv(dev);
1314
1315         pdata->iobase = dev_read_addr(dev);
1316         priv->eth = (struct ethernet_regs *)pdata->iobase;
1317
1318         pdata->phy_interface = dev_read_phy_mode(dev);
1319         if (pdata->phy_interface == PHY_INTERFACE_MODE_NA)
1320                 return -EINVAL;
1321
1322 #ifdef CONFIG_DM_REGULATOR
1323         device_get_supply_regulator(dev, "phy-supply", &priv->phy_supply);
1324 #endif
1325
1326 #if CONFIG_IS_ENABLED(DM_GPIO)
1327         ret = gpio_request_by_name(dev, "phy-reset-gpios", 0,
1328                                    &priv->phy_reset_gpio, GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
1329         if (ret < 0)
1330                 return 0; /* property is optional, don't return error! */
1331
1332         priv->reset_delay = dev_read_u32_default(dev, "phy-reset-duration", 1);
1333         if (priv->reset_delay > 1000) {
1334                 printf("FEC MXC: phy reset duration should be <= 1000ms\n");
1335                 /* property value wrong, use default value */
1336                 priv->reset_delay = 1;
1337         }
1338
1339         priv->reset_post_delay = dev_read_u32_default(dev,
1340                                                       "phy-reset-post-delay",
1341                                                       0);
1342         if (priv->reset_post_delay > 1000) {
1343                 printf("FEC MXC: phy reset post delay should be <= 1000ms\n");
1344                 /* property value wrong, use default value */
1345                 priv->reset_post_delay = 0;
1346         }
1347 #endif
1348
1349         return 0;
1350 }
1351
1352 static const struct udevice_id fecmxc_ids[] = {
1353         { .compatible = "fsl,imx28-fec" },
1354         { .compatible = "fsl,imx6q-fec" },
1355         { .compatible = "fsl,imx6sl-fec" },
1356         { .compatible = "fsl,imx6sx-fec" },
1357         { .compatible = "fsl,imx6ul-fec" },
1358         { .compatible = "fsl,imx53-fec" },
1359         { .compatible = "fsl,imx7d-fec" },
1360         { .compatible = "fsl,mvf600-fec" },
1361         { .compatible = "fsl,imx93-fec" },
1362         { }
1363 };
1364
1365 U_BOOT_DRIVER(fecmxc_gem) = {
1366         .name   = "fecmxc",
1367         .id     = UCLASS_ETH,
1368         .of_match = fecmxc_ids,
1369         .of_to_plat = fecmxc_of_to_plat,
1370         .probe  = fecmxc_probe,
1371         .remove = fecmxc_remove,
1372         .ops    = &fecmxc_ops,
1373         .priv_auto      = sizeof(struct fec_priv),
1374         .plat_auto      = sizeof(struct eth_pdata),
1375 };