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