au1000_eth.c 32.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *
 * Alchemy Au1x00 ethernet driver
 *
5
 * Copyright 2001-2003, 2006 MontaVista Software Inc.
L
Linus Torvalds 已提交
6 7 8
 * Copyright 2002 TimeSys Corp.
 * Added ethtool/mii-tool support,
 * Copyright 2004 Matt Porter <mporter@kernel.crashing.org>
9 10
 * Update: 2004 Bjoern Riemer, riemer@fokus.fraunhofer.de
 * or riemer@riemer-nt.de: fixed the link beat detection with
L
Linus Torvalds 已提交
11
 * ioctls (SIOCGMIIPHY)
12 13 14
 * Copyright 2006 Herbert Valerio Riedel <hvr@gnu.org>
 *  converted to use linux-2.6.x's PHY framework
 *
L
Linus Torvalds 已提交
15
 * Author: MontaVista Software, Inc.
F
Florian Fainelli 已提交
16
 *		ppopov@mvista.com or source@mvista.com
L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * ########################################################################
 *
 *  This program is free software; you can distribute it and/or modify it
 *  under the terms of the GNU General Public License (Version 2) as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope it will be useful, but WITHOUT
 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 *  for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
 *
 * ########################################################################
 *
35
 *
L
Linus Torvalds 已提交
36
 */
37 38
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

39
#include <linux/capability.h>
R
Ralf Baechle 已提交
40
#include <linux/dma-mapping.h>
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/errno.h>
#include <linux/in.h>
#include <linux/ioport.h>
#include <linux/bitops.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/mii.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
58
#include <linux/crc32.h>
59
#include <linux/phy.h>
60
#include <linux/platform_device.h>
61 62
#include <linux/cpu.h>
#include <linux/io.h>
Y
Yoichi Yuasa 已提交
63

L
Linus Torvalds 已提交
64 65 66 67
#include <asm/mipsregs.h>
#include <asm/irq.h>
#include <asm/processor.h>

Y
Yoichi Yuasa 已提交
68
#include <au1000.h>
69
#include <au1xxx_eth.h>
Y
Yoichi Yuasa 已提交
70 71
#include <prom.h>

L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79
#include "au1000_eth.h"

#ifdef AU1000_ETH_DEBUG
static int au1000_debug = 5;
#else
static int au1000_debug = 3;
#endif

80 81 82 83
#define AU1000_DEF_MSG_ENABLE	(NETIF_MSG_DRV	| \
				NETIF_MSG_PROBE	| \
				NETIF_MSG_LINK)

84
#define DRV_NAME	"au1000_eth"
F
Florian Fainelli 已提交
85
#define DRV_VERSION	"1.7"
L
Linus Torvalds 已提交
86 87 88 89 90 91
#define DRV_AUTHOR	"Pete Popov <ppopov@embeddedalley.com>"
#define DRV_DESC	"Au1xxx on-chip Ethernet driver"

MODULE_AUTHOR(DRV_AUTHOR);
MODULE_DESCRIPTION(DRV_DESC);
MODULE_LICENSE("GPL");
92
MODULE_VERSION(DRV_VERSION);
L
Linus Torvalds 已提交
93 94 95 96

/*
 * Theory of operation
 *
97 98 99
 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
 * There are four receive and four transmit descriptors.  These
 * descriptors are not in memory; rather, they are just a set of
L
Linus Torvalds 已提交
100 101 102
 * hardware registers.
 *
 * Since the Au1000 has a coherent data cache, the receive and
103
 * transmit buffers are allocated from the KSEG0 segment. The
L
Linus Torvalds 已提交
104 105 106 107 108 109 110
 * hardware registers, however, are still mapped at KSEG1 to
 * make sure there's no out-of-order writes, and that all writes
 * complete immediately.
 */

struct au1000_private *au_macs[NUM_ETH_INTERFACES];

111 112 113 114 115
/*
 * board-specific configurations
 *
 * PHY detection algorithm
 *
116
 * If phy_static_config is undefined, the PHY setup is
117 118 119
 * autodetected:
 *
 * mii_probe() first searches the current MAC's MII bus for a PHY,
120
 * selecting the first (or last, if phy_search_highest_addr is
121 122 123
 * defined) PHY address not already claimed by another netdev.
 *
 * If nothing was found that way when searching for the 2nd ethernet
124
 * controller's PHY and phy1_search_mac0 is defined, then
125 126 127 128 129 130
 * the first MII bus is searched as well for an unclaimed PHY; this is
 * needed in case of a dual-PHY accessible only through the MAC0's MII
 * bus.
 *
 * Finally, if no PHY is found, then the corresponding ethernet
 * controller is not registered to the network subsystem.
L
Linus Torvalds 已提交
131 132
 */

133
/* autodetection defaults: phy1_search_mac0 */
L
Linus Torvalds 已提交
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148
/* static PHY setup
 *
 * most boards PHY setup should be detectable properly with the
 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
 * you have a switch attached, or want to use the PHY's interrupt
 * notification capabilities) you can provide a static PHY
 * configuration here
 *
 * IRQs may only be set, if a PHY address was configured
 * If a PHY address is given, also a bus id is required to be set
 *
 * ps: make sure the used irqs are configured properly in the board
 * specific irq-map
 */
L
Linus Torvalds 已提交
149

150
static void au1000_enable_mac(struct net_device *dev, int force_reset)
F
Florian Fainelli 已提交
151 152 153 154 155 156
{
	unsigned long flags;
	struct au1000_private *aup = netdev_priv(dev);

	spin_lock_irqsave(&aup->lock, flags);

F
Florian Fainelli 已提交
157
	if (force_reset || (!aup->mac_enabled)) {
158
		writel(MAC_EN_CLOCK_ENABLE, aup->enable);
F
Florian Fainelli 已提交
159
		au_sync_delay(2);
160
		writel((MAC_EN_RESET0 | MAC_EN_RESET1 | MAC_EN_RESET2
161
				| MAC_EN_CLOCK_ENABLE), aup->enable);
F
Florian Fainelli 已提交
162 163 164 165 166 167 168 169
		au_sync_delay(2);

		aup->mac_enabled = 1;
	}

	spin_unlock_irqrestore(&aup->lock, flags);
}

170 171 172
/*
 * MII operations
 */
173
static int au1000_mdio_read(struct net_device *dev, int phy_addr, int reg)
L
Linus Torvalds 已提交
174
{
175
	struct au1000_private *aup = netdev_priv(dev);
176 177
	u32 *const mii_control_reg = &aup->mac->mii_control;
	u32 *const mii_data_reg = &aup->mac->mii_data;
L
Linus Torvalds 已提交
178 179 180
	u32 timedout = 20;
	u32 mii_control;

181
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
182 183
		mdelay(1);
		if (--timedout == 0) {
184
			netdev_err(dev, "read_MII busy timeout!!\n");
L
Linus Torvalds 已提交
185 186 187 188
			return -1;
		}
	}

