Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 Ilya Yanok, Emcraft Systems Ltd <yanok@emcraft.com> |
| 3 | * (C) Copyright 2008,2009 Eric Jarrige <eric.jarrige@armadeus.org> |
| 4 | * (C) Copyright 2008 Armadeus Systems nc |
| 5 | * (C) Copyright 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
| 6 | * (C) Copyright 2007 Pengutronix, Juergen Beisert <j.beisert@pengutronix.de> |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 13 | #include <memalign.h> |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 14 | #include <net.h> |
Jeroen Hofstee | 84f64c8 | 2014-10-08 22:57:40 +0200 | [diff] [blame] | 15 | #include <netdev.h> |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 16 | #include <miiphy.h> |
| 17 | #include "fec_mxc.h" |
| 18 | |
| 19 | #include <asm/arch/clock.h> |
| 20 | #include <asm/arch/imx-regs.h> |
Peng Fan | fbecbaa | 2015-08-12 17:46:51 +0800 | [diff] [blame] | 21 | #include <asm/imx-common/sys_proto.h> |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 22 | #include <asm/io.h> |
| 23 | #include <asm/errno.h> |
Marek Vasut | e2a66e6 | 2012-08-26 10:19:20 +0000 | [diff] [blame] | 24 | #include <linux/compiler.h> |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Marek Vasut | bc1ce15 | 2012-08-29 03:49:49 +0000 | [diff] [blame] | 28 | /* |
| 29 | * Timeout the transfer after 5 mS. This is usually a bit more, since |
| 30 | * the code in the tightloops this timeout is used in adds some overhead. |
| 31 | */ |
| 32 | #define FEC_XFER_TIMEOUT 5000 |
| 33 | |
Fabio Estevam | db5b7f5 | 2014-08-25 13:34:16 -0300 | [diff] [blame] | 34 | /* |
| 35 | * The standard 32-byte DMA alignment does not work on mx6solox, which requires |
| 36 | * 64-byte alignment in the DMA RX FEC buffer. |
| 37 | * Introduce the FEC_DMA_RX_MINALIGN which can cover mx6solox needs and also |
| 38 | * satisfies the alignment on other SoCs (32-bytes) |
| 39 | */ |
| 40 | #define FEC_DMA_RX_MINALIGN 64 |
| 41 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 42 | #ifndef CONFIG_MII |
| 43 | #error "CONFIG_MII has to be defined!" |
| 44 | #endif |
| 45 | |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 46 | #ifndef CONFIG_FEC_XCV_TYPE |
| 47 | #define CONFIG_FEC_XCV_TYPE MII100 |
Marek Vasut | 392b850 | 2011-09-11 18:05:33 +0000 | [diff] [blame] | 48 | #endif |
| 49 | |
Marek Vasut | be7e87e | 2011-11-08 23:18:10 +0000 | [diff] [blame] | 50 | /* |
| 51 | * The i.MX28 operates with packets in big endian. We need to swap them before |
| 52 | * sending and after receiving. |
| 53 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 54 | #ifdef CONFIG_MX28 |
| 55 | #define CONFIG_FEC_MXC_SWAP_PACKET |
| 56 | #endif |
| 57 | |
| 58 | #define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd)) |
| 59 | |
| 60 | /* Check various alignment issues at compile time */ |
| 61 | #if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0)) |
| 62 | #error "ARCH_DMA_MINALIGN must be multiple of 16!" |
| 63 | #endif |
| 64 | |
| 65 | #if ((PKTALIGN < ARCH_DMA_MINALIGN) || \ |
| 66 | (PKTALIGN % ARCH_DMA_MINALIGN != 0)) |
| 67 | #error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!" |
Marek Vasut | be7e87e | 2011-11-08 23:18:10 +0000 | [diff] [blame] | 68 | #endif |
| 69 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 70 | #undef DEBUG |
| 71 | |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 72 | #ifdef CONFIG_FEC_MXC_SWAP_PACKET |
Marek Vasut | be7e87e | 2011-11-08 23:18:10 +0000 | [diff] [blame] | 73 | static void swap_packet(uint32_t *packet, int length) |
| 74 | { |
| 75 | int i; |
| 76 | |
| 77 | for (i = 0; i < DIV_ROUND_UP(length, 4); i++) |
| 78 | packet[i] = __swab32(packet[i]); |
| 79 | } |
| 80 | #endif |
| 81 | |
| 82 | /* |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 83 | * MII-interface related functions |
| 84 | */ |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 85 | static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr, |
| 86 | uint8_t regAddr) |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 87 | { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 88 | uint32_t reg; /* convenient holder for the PHY register */ |
| 89 | uint32_t phy; /* convenient holder for the PHY */ |
| 90 | uint32_t start; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 91 | int val; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 92 | |
| 93 | /* |
| 94 | * reading from any PHY's register is done by properly |
| 95 | * programming the FEC's MII data register. |
| 96 | */ |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 97 | writel(FEC_IEVENT_MII, ð->ievent); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 98 | reg = regAddr << FEC_MII_DATA_RA_SHIFT; |
| 99 | phy = phyAddr << FEC_MII_DATA_PA_SHIFT; |
| 100 | |
| 101 | writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA | |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 102 | phy | reg, ð->mii_data); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 103 | |
| 104 | /* |
| 105 | * wait for the related interrupt |
| 106 | */ |
Graeme Russ | a60d1e5 | 2011-07-15 23:31:37 +0000 | [diff] [blame] | 107 | start = get_timer(0); |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 108 | while (!(readl(ð->ievent) & FEC_IEVENT_MII)) { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 109 | if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) { |
| 110 | printf("Read MDIO failed...\n"); |
| 111 | return -1; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * clear mii interrupt bit |
| 117 | */ |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 118 | writel(FEC_IEVENT_MII, ð->ievent); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 119 | |
| 120 | /* |
| 121 | * it's now safe to read the PHY's register |
| 122 | */ |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 123 | val = (unsigned short)readl(ð->mii_data); |
| 124 | debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr, |
| 125 | regAddr, val); |
| 126 | return val; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 127 | } |
| 128 | |
Troy Kisky | 575c5cc | 2012-10-22 16:40:41 +0000 | [diff] [blame] | 129 | static void fec_mii_setspeed(struct ethernet_regs *eth) |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 130 | { |
| 131 | /* |
| 132 | * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock |
| 133 | * and do not drop the Preamble. |
Måns Rullgård | 843a3e5 | 2015-12-08 15:38:45 +0000 | [diff] [blame] | 134 | * |
| 135 | * The i.MX28 and i.MX6 types have another field in the MSCR (aka |
| 136 | * MII_SPEED) register that defines the MDIO output hold time. Earlier |
| 137 | * versions are RAZ there, so just ignore the difference and write the |
| 138 | * register always. |
| 139 | * The minimal hold time according to IEE802.3 (clause 22) is 10 ns. |
| 140 | * HOLDTIME + 1 is the number of clk cycles the fec is holding the |
| 141 | * output. |
| 142 | * The HOLDTIME bitfield takes values between 0 and 7 (inclusive). |
| 143 | * Given that ceil(clkrate / 5000000) <= 64, the calculation for |
| 144 | * holdtime cannot result in a value greater than 3. |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 145 | */ |
Måns Rullgård | 843a3e5 | 2015-12-08 15:38:45 +0000 | [diff] [blame] | 146 | u32 pclk = imx_get_fecclk(); |
| 147 | u32 speed = DIV_ROUND_UP(pclk, 5000000); |
| 148 | u32 hold = DIV_ROUND_UP(pclk, 100000000) - 1; |
Markus Niebel | 6ba45cc | 2014-02-05 10:54:11 +0100 | [diff] [blame] | 149 | #ifdef FEC_QUIRK_ENET_MAC |
| 150 | speed--; |
| 151 | #endif |
Måns Rullgård | 843a3e5 | 2015-12-08 15:38:45 +0000 | [diff] [blame] | 152 | writel(speed << 1 | hold << 8, ð->mii_speed); |
Troy Kisky | 575c5cc | 2012-10-22 16:40:41 +0000 | [diff] [blame] | 153 | debug("%s: mii_speed %08x\n", __func__, readl(ð->mii_speed)); |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 154 | } |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 155 | |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 156 | static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyAddr, |
| 157 | uint8_t regAddr, uint16_t data) |
| 158 | { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 159 | uint32_t reg; /* convenient holder for the PHY register */ |
| 160 | uint32_t phy; /* convenient holder for the PHY */ |
| 161 | uint32_t start; |
| 162 | |
| 163 | reg = regAddr << FEC_MII_DATA_RA_SHIFT; |
| 164 | phy = phyAddr << FEC_MII_DATA_PA_SHIFT; |
| 165 | |
| 166 | writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR | |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 167 | FEC_MII_DATA_TA | phy | reg | data, ð->mii_data); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * wait for the MII interrupt |
| 171 | */ |
Graeme Russ | a60d1e5 | 2011-07-15 23:31:37 +0000 | [diff] [blame] | 172 | start = get_timer(0); |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 173 | while (!(readl(ð->ievent) & FEC_IEVENT_MII)) { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 174 | if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) { |
| 175 | printf("Write MDIO failed...\n"); |
| 176 | return -1; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | /* |
| 181 | * clear MII interrupt bit |
| 182 | */ |
Marek Vasut | d133b88 | 2011-09-11 18:05:34 +0000 | [diff] [blame] | 183 | writel(FEC_IEVENT_MII, ð->ievent); |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 184 | debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr, |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 185 | regAddr, data); |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
Jeroen Hofstee | 84f64c8 | 2014-10-08 22:57:40 +0200 | [diff] [blame] | 190 | static int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr, |
| 191 | int regAddr) |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 192 | { |
| 193 | return fec_mdio_read(bus->priv, phyAddr, regAddr); |
| 194 | } |
| 195 | |
Jeroen Hofstee | 84f64c8 | 2014-10-08 22:57:40 +0200 | [diff] [blame] | 196 | static int fec_phy_write(struct mii_dev *bus, int phyAddr, int dev_addr, |
| 197 | int regAddr, u16 data) |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 198 | { |
| 199 | return fec_mdio_write(bus->priv, phyAddr, regAddr, data); |
| 200 | } |
| 201 | |
| 202 | #ifndef CONFIG_PHYLIB |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 203 | static int miiphy_restart_aneg(struct eth_device *dev) |
| 204 | { |
Stefano Babic | b774fe9 | 2012-02-22 00:24:35 +0000 | [diff] [blame] | 205 | int ret = 0; |
| 206 | #if !defined(CONFIG_FEC_MXC_NO_ANEG) |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 207 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 208 | struct ethernet_regs *eth = fec->bus->priv; |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 209 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 210 | /* |
| 211 | * Wake up from sleep if necessary |
| 212 | * Reset PHY, then delay 300ns |
| 213 | */ |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 214 | #ifdef CONFIG_MX27 |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 215 | fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF); |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 216 | #endif |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 217 | fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 218 | udelay(1000); |
| 219 | |
| 220 | /* |
| 221 | * Set the auto-negotiation advertisement register bits |
| 222 | */ |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 223 | fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE, |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 224 | LPA_100FULL | LPA_100HALF | LPA_10FULL | |
| 225 | LPA_10HALF | PHY_ANLPAR_PSB_802_3); |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 226 | fec_mdio_write(eth, fec->phy_id, MII_BMCR, |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 227 | BMCR_ANENABLE | BMCR_ANRESTART); |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 228 | |
| 229 | if (fec->mii_postcall) |
| 230 | ret = fec->mii_postcall(fec->phy_id); |
| 231 | |
Stefano Babic | b774fe9 | 2012-02-22 00:24:35 +0000 | [diff] [blame] | 232 | #endif |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 233 | return ret; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | static int miiphy_wait_aneg(struct eth_device *dev) |
| 237 | { |
| 238 | uint32_t start; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 239 | int status; |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 240 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 241 | struct ethernet_regs *eth = fec->bus->priv; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 242 | |
| 243 | /* |
| 244 | * Wait for AN completion |
| 245 | */ |
Graeme Russ | a60d1e5 | 2011-07-15 23:31:37 +0000 | [diff] [blame] | 246 | start = get_timer(0); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 247 | do { |
| 248 | if (get_timer(start) > (CONFIG_SYS_HZ * 5)) { |
| 249 | printf("%s: Autonegotiation timeout\n", dev->name); |
| 250 | return -1; |
| 251 | } |
| 252 | |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 253 | status = fec_mdio_read(eth, fec->phy_id, MII_BMSR); |
| 254 | if (status < 0) { |
| 255 | printf("%s: Autonegotiation failed. status: %d\n", |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 256 | dev->name, status); |
| 257 | return -1; |
| 258 | } |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 259 | } while (!(status & BMSR_LSTATUS)); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 260 | |
| 261 | return 0; |
| 262 | } |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 263 | #endif |
| 264 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 265 | static int fec_rx_task_enable(struct fec_priv *fec) |
| 266 | { |
Marek Vasut | c0b5a3b | 2012-08-29 03:49:51 +0000 | [diff] [blame] | 267 | writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static int fec_rx_task_disable(struct fec_priv *fec) |
| 272 | { |
| 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | static int fec_tx_task_enable(struct fec_priv *fec) |
| 277 | { |
Marek Vasut | c0b5a3b | 2012-08-29 03:49:51 +0000 | [diff] [blame] | 278 | writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 279 | return 0; |
| 280 | } |
| 281 | |
| 282 | static int fec_tx_task_disable(struct fec_priv *fec) |
| 283 | { |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Initialize receive task's buffer descriptors |
| 289 | * @param[in] fec all we know about the device yet |
| 290 | * @param[in] count receive buffer count to be allocated |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 291 | * @param[in] dsize desired size of each receive buffer |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 292 | * @return 0 on success |
| 293 | * |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 294 | * Init all RX descriptors to default values. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 295 | */ |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 296 | static void fec_rbd_init(struct fec_priv *fec, int count, int dsize) |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 297 | { |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 298 | uint32_t size; |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 299 | uint8_t *data; |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 300 | int i; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 301 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 302 | /* |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 303 | * Reload the RX descriptors with default values and wipe |
| 304 | * the RX buffers. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 305 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 306 | size = roundup(dsize, ARCH_DMA_MINALIGN); |
| 307 | for (i = 0; i < count; i++) { |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 308 | data = (uint8_t *)fec->rbd_base[i].data_pointer; |
| 309 | memset(data, 0, dsize); |
| 310 | flush_dcache_range((uint32_t)data, (uint32_t)data + size); |
| 311 | |
| 312 | fec->rbd_base[i].status = FEC_RBD_EMPTY; |
| 313 | fec->rbd_base[i].data_length = 0; |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /* Mark the last RBD to close the ring. */ |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 317 | fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 318 | fec->rbd_index = 0; |
| 319 | |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 320 | flush_dcache_range((unsigned)fec->rbd_base, |
| 321 | (unsigned)fec->rbd_base + size); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Initialize transmit task's buffer descriptors |
| 326 | * @param[in] fec all we know about the device yet |
| 327 | * |
| 328 | * Transmit buffers are created externally. We only have to init the BDs here.\n |
| 329 | * Note: There is a race condition in the hardware. When only one BD is in |
| 330 | * use it must be marked with the WRAP bit to use it for every transmitt. |
| 331 | * This bit in combination with the READY bit results into double transmit |
| 332 | * of each data buffer. It seems the state machine checks READY earlier then |
| 333 | * resetting it after the first transfer. |
| 334 | * Using two BDs solves this issue. |
| 335 | */ |
| 336 | static void fec_tbd_init(struct fec_priv *fec) |
| 337 | { |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 338 | unsigned addr = (unsigned)fec->tbd_base; |
| 339 | unsigned size = roundup(2 * sizeof(struct fec_bd), |
| 340 | ARCH_DMA_MINALIGN); |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 341 | |
| 342 | memset(fec->tbd_base, 0, size); |
| 343 | fec->tbd_base[0].status = 0; |
| 344 | fec->tbd_base[1].status = FEC_TBD_WRAP; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 345 | fec->tbd_index = 0; |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 346 | flush_dcache_range(addr, addr + size); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Mark the given read buffer descriptor as free |
| 351 | * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0 |
| 352 | * @param[in] pRbd buffer descriptor to mark free again |
| 353 | */ |
| 354 | static void fec_rbd_clean(int last, struct fec_bd *pRbd) |
| 355 | { |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 356 | unsigned short flags = FEC_RBD_EMPTY; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 357 | if (last) |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 358 | flags |= FEC_RBD_WRAP; |
| 359 | writew(flags, &pRbd->status); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 360 | writew(0, &pRbd->data_length); |
| 361 | } |
| 362 | |
Fabio Estevam | be252b6 | 2011-12-20 05:46:31 +0000 | [diff] [blame] | 363 | static int fec_get_hwaddr(struct eth_device *dev, int dev_id, |
| 364 | unsigned char *mac) |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 365 | { |
Fabio Estevam | be252b6 | 2011-12-20 05:46:31 +0000 | [diff] [blame] | 366 | imx_get_mac_from_fuse(dev_id, mac); |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 367 | return !is_valid_ethaddr(mac); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 368 | } |
| 369 | |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 370 | static int fec_set_hwaddr(struct eth_device *dev) |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 371 | { |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 372 | uchar *mac = dev->enetaddr; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 373 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
| 374 | |
| 375 | writel(0, &fec->eth->iaddr1); |
| 376 | writel(0, &fec->eth->iaddr2); |
| 377 | writel(0, &fec->eth->gaddr1); |
| 378 | writel(0, &fec->eth->gaddr2); |
| 379 | |
| 380 | /* |
| 381 | * Set physical address |
| 382 | */ |
| 383 | writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3], |
| 384 | &fec->eth->paddr1); |
| 385 | writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2); |
| 386 | |
| 387 | return 0; |
| 388 | } |
| 389 | |
Marek Vasut | a5990b2 | 2012-05-01 11:09:41 +0000 | [diff] [blame] | 390 | /* |
| 391 | * Do initial configuration of the FEC registers |
| 392 | */ |
| 393 | static void fec_reg_setup(struct fec_priv *fec) |
| 394 | { |
| 395 | uint32_t rcntrl; |
| 396 | |
| 397 | /* |
| 398 | * Set interrupt mask register |
| 399 | */ |
| 400 | writel(0x00000000, &fec->eth->imask); |
| 401 | |
| 402 | /* |
| 403 | * Clear FEC-Lite interrupt event register(IEVENT) |
| 404 | */ |
| 405 | writel(0xffffffff, &fec->eth->ievent); |
| 406 | |
| 407 | |
| 408 | /* |
| 409 | * Set FEC-Lite receive control register(R_CNTRL): |
| 410 | */ |
| 411 | |
| 412 | /* Start with frame length = 1518, common for all modes. */ |
| 413 | rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT; |
benoit.thebaudeau@advans | 9d2d924 | 2012-07-19 02:12:46 +0000 | [diff] [blame] | 414 | if (fec->xcv_type != SEVENWIRE) /* xMII modes */ |
| 415 | rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE; |
| 416 | if (fec->xcv_type == RGMII) |
Marek Vasut | a5990b2 | 2012-05-01 11:09:41 +0000 | [diff] [blame] | 417 | rcntrl |= FEC_RCNTRL_RGMII; |
| 418 | else if (fec->xcv_type == RMII) |
| 419 | rcntrl |= FEC_RCNTRL_RMII; |
Marek Vasut | a5990b2 | 2012-05-01 11:09:41 +0000 | [diff] [blame] | 420 | |
| 421 | writel(rcntrl, &fec->eth->r_cntrl); |
| 422 | } |
| 423 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 424 | /** |
| 425 | * Start the FEC engine |
| 426 | * @param[in] dev Our device to handle |
| 427 | */ |
| 428 | static int fec_open(struct eth_device *edev) |
| 429 | { |
| 430 | struct fec_priv *fec = (struct fec_priv *)edev->priv; |
Troy Kisky | 28774cb | 2012-02-07 14:08:46 +0000 | [diff] [blame] | 431 | int speed; |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 432 | uint32_t addr, size; |
| 433 | int i; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 434 | |
| 435 | debug("fec_open: fec_open(dev)\n"); |
| 436 | /* full-duplex, heartbeat disabled */ |
| 437 | writel(1 << 2, &fec->eth->x_cntrl); |
| 438 | fec->rbd_index = 0; |
| 439 | |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 440 | /* Invalidate all descriptors */ |
| 441 | for (i = 0; i < FEC_RBD_NUM - 1; i++) |
| 442 | fec_rbd_clean(0, &fec->rbd_base[i]); |
| 443 | fec_rbd_clean(1, &fec->rbd_base[i]); |
| 444 | |
| 445 | /* Flush the descriptors into RAM */ |
| 446 | size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), |
| 447 | ARCH_DMA_MINALIGN); |
| 448 | addr = (uint32_t)fec->rbd_base; |
| 449 | flush_dcache_range(addr, addr + size); |
| 450 | |
Troy Kisky | 28774cb | 2012-02-07 14:08:46 +0000 | [diff] [blame] | 451 | #ifdef FEC_QUIRK_ENET_MAC |
Jason Liu | 2ef2b95 | 2011-12-16 05:17:07 +0000 | [diff] [blame] | 452 | /* Enable ENET HW endian SWAP */ |
| 453 | writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP, |
| 454 | &fec->eth->ecntrl); |
| 455 | /* Enable ENET store and forward mode */ |
| 456 | writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD, |
| 457 | &fec->eth->x_wmrk); |
| 458 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 459 | /* |
| 460 | * Enable FEC-Lite controller |
| 461 | */ |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 462 | writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN, |
| 463 | &fec->eth->ecntrl); |
Fabio Estevam | 7df51fd | 2013-09-13 00:36:27 -0300 | [diff] [blame] | 464 | #if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL) |
John Rigby | 740d6ae | 2010-01-25 23:12:57 -0700 | [diff] [blame] | 465 | udelay(100); |
| 466 | /* |
| 467 | * setup the MII gasket for RMII mode |
| 468 | */ |
| 469 | |
| 470 | /* disable the gasket */ |
| 471 | writew(0, &fec->eth->miigsk_enr); |
| 472 | |
| 473 | /* wait for the gasket to be disabled */ |
| 474 | while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) |
| 475 | udelay(2); |
| 476 | |
| 477 | /* configure gasket for RMII, 50 MHz, no loopback, and no echo */ |
| 478 | writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr); |
| 479 | |
| 480 | /* re-enable the gasket */ |
| 481 | writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr); |
| 482 | |
| 483 | /* wait until MII gasket is ready */ |
| 484 | int max_loops = 10; |
| 485 | while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) { |
| 486 | if (--max_loops <= 0) { |
| 487 | printf("WAIT for MII Gasket ready timed out\n"); |
| 488 | break; |
| 489 | } |
| 490 | } |
| 491 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 492 | |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 493 | #ifdef CONFIG_PHYLIB |
Troy Kisky | 4dc27ee | 2012-10-22 16:40:45 +0000 | [diff] [blame] | 494 | { |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 495 | /* Start up the PHY */ |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 496 | int ret = phy_startup(fec->phydev); |
| 497 | |
| 498 | if (ret) { |
| 499 | printf("Could not initialize PHY %s\n", |
| 500 | fec->phydev->dev->name); |
| 501 | return ret; |
| 502 | } |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 503 | speed = fec->phydev->speed; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 504 | } |
| 505 | #else |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 506 | miiphy_wait_aneg(edev); |
Troy Kisky | 28774cb | 2012-02-07 14:08:46 +0000 | [diff] [blame] | 507 | speed = miiphy_speed(edev->name, fec->phy_id); |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 508 | miiphy_duplex(edev->name, fec->phy_id); |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 509 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 510 | |
Troy Kisky | 28774cb | 2012-02-07 14:08:46 +0000 | [diff] [blame] | 511 | #ifdef FEC_QUIRK_ENET_MAC |
| 512 | { |
| 513 | u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED; |
Alison Wang | bcb6e90 | 2013-05-27 22:55:43 +0000 | [diff] [blame] | 514 | u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T; |
Troy Kisky | 28774cb | 2012-02-07 14:08:46 +0000 | [diff] [blame] | 515 | if (speed == _1000BASET) |
| 516 | ecr |= FEC_ECNTRL_SPEED; |
| 517 | else if (speed != _100BASET) |
| 518 | rcr |= FEC_RCNTRL_RMII_10T; |
| 519 | writel(ecr, &fec->eth->ecntrl); |
| 520 | writel(rcr, &fec->eth->r_cntrl); |
| 521 | } |
| 522 | #endif |
| 523 | debug("%s:Speed=%i\n", __func__, speed); |
| 524 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 525 | /* |
| 526 | * Enable SmartDMA receive task |
| 527 | */ |
| 528 | fec_rx_task_enable(fec); |
| 529 | |
| 530 | udelay(100000); |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static int fec_init(struct eth_device *dev, bd_t* bd) |
| 535 | { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 536 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 537 | uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop; |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 538 | int i; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 539 | |
John Rigby | e9319f1 | 2010-10-13 14:31:08 -0600 | [diff] [blame] | 540 | /* Initialize MAC address */ |
| 541 | fec_set_hwaddr(dev); |
| 542 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 543 | /* |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 544 | * Setup transmit descriptors, there are two in total. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 545 | */ |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 546 | fec_tbd_init(fec); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 547 | |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 548 | /* Setup receive descriptors. */ |
| 549 | fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 550 | |
Marek Vasut | a5990b2 | 2012-05-01 11:09:41 +0000 | [diff] [blame] | 551 | fec_reg_setup(fec); |
Marek Vasut | 9eb3770 | 2011-09-11 18:05:31 +0000 | [diff] [blame] | 552 | |
benoit.thebaudeau@advans | f41471e | 2012-07-19 02:12:58 +0000 | [diff] [blame] | 553 | if (fec->xcv_type != SEVENWIRE) |
Troy Kisky | 575c5cc | 2012-10-22 16:40:41 +0000 | [diff] [blame] | 554 | fec_mii_setspeed(fec->bus->priv); |
Marek Vasut | 9eb3770 | 2011-09-11 18:05:31 +0000 | [diff] [blame] | 555 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 556 | /* |
| 557 | * Set Opcode/Pause Duration Register |
| 558 | */ |
| 559 | writel(0x00010020, &fec->eth->op_pause); /* FIXME 0xffff0020; */ |
| 560 | writel(0x2, &fec->eth->x_wmrk); |
| 561 | /* |
| 562 | * Set multicast address filter |
| 563 | */ |
| 564 | writel(0x00000000, &fec->eth->gaddr1); |
| 565 | writel(0x00000000, &fec->eth->gaddr2); |
| 566 | |
| 567 | |
Peng Fan | fbecbaa | 2015-08-12 17:46:51 +0800 | [diff] [blame] | 568 | /* Do not access reserved register for i.MX6UL */ |
Peng Fan | 87f9989 | 2016-05-23 18:36:04 +0800 | [diff] [blame] | 569 | if (!is_mx6ul()) { |
Peng Fan | fbecbaa | 2015-08-12 17:46:51 +0800 | [diff] [blame] | 570 | /* clear MIB RAM */ |
| 571 | for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4) |
| 572 | writel(0, i); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 573 | |
Peng Fan | fbecbaa | 2015-08-12 17:46:51 +0800 | [diff] [blame] | 574 | /* FIFO receive start register */ |
| 575 | writel(0x520, &fec->eth->r_fstart); |
| 576 | } |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 577 | |
| 578 | /* size and address of each buffer */ |
| 579 | writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr); |
| 580 | writel((uint32_t)fec->tbd_base, &fec->eth->etdsr); |
| 581 | writel((uint32_t)fec->rbd_base, &fec->eth->erdsr); |
| 582 | |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 583 | #ifndef CONFIG_PHYLIB |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 584 | if (fec->xcv_type != SEVENWIRE) |
| 585 | miiphy_restart_aneg(dev); |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 586 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 587 | fec_open(dev); |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * Halt the FEC engine |
| 593 | * @param[in] dev Our device to handle |
| 594 | */ |
| 595 | static void fec_halt(struct eth_device *dev) |
| 596 | { |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 597 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 598 | int counter = 0xffff; |
| 599 | |
| 600 | /* |
| 601 | * issue graceful stop command to the FEC transmitter if necessary |
| 602 | */ |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 603 | writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl), |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 604 | &fec->eth->x_cntrl); |
| 605 | |
| 606 | debug("eth_halt: wait for stop regs\n"); |
| 607 | /* |
| 608 | * wait for graceful stop to register |
| 609 | */ |
| 610 | while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA))) |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 611 | udelay(1); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 612 | |
| 613 | /* |
| 614 | * Disable SmartDMA tasks |
| 615 | */ |
| 616 | fec_tx_task_disable(fec); |
| 617 | fec_rx_task_disable(fec); |
| 618 | |
| 619 | /* |
| 620 | * Disable the Ethernet Controller |
| 621 | * Note: this will also reset the BD index counter! |
| 622 | */ |
John Rigby | 740d6ae | 2010-01-25 23:12:57 -0700 | [diff] [blame] | 623 | writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN, |
| 624 | &fec->eth->ecntrl); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 625 | fec->rbd_index = 0; |
| 626 | fec->tbd_index = 0; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 627 | debug("eth_halt: done\n"); |
| 628 | } |
| 629 | |
| 630 | /** |
| 631 | * Transmit one frame |
| 632 | * @param[in] dev Our ethernet device to handle |
| 633 | * @param[in] packet Pointer to the data to be transmitted |
| 634 | * @param[in] length Data count in bytes |
| 635 | * @return 0 on success |
| 636 | */ |
Joe Hershberger | 442dac4 | 2012-05-21 14:45:27 +0000 | [diff] [blame] | 637 | static int fec_send(struct eth_device *dev, void *packet, int length) |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 638 | { |
| 639 | unsigned int status; |
Marek Vasut | efe24d2 | 2012-08-26 10:19:21 +0000 | [diff] [blame] | 640 | uint32_t size, end; |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 641 | uint32_t addr; |
Marek Vasut | bc1ce15 | 2012-08-29 03:49:49 +0000 | [diff] [blame] | 642 | int timeout = FEC_XFER_TIMEOUT; |
| 643 | int ret = 0; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 644 | |
| 645 | /* |
| 646 | * This routine transmits one frame. This routine only accepts |
| 647 | * 6-byte Ethernet addresses. |
| 648 | */ |
| 649 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
| 650 | |
| 651 | /* |
| 652 | * Check for valid length of data. |
| 653 | */ |
| 654 | if ((length > 1500) || (length <= 0)) { |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 655 | printf("Payload (%d) too large\n", length); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 656 | return -1; |
| 657 | } |
| 658 | |
| 659 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 660 | * Setup the transmit buffer. We are always using the first buffer for |
| 661 | * transmission, the second will be empty and only used to stop the DMA |
| 662 | * engine. We also flush the packet to RAM here to avoid cache trouble. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 663 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 664 | #ifdef CONFIG_FEC_MXC_SWAP_PACKET |
Marek Vasut | be7e87e | 2011-11-08 23:18:10 +0000 | [diff] [blame] | 665 | swap_packet((uint32_t *)packet, length); |
| 666 | #endif |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 667 | |
| 668 | addr = (uint32_t)packet; |
Marek Vasut | efe24d2 | 2012-08-26 10:19:21 +0000 | [diff] [blame] | 669 | end = roundup(addr + length, ARCH_DMA_MINALIGN); |
| 670 | addr &= ~(ARCH_DMA_MINALIGN - 1); |
| 671 | flush_dcache_range(addr, end); |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 672 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 673 | writew(length, &fec->tbd_base[fec->tbd_index].data_length); |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 674 | writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer); |
| 675 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 676 | /* |
| 677 | * update BD's status now |
| 678 | * This block: |
| 679 | * - is always the last in a chain (means no chain) |
| 680 | * - should transmitt the CRC |
| 681 | * - might be the last BD in the list, so the address counter should |
| 682 | * wrap (-> keep the WRAP flag) |
| 683 | */ |
| 684 | status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP; |
| 685 | status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY; |
| 686 | writew(status, &fec->tbd_base[fec->tbd_index].status); |
| 687 | |
| 688 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 689 | * Flush data cache. This code flushes both TX descriptors to RAM. |
| 690 | * After this code, the descriptors will be safely in RAM and we |
| 691 | * can start DMA. |
| 692 | */ |
| 693 | size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN); |
| 694 | addr = (uint32_t)fec->tbd_base; |
| 695 | flush_dcache_range(addr, addr + size); |
| 696 | |
| 697 | /* |
Marek Vasut | ab94cd4 | 2013-07-12 01:03:04 +0200 | [diff] [blame] | 698 | * Below we read the DMA descriptor's last four bytes back from the |
| 699 | * DRAM. This is important in order to make sure that all WRITE |
| 700 | * operations on the bus that were triggered by previous cache FLUSH |
| 701 | * have completed. |
| 702 | * |
| 703 | * Otherwise, on MX28, it is possible to observe a corruption of the |
| 704 | * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM |
| 705 | * for the bus structure of MX28. The scenario is as follows: |
| 706 | * |
| 707 | * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going |
| 708 | * to DRAM due to flush_dcache_range() |
| 709 | * 2) ARM core writes the FEC registers via AHB_ARB2 |
| 710 | * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3 |
| 711 | * |
| 712 | * Note that 2) does sometimes finish before 1) due to reordering of |
| 713 | * WRITE accesses on the AHB bus, therefore triggering 3) before the |
| 714 | * DMA descriptor is fully written into DRAM. This results in occasional |
| 715 | * corruption of the DMA descriptor. |
| 716 | */ |
| 717 | readl(addr + size - 4); |
| 718 | |
| 719 | /* |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 720 | * Enable SmartDMA transmit task |
| 721 | */ |
| 722 | fec_tx_task_enable(fec); |
| 723 | |
| 724 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 725 | * Wait until frame is sent. On each turn of the wait cycle, we must |
| 726 | * invalidate data cache to see what's really in RAM. Also, we need |
| 727 | * barrier here. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 728 | */ |
Marek Vasut | 6744909 | 2012-08-29 03:49:50 +0000 | [diff] [blame] | 729 | while (--timeout) { |
Marek Vasut | c0b5a3b | 2012-08-29 03:49:51 +0000 | [diff] [blame] | 730 | if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR)) |
Marek Vasut | bc1ce15 | 2012-08-29 03:49:49 +0000 | [diff] [blame] | 731 | break; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 732 | } |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 733 | |
Fabio Estevam | f599288 | 2014-08-25 13:34:17 -0300 | [diff] [blame] | 734 | if (!timeout) { |
| 735 | ret = -EINVAL; |
| 736 | goto out; |
| 737 | } |
| 738 | |
| 739 | /* |
| 740 | * The TDAR bit is cleared when the descriptors are all out from TX |
| 741 | * but on mx6solox we noticed that the READY bit is still not cleared |
| 742 | * right after TDAR. |
| 743 | * These are two distinct signals, and in IC simulation, we found that |
| 744 | * TDAR always gets cleared prior than the READY bit of last BD becomes |
| 745 | * cleared. |
| 746 | * In mx6solox, we use a later version of FEC IP. It looks like that |
| 747 | * this intrinsic behaviour of TDAR bit has changed in this newer FEC |
| 748 | * version. |
| 749 | * |
| 750 | * Fix this by polling the READY bit of BD after the TDAR polling, |
| 751 | * which covers the mx6solox case and does not harm the other SoCs. |
| 752 | */ |
| 753 | timeout = FEC_XFER_TIMEOUT; |
| 754 | while (--timeout) { |
| 755 | invalidate_dcache_range(addr, addr + size); |
| 756 | if (!(readw(&fec->tbd_base[fec->tbd_index].status) & |
| 757 | FEC_TBD_READY)) |
| 758 | break; |
| 759 | } |
| 760 | |
Marek Vasut | 6744909 | 2012-08-29 03:49:50 +0000 | [diff] [blame] | 761 | if (!timeout) |
| 762 | ret = -EINVAL; |
| 763 | |
Fabio Estevam | f599288 | 2014-08-25 13:34:17 -0300 | [diff] [blame] | 764 | out: |
Marek Vasut | 6744909 | 2012-08-29 03:49:50 +0000 | [diff] [blame] | 765 | debug("fec_send: status 0x%x index %d ret %i\n", |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 766 | readw(&fec->tbd_base[fec->tbd_index].status), |
Marek Vasut | 6744909 | 2012-08-29 03:49:50 +0000 | [diff] [blame] | 767 | fec->tbd_index, ret); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 768 | /* for next transmission use the other buffer */ |
| 769 | if (fec->tbd_index) |
| 770 | fec->tbd_index = 0; |
| 771 | else |
| 772 | fec->tbd_index = 1; |
| 773 | |
Marek Vasut | bc1ce15 | 2012-08-29 03:49:49 +0000 | [diff] [blame] | 774 | return ret; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | /** |
| 778 | * Pull one frame from the card |
| 779 | * @param[in] dev Our ethernet device to handle |
| 780 | * @return Length of packet read |
| 781 | */ |
| 782 | static int fec_recv(struct eth_device *dev) |
| 783 | { |
| 784 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
| 785 | struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index]; |
| 786 | unsigned long ievent; |
| 787 | int frame_length, len = 0; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 788 | uint16_t bd_status; |
Marek Vasut | efe24d2 | 2012-08-26 10:19:21 +0000 | [diff] [blame] | 789 | uint32_t addr, size, end; |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 790 | int i; |
Fabio Estevam | fd37f19 | 2013-09-17 23:13:10 -0300 | [diff] [blame] | 791 | ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 792 | |
| 793 | /* |
| 794 | * Check if any critical events have happened |
| 795 | */ |
| 796 | ievent = readl(&fec->eth->ievent); |
| 797 | writel(ievent, &fec->eth->ievent); |
Marek Vasut | eda959f | 2011-10-24 23:40:03 +0000 | [diff] [blame] | 798 | debug("fec_recv: ievent 0x%lx\n", ievent); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 799 | if (ievent & FEC_IEVENT_BABR) { |
| 800 | fec_halt(dev); |
| 801 | fec_init(dev, fec->bd); |
| 802 | printf("some error: 0x%08lx\n", ievent); |
| 803 | return 0; |
| 804 | } |
| 805 | if (ievent & FEC_IEVENT_HBERR) { |
| 806 | /* Heartbeat error */ |
| 807 | writel(0x00000001 | readl(&fec->eth->x_cntrl), |
| 808 | &fec->eth->x_cntrl); |
| 809 | } |
| 810 | if (ievent & FEC_IEVENT_GRA) { |
| 811 | /* Graceful stop complete */ |
| 812 | if (readl(&fec->eth->x_cntrl) & 0x00000001) { |
| 813 | fec_halt(dev); |
| 814 | writel(~0x00000001 & readl(&fec->eth->x_cntrl), |
| 815 | &fec->eth->x_cntrl); |
| 816 | fec_init(dev, fec->bd); |
| 817 | } |
| 818 | } |
| 819 | |
| 820 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 821 | * Read the buffer status. Before the status can be read, the data cache |
| 822 | * must be invalidated, because the data in RAM might have been changed |
| 823 | * by DMA. The descriptors are properly aligned to cachelines so there's |
| 824 | * no need to worry they'd overlap. |
| 825 | * |
| 826 | * WARNING: By invalidating the descriptor here, we also invalidate |
| 827 | * the descriptors surrounding this one. Therefore we can NOT change the |
| 828 | * contents of this descriptor nor the surrounding ones. The problem is |
| 829 | * that in order to mark the descriptor as processed, we need to change |
| 830 | * the descriptor. The solution is to mark the whole cache line when all |
| 831 | * descriptors in the cache line are processed. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 832 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 833 | addr = (uint32_t)rbd; |
| 834 | addr &= ~(ARCH_DMA_MINALIGN - 1); |
| 835 | size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN); |
| 836 | invalidate_dcache_range(addr, addr + size); |
| 837 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 838 | bd_status = readw(&rbd->status); |
| 839 | debug("fec_recv: status 0x%x\n", bd_status); |
| 840 | |
| 841 | if (!(bd_status & FEC_RBD_EMPTY)) { |
| 842 | if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) && |
| 843 | ((readw(&rbd->data_length) - 4) > 14)) { |
| 844 | /* |
| 845 | * Get buffer address and size |
| 846 | */ |
Albert ARIBAUD \(3ADEV\) | b189584 | 2015-06-19 14:18:27 +0200 | [diff] [blame] | 847 | addr = readl(&rbd->data_pointer); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 848 | frame_length = readw(&rbd->data_length) - 4; |
| 849 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 850 | * Invalidate data cache over the buffer |
| 851 | */ |
Marek Vasut | efe24d2 | 2012-08-26 10:19:21 +0000 | [diff] [blame] | 852 | end = roundup(addr + frame_length, ARCH_DMA_MINALIGN); |
| 853 | addr &= ~(ARCH_DMA_MINALIGN - 1); |
| 854 | invalidate_dcache_range(addr, end); |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 855 | |
| 856 | /* |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 857 | * Fill the buffer and pass it to upper layers |
| 858 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 859 | #ifdef CONFIG_FEC_MXC_SWAP_PACKET |
Albert ARIBAUD \(3ADEV\) | b189584 | 2015-06-19 14:18:27 +0200 | [diff] [blame] | 860 | swap_packet((uint32_t *)addr, frame_length); |
Marek Vasut | be7e87e | 2011-11-08 23:18:10 +0000 | [diff] [blame] | 861 | #endif |
Albert ARIBAUD \(3ADEV\) | b189584 | 2015-06-19 14:18:27 +0200 | [diff] [blame] | 862 | memcpy(buff, (char *)addr, frame_length); |
Joe Hershberger | 1fd92db | 2015-04-08 01:41:06 -0500 | [diff] [blame] | 863 | net_process_received_packet(buff, frame_length); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 864 | len = frame_length; |
| 865 | } else { |
| 866 | if (bd_status & FEC_RBD_ERR) |
Albert ARIBAUD \(3ADEV\) | b189584 | 2015-06-19 14:18:27 +0200 | [diff] [blame] | 867 | printf("error frame: 0x%08x 0x%08x\n", |
| 868 | addr, bd_status); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 869 | } |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 870 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 871 | /* |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 872 | * Free the current buffer, restart the engine and move forward |
| 873 | * to the next buffer. Here we check if the whole cacheline of |
| 874 | * descriptors was already processed and if so, we mark it free |
| 875 | * as whole. |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 876 | */ |
Eric Nelson | 5c1ad3e | 2012-03-15 18:33:25 +0000 | [diff] [blame] | 877 | size = RXDESC_PER_CACHELINE - 1; |
| 878 | if ((fec->rbd_index & size) == size) { |
| 879 | i = fec->rbd_index - size; |
| 880 | addr = (uint32_t)&fec->rbd_base[i]; |
| 881 | for (; i <= fec->rbd_index ; i++) { |
| 882 | fec_rbd_clean(i == (FEC_RBD_NUM - 1), |
| 883 | &fec->rbd_base[i]); |
| 884 | } |
| 885 | flush_dcache_range(addr, |
| 886 | addr + ARCH_DMA_MINALIGN); |
| 887 | } |
| 888 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 889 | fec_rx_task_enable(fec); |
| 890 | fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM; |
| 891 | } |
| 892 | debug("fec_recv: stop\n"); |
| 893 | |
| 894 | return len; |
| 895 | } |
| 896 | |
Troy Kisky | ef8e3a3 | 2012-10-22 16:40:44 +0000 | [diff] [blame] | 897 | static void fec_set_dev_name(char *dest, int dev_id) |
| 898 | { |
| 899 | sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id); |
| 900 | } |
| 901 | |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 902 | static int fec_alloc_descs(struct fec_priv *fec) |
| 903 | { |
| 904 | unsigned int size; |
| 905 | int i; |
| 906 | uint8_t *data; |
| 907 | |
| 908 | /* Allocate TX descriptors. */ |
| 909 | size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN); |
| 910 | fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size); |
| 911 | if (!fec->tbd_base) |
| 912 | goto err_tx; |
| 913 | |
| 914 | /* Allocate RX descriptors. */ |
| 915 | size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN); |
| 916 | fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size); |
| 917 | if (!fec->rbd_base) |
| 918 | goto err_rx; |
| 919 | |
| 920 | memset(fec->rbd_base, 0, size); |
| 921 | |
| 922 | /* Allocate RX buffers. */ |
| 923 | |
| 924 | /* Maximum RX buffer size. */ |
Fabio Estevam | db5b7f5 | 2014-08-25 13:34:16 -0300 | [diff] [blame] | 925 | size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN); |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 926 | for (i = 0; i < FEC_RBD_NUM; i++) { |
Fabio Estevam | db5b7f5 | 2014-08-25 13:34:16 -0300 | [diff] [blame] | 927 | data = memalign(FEC_DMA_RX_MINALIGN, size); |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 928 | if (!data) { |
| 929 | printf("%s: error allocating rxbuf %d\n", __func__, i); |
| 930 | goto err_ring; |
| 931 | } |
| 932 | |
| 933 | memset(data, 0, size); |
| 934 | |
| 935 | fec->rbd_base[i].data_pointer = (uint32_t)data; |
| 936 | fec->rbd_base[i].status = FEC_RBD_EMPTY; |
| 937 | fec->rbd_base[i].data_length = 0; |
| 938 | /* Flush the buffer to memory. */ |
| 939 | flush_dcache_range((uint32_t)data, (uint32_t)data + size); |
| 940 | } |
| 941 | |
| 942 | /* Mark the last RBD to close the ring. */ |
| 943 | fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY; |
| 944 | |
| 945 | fec->rbd_index = 0; |
| 946 | fec->tbd_index = 0; |
| 947 | |
| 948 | return 0; |
| 949 | |
| 950 | err_ring: |
| 951 | for (; i >= 0; i--) |
| 952 | free((void *)fec->rbd_base[i].data_pointer); |
| 953 | free(fec->rbd_base); |
| 954 | err_rx: |
| 955 | free(fec->tbd_base); |
| 956 | err_tx: |
| 957 | return -ENOMEM; |
| 958 | } |
| 959 | |
| 960 | static void fec_free_descs(struct fec_priv *fec) |
| 961 | { |
| 962 | int i; |
| 963 | |
| 964 | for (i = 0; i < FEC_RBD_NUM; i++) |
| 965 | free((void *)fec->rbd_base[i].data_pointer); |
| 966 | free(fec->rbd_base); |
| 967 | free(fec->tbd_base); |
| 968 | } |
| 969 | |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 970 | #ifdef CONFIG_PHYLIB |
| 971 | int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr, |
| 972 | struct mii_dev *bus, struct phy_device *phydev) |
| 973 | #else |
| 974 | static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr, |
| 975 | struct mii_dev *bus, int phy_id) |
| 976 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 977 | { |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 978 | struct eth_device *edev; |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 979 | struct fec_priv *fec; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 980 | unsigned char ethaddr[6]; |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 981 | uint32_t start; |
| 982 | int ret = 0; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 983 | |
| 984 | /* create and fill edev struct */ |
| 985 | edev = (struct eth_device *)malloc(sizeof(struct eth_device)); |
| 986 | if (!edev) { |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 987 | puts("fec_mxc: not enough malloc memory for eth_device\n"); |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 988 | ret = -ENOMEM; |
| 989 | goto err1; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 990 | } |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 991 | |
| 992 | fec = (struct fec_priv *)malloc(sizeof(struct fec_priv)); |
| 993 | if (!fec) { |
| 994 | puts("fec_mxc: not enough malloc memory for fec_priv\n"); |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 995 | ret = -ENOMEM; |
| 996 | goto err2; |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 997 | } |
| 998 | |
Nobuhiro Iwamatsu | de0b957 | 2010-10-19 14:03:42 +0900 | [diff] [blame] | 999 | memset(edev, 0, sizeof(*edev)); |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 1000 | memset(fec, 0, sizeof(*fec)); |
| 1001 | |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 1002 | ret = fec_alloc_descs(fec); |
| 1003 | if (ret) |
| 1004 | goto err3; |
| 1005 | |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1006 | edev->priv = fec; |
| 1007 | edev->init = fec_init; |
| 1008 | edev->send = fec_send; |
| 1009 | edev->recv = fec_recv; |
| 1010 | edev->halt = fec_halt; |
Heiko Schocher | fb57ec9 | 2010-04-27 07:43:52 +0200 | [diff] [blame] | 1011 | edev->write_hwaddr = fec_set_hwaddr; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1012 | |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 1013 | fec->eth = (struct ethernet_regs *)base_addr; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1014 | fec->bd = bd; |
| 1015 | |
Marek Vasut | 392b850 | 2011-09-11 18:05:33 +0000 | [diff] [blame] | 1016 | fec->xcv_type = CONFIG_FEC_XCV_TYPE; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1017 | |
| 1018 | /* Reset chip. */ |
John Rigby | cb17b92 | 2010-01-25 23:12:55 -0700 | [diff] [blame] | 1019 | writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl); |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 1020 | start = get_timer(0); |
| 1021 | while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) { |
| 1022 | if (get_timer(start) > (CONFIG_SYS_HZ * 5)) { |
| 1023 | printf("FEC MXC: Timeout reseting chip\n"); |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 1024 | goto err4; |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 1025 | } |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1026 | udelay(10); |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 1027 | } |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1028 | |
Marek Vasut | a5990b2 | 2012-05-01 11:09:41 +0000 | [diff] [blame] | 1029 | fec_reg_setup(fec); |
Troy Kisky | ef8e3a3 | 2012-10-22 16:40:44 +0000 | [diff] [blame] | 1030 | fec_set_dev_name(edev->name, dev_id); |
| 1031 | fec->dev_id = (dev_id == -1) ? 0 : dev_id; |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 1032 | fec->bus = bus; |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1033 | fec_mii_setspeed(bus->priv); |
| 1034 | #ifdef CONFIG_PHYLIB |
| 1035 | fec->phydev = phydev; |
| 1036 | phy_connect_dev(phydev, edev); |
| 1037 | /* Configure phy */ |
| 1038 | phy_config(phydev); |
| 1039 | #else |
| 1040 | fec->phy_id = phy_id; |
| 1041 | #endif |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1042 | eth_register(edev); |
| 1043 | |
Fabio Estevam | be252b6 | 2011-12-20 05:46:31 +0000 | [diff] [blame] | 1044 | if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) { |
| 1045 | debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr); |
Stefano Babic | 4294b24 | 2010-02-01 14:51:30 +0100 | [diff] [blame] | 1046 | memcpy(edev->enetaddr, ethaddr, 6); |
Eric Nelson | ddb636b | 2013-08-02 10:37:00 -0700 | [diff] [blame] | 1047 | if (!getenv("ethaddr")) |
| 1048 | eth_setenv_enetaddr("ethaddr", ethaddr); |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1049 | } |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 1050 | return ret; |
Marek Vasut | 79e5f27 | 2013-10-12 20:36:25 +0200 | [diff] [blame] | 1051 | err4: |
| 1052 | fec_free_descs(fec); |
Marek Vasut | e382fb4 | 2011-09-11 18:05:37 +0000 | [diff] [blame] | 1053 | err3: |
| 1054 | free(fec); |
| 1055 | err2: |
| 1056 | free(edev); |
| 1057 | err1: |
| 1058 | return ret; |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1059 | } |
| 1060 | |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1061 | struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id) |
| 1062 | { |
| 1063 | struct ethernet_regs *eth = (struct ethernet_regs *)base_addr; |
| 1064 | struct mii_dev *bus; |
| 1065 | int ret; |
| 1066 | |
| 1067 | bus = mdio_alloc(); |
| 1068 | if (!bus) { |
| 1069 | printf("mdio_alloc failed\n"); |
| 1070 | return NULL; |
| 1071 | } |
| 1072 | bus->read = fec_phy_read; |
| 1073 | bus->write = fec_phy_write; |
| 1074 | bus->priv = eth; |
| 1075 | fec_set_dev_name(bus->name, dev_id); |
| 1076 | |
| 1077 | ret = mdio_register(bus); |
| 1078 | if (ret) { |
| 1079 | printf("mdio_register failed\n"); |
| 1080 | free(bus); |
| 1081 | return NULL; |
| 1082 | } |
| 1083 | fec_mii_setspeed(eth); |
| 1084 | return bus; |
| 1085 | } |
| 1086 | |
Troy Kisky | eef2448 | 2012-10-22 16:40:42 +0000 | [diff] [blame] | 1087 | int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr) |
| 1088 | { |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1089 | uint32_t base_mii; |
| 1090 | struct mii_dev *bus = NULL; |
| 1091 | #ifdef CONFIG_PHYLIB |
| 1092 | struct phy_device *phydev = NULL; |
| 1093 | #endif |
| 1094 | int ret; |
| 1095 | |
| 1096 | #ifdef CONFIG_MX28 |
| 1097 | /* |
| 1098 | * The i.MX28 has two ethernet interfaces, but they are not equal. |
| 1099 | * Only the first one can access the MDIO bus. |
| 1100 | */ |
| 1101 | base_mii = MXS_ENET0_BASE; |
| 1102 | #else |
| 1103 | base_mii = addr; |
| 1104 | #endif |
Troy Kisky | eef2448 | 2012-10-22 16:40:42 +0000 | [diff] [blame] | 1105 | debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1106 | bus = fec_get_miibus(base_mii, dev_id); |
| 1107 | if (!bus) |
| 1108 | return -ENOMEM; |
| 1109 | #ifdef CONFIG_PHYLIB |
| 1110 | phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII); |
| 1111 | if (!phydev) { |
Måns Rullgård | 845a57b | 2015-12-08 15:38:46 +0000 | [diff] [blame] | 1112 | mdio_unregister(bus); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1113 | free(bus); |
| 1114 | return -ENOMEM; |
| 1115 | } |
| 1116 | ret = fec_probe(bd, dev_id, addr, bus, phydev); |
| 1117 | #else |
| 1118 | ret = fec_probe(bd, dev_id, addr, bus, phy_id); |
| 1119 | #endif |
| 1120 | if (ret) { |
| 1121 | #ifdef CONFIG_PHYLIB |
| 1122 | free(phydev); |
| 1123 | #endif |
Måns Rullgård | 845a57b | 2015-12-08 15:38:46 +0000 | [diff] [blame] | 1124 | mdio_unregister(bus); |
Troy Kisky | fe428b9 | 2012-10-22 16:40:46 +0000 | [diff] [blame] | 1125 | free(bus); |
| 1126 | } |
| 1127 | return ret; |
Troy Kisky | eef2448 | 2012-10-22 16:40:42 +0000 | [diff] [blame] | 1128 | } |
| 1129 | |
Troy Kisky | 09439c3 | 2012-10-22 16:40:40 +0000 | [diff] [blame] | 1130 | #ifdef CONFIG_FEC_MXC_PHYADDR |
Ilya Yanok | 0b23fb3 | 2009-07-21 19:32:21 +0400 | [diff] [blame] | 1131 | int fecmxc_initialize(bd_t *bd) |
| 1132 | { |
Troy Kisky | eef2448 | 2012-10-22 16:40:42 +0000 | [diff] [blame] | 1133 | return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR, |
| 1134 | IMX_FEC_BASE); |
Marek Vasut | 9e27e9d | 2011-09-16 01:13:47 +0200 | [diff] [blame] | 1135 | } |
| 1136 | #endif |
| 1137 | |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 1138 | #ifndef CONFIG_PHYLIB |
Marek Vasut | 2e5f442 | 2011-09-11 18:05:36 +0000 | [diff] [blame] | 1139 | int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int)) |
| 1140 | { |
| 1141 | struct fec_priv *fec = (struct fec_priv *)dev->priv; |
| 1142 | fec->mii_postcall = cb; |
| 1143 | return 0; |
| 1144 | } |
Troy Kisky | 13947f4 | 2012-02-07 14:08:47 +0000 | [diff] [blame] | 1145 | #endif |