blob: 43489f89c142f7d10e25f0454287ef28939fd228 [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 Fainelliec7eabd2010-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 Fainelliec7eabd2010-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
Florian Fainellidc998392010-09-08 11:11:59 +0000232 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus)
233 */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200234 struct net_device *const dev = bus->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Florian Fainellidc998392010-09-08 11:11:59 +0000236 /* make sure the MAC associated with this
237 * mii_bus is enabled
238 */
239 au1000_enable_mac(dev, 0);
240
Adrian Bunk1210dde2008-10-12 21:02:19 -0700241 return au1000_mdio_read(dev, phy_addr, regnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Adrian Bunk1210dde2008-10-12 21:02:19 -0700244static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
245 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200247 struct net_device *const dev = bus->priv;
248
Florian Fainellidc998392010-09-08 11:11:59 +0000249 /* make sure the MAC associated with this
250 * mii_bus is enabled
251 */
252 au1000_enable_mac(dev, 0);
253
Adrian Bunk1210dde2008-10-12 21:02:19 -0700254 au1000_mdio_write(dev, phy_addr, regnum, value);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200255 return 0;
256}
257
Adrian Bunk1210dde2008-10-12 21:02:19 -0700258static int au1000_mdiobus_reset(struct mii_bus *bus)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200259{
260 struct net_device *const dev = bus->priv;
261
Florian Fainellidc998392010-09-08 11:11:59 +0000262 /* make sure the MAC associated with this
263 * mii_bus is enabled
264 */
265 au1000_enable_mac(dev, 0);
266
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200267 return 0;
268}
269
Florian Fainellieb049632010-04-06 22:09:01 +0000270static void au1000_hard_stop(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800271{
272 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000273 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800274
Florian Fainelli5368c722010-04-06 22:09:17 +0000275 netif_dbg(aup, drv, dev, "hard stop\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800276
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000277 reg = readl(&aup->mac->control);
278 reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
279 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800280 au_sync_delay(10);
281}
282
Florian Fainellieb049632010-04-06 22:09:01 +0000283static void au1000_enable_rx_tx(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800284{
285 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000286 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800287
Florian Fainelli5368c722010-04-06 22:09:17 +0000288 netif_dbg(aup, hw, dev, "enable_rx_tx\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800289
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000290 reg = readl(&aup->mac->control);
291 reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
292 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800293 au_sync_delay(10);
294}
295
296static void
297au1000_adjust_link(struct net_device *dev)
298{
299 struct au1000_private *aup = netdev_priv(dev);
300 struct phy_device *phydev = aup->phy_dev;
301 unsigned long flags;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000302 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800303
304 int status_change = 0;
305
306 BUG_ON(!aup->phy_dev);
307
308 spin_lock_irqsave(&aup->lock, flags);
309
310 if (phydev->link && (aup->old_speed != phydev->speed)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000311 /* speed changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800312
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000313 switch (phydev->speed) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800314 case SPEED_10:
315 case SPEED_100:
316 break;
317 default:
Florian Fainelli5368c722010-04-06 22:09:17 +0000318 netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
319 phydev->speed);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800320 break;
321 }
322
323 aup->old_speed = phydev->speed;
324
325 status_change = 1;
326 }
327
328 if (phydev->link && (aup->old_duplex != phydev->duplex)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000329 /* duplex mode changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800330
331 /* switching duplex mode requires to disable rx and tx! */
Florian Fainellieb049632010-04-06 22:09:01 +0000332 au1000_hard_stop(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800333
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000334 reg = readl(&aup->mac->control);
335 if (DUPLEX_FULL == phydev->duplex) {
336 reg |= MAC_FULL_DUPLEX;
337 reg &= ~MAC_DISABLE_RX_OWN;
338 } else {
339 reg &= ~MAC_FULL_DUPLEX;
340 reg |= MAC_DISABLE_RX_OWN;
341 }
342 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800343 au_sync_delay(1);
344
Florian Fainellieb049632010-04-06 22:09:01 +0000345 au1000_enable_rx_tx(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800346 aup->old_duplex = phydev->duplex;
347
348 status_change = 1;
349 }
350
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000351 if (phydev->link != aup->old_link) {
352 /* link state changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800353
354 if (!phydev->link) {
355 /* link went down */
356 aup->old_speed = 0;
357 aup->old_duplex = -1;
358 }
359
360 aup->old_link = phydev->link;
361 status_change = 1;
362 }
363
364 spin_unlock_irqrestore(&aup->lock, flags);
365
366 if (status_change) {
367 if (phydev->link)
Florian Fainelli5368c722010-04-06 22:09:17 +0000368 netdev_info(dev, "link up (%d/%s)\n",
369 phydev->speed,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800370 DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
371 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000372 netdev_info(dev, "link down\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800373 }
374}
375
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000376static int au1000_mii_probe(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200377{
Wang Chen454d7c92008-11-12 23:37:49 -0800378 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200379 struct phy_device *phydev = NULL;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000380 int phy_addr;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200381
Florian Fainellibd2302c2009-11-10 01:13:38 +0100382 if (aup->phy_static_config) {
383 BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200384
Florian Fainellibd2302c2009-11-10 01:13:38 +0100385 if (aup->phy_addr)
386 phydev = aup->mii_bus->phy_map[aup->phy_addr];
387 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000388 netdev_info(dev, "using PHY-less setup\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200389 return 0;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000390 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200391
Florian Fainelli18b8e152010-09-08 11:11:40 +0000392 /* find the first (lowest address) PHY
Florian Fainellidc998392010-09-08 11:11:59 +0000393 * on the current MAC's MII bus
394 */
Florian Fainelli18b8e152010-09-08 11:11:40 +0000395 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
396 if (aup->mii_bus->phy_map[phy_addr]) {
397 phydev = aup->mii_bus->phy_map[phy_addr];
398 if (!aup->phy_search_highest_addr)
399 /* break out with first one found */
400 break;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Florian Fainelli18b8e152010-09-08 11:11:40 +0000403 if (aup->phy1_search_mac0) {
404 /* try harder to find a PHY */
405 if (!phydev && (aup->mac_id == 1)) {
406 /* no PHY found, maybe we have a dual PHY? */
407 dev_info(&dev->dev, ": no PHY found on MAC1, "
408 "let's see if it's attached to MAC0...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Florian Fainelli18b8e152010-09-08 11:11:40 +0000410 /* find the first (lowest address) non-attached
411 * PHY on the MAC0 MII bus
412 */
413 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
414 struct phy_device *const tmp_phydev =
415 aup->mii_bus->phy_map[phy_addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Florian Fainelli18b8e152010-09-08 11:11:40 +0000417 if (aup->mac_id == 1)
418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Florian Fainelli18b8e152010-09-08 11:11:40 +0000420 /* no PHY here... */
421 if (!tmp_phydev)
422 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Florian Fainelli18b8e152010-09-08 11:11:40 +0000424 /* already claimed by MAC0 */
425 if (tmp_phydev->attached_dev)
426 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Florian Fainelli18b8e152010-09-08 11:11:40 +0000428 phydev = tmp_phydev;
429 break; /* found it */
Florian Fainellibd2302c2009-11-10 01:13:38 +0100430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200434 if (!phydev) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000435 netdev_err(dev, "no PHY found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return -1;
437 }
438
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200439 /* now we are supposed to have a proper phydev, to attach to... */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200440 BUG_ON(phydev->attached_dev);
441
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800442 phydev = phy_connect(dev, dev_name(&phydev->dev), &au1000_adjust_link,
443 0, PHY_INTERFACE_MODE_MII);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200444
445 if (IS_ERR(phydev)) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000446 netdev_err(dev, "Could not attach to PHY\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200447 return PTR_ERR(phydev);
448 }
449
450 /* mask with MAC supported features */
451 phydev->supported &= (SUPPORTED_10baseT_Half
452 | SUPPORTED_10baseT_Full
453 | SUPPORTED_100baseT_Half
454 | SUPPORTED_100baseT_Full
455 | SUPPORTED_Autoneg
456 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
457 | SUPPORTED_MII
458 | SUPPORTED_TP);
459
460 phydev->advertising = phydev->supported;
461
462 aup->old_link = 0;
463 aup->old_speed = 0;
464 aup->old_duplex = -1;
465 aup->phy_dev = phydev;
466
Florian Fainelli5368c722010-04-06 22:09:17 +0000467 netdev_info(dev, "attached PHY driver [%s] "
468 "(mii_bus:phy_addr=%s, irq=%d)\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800469 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 return 0;
472}
473
474
475/*
476 * Buffer allocation/deallocation routines. The buffer descriptor returned
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400477 * has the virtual and dma address of a buffer suitable for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * both, receive and transmit operations.
479 */
Florian Fainelli34415922010-09-08 11:11:25 +0000480static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Florian Fainelli34415922010-09-08 11:11:25 +0000482 struct db_dest *pDB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 pDB = aup->pDBfree;
484
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000485 if (pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 aup->pDBfree = pDB->pnext;
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return pDB;
489}
490
Florian Fainelli34415922010-09-08 11:11:25 +0000491void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Florian Fainelli34415922010-09-08 11:11:25 +0000493 struct db_dest *pDBfree = aup->pDBfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (pDBfree)
495 pDBfree->pnext = pDB;
496 aup->pDBfree = pDB;
497}
498
Florian Fainellieb049632010-04-06 22:09:01 +0000499static void au1000_reset_mac_unlocked(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200500{
Wang Chen454d7c92008-11-12 23:37:49 -0800501 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200502 int i;
503
Florian Fainellieb049632010-04-06 22:09:01 +0000504 au1000_hard_stop(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200505
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000506 writel(MAC_EN_CLOCK_ENABLE, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200507 au_sync_delay(2);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000508 writel(0, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200509 au_sync_delay(2);
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 aup->tx_full = 0;
512 for (i = 0; i < NUM_RX_DMA; i++) {
513 /* reset control bits */
514 aup->rx_dma_ring[i]->buff_stat &= ~0xf;
515 }
516 for (i = 0; i < NUM_TX_DMA; i++) {
517 /* reset control bits */
518 aup->tx_dma_ring[i]->buff_stat &= ~0xf;
519 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200520
521 aup->mac_enabled = 0;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Florian Fainellieb049632010-04-06 22:09:01 +0000525static void au1000_reset_mac(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200526{
Wang Chen454d7c92008-11-12 23:37:49 -0800527 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200528 unsigned long flags;
529
Florian Fainelli5368c722010-04-06 22:09:17 +0000530 netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
531 (unsigned)aup);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200532
533 spin_lock_irqsave(&aup->lock, flags);
534
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000535 au1000_reset_mac_unlocked(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200536
537 spin_unlock_irqrestore(&aup->lock, flags);
538}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400540/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * Setup the receive and transmit "rings". These pointers are the addresses
542 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
543 * these are not descriptors sitting in memory.
544 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400545static void
Florian Fainellieb049632010-04-06 22:09:01 +0000546au1000_setup_hw_rings(struct au1000_private *aup, u32 rx_base, u32 tx_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 int i;
549
550 for (i = 0; i < NUM_RX_DMA; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400551 aup->rx_dma_ring[i] =
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000552 (struct rx_dma *)
Florian Fainelli18b8e152010-09-08 11:11:40 +0000553 (rx_base + sizeof(struct rx_dma)*i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 for (i = 0; i < NUM_TX_DMA; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400556 aup->tx_dma_ring[i] =
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000557 (struct tx_dma *)
Florian Fainelli18b8e152010-09-08 11:11:40 +0000558 (tx_base + sizeof(struct tx_dma)*i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200563 * ethtool operations
564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
567{
Wang Chen454d7c92008-11-12 23:37:49 -0800568 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200570 if (aup->phy_dev)
571 return phy_ethtool_gset(aup->phy_dev, cmd);
572
573 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
577{
Wang Chen454d7c92008-11-12 23:37:49 -0800578 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200580 if (!capable(CAP_NET_ADMIN))
581 return -EPERM;
582
583 if (aup->phy_dev)
584 return phy_ethtool_sset(aup->phy_dev, cmd);
585
586 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589static void
590au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
591{
Wang Chen454d7c92008-11-12 23:37:49 -0800592 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 strcpy(info->driver, DRV_NAME);
595 strcpy(info->version, DRV_VERSION);
596 info->fw_version[0] = '\0';
597 sprintf(info->bus_info, "%s %d", DRV_NAME, aup->mac_id);
598 info->regdump_len = 0;
599}
600
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000601static void au1000_set_msglevel(struct net_device *dev, u32 value)
602{
603 struct au1000_private *aup = netdev_priv(dev);
604 aup->msg_enable = value;
605}
606
607static u32 au1000_get_msglevel(struct net_device *dev)
608{
609 struct au1000_private *aup = netdev_priv(dev);
610 return aup->msg_enable;
611}
612
Jeff Garzik7282d492006-09-13 14:30:00 -0400613static const struct ethtool_ops au1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 .get_settings = au1000_get_settings,
615 .set_settings = au1000_set_settings,
616 .get_drvinfo = au1000_get_drvinfo,
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200617 .get_link = ethtool_op_get_link,
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000618 .get_msglevel = au1000_get_msglevel,
619 .set_msglevel = au1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620};
621
Florian Fainelli5ef30412009-01-22 14:06:25 -0800622
623/*
624 * Initialize the interface.
625 *
626 * When the device powers up, the clocks are disabled and the
627 * mac is in reset state. When the interface is closed, we
628 * do the same -- reset the device and disable the clocks to
629 * conserve power. Thus, whenever au1000_init() is called,
630 * the device should already be in reset state.
631 */
632static int au1000_init(struct net_device *dev)
633{
634 struct au1000_private *aup = netdev_priv(dev);
635 unsigned long flags;
636 int i;
637 u32 control;
638
Florian Fainelli5368c722010-04-06 22:09:17 +0000639 netif_dbg(aup, hw, dev, "au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800640
641 /* bring the device out of reset */
Florian Fainellieb049632010-04-06 22:09:01 +0000642 au1000_enable_mac(dev, 1);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800643
644 spin_lock_irqsave(&aup->lock, flags);
645
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000646 writel(0, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800647 aup->tx_head = (aup->tx_dma_ring[0]->buff_stat & 0xC) >> 2;
648 aup->tx_tail = aup->tx_head;
649 aup->rx_head = (aup->rx_dma_ring[0]->buff_stat & 0xC) >> 2;
650
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000651 writel(dev->dev_addr[5]<<8 | dev->dev_addr[4],
652 &aup->mac->mac_addr_high);
653 writel(dev->dev_addr[3]<<24 | dev->dev_addr[2]<<16 |
654 dev->dev_addr[1]<<8 | dev->dev_addr[0],
655 &aup->mac->mac_addr_low);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800656
Florian Fainelli18b8e152010-09-08 11:11:40 +0000657
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000658 for (i = 0; i < NUM_RX_DMA; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800659 aup->rx_dma_ring[i]->buff_stat |= RX_DMA_ENABLE;
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000660
Florian Fainelli5ef30412009-01-22 14:06:25 -0800661 au_sync();
662
663 control = MAC_RX_ENABLE | MAC_TX_ENABLE;
664#ifndef CONFIG_CPU_LITTLE_ENDIAN
665 control |= MAC_BIG_ENDIAN;
666#endif
667 if (aup->phy_dev) {
668 if (aup->phy_dev->link && (DUPLEX_FULL == aup->phy_dev->duplex))
669 control |= MAC_FULL_DUPLEX;
670 else
671 control |= MAC_DISABLE_RX_OWN;
672 } else { /* PHY-less op, assume full-duplex */
673 control |= MAC_FULL_DUPLEX;
674 }
675
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000676 writel(control, &aup->mac->control);
677 writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800678 au_sync();
679
680 spin_unlock_irqrestore(&aup->lock, flags);
681 return 0;
682}
683
Florian Fainellieb049632010-04-06 22:09:01 +0000684static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800685{
Florian Fainelli5ef30412009-01-22 14:06:25 -0800686 struct net_device_stats *ps = &dev->stats;
687
688 ps->rx_packets++;
689 if (status & RX_MCAST_FRAME)
690 ps->multicast++;
691
692 if (status & RX_ERROR) {
693 ps->rx_errors++;
694 if (status & RX_MISSED_FRAME)
695 ps->rx_missed_errors++;
roel kluin4989ccb2009-10-06 09:54:18 +0000696 if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
Florian Fainelli5ef30412009-01-22 14:06:25 -0800697 ps->rx_length_errors++;
698 if (status & RX_CRC_ERROR)
699 ps->rx_crc_errors++;
700 if (status & RX_COLL)
701 ps->collisions++;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000702 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800703 ps->rx_bytes += status & RX_FRAME_LEN_MASK;
704
705}
706
707/*
708 * Au1000 receive routine.
709 */
710static int au1000_rx(struct net_device *dev)
711{
712 struct au1000_private *aup = netdev_priv(dev);
713 struct sk_buff *skb;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000714 struct rx_dma *prxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800715 u32 buff_stat, status;
Florian Fainelli34415922010-09-08 11:11:25 +0000716 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800717 u32 frmlen;
718
Florian Fainelli5368c722010-04-06 22:09:17 +0000719 netif_dbg(aup, rx_status, dev, "au1000_rx head %d\n", aup->rx_head);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800720
721 prxd = aup->rx_dma_ring[aup->rx_head];
722 buff_stat = prxd->buff_stat;
723 while (buff_stat & RX_T_DONE) {
724 status = prxd->status;
725 pDB = aup->rx_db_inuse[aup->rx_head];
Florian Fainellieb049632010-04-06 22:09:01 +0000726 au1000_update_rx_stats(dev, status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800727 if (!(status & RX_ERROR)) {
728
729 /* good frame */
730 frmlen = (status & RX_FRAME_LEN_MASK);
731 frmlen -= 4; /* Remove FCS */
732 skb = dev_alloc_skb(frmlen + 2);
733 if (skb == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000734 netdev_err(dev, "Memory squeeze, dropping packet.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800735 dev->stats.rx_dropped++;
736 continue;
737 }
738 skb_reserve(skb, 2); /* 16 byte IP header align */
739 skb_copy_to_linear_data(skb,
740 (unsigned char *)pDB->vaddr, frmlen);
741 skb_put(skb, frmlen);
742 skb->protocol = eth_type_trans(skb, dev);
743 netif_rx(skb); /* pass the packet to upper layers */
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000744 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800745 if (au1000_debug > 4) {
Florian Fainelli215e17b2010-09-08 11:11:45 +0000746 pr_err("rx_error(s):");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800747 if (status & RX_MISSED_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000748 pr_cont(" miss");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800749 if (status & RX_WDOG_TIMER)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000750 pr_cont(" wdog");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800751 if (status & RX_RUNT)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000752 pr_cont(" runt");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800753 if (status & RX_OVERLEN)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000754 pr_cont(" overlen");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800755 if (status & RX_COLL)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000756 pr_cont(" coll");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800757 if (status & RX_MII_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000758 pr_cont(" mii error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800759 if (status & RX_CRC_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000760 pr_cont(" crc error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800761 if (status & RX_LEN_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000762 pr_cont(" len error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800763 if (status & RX_U_CNTRL_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000764 pr_cont(" u control frame");
765 pr_cont("\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800766 }
767 }
768 prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
769 aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
770 au_sync();
771
772 /* next descriptor */
773 prxd = aup->rx_dma_ring[aup->rx_head];
774 buff_stat = prxd->buff_stat;
775 }
776 return 0;
777}
778
Florian Fainellieb049632010-04-06 22:09:01 +0000779static void au1000_update_tx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800780{
781 struct au1000_private *aup = netdev_priv(dev);
782 struct net_device_stats *ps = &dev->stats;
783
784 if (status & TX_FRAME_ABORTED) {
785 if (!aup->phy_dev || (DUPLEX_FULL == aup->phy_dev->duplex)) {
786 if (status & (TX_JAB_TIMEOUT | TX_UNDERRUN)) {
787 /* any other tx errors are only valid
Florian Fainellidc998392010-09-08 11:11:59 +0000788 * in half duplex mode
789 */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800790 ps->tx_errors++;
791 ps->tx_aborted_errors++;
792 }
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000793 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800794 ps->tx_errors++;
795 ps->tx_aborted_errors++;
796 if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
797 ps->tx_carrier_errors++;
798 }
799 }
800}
801
802/*
803 * Called from the interrupt service routine to acknowledge
804 * the TX DONE bits. This is a must if the irq is setup as
805 * edge triggered.
806 */
807static void au1000_tx_ack(struct net_device *dev)
808{
809 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000810 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800811
812 ptxd = aup->tx_dma_ring[aup->tx_tail];
813
814 while (ptxd->buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000815 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800816 ptxd->buff_stat &= ~TX_T_DONE;
817 ptxd->len = 0;
818 au_sync();
819
820 aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
821 ptxd = aup->tx_dma_ring[aup->tx_tail];
822
823 if (aup->tx_full) {
824 aup->tx_full = 0;
825 netif_wake_queue(dev);
826 }
827 }
828}
829
830/*
831 * Au1000 interrupt service routine.
832 */
833static irqreturn_t au1000_interrupt(int irq, void *dev_id)
834{
835 struct net_device *dev = dev_id;
836
837 /* Handle RX interrupts first to minimize chance of overrun */
838
839 au1000_rx(dev);
840 au1000_tx_ack(dev);
841 return IRQ_RETVAL(1);
842}
843
844static int au1000_open(struct net_device *dev)
845{
846 int retval;
847 struct au1000_private *aup = netdev_priv(dev);
848
Florian Fainelli5368c722010-04-06 22:09:17 +0000849 netif_dbg(aup, drv, dev, "open: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800850
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000851 retval = request_irq(dev->irq, au1000_interrupt, 0,
852 dev->name, dev);
853 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000854 netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800855 return retval;
856 }
857
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000858 retval = au1000_init(dev);
859 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000860 netdev_err(dev, "error in au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800861 free_irq(dev->irq, dev);
862 return retval;
863 }
864
865 if (aup->phy_dev) {
866 /* cause the PHY state machine to schedule a link state check */
867 aup->phy_dev->state = PHY_CHANGELINK;
868 phy_start(aup->phy_dev);
869 }
870
871 netif_start_queue(dev);
872
Florian Fainelli5368c722010-04-06 22:09:17 +0000873 netif_dbg(aup, drv, dev, "open: Initialization done.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800874
875 return 0;
876}
877
878static int au1000_close(struct net_device *dev)
879{
880 unsigned long flags;
881 struct au1000_private *const aup = netdev_priv(dev);
882
Florian Fainelli5368c722010-04-06 22:09:17 +0000883 netif_dbg(aup, drv, dev, "close: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800884
885 if (aup->phy_dev)
886 phy_stop(aup->phy_dev);
887
888 spin_lock_irqsave(&aup->lock, flags);
889
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000890 au1000_reset_mac_unlocked(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800891
892 /* stop the device */
893 netif_stop_queue(dev);
894
895 /* disable the interrupt */
896 free_irq(dev->irq, dev);
897 spin_unlock_irqrestore(&aup->lock, flags);
898
899 return 0;
900}
901
902/*
903 * Au1000 transmit routine.
904 */
Stephen Hemminger613573252009-08-31 19:50:58 +0000905static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800906{
907 struct au1000_private *aup = netdev_priv(dev);
908 struct net_device_stats *ps = &dev->stats;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000909 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800910 u32 buff_stat;
Florian Fainelli34415922010-09-08 11:11:25 +0000911 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800912 int i;
913
Florian Fainelli5368c722010-04-06 22:09:17 +0000914 netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
915 (unsigned)aup, skb->len,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800916 skb->data, aup->tx_head);
917
918 ptxd = aup->tx_dma_ring[aup->tx_head];
919 buff_stat = ptxd->buff_stat;
920 if (buff_stat & TX_DMA_ENABLE) {
921 /* We've wrapped around and the transmitter is still busy */
922 netif_stop_queue(dev);
923 aup->tx_full = 1;
Patrick McHardy5b548142009-06-12 06:22:29 +0000924 return NETDEV_TX_BUSY;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000925 } else if (buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000926 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800927 ptxd->len = 0;
928 }
929
930 if (aup->tx_full) {
931 aup->tx_full = 0;
932 netif_wake_queue(dev);
933 }
934
935 pDB = aup->tx_db_inuse[aup->tx_head];
Florian Fainellibd2302c2009-11-10 01:13:38 +0100936 skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800937 if (skb->len < ETH_ZLEN) {
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000938 for (i = skb->len; i < ETH_ZLEN; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800939 ((char *)pDB->vaddr)[i] = 0;
Florian Fainelliec7eabd2010-09-08 11:11:31 +0000940
Florian Fainelli5ef30412009-01-22 14:06:25 -0800941 ptxd->len = ETH_ZLEN;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000942 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800943 ptxd->len = skb->len;
944
945 ps->tx_packets++;
946 ps->tx_bytes += ptxd->len;
947
948 ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
949 au_sync();
950 dev_kfree_skb(skb);
951 aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000952 return NETDEV_TX_OK;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800953}
954
955/*
956 * The Tx ring has been full longer than the watchdog timeout
957 * value. The transmitter must be hung?
958 */
959static void au1000_tx_timeout(struct net_device *dev)
960{
Florian Fainelli5368c722010-04-06 22:09:17 +0000961 netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
Florian Fainellieb049632010-04-06 22:09:01 +0000962 au1000_reset_mac(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800963 au1000_init(dev);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700964 dev->trans_start = jiffies; /* prevent tx timeout */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800965 netif_wake_queue(dev);
966}
967
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +0000968static void au1000_multicast_list(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800969{
970 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000971 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800972
Florian Fainelli18b8e152010-09-08 11:11:40 +0000973 netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000974 reg = readl(&aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800975 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000976 reg |= MAC_PROMISCUOUS;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800977 } else if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000978 netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000979 reg |= MAC_PASS_ALL_MULTI;
980 reg &= ~MAC_PROMISCUOUS;
Florian Fainelli5368c722010-04-06 22:09:17 +0000981 netdev_info(dev, "Pass all multicast\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800982 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +0000983 struct netdev_hw_addr *ha;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800984 u32 mc_filter[2]; /* Multicast hash filter */
985
986 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +0000987 netdev_for_each_mc_addr(ha, dev)
988 set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800989 (long *)mc_filter);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000990 writel(mc_filter[1], &aup->mac->multi_hash_high);
991 writel(mc_filter[0], &aup->mac->multi_hash_low);
992 reg &= ~MAC_PROMISCUOUS;
993 reg |= MAC_HASH_MODE;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800994 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000995 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800996}
997
998static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
999{
1000 struct au1000_private *aup = netdev_priv(dev);
1001
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001002 if (!netif_running(dev))
1003 return -EINVAL;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001004
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001005 if (!aup->phy_dev)
1006 return -EINVAL; /* PHY not controllable */
Florian Fainelli5ef30412009-01-22 14:06:25 -08001007
Richard Cochran28b04112010-07-17 08:48:55 +00001008 return phy_mii_ioctl(aup->phy_dev, rq, cmd);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001009}
1010
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001011static const struct net_device_ops au1000_netdev_ops = {
1012 .ndo_open = au1000_open,
1013 .ndo_stop = au1000_close,
1014 .ndo_start_xmit = au1000_tx,
1015 .ndo_set_multicast_list = au1000_multicast_list,
1016 .ndo_do_ioctl = au1000_ioctl,
1017 .ndo_tx_timeout = au1000_tx_timeout,
1018 .ndo_set_mac_address = eth_mac_addr,
1019 .ndo_validate_addr = eth_validate_addr,
1020 .ndo_change_mtu = eth_change_mtu,
1021};
1022
Florian Fainellibd2302c2009-11-10 01:13:38 +01001023static int __devinit au1000_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001025 static unsigned version_printed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 struct au1000_private *aup = NULL;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001027 struct au1000_eth_platform_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct net_device *dev = NULL;
Florian Fainelli34415922010-09-08 11:11:25 +00001029 struct db_dest *pDB, *pDBfree;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001030 int irq, i, err = 0;
1031 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Florian Fainellibd2302c2009-11-10 01:13:38 +01001033 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1034 if (!base) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001035 dev_err(&pdev->dev, "failed to retrieve base register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001036 err = -ENODEV;
1037 goto out;
1038 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001039
Florian Fainellibd2302c2009-11-10 01:13:38 +01001040 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1041 if (!macen) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001042 dev_err(&pdev->dev, "failed to retrieve MAC Enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001043 err = -ENODEV;
1044 goto out;
1045 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001046
Florian Fainellibd2302c2009-11-10 01:13:38 +01001047 irq = platform_get_irq(pdev, 0);
1048 if (irq < 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001049 dev_err(&pdev->dev, "failed to retrieve IRQ\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001050 err = -ENODEV;
1051 goto out;
1052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Florian Fainelli18b8e152010-09-08 11:11:40 +00001054 if (!request_mem_region(base->start, resource_size(base),
1055 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001056 dev_err(&pdev->dev, "failed to request memory region for base registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001057 err = -ENXIO;
1058 goto out;
1059 }
1060
Florian Fainelli18b8e152010-09-08 11:11:40 +00001061 if (!request_mem_region(macen->start, resource_size(macen),
1062 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001063 dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001064 err = -ENXIO;
1065 goto err_request;
1066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 dev = alloc_etherdev(sizeof(struct au1000_private));
1069 if (!dev) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001070 dev_err(&pdev->dev, "alloc_etherdev failed\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001071 err = -ENOMEM;
1072 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
Florian Fainellibd2302c2009-11-10 01:13:38 +01001075 SET_NETDEV_DEV(dev, &pdev->dev);
1076 platform_set_drvdata(pdev, dev);
Wang Chen454d7c92008-11-12 23:37:49 -08001077 aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Martin Gebert533763d2008-07-23 09:40:09 +02001079 spin_lock_init(&aup->lock);
Florian Fainelli18b8e152010-09-08 11:11:40 +00001080 aup->msg_enable = (au1000_debug < 4 ?
1081 AU1000_DEF_MSG_ENABLE : au1000_debug);
Martin Gebert533763d2008-07-23 09:40:09 +02001082
Florian Fainellidc998392010-09-08 11:11:59 +00001083 /* Allocate the data buffers
1084 * Snooping works fine with eth on all au1xxx
1085 */
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001086 aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
1087 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1088 &aup->dma_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (!aup->vaddr) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001090 dev_err(&pdev->dev, "failed to allocate data buffers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001091 err = -ENOMEM;
1092 goto err_vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
1095 /* aup->mac is the base address of the MAC's registers */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001096 aup->mac = (struct mac_reg *)
Florian Fainelli18b8e152010-09-08 11:11:40 +00001097 ioremap_nocache(base->start, resource_size(base));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001098 if (!aup->mac) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001099 dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001100 err = -ENXIO;
1101 goto err_remap1;
1102 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001103
Florian Fainelliec7eabd2010-09-08 11:11:31 +00001104 /* Setup some variables for quick register address access */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001105 aup->enable = (u32 *)ioremap_nocache(macen->start,
Florian Fainelli18b8e152010-09-08 11:11:40 +00001106 resource_size(macen));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001107 if (!aup->enable) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001108 dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001109 err = -ENXIO;
1110 goto err_remap2;
1111 }
1112 aup->mac_id = pdev->id;
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001113
Manuel Laussf6673652010-07-21 14:30:50 +02001114 if (pdev->id == 0)
Florian Fainellieb049632010-04-06 22:09:01 +00001115 au1000_setup_hw_rings(aup, MAC0_RX_DMA_ADDR, MAC0_TX_DMA_ADDR);
Manuel Laussf6673652010-07-21 14:30:50 +02001116 else if (pdev->id == 1)
Florian Fainellieb049632010-04-06 22:09:01 +00001117 au1000_setup_hw_rings(aup, MAC1_RX_DMA_ADDR, MAC1_TX_DMA_ADDR);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001118
Manuel Laussf6673652010-07-21 14:30:50 +02001119 /* set a random MAC now in case platform_data doesn't provide one */
1120 random_ether_addr(dev->dev_addr);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001121
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001122 writel(0, &aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001123 aup->mac_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Florian Fainellibd2302c2009-11-10 01:13:38 +01001125 pd = pdev->dev.platform_data;
1126 if (!pd) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001127 dev_info(&pdev->dev, "no platform_data passed,"
1128 " PHY search on MAC0\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001129 aup->phy1_search_mac0 = 1;
1130 } else {
Manuel Laussf6673652010-07-21 14:30:50 +02001131 if (is_valid_ether_addr(pd->mac))
1132 memcpy(dev->dev_addr, pd->mac, 6);
1133
Florian Fainellibd2302c2009-11-10 01:13:38 +01001134 aup->phy_static_config = pd->phy_static_config;
1135 aup->phy_search_highest_addr = pd->phy_search_highest_addr;
1136 aup->phy1_search_mac0 = pd->phy1_search_mac0;
1137 aup->phy_addr = pd->phy_addr;
1138 aup->phy_busid = pd->phy_busid;
1139 aup->phy_irq = pd->phy_irq;
1140 }
1141
1142 if (aup->phy_busid && aup->phy_busid > 0) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001143 dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001144 err = -ENODEV;
1145 goto err_mdiobus_alloc;
1146 }
1147
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001148 aup->mii_bus = mdiobus_alloc();
Florian Fainellibd2302c2009-11-10 01:13:38 +01001149 if (aup->mii_bus == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001150 dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001151 err = -ENOMEM;
1152 goto err_mdiobus_alloc;
1153 }
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001154
1155 aup->mii_bus->priv = dev;
Adrian Bunk1210dde2008-10-12 21:02:19 -07001156 aup->mii_bus->read = au1000_mdiobus_read;
1157 aup->mii_bus->write = au1000_mdiobus_write;
1158 aup->mii_bus->reset = au1000_mdiobus_reset;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001159 aup->mii_bus->name = "au1000_eth_mii";
1160 snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%x", aup->mac_id);
1161 aup->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
roel kluindcbfef82009-08-30 22:40:15 +00001162 if (aup->mii_bus->irq == NULL)
1163 goto err_out;
1164
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001165 for (i = 0; i < PHY_MAX_ADDR; ++i)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001166 aup->mii_bus->irq[i] = PHY_POLL;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001167 /* if known, set corresponding PHY IRQs */
Florian Fainellibd2302c2009-11-10 01:13:38 +01001168 if (aup->phy_static_config)
1169 if (aup->phy_irq && aup->phy_busid == aup->mac_id)
1170 aup->mii_bus->irq[aup->phy_addr] = aup->phy_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Florian Fainellibd2302c2009-11-10 01:13:38 +01001172 err = mdiobus_register(aup->mii_bus);
1173 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001174 dev_err(&pdev->dev, "failed to register MDIO bus\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001175 goto err_mdiobus_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
Florian Fainellieb049632010-04-06 22:09:01 +00001178 if (au1000_mii_probe(dev) != 0)
Florian Fainellibd2302c2009-11-10 01:13:38 +01001179 goto err_out;
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 pDBfree = NULL;
1182 /* setup the data buffer descriptors and attach a buffer to each one */
1183 pDB = aup->db;
1184 for (i = 0; i < (NUM_TX_BUFFS+NUM_RX_BUFFS); i++) {
1185 pDB->pnext = pDBfree;
1186 pDBfree = pDB;
1187 pDB->vaddr = (u32 *)((unsigned)aup->vaddr + MAX_BUF_SIZE*i);
1188 pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
1189 pDB++;
1190 }
1191 aup->pDBfree = pDBfree;
1192
1193 for (i = 0; i < NUM_RX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001194 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabd2010-09-08 11:11:31 +00001195 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto err_out;
Florian Fainelliec7eabd2010-09-08 11:11:31 +00001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1199 aup->rx_db_inuse[i] = pDB;
1200 }
1201 for (i = 0; i < NUM_TX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001202 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabd2010-09-08 11:11:31 +00001203 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 goto err_out;
Florian Fainelliec7eabd2010-09-08 11:11:31 +00001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1207 aup->tx_dma_ring[i]->len = 0;
1208 aup->tx_db_inuse[i] = pDB;
1209 }
1210
Florian Fainellibd2302c2009-11-10 01:13:38 +01001211 dev->base_addr = base->start;
1212 dev->irq = irq;
1213 dev->netdev_ops = &au1000_netdev_ops;
1214 SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops);
1215 dev->watchdog_timeo = ETH_TX_TIMEOUT;
1216
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001217 /*
1218 * The boot code uses the ethernet controller, so reset it to start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 * fresh. au1000_init() expects that the device is in reset state.
1220 */
Florian Fainellieb049632010-04-06 22:09:01 +00001221 au1000_reset_mac(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Florian Fainellibd2302c2009-11-10 01:13:38 +01001223 err = register_netdev(dev);
1224 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001225 netdev_err(dev, "Cannot register net device, aborting.\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001226 goto err_out;
1227 }
1228
Florian Fainelli5368c722010-04-06 22:09:17 +00001229 netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1230 (unsigned long)base->start, irq);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001231 if (version_printed++ == 0)
Florian Fainelli215e17b2010-09-08 11:11:45 +00001232 pr_info("%s version %s %s\n",
1233 DRV_NAME, DRV_VERSION, DRV_AUTHOR);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001234
1235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237err_out:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001238 if (aup->mii_bus != NULL)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001239 mdiobus_unregister(aup->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /* here we should have a valid dev plus aup-> register addresses
Florian Fainellidc998392010-09-08 11:11:59 +00001242 * so we can reset the mac properly.
1243 */
Florian Fainellieb049632010-04-06 22:09:01 +00001244 au1000_reset_mac(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 for (i = 0; i < NUM_RX_DMA; i++) {
1247 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001248 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 for (i = 0; i < NUM_TX_DMA; i++) {
1251 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001252 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Florian Fainellibd2302c2009-11-10 01:13:38 +01001254err_mdiobus_reg:
1255 mdiobus_free(aup->mii_bus);
1256err_mdiobus_alloc:
1257 iounmap(aup->enable);
1258err_remap2:
1259 iounmap(aup->mac);
1260err_remap1:
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001261 dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
1262 (void *)aup->vaddr, aup->dma_addr);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001263err_vaddr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 free_netdev(dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001265err_alloc:
1266 release_mem_region(macen->start, resource_size(macen));
1267err_request:
1268 release_mem_region(base->start, resource_size(base));
1269out:
1270 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Florian Fainellibd2302c2009-11-10 01:13:38 +01001273static int __devexit au1000_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Florian Fainellibd2302c2009-11-10 01:13:38 +01001275 struct net_device *dev = platform_get_drvdata(pdev);
1276 struct au1000_private *aup = netdev_priv(dev);
1277 int i;
1278 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Florian Fainellibd2302c2009-11-10 01:13:38 +01001280 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Florian Fainellibd2302c2009-11-10 01:13:38 +01001282 unregister_netdev(dev);
1283 mdiobus_unregister(aup->mii_bus);
1284 mdiobus_free(aup->mii_bus);
1285
1286 for (i = 0; i < NUM_RX_DMA; i++)
1287 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001288 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001289
1290 for (i = 0; i < NUM_TX_DMA; i++)
1291 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001292 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001293
1294 dma_free_noncoherent(NULL, MAX_BUF_SIZE *
1295 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1296 (void *)aup->vaddr, aup->dma_addr);
1297
1298 iounmap(aup->mac);
1299 iounmap(aup->enable);
1300
1301 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1302 release_mem_region(base->start, resource_size(base));
1303
1304 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1305 release_mem_region(macen->start, resource_size(macen));
1306
1307 free_netdev(dev);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
Florian Fainellibd2302c2009-11-10 01:13:38 +01001312static struct platform_driver au1000_eth_driver = {
1313 .probe = au1000_probe,
1314 .remove = __devexit_p(au1000_remove),
1315 .driver = {
1316 .name = "au1000-eth",
1317 .owner = THIS_MODULE,
1318 },
1319};
1320MODULE_ALIAS("platform:au1000-eth");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Florian Fainellibd2302c2009-11-10 01:13:38 +01001322
1323static int __init au1000_init_module(void)
1324{
1325 return platform_driver_register(&au1000_eth_driver);
1326}
1327
1328static void __exit au1000_exit_module(void)
1329{
1330 platform_driver_unregister(&au1000_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333module_init(au1000_init_module);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001334module_exit(au1000_exit_module);