189
	mii_control = MAC_SET_MII_SELECT_REG(reg) |
190
		MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_READ;
L
Linus Torvalds 已提交
191

192
	writel(mii_control, mii_control_reg);
L
Linus Torvalds 已提交
193 194

	timedout = 20;
195
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
196 197
		mdelay(1);
		if (--timedout == 0) {
198
			netdev_err(dev, "mdio_read busy timeout!!\n");
L
Linus Torvalds 已提交
199 200 201
			return -1;
		}
	}
202
	return readl(mii_data_reg);
L
Linus Torvalds 已提交
203 204
}

205 206
static void au1000_mdio_write(struct net_device *dev, int phy_addr,
			      int reg, u16 value)
L
Linus Torvalds 已提交
207
{
208
	struct au1000_private *aup = netdev_priv(dev);
209 210
	u32 *const mii_control_reg = &aup->mac->mii_control;
	u32 *const mii_data_reg = &aup->mac->mii_data;
L
Linus Torvalds 已提交
211 212 213
	u32 timedout = 20;
	u32 mii_control;

214
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
215 216
		mdelay(1);
		if (--timedout == 0) {
217
			netdev_err(dev, "mdio_write busy timeout!!\n");
L
Linus Torvalds 已提交
218 219 220 221
			return;
		}
	}

222
	mii_control = MAC_SET_MII_SELECT_REG(reg) |
223
		MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_WRITE;
L
Linus Torvalds 已提交
224

225 226
	writel(value, mii_data_reg);
	writel(mii_control, mii_control_reg);
L
Linus Torvalds 已提交
227 228
}

229
static int au1000_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
230 231
{
	/* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
232 233
	 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus)
	 */
234 235
	struct net_device *const dev = bus->priv;

236 237 238 239 240
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

241
	return au1000_mdio_read(dev, phy_addr, regnum);
242
}
L
Linus Torvalds 已提交
243

244 245
static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
				u16 value)
L
Linus Torvalds 已提交
246
{
247
	struct net_device *const dev = bus->priv;
L
Linus Torvalds 已提交
248

249 250 251 252 253
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

254
	au1000_mdio_write(dev, phy_addr, regnum, value);
255
	return 0;
L
Linus Torvalds 已提交
256 257
}

258
static int au1000_mdiobus_reset(struct mii_bus *bus)
L
Linus Torvalds 已提交
259
{
260
	struct net_device *const dev = bus->priv;
L
Linus Torvalds 已提交
261

262 263 264 265 266
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

267 268
	return 0;
}
L
Linus Torvalds 已提交
269

270
static void au1000_hard_stop(struct net_device *dev)
F
Florian Fainelli 已提交
271 272
{
	struct au1000_private *aup = netdev_priv(dev);
273
	u32 reg;
F
Florian Fainelli 已提交
274

275
	netif_dbg(aup, drv, dev, "hard stop\n");
F
Florian Fainelli 已提交
276

277 278 279
	reg = readl(&aup->mac->control);
	reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
	writel(reg, &aup->mac->control);
F
Florian Fainelli 已提交
280 281 282
	au_sync_delay(10);
}

283
static void au1000_enable_rx_tx(struct net_device *dev)
F
Florian Fainelli 已提交
284 285
{
	struct au1000_private *aup = netdev_priv(dev);
286
	u32 reg;
F
Florian Fainelli 已提交
287

288
	netif_dbg(aup, hw, dev, "enable_rx_tx\n");
F
Florian Fainelli 已提交
289

290 291 292
	reg = readl(&aup->mac->control);
	reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
	writel(reg, &aup->mac->control);
F
Florian Fainelli 已提交
293 294 295 296 297 298 299 300 301
	au_sync_delay(10);
}

static void
au1000_adjust_link(struct net_device *dev)
{
	struct au1000_private *aup = netdev_priv(dev);
	struct phy_device *phydev = aup->phy_dev;
	unsigned long flags;
302
	u32 reg;
F
Florian Fainelli 已提交
303 304 305 306 307 308 309 310

	int status_change = 0;

	BUG_ON(!aup->phy_dev);

	spin_lock_irqsave(&aup->lock, flags);

	if (phydev->link && (aup->old_speed != phydev->speed)) {
311
		/* speed changed */
F
Florian Fainelli 已提交
312

313
		switch (phydev->speed) {
F
Florian Fainelli 已提交
314 315 316 317
		case SPEED_10:
		case SPEED_100:
			break;
		default:
318 319
			netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
							phydev->speed);
F
Florian Fainelli 已提交
320 321 322 323 324 325 326 327 328
			break;
		}

		aup->old_speed = phydev->speed;

		status_change = 1;
	}

	if (phydev->link && (aup->old_duplex != phydev->duplex)) {
329
		/* duplex mode changed */
F
Florian Fainelli 已提交
330 331

		/* switching duplex mode requires to disable rx and tx! */
332
		au1000_hard_stop(dev);
F
Florian Fainelli 已提交
333

334 335 336 337 338 339 340 341 342
		reg = readl(&aup->mac->control);
		if (DUPLEX_FULL == phydev->duplex) {
			reg |= MAC_FULL_DUPLEX;
			reg &= ~MAC_DISABLE_RX_OWN;
		} else {
			reg &= ~MAC_FULL_DUPLEX;
			reg |= MAC_DISABLE_RX_OWN;
		}
		writel(reg, &aup->mac->control);
F
Florian Fainelli 已提交
343 344
		au_sync_delay(1);

345
		au1000_enable_rx_tx(dev);
F
Florian Fainelli 已提交
346 347 348 349 350
		aup->old_duplex = phydev->duplex;

		status_change = 1;
	}

351 352
	if (phydev->link != aup->old_link) {
		/* link state changed */
F
Florian Fainelli 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367

		if (!phydev->link) {
			/* link went down */
			aup->old_speed = 0;
			aup->old_duplex = -1;
		}

		aup->old_link = phydev->link;
		status_change = 1;
	}

	spin_unlock_irqrestore(&aup->lock, flags);

	if (status_change) {
		if (phydev->link)
368 369
			netdev_info(dev, "link up (%d/%s)\n",
			       phydev->speed,
F
Florian Fainelli 已提交
370 371
			       DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
		else
372
			netdev_info(dev, "link down\n");
F
Florian Fainelli 已提交
373 374 375
	}
}

