blob: 91d52b495848a17d4b9bae0de04b7d1f7c798ba9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Alchemy Au1x00 ethernet driver
4 *
Sergei Shtylyov89be0502006-04-19 22:46:21 +04005 * Copyright 2001-2003, 2006 MontaVista Software Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright 2002 TimeSys Corp.
7 * Added ethtool/mii-tool support,
8 * Copyright 2004 Matt Porter <mporter@kernel.crashing.org>
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009 * Update: 2004 Bjoern Riemer, riemer@fokus.fraunhofer.de
10 * or riemer@riemer-nt.de: fixed the link beat detection with
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * ioctls (SIOCGMIIPHY)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +020012 * Copyright 2006 Herbert Valerio Riedel <hvr@gnu.org>
13 * converted to use linux-2.6.x's PHY framework
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Author: MontaVista Software, Inc.
Florian Fainelliec7eabdd2010-09-08 11:11:31 +000016 * ppopov@mvista.com or source@mvista.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * ########################################################################
19 *
20 * This program is free software; you can distribute it and/or modify it
21 * under the terms of the GNU General Public License (Version 2) as
22 * published by the Free Software Foundation.
23 *
24 * This program is distributed in the hope it will be useful, but WITHOUT
25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 * for more details.
28 *
29 * You should have received a copy of the GNU General Public License along
30 * with this program; if not, write to the Free Software Foundation, Inc.,
31 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
32 *
33 * ########################################################################
34 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040035 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
Florian Fainelli215e17b2010-09-08 11:11:45 +000037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Manuel Laussbc36b422009-10-17 02:00:07 +000039#include <linux/capability.h>
Ralf Baechled791c2b2007-06-24 15:59:54 +020040#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/string.h>
44#include <linux/timer.h>
45#include <linux/errno.h>
46#include <linux/in.h>
47#include <linux/ioport.h>
48#include <linux/bitops.h>
49#include <linux/slab.h>
50#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/init.h>
52#include <linux/netdevice.h>
53#include <linux/etherdevice.h>
54#include <linux/ethtool.h>
55#include <linux/mii.h>
56#include <linux/skbuff.h>
57#include <linux/delay.h>
Herbert Valerio Riedel8cd35da2006-05-01 15:37:09 +020058#include <linux/crc32.h>
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +020059#include <linux/phy.h>
Florian Fainellibd2302c2009-11-10 01:13:38 +010060#include <linux/platform_device.h>
Florian Fainelli49a42c02010-09-08 11:11:49 +000061#include <linux/cpu.h>
62#include <linux/io.h>
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/mipsregs.h>
65#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <asm/processor.h>
67
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090068#include <au1000.h>
Florian Fainellibd2302c2009-11-10 01:13:38 +010069#include <au1xxx_eth.h>
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090070#include <prom.h>
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include "au1000_eth.h"
73
74#ifdef AU1000_ETH_DEBUG
75static int au1000_debug = 5;
76#else
77static int au1000_debug = 3;
78#endif
79
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +000080#define AU1000_DEF_MSG_ENABLE (NETIF_MSG_DRV | \
81 NETIF_MSG_PROBE | \
82 NETIF_MSG_LINK)
83
Sergei Shtylyov89be0502006-04-19 22:46:21 +040084#define DRV_NAME "au1000_eth"
Florian Fainelli8020eb82010-04-06 22:09:20 +000085#define DRV_VERSION "1.7"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define DRV_AUTHOR "Pete Popov <ppopov@embeddedalley.com>"
87#define DRV_DESC "Au1xxx on-chip Ethernet driver"
88
89MODULE_AUTHOR(DRV_AUTHOR);
90MODULE_DESCRIPTION(DRV_DESC);
91MODULE_LICENSE("GPL");
Florian Fainelli13130c72010-04-06 22:08:57 +000092MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * Theory of operation
96 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040097 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
98 * There are four receive and four transmit descriptors. These
99 * descriptors are not in memory; rather, they are just a set of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * hardware registers.
101 *
102 * Since the Au1000 has a coherent data cache, the receive and
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400103 * transmit buffers are allocated from the KSEG0 segment. The
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * hardware registers, however, are still mapped at KSEG1 to
105 * make sure there's no out-of-order writes, and that all writes
106 * complete immediately.
107 */
108
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200109/*
110 * board-specific configurations
111 *
112 * PHY detection algorithm
113 *
Florian Fainellibd2302c2009-11-10 01:13:38 +0100114 * If phy_static_config is undefined, the PHY setup is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200115 * autodetected:
116 *
117 * mii_probe() first searches the current MAC's MII bus for a PHY,
Florian Fainellibd2302c2009-11-10 01:13:38 +0100118 * selecting the first (or last, if phy_search_highest_addr is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200119 * defined) PHY address not already claimed by another netdev.
120 *
121 * If nothing was found that way when searching for the 2nd ethernet
Florian Fainellibd2302c2009-11-10 01:13:38 +0100122 * controller's PHY and phy1_search_mac0 is defined, then
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200123 * the first MII bus is searched as well for an unclaimed PHY; this is
124 * needed in case of a dual-PHY accessible only through the MAC0's MII
125 * bus.
126 *
127 * Finally, if no PHY is found, then the corresponding ethernet
128 * controller is not registered to the network subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
130
Florian Fainellibd2302c2009-11-10 01:13:38 +0100131/* autodetection defaults: phy1_search_mac0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200133/* static PHY setup
134 *
135 * most boards PHY setup should be detectable properly with the
136 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
137 * you have a switch attached, or want to use the PHY's interrupt
138 * notification capabilities) you can provide a static PHY
139 * configuration here
140 *
141 * IRQs may only be set, if a PHY address was configured
142 * If a PHY address is given, also a bus id is required to be set
143 *
144 * ps: make sure the used irqs are configured properly in the board
145 * specific irq-map
146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Florian Fainellieb049632010-04-06 22:09:01 +0000148static void au1000_enable_mac(struct net_device *dev, int force_reset)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800149{
150 unsigned long flags;
151 struct au1000_private *aup = netdev_priv(dev);
152
153 spin_lock_irqsave(&aup->lock, flags);
154
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000155 if (force_reset || (!aup->mac_enabled)) {
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000156 writel(MAC_EN_CLOCK_ENABLE, aup->enable);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800157 au_sync_delay(2);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000158 writel((MAC_EN_RESET0 | MAC_EN_RESET1 | MAC_EN_RESET2
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000159 | MAC_EN_CLOCK_ENABLE), aup->enable);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800160 au_sync_delay(2);
161
162 aup->mac_enabled = 1;
163 }
164
165 spin_unlock_irqrestore(&aup->lock, flags);
166}
167
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200168/*
169 * MII operations
170 */
Adrian Bunk1210dde2008-10-12 21:02:19 -0700171static int au1000_mdio_read(struct net_device *dev, int phy_addr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Wang Chen454d7c92008-11-12 23:37:49 -0800173 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000174 u32 *const mii_control_reg = &aup->mac->mii_control;
175 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 u32 timedout = 20;
177 u32 mii_control;
178
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000179 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 mdelay(1);
181 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000182 netdev_err(dev, "read_MII busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return -1;
184 }
185 }
186
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400187 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200188 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000190 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 timedout = 20;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000193 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 mdelay(1);
195 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000196 netdev_err(dev, "mdio_read busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -1;
198 }
199 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000200 return readl(mii_data_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Adrian Bunk1210dde2008-10-12 21:02:19 -0700203static void au1000_mdio_write(struct net_device *dev, int phy_addr,
204 int reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Wang Chen454d7c92008-11-12 23:37:49 -0800206 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000207 u32 *const mii_control_reg = &aup->mac->mii_control;
208 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 u32 timedout = 20;
210 u32 mii_control;
211
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000212 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 mdelay(1);
214 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000215 netdev_err(dev, "mdio_write busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return;
217 }
218 }
219
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400220 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200221 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000223 writel(value, mii_data_reg);
224 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Adrian Bunk1210dde2008-10-12 21:02:19 -0700227static int au1000_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200229 /* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
Florian Fainellidc998392010-09-08 11:11:59 +0000230 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus)
231 */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200232 struct net_device *const dev = bus->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Florian Fainellidc998392010-09-08 11:11:59 +0000234 /* make sure the MAC associated with this
235 * mii_bus is enabled
236 */
237 au1000_enable_mac(dev, 0);
238
Adrian Bunk1210dde2008-10-12 21:02:19 -0700239 return au1000_mdio_read(dev, phy_addr, regnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Adrian Bunk1210dde2008-10-12 21:02:19 -0700242static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
243 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200245 struct net_device *const dev = bus->priv;
246
Florian Fainellidc998392010-09-08 11:11:59 +0000247 /* make sure the MAC associated with this
248 * mii_bus is enabled
249 */
250 au1000_enable_mac(dev, 0);
251
Adrian Bunk1210dde2008-10-12 21:02:19 -0700252 au1000_mdio_write(dev, phy_addr, regnum, value);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200253 return 0;
254}
255
Adrian Bunk1210dde2008-10-12 21:02:19 -0700256static int au1000_mdiobus_reset(struct mii_bus *bus)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200257{
258 struct net_device *const dev = bus->priv;
259
Florian Fainellidc998392010-09-08 11:11:59 +0000260 /* make sure the MAC associated with this
261 * mii_bus is enabled
262 */
263 au1000_enable_mac(dev, 0);
264
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200265 return 0;
266}
267
Florian Fainellieb049632010-04-06 22:09:01 +0000268static void au1000_hard_stop(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800269{
270 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000271 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800272
Florian Fainelli5368c722010-04-06 22:09:17 +0000273 netif_dbg(aup, drv, dev, "hard stop\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800274
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000275 reg = readl(&aup->mac->control);
276 reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
277 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800278 au_sync_delay(10);
279}
280
Florian Fainellieb049632010-04-06 22:09:01 +0000281static void au1000_enable_rx_tx(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800282{
283 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000284 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800285
Florian Fainelli5368c722010-04-06 22:09:17 +0000286 netif_dbg(aup, hw, dev, "enable_rx_tx\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800287
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000288 reg = readl(&aup->mac->control);
289 reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
290 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800291 au_sync_delay(10);
292}
293
294static void
295au1000_adjust_link(struct net_device *dev)
296{
297 struct au1000_private *aup = netdev_priv(dev);
298 struct phy_device *phydev = aup->phy_dev;
299 unsigned long flags;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000300 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800301
302 int status_change = 0;
303
304 BUG_ON(!aup->phy_dev);
305
306 spin_lock_irqsave(&aup->lock, flags);
307
308 if (phydev->link && (aup->old_speed != phydev->speed)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000309 /* speed changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800310
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000311 switch (phydev->speed) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800312 case SPEED_10:
313 case SPEED_100:
314 break;
315 default:
Florian Fainelli5368c722010-04-06 22:09:17 +0000316 netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
317 phydev->speed);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800318 break;
319 }
320
321 aup->old_speed = phydev->speed;
322
323 status_change = 1;
324 }
325
326 if (phydev->link && (aup->old_duplex != phydev->duplex)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000327 /* duplex mode changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800328
329 /* switching duplex mode requires to disable rx and tx! */
Florian Fainellieb049632010-04-06 22:09:01 +0000330 au1000_hard_stop(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800331
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000332 reg = readl(&aup->mac->control);
333 if (DUPLEX_FULL == phydev->duplex) {
334 reg |= MAC_FULL_DUPLEX;
335 reg &= ~MAC_DISABLE_RX_OWN;
336 } else {
337 reg &= ~MAC_FULL_DUPLEX;
338 reg |= MAC_DISABLE_RX_OWN;
339 }
340 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800341 au_sync_delay(1);
342
Florian Fainellieb049632010-04-06 22:09:01 +0000343 au1000_enable_rx_tx(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800344 aup->old_duplex = phydev->duplex;
345
346 status_change = 1;
347 }
348
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000349 if (phydev->link != aup->old_link) {
350 /* link state changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800351
352 if (!phydev->link) {
353 /* link went down */
354 aup->old_speed = 0;
355 aup->old_duplex = -1;
356 }
357
358 aup->old_link = phydev->link;
359 status_change = 1;
360 }
361
362 spin_unlock_irqrestore(&aup->lock, flags);
363
364 if (status_change) {
365 if (phydev->link)
Florian Fainelli5368c722010-04-06 22:09:17 +0000366 netdev_info(dev, "link up (%d/%s)\n",
367 phydev->speed,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800368 DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
369 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000370 netdev_info(dev, "link down\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800371 }
372}
373
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000374static int au1000_mii_probe(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200375{
Wang Chen454d7c92008-11-12 23:37:49 -0800376 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200377 struct phy_device *phydev = NULL;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000378 int phy_addr;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200379
Florian Fainellibd2302c2009-11-10 01:13:38 +0100380 if (aup->phy_static_config) {
381 BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200382
Florian Fainellibd2302c2009-11-10 01:13:38 +0100383 if (aup->phy_addr)
384 phydev = aup->mii_bus->phy_map[aup->phy_addr];
385 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000386 netdev_info(dev, "using PHY-less setup\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200387 return 0;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000388 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200389
Florian Fainelli18b8e152010-09-08 11:11:40 +0000390 /* find the first (lowest address) PHY
Florian Fainellidc998392010-09-08 11:11:59 +0000391 * on the current MAC's MII bus
392 */
Florian Fainelli18b8e152010-09-08 11:11:40 +0000393 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
394 if (aup->mii_bus->phy_map[phy_addr]) {
395 phydev = aup->mii_bus->phy_map[phy_addr];
396 if (!aup->phy_search_highest_addr)
397 /* break out with first one found */
398 break;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Florian Fainelli18b8e152010-09-08 11:11:40 +0000401 if (aup->phy1_search_mac0) {
402 /* try harder to find a PHY */
403 if (!phydev && (aup->mac_id == 1)) {
404 /* no PHY found, maybe we have a dual PHY? */
405 dev_info(&dev->dev, ": no PHY found on MAC1, "
406 "let's see if it's attached to MAC0...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Florian Fainelli18b8e152010-09-08 11:11:40 +0000408 /* find the first (lowest address) non-attached
409 * PHY on the MAC0 MII bus
410 */
411 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
412 struct phy_device *const tmp_phydev =
413 aup->mii_bus->phy_map[phy_addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Florian Fainelli18b8e152010-09-08 11:11:40 +0000415 if (aup->mac_id == 1)
416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Florian Fainelli18b8e152010-09-08 11:11:40 +0000418 /* no PHY here... */
419 if (!tmp_phydev)
420 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Florian Fainelli18b8e152010-09-08 11:11:40 +0000422 /* already claimed by MAC0 */
423 if (tmp_phydev->attached_dev)
424 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Florian Fainelli18b8e152010-09-08 11:11:40 +0000426 phydev = tmp_phydev;
427 break; /* found it */
Florian Fainellibd2302c2009-11-10 01:13:38 +0100428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200432 if (!phydev) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000433 netdev_err(dev, "no PHY found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return -1;
435 }
436
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200437 /* now we are supposed to have a proper phydev, to attach to... */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200438 BUG_ON(phydev->attached_dev);
439
Florian Fainellif9a8f832013-01-14 00:52:52 +0000440 phydev = phy_connect(dev, dev_name(&phydev->dev),
441 &au1000_adjust_link, PHY_INTERFACE_MODE_MII);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200442
443 if (IS_ERR(phydev)) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000444 netdev_err(dev, "Could not attach to PHY\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200445 return PTR_ERR(phydev);
446 }
447
448 /* mask with MAC supported features */
449 phydev->supported &= (SUPPORTED_10baseT_Half
450 | SUPPORTED_10baseT_Full
451 | SUPPORTED_100baseT_Half
452 | SUPPORTED_100baseT_Full
453 | SUPPORTED_Autoneg
454 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
455 | SUPPORTED_MII
456 | SUPPORTED_TP);
457
458 phydev->advertising = phydev->supported;
459
460 aup->old_link = 0;
461 aup->old_speed = 0;
462 aup->old_duplex = -1;
463 aup->phy_dev = phydev;
464
Florian Fainelli5368c722010-04-06 22:09:17 +0000465 netdev_info(dev, "attached PHY driver [%s] "
466 "(mii_bus:phy_addr=%s, irq=%d)\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800467 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 return 0;
470}
471
472
473/*
474 * Buffer allocation/deallocation routines. The buffer descriptor returned
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400475 * has the virtual and dma address of a buffer suitable for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * both, receive and transmit operations.
477 */
Florian Fainelli34415922010-09-08 11:11:25 +0000478static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Florian Fainelli34415922010-09-08 11:11:25 +0000480 struct db_dest *pDB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 pDB = aup->pDBfree;
482
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000483 if (pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 aup->pDBfree = pDB->pnext;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return pDB;
487}
488
Florian Fainelli34415922010-09-08 11:11:25 +0000489void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Florian Fainelli34415922010-09-08 11:11:25 +0000491 struct db_dest *pDBfree = aup->pDBfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (pDBfree)
493 pDBfree->pnext = pDB;
494 aup->pDBfree = pDB;
495}
496
Florian Fainellieb049632010-04-06 22:09:01 +0000497static void au1000_reset_mac_unlocked(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200498{
Wang Chen454d7c92008-11-12 23:37:49 -0800499 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200500 int i;
501
Florian Fainellieb049632010-04-06 22:09:01 +0000502 au1000_hard_stop(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200503
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000504 writel(MAC_EN_CLOCK_ENABLE, aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200505 au_sync_delay(2);
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000506 writel(0, aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200507 au_sync_delay(2);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 aup->tx_full = 0;
510 for (i = 0; i < NUM_RX_DMA; i++) {
511 /* reset control bits */
512 aup->rx_dma_ring[i]->buff_stat &= ~0xf;
513 }
514 for (i = 0; i < NUM_TX_DMA; i++) {
515 /* reset control bits */
516 aup->tx_dma_ring[i]->buff_stat &= ~0xf;
517 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200518
519 aup->mac_enabled = 0;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Florian Fainellieb049632010-04-06 22:09:01 +0000523static void au1000_reset_mac(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200524{
Wang Chen454d7c92008-11-12 23:37:49 -0800525 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200526 unsigned long flags;
527
Florian Fainelli5368c722010-04-06 22:09:17 +0000528 netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
529 (unsigned)aup);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200530
531 spin_lock_irqsave(&aup->lock, flags);
532
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000533 au1000_reset_mac_unlocked(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200534
535 spin_unlock_irqrestore(&aup->lock, flags);
536}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400538/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * Setup the receive and transmit "rings". These pointers are the addresses
540 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
541 * these are not descriptors sitting in memory.
542 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400543static void
Linus Torvaldsd6748062011-11-03 13:28:14 -0700544au1000_setup_hw_rings(struct au1000_private *aup, void __iomem *tx_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 int i;
547
548 for (i = 0; i < NUM_RX_DMA; i++) {
Linus Torvaldsd6748062011-11-03 13:28:14 -0700549 aup->rx_dma_ring[i] = (struct rx_dma *)
550 (tx_base + 0x100 + sizeof(struct rx_dma) * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552 for (i = 0; i < NUM_TX_DMA; i++) {
Linus Torvaldsd6748062011-11-03 13:28:14 -0700553 aup->tx_dma_ring[i] = (struct tx_dma *)
554 (tx_base + sizeof(struct tx_dma) * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200559 * ethtool operations
560 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
563{
Wang Chen454d7c92008-11-12 23:37:49 -0800564 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200566 if (aup->phy_dev)
567 return phy_ethtool_gset(aup->phy_dev, cmd);
568
569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
572static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
573{
Wang Chen454d7c92008-11-12 23:37:49 -0800574 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200576 if (!capable(CAP_NET_ADMIN))
577 return -EPERM;
578
579 if (aup->phy_dev)
580 return phy_ethtool_sset(aup->phy_dev, cmd);
581
582 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static void
586au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
587{
Wang Chen454d7c92008-11-12 23:37:49 -0800588 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Jiri Pirko7826d432013-01-06 00:44:26 +0000590 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
591 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
592 snprintf(info->bus_info, sizeof(info->bus_info), "%s %d", DRV_NAME,
593 aup->mac_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 info->regdump_len = 0;
595}
596
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000597static void au1000_set_msglevel(struct net_device *dev, u32 value)
598{
599 struct au1000_private *aup = netdev_priv(dev);
600 aup->msg_enable = value;
601}
602
603static u32 au1000_get_msglevel(struct net_device *dev)
604{
605 struct au1000_private *aup = netdev_priv(dev);
606 return aup->msg_enable;
607}
608
Jeff Garzik7282d492006-09-13 14:30:00 -0400609static const struct ethtool_ops au1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 .get_settings = au1000_get_settings,
611 .set_settings = au1000_set_settings,
612 .get_drvinfo = au1000_get_drvinfo,
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200613 .get_link = ethtool_op_get_link,
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000614 .get_msglevel = au1000_get_msglevel,
615 .set_msglevel = au1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616};
617
Florian Fainelli5ef30412009-01-22 14:06:25 -0800618
619/*
620 * Initialize the interface.
621 *
622 * When the device powers up, the clocks are disabled and the
623 * mac is in reset state. When the interface is closed, we
624 * do the same -- reset the device and disable the clocks to
625 * conserve power. Thus, whenever au1000_init() is called,
626 * the device should already be in reset state.
627 */
628static int au1000_init(struct net_device *dev)
629{
630 struct au1000_private *aup = netdev_priv(dev);
631 unsigned long flags;
632 int i;
633 u32 control;
634
Florian Fainelli5368c722010-04-06 22:09:17 +0000635 netif_dbg(aup, hw, dev, "au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800636
637 /* bring the device out of reset */
Florian Fainellieb049632010-04-06 22:09:01 +0000638 au1000_enable_mac(dev, 1);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800639
640 spin_lock_irqsave(&aup->lock, flags);
641
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000642 writel(0, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800643 aup->tx_head = (aup->tx_dma_ring[0]->buff_stat & 0xC) >> 2;
644 aup->tx_tail = aup->tx_head;
645 aup->rx_head = (aup->rx_dma_ring[0]->buff_stat & 0xC) >> 2;
646
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000647 writel(dev->dev_addr[5]<<8 | dev->dev_addr[4],
648 &aup->mac->mac_addr_high);
649 writel(dev->dev_addr[3]<<24 | dev->dev_addr[2]<<16 |
650 dev->dev_addr[1]<<8 | dev->dev_addr[0],
651 &aup->mac->mac_addr_low);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800652
Florian Fainelli18b8e152010-09-08 11:11:40 +0000653
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000654 for (i = 0; i < NUM_RX_DMA; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800655 aup->rx_dma_ring[i]->buff_stat |= RX_DMA_ENABLE;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000656
Florian Fainelli5ef30412009-01-22 14:06:25 -0800657 au_sync();
658
659 control = MAC_RX_ENABLE | MAC_TX_ENABLE;
660#ifndef CONFIG_CPU_LITTLE_ENDIAN
661 control |= MAC_BIG_ENDIAN;
662#endif
663 if (aup->phy_dev) {
664 if (aup->phy_dev->link && (DUPLEX_FULL == aup->phy_dev->duplex))
665 control |= MAC_FULL_DUPLEX;
666 else
667 control |= MAC_DISABLE_RX_OWN;
668 } else { /* PHY-less op, assume full-duplex */
669 control |= MAC_FULL_DUPLEX;
670 }
671
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000672 writel(control, &aup->mac->control);
673 writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800674 au_sync();
675
676 spin_unlock_irqrestore(&aup->lock, flags);
677 return 0;
678}
679
Florian Fainellieb049632010-04-06 22:09:01 +0000680static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800681{
Florian Fainelli5ef30412009-01-22 14:06:25 -0800682 struct net_device_stats *ps = &dev->stats;
683
684 ps->rx_packets++;
685 if (status & RX_MCAST_FRAME)
686 ps->multicast++;
687
688 if (status & RX_ERROR) {
689 ps->rx_errors++;
690 if (status & RX_MISSED_FRAME)
691 ps->rx_missed_errors++;
roel kluin4989ccb2009-10-06 09:54:18 +0000692 if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
Florian Fainelli5ef30412009-01-22 14:06:25 -0800693 ps->rx_length_errors++;
694 if (status & RX_CRC_ERROR)
695 ps->rx_crc_errors++;
696 if (status & RX_COLL)
697 ps->collisions++;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000698 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800699 ps->rx_bytes += status & RX_FRAME_LEN_MASK;
700
701}
702
703/*
704 * Au1000 receive routine.
705 */
706static int au1000_rx(struct net_device *dev)
707{
708 struct au1000_private *aup = netdev_priv(dev);
709 struct sk_buff *skb;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000710 struct rx_dma *prxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800711 u32 buff_stat, status;
Florian Fainelli34415922010-09-08 11:11:25 +0000712 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800713 u32 frmlen;
714
Florian Fainelli5368c722010-04-06 22:09:17 +0000715 netif_dbg(aup, rx_status, dev, "au1000_rx head %d\n", aup->rx_head);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800716
717 prxd = aup->rx_dma_ring[aup->rx_head];
718 buff_stat = prxd->buff_stat;
719 while (buff_stat & RX_T_DONE) {
720 status = prxd->status;
721 pDB = aup->rx_db_inuse[aup->rx_head];
Florian Fainellieb049632010-04-06 22:09:01 +0000722 au1000_update_rx_stats(dev, status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800723 if (!(status & RX_ERROR)) {
724
725 /* good frame */
726 frmlen = (status & RX_FRAME_LEN_MASK);
727 frmlen -= 4; /* Remove FCS */
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000728 skb = netdev_alloc_skb(dev, frmlen + 2);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800729 if (skb == NULL) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800730 dev->stats.rx_dropped++;
731 continue;
732 }
733 skb_reserve(skb, 2); /* 16 byte IP header align */
734 skb_copy_to_linear_data(skb,
735 (unsigned char *)pDB->vaddr, frmlen);
736 skb_put(skb, frmlen);
737 skb->protocol = eth_type_trans(skb, dev);
738 netif_rx(skb); /* pass the packet to upper layers */
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000739 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800740 if (au1000_debug > 4) {
Florian Fainelli215e17b2010-09-08 11:11:45 +0000741 pr_err("rx_error(s):");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800742 if (status & RX_MISSED_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000743 pr_cont(" miss");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800744 if (status & RX_WDOG_TIMER)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000745 pr_cont(" wdog");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800746 if (status & RX_RUNT)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000747 pr_cont(" runt");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800748 if (status & RX_OVERLEN)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000749 pr_cont(" overlen");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800750 if (status & RX_COLL)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000751 pr_cont(" coll");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800752 if (status & RX_MII_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000753 pr_cont(" mii error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800754 if (status & RX_CRC_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000755 pr_cont(" crc error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800756 if (status & RX_LEN_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000757 pr_cont(" len error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800758 if (status & RX_U_CNTRL_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000759 pr_cont(" u control frame");
760 pr_cont("\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800761 }
762 }
763 prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
764 aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
765 au_sync();
766
767 /* next descriptor */
768 prxd = aup->rx_dma_ring[aup->rx_head];
769 buff_stat = prxd->buff_stat;
770 }
771 return 0;
772}
773
Florian Fainellieb049632010-04-06 22:09:01 +0000774static void au1000_update_tx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800775{
776 struct au1000_private *aup = netdev_priv(dev);
777 struct net_device_stats *ps = &dev->stats;
778
779 if (status & TX_FRAME_ABORTED) {
780 if (!aup->phy_dev || (DUPLEX_FULL == aup->phy_dev->duplex)) {
781 if (status & (TX_JAB_TIMEOUT | TX_UNDERRUN)) {
782 /* any other tx errors are only valid
Florian Fainellidc998392010-09-08 11:11:59 +0000783 * in half duplex mode
784 */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800785 ps->tx_errors++;
786 ps->tx_aborted_errors++;
787 }
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000788 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800789 ps->tx_errors++;
790 ps->tx_aborted_errors++;
791 if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
792 ps->tx_carrier_errors++;
793 }
794 }
795}
796
797/*
798 * Called from the interrupt service routine to acknowledge
799 * the TX DONE bits. This is a must if the irq is setup as
800 * edge triggered.
801 */
802static void au1000_tx_ack(struct net_device *dev)
803{
804 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000805 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800806
807 ptxd = aup->tx_dma_ring[aup->tx_tail];
808
809 while (ptxd->buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000810 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800811 ptxd->buff_stat &= ~TX_T_DONE;
812 ptxd->len = 0;
813 au_sync();
814
815 aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
816 ptxd = aup->tx_dma_ring[aup->tx_tail];
817
818 if (aup->tx_full) {
819 aup->tx_full = 0;
820 netif_wake_queue(dev);
821 }
822 }
823}
824
825/*
826 * Au1000 interrupt service routine.
827 */
828static irqreturn_t au1000_interrupt(int irq, void *dev_id)
829{
830 struct net_device *dev = dev_id;
831
832 /* Handle RX interrupts first to minimize chance of overrun */
833
834 au1000_rx(dev);
835 au1000_tx_ack(dev);
836 return IRQ_RETVAL(1);
837}
838
839static int au1000_open(struct net_device *dev)
840{
841 int retval;
842 struct au1000_private *aup = netdev_priv(dev);
843
Florian Fainelli5368c722010-04-06 22:09:17 +0000844 netif_dbg(aup, drv, dev, "open: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800845
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000846 retval = request_irq(dev->irq, au1000_interrupt, 0,
847 dev->name, dev);
848 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000849 netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800850 return retval;
851 }
852
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000853 retval = au1000_init(dev);
854 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000855 netdev_err(dev, "error in au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800856 free_irq(dev->irq, dev);
857 return retval;
858 }
859
860 if (aup->phy_dev) {
861 /* cause the PHY state machine to schedule a link state check */
862 aup->phy_dev->state = PHY_CHANGELINK;
863 phy_start(aup->phy_dev);
864 }
865
866 netif_start_queue(dev);
867
Florian Fainelli5368c722010-04-06 22:09:17 +0000868 netif_dbg(aup, drv, dev, "open: Initialization done.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800869
870 return 0;
871}
872
873static int au1000_close(struct net_device *dev)
874{
875 unsigned long flags;
876 struct au1000_private *const aup = netdev_priv(dev);
877
Florian Fainelli5368c722010-04-06 22:09:17 +0000878 netif_dbg(aup, drv, dev, "close: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800879
880 if (aup->phy_dev)
881 phy_stop(aup->phy_dev);
882
883 spin_lock_irqsave(&aup->lock, flags);
884
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000885 au1000_reset_mac_unlocked(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800886
887 /* stop the device */
888 netif_stop_queue(dev);
889
890 /* disable the interrupt */
891 free_irq(dev->irq, dev);
892 spin_unlock_irqrestore(&aup->lock, flags);
893
894 return 0;
895}
896
897/*
898 * Au1000 transmit routine.
899 */
Stephen Hemminger613573252009-08-31 19:50:58 +0000900static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800901{
902 struct au1000_private *aup = netdev_priv(dev);
903 struct net_device_stats *ps = &dev->stats;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000904 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800905 u32 buff_stat;
Florian Fainelli34415922010-09-08 11:11:25 +0000906 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800907 int i;
908
Florian Fainelli5368c722010-04-06 22:09:17 +0000909 netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
910 (unsigned)aup, skb->len,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800911 skb->data, aup->tx_head);
912
913 ptxd = aup->tx_dma_ring[aup->tx_head];
914 buff_stat = ptxd->buff_stat;
915 if (buff_stat & TX_DMA_ENABLE) {
916 /* We've wrapped around and the transmitter is still busy */
917 netif_stop_queue(dev);
918 aup->tx_full = 1;
Patrick McHardy5b548142009-06-12 06:22:29 +0000919 return NETDEV_TX_BUSY;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000920 } else if (buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000921 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800922 ptxd->len = 0;
923 }
924
925 if (aup->tx_full) {
926 aup->tx_full = 0;
927 netif_wake_queue(dev);
928 }
929
930 pDB = aup->tx_db_inuse[aup->tx_head];
Florian Fainellibd2302c2009-11-10 01:13:38 +0100931 skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800932 if (skb->len < ETH_ZLEN) {
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000933 for (i = skb->len; i < ETH_ZLEN; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800934 ((char *)pDB->vaddr)[i] = 0;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000935
Florian Fainelli5ef30412009-01-22 14:06:25 -0800936 ptxd->len = ETH_ZLEN;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000937 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800938 ptxd->len = skb->len;
939
940 ps->tx_packets++;
941 ps->tx_bytes += ptxd->len;
942
943 ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
944 au_sync();
945 dev_kfree_skb(skb);
946 aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000947 return NETDEV_TX_OK;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800948}
949
950/*
951 * The Tx ring has been full longer than the watchdog timeout
952 * value. The transmitter must be hung?
953 */
954static void au1000_tx_timeout(struct net_device *dev)
955{
Florian Fainelli5368c722010-04-06 22:09:17 +0000956 netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
Florian Fainellieb049632010-04-06 22:09:01 +0000957 au1000_reset_mac(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800958 au1000_init(dev);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700959 dev->trans_start = jiffies; /* prevent tx timeout */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800960 netif_wake_queue(dev);
961}
962
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +0000963static void au1000_multicast_list(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800964{
965 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000966 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800967
Florian Fainelli18b8e152010-09-08 11:11:40 +0000968 netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000969 reg = readl(&aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800970 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000971 reg |= MAC_PROMISCUOUS;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800972 } else if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000973 netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000974 reg |= MAC_PASS_ALL_MULTI;
975 reg &= ~MAC_PROMISCUOUS;
Florian Fainelli5368c722010-04-06 22:09:17 +0000976 netdev_info(dev, "Pass all multicast\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800977 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000978 struct netdev_hw_addr *ha;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800979 u32 mc_filter[2]; /* Multicast hash filter */
980
981 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000982 netdev_for_each_mc_addr(ha, dev)
983 set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800984 (long *)mc_filter);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000985 writel(mc_filter[1], &aup->mac->multi_hash_high);
986 writel(mc_filter[0], &aup->mac->multi_hash_low);
987 reg &= ~MAC_PROMISCUOUS;
988 reg |= MAC_HASH_MODE;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800989 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000990 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800991}
992
993static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
994{
995 struct au1000_private *aup = netdev_priv(dev);
996
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000997 if (!netif_running(dev))
998 return -EINVAL;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800999
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001000 if (!aup->phy_dev)
1001 return -EINVAL; /* PHY not controllable */
Florian Fainelli5ef30412009-01-22 14:06:25 -08001002
Richard Cochran28b04112010-07-17 08:48:55 +00001003 return phy_mii_ioctl(aup->phy_dev, rq, cmd);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001004}
1005
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001006static const struct net_device_ops au1000_netdev_ops = {
1007 .ndo_open = au1000_open,
1008 .ndo_stop = au1000_close,
1009 .ndo_start_xmit = au1000_tx,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001010 .ndo_set_rx_mode = au1000_multicast_list,
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001011 .ndo_do_ioctl = au1000_ioctl,
1012 .ndo_tx_timeout = au1000_tx_timeout,
1013 .ndo_set_mac_address = eth_mac_addr,
1014 .ndo_validate_addr = eth_validate_addr,
1015 .ndo_change_mtu = eth_change_mtu,
1016};
1017
Bill Pemberton0cb05682012-12-03 09:23:54 -05001018static int au1000_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001020 static unsigned version_printed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 struct au1000_private *aup = NULL;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001022 struct au1000_eth_platform_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct net_device *dev = NULL;
Florian Fainelli34415922010-09-08 11:11:25 +00001024 struct db_dest *pDB, *pDBfree;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001025 int irq, i, err = 0;
Linus Torvaldsd6748062011-11-03 13:28:14 -07001026 struct resource *base, *macen, *macdma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Florian Fainellibd2302c2009-11-10 01:13:38 +01001028 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1029 if (!base) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001030 dev_err(&pdev->dev, "failed to retrieve base register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001031 err = -ENODEV;
1032 goto out;
1033 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001034
Florian Fainellibd2302c2009-11-10 01:13:38 +01001035 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1036 if (!macen) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001037 dev_err(&pdev->dev, "failed to retrieve MAC Enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001038 err = -ENODEV;
1039 goto out;
1040 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001041
Florian Fainellibd2302c2009-11-10 01:13:38 +01001042 irq = platform_get_irq(pdev, 0);
1043 if (irq < 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001044 dev_err(&pdev->dev, "failed to retrieve IRQ\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001045 err = -ENODEV;
1046 goto out;
1047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Linus Torvaldsd6748062011-11-03 13:28:14 -07001049 macdma = platform_get_resource(pdev, IORESOURCE_MEM, 2);
1050 if (!macdma) {
1051 dev_err(&pdev->dev, "failed to retrieve MACDMA registers\n");
1052 err = -ENODEV;
1053 goto out;
1054 }
1055
Florian Fainelli18b8e152010-09-08 11:11:40 +00001056 if (!request_mem_region(base->start, resource_size(base),
1057 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001058 dev_err(&pdev->dev, "failed to request memory region for base registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001059 err = -ENXIO;
1060 goto out;
1061 }
1062
Florian Fainelli18b8e152010-09-08 11:11:40 +00001063 if (!request_mem_region(macen->start, resource_size(macen),
1064 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001065 dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001066 err = -ENXIO;
1067 goto err_request;
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Linus Torvaldsd6748062011-11-03 13:28:14 -07001070 if (!request_mem_region(macdma->start, resource_size(macdma),
1071 pdev->name)) {
1072 dev_err(&pdev->dev, "failed to request MACDMA memory region\n");
1073 err = -ENXIO;
1074 goto err_macdma;
1075 }
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 dev = alloc_etherdev(sizeof(struct au1000_private));
1078 if (!dev) {
Florian Fainellibd2302c2009-11-10 01:13:38 +01001079 err = -ENOMEM;
1080 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
Florian Fainellibd2302c2009-11-10 01:13:38 +01001083 SET_NETDEV_DEV(dev, &pdev->dev);
1084 platform_set_drvdata(pdev, dev);
Wang Chen454d7c92008-11-12 23:37:49 -08001085 aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Martin Gebert533763d2008-07-23 09:40:09 +02001087 spin_lock_init(&aup->lock);
Florian Fainelli18b8e152010-09-08 11:11:40 +00001088 aup->msg_enable = (au1000_debug < 4 ?
1089 AU1000_DEF_MSG_ENABLE : au1000_debug);
Martin Gebert533763d2008-07-23 09:40:09 +02001090
Florian Fainellidc998392010-09-08 11:11:59 +00001091 /* Allocate the data buffers
1092 * Snooping works fine with eth on all au1xxx
1093 */
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001094 aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
1095 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1096 &aup->dma_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (!aup->vaddr) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001098 dev_err(&pdev->dev, "failed to allocate data buffers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001099 err = -ENOMEM;
1100 goto err_vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102
1103 /* aup->mac is the base address of the MAC's registers */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001104 aup->mac = (struct mac_reg *)
Florian Fainelli18b8e152010-09-08 11:11:40 +00001105 ioremap_nocache(base->start, resource_size(base));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001106 if (!aup->mac) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001107 dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001108 err = -ENXIO;
1109 goto err_remap1;
1110 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001111
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001112 /* Setup some variables for quick register address access */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001113 aup->enable = (u32 *)ioremap_nocache(macen->start,
Florian Fainelli18b8e152010-09-08 11:11:40 +00001114 resource_size(macen));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001115 if (!aup->enable) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001116 dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001117 err = -ENXIO;
1118 goto err_remap2;
1119 }
1120 aup->mac_id = pdev->id;
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001121
Linus Torvaldsd6748062011-11-03 13:28:14 -07001122 aup->macdma = ioremap_nocache(macdma->start, resource_size(macdma));
1123 if (!aup->macdma) {
1124 dev_err(&pdev->dev, "failed to ioremap MACDMA registers\n");
1125 err = -ENXIO;
1126 goto err_remap3;
1127 }
1128
1129 au1000_setup_hw_rings(aup, aup->macdma);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001130
Wolfgang Grandegger462ca992010-11-23 06:40:25 +00001131 writel(0, aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001132 aup->mac_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Jingoo Han1fc2c462013-08-30 13:51:45 +09001134 pd = dev_get_platdata(&pdev->dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001135 if (!pd) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001136 dev_info(&pdev->dev, "no platform_data passed,"
1137 " PHY search on MAC0\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001138 aup->phy1_search_mac0 = 1;
1139 } else {
Danny Kukawka7718f2c2012-02-17 05:43:22 +00001140 if (is_valid_ether_addr(pd->mac)) {
Manuel Laussf6673652010-07-21 14:30:50 +02001141 memcpy(dev->dev_addr, pd->mac, 6);
Danny Kukawka7718f2c2012-02-17 05:43:22 +00001142 } else {
1143 /* Set a random MAC since no valid provided by platform_data. */
1144 eth_hw_addr_random(dev);
1145 }
Manuel Laussf6673652010-07-21 14:30:50 +02001146
Florian Fainellibd2302c2009-11-10 01:13:38 +01001147 aup->phy_static_config = pd->phy_static_config;
1148 aup->phy_search_highest_addr = pd->phy_search_highest_addr;
1149 aup->phy1_search_mac0 = pd->phy1_search_mac0;
1150 aup->phy_addr = pd->phy_addr;
1151 aup->phy_busid = pd->phy_busid;
1152 aup->phy_irq = pd->phy_irq;
1153 }
1154
1155 if (aup->phy_busid && aup->phy_busid > 0) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001156 dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001157 err = -ENODEV;
1158 goto err_mdiobus_alloc;
1159 }
1160
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001161 aup->mii_bus = mdiobus_alloc();
Florian Fainellibd2302c2009-11-10 01:13:38 +01001162 if (aup->mii_bus == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001163 dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001164 err = -ENOMEM;
1165 goto err_mdiobus_alloc;
1166 }
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001167
1168 aup->mii_bus->priv = dev;
Adrian Bunk1210dde2008-10-12 21:02:19 -07001169 aup->mii_bus->read = au1000_mdiobus_read;
1170 aup->mii_bus->write = au1000_mdiobus_write;
1171 aup->mii_bus->reset = au1000_mdiobus_reset;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001172 aup->mii_bus->name = "au1000_eth_mii";
Florian Fainellif74299b2012-01-09 23:59:09 +00001173 snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1174 pdev->name, aup->mac_id);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001175 aup->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001176 if (aup->mii_bus->irq == NULL) {
1177 err = -ENOMEM;
roel kluindcbfef82009-08-30 22:40:15 +00001178 goto err_out;
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001179 }
roel kluindcbfef82009-08-30 22:40:15 +00001180
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001181 for (i = 0; i < PHY_MAX_ADDR; ++i)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001182 aup->mii_bus->irq[i] = PHY_POLL;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001183 /* if known, set corresponding PHY IRQs */
Florian Fainellibd2302c2009-11-10 01:13:38 +01001184 if (aup->phy_static_config)
1185 if (aup->phy_irq && aup->phy_busid == aup->mac_id)
1186 aup->mii_bus->irq[aup->phy_addr] = aup->phy_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Florian Fainellibd2302c2009-11-10 01:13:38 +01001188 err = mdiobus_register(aup->mii_bus);
1189 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001190 dev_err(&pdev->dev, "failed to register MDIO bus\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001191 goto err_mdiobus_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001194 err = au1000_mii_probe(dev);
1195 if (err != 0)
Florian Fainellibd2302c2009-11-10 01:13:38 +01001196 goto err_out;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 pDBfree = NULL;
1199 /* setup the data buffer descriptors and attach a buffer to each one */
1200 pDB = aup->db;
1201 for (i = 0; i < (NUM_TX_BUFFS+NUM_RX_BUFFS); i++) {
1202 pDB->pnext = pDBfree;
1203 pDBfree = pDB;
1204 pDB->vaddr = (u32 *)((unsigned)aup->vaddr + MAX_BUF_SIZE*i);
1205 pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
1206 pDB++;
1207 }
1208 aup->pDBfree = pDBfree;
1209
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001210 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 for (i = 0; i < NUM_RX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001212 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001213 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1217 aup->rx_db_inuse[i] = pDB;
1218 }
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001219
1220 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 for (i = 0; i < NUM_TX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001222 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001223 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1227 aup->tx_dma_ring[i]->len = 0;
1228 aup->tx_db_inuse[i] = pDB;
1229 }
1230
Florian Fainellibd2302c2009-11-10 01:13:38 +01001231 dev->base_addr = base->start;
1232 dev->irq = irq;
1233 dev->netdev_ops = &au1000_netdev_ops;
1234 SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops);
1235 dev->watchdog_timeo = ETH_TX_TIMEOUT;
1236
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001237 /*
1238 * The boot code uses the ethernet controller, so reset it to start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * fresh. au1000_init() expects that the device is in reset state.
1240 */
Florian Fainellieb049632010-04-06 22:09:01 +00001241 au1000_reset_mac(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Florian Fainellibd2302c2009-11-10 01:13:38 +01001243 err = register_netdev(dev);
1244 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001245 netdev_err(dev, "Cannot register net device, aborting.\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001246 goto err_out;
1247 }
1248
Florian Fainelli5368c722010-04-06 22:09:17 +00001249 netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1250 (unsigned long)base->start, irq);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001251 if (version_printed++ == 0)
Florian Fainelli215e17b2010-09-08 11:11:45 +00001252 pr_info("%s version %s %s\n",
1253 DRV_NAME, DRV_VERSION, DRV_AUTHOR);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001254
1255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257err_out:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001258 if (aup->mii_bus != NULL)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001259 mdiobus_unregister(aup->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /* here we should have a valid dev plus aup-> register addresses
Florian Fainellidc998392010-09-08 11:11:59 +00001262 * so we can reset the mac properly.
1263 */
Florian Fainellieb049632010-04-06 22:09:01 +00001264 au1000_reset_mac(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 for (i = 0; i < NUM_RX_DMA; i++) {
1267 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001268 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270 for (i = 0; i < NUM_TX_DMA; i++) {
1271 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001272 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Florian Fainellibd2302c2009-11-10 01:13:38 +01001274err_mdiobus_reg:
1275 mdiobus_free(aup->mii_bus);
1276err_mdiobus_alloc:
Linus Torvaldsd6748062011-11-03 13:28:14 -07001277 iounmap(aup->macdma);
1278err_remap3:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001279 iounmap(aup->enable);
1280err_remap2:
1281 iounmap(aup->mac);
1282err_remap1:
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001283 dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
1284 (void *)aup->vaddr, aup->dma_addr);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001285err_vaddr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 free_netdev(dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001287err_alloc:
Linus Torvaldsd6748062011-11-03 13:28:14 -07001288 release_mem_region(macdma->start, resource_size(macdma));
1289err_macdma:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001290 release_mem_region(macen->start, resource_size(macen));
1291err_request:
1292 release_mem_region(base->start, resource_size(base));
1293out:
1294 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
Bill Pemberton0cb05682012-12-03 09:23:54 -05001297static int au1000_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Florian Fainellibd2302c2009-11-10 01:13:38 +01001299 struct net_device *dev = platform_get_drvdata(pdev);
1300 struct au1000_private *aup = netdev_priv(dev);
1301 int i;
1302 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Florian Fainellibd2302c2009-11-10 01:13:38 +01001304 unregister_netdev(dev);
1305 mdiobus_unregister(aup->mii_bus);
1306 mdiobus_free(aup->mii_bus);
1307
1308 for (i = 0; i < NUM_RX_DMA; i++)
1309 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001310 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001311
1312 for (i = 0; i < NUM_TX_DMA; i++)
1313 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001314 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001315
1316 dma_free_noncoherent(NULL, MAX_BUF_SIZE *
1317 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1318 (void *)aup->vaddr, aup->dma_addr);
1319
Linus Torvaldsd6748062011-11-03 13:28:14 -07001320 iounmap(aup->macdma);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001321 iounmap(aup->mac);
1322 iounmap(aup->enable);
1323
Linus Torvaldsd6748062011-11-03 13:28:14 -07001324 base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
1325 release_mem_region(base->start, resource_size(base));
1326
Florian Fainellibd2302c2009-11-10 01:13:38 +01001327 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1328 release_mem_region(base->start, resource_size(base));
1329
1330 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1331 release_mem_region(macen->start, resource_size(macen));
1332
1333 free_netdev(dev);
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return 0;
1336}
1337
Florian Fainellibd2302c2009-11-10 01:13:38 +01001338static struct platform_driver au1000_eth_driver = {
1339 .probe = au1000_probe,
Bill Pemberton0cb05682012-12-03 09:23:54 -05001340 .remove = au1000_remove,
Florian Fainellibd2302c2009-11-10 01:13:38 +01001341 .driver = {
1342 .name = "au1000-eth",
1343 .owner = THIS_MODULE,
1344 },
1345};
Axel Lindb62f682011-11-27 16:44:17 +00001346
1347module_platform_driver(au1000_eth_driver);
1348
Florian Fainellibd2302c2009-11-10 01:13:38 +01001349MODULE_ALIAS("platform:au1000-eth");