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