F
Florian Fainelli 已提交
376
static int au1000_mii_probe(struct net_device *dev)
377
{
378
	struct au1000_private *const aup = netdev_priv(dev);
379
	struct phy_device *phydev = NULL;
380
	int phy_addr;
381

382 383
	if (aup->phy_static_config) {
		BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
384

385 386 387
		if (aup->phy_addr)
			phydev = aup->mii_bus->phy_map[aup->phy_addr];
		else
388
			netdev_info(dev, "using PHY-less setup\n");
389
		return 0;
390
	}
391

392
	/* find the first (lowest address) PHY
393 394
	 * on the current MAC's MII bus
	 */
395 396 397 398 399 400 401
	for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
		if (aup->mii_bus->phy_map[phy_addr]) {
			phydev = aup->mii_bus->phy_map[phy_addr];
			if (!aup->phy_search_highest_addr)
				/* break out with first one found */
				break;
		}
402

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
	if (aup->phy1_search_mac0) {
		/* try harder to find a PHY */
		if (!phydev && (aup->mac_id == 1)) {
			/* no PHY found, maybe we have a dual PHY? */
			dev_info(&dev->dev, ": no PHY found on MAC1, "
				"let's see if it's attached to MAC0...\n");

			/* find the first (lowest address) non-attached
			 * PHY on the MAC0 MII bus
			 */
			for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
				struct phy_device *const tmp_phydev =
					aup->mii_bus->phy_map[phy_addr];

				if (aup->mac_id == 1)
					break;

				/* no PHY here... */
				if (!tmp_phydev)
					continue;

				/* already claimed by MAC0 */
				if (tmp_phydev->attached_dev)
					continue;

				phydev = tmp_phydev;
				break; /* found it */
430
			}
L
Linus Torvalds 已提交
431 432 433
		}
	}

434
	if (!phydev) {
435
		netdev_err(dev, "no PHY found\n");
L
Linus Torvalds 已提交
436 437 438
		return -1;
	}

439 440 441
	/* now we are supposed to have a proper phydev, to attach to... */
	BUG_ON(phydev->attached_dev);

442 443
	phydev = phy_connect(dev, dev_name(&phydev->dev), &au1000_adjust_link,
			0, PHY_INTERFACE_MODE_MII);
444 445

	if (IS_ERR(phydev)) {
446
		netdev_err(dev, "Could not attach to PHY\n");
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
		return PTR_ERR(phydev);
	}

	/* mask with MAC supported features */
	phydev->supported &= (SUPPORTED_10baseT_Half
			      | SUPPORTED_10baseT_Full
			      | SUPPORTED_100baseT_Half
			      | SUPPORTED_100baseT_Full
			      | SUPPORTED_Autoneg
			      /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
			      | SUPPORTED_MII
			      | SUPPORTED_TP);

	phydev->advertising = phydev->supported;

	aup->old_link = 0;
	aup->old_speed = 0;
	aup->old_duplex = -1;
	aup->phy_dev = phydev;

467 468
	netdev_info(dev, "attached PHY driver [%s] "
	       "(mii_bus:phy_addr=%s, irq=%d)\n",
469
	       phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
L
Linus Torvalds 已提交
470 471 472 473 474 475 476

	return 0;
}


/*
 * Buffer allocation/deallocation routines. The buffer descriptor returned
477
 * has the virtual and dma address of a buffer suitable for
L
Linus Torvalds 已提交
478 479
 * both, receive and transmit operations.
 */
F
Florian Fainelli 已提交
480
static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
L
Linus Torvalds 已提交
481
{
F
Florian Fainelli 已提交
482
	struct db_dest *pDB;
L
Linus Torvalds 已提交
483 484
	pDB = aup->pDBfree;

F
Florian Fainelli 已提交
485
	if (pDB)
L
Linus Torvalds 已提交
486
		aup->pDBfree = pDB->pnext;
F
Florian Fainelli 已提交
487

L
Linus Torvalds 已提交
488 489 490
	return pDB;
}

F
Florian Fainelli 已提交
491
void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
L
Linus Torvalds 已提交
492
{
F
Florian Fainelli 已提交
493
	struct db_dest *pDBfree = aup->pDBfree;
L
Linus Torvalds 已提交
494 495 496 497 498
	if (pDBfree)
		pDBfree->pnext = pDB;
	aup->pDBfree = pDB;
}

499
static void au1000_reset_mac_unlocked(struct net_device *dev)
500
{
501
	struct au1000_private *const aup = netdev_priv(dev);
502 503
	int i;

504
	au1000_hard_stop(dev);
505

506
	writel(MAC_EN_CLOCK_ENABLE, aup->enable);
507
	au_sync_delay(2);
508
	writel(0, aup->enable);
509 510
	au_sync_delay(2);

L
Linus Torvalds 已提交
511 512 513 514 515 516 517 518 519
	aup->tx_full = 0;
	for (i = 0; i < NUM_RX_DMA; i++) {
		/* reset control bits */
		aup->rx_dma_ring[i]->buff_stat &= ~0xf;
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
		/* reset control bits */
		aup->tx_dma_ring[i]->buff_stat &= ~0xf;
	}
520 521 522

	aup->mac_enabled = 0;

L
Linus Torvalds 已提交
523 524
}

525
static void au1000_reset_mac(struct net_device *dev)
526
{
527
	struct au1000_private *const aup = netdev_priv(dev);
528 529
	unsigned long flags;

530 531
	netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
					(unsigned)aup);
532 533 534

	spin_lock_irqsave(&aup->lock, flags);

F
Florian Fainelli 已提交
535
	au1000_reset_mac_unlocked(dev);
536 537 538

	spin_unlock_irqrestore(&aup->lock, flags);
}
L
Linus Torvalds 已提交
539

540
/*
L
Linus Torvalds 已提交
541 542 543 544
 * Setup the receive and transmit "rings".  These pointers are the addresses
 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
 * these are not descriptors sitting in memory.
 */
545
static void
546
au1000_setup_hw_rings(struct au1000_private *aup, u32 rx_base, u32 tx_base)
L
Linus Torvalds 已提交
547 548 549 550
{
	int i;

	for (i = 0; i < NUM_RX_DMA; i++) {
551
		aup->rx_dma_ring[i] =
552
			(struct rx_dma *)
553
					(rx_base + sizeof(struct rx_dma)*i);
L
Linus Torvalds 已提交
554 555
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
556
		aup->tx_dma_ring[i] =
557
			(struct tx_dma *)
558
					(tx_base + sizeof(struct tx_dma)*i);
L
Linus Torvalds 已提交
559 560 561
	}
}

562 563 564
/*
 * ethtool operations
 */
L
Linus Torvalds 已提交
565

