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