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