566
static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
L
Linus Torvalds 已提交
567
{
568
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
569

570 571
	if (aup->phy_dev)
		return phy_ethtool_gset(aup->phy_dev, cmd);
L
Linus Torvalds 已提交
572

573
	return -EINVAL;
L
Linus Torvalds 已提交
574 575
}

576
static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
L
Linus Torvalds 已提交
577
{
578
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
579

580 581
	if (!capable(CAP_NET_ADMIN))
		return -EPERM;
L
Linus Torvalds 已提交
582

583 584
	if (aup->phy_dev)
		return phy_ethtool_sset(aup->phy_dev, cmd);
L
Linus Torvalds 已提交
585

586
	return -EINVAL;
L
Linus Torvalds 已提交
587 588 589 590 591
}

static void
au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
592
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
593 594 595 596 597 598 599 600

	strcpy(info->driver, DRV_NAME);
	strcpy(info->version, DRV_VERSION);
	info->fw_version[0] = '\0';
	sprintf(info->bus_info, "%s %d", DRV_NAME, aup->mac_id);
	info->regdump_len = 0;
}

601 602 603 604 605 606 607 608 609 610 611 612
static void au1000_set_msglevel(struct net_device *dev, u32 value)
{
	struct au1000_private *aup = netdev_priv(dev);
	aup->msg_enable = value;
}

static u32 au1000_get_msglevel(struct net_device *dev)
{
	struct au1000_private *aup = netdev_priv(dev);
	return aup->msg_enable;
}

613
static const struct ethtool_ops au1000_ethtool_ops = {
L
Linus Torvalds 已提交
614 615 616
	.get_settings = au1000_get_settings,
	.set_settings = au1000_set_settings,
	.get_drvinfo = au1000_get_drvinfo,
617
	.get_link = ethtool_op_get_link,
618 619
	.get_msglevel = au1000_get_msglevel,
	.set_msglevel = au1000_set_msglevel,
L
Linus Torvalds 已提交
620 621
};

F
Florian Fainelli 已提交
622 623 624 625 626 627 628 629 630 631 632

/*
 * Initialize the interface.
 *
 * When the device powers up, the clocks are disabled and the
 * mac is in reset state.  When the interface is closed, we
 * do the same -- reset the device and disable the clocks to
 * conserve power. Thus, whenever au1000_init() is called,
 * the device should already be in reset state.
 */
static int au1000_init(struct net_device *dev)
L
Linus Torvalds 已提交
633
{
F
Florian Fainelli 已提交
634 635 636 637
	struct au1000_private *aup = netdev_priv(dev);
	unsigned long flags;
	int i;
	u32 control;
638

639
	netif_dbg(aup, hw, dev, "au1000_init\n");
L
Linus Torvalds 已提交
640

F
Florian Fainelli 已提交
641
	/* bring the device out of reset */
642
	au1000_enable_mac(dev, 1);
643

F
Florian Fainelli 已提交
644
	spin_lock_irqsave(&aup->lock, flags);
L
Linus Torvalds 已提交
645

646
	writel(0, &aup->mac->control);
F
Florian Fainelli 已提交
647 648 649
	aup->tx_head = (aup->tx_dma_ring[0]->buff_stat & 0xC) >> 2;
	aup->tx_tail = aup->tx_head;
	aup->rx_head = (aup->rx_dma_ring[0]->buff_stat & 0xC) >> 2;
L
Linus Torvalds 已提交
650

651 652 653 654 655
	writel(dev->dev_addr[5]<<8 | dev->dev_addr[4],
					&aup->mac->mac_addr_high);
	writel(dev->dev_addr[3]<<24 | dev->dev_addr[2]<<16 |
		dev->dev_addr[1]<<8 | dev->dev_addr[0],
					&aup->mac->mac_addr_low);
F
Florian Fainelli 已提交
656

657

F
Florian Fainelli 已提交
658
	for (i = 0; i < NUM_RX_DMA; i++)
F
Florian Fainelli 已提交
659
		aup->rx_dma_ring[i]->buff_stat |= RX_DMA_ENABLE;
F
Florian Fainelli 已提交
660

F
Florian Fainelli 已提交
661
	au_sync();
L
Linus Torvalds 已提交
662

F
Florian Fainelli 已提交
663 664 665 666 667 668 669 670 671 672 673
	control = MAC_RX_ENABLE | MAC_TX_ENABLE;
#ifndef CONFIG_CPU_LITTLE_ENDIAN
	control |= MAC_BIG_ENDIAN;
#endif
	if (aup->phy_dev) {
		if (aup->phy_dev->link && (DUPLEX_FULL == aup->phy_dev->duplex))
			control |= MAC_FULL_DUPLEX;
		else
			control |= MAC_DISABLE_RX_OWN;
	} else { /* PHY-less op, assume full-duplex */
		control |= MAC_FULL_DUPLEX;
L
Linus Torvalds 已提交
674 675
	}

676 677
	writel(control, &aup->mac->control);
	writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
F
Florian Fainelli 已提交
678
	au_sync();
L
Linus Torvalds 已提交
679

F
Florian Fainelli 已提交
680 681 682
	spin_unlock_irqrestore(&aup->lock, flags);
	return 0;
}
L
Linus Torvalds 已提交
683

684
static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
F
Florian Fainelli 已提交
685 686
{
	struct net_device_stats *ps = &dev->stats;
L
Linus Torvalds 已提交
687

F
Florian Fainelli 已提交
688 689 690
	ps->rx_packets++;
	if (status & RX_MCAST_FRAME)
		ps->multicast++;
L
Linus Torvalds 已提交
691

F
Florian Fainelli 已提交
692 693 694 695
	if (status & RX_ERROR) {
		ps->rx_errors++;
		if (status & RX_MISSED_FRAME)
			ps->rx_missed_errors++;
696
		if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
F
Florian Fainelli 已提交
697 698 699 700 701
			ps->rx_length_errors++;
		if (status & RX_CRC_ERROR)
			ps->rx_crc_errors++;
		if (status & RX_COLL)
			ps->collisions++;
702
	} else
F
Florian Fainelli 已提交
703
		ps->rx_bytes += status & RX_FRAME_LEN_MASK;
704

L
Linus Torvalds 已提交
705 706
}

707
/*
F
Florian Fainelli 已提交
708
 * Au1000 receive routine.
L
Linus Torvalds 已提交
709
 */
