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