| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Dave DNET Ethernet Controller driver | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2008 Dave S.r.l. <www.dave.eu> | 
|  | 5 | * Copyright (C) 2009 Ilya Yanok, Emcraft Systems Ltd, <yanok@emcraft.com> | 
|  | 6 | * | 
|  | 7 | * This program is free software; you can redistribute it and/or modify | 
|  | 8 | * it under the terms of the GNU General Public License version 2 as | 
|  | 9 | * published by the Free Software Foundation. | 
|  | 10 | */ | 
| Geert Uytterhoeven | 142071b | 2009-03-24 13:19:50 -0700 | [diff] [blame] | 11 | #include <linux/io.h> | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 12 | #include <linux/module.h> | 
|  | 13 | #include <linux/moduleparam.h> | 
|  | 14 | #include <linux/kernel.h> | 
|  | 15 | #include <linux/types.h> | 
|  | 16 | #include <linux/slab.h> | 
|  | 17 | #include <linux/delay.h> | 
|  | 18 | #include <linux/init.h> | 
| Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 19 | #include <linux/interrupt.h> | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 20 | #include <linux/netdevice.h> | 
|  | 21 | #include <linux/etherdevice.h> | 
|  | 22 | #include <linux/dma-mapping.h> | 
|  | 23 | #include <linux/platform_device.h> | 
|  | 24 | #include <linux/phy.h> | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | #include "dnet.h" | 
|  | 27 |  | 
|  | 28 | #undef DEBUG | 
|  | 29 |  | 
|  | 30 | /* function for reading internal MAC register */ | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 31 | static u16 dnet_readw_mac(struct dnet *bp, u16 reg) | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 32 | { | 
|  | 33 | u16 data_read; | 
|  | 34 |  | 
|  | 35 | /* issue a read */ | 
|  | 36 | dnet_writel(bp, reg, MACREG_ADDR); | 
|  | 37 |  | 
|  | 38 | /* since a read/write op to the MAC is very slow, | 
|  | 39 | * we must wait before reading the data */ | 
|  | 40 | ndelay(500); | 
|  | 41 |  | 
|  | 42 | /* read data read from the MAC register */ | 
|  | 43 | data_read = dnet_readl(bp, MACREG_DATA); | 
|  | 44 |  | 
|  | 45 | /* all done */ | 
|  | 46 | return data_read; | 
|  | 47 | } | 
|  | 48 |  | 
|  | 49 | /* function for writing internal MAC register */ | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 50 | static void dnet_writew_mac(struct dnet *bp, u16 reg, u16 val) | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 51 | { | 
|  | 52 | /* load data to write */ | 
|  | 53 | dnet_writel(bp, val, MACREG_DATA); | 
|  | 54 |  | 
|  | 55 | /* issue a write */ | 
|  | 56 | dnet_writel(bp, reg | DNET_INTERNAL_WRITE, MACREG_ADDR); | 
|  | 57 |  | 
|  | 58 | /* since a read/write op to the MAC is very slow, | 
|  | 59 | * we must wait before exiting */ | 
|  | 60 | ndelay(500); | 
|  | 61 | } | 
|  | 62 |  | 
|  | 63 | static void __dnet_set_hwaddr(struct dnet *bp) | 
|  | 64 | { | 
|  | 65 | u16 tmp; | 
|  | 66 |  | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 67 | tmp = be16_to_cpup((__be16 *)bp->dev->dev_addr); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 68 | dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_0_REG, tmp); | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 69 | tmp = be16_to_cpup((__be16 *)(bp->dev->dev_addr + 2)); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 70 | dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_1_REG, tmp); | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 71 | tmp = be16_to_cpup((__be16 *)(bp->dev->dev_addr + 4)); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 72 | dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_2_REG, tmp); | 
|  | 73 | } | 
|  | 74 |  | 
|  | 75 | static void __devinit dnet_get_hwaddr(struct dnet *bp) | 
|  | 76 | { | 
|  | 77 | u16 tmp; | 
|  | 78 | u8 addr[6]; | 
|  | 79 |  | 
|  | 80 | /* | 
|  | 81 | * from MAC docs: | 
|  | 82 | * "Note that the MAC address is stored in the registers in Hexadecimal | 
|  | 83 | * form. For example, to set the MAC Address to: AC-DE-48-00-00-80 | 
|  | 84 | * would require writing 0xAC (octet 0) to address 0x0B (high byte of | 
|  | 85 | * Mac_addr[15:0]), 0xDE (octet 1) to address 0x0A (Low byte of | 
|  | 86 | * Mac_addr[15:0]), 0x48 (octet 2) to address 0x0D (high byte of | 
|  | 87 | * Mac_addr[15:0]), 0x00 (octet 3) to address 0x0C (Low byte of | 
|  | 88 | * Mac_addr[15:0]), 0x00 (octet 4) to address 0x0F (high byte of | 
|  | 89 | * Mac_addr[15:0]), and 0x80 (octet 5) to address * 0x0E (Low byte of | 
|  | 90 | * Mac_addr[15:0]). | 
|  | 91 | */ | 
|  | 92 | tmp = dnet_readw_mac(bp, DNET_INTERNAL_MAC_ADDR_0_REG); | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 93 | *((__be16 *)addr) = cpu_to_be16(tmp); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 94 | tmp = dnet_readw_mac(bp, DNET_INTERNAL_MAC_ADDR_1_REG); | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 95 | *((__be16 *)(addr + 2)) = cpu_to_be16(tmp); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 96 | tmp = dnet_readw_mac(bp, DNET_INTERNAL_MAC_ADDR_2_REG); | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 97 | *((__be16 *)(addr + 4)) = cpu_to_be16(tmp); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 98 |  | 
|  | 99 | if (is_valid_ether_addr(addr)) | 
|  | 100 | memcpy(bp->dev->dev_addr, addr, sizeof(addr)); | 
|  | 101 | } | 
|  | 102 |  | 
|  | 103 | static int dnet_mdio_read(struct mii_bus *bus, int mii_id, int regnum) | 
|  | 104 | { | 
|  | 105 | struct dnet *bp = bus->priv; | 
|  | 106 | u16 value; | 
|  | 107 |  | 
|  | 108 | while (!(dnet_readw_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG) | 
|  | 109 | & DNET_INTERNAL_GMII_MNG_CMD_FIN)) | 
|  | 110 | cpu_relax(); | 
|  | 111 |  | 
|  | 112 | /* only 5 bits allowed for phy-addr and reg_offset */ | 
|  | 113 | mii_id &= 0x1f; | 
|  | 114 | regnum &= 0x1f; | 
|  | 115 |  | 
|  | 116 | /* prepare reg_value for a read */ | 
|  | 117 | value = (mii_id << 8); | 
|  | 118 | value |= regnum; | 
|  | 119 |  | 
|  | 120 | /* write control word */ | 
|  | 121 | dnet_writew_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG, value); | 
|  | 122 |  | 
|  | 123 | /* wait for end of transfer */ | 
|  | 124 | while (!(dnet_readw_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG) | 
|  | 125 | & DNET_INTERNAL_GMII_MNG_CMD_FIN)) | 
|  | 126 | cpu_relax(); | 
|  | 127 |  | 
|  | 128 | value = dnet_readw_mac(bp, DNET_INTERNAL_GMII_MNG_DAT_REG); | 
|  | 129 |  | 
|  | 130 | pr_debug("mdio_read %02x:%02x <- %04x\n", mii_id, regnum, value); | 
|  | 131 |  | 
|  | 132 | return value; | 
|  | 133 | } | 
|  | 134 |  | 
|  | 135 | static int dnet_mdio_write(struct mii_bus *bus, int mii_id, int regnum, | 
|  | 136 | u16 value) | 
|  | 137 | { | 
|  | 138 | struct dnet *bp = bus->priv; | 
|  | 139 | u16 tmp; | 
|  | 140 |  | 
|  | 141 | pr_debug("mdio_write %02x:%02x <- %04x\n", mii_id, regnum, value); | 
|  | 142 |  | 
|  | 143 | while (!(dnet_readw_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG) | 
|  | 144 | & DNET_INTERNAL_GMII_MNG_CMD_FIN)) | 
|  | 145 | cpu_relax(); | 
|  | 146 |  | 
|  | 147 | /* prepare for a write operation */ | 
|  | 148 | tmp = (1 << 13); | 
|  | 149 |  | 
|  | 150 | /* only 5 bits allowed for phy-addr and reg_offset */ | 
|  | 151 | mii_id &= 0x1f; | 
|  | 152 | regnum &= 0x1f; | 
|  | 153 |  | 
|  | 154 | /* only 16 bits on data */ | 
|  | 155 | value &= 0xffff; | 
|  | 156 |  | 
|  | 157 | /* prepare reg_value for a write */ | 
|  | 158 | tmp |= (mii_id << 8); | 
|  | 159 | tmp |= regnum; | 
|  | 160 |  | 
|  | 161 | /* write data to write first */ | 
|  | 162 | dnet_writew_mac(bp, DNET_INTERNAL_GMII_MNG_DAT_REG, value); | 
|  | 163 |  | 
|  | 164 | /* write control word */ | 
|  | 165 | dnet_writew_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG, tmp); | 
|  | 166 |  | 
|  | 167 | while (!(dnet_readw_mac(bp, DNET_INTERNAL_GMII_MNG_CTL_REG) | 
|  | 168 | & DNET_INTERNAL_GMII_MNG_CMD_FIN)) | 
|  | 169 | cpu_relax(); | 
|  | 170 |  | 
|  | 171 | return 0; | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | static int dnet_mdio_reset(struct mii_bus *bus) | 
|  | 175 | { | 
|  | 176 | return 0; | 
|  | 177 | } | 
|  | 178 |  | 
|  | 179 | static void dnet_handle_link_change(struct net_device *dev) | 
|  | 180 | { | 
|  | 181 | struct dnet *bp = netdev_priv(dev); | 
|  | 182 | struct phy_device *phydev = bp->phy_dev; | 
|  | 183 | unsigned long flags; | 
|  | 184 | u32 mode_reg, ctl_reg; | 
|  | 185 |  | 
|  | 186 | int status_change = 0; | 
|  | 187 |  | 
|  | 188 | spin_lock_irqsave(&bp->lock, flags); | 
|  | 189 |  | 
|  | 190 | mode_reg = dnet_readw_mac(bp, DNET_INTERNAL_MODE_REG); | 
|  | 191 | ctl_reg = dnet_readw_mac(bp, DNET_INTERNAL_RXTX_CONTROL_REG); | 
|  | 192 |  | 
|  | 193 | if (phydev->link) { | 
|  | 194 | if (bp->duplex != phydev->duplex) { | 
|  | 195 | if (phydev->duplex) | 
|  | 196 | ctl_reg &= | 
|  | 197 | ~(DNET_INTERNAL_RXTX_CONTROL_ENABLEHALFDUP); | 
|  | 198 | else | 
|  | 199 | ctl_reg |= | 
|  | 200 | DNET_INTERNAL_RXTX_CONTROL_ENABLEHALFDUP; | 
|  | 201 |  | 
|  | 202 | bp->duplex = phydev->duplex; | 
|  | 203 | status_change = 1; | 
|  | 204 | } | 
|  | 205 |  | 
|  | 206 | if (bp->speed != phydev->speed) { | 
|  | 207 | status_change = 1; | 
|  | 208 | switch (phydev->speed) { | 
|  | 209 | case 1000: | 
|  | 210 | mode_reg |= DNET_INTERNAL_MODE_GBITEN; | 
|  | 211 | break; | 
|  | 212 | case 100: | 
|  | 213 | case 10: | 
|  | 214 | mode_reg &= ~DNET_INTERNAL_MODE_GBITEN; | 
|  | 215 | break; | 
|  | 216 | default: | 
|  | 217 | printk(KERN_WARNING | 
|  | 218 | "%s: Ack!  Speed (%d) is not " | 
|  | 219 | "10/100/1000!\n", dev->name, | 
|  | 220 | phydev->speed); | 
|  | 221 | break; | 
|  | 222 | } | 
|  | 223 | bp->speed = phydev->speed; | 
|  | 224 | } | 
|  | 225 | } | 
|  | 226 |  | 
|  | 227 | if (phydev->link != bp->link) { | 
|  | 228 | if (phydev->link) { | 
|  | 229 | mode_reg |= | 
|  | 230 | (DNET_INTERNAL_MODE_RXEN | DNET_INTERNAL_MODE_TXEN); | 
|  | 231 | } else { | 
|  | 232 | mode_reg &= | 
|  | 233 | ~(DNET_INTERNAL_MODE_RXEN | | 
|  | 234 | DNET_INTERNAL_MODE_TXEN); | 
|  | 235 | bp->speed = 0; | 
|  | 236 | bp->duplex = -1; | 
|  | 237 | } | 
|  | 238 | bp->link = phydev->link; | 
|  | 239 |  | 
|  | 240 | status_change = 1; | 
|  | 241 | } | 
|  | 242 |  | 
|  | 243 | if (status_change) { | 
|  | 244 | dnet_writew_mac(bp, DNET_INTERNAL_RXTX_CONTROL_REG, ctl_reg); | 
|  | 245 | dnet_writew_mac(bp, DNET_INTERNAL_MODE_REG, mode_reg); | 
|  | 246 | } | 
|  | 247 |  | 
|  | 248 | spin_unlock_irqrestore(&bp->lock, flags); | 
|  | 249 |  | 
|  | 250 | if (status_change) { | 
|  | 251 | if (phydev->link) | 
|  | 252 | printk(KERN_INFO "%s: link up (%d/%s)\n", | 
|  | 253 | dev->name, phydev->speed, | 
|  | 254 | DUPLEX_FULL == phydev->duplex ? "Full" : "Half"); | 
|  | 255 | else | 
|  | 256 | printk(KERN_INFO "%s: link down\n", dev->name); | 
|  | 257 | } | 
|  | 258 | } | 
|  | 259 |  | 
|  | 260 | static int dnet_mii_probe(struct net_device *dev) | 
|  | 261 | { | 
|  | 262 | struct dnet *bp = netdev_priv(dev); | 
|  | 263 | struct phy_device *phydev = NULL; | 
|  | 264 | int phy_addr; | 
|  | 265 |  | 
|  | 266 | /* find the first phy */ | 
|  | 267 | for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) { | 
|  | 268 | if (bp->mii_bus->phy_map[phy_addr]) { | 
|  | 269 | phydev = bp->mii_bus->phy_map[phy_addr]; | 
|  | 270 | break; | 
|  | 271 | } | 
|  | 272 | } | 
|  | 273 |  | 
|  | 274 | if (!phydev) { | 
|  | 275 | printk(KERN_ERR "%s: no PHY found\n", dev->name); | 
|  | 276 | return -ENODEV; | 
|  | 277 | } | 
|  | 278 |  | 
|  | 279 | /* TODO : add pin_irq */ | 
|  | 280 |  | 
|  | 281 | /* attach the mac to the phy */ | 
|  | 282 | if (bp->capabilities & DNET_HAS_RMII) { | 
| Stephen Rothwell | 6580f57 | 2009-03-22 21:22:48 -0700 | [diff] [blame] | 283 | phydev = phy_connect(dev, dev_name(&phydev->dev), | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 284 | &dnet_handle_link_change, 0, | 
|  | 285 | PHY_INTERFACE_MODE_RMII); | 
|  | 286 | } else { | 
| Stephen Rothwell | 6580f57 | 2009-03-22 21:22:48 -0700 | [diff] [blame] | 287 | phydev = phy_connect(dev, dev_name(&phydev->dev), | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 288 | &dnet_handle_link_change, 0, | 
|  | 289 | PHY_INTERFACE_MODE_MII); | 
|  | 290 | } | 
|  | 291 |  | 
|  | 292 | if (IS_ERR(phydev)) { | 
|  | 293 | printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name); | 
|  | 294 | return PTR_ERR(phydev); | 
|  | 295 | } | 
|  | 296 |  | 
|  | 297 | /* mask with MAC supported features */ | 
|  | 298 | if (bp->capabilities & DNET_HAS_GIGABIT) | 
|  | 299 | phydev->supported &= PHY_GBIT_FEATURES; | 
|  | 300 | else | 
|  | 301 | phydev->supported &= PHY_BASIC_FEATURES; | 
|  | 302 |  | 
|  | 303 | phydev->supported |= SUPPORTED_Asym_Pause | SUPPORTED_Pause; | 
|  | 304 |  | 
|  | 305 | phydev->advertising = phydev->supported; | 
|  | 306 |  | 
|  | 307 | bp->link = 0; | 
|  | 308 | bp->speed = 0; | 
|  | 309 | bp->duplex = -1; | 
|  | 310 | bp->phy_dev = phydev; | 
|  | 311 |  | 
|  | 312 | return 0; | 
|  | 313 | } | 
|  | 314 |  | 
|  | 315 | static int dnet_mii_init(struct dnet *bp) | 
|  | 316 | { | 
|  | 317 | int err, i; | 
|  | 318 |  | 
|  | 319 | bp->mii_bus = mdiobus_alloc(); | 
|  | 320 | if (bp->mii_bus == NULL) | 
|  | 321 | return -ENOMEM; | 
|  | 322 |  | 
|  | 323 | bp->mii_bus->name = "dnet_mii_bus"; | 
|  | 324 | bp->mii_bus->read = &dnet_mdio_read; | 
|  | 325 | bp->mii_bus->write = &dnet_mdio_write; | 
|  | 326 | bp->mii_bus->reset = &dnet_mdio_reset; | 
|  | 327 |  | 
|  | 328 | snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%x", 0); | 
|  | 329 |  | 
|  | 330 | bp->mii_bus->priv = bp; | 
|  | 331 |  | 
|  | 332 | bp->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL); | 
|  | 333 | if (!bp->mii_bus->irq) { | 
|  | 334 | err = -ENOMEM; | 
|  | 335 | goto err_out; | 
|  | 336 | } | 
|  | 337 |  | 
|  | 338 | for (i = 0; i < PHY_MAX_ADDR; i++) | 
|  | 339 | bp->mii_bus->irq[i] = PHY_POLL; | 
|  | 340 |  | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 341 | if (mdiobus_register(bp->mii_bus)) { | 
|  | 342 | err = -ENXIO; | 
|  | 343 | goto err_out_free_mdio_irq; | 
|  | 344 | } | 
|  | 345 |  | 
|  | 346 | if (dnet_mii_probe(bp->dev) != 0) { | 
|  | 347 | err = -ENXIO; | 
|  | 348 | goto err_out_unregister_bus; | 
|  | 349 | } | 
|  | 350 |  | 
|  | 351 | return 0; | 
|  | 352 |  | 
|  | 353 | err_out_unregister_bus: | 
|  | 354 | mdiobus_unregister(bp->mii_bus); | 
|  | 355 | err_out_free_mdio_irq: | 
|  | 356 | kfree(bp->mii_bus->irq); | 
|  | 357 | err_out: | 
|  | 358 | mdiobus_free(bp->mii_bus); | 
|  | 359 | return err; | 
|  | 360 | } | 
|  | 361 |  | 
|  | 362 | /* For Neptune board: LINK1000 as Link LED and TX as activity LED */ | 
| Harvey Harrison | 35f2516 | 2010-10-12 22:20:34 +0000 | [diff] [blame] | 363 | static int dnet_phy_marvell_fixup(struct phy_device *phydev) | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 364 | { | 
|  | 365 | return phy_write(phydev, 0x18, 0x4148); | 
|  | 366 | } | 
|  | 367 |  | 
|  | 368 | static void dnet_update_stats(struct dnet *bp) | 
|  | 369 | { | 
|  | 370 | u32 __iomem *reg = bp->regs + DNET_RX_PKT_IGNR_CNT; | 
|  | 371 | u32 *p = &bp->hw_stats.rx_pkt_ignr; | 
|  | 372 | u32 *end = &bp->hw_stats.rx_byte + 1; | 
|  | 373 |  | 
|  | 374 | WARN_ON((unsigned long)(end - p - 1) != | 
|  | 375 | (DNET_RX_BYTE_CNT - DNET_RX_PKT_IGNR_CNT) / 4); | 
|  | 376 |  | 
|  | 377 | for (; p < end; p++, reg++) | 
|  | 378 | *p += readl(reg); | 
|  | 379 |  | 
|  | 380 | reg = bp->regs + DNET_TX_UNICAST_CNT; | 
|  | 381 | p = &bp->hw_stats.tx_unicast; | 
|  | 382 | end = &bp->hw_stats.tx_byte + 1; | 
|  | 383 |  | 
|  | 384 | WARN_ON((unsigned long)(end - p - 1) != | 
|  | 385 | (DNET_TX_BYTE_CNT - DNET_TX_UNICAST_CNT) / 4); | 
|  | 386 |  | 
|  | 387 | for (; p < end; p++, reg++) | 
|  | 388 | *p += readl(reg); | 
|  | 389 | } | 
|  | 390 |  | 
|  | 391 | static int dnet_poll(struct napi_struct *napi, int budget) | 
|  | 392 | { | 
|  | 393 | struct dnet *bp = container_of(napi, struct dnet, napi); | 
|  | 394 | struct net_device *dev = bp->dev; | 
|  | 395 | int npackets = 0; | 
|  | 396 | unsigned int pkt_len; | 
|  | 397 | struct sk_buff *skb; | 
|  | 398 | unsigned int *data_ptr; | 
|  | 399 | u32 int_enable; | 
|  | 400 | u32 cmd_word; | 
|  | 401 | int i; | 
|  | 402 |  | 
|  | 403 | while (npackets < budget) { | 
|  | 404 | /* | 
|  | 405 | * break out of while loop if there are no more | 
|  | 406 | * packets waiting | 
|  | 407 | */ | 
|  | 408 | if (!(dnet_readl(bp, RX_FIFO_WCNT) >> 16)) { | 
| Ilya Yanok | 9fae6c3 | 2009-03-13 09:51:46 -0700 | [diff] [blame] | 409 | napi_complete(napi); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 410 | int_enable = dnet_readl(bp, INTR_ENB); | 
|  | 411 | int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF; | 
|  | 412 | dnet_writel(bp, int_enable, INTR_ENB); | 
|  | 413 | return 0; | 
|  | 414 | } | 
|  | 415 |  | 
|  | 416 | cmd_word = dnet_readl(bp, RX_LEN_FIFO); | 
|  | 417 | pkt_len = cmd_word & 0xFFFF; | 
|  | 418 |  | 
|  | 419 | if (cmd_word & 0xDF180000) | 
|  | 420 | printk(KERN_ERR "%s packet receive error %x\n", | 
|  | 421 | __func__, cmd_word); | 
|  | 422 |  | 
|  | 423 | skb = dev_alloc_skb(pkt_len + 5); | 
|  | 424 | if (skb != NULL) { | 
|  | 425 | /* Align IP on 16 byte boundaries */ | 
|  | 426 | skb_reserve(skb, 2); | 
|  | 427 | /* | 
|  | 428 | * 'skb_put()' points to the start of sk_buff | 
|  | 429 | * data area. | 
|  | 430 | */ | 
|  | 431 | data_ptr = (unsigned int *)skb_put(skb, pkt_len); | 
|  | 432 | for (i = 0; i < (pkt_len + 3) >> 2; i++) | 
|  | 433 | *data_ptr++ = dnet_readl(bp, RX_DATA_FIFO); | 
|  | 434 | skb->protocol = eth_type_trans(skb, dev); | 
|  | 435 | netif_receive_skb(skb); | 
|  | 436 | npackets++; | 
|  | 437 | } else | 
|  | 438 | printk(KERN_NOTICE | 
|  | 439 | "%s: No memory to allocate a sk_buff of " | 
|  | 440 | "size %u.\n", dev->name, pkt_len); | 
|  | 441 | } | 
|  | 442 |  | 
|  | 443 | budget -= npackets; | 
|  | 444 |  | 
|  | 445 | if (npackets < budget) { | 
|  | 446 | /* We processed all packets available.  Tell NAPI it can | 
|  | 447 | * stop polling then re-enable rx interrupts */ | 
| Ilya Yanok | 9fae6c3 | 2009-03-13 09:51:46 -0700 | [diff] [blame] | 448 | napi_complete(napi); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 449 | int_enable = dnet_readl(bp, INTR_ENB); | 
|  | 450 | int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF; | 
|  | 451 | dnet_writel(bp, int_enable, INTR_ENB); | 
|  | 452 | return 0; | 
|  | 453 | } | 
|  | 454 |  | 
|  | 455 | /* There are still packets waiting */ | 
|  | 456 | return 1; | 
|  | 457 | } | 
|  | 458 |  | 
|  | 459 | static irqreturn_t dnet_interrupt(int irq, void *dev_id) | 
|  | 460 | { | 
|  | 461 | struct net_device *dev = dev_id; | 
|  | 462 | struct dnet *bp = netdev_priv(dev); | 
|  | 463 | u32 int_src, int_enable, int_current; | 
|  | 464 | unsigned long flags; | 
|  | 465 | unsigned int handled = 0; | 
|  | 466 |  | 
|  | 467 | spin_lock_irqsave(&bp->lock, flags); | 
|  | 468 |  | 
|  | 469 | /* read and clear the DNET irq (clear on read) */ | 
|  | 470 | int_src = dnet_readl(bp, INTR_SRC); | 
|  | 471 | int_enable = dnet_readl(bp, INTR_ENB); | 
|  | 472 | int_current = int_src & int_enable; | 
|  | 473 |  | 
|  | 474 | /* restart the queue if we had stopped it for TX fifo almost full */ | 
|  | 475 | if (int_current & DNET_INTR_SRC_TX_FIFOAE) { | 
|  | 476 | int_enable = dnet_readl(bp, INTR_ENB); | 
|  | 477 | int_enable &= ~DNET_INTR_ENB_TX_FIFOAE; | 
|  | 478 | dnet_writel(bp, int_enable, INTR_ENB); | 
|  | 479 | netif_wake_queue(dev); | 
|  | 480 | handled = 1; | 
|  | 481 | } | 
|  | 482 |  | 
|  | 483 | /* RX FIFO error checking */ | 
|  | 484 | if (int_current & | 
|  | 485 | (DNET_INTR_SRC_RX_CMDFIFOFF | DNET_INTR_SRC_RX_DATAFIFOFF)) { | 
|  | 486 | printk(KERN_ERR "%s: RX fifo error %x, irq %x\n", __func__, | 
|  | 487 | dnet_readl(bp, RX_STATUS), int_current); | 
|  | 488 | /* we can only flush the RX FIFOs */ | 
|  | 489 | dnet_writel(bp, DNET_SYS_CTL_RXFIFOFLUSH, SYS_CTL); | 
|  | 490 | ndelay(500); | 
|  | 491 | dnet_writel(bp, 0, SYS_CTL); | 
|  | 492 | handled = 1; | 
|  | 493 | } | 
|  | 494 |  | 
|  | 495 | /* TX FIFO error checking */ | 
|  | 496 | if (int_current & | 
|  | 497 | (DNET_INTR_SRC_TX_FIFOFULL | DNET_INTR_SRC_TX_DISCFRM)) { | 
|  | 498 | printk(KERN_ERR "%s: TX fifo error %x, irq %x\n", __func__, | 
|  | 499 | dnet_readl(bp, TX_STATUS), int_current); | 
|  | 500 | /* we can only flush the TX FIFOs */ | 
|  | 501 | dnet_writel(bp, DNET_SYS_CTL_TXFIFOFLUSH, SYS_CTL); | 
|  | 502 | ndelay(500); | 
|  | 503 | dnet_writel(bp, 0, SYS_CTL); | 
|  | 504 | handled = 1; | 
|  | 505 | } | 
|  | 506 |  | 
|  | 507 | if (int_current & DNET_INTR_SRC_RX_CMDFIFOAF) { | 
| Ilya Yanok | 9fae6c3 | 2009-03-13 09:51:46 -0700 | [diff] [blame] | 508 | if (napi_schedule_prep(&bp->napi)) { | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 509 | /* | 
|  | 510 | * There's no point taking any more interrupts | 
|  | 511 | * until we have processed the buffers | 
|  | 512 | */ | 
|  | 513 | /* Disable Rx interrupts and schedule NAPI poll */ | 
|  | 514 | int_enable = dnet_readl(bp, INTR_ENB); | 
|  | 515 | int_enable &= ~DNET_INTR_SRC_RX_CMDFIFOAF; | 
|  | 516 | dnet_writel(bp, int_enable, INTR_ENB); | 
| Ilya Yanok | 9fae6c3 | 2009-03-13 09:51:46 -0700 | [diff] [blame] | 517 | __napi_schedule(&bp->napi); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 518 | } | 
|  | 519 | handled = 1; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | if (!handled) | 
|  | 523 | pr_debug("%s: irq %x remains\n", __func__, int_current); | 
|  | 524 |  | 
|  | 525 | spin_unlock_irqrestore(&bp->lock, flags); | 
|  | 526 |  | 
|  | 527 | return IRQ_RETVAL(handled); | 
|  | 528 | } | 
|  | 529 |  | 
|  | 530 | #ifdef DEBUG | 
|  | 531 | static inline void dnet_print_skb(struct sk_buff *skb) | 
|  | 532 | { | 
|  | 533 | int k; | 
|  | 534 | printk(KERN_DEBUG PFX "data:"); | 
|  | 535 | for (k = 0; k < skb->len; k++) | 
|  | 536 | printk(" %02x", (unsigned int)skb->data[k]); | 
|  | 537 | printk("\n"); | 
|  | 538 | } | 
|  | 539 | #else | 
|  | 540 | #define dnet_print_skb(skb)	do {} while (0) | 
|  | 541 | #endif | 
|  | 542 |  | 
| Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 543 | static netdev_tx_t dnet_start_xmit(struct sk_buff *skb, struct net_device *dev) | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 544 | { | 
|  | 545 |  | 
|  | 546 | struct dnet *bp = netdev_priv(dev); | 
|  | 547 | u32 tx_status, irq_enable; | 
|  | 548 | unsigned int len, i, tx_cmd, wrsz; | 
|  | 549 | unsigned long flags; | 
|  | 550 | unsigned int *bufp; | 
|  | 551 |  | 
|  | 552 | tx_status = dnet_readl(bp, TX_STATUS); | 
|  | 553 |  | 
| David S. Miller | 2c5849e | 2009-03-11 23:28:57 -0700 | [diff] [blame] | 554 | pr_debug("start_xmit: len %u head %p data %p\n", | 
|  | 555 | skb->len, skb->head, skb->data); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 556 | dnet_print_skb(skb); | 
|  | 557 |  | 
|  | 558 | /* frame size (words) */ | 
|  | 559 | len = (skb->len + 3) >> 2; | 
|  | 560 |  | 
|  | 561 | spin_lock_irqsave(&bp->lock, flags); | 
|  | 562 |  | 
|  | 563 | tx_status = dnet_readl(bp, TX_STATUS); | 
|  | 564 |  | 
| David S. Miller | 2c5849e | 2009-03-11 23:28:57 -0700 | [diff] [blame] | 565 | bufp = (unsigned int *)(((unsigned long) skb->data) & ~0x3UL); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 566 | wrsz = (u32) skb->len + 3; | 
| David S. Miller | 2c5849e | 2009-03-11 23:28:57 -0700 | [diff] [blame] | 567 | wrsz += ((unsigned long) skb->data) & 0x3; | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 568 | wrsz >>= 2; | 
| David S. Miller | 2c5849e | 2009-03-11 23:28:57 -0700 | [diff] [blame] | 569 | tx_cmd = ((((unsigned long)(skb->data)) & 0x03) << 16) | (u32) skb->len; | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 570 |  | 
|  | 571 | /* check if there is enough room for the current frame */ | 
|  | 572 | if (wrsz < (DNET_FIFO_SIZE - dnet_readl(bp, TX_FIFO_WCNT))) { | 
|  | 573 | for (i = 0; i < wrsz; i++) | 
|  | 574 | dnet_writel(bp, *bufp++, TX_DATA_FIFO); | 
|  | 575 |  | 
|  | 576 | /* | 
|  | 577 | * inform MAC that a packet's written and ready to be | 
|  | 578 | * shipped out | 
|  | 579 | */ | 
|  | 580 | dnet_writel(bp, tx_cmd, TX_LEN_FIFO); | 
|  | 581 | } | 
|  | 582 |  | 
|  | 583 | if (dnet_readl(bp, TX_FIFO_WCNT) > DNET_FIFO_TX_DATA_AF_TH) { | 
|  | 584 | netif_stop_queue(dev); | 
|  | 585 | tx_status = dnet_readl(bp, INTR_SRC); | 
|  | 586 | irq_enable = dnet_readl(bp, INTR_ENB); | 
|  | 587 | irq_enable |= DNET_INTR_ENB_TX_FIFOAE; | 
|  | 588 | dnet_writel(bp, irq_enable, INTR_ENB); | 
|  | 589 | } | 
|  | 590 |  | 
| Richard Cochran | ff9b307 | 2011-06-12 02:19:03 +0000 | [diff] [blame] | 591 | skb_tx_timestamp(skb); | 
|  | 592 |  | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 593 | /* free the buffer */ | 
|  | 594 | dev_kfree_skb(skb); | 
|  | 595 |  | 
|  | 596 | spin_unlock_irqrestore(&bp->lock, flags); | 
|  | 597 |  | 
| Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 598 | return NETDEV_TX_OK; | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 599 | } | 
|  | 600 |  | 
|  | 601 | static void dnet_reset_hw(struct dnet *bp) | 
|  | 602 | { | 
|  | 603 | /* put ts_mac in IDLE state i.e. disable rx/tx */ | 
|  | 604 | dnet_writew_mac(bp, DNET_INTERNAL_MODE_REG, DNET_INTERNAL_MODE_FCEN); | 
|  | 605 |  | 
|  | 606 | /* | 
|  | 607 | * RX FIFO almost full threshold: only cmd FIFO almost full is | 
|  | 608 | * implemented for RX side | 
|  | 609 | */ | 
|  | 610 | dnet_writel(bp, DNET_FIFO_RX_CMD_AF_TH, RX_FIFO_TH); | 
|  | 611 | /* | 
|  | 612 | * TX FIFO almost empty threshold: only data FIFO almost empty | 
|  | 613 | * is implemented for TX side | 
|  | 614 | */ | 
|  | 615 | dnet_writel(bp, DNET_FIFO_TX_DATA_AE_TH, TX_FIFO_TH); | 
|  | 616 |  | 
|  | 617 | /* flush rx/tx fifos */ | 
|  | 618 | dnet_writel(bp, DNET_SYS_CTL_RXFIFOFLUSH | DNET_SYS_CTL_TXFIFOFLUSH, | 
|  | 619 | SYS_CTL); | 
|  | 620 | msleep(1); | 
|  | 621 | dnet_writel(bp, 0, SYS_CTL); | 
|  | 622 | } | 
|  | 623 |  | 
|  | 624 | static void dnet_init_hw(struct dnet *bp) | 
|  | 625 | { | 
|  | 626 | u32 config; | 
|  | 627 |  | 
|  | 628 | dnet_reset_hw(bp); | 
|  | 629 | __dnet_set_hwaddr(bp); | 
|  | 630 |  | 
|  | 631 | config = dnet_readw_mac(bp, DNET_INTERNAL_RXTX_CONTROL_REG); | 
|  | 632 |  | 
|  | 633 | if (bp->dev->flags & IFF_PROMISC) | 
|  | 634 | /* Copy All Frames */ | 
|  | 635 | config |= DNET_INTERNAL_RXTX_CONTROL_ENPROMISC; | 
|  | 636 | if (!(bp->dev->flags & IFF_BROADCAST)) | 
|  | 637 | /* No BroadCast */ | 
|  | 638 | config |= DNET_INTERNAL_RXTX_CONTROL_RXMULTICAST; | 
|  | 639 |  | 
|  | 640 | config |= DNET_INTERNAL_RXTX_CONTROL_RXPAUSE | | 
|  | 641 | DNET_INTERNAL_RXTX_CONTROL_RXBROADCAST | | 
|  | 642 | DNET_INTERNAL_RXTX_CONTROL_DROPCONTROL | | 
|  | 643 | DNET_INTERNAL_RXTX_CONTROL_DISCFXFCS; | 
|  | 644 |  | 
|  | 645 | dnet_writew_mac(bp, DNET_INTERNAL_RXTX_CONTROL_REG, config); | 
|  | 646 |  | 
|  | 647 | /* clear irq before enabling them */ | 
|  | 648 | config = dnet_readl(bp, INTR_SRC); | 
|  | 649 |  | 
|  | 650 | /* enable RX/TX interrupt, recv packet ready interrupt */ | 
|  | 651 | dnet_writel(bp, DNET_INTR_ENB_GLOBAL_ENABLE | DNET_INTR_ENB_RX_SUMMARY | | 
|  | 652 | DNET_INTR_ENB_TX_SUMMARY | DNET_INTR_ENB_RX_FIFOERR | | 
|  | 653 | DNET_INTR_ENB_RX_ERROR | DNET_INTR_ENB_RX_FIFOFULL | | 
|  | 654 | DNET_INTR_ENB_TX_FIFOFULL | DNET_INTR_ENB_TX_DISCFRM | | 
|  | 655 | DNET_INTR_ENB_RX_PKTRDY, INTR_ENB); | 
|  | 656 | } | 
|  | 657 |  | 
|  | 658 | static int dnet_open(struct net_device *dev) | 
|  | 659 | { | 
|  | 660 | struct dnet *bp = netdev_priv(dev); | 
|  | 661 |  | 
|  | 662 | /* if the phy is not yet register, retry later */ | 
|  | 663 | if (!bp->phy_dev) | 
|  | 664 | return -EAGAIN; | 
|  | 665 |  | 
|  | 666 | if (!is_valid_ether_addr(dev->dev_addr)) | 
|  | 667 | return -EADDRNOTAVAIL; | 
|  | 668 |  | 
|  | 669 | napi_enable(&bp->napi); | 
|  | 670 | dnet_init_hw(bp); | 
|  | 671 |  | 
|  | 672 | phy_start_aneg(bp->phy_dev); | 
|  | 673 |  | 
|  | 674 | /* schedule a link state check */ | 
|  | 675 | phy_start(bp->phy_dev); | 
|  | 676 |  | 
|  | 677 | netif_start_queue(dev); | 
|  | 678 |  | 
|  | 679 | return 0; | 
|  | 680 | } | 
|  | 681 |  | 
|  | 682 | static int dnet_close(struct net_device *dev) | 
|  | 683 | { | 
|  | 684 | struct dnet *bp = netdev_priv(dev); | 
|  | 685 |  | 
|  | 686 | netif_stop_queue(dev); | 
|  | 687 | napi_disable(&bp->napi); | 
|  | 688 |  | 
|  | 689 | if (bp->phy_dev) | 
|  | 690 | phy_stop(bp->phy_dev); | 
|  | 691 |  | 
|  | 692 | dnet_reset_hw(bp); | 
|  | 693 | netif_carrier_off(dev); | 
|  | 694 |  | 
|  | 695 | return 0; | 
|  | 696 | } | 
|  | 697 |  | 
|  | 698 | static inline void dnet_print_pretty_hwstats(struct dnet_stats *hwstat) | 
|  | 699 | { | 
|  | 700 | pr_debug("%s\n", __func__); | 
|  | 701 | pr_debug("----------------------------- RX statistics " | 
|  | 702 | "-------------------------------\n"); | 
|  | 703 | pr_debug("RX_PKT_IGNR_CNT %-8x\n", hwstat->rx_pkt_ignr); | 
|  | 704 | pr_debug("RX_LEN_CHK_ERR_CNT %-8x\n", hwstat->rx_len_chk_err); | 
|  | 705 | pr_debug("RX_LNG_FRM_CNT %-8x\n", hwstat->rx_lng_frm); | 
|  | 706 | pr_debug("RX_SHRT_FRM_CNT %-8x\n", hwstat->rx_shrt_frm); | 
|  | 707 | pr_debug("RX_IPG_VIOL_CNT %-8x\n", hwstat->rx_ipg_viol); | 
|  | 708 | pr_debug("RX_CRC_ERR_CNT %-8x\n", hwstat->rx_crc_err); | 
|  | 709 | pr_debug("RX_OK_PKT_CNT %-8x\n", hwstat->rx_ok_pkt); | 
|  | 710 | pr_debug("RX_CTL_FRM_CNT %-8x\n", hwstat->rx_ctl_frm); | 
|  | 711 | pr_debug("RX_PAUSE_FRM_CNT %-8x\n", hwstat->rx_pause_frm); | 
|  | 712 | pr_debug("RX_MULTICAST_CNT %-8x\n", hwstat->rx_multicast); | 
|  | 713 | pr_debug("RX_BROADCAST_CNT %-8x\n", hwstat->rx_broadcast); | 
|  | 714 | pr_debug("RX_VLAN_TAG_CNT %-8x\n", hwstat->rx_vlan_tag); | 
|  | 715 | pr_debug("RX_PRE_SHRINK_CNT %-8x\n", hwstat->rx_pre_shrink); | 
|  | 716 | pr_debug("RX_DRIB_NIB_CNT %-8x\n", hwstat->rx_drib_nib); | 
|  | 717 | pr_debug("RX_UNSUP_OPCD_CNT %-8x\n", hwstat->rx_unsup_opcd); | 
|  | 718 | pr_debug("RX_BYTE_CNT %-8x\n", hwstat->rx_byte); | 
|  | 719 | pr_debug("----------------------------- TX statistics " | 
|  | 720 | "-------------------------------\n"); | 
|  | 721 | pr_debug("TX_UNICAST_CNT %-8x\n", hwstat->tx_unicast); | 
|  | 722 | pr_debug("TX_PAUSE_FRM_CNT %-8x\n", hwstat->tx_pause_frm); | 
|  | 723 | pr_debug("TX_MULTICAST_CNT %-8x\n", hwstat->tx_multicast); | 
|  | 724 | pr_debug("TX_BRDCAST_CNT %-8x\n", hwstat->tx_brdcast); | 
|  | 725 | pr_debug("TX_VLAN_TAG_CNT %-8x\n", hwstat->tx_vlan_tag); | 
|  | 726 | pr_debug("TX_BAD_FCS_CNT %-8x\n", hwstat->tx_bad_fcs); | 
|  | 727 | pr_debug("TX_JUMBO_CNT %-8x\n", hwstat->tx_jumbo); | 
|  | 728 | pr_debug("TX_BYTE_CNT %-8x\n", hwstat->tx_byte); | 
|  | 729 | } | 
|  | 730 |  | 
|  | 731 | static struct net_device_stats *dnet_get_stats(struct net_device *dev) | 
|  | 732 | { | 
|  | 733 |  | 
|  | 734 | struct dnet *bp = netdev_priv(dev); | 
|  | 735 | struct net_device_stats *nstat = &dev->stats; | 
|  | 736 | struct dnet_stats *hwstat = &bp->hw_stats; | 
|  | 737 |  | 
|  | 738 | /* read stats from hardware */ | 
|  | 739 | dnet_update_stats(bp); | 
|  | 740 |  | 
|  | 741 | /* Convert HW stats into netdevice stats */ | 
|  | 742 | nstat->rx_errors = (hwstat->rx_len_chk_err + | 
|  | 743 | hwstat->rx_lng_frm + hwstat->rx_shrt_frm + | 
|  | 744 | /* ignore IGP violation error | 
|  | 745 | hwstat->rx_ipg_viol + */ | 
|  | 746 | hwstat->rx_crc_err + | 
|  | 747 | hwstat->rx_pre_shrink + | 
|  | 748 | hwstat->rx_drib_nib + hwstat->rx_unsup_opcd); | 
|  | 749 | nstat->tx_errors = hwstat->tx_bad_fcs; | 
|  | 750 | nstat->rx_length_errors = (hwstat->rx_len_chk_err + | 
|  | 751 | hwstat->rx_lng_frm + | 
|  | 752 | hwstat->rx_shrt_frm + hwstat->rx_pre_shrink); | 
|  | 753 | nstat->rx_crc_errors = hwstat->rx_crc_err; | 
|  | 754 | nstat->rx_frame_errors = hwstat->rx_pre_shrink + hwstat->rx_drib_nib; | 
|  | 755 | nstat->rx_packets = hwstat->rx_ok_pkt; | 
|  | 756 | nstat->tx_packets = (hwstat->tx_unicast + | 
|  | 757 | hwstat->tx_multicast + hwstat->tx_brdcast); | 
|  | 758 | nstat->rx_bytes = hwstat->rx_byte; | 
|  | 759 | nstat->tx_bytes = hwstat->tx_byte; | 
|  | 760 | nstat->multicast = hwstat->rx_multicast; | 
|  | 761 | nstat->rx_missed_errors = hwstat->rx_pkt_ignr; | 
|  | 762 |  | 
|  | 763 | dnet_print_pretty_hwstats(hwstat); | 
|  | 764 |  | 
|  | 765 | return nstat; | 
|  | 766 | } | 
|  | 767 |  | 
|  | 768 | static int dnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | 
|  | 769 | { | 
|  | 770 | struct dnet *bp = netdev_priv(dev); | 
|  | 771 | struct phy_device *phydev = bp->phy_dev; | 
|  | 772 |  | 
|  | 773 | if (!phydev) | 
|  | 774 | return -ENODEV; | 
|  | 775 |  | 
|  | 776 | return phy_ethtool_gset(phydev, cmd); | 
|  | 777 | } | 
|  | 778 |  | 
|  | 779 | static int dnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | 
|  | 780 | { | 
|  | 781 | struct dnet *bp = netdev_priv(dev); | 
|  | 782 | struct phy_device *phydev = bp->phy_dev; | 
|  | 783 |  | 
|  | 784 | if (!phydev) | 
|  | 785 | return -ENODEV; | 
|  | 786 |  | 
|  | 787 | return phy_ethtool_sset(phydev, cmd); | 
|  | 788 | } | 
|  | 789 |  | 
|  | 790 | static int dnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | 
|  | 791 | { | 
|  | 792 | struct dnet *bp = netdev_priv(dev); | 
|  | 793 | struct phy_device *phydev = bp->phy_dev; | 
|  | 794 |  | 
|  | 795 | if (!netif_running(dev)) | 
|  | 796 | return -EINVAL; | 
|  | 797 |  | 
|  | 798 | if (!phydev) | 
|  | 799 | return -ENODEV; | 
|  | 800 |  | 
| Richard Cochran | 28b0411 | 2010-07-17 08:48:55 +0000 | [diff] [blame] | 801 | return phy_mii_ioctl(phydev, rq, cmd); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 802 | } | 
|  | 803 |  | 
|  | 804 | static void dnet_get_drvinfo(struct net_device *dev, | 
|  | 805 | struct ethtool_drvinfo *info) | 
|  | 806 | { | 
|  | 807 | strcpy(info->driver, DRV_NAME); | 
|  | 808 | strcpy(info->version, DRV_VERSION); | 
|  | 809 | strcpy(info->bus_info, "0"); | 
|  | 810 | } | 
|  | 811 |  | 
|  | 812 | static const struct ethtool_ops dnet_ethtool_ops = { | 
|  | 813 | .get_settings		= dnet_get_settings, | 
|  | 814 | .set_settings		= dnet_set_settings, | 
|  | 815 | .get_drvinfo		= dnet_get_drvinfo, | 
|  | 816 | .get_link		= ethtool_op_get_link, | 
|  | 817 | }; | 
|  | 818 |  | 
|  | 819 | static const struct net_device_ops dnet_netdev_ops = { | 
|  | 820 | .ndo_open		= dnet_open, | 
|  | 821 | .ndo_stop		= dnet_close, | 
|  | 822 | .ndo_get_stats		= dnet_get_stats, | 
|  | 823 | .ndo_start_xmit		= dnet_start_xmit, | 
|  | 824 | .ndo_do_ioctl		= dnet_ioctl, | 
|  | 825 | .ndo_set_mac_address	= eth_mac_addr, | 
|  | 826 | .ndo_validate_addr	= eth_validate_addr, | 
|  | 827 | .ndo_change_mtu		= eth_change_mtu, | 
|  | 828 | }; | 
|  | 829 |  | 
|  | 830 | static int __devinit dnet_probe(struct platform_device *pdev) | 
|  | 831 | { | 
|  | 832 | struct resource *res; | 
|  | 833 | struct net_device *dev; | 
|  | 834 | struct dnet *bp; | 
|  | 835 | struct phy_device *phydev; | 
|  | 836 | int err = -ENXIO; | 
|  | 837 | unsigned int mem_base, mem_size, irq; | 
|  | 838 |  | 
|  | 839 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
|  | 840 | if (!res) { | 
|  | 841 | dev_err(&pdev->dev, "no mmio resource defined\n"); | 
|  | 842 | goto err_out; | 
|  | 843 | } | 
|  | 844 | mem_base = res->start; | 
|  | 845 | mem_size = resource_size(res); | 
|  | 846 | irq = platform_get_irq(pdev, 0); | 
|  | 847 |  | 
|  | 848 | if (!request_mem_region(mem_base, mem_size, DRV_NAME)) { | 
|  | 849 | dev_err(&pdev->dev, "no memory region available\n"); | 
|  | 850 | err = -EBUSY; | 
|  | 851 | goto err_out; | 
|  | 852 | } | 
|  | 853 |  | 
|  | 854 | err = -ENOMEM; | 
|  | 855 | dev = alloc_etherdev(sizeof(*bp)); | 
|  | 856 | if (!dev) { | 
|  | 857 | dev_err(&pdev->dev, "etherdev alloc failed, aborting.\n"); | 
| Dan Carpenter | de140b0 | 2010-07-28 22:27:29 +0000 | [diff] [blame] | 858 | goto err_out_release_mem; | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 859 | } | 
|  | 860 |  | 
|  | 861 | /* TODO: Actually, we have some interesting features... */ | 
|  | 862 | dev->features |= 0; | 
|  | 863 |  | 
|  | 864 | bp = netdev_priv(dev); | 
|  | 865 | bp->dev = dev; | 
|  | 866 |  | 
| Ilya Yanok | b093dd9 | 2011-02-21 10:20:30 +0000 | [diff] [blame] | 867 | platform_set_drvdata(pdev, dev); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 868 | SET_NETDEV_DEV(dev, &pdev->dev); | 
|  | 869 |  | 
|  | 870 | spin_lock_init(&bp->lock); | 
|  | 871 |  | 
|  | 872 | bp->regs = ioremap(mem_base, mem_size); | 
|  | 873 | if (!bp->regs) { | 
|  | 874 | dev_err(&pdev->dev, "failed to map registers, aborting.\n"); | 
|  | 875 | err = -ENOMEM; | 
|  | 876 | goto err_out_free_dev; | 
|  | 877 | } | 
|  | 878 |  | 
|  | 879 | dev->irq = irq; | 
|  | 880 | err = request_irq(dev->irq, dnet_interrupt, 0, DRV_NAME, dev); | 
|  | 881 | if (err) { | 
|  | 882 | dev_err(&pdev->dev, "Unable to request IRQ %d (error %d)\n", | 
|  | 883 | irq, err); | 
|  | 884 | goto err_out_iounmap; | 
|  | 885 | } | 
|  | 886 |  | 
|  | 887 | dev->netdev_ops = &dnet_netdev_ops; | 
|  | 888 | netif_napi_add(dev, &bp->napi, dnet_poll, 64); | 
|  | 889 | dev->ethtool_ops = &dnet_ethtool_ops; | 
|  | 890 |  | 
|  | 891 | dev->base_addr = (unsigned long)bp->regs; | 
|  | 892 |  | 
|  | 893 | bp->capabilities = dnet_readl(bp, VERCAPS) & DNET_CAPS_MASK; | 
|  | 894 |  | 
|  | 895 | dnet_get_hwaddr(bp); | 
|  | 896 |  | 
|  | 897 | if (!is_valid_ether_addr(dev->dev_addr)) { | 
|  | 898 | /* choose a random ethernet address */ | 
|  | 899 | random_ether_addr(dev->dev_addr); | 
|  | 900 | __dnet_set_hwaddr(bp); | 
|  | 901 | } | 
|  | 902 |  | 
|  | 903 | err = register_netdev(dev); | 
|  | 904 | if (err) { | 
|  | 905 | dev_err(&pdev->dev, "Cannot register net device, aborting.\n"); | 
|  | 906 | goto err_out_free_irq; | 
|  | 907 | } | 
|  | 908 |  | 
|  | 909 | /* register the PHY board fixup (for Marvell 88E1111) */ | 
|  | 910 | err = phy_register_fixup_for_uid(0x01410cc0, 0xfffffff0, | 
|  | 911 | dnet_phy_marvell_fixup); | 
|  | 912 | /* we can live without it, so just issue a warning */ | 
|  | 913 | if (err) | 
|  | 914 | dev_warn(&pdev->dev, "Cannot register PHY board fixup.\n"); | 
|  | 915 |  | 
| Dan Carpenter | de140b0 | 2010-07-28 22:27:29 +0000 | [diff] [blame] | 916 | err = dnet_mii_init(bp); | 
|  | 917 | if (err) | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 918 | goto err_out_unregister_netdev; | 
|  | 919 |  | 
|  | 920 | dev_info(&pdev->dev, "Dave DNET at 0x%p (0x%08x) irq %d %pM\n", | 
|  | 921 | bp->regs, mem_base, dev->irq, dev->dev_addr); | 
| Frans Pop | 2381a55 | 2010-03-24 07:57:36 +0000 | [diff] [blame] | 922 | dev_info(&pdev->dev, "has %smdio, %sirq, %sgigabit, %sdma\n", | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 923 | (bp->capabilities & DNET_HAS_MDIO) ? "" : "no ", | 
|  | 924 | (bp->capabilities & DNET_HAS_IRQ) ? "" : "no ", | 
|  | 925 | (bp->capabilities & DNET_HAS_GIGABIT) ? "" : "no ", | 
|  | 926 | (bp->capabilities & DNET_HAS_DMA) ? "" : "no "); | 
|  | 927 | phydev = bp->phy_dev; | 
|  | 928 | dev_info(&pdev->dev, "attached PHY driver [%s] " | 
|  | 929 | "(mii_bus:phy_addr=%s, irq=%d)\n", | 
| Stephen Rothwell | 6580f57 | 2009-03-22 21:22:48 -0700 | [diff] [blame] | 930 | phydev->drv->name, dev_name(&phydev->dev), phydev->irq); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 931 |  | 
|  | 932 | return 0; | 
|  | 933 |  | 
|  | 934 | err_out_unregister_netdev: | 
|  | 935 | unregister_netdev(dev); | 
|  | 936 | err_out_free_irq: | 
|  | 937 | free_irq(dev->irq, dev); | 
|  | 938 | err_out_iounmap: | 
|  | 939 | iounmap(bp->regs); | 
|  | 940 | err_out_free_dev: | 
|  | 941 | free_netdev(dev); | 
| Dan Carpenter | de140b0 | 2010-07-28 22:27:29 +0000 | [diff] [blame] | 942 | err_out_release_mem: | 
|  | 943 | release_mem_region(mem_base, mem_size); | 
| Ilya Yanok | 4796417 | 2009-03-11 23:26:02 -0700 | [diff] [blame] | 944 | err_out: | 
|  | 945 | return err; | 
|  | 946 | } | 
|  | 947 |  | 
|  | 948 | static int __devexit dnet_remove(struct platform_device *pdev) | 
|  | 949 | { | 
|  | 950 |  | 
|  | 951 | struct net_device *dev; | 
|  | 952 | struct dnet *bp; | 
|  | 953 |  | 
|  | 954 | dev = platform_get_drvdata(pdev); | 
|  | 955 |  | 
|  | 956 | if (dev) { | 
|  | 957 | bp = netdev_priv(dev); | 
|  | 958 | if (bp->phy_dev) | 
|  | 959 | phy_disconnect(bp->phy_dev); | 
|  | 960 | mdiobus_unregister(bp->mii_bus); | 
|  | 961 | kfree(bp->mii_bus->irq); | 
|  | 962 | mdiobus_free(bp->mii_bus); | 
|  | 963 | unregister_netdev(dev); | 
|  | 964 | free_irq(dev->irq, dev); | 
|  | 965 | iounmap(bp->regs); | 
|  | 966 | free_netdev(dev); | 
|  | 967 | } | 
|  | 968 |  | 
|  | 969 | return 0; | 
|  | 970 | } | 
|  | 971 |  | 
|  | 972 | static struct platform_driver dnet_driver = { | 
|  | 973 | .probe		= dnet_probe, | 
|  | 974 | .remove		= __devexit_p(dnet_remove), | 
|  | 975 | .driver		= { | 
|  | 976 | .name		= "dnet", | 
|  | 977 | }, | 
|  | 978 | }; | 
|  | 979 |  | 
|  | 980 | static int __init dnet_init(void) | 
|  | 981 | { | 
|  | 982 | return platform_driver_register(&dnet_driver); | 
|  | 983 | } | 
|  | 984 |  | 
|  | 985 | static void __exit dnet_exit(void) | 
|  | 986 | { | 
|  | 987 | platform_driver_unregister(&dnet_driver); | 
|  | 988 | } | 
|  | 989 |  | 
|  | 990 | module_init(dnet_init); | 
|  | 991 | module_exit(dnet_exit); | 
|  | 992 |  | 
|  | 993 | MODULE_LICENSE("GPL"); | 
|  | 994 | MODULE_DESCRIPTION("Dave DNET Ethernet driver"); | 
|  | 995 | MODULE_AUTHOR("Ilya Yanok <yanok@emcraft.com>, " | 
|  | 996 | "Matteo Vit <matteo.vit@dave.eu>"); |