F
Florian Fainelli 已提交
710
static int au1000_rx(struct net_device *dev)
L
Linus Torvalds 已提交
711
{
712
	struct au1000_private *aup = netdev_priv(dev);
F
Florian Fainelli 已提交
713
	struct sk_buff *skb;
714
	struct rx_dma *prxd;
F
Florian Fainelli 已提交
715
	u32 buff_stat, status;
F
Florian Fainelli 已提交
716
	struct db_dest *pDB;
F
Florian Fainelli 已提交
717
	u32	frmlen;
L
Linus Torvalds 已提交
718

719
	netif_dbg(aup, rx_status, dev, "au1000_rx head %d\n", aup->rx_head);
L
Linus Torvalds 已提交
720

F
Florian Fainelli 已提交
721 722 723 724 725
	prxd = aup->rx_dma_ring[aup->rx_head];
	buff_stat = prxd->buff_stat;
	while (buff_stat & RX_T_DONE)  {
		status = prxd->status;
		pDB = aup->rx_db_inuse[aup->rx_head];
726
		au1000_update_rx_stats(dev, status);
F
Florian Fainelli 已提交
727
		if (!(status & RX_ERROR))  {
L
Linus Torvalds 已提交
728

F
Florian Fainelli 已提交
729 730 731 732 733
			/* good frame */
			frmlen = (status & RX_FRAME_LEN_MASK);
			frmlen -= 4; /* Remove FCS */
			skb = dev_alloc_skb(frmlen + 2);
			if (skb == NULL) {
734
				netdev_err(dev, "Memory squeeze, dropping packet.\n");
F
Florian Fainelli 已提交
735 736 737 738 739 740 741 742 743
				dev->stats.rx_dropped++;
				continue;
			}
			skb_reserve(skb, 2);	/* 16 byte IP header align */
			skb_copy_to_linear_data(skb,
				(unsigned char *)pDB->vaddr, frmlen);
			skb_put(skb, frmlen);
			skb->protocol = eth_type_trans(skb, dev);
			netif_rx(skb);	/* pass the packet to upper layers */
744
		} else {
F
Florian Fainelli 已提交
745
			if (au1000_debug > 4) {
746
				pr_err("rx_error(s):");
F
Florian Fainelli 已提交
747
				if (status & RX_MISSED_FRAME)
748
					pr_cont(" miss");
F
Florian Fainelli 已提交
749
				if (status & RX_WDOG_TIMER)
750
					pr_cont(" wdog");
F
Florian Fainelli 已提交
751
				if (status & RX_RUNT)
752
					pr_cont(" runt");
F
Florian Fainelli 已提交
753
				if (status & RX_OVERLEN)
754
					pr_cont(" overlen");
F
Florian Fainelli 已提交
755
				if (status & RX_COLL)
756
					pr_cont(" coll");
F
Florian Fainelli 已提交
757
				if (status & RX_MII_ERROR)
758
					pr_cont(" mii error");
F
Florian Fainelli 已提交
759
				if (status & RX_CRC_ERROR)
760
					pr_cont(" crc error");
F
Florian Fainelli 已提交
761
				if (status & RX_LEN_ERROR)
762
					pr_cont(" len error");
F
Florian Fainelli 已提交
763
				if (status & RX_U_CNTRL_FRAME)
764 765
					pr_cont(" u control frame");
				pr_cont("\n");
F
Florian Fainelli 已提交
766 767 768 769 770
			}
		}
		prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
		aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
		au_sync();
L
Linus Torvalds 已提交
771

F
Florian Fainelli 已提交
772 773 774
		/* next descriptor */
		prxd = aup->rx_dma_ring[aup->rx_head];
		buff_stat = prxd->buff_stat;
L
Linus Torvalds 已提交
775 776 777 778
	}
	return 0;
}

779
static void au1000_update_tx_stats(struct net_device *dev, u32 status)
L
Linus Torvalds 已提交
780
{
781
	struct au1000_private *aup = netdev_priv(dev);
F
Florian Fainelli 已提交
782
	struct net_device_stats *ps = &dev->stats;
783

F
Florian Fainelli 已提交
784 785 786 787
	if (status & TX_FRAME_ABORTED) {
		if (!aup->phy_dev || (DUPLEX_FULL == aup->phy_dev->duplex)) {
			if (status & (TX_JAB_TIMEOUT | TX_UNDERRUN)) {
				/* any other tx errors are only valid
788 789
				 * in half duplex mode
				 */
F
Florian Fainelli 已提交
790 791 792
				ps->tx_errors++;
				ps->tx_aborted_errors++;
			}
793
		} else {
F
Florian Fainelli 已提交
794 795 796 797 798 799 800
			ps->tx_errors++;
			ps->tx_aborted_errors++;
			if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
				ps->tx_carrier_errors++;
		}
	}
}
801

F
Florian Fainelli 已提交
802 803 804 805 806 807 808 809
/*
 * Called from the interrupt service routine to acknowledge
 * the TX DONE bits.  This is a must if the irq is setup as
 * edge triggered.
 */
static void au1000_tx_ack(struct net_device *dev)
{
	struct au1000_private *aup = netdev_priv(dev);
810
	struct tx_dma *ptxd;
811

F
Florian Fainelli 已提交
812
	ptxd = aup->tx_dma_ring[aup->tx_tail];
813

F
Florian Fainelli 已提交
814
	while (ptxd->buff_stat & TX_T_DONE) {
815
		au1000_update_tx_stats(dev, ptxd->status);
F
Florian Fainelli 已提交
816 817 818
		ptxd->buff_stat &= ~TX_T_DONE;
		ptxd->len = 0;
		au_sync();
819

F
Florian Fainelli 已提交
820 821
		aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
		ptxd = aup->tx_dma_ring[aup->tx_tail];
822

F
Florian Fainelli 已提交
823 824 825 826
		if (aup->tx_full) {
			aup->tx_full = 0;
			netif_wake_queue(dev);
		}
L
Linus Torvalds 已提交
827
	}
F
Florian Fainelli 已提交
828
}
L
Linus Torvalds 已提交
829

F
Florian Fainelli 已提交
830 831 832 833 834 835
/*
 * Au1000 interrupt service routine.
 */
static irqreturn_t au1000_interrupt(int irq, void *dev_id)
{
	struct net_device *dev = dev_id;
L
Linus Torvalds 已提交
836

F
Florian Fainelli 已提交
837 838 839 840 841
	/* Handle RX interrupts first to minimize chance of overrun */

	au1000_rx(dev);
	au1000_tx_ack(dev);
	return IRQ_RETVAL(1);
L
Linus Torvalds 已提交
842 843 844 845 846
}

