blob: f4c394fa2d931e5ed22e5d53db1367320ea1f025 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109struct au1000_private *au_macs[NUM_ETH_INTERFACES];
110
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200111/*
112 * board-specific configurations
113 *
114 * PHY detection algorithm
115 *
Florian Fainellibd2302c2009-11-10 01:13:38 +0100116 * If phy_static_config is undefined, the PHY setup is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200117 * autodetected:
118 *
119 * mii_probe() first searches the current MAC's MII bus for a PHY,
Florian Fainellibd2302c2009-11-10 01:13:38 +0100120 * selecting the first (or last, if phy_search_highest_addr is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200121 * defined) PHY address not already claimed by another netdev.
122 *
123 * If nothing was found that way when searching for the 2nd ethernet
Florian Fainellibd2302c2009-11-10 01:13:38 +0100124 * controller's PHY and phy1_search_mac0 is defined, then
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200125 * the first MII bus is searched as well for an unclaimed PHY; this is
126 * needed in case of a dual-PHY accessible only through the MAC0's MII
127 * bus.
128 *
129 * Finally, if no PHY is found, then the corresponding ethernet
130 * controller is not registered to the network subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
132
Florian Fainellibd2302c2009-11-10 01:13:38 +0100133/* autodetection defaults: phy1_search_mac0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200135/* static PHY setup
136 *
137 * most boards PHY setup should be detectable properly with the
138 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
139 * you have a switch attached, or want to use the PHY's interrupt
140 * notification capabilities) you can provide a static PHY
141 * configuration here
142 *
143 * IRQs may only be set, if a PHY address was configured
144 * If a PHY address is given, also a bus id is required to be set
145 *
146 * ps: make sure the used irqs are configured properly in the board
147 * specific irq-map
148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Florian Fainellieb049632010-04-06 22:09:01 +0000150static void au1000_enable_mac(struct net_device *dev, int force_reset)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800151{
152 unsigned long flags;
153 struct au1000_private *aup = netdev_priv(dev);
154
155 spin_lock_irqsave(&aup->lock, flags);
156
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000157 if (force_reset || (!aup->mac_enabled)) {
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000158 writel(MAC_EN_CLOCK_ENABLE, &aup->enable);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800159 au_sync_delay(2);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000160 writel((MAC_EN_RESET0 | MAC_EN_RESET1 | MAC_EN_RESET2
161 | MAC_EN_CLOCK_ENABLE), &aup->enable);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800162 au_sync_delay(2);
163
164 aup->mac_enabled = 1;
165 }
166
167 spin_unlock_irqrestore(&aup->lock, flags);
168}
169
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200170/*
171 * MII operations
172 */
Adrian Bunk1210dde2008-10-12 21:02:19 -0700173static int au1000_mdio_read(struct net_device *dev, int phy_addr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Wang Chen454d7c92008-11-12 23:37:49 -0800175 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000176 u32 *const mii_control_reg = &aup->mac->mii_control;
177 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 u32 timedout = 20;
179 u32 mii_control;
180
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000181 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 mdelay(1);
183 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000184 netdev_err(dev, "read_MII busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -1;
186 }
187 }
188
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400189 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200190 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000192 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 timedout = 20;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000195 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 mdelay(1);
197 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000198 netdev_err(dev, "mdio_read busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -1;
200 }
201 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000202 return readl(mii_data_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Adrian Bunk1210dde2008-10-12 21:02:19 -0700205static void au1000_mdio_write(struct net_device *dev, int phy_addr,
206 int reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Wang Chen454d7c92008-11-12 23:37:49 -0800208 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000209 u32 *const mii_control_reg = &aup->mac->mii_control;
210 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 u32 timedout = 20;
212 u32 mii_control;
213
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000214 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 mdelay(1);
216 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000217 netdev_err(dev, "mdio_write busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return;
219 }
220 }
221
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400222 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200223 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000225 writel(value, mii_data_reg);
226 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Adrian Bunk1210dde2008-10-12 21:02:19 -0700229static int au1000_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200231 /* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
232 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus) */
233 struct net_device *const dev = bus->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Florian Fainellieb049632010-04-06 22:09:01 +0000235 au1000_enable_mac(dev, 0); /* make sure the MAC associated with this
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200236 * mii_bus is enabled */
Adrian Bunk1210dde2008-10-12 21:02:19 -0700237 return au1000_mdio_read(dev, phy_addr, regnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Adrian Bunk1210dde2008-10-12 21:02:19 -0700240static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
241 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200243 struct net_device *const dev = bus->priv;
244
Florian Fainellieb049632010-04-06 22:09:01 +0000245 au1000_enable_mac(dev, 0); /* make sure the MAC associated with this
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200246 * mii_bus is enabled */
Adrian Bunk1210dde2008-10-12 21:02:19 -0700247 au1000_mdio_write(dev, phy_addr, regnum, value);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200248 return 0;
249}
250
Adrian Bunk1210dde2008-10-12 21:02:19 -0700251static int au1000_mdiobus_reset(struct mii_bus *bus)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200252{
253 struct net_device *const dev = bus->priv;
254
Florian Fainellieb049632010-04-06 22:09:01 +0000255 au1000_enable_mac(dev, 0); /* make sure the MAC associated with this
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200256 * mii_bus is enabled */
257 return 0;
258}
259
Florian Fainellieb049632010-04-06 22:09:01 +0000260static void au1000_hard_stop(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800261{
262 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000263 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800264
Florian Fainelli5368c722010-04-06 22:09:17 +0000265 netif_dbg(aup, drv, dev, "hard stop\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800266
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000267 reg = readl(&aup->mac->control);
268 reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
269 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800270 au_sync_delay(10);
271}
272
Florian Fainellieb049632010-04-06 22:09:01 +0000273static void au1000_enable_rx_tx(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800274{
275 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000276 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800277
Florian Fainelli5368c722010-04-06 22:09:17 +0000278 netif_dbg(aup, hw, dev, "enable_rx_tx\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800279
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000280 reg = readl(&aup->mac->control);
281 reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
282 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800283 au_sync_delay(10);
284}
285
286static void
287au1000_adjust_link(struct net_device *dev)
288{
289 struct au1000_private *aup = netdev_priv(dev);
290 struct phy_device *phydev = aup->phy_dev;
291 unsigned long flags;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000292 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800293
294 int status_change = 0;
295
296 BUG_ON(!aup->phy_dev);
297
298 spin_lock_irqsave(&aup->lock, flags);
299
300 if (phydev->link && (aup->old_speed != phydev->speed)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000301 /* speed changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800302
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000303 switch (phydev->speed) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800304 case SPEED_10:
305 case SPEED_100:
306 break;
307 default:
Florian Fainelli5368c722010-04-06 22:09:17 +0000308 netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
309 phydev->speed);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800310 break;
311 }
312
313 aup->old_speed = phydev->speed;
314
315 status_change = 1;
316 }
317
318 if (phydev->link && (aup->old_duplex != phydev->duplex)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000319 /* duplex mode changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800320
321 /* switching duplex mode requires to disable rx and tx! */
Florian Fainellieb049632010-04-06 22:09:01 +0000322 au1000_hard_stop(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800323
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000324 reg = readl(&aup->mac->control);
325 if (DUPLEX_FULL == phydev->duplex) {
326 reg |= MAC_FULL_DUPLEX;
327 reg &= ~MAC_DISABLE_RX_OWN;
328 } else {
329 reg &= ~MAC_FULL_DUPLEX;
330 reg |= MAC_DISABLE_RX_OWN;
331 }
332 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800333 au_sync_delay(1);
334
Florian Fainellieb049632010-04-06 22:09:01 +0000335 au1000_enable_rx_tx(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800336 aup->old_duplex = phydev->duplex;
337
338 status_change = 1;
339 }
340
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000341 if (phydev->link != aup->old_link) {
342 /* link state changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800343
344 if (!phydev->link) {
345 /* link went down */
346 aup->old_speed = 0;
347 aup->old_duplex = -1;
348 }
349
350 aup->old_link = phydev->link;
351 status_change = 1;
352 }
353
354 spin_unlock_irqrestore(&aup->lock, flags);
355
356 if (status_change) {
357 if (phydev->link)
Florian Fainelli5368c722010-04-06 22:09:17 +0000358 netdev_info(dev, "link up (%d/%s)\n",
359 phydev->speed,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800360 DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
361 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000362 netdev_info(dev, "link down\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800363 }
364}
365
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000366static int au1000_mii_probe(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200367{
Wang Chen454d7c92008-11-12 23:37:49 -0800368 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200369 struct phy_device *phydev = NULL;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000370 int phy_addr;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200371
Florian Fainellibd2302c2009-11-10 01:13:38 +0100372 if (aup->phy_static_config) {
373 BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200374
Florian Fainellibd2302c2009-11-10 01:13:38 +0100375 if (aup->phy_addr)
376 phydev = aup->mii_bus->phy_map[aup->phy_addr];
377 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000378 netdev_info(dev, "using PHY-less setup\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200379 return 0;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000380 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200381
Florian Fainelli18b8e152010-09-08 11:11:40 +0000382 /* find the first (lowest address) PHY
383 * on the current MAC's MII bus */
384 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
385 if (aup->mii_bus->phy_map[phy_addr]) {
386 phydev = aup->mii_bus->phy_map[phy_addr];
387 if (!aup->phy_search_highest_addr)
388 /* break out with first one found */
389 break;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Florian Fainelli18b8e152010-09-08 11:11:40 +0000392 if (aup->phy1_search_mac0) {
393 /* try harder to find a PHY */
394 if (!phydev && (aup->mac_id == 1)) {
395 /* no PHY found, maybe we have a dual PHY? */
396 dev_info(&dev->dev, ": no PHY found on MAC1, "
397 "let's see if it's attached to MAC0...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Florian Fainelli18b8e152010-09-08 11:11:40 +0000399 /* find the first (lowest address) non-attached
400 * PHY on the MAC0 MII bus
401 */
402 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
403 struct phy_device *const tmp_phydev =
404 aup->mii_bus->phy_map[phy_addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Florian Fainelli18b8e152010-09-08 11:11:40 +0000406 if (aup->mac_id == 1)
407 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Florian Fainelli18b8e152010-09-08 11:11:40 +0000409 /* no PHY here... */
410 if (!tmp_phydev)
411 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Florian Fainelli18b8e152010-09-08 11:11:40 +0000413 /* already claimed by MAC0 */
414 if (tmp_phydev->attached_dev)
415 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Florian Fainelli18b8e152010-09-08 11:11:40 +0000417 phydev = tmp_phydev;
418 break; /* found it */
Florian Fainellibd2302c2009-11-10 01:13:38 +0100419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200423 if (!phydev) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000424 netdev_err(dev, "no PHY found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return -1;
426 }
427
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200428 /* now we are supposed to have a proper phydev, to attach to... */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200429 BUG_ON(phydev->attached_dev);
430
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800431 phydev = phy_connect(dev, dev_name(&phydev->dev), &au1000_adjust_link,
432 0, PHY_INTERFACE_MODE_MII);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200433
434 if (IS_ERR(phydev)) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000435 netdev_err(dev, "Could not attach to PHY\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200436 return PTR_ERR(phydev);
437 }
438
439 /* mask with MAC supported features */
440 phydev->supported &= (SUPPORTED_10baseT_Half
441 | SUPPORTED_10baseT_Full
442 | SUPPORTED_100baseT_Half
443 | SUPPORTED_100baseT_Full
444 | SUPPORTED_Autoneg
445 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
446 | SUPPORTED_MII
447 | SUPPORTED_TP);
448
449 phydev->advertising = phydev->supported;
450
451 aup->old_link = 0;
452 aup->old_speed = 0;
453 aup->old_duplex = -1;
454 aup->phy_dev = phydev;
455
Florian Fainelli5368c722010-04-06 22:09:17 +0000456 netdev_info(dev, "attached PHY driver [%s] "
457 "(mii_bus:phy_addr=%s, irq=%d)\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800458 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 return 0;
461}
462
463
464/*
465 * Buffer allocation/deallocation routines. The buffer descriptor returned
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400466 * has the virtual and dma address of a buffer suitable for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * both, receive and transmit operations.
468 */
Florian Fainelli34415922010-09-08 11:11:25 +0000469static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Florian Fainelli34415922010-09-08 11:11:25 +0000471 struct db_dest *pDB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 pDB = aup->pDBfree;
473
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000474 if (pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 aup->pDBfree = pDB->pnext;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return pDB;
478}
479
Florian Fainelli34415922010-09-08 11:11:25 +0000480void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Florian Fainelli34415922010-09-08 11:11:25 +0000482 struct db_dest *pDBfree = aup->pDBfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (pDBfree)
484 pDBfree->pnext = pDB;
485 aup->pDBfree = pDB;
486}
487
Florian Fainellieb049632010-04-06 22:09:01 +0000488static void au1000_reset_mac_unlocked(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200489{
Wang Chen454d7c92008-11-12 23:37:49 -0800490 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200491 int i;
492
Florian Fainellieb049632010-04-06 22:09:01 +0000493 au1000_hard_stop(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200494
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000495 writel(MAC_EN_CLOCK_ENABLE, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200496 au_sync_delay(2);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000497 writel(0, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200498 au_sync_delay(2);
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 aup->tx_full = 0;
501 for (i = 0; i < NUM_RX_DMA; i++) {
502 /* reset control bits */
503 aup->rx_dma_ring[i]->buff_stat &= ~0xf;
504 }
505 for (i = 0; i < NUM_TX_DMA; i++) {
506 /* reset control bits */
507 aup->tx_dma_ring[i]->buff_stat &= ~0xf;
508 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200509
510 aup->mac_enabled = 0;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Florian Fainellieb049632010-04-06 22:09:01 +0000514static void au1000_reset_mac(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200515{
Wang Chen454d7c92008-11-12 23:37:49 -0800516 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200517 unsigned long flags;
518
Florian Fainelli5368c722010-04-06 22:09:17 +0000519 netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
520 (unsigned)aup);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200521
522 spin_lock_irqsave(&aup->lock, flags);
523
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000524 au1000_reset_mac_unlocked(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200525
526 spin_unlock_irqrestore(&aup->lock, flags);
527}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400529/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * Setup the receive and transmit "rings". These pointers are the addresses
531 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
532 * these are not descriptors sitting in memory.
533 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400534static void
Florian Fainellieb049632010-04-06 22:09:01 +0000535au1000_setup_hw_rings(struct au1000_private *aup, u32 rx_base, u32 tx_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 int i;
538
539 for (i = 0; i < NUM_RX_DMA; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400540 aup->rx_dma_ring[i] =
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000541 (struct rx_dma *)
Florian Fainelli18b8e152010-09-08 11:11:40 +0000542 (rx_base + sizeof(struct rx_dma)*i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 for (i = 0; i < NUM_TX_DMA; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400545 aup->tx_dma_ring[i] =
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000546 (struct tx_dma *)
Florian Fainelli18b8e152010-09-08 11:11:40 +0000547 (tx_base + sizeof(struct tx_dma)*i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200552 * ethtool operations
553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
556{
Wang Chen454d7c92008-11-12 23:37:49 -0800557 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200559 if (aup->phy_dev)
560 return phy_ethtool_gset(aup->phy_dev, cmd);
561
562 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
566{
Wang Chen454d7c92008-11-12 23:37:49 -0800567 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200569 if (!capable(CAP_NET_ADMIN))
570 return -EPERM;
571
572 if (aup->phy_dev)
573 return phy_ethtool_sset(aup->phy_dev, cmd);
574
575 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578static void
579au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
580{
Wang Chen454d7c92008-11-12 23:37:49 -0800581 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 strcpy(info->driver, DRV_NAME);
584 strcpy(info->version, DRV_VERSION);
585 info->fw_version[0] = '\0';
586 sprintf(info->bus_info, "%s %d", DRV_NAME, aup->mac_id);
587 info->regdump_len = 0;
588}
589
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000590static void au1000_set_msglevel(struct net_device *dev, u32 value)
591{
592 struct au1000_private *aup = netdev_priv(dev);
593 aup->msg_enable = value;
594}
595
596static u32 au1000_get_msglevel(struct net_device *dev)
597{
598 struct au1000_private *aup = netdev_priv(dev);
599 return aup->msg_enable;
600}
601
Jeff Garzik7282d492006-09-13 14:30:00 -0400602static const struct ethtool_ops au1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .get_settings = au1000_get_settings,
604 .set_settings = au1000_set_settings,
605 .get_drvinfo = au1000_get_drvinfo,
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200606 .get_link = ethtool_op_get_link,
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000607 .get_msglevel = au1000_get_msglevel,
608 .set_msglevel = au1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609};
610
Florian Fainelli5ef30412009-01-22 14:06:25 -0800611
612/*
613 * Initialize the interface.
614 *
615 * When the device powers up, the clocks are disabled and the
616 * mac is in reset state. When the interface is closed, we
617 * do the same -- reset the device and disable the clocks to
618 * conserve power. Thus, whenever au1000_init() is called,
619 * the device should already be in reset state.
620 */
621static int au1000_init(struct net_device *dev)
622{
623 struct au1000_private *aup = netdev_priv(dev);
624 unsigned long flags;
625 int i;
626 u32 control;
627
Florian Fainelli5368c722010-04-06 22:09:17 +0000628 netif_dbg(aup, hw, dev, "au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800629
630 /* bring the device out of reset */
Florian Fainellieb049632010-04-06 22:09:01 +0000631 au1000_enable_mac(dev, 1);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800632
633 spin_lock_irqsave(&aup->lock, flags);
634
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000635 writel(0, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800636 aup->tx_head = (aup->tx_dma_ring[0]->buff_stat & 0xC) >> 2;
637 aup->tx_tail = aup->tx_head;
638 aup->rx_head = (aup->rx_dma_ring[0]->buff_stat & 0xC) >> 2;
639
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000640 writel(dev->dev_addr[5]<<8 | dev->dev_addr[4],
641 &aup->mac->mac_addr_high);
642 writel(dev->dev_addr[3]<<24 | dev->dev_addr[2]<<16 |
643 dev->dev_addr[1]<<8 | dev->dev_addr[0],
644 &aup->mac->mac_addr_low);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800645
Florian Fainelli18b8e152010-09-08 11:11:40 +0000646
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000647 for (i = 0; i < NUM_RX_DMA; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800648 aup->rx_dma_ring[i]->buff_stat |= RX_DMA_ENABLE;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000649
Florian Fainelli5ef30412009-01-22 14:06:25 -0800650 au_sync();
651
652 control = MAC_RX_ENABLE | MAC_TX_ENABLE;
653#ifndef CONFIG_CPU_LITTLE_ENDIAN
654 control |= MAC_BIG_ENDIAN;
655#endif
656 if (aup->phy_dev) {
657 if (aup->phy_dev->link && (DUPLEX_FULL == aup->phy_dev->duplex))
658 control |= MAC_FULL_DUPLEX;
659 else
660 control |= MAC_DISABLE_RX_OWN;
661 } else { /* PHY-less op, assume full-duplex */
662 control |= MAC_FULL_DUPLEX;
663 }
664
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000665 writel(control, &aup->mac->control);
666 writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800667 au_sync();
668
669 spin_unlock_irqrestore(&aup->lock, flags);
670 return 0;
671}
672
Florian Fainellieb049632010-04-06 22:09:01 +0000673static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800674{
Florian Fainelli5ef30412009-01-22 14:06:25 -0800675 struct net_device_stats *ps = &dev->stats;
676
677 ps->rx_packets++;
678 if (status & RX_MCAST_FRAME)
679 ps->multicast++;
680
681 if (status & RX_ERROR) {
682 ps->rx_errors++;
683 if (status & RX_MISSED_FRAME)
684 ps->rx_missed_errors++;
roel kluin4989ccb2009-10-06 09:54:18 +0000685 if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
Florian Fainelli5ef30412009-01-22 14:06:25 -0800686 ps->rx_length_errors++;
687 if (status & RX_CRC_ERROR)
688 ps->rx_crc_errors++;
689 if (status & RX_COLL)
690 ps->collisions++;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000691 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800692 ps->rx_bytes += status & RX_FRAME_LEN_MASK;
693
694}
695
696/*
697 * Au1000 receive routine.
698 */
699static int au1000_rx(struct net_device *dev)
700{
701 struct au1000_private *aup = netdev_priv(dev);
702 struct sk_buff *skb;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000703 struct rx_dma *prxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800704 u32 buff_stat, status;
Florian Fainelli34415922010-09-08 11:11:25 +0000705 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800706 u32 frmlen;
707
Florian Fainelli5368c722010-04-06 22:09:17 +0000708 netif_dbg(aup, rx_status, dev, "au1000_rx head %d\n", aup->rx_head);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800709
710 prxd = aup->rx_dma_ring[aup->rx_head];
711 buff_stat = prxd->buff_stat;
712 while (buff_stat & RX_T_DONE) {
713 status = prxd->status;
714 pDB = aup->rx_db_inuse[aup->rx_head];
Florian Fainellieb049632010-04-06 22:09:01 +0000715 au1000_update_rx_stats(dev, status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800716 if (!(status & RX_ERROR)) {
717
718 /* good frame */
719 frmlen = (status & RX_FRAME_LEN_MASK);
720 frmlen -= 4; /* Remove FCS */
721 skb = dev_alloc_skb(frmlen + 2);
722 if (skb == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000723 netdev_err(dev, "Memory squeeze, dropping packet.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800724 dev->stats.rx_dropped++;
725 continue;
726 }
727 skb_reserve(skb, 2); /* 16 byte IP header align */
728 skb_copy_to_linear_data(skb,
729 (unsigned char *)pDB->vaddr, frmlen);
730 skb_put(skb, frmlen);
731 skb->protocol = eth_type_trans(skb, dev);
732 netif_rx(skb); /* pass the packet to upper layers */
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000733 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800734 if (au1000_debug > 4) {
Florian Fainelli215e17b2010-09-08 11:11:45 +0000735 pr_err("rx_error(s):");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800736 if (status & RX_MISSED_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000737 pr_cont(" miss");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800738 if (status & RX_WDOG_TIMER)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000739 pr_cont(" wdog");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800740 if (status & RX_RUNT)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000741 pr_cont(" runt");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800742 if (status & RX_OVERLEN)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000743 pr_cont(" overlen");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800744 if (status & RX_COLL)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000745 pr_cont(" coll");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800746 if (status & RX_MII_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000747 pr_cont(" mii error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800748 if (status & RX_CRC_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000749 pr_cont(" crc error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800750 if (status & RX_LEN_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000751 pr_cont(" len error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800752 if (status & RX_U_CNTRL_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000753 pr_cont(" u control frame");
754 pr_cont("\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800755 }
756 }
757 prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
758 aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
759 au_sync();
760
761 /* next descriptor */
762 prxd = aup->rx_dma_ring[aup->rx_head];
763 buff_stat = prxd->buff_stat;
764 }
765 return 0;
766}
767
Florian Fainellieb049632010-04-06 22:09:01 +0000768static void au1000_update_tx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800769{
770 struct au1000_private *aup = netdev_priv(dev);
771 struct net_device_stats *ps = &dev->stats;
772
773 if (status & TX_FRAME_ABORTED) {
774 if (!aup->phy_dev || (DUPLEX_FULL == aup->phy_dev->duplex)) {
775 if (status & (TX_JAB_TIMEOUT | TX_UNDERRUN)) {
776 /* any other tx errors are only valid
777 * in half duplex mode */
778 ps->tx_errors++;
779 ps->tx_aborted_errors++;
780 }
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000781 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800782 ps->tx_errors++;
783 ps->tx_aborted_errors++;
784 if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
785 ps->tx_carrier_errors++;
786 }
787 }
788}
789
790/*
791 * Called from the interrupt service routine to acknowledge
792 * the TX DONE bits. This is a must if the irq is setup as
793 * edge triggered.
794 */
795static void au1000_tx_ack(struct net_device *dev)
796{
797 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000798 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800799
800 ptxd = aup->tx_dma_ring[aup->tx_tail];
801
802 while (ptxd->buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000803 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800804 ptxd->buff_stat &= ~TX_T_DONE;
805 ptxd->len = 0;
806 au_sync();
807
808 aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
809 ptxd = aup->tx_dma_ring[aup->tx_tail];
810
811 if (aup->tx_full) {
812 aup->tx_full = 0;
813 netif_wake_queue(dev);
814 }
815 }
816}
817
818/*
819 * Au1000 interrupt service routine.
820 */
821static irqreturn_t au1000_interrupt(int irq, void *dev_id)
822{
823 struct net_device *dev = dev_id;
824
825 /* Handle RX interrupts first to minimize chance of overrun */
826
827 au1000_rx(dev);
828 au1000_tx_ack(dev);
829 return IRQ_RETVAL(1);
830}
831
832static int au1000_open(struct net_device *dev)
833{
834 int retval;
835 struct au1000_private *aup = netdev_priv(dev);
836
Florian Fainelli5368c722010-04-06 22:09:17 +0000837 netif_dbg(aup, drv, dev, "open: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800838
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000839 retval = request_irq(dev->irq, au1000_interrupt, 0,
840 dev->name, dev);
841 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000842 netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800843 return retval;
844 }
845
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000846 retval = au1000_init(dev);
847 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000848 netdev_err(dev, "error in au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800849 free_irq(dev->irq, dev);
850 return retval;
851 }
852
853 if (aup->phy_dev) {
854 /* cause the PHY state machine to schedule a link state check */
855 aup->phy_dev->state = PHY_CHANGELINK;
856 phy_start(aup->phy_dev);
857 }
858
859 netif_start_queue(dev);
860
Florian Fainelli5368c722010-04-06 22:09:17 +0000861 netif_dbg(aup, drv, dev, "open: Initialization done.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800862
863 return 0;
864}
865
866static int au1000_close(struct net_device *dev)
867{
868 unsigned long flags;
869 struct au1000_private *const aup = netdev_priv(dev);
870
Florian Fainelli5368c722010-04-06 22:09:17 +0000871 netif_dbg(aup, drv, dev, "close: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800872
873 if (aup->phy_dev)
874 phy_stop(aup->phy_dev);
875
876 spin_lock_irqsave(&aup->lock, flags);
877
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000878 au1000_reset_mac_unlocked(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800879
880 /* stop the device */
881 netif_stop_queue(dev);
882
883 /* disable the interrupt */
884 free_irq(dev->irq, dev);
885 spin_unlock_irqrestore(&aup->lock, flags);
886
887 return 0;
888}
889
890/*
891 * Au1000 transmit routine.
892 */
Stephen Hemminger613573252009-08-31 19:50:58 +0000893static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800894{
895 struct au1000_private *aup = netdev_priv(dev);
896 struct net_device_stats *ps = &dev->stats;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000897 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800898 u32 buff_stat;
Florian Fainelli34415922010-09-08 11:11:25 +0000899 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800900 int i;
901
Florian Fainelli5368c722010-04-06 22:09:17 +0000902 netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
903 (unsigned)aup, skb->len,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800904 skb->data, aup->tx_head);
905
906 ptxd = aup->tx_dma_ring[aup->tx_head];
907 buff_stat = ptxd->buff_stat;
908 if (buff_stat & TX_DMA_ENABLE) {
909 /* We've wrapped around and the transmitter is still busy */
910 netif_stop_queue(dev);
911 aup->tx_full = 1;
Patrick McHardy5b548142009-06-12 06:22:29 +0000912 return NETDEV_TX_BUSY;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000913 } else if (buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000914 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800915 ptxd->len = 0;
916 }
917
918 if (aup->tx_full) {
919 aup->tx_full = 0;
920 netif_wake_queue(dev);
921 }
922
923 pDB = aup->tx_db_inuse[aup->tx_head];
Florian Fainellibd2302c2009-11-10 01:13:38 +0100924 skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800925 if (skb->len < ETH_ZLEN) {
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000926 for (i = skb->len; i < ETH_ZLEN; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800927 ((char *)pDB->vaddr)[i] = 0;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000928
Florian Fainelli5ef30412009-01-22 14:06:25 -0800929 ptxd->len = ETH_ZLEN;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000930 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800931 ptxd->len = skb->len;
932
933 ps->tx_packets++;
934 ps->tx_bytes += ptxd->len;
935
936 ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
937 au_sync();
938 dev_kfree_skb(skb);
939 aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000940 return NETDEV_TX_OK;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800941}
942
943/*
944 * The Tx ring has been full longer than the watchdog timeout
945 * value. The transmitter must be hung?
946 */
947static void au1000_tx_timeout(struct net_device *dev)
948{
Florian Fainelli5368c722010-04-06 22:09:17 +0000949 netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
Florian Fainellieb049632010-04-06 22:09:01 +0000950 au1000_reset_mac(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800951 au1000_init(dev);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700952 dev->trans_start = jiffies; /* prevent tx timeout */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800953 netif_wake_queue(dev);
954}
955
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +0000956static void au1000_multicast_list(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800957{
958 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000959 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800960
Florian Fainelli18b8e152010-09-08 11:11:40 +0000961 netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000962 reg = readl(&aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800963 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000964 reg |= MAC_PROMISCUOUS;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800965 } else if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000966 netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000967 reg |= MAC_PASS_ALL_MULTI;
968 reg &= ~MAC_PROMISCUOUS;
Florian Fainelli5368c722010-04-06 22:09:17 +0000969 netdev_info(dev, "Pass all multicast\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800970 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000971 struct netdev_hw_addr *ha;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800972 u32 mc_filter[2]; /* Multicast hash filter */
973
974 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000975 netdev_for_each_mc_addr(ha, dev)
976 set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800977 (long *)mc_filter);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000978 writel(mc_filter[1], &aup->mac->multi_hash_high);
979 writel(mc_filter[0], &aup->mac->multi_hash_low);
980 reg &= ~MAC_PROMISCUOUS;
981 reg |= MAC_HASH_MODE;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800982 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000983 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800984}
985
986static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
987{
988 struct au1000_private *aup = netdev_priv(dev);
989
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000990 if (!netif_running(dev))
991 return -EINVAL;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800992
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000993 if (!aup->phy_dev)
994 return -EINVAL; /* PHY not controllable */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800995
Richard Cochran28b04112010-07-17 08:48:55 +0000996 return phy_mii_ioctl(aup->phy_dev, rq, cmd);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800997}
998
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +0000999static const struct net_device_ops au1000_netdev_ops = {
1000 .ndo_open = au1000_open,
1001 .ndo_stop = au1000_close,
1002 .ndo_start_xmit = au1000_tx,
1003 .ndo_set_multicast_list = au1000_multicast_list,
1004 .ndo_do_ioctl = au1000_ioctl,
1005 .ndo_tx_timeout = au1000_tx_timeout,
1006 .ndo_set_mac_address = eth_mac_addr,
1007 .ndo_validate_addr = eth_validate_addr,
1008 .ndo_change_mtu = eth_change_mtu,
1009};
1010
Florian Fainellibd2302c2009-11-10 01:13:38 +01001011static int __devinit au1000_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001013 static unsigned version_printed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct au1000_private *aup = NULL;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001015 struct au1000_eth_platform_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 struct net_device *dev = NULL;
Florian Fainelli34415922010-09-08 11:11:25 +00001017 struct db_dest *pDB, *pDBfree;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001018 int irq, i, err = 0;
1019 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Florian Fainellibd2302c2009-11-10 01:13:38 +01001021 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1022 if (!base) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001023 dev_err(&pdev->dev, "failed to retrieve base register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001024 err = -ENODEV;
1025 goto out;
1026 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001027
Florian Fainellibd2302c2009-11-10 01:13:38 +01001028 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1029 if (!macen) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001030 dev_err(&pdev->dev, "failed to retrieve MAC Enable 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 irq = platform_get_irq(pdev, 0);
1036 if (irq < 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001037 dev_err(&pdev->dev, "failed to retrieve IRQ\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001038 err = -ENODEV;
1039 goto out;
1040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Florian Fainelli18b8e152010-09-08 11:11:40 +00001042 if (!request_mem_region(base->start, resource_size(base),
1043 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001044 dev_err(&pdev->dev, "failed to request memory region for base registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001045 err = -ENXIO;
1046 goto out;
1047 }
1048
Florian Fainelli18b8e152010-09-08 11:11:40 +00001049 if (!request_mem_region(macen->start, resource_size(macen),
1050 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001051 dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001052 err = -ENXIO;
1053 goto err_request;
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 dev = alloc_etherdev(sizeof(struct au1000_private));
1057 if (!dev) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001058 dev_err(&pdev->dev, "alloc_etherdev failed\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001059 err = -ENOMEM;
1060 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
Florian Fainellibd2302c2009-11-10 01:13:38 +01001063 SET_NETDEV_DEV(dev, &pdev->dev);
1064 platform_set_drvdata(pdev, dev);
Wang Chen454d7c92008-11-12 23:37:49 -08001065 aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Martin Gebert533763d2008-07-23 09:40:09 +02001067 spin_lock_init(&aup->lock);
Florian Fainelli18b8e152010-09-08 11:11:40 +00001068 aup->msg_enable = (au1000_debug < 4 ?
1069 AU1000_DEF_MSG_ENABLE : au1000_debug);
Martin Gebert533763d2008-07-23 09:40:09 +02001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /* Allocate the data buffers */
1072 /* Snooping works fine with eth on all au1xxx */
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001073 aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
1074 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1075 &aup->dma_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (!aup->vaddr) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001077 dev_err(&pdev->dev, "failed to allocate data buffers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001078 err = -ENOMEM;
1079 goto err_vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
1082 /* aup->mac is the base address of the MAC's registers */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001083 aup->mac = (struct mac_reg *)
Florian Fainelli18b8e152010-09-08 11:11:40 +00001084 ioremap_nocache(base->start, resource_size(base));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001085 if (!aup->mac) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001086 dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001087 err = -ENXIO;
1088 goto err_remap1;
1089 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001090
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001091 /* Setup some variables for quick register address access */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001092 aup->enable = (u32 *)ioremap_nocache(macen->start,
Florian Fainelli18b8e152010-09-08 11:11:40 +00001093 resource_size(macen));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001094 if (!aup->enable) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001095 dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001096 err = -ENXIO;
1097 goto err_remap2;
1098 }
1099 aup->mac_id = pdev->id;
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001100
Manuel Laussf667365322010-07-21 14:30:50 +02001101 if (pdev->id == 0)
Florian Fainellieb049632010-04-06 22:09:01 +00001102 au1000_setup_hw_rings(aup, MAC0_RX_DMA_ADDR, MAC0_TX_DMA_ADDR);
Manuel Laussf667365322010-07-21 14:30:50 +02001103 else if (pdev->id == 1)
Florian Fainellieb049632010-04-06 22:09:01 +00001104 au1000_setup_hw_rings(aup, MAC1_RX_DMA_ADDR, MAC1_TX_DMA_ADDR);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001105
Manuel Laussf667365322010-07-21 14:30:50 +02001106 /* set a random MAC now in case platform_data doesn't provide one */
1107 random_ether_addr(dev->dev_addr);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001108
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001109 writel(0, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001110 aup->mac_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Florian Fainellibd2302c2009-11-10 01:13:38 +01001112 pd = pdev->dev.platform_data;
1113 if (!pd) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001114 dev_info(&pdev->dev, "no platform_data passed,"
1115 " PHY search on MAC0\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001116 aup->phy1_search_mac0 = 1;
1117 } else {
Manuel Laussf667365322010-07-21 14:30:50 +02001118 if (is_valid_ether_addr(pd->mac))
1119 memcpy(dev->dev_addr, pd->mac, 6);
1120
Florian Fainellibd2302c2009-11-10 01:13:38 +01001121 aup->phy_static_config = pd->phy_static_config;
1122 aup->phy_search_highest_addr = pd->phy_search_highest_addr;
1123 aup->phy1_search_mac0 = pd->phy1_search_mac0;
1124 aup->phy_addr = pd->phy_addr;
1125 aup->phy_busid = pd->phy_busid;
1126 aup->phy_irq = pd->phy_irq;
1127 }
1128
1129 if (aup->phy_busid && aup->phy_busid > 0) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001130 dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001131 err = -ENODEV;
1132 goto err_mdiobus_alloc;
1133 }
1134
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001135 aup->mii_bus = mdiobus_alloc();
Florian Fainellibd2302c2009-11-10 01:13:38 +01001136 if (aup->mii_bus == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001137 dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001138 err = -ENOMEM;
1139 goto err_mdiobus_alloc;
1140 }
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001141
1142 aup->mii_bus->priv = dev;
Adrian Bunk1210dde2008-10-12 21:02:19 -07001143 aup->mii_bus->read = au1000_mdiobus_read;
1144 aup->mii_bus->write = au1000_mdiobus_write;
1145 aup->mii_bus->reset = au1000_mdiobus_reset;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001146 aup->mii_bus->name = "au1000_eth_mii";
1147 snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%x", aup->mac_id);
1148 aup->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
roel kluindcbfef82009-08-30 22:40:15 +00001149 if (aup->mii_bus->irq == NULL)
1150 goto err_out;
1151
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001152 for (i = 0; i < PHY_MAX_ADDR; ++i)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001153 aup->mii_bus->irq[i] = PHY_POLL;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001154 /* if known, set corresponding PHY IRQs */
Florian Fainellibd2302c2009-11-10 01:13:38 +01001155 if (aup->phy_static_config)
1156 if (aup->phy_irq && aup->phy_busid == aup->mac_id)
1157 aup->mii_bus->irq[aup->phy_addr] = aup->phy_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Florian Fainellibd2302c2009-11-10 01:13:38 +01001159 err = mdiobus_register(aup->mii_bus);
1160 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001161 dev_err(&pdev->dev, "failed to register MDIO bus\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001162 goto err_mdiobus_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
Florian Fainellieb049632010-04-06 22:09:01 +00001165 if (au1000_mii_probe(dev) != 0)
Florian Fainellibd2302c2009-11-10 01:13:38 +01001166 goto err_out;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 pDBfree = NULL;
1169 /* setup the data buffer descriptors and attach a buffer to each one */
1170 pDB = aup->db;
1171 for (i = 0; i < (NUM_TX_BUFFS+NUM_RX_BUFFS); i++) {
1172 pDB->pnext = pDBfree;
1173 pDBfree = pDB;
1174 pDB->vaddr = (u32 *)((unsigned)aup->vaddr + MAX_BUF_SIZE*i);
1175 pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
1176 pDB++;
1177 }
1178 aup->pDBfree = pDBfree;
1179
1180 for (i = 0; i < NUM_RX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001181 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001182 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1186 aup->rx_db_inuse[i] = pDB;
1187 }
1188 for (i = 0; i < NUM_TX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001189 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001190 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1194 aup->tx_dma_ring[i]->len = 0;
1195 aup->tx_db_inuse[i] = pDB;
1196 }
1197
Florian Fainellibd2302c2009-11-10 01:13:38 +01001198 dev->base_addr = base->start;
1199 dev->irq = irq;
1200 dev->netdev_ops = &au1000_netdev_ops;
1201 SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops);
1202 dev->watchdog_timeo = ETH_TX_TIMEOUT;
1203
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001204 /*
1205 * The boot code uses the ethernet controller, so reset it to start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * fresh. au1000_init() expects that the device is in reset state.
1207 */
Florian Fainellieb049632010-04-06 22:09:01 +00001208 au1000_reset_mac(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Florian Fainellibd2302c2009-11-10 01:13:38 +01001210 err = register_netdev(dev);
1211 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001212 netdev_err(dev, "Cannot register net device, aborting.\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001213 goto err_out;
1214 }
1215
Florian Fainelli5368c722010-04-06 22:09:17 +00001216 netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1217 (unsigned long)base->start, irq);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001218 if (version_printed++ == 0)
Florian Fainelli215e17b2010-09-08 11:11:45 +00001219 pr_info("%s version %s %s\n",
1220 DRV_NAME, DRV_VERSION, DRV_AUTHOR);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001221
1222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224err_out:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001225 if (aup->mii_bus != NULL)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001226 mdiobus_unregister(aup->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* here we should have a valid dev plus aup-> register addresses
1229 * so we can reset the mac properly.*/
Florian Fainellieb049632010-04-06 22:09:01 +00001230 au1000_reset_mac(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 for (i = 0; i < NUM_RX_DMA; i++) {
1233 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001234 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236 for (i = 0; i < NUM_TX_DMA; i++) {
1237 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001238 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Florian Fainellibd2302c2009-11-10 01:13:38 +01001240err_mdiobus_reg:
1241 mdiobus_free(aup->mii_bus);
1242err_mdiobus_alloc:
1243 iounmap(aup->enable);
1244err_remap2:
1245 iounmap(aup->mac);
1246err_remap1:
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001247 dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
1248 (void *)aup->vaddr, aup->dma_addr);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001249err_vaddr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 free_netdev(dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001251err_alloc:
1252 release_mem_region(macen->start, resource_size(macen));
1253err_request:
1254 release_mem_region(base->start, resource_size(base));
1255out:
1256 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
Florian Fainellibd2302c2009-11-10 01:13:38 +01001259static int __devexit au1000_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Florian Fainellibd2302c2009-11-10 01:13:38 +01001261 struct net_device *dev = platform_get_drvdata(pdev);
1262 struct au1000_private *aup = netdev_priv(dev);
1263 int i;
1264 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Florian Fainellibd2302c2009-11-10 01:13:38 +01001266 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Florian Fainellibd2302c2009-11-10 01:13:38 +01001268 unregister_netdev(dev);
1269 mdiobus_unregister(aup->mii_bus);
1270 mdiobus_free(aup->mii_bus);
1271
1272 for (i = 0; i < NUM_RX_DMA; i++)
1273 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001274 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001275
1276 for (i = 0; i < NUM_TX_DMA; i++)
1277 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001278 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001279
1280 dma_free_noncoherent(NULL, MAX_BUF_SIZE *
1281 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1282 (void *)aup->vaddr, aup->dma_addr);
1283
1284 iounmap(aup->mac);
1285 iounmap(aup->enable);
1286
1287 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1288 release_mem_region(base->start, resource_size(base));
1289
1290 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1291 release_mem_region(macen->start, resource_size(macen));
1292
1293 free_netdev(dev);
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return 0;
1296}
1297
Florian Fainellibd2302c2009-11-10 01:13:38 +01001298static struct platform_driver au1000_eth_driver = {
1299 .probe = au1000_probe,
1300 .remove = __devexit_p(au1000_remove),
1301 .driver = {
1302 .name = "au1000-eth",
1303 .owner = THIS_MODULE,
1304 },
1305};
1306MODULE_ALIAS("platform:au1000-eth");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Florian Fainellibd2302c2009-11-10 01:13:38 +01001308
1309static int __init au1000_init_module(void)
1310{
1311 return platform_driver_register(&au1000_eth_driver);
1312}
1313
1314static void __exit au1000_exit_module(void)
1315{
1316 platform_driver_unregister(&au1000_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319module_init(au1000_init_module);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001320module_exit(au1000_exit_module);