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