static int au1000_open(struct net_device *dev)
{
	int retval;
847
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
848

849
	netif_dbg(aup, drv, dev, "open: dev=%p\n", dev);
L
Linus Torvalds 已提交
850

851 852 853
	retval = request_irq(dev->irq, au1000_interrupt, 0,
					dev->name, dev);
	if (retval) {
854
		netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
855 856 857
		return retval;
	}

858 859
	retval = au1000_init(dev);
	if (retval) {
860
		netdev_err(dev, "error in au1000_init\n");
L
Linus Torvalds 已提交
861 862 863 864
		free_irq(dev->irq, dev);
		return retval;
	}

865 866 867 868
	if (aup->phy_dev) {
		/* cause the PHY state machine to schedule a link state check */
		aup->phy_dev->state = PHY_CHANGELINK;
		phy_start(aup->phy_dev);
L
Linus Torvalds 已提交
869 870
	}

871
	netif_start_queue(dev);
L
Linus Torvalds 已提交
872

873
	netif_dbg(aup, drv, dev, "open: Initialization done.\n");
L
Linus Torvalds 已提交
874 875 876 877 878 879

	return 0;
}

static int au1000_close(struct net_device *dev)
{
880
	unsigned long flags;
881
	struct au1000_private *const aup = netdev_priv(dev);
L
Linus Torvalds 已提交
882

883
	netif_dbg(aup, drv, dev, "close: dev=%p\n", dev);
L
Linus Torvalds 已提交
884

885 886
	if (aup->phy_dev)
		phy_stop(aup->phy_dev);
L
Linus Torvalds 已提交
887 888

	spin_lock_irqsave(&aup->lock, flags);
889

F
Florian Fainelli 已提交
890
	au1000_reset_mac_unlocked(dev);
891

L
Linus Torvalds 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904
	/* stop the device */
	netif_stop_queue(dev);

	/* disable the interrupt */
	free_irq(dev->irq, dev);
	spin_unlock_irqrestore(&aup->lock, flags);

	return 0;
}

/*
 * Au1000 transmit routine.
 */
905
static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
906
{
907
	struct au1000_private *aup = netdev_priv(dev);
908
	struct net_device_stats *ps = &dev->stats;
909
	struct tx_dma *ptxd;
L
Linus Torvalds 已提交
910
	u32 buff_stat;
F
Florian Fainelli 已提交
911
	struct db_dest *pDB;
L
Linus Torvalds 已提交
912 913
	int i;

914 915
	netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
				(unsigned)aup, skb->len,
L
Linus Torvalds 已提交
916 917 918 919 920 921 922 923
				skb->data, aup->tx_head);

	ptxd = aup->tx_dma_ring[aup->tx_head];
	buff_stat = ptxd->buff_stat;
	if (buff_stat & TX_DMA_ENABLE) {
		/* We've wrapped around and the transmitter is still busy */
		netif_stop_queue(dev);
		aup->tx_full = 1;
924
		return NETDEV_TX_BUSY;
925
	} else if (buff_stat & TX_T_DONE) {
926
		au1000_update_tx_stats(dev, ptxd->status);
L
Linus Torvalds 已提交
927 928 929 930 931 932 933 934 935
		ptxd->len = 0;
	}

	if (aup->tx_full) {
		aup->tx_full = 0;
		netif_wake_queue(dev);
	}

	pDB = aup->tx_db_inuse[aup->tx_head];
936
	skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
L
Linus Torvalds 已提交
937
	if (skb->len < ETH_ZLEN) {
F
Florian Fainelli 已提交
938
		for (i = skb->len; i < ETH_ZLEN; i++)
L
Linus Torvalds 已提交
939
			((char *)pDB->vaddr)[i] = 0;
F
Florian Fainelli 已提交
940

L
Linus Torvalds 已提交
941
		ptxd->len = ETH_ZLEN;
942
	} else
F
Florian Fainelli 已提交
943
		ptxd->len = skb->len;
L
Linus Torvalds 已提交
944

F
Florian Fainelli 已提交
945 946
	ps->tx_packets++;
	ps->tx_bytes += ptxd->len;
L
Linus Torvalds 已提交
947

F
Florian Fainelli 已提交
948 949 950 951
	ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
	au_sync();
	dev_kfree_skb(skb);
	aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
952
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
953 954 955 956 957 958 959 960
}

/*
 * The Tx ring has been full longer than the watchdog timeout
 * value. The transmitter must be hung?
 */
static void au1000_tx_timeout(struct net_device *dev)
{
961
	netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
962
	au1000_reset_mac(dev);
L
Linus Torvalds 已提交
963
	au1000_init(dev);
E
Eric Dumazet 已提交
964
	dev->trans_start = jiffies; /* prevent tx timeout */
L
Linus Torvalds 已提交
965 966 967
	netif_wake_queue(dev);
}

968
static void au1000_multicast_list(struct net_device *dev)
L
Linus Torvalds 已提交
969
{
970
	struct au1000_private *aup = netdev_priv(dev);
971
	u32 reg;
L
Linus Torvalds 已提交
972

973
	netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
974
	reg = readl(&aup->mac->control);
L
Linus Torvalds 已提交
975
	if (dev->flags & IFF_PROMISC) {			/* Set promiscuous. */
976
		reg |= MAC_PROMISCUOUS;
L
Linus Torvalds 已提交
977
	} else if ((dev->flags & IFF_ALLMULTI)  ||
978
			   netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
979 980
		reg |= MAC_PASS_ALL_MULTI;
		reg &= ~MAC_PROMISCUOUS;
981
		netdev_info(dev, "Pass all multicast\n");
L
Linus Torvalds 已提交
982
	} else {
983
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
984 985 986
		u32 mc_filter[2];	/* Multicast hash filter */

		mc_filter[1] = mc_filter[0] = 0;
987 988
		netdev_for_each_mc_addr(ha, dev)
			set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
L
Linus Torvalds 已提交
989
					(long *)mc_filter);
990 991 992 993
		writel(mc_filter[1], &aup->mac->multi_hash_high);
		writel(mc_filter[0], &aup->mac->multi_hash_low);
		reg &= ~MAC_PROMISCUOUS;
		reg |= MAC_HASH_MODE;
L
Linus Torvalds 已提交
994
	}
995
	writel(reg, &aup->mac->control);
L
Linus Torvalds 已提交
996 997 998 999
}

static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
{
1000
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
1001

1002 1003
	if (!netif_running(dev))
		return -EINVAL;
L
Linus Torvalds 已提交
1004

1005 1006
	if (!aup->phy_dev)
		return -EINVAL; /* PHY not controllable */
L
Linus Torvalds 已提交
1007

1008
	return phy_mii_ioctl(aup->phy_dev, rq, cmd);
L
Linus Torvalds 已提交
1009 1010
}

