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