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