1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
static const struct net_device_ops au1000_netdev_ops = {
	.ndo_open		= au1000_open,
	.ndo_stop		= au1000_close,
	.ndo_start_xmit		= au1000_tx,
	.ndo_set_multicast_list	= au1000_multicast_list,
	.ndo_do_ioctl		= au1000_ioctl,
	.ndo_tx_timeout		= au1000_tx_timeout,
	.ndo_set_mac_address	= eth_mac_addr,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_change_mtu		= eth_change_mtu,
};

1023
static int __devinit au1000_probe(struct platform_device *pdev)
F
Florian Fainelli 已提交
1024
{
1025
	static unsigned version_printed;
F
Florian Fainelli 已提交
1026
	struct au1000_private *aup = NULL;
1027
	struct au1000_eth_platform_data *pd;
F
Florian Fainelli 已提交
1028
	struct net_device *dev = NULL;
F
Florian Fainelli 已提交
1029
	struct db_dest *pDB, *pDBfree;
1030 1031
	int irq, i, err = 0;
	struct resource *base, *macen;
F
Florian Fainelli 已提交
1032

1033 1034
	base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!base) {
1035
		dev_err(&pdev->dev, "failed to retrieve base register\n");
1036 1037 1038
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1039

1040 1041
	macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (!macen) {
1042
		dev_err(&pdev->dev, "failed to retrieve MAC Enable register\n");
1043 1044 1045
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1046

1047 1048
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
1049
		dev_err(&pdev->dev, "failed to retrieve IRQ\n");
1050 1051 1052
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1053

1054 1055
	if (!request_mem_region(base->start, resource_size(base),
							pdev->name)) {
1056
		dev_err(&pdev->dev, "failed to request memory region for base registers\n");
1057 1058 1059 1060
		err = -ENXIO;
		goto out;
	}

1061 1062
	if (!request_mem_region(macen->start, resource_size(macen),
							pdev->name)) {
1063
		dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
1064 1065 1066
		err = -ENXIO;
		goto err_request;
	}
F
Florian Fainelli 已提交
1067 1068 1069

	dev = alloc_etherdev(sizeof(struct au1000_private));
	if (!dev) {
1070
		dev_err(&pdev->dev, "alloc_etherdev failed\n");
1071 1072
		err = -ENOMEM;
		goto err_alloc;
F
Florian Fainelli 已提交
1073 1074
	}

1075 1076
	SET_NETDEV_DEV(dev, &pdev->dev);
	platform_set_drvdata(pdev, dev);
F
Florian Fainelli 已提交
1077 1078 1079
	aup = netdev_priv(dev);

	spin_lock_init(&aup->lock);
1080 1081
	aup->msg_enable = (au1000_debug < 4 ?
				AU1000_DEF_MSG_ENABLE : au1000_debug);
F
Florian Fainelli 已提交
1082

1083 1084 1085
	/* Allocate the data buffers
	 * Snooping works fine with eth on all au1xxx
	 */
F
Florian Fainelli 已提交
1086 1087 1088 1089
	aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
						(NUM_TX_BUFFS + NUM_RX_BUFFS),
						&aup->dma_addr,	0);
	if (!aup->vaddr) {
1090
		dev_err(&pdev->dev, "failed to allocate data buffers\n");
1091 1092
		err = -ENOMEM;
		goto err_vaddr;
F
Florian Fainelli 已提交
1093 1094 1095
	}

	/* aup->mac is the base address of the MAC's registers */
1096
	aup->mac = (struct mac_reg *)
1097
			ioremap_nocache(base->start, resource_size(base));
1098
	if (!aup->mac) {
1099
		dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
1100 1101 1102
		err = -ENXIO;
		goto err_remap1;
	}
F
Florian Fainelli 已提交
1103

F
Florian Fainelli 已提交
1104
	/* Setup some variables for quick register address access */
1105
	aup->enable = (u32 *)ioremap_nocache(macen->start,
1106
						resource_size(macen));
1107
	if (!aup->enable) {
1108
		dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
1109 1110 1111 1112
		err = -ENXIO;
		goto err_remap2;
	}
	aup->mac_id = pdev->id;
F
Florian Fainelli 已提交
1113

1114
	if (pdev->id == 0)
1115
		au1000_setup_hw_rings(aup, MAC0_RX_DMA_ADDR, MAC0_TX_DMA_ADDR);
1116
	else if (pdev->id == 1)
1117
		au1000_setup_hw_rings(aup, MAC1_RX_DMA_ADDR, MAC1_TX_DMA_ADDR);
F
Florian Fainelli 已提交
1118

1119 1120
	/* set a random MAC now in case platform_data doesn't provide one */
	random_ether_addr(dev->dev_addr);
F
Florian Fainelli 已提交
1121

1122
	writel(0, aup->enable);
F
Florian Fainelli 已提交
1123 1124
	aup->mac_enabled = 0;

1125 1126
	pd = pdev->dev.platform_data;
	if (!pd) {
1127 1128
		dev_info(&pdev->dev, "no platform_data passed,"
					" PHY search on MAC0\n");
1129 1130
		aup->phy1_search_mac0 = 1;
	} else {
1131 1132 1133
		if (is_valid_ether_addr(pd->mac))
			memcpy(dev->dev_addr, pd->mac, 6);

1134 1135 1136 1137 1138 1139 1140 1141 1142
		aup->phy_static_config = pd->phy_static_config;
		aup->phy_search_highest_addr = pd->phy_search_highest_addr;
		aup->phy1_search_mac0 = pd->phy1_search_mac0;
		aup->phy_addr = pd->phy_addr;
		aup->phy_busid = pd->phy_busid;
		aup->phy_irq = pd->phy_irq;
	}

	if (aup->phy_busid && aup->phy_busid > 0) {
1143
		dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
1144 1145 1146 1147
		err = -ENODEV;
		goto err_mdiobus_alloc;
	}

F
Florian Fainelli 已提交
1148
	aup->mii_bus = mdiobus_alloc();
1149
	if (aup->mii_bus == NULL) {
1150
		dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
1151 1152 1153
		err = -ENOMEM;
		goto err_mdiobus_alloc;
	}
F
Florian Fainelli 已提交
1154 1155 1156 1157 1158 1159 1160 1161

	aup->mii_bus->priv = dev;
	aup->mii_bus->read = au1000_mdiobus_read;
	aup->mii_bus->write = au1000_mdiobus_write;
	aup->mii_bus->reset = au1000_mdiobus_reset;
	aup->mii_bus->name = "au1000_eth_mii";
	snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%x", aup->mac_id);
	aup->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
1162 1163 1164
	if (aup->mii_bus->irq == NULL)
		goto err_out;

1165
	for (i = 0; i < PHY_MAX_ADDR; ++i)
F
Florian Fainelli 已提交
1166 1167
		aup->mii_bus->irq[i] = PHY_POLL;
	/* if known, set corresponding PHY IRQs */
1168 1169 1170 1171 1172 1173
	if (aup->phy_static_config)
		if (aup->phy_irq && aup->phy_busid == aup->mac_id)
			aup->mii_bus->irq[aup->phy_addr] = aup->phy_irq;

	err = mdiobus_register(aup->mii_bus);
	if (err) {
1174
		dev_err(&pdev->dev, "failed to register MDIO bus\n");
1175 1176
		goto err_mdiobus_reg;
	}
F
Florian Fainelli 已提交
1177

1178
	if (au1000_mii_probe(dev) != 0)
F
Florian Fainelli 已提交
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
		goto err_out;

	pDBfree = NULL;
	/* setup the data buffer descriptors and attach a buffer to each one */
	pDB = aup->db;
	for (i = 0; i < (NUM_TX_BUFFS+NUM_RX_BUFFS); i++) {
		pDB->pnext = pDBfree;
		pDBfree = pDB;
		pDB->vaddr = (u32 *)((unsigned)aup->vaddr + MAX_BUF_SIZE*i);
		pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
		pDB++;
	}
	aup->pDBfree = pDBfree;

	for (i = 0; i < NUM_RX_DMA; i++) {
1194
		pDB = au1000_GetFreeDB(aup);
F
Florian Fainelli 已提交
1195
		if (!pDB)
F
Florian Fainelli 已提交
1196
			goto err_out;
F
Florian Fainelli 已提交
1197

F
Florian Fainelli 已提交
1198 1199 1200 1201
		aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
		aup->rx_db_inuse[i] = pDB;
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
1202
		pDB = au1000_GetFreeDB(aup);
F
Florian Fainelli 已提交
1203
		if (!pDB)
F
Florian Fainelli 已提交
1204
			goto err_out;
F
Florian Fainelli 已提交
1205

F
Florian Fainelli 已提交
1206 1207 1208 1209 1210
		aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
		aup->tx_dma_ring[i]->len = 0;
		aup->tx_db_inuse[i] = pDB;
	}

1211 1212 1213 1214 1215 1216
	dev->base_addr = base->start;
	dev->irq = irq;
	dev->netdev_ops = &au1000_netdev_ops;
	SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops);
	dev->watchdog_timeo = ETH_TX_TIMEOUT;

F
Florian Fainelli 已提交
1217 1218 1219 1220
	/*
	 * The boot code uses the ethernet controller, so reset it to start
	 * fresh.  au1000_init() expects that the device is in reset state.
	 */
1221
	au1000_reset_mac(dev);
F
Florian Fainelli 已提交
1222

1223 1224
	err = register_netdev(dev);
	if (err) {
1225
		netdev_err(dev, "Cannot register net device, aborting.\n");
1226 1227 1228
		goto err_out;
	}

1229 1230
	netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
			(unsigned long)base->start, irq);
1231
	if (version_printed++ == 0)
1232 1233
		pr_info("%s version %s %s\n",
					DRV_NAME, DRV_VERSION, DRV_AUTHOR);
1234 1235

	return 0;
F
Florian Fainelli 已提交
1236 1237

err_out:
1238
	if (aup->mii_bus != NULL)
F
Florian Fainelli 已提交
1239 1240 1241
		mdiobus_unregister(aup->mii_bus);

	/* here we should have a valid dev plus aup-> register addresses
1242 1243
	 * so we can reset the mac properly.
	 */
1244
	au1000_reset_mac(dev);
F
Florian Fainelli 已提交
1245 1246 1247

	for (i = 0; i < NUM_RX_DMA; i++) {
		if (aup->rx_db_inuse[i])
1248
			au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
F
Florian Fainelli 已提交
1249 1250 1251
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
		if (aup->tx_db_inuse[i])
1252
			au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
F
Florian Fainelli 已提交
1253
	}
1254 1255 1256 1257 1258 1259 1260
err_mdiobus_reg:
	mdiobus_free(aup->mii_bus);
err_mdiobus_alloc:
	iounmap(aup->enable);
err_remap2:
	iounmap(aup->mac);
err_remap1:
F
Florian Fainelli 已提交
1261 1262
	dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
			     (void *)aup->vaddr, aup->dma_addr);
1263
err_vaddr:
F
Florian Fainelli 已提交
1264
	free_netdev(dev);
1265 1266 1267 1268 1269 1270
err_alloc:
	release_mem_region(macen->start, resource_size(macen));
err_request:
	release_mem_region(base->start, resource_size(base));
out:
	return err;
F
Florian Fainelli 已提交
1271 1272
}

1273
static int __devexit au1000_remove(struct platform_device *pdev)
F
Florian Fainelli 已提交
1274
{
1275 1276 1277 1278
	struct net_device *dev = platform_get_drvdata(pdev);
	struct au1000_private *aup = netdev_priv(dev);
	int i;
	struct resource *base, *macen;
F
Florian Fainelli 已提交
1279

1280 1281 1282 1283 1284 1285 1286 1287
	platform_set_drvdata(pdev, NULL);

	unregister_netdev(dev);
	mdiobus_unregister(aup->mii_bus);
	mdiobus_free(aup->mii_bus);

	for (i = 0; i < NUM_RX_DMA; i++)
		if (aup->rx_db_inuse[i])
1288
			au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
1289 1290 1291

	for (i = 0; i < NUM_TX_DMA; i++)
		if (aup->tx_db_inuse[i])
1292
			au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307

	dma_free_noncoherent(NULL, MAX_BUF_SIZE *
			(NUM_TX_BUFFS + NUM_RX_BUFFS),
			(void *)aup->vaddr, aup->dma_addr);

	iounmap(aup->mac);
	iounmap(aup->enable);

	base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	release_mem_region(base->start, resource_size(base));

	macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	release_mem_region(macen->start, resource_size(macen));

	free_netdev(dev);
F
Florian Fainelli 已提交
1308 1309 1310 1311

	return 0;
}

1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
static struct platform_driver au1000_eth_driver = {
	.probe  = au1000_probe,
	.remove = __devexit_p(au1000_remove),
	.driver = {
		.name   = "au1000-eth",
		.owner  = THIS_MODULE,
	},
};
MODULE_ALIAS("platform:au1000-eth");


static int __init au1000_init_module(void)
{
	return platform_driver_register(&au1000_eth_driver);
}

static void __exit au1000_exit_module(void)
F
Florian Fainelli 已提交
1329
{
1330
	platform_driver_unregister(&au1000_eth_driver);
F
Florian Fainelli 已提交
1331 1332
}

L
Linus Torvalds 已提交
1333
module_init(au1000_init_module);
1334
module_exit(au1000_exit_module);