au1000_eth.c 36.5 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
 *
 * ########################################################################
 *
 *  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
30
 *  with this program; if not, see <http://www.gnu.org/licenses/>.
L
Linus Torvalds 已提交
31 32 33
 *
 * ########################################################################
 *
34
 *
L
Linus Torvalds 已提交
35
 */
36 37
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

38
#include <linux/capability.h>
R
Ralf Baechle 已提交
39
#include <linux/dma-mapping.h>
L
Linus Torvalds 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#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/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/mii.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
56
#include <linux/crc32.h>
57
#include <linux/phy.h>
58
#include <linux/platform_device.h>
59 60
#include <linux/cpu.h>
#include <linux/io.h>
Y
Yoichi Yuasa 已提交
61

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

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

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

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

78 79 80 81
#define AU1000_DEF_MSG_ENABLE	(NETIF_MSG_DRV	| \
				NETIF_MSG_PROBE	| \
				NETIF_MSG_LINK)

82
#define DRV_NAME	"au1000_eth"
F
Florian Fainelli 已提交
83
#define DRV_VERSION	"1.7"
L
Linus Torvalds 已提交
84 85 86 87 88 89
#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");
90
MODULE_VERSION(DRV_VERSION);
L
Linus Torvalds 已提交
91

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
/* AU1000 MAC registers and bits */
#define MAC_CONTROL		0x0
#  define MAC_RX_ENABLE		(1 << 2)
#  define MAC_TX_ENABLE		(1 << 3)
#  define MAC_DEF_CHECK		(1 << 5)
#  define MAC_SET_BL(X)		(((X) & 0x3) << 6)
#  define MAC_AUTO_PAD		(1 << 8)
#  define MAC_DISABLE_RETRY	(1 << 10)
#  define MAC_DISABLE_BCAST	(1 << 11)
#  define MAC_LATE_COL		(1 << 12)
#  define MAC_HASH_MODE		(1 << 13)
#  define MAC_HASH_ONLY		(1 << 15)
#  define MAC_PASS_ALL		(1 << 16)
#  define MAC_INVERSE_FILTER	(1 << 17)
#  define MAC_PROMISCUOUS	(1 << 18)
#  define MAC_PASS_ALL_MULTI	(1 << 19)
#  define MAC_FULL_DUPLEX	(1 << 20)
#  define MAC_NORMAL_MODE	0
#  define MAC_INT_LOOPBACK	(1 << 21)
#  define MAC_EXT_LOOPBACK	(1 << 22)
#  define MAC_DISABLE_RX_OWN	(1 << 23)
#  define MAC_BIG_ENDIAN	(1 << 30)
#  define MAC_RX_ALL		(1 << 31)
#define MAC_ADDRESS_HIGH	0x4
#define MAC_ADDRESS_LOW		0x8
#define MAC_MCAST_HIGH		0xC
#define MAC_MCAST_LOW		0x10
#define MAC_MII_CNTRL		0x14
#  define MAC_MII_BUSY		(1 << 0)
#  define MAC_MII_READ		0
#  define MAC_MII_WRITE		(1 << 1)
#  define MAC_SET_MII_SELECT_REG(X) (((X) & 0x1f) << 6)
#  define MAC_SET_MII_SELECT_PHY(X) (((X) & 0x1f) << 11)
#define MAC_MII_DATA		0x18
#define MAC_FLOW_CNTRL		0x1C
#  define MAC_FLOW_CNTRL_BUSY	(1 << 0)
#  define MAC_FLOW_CNTRL_ENABLE (1 << 1)
#  define MAC_PASS_CONTROL	(1 << 2)
#  define MAC_SET_PAUSE(X)	(((X) & 0xffff) << 16)
#define MAC_VLAN1_TAG		0x20
#define MAC_VLAN2_TAG		0x24

/* Ethernet Controller Enable */
#  define MAC_EN_CLOCK_ENABLE	(1 << 0)
#  define MAC_EN_RESET0		(1 << 1)
#  define MAC_EN_TOSS		(0 << 2)
#  define MAC_EN_CACHEABLE	(1 << 3)
#  define MAC_EN_RESET1		(1 << 4)
#  define MAC_EN_RESET2		(1 << 5)
#  define MAC_DMA_RESET		(1 << 6)

/* Ethernet Controller DMA Channels */
/* offsets from MAC_TX_RING_ADDR address */
#define MAC_TX_BUFF0_STATUS	0x0
#  define TX_FRAME_ABORTED	(1 << 0)
#  define TX_JAB_TIMEOUT	(1 << 1)
#  define TX_NO_CARRIER		(1 << 2)
#  define TX_LOSS_CARRIER	(1 << 3)
#  define TX_EXC_DEF		(1 << 4)
#  define TX_LATE_COLL_ABORT	(1 << 5)
#  define TX_EXC_COLL		(1 << 6)
#  define TX_UNDERRUN		(1 << 7)
#  define TX_DEFERRED		(1 << 8)
#  define TX_LATE_COLL		(1 << 9)
#  define TX_COLL_CNT_MASK	(0xF << 10)
#  define TX_PKT_RETRY		(1 << 31)
#define MAC_TX_BUFF0_ADDR	0x4
#  define TX_DMA_ENABLE		(1 << 0)
#  define TX_T_DONE		(1 << 1)
#  define TX_GET_DMA_BUFFER(X)	(((X) >> 2) & 0x3)
#define MAC_TX_BUFF0_LEN	0x8
#define MAC_TX_BUFF1_STATUS	0x10
#define MAC_TX_BUFF1_ADDR	0x14
#define MAC_TX_BUFF1_LEN	0x18
#define MAC_TX_BUFF2_STATUS	0x20
#define MAC_TX_BUFF2_ADDR	0x24
#define MAC_TX_BUFF2_LEN	0x28
#define MAC_TX_BUFF3_STATUS	0x30
#define MAC_TX_BUFF3_ADDR	0x34
#define MAC_TX_BUFF3_LEN	0x38

/* offsets from MAC_RX_RING_ADDR */
#define MAC_RX_BUFF0_STATUS	0x0
#  define RX_FRAME_LEN_MASK	0x3fff
#  define RX_WDOG_TIMER		(1 << 14)
#  define RX_RUNT		(1 << 15)
#  define RX_OVERLEN		(1 << 16)
#  define RX_COLL		(1 << 17)
#  define RX_ETHER		(1 << 18)
#  define RX_MII_ERROR		(1 << 19)
#  define RX_DRIBBLING		(1 << 20)
#  define RX_CRC_ERROR		(1 << 21)
#  define RX_VLAN1		(1 << 22)
#  define RX_VLAN2		(1 << 23)
#  define RX_LEN_ERROR		(1 << 24)
#  define RX_CNTRL_FRAME	(1 << 25)
#  define RX_U_CNTRL_FRAME	(1 << 26)
#  define RX_MCAST_FRAME	(1 << 27)
#  define RX_BCAST_FRAME	(1 << 28)
#  define RX_FILTER_FAIL	(1 << 29)
#  define RX_PACKET_FILTER	(1 << 30)
#  define RX_MISSED_FRAME	(1 << 31)

#  define RX_ERROR (RX_WDOG_TIMER | RX_RUNT | RX_OVERLEN |  \
		    RX_COLL | RX_MII_ERROR | RX_CRC_ERROR | \
		    RX_LEN_ERROR | RX_U_CNTRL_FRAME | RX_MISSED_FRAME)
#define MAC_RX_BUFF0_ADDR	0x4
#  define RX_DMA_ENABLE		(1 << 0)
#  define RX_T_DONE		(1 << 1)
#  define RX_GET_DMA_BUFFER(X)	(((X) >> 2) & 0x3)
#  define RX_SET_BUFF_ADDR(X)	((X) & 0xffffffc0)
#define MAC_RX_BUFF1_STATUS	0x10
#define MAC_RX_BUFF1_ADDR	0x14
#define MAC_RX_BUFF2_STATUS	0x20
#define MAC_RX_BUFF2_ADDR	0x24
#define MAC_RX_BUFF3_STATUS	0x30
#define MAC_RX_BUFF3_ADDR	0x34

L
Linus Torvalds 已提交
210 211 212
/*
 * Theory of operation
 *
213 214 215
 * 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 已提交
216 217 218
 * hardware registers.
 *
 * Since the Au1000 has a coherent data cache, the receive and
219
 * transmit buffers are allocated from the KSEG0 segment. The
L
Linus Torvalds 已提交
220 221 222 223 224
 * hardware registers, however, are still mapped at KSEG1 to
 * make sure there's no out-of-order writes, and that all writes
 * complete immediately.
 */

225 226 227 228 229
/*
 * board-specific configurations
 *
 * PHY detection algorithm
 *
230
 * If phy_static_config is undefined, the PHY setup is
231 232 233
 * autodetected:
 *
 * mii_probe() first searches the current MAC's MII bus for a PHY,
234
 * selecting the first (or last, if phy_search_highest_addr is
235 236 237
 * defined) PHY address not already claimed by another netdev.
 *
 * If nothing was found that way when searching for the 2nd ethernet
238
 * controller's PHY and phy1_search_mac0 is defined, then
239 240 241 242 243 244
 * 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 已提交
245 246
 */

247
/* autodetection defaults: phy1_search_mac0 */
L
Linus Torvalds 已提交
248

249 250 251 252 253 254 255 256 257 258 259 260 261 262
/* 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 已提交
263

264
static void au1000_enable_mac(struct net_device *dev, int force_reset)
F
Florian Fainelli 已提交
265 266 267 268 269 270
{
	unsigned long flags;
	struct au1000_private *aup = netdev_priv(dev);

	spin_lock_irqsave(&aup->lock, flags);

F
Florian Fainelli 已提交
271
	if (force_reset || (!aup->mac_enabled)) {
272
		writel(MAC_EN_CLOCK_ENABLE, aup->enable);
273 274
		wmb(); /* drain writebuffer */
		mdelay(2);
275
		writel((MAC_EN_RESET0 | MAC_EN_RESET1 | MAC_EN_RESET2
276
				| MAC_EN_CLOCK_ENABLE), aup->enable);
277 278
		wmb(); /* drain writebuffer */
		mdelay(2);
F
Florian Fainelli 已提交
279 280 281 282 283 284 285

		aup->mac_enabled = 1;
	}

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

286 287 288
/*
 * MII operations
 */
289
static int au1000_mdio_read(struct net_device *dev, int phy_addr, int reg)
L
Linus Torvalds 已提交
290
{
291
	struct au1000_private *aup = netdev_priv(dev);
292 293
	u32 *const mii_control_reg = &aup->mac->mii_control;
	u32 *const mii_data_reg = &aup->mac->mii_data;
L
Linus Torvalds 已提交
294 295 296
	u32 timedout = 20;
	u32 mii_control;

297
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
298 299
		mdelay(1);
		if (--timedout == 0) {
300
			netdev_err(dev, "read_MII busy timeout!!\n");
L
Linus Torvalds 已提交
301 302 303 304
			return -1;
		}
	}

305
	mii_control = MAC_SET_MII_SELECT_REG(reg) |
306
		MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_READ;
L
Linus Torvalds 已提交
307

308
	writel(mii_control, mii_control_reg);
L
Linus Torvalds 已提交
309 310

	timedout = 20;
311
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
312 313
		mdelay(1);
		if (--timedout == 0) {
314
			netdev_err(dev, "mdio_read busy timeout!!\n");
L
Linus Torvalds 已提交
315 316 317
			return -1;
		}
	}
318
	return readl(mii_data_reg);
L
Linus Torvalds 已提交
319 320
}

321 322
static void au1000_mdio_write(struct net_device *dev, int phy_addr,
			      int reg, u16 value)
L
Linus Torvalds 已提交
323
{
324
	struct au1000_private *aup = netdev_priv(dev);
325 326
	u32 *const mii_control_reg = &aup->mac->mii_control;
	u32 *const mii_data_reg = &aup->mac->mii_data;
L
Linus Torvalds 已提交
327 328 329
	u32 timedout = 20;
	u32 mii_control;

330
	while (readl(mii_control_reg) & MAC_MII_BUSY) {
L
Linus Torvalds 已提交
331 332
		mdelay(1);
		if (--timedout == 0) {
333
			netdev_err(dev, "mdio_write busy timeout!!\n");
L
Linus Torvalds 已提交
334 335 336 337
			return;
		}
	}

338
	mii_control = MAC_SET_MII_SELECT_REG(reg) |
339
		MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_WRITE;
L
Linus Torvalds 已提交
340

341 342
	writel(value, mii_data_reg);
	writel(mii_control, mii_control_reg);
L
Linus Torvalds 已提交
343 344
}

345
static int au1000_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
346 347 348
{
	struct net_device *const dev = bus->priv;

349 350 351 352 353
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

354
	return au1000_mdio_read(dev, phy_addr, regnum);
355
}
L
Linus Torvalds 已提交
356

357 358
static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
				u16 value)
L
Linus Torvalds 已提交
359
{
360
	struct net_device *const dev = bus->priv;
L
Linus Torvalds 已提交
361

362 363 364 365 366
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

367
	au1000_mdio_write(dev, phy_addr, regnum, value);
368
	return 0;
L
Linus Torvalds 已提交
369 370
}

371
static int au1000_mdiobus_reset(struct mii_bus *bus)
L
Linus Torvalds 已提交
372
{
373
	struct net_device *const dev = bus->priv;
L
Linus Torvalds 已提交
374

375 376 377 378 379
	/* make sure the MAC associated with this
	 * mii_bus is enabled
	 */
	au1000_enable_mac(dev, 0);

380 381
	return 0;
}
L
Linus Torvalds 已提交
382

383
static void au1000_hard_stop(struct net_device *dev)
F
Florian Fainelli 已提交
384 385
{
	struct au1000_private *aup = netdev_priv(dev);
386
	u32 reg;
F
Florian Fainelli 已提交
387

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

390 391 392
	reg = readl(&aup->mac->control);
	reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
	writel(reg, &aup->mac->control);
393 394
	wmb(); /* drain writebuffer */
	mdelay(10);
F
Florian Fainelli 已提交
395 396
}

397
static void au1000_enable_rx_tx(struct net_device *dev)
F
Florian Fainelli 已提交
398 399
{
	struct au1000_private *aup = netdev_priv(dev);
400
	u32 reg;
F
Florian Fainelli 已提交
401

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

404 405 406
	reg = readl(&aup->mac->control);
	reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
	writel(reg, &aup->mac->control);
407 408
	wmb(); /* drain writebuffer */
	mdelay(10);
F
Florian Fainelli 已提交
409 410 411 412 413 414 415 416
}

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;
417
	u32 reg;
F
Florian Fainelli 已提交
418 419 420 421 422 423 424 425

	int status_change = 0;

	BUG_ON(!aup->phy_dev);

	spin_lock_irqsave(&aup->lock, flags);

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

428
		switch (phydev->speed) {
F
Florian Fainelli 已提交
429 430 431 432
		case SPEED_10:
		case SPEED_100:
			break;
		default:
433 434
			netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
							phydev->speed);
F
Florian Fainelli 已提交
435 436 437 438 439 440 441 442 443
			break;
		}

		aup->old_speed = phydev->speed;

		status_change = 1;
	}

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

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

449 450 451 452 453 454 455 456 457
		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);
458 459
		wmb(); /* drain writebuffer */
		mdelay(1);
F
Florian Fainelli 已提交
460

461
		au1000_enable_rx_tx(dev);
F
Florian Fainelli 已提交
462 463 464 465 466
		aup->old_duplex = phydev->duplex;

		status_change = 1;
	}

467 468
	if (phydev->link != aup->old_link) {
		/* link state changed */
F
Florian Fainelli 已提交
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483

		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)
484 485
			netdev_info(dev, "link up (%d/%s)\n",
			       phydev->speed,
F
Florian Fainelli 已提交
486 487
			       DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
		else
488
			netdev_info(dev, "link down\n");
F
Florian Fainelli 已提交
489 490 491
	}
}

F
Florian Fainelli 已提交
492
static int au1000_mii_probe(struct net_device *dev)
493
{
494
	struct au1000_private *const aup = netdev_priv(dev);
495
	struct phy_device *phydev = NULL;
496
	int phy_addr;
497

498 499
	if (aup->phy_static_config) {
		BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
500

501
		if (aup->phy_addr)
502
			phydev = mdiobus_get_phy(aup->mii_bus, aup->phy_addr);
503
		else
504
			netdev_info(dev, "using PHY-less setup\n");
505
		return 0;
506
	}
507

508
	/* find the first (lowest address) PHY
509 510
	 * on the current MAC's MII bus
	 */
511 512 513 514 515 516
	for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
		phydev = mdiobus_get_phy(aup->mii_bus, phy_addr);
		if (phydev && !aup->phy_search_highest_addr)
			/* break out with first one found */
			break;
	}
517

518 519 520 521 522 523 524 525 526 527 528 529
	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 =
530 531
					mdiobus_get_phy(aup->mii_bus,
							phy_addr);
532 533 534 535 536 537 538 539 540 541 542 543 544 545

				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 */
546
			}
L
Linus Torvalds 已提交
547 548 549
		}
	}

550
	if (!phydev) {
551
		netdev_err(dev, "no PHY found\n");
L
Linus Torvalds 已提交
552 553 554
		return -1;
	}

555 556 557
	/* now we are supposed to have a proper phydev, to attach to... */
	BUG_ON(phydev->attached_dev);

A
Andrew Lunn 已提交
558
	phydev = phy_connect(dev, phydev_name(phydev),
559
			     &au1000_adjust_link, PHY_INTERFACE_MODE_MII);
560 561

	if (IS_ERR(phydev)) {
562
		netdev_err(dev, "Could not attach to PHY\n");
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
		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;

583
	phy_attached_info(phydev);
L
Linus Torvalds 已提交
584 585 586 587 588 589 590

	return 0;
}


/*
 * Buffer allocation/deallocation routines. The buffer descriptor returned
591
 * has the virtual and dma address of a buffer suitable for
L
Linus Torvalds 已提交
592 593
 * both, receive and transmit operations.
 */
F
Florian Fainelli 已提交
594
static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
L
Linus Torvalds 已提交
595
{
F
Florian Fainelli 已提交
596
	struct db_dest *pDB;
L
Linus Torvalds 已提交
597 598
	pDB = aup->pDBfree;

F
Florian Fainelli 已提交
599
	if (pDB)
L
Linus Torvalds 已提交
600
		aup->pDBfree = pDB->pnext;
F
Florian Fainelli 已提交
601

L
Linus Torvalds 已提交
602 603 604
	return pDB;
}

F
Florian Fainelli 已提交
605
void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
L
Linus Torvalds 已提交
606
{
F
Florian Fainelli 已提交
607
	struct db_dest *pDBfree = aup->pDBfree;
L
Linus Torvalds 已提交
608 609 610 611 612
	if (pDBfree)
		pDBfree->pnext = pDB;
	aup->pDBfree = pDB;
}

613
static void au1000_reset_mac_unlocked(struct net_device *dev)
614
{
615
	struct au1000_private *const aup = netdev_priv(dev);
616 617
	int i;

618
	au1000_hard_stop(dev);
619

620
	writel(MAC_EN_CLOCK_ENABLE, aup->enable);
621 622
	wmb(); /* drain writebuffer */
	mdelay(2);
623
	writel(0, aup->enable);
624 625
	wmb(); /* drain writebuffer */
	mdelay(2);
626

L
Linus Torvalds 已提交
627 628 629 630 631 632 633 634 635
	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;
	}
636 637 638

	aup->mac_enabled = 0;

L
Linus Torvalds 已提交
639 640
}

641
static void au1000_reset_mac(struct net_device *dev)
642
{
643
	struct au1000_private *const aup = netdev_priv(dev);
644 645
	unsigned long flags;

646 647
	netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
					(unsigned)aup);
648 649 650

	spin_lock_irqsave(&aup->lock, flags);

F
Florian Fainelli 已提交
651
	au1000_reset_mac_unlocked(dev);
652 653 654

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

656
/*
L
Linus Torvalds 已提交
657 658 659 660
 * 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.
 */
661
static void
662
au1000_setup_hw_rings(struct au1000_private *aup, void __iomem *tx_base)
L
Linus Torvalds 已提交
663 664 665 666
{
	int i;

	for (i = 0; i < NUM_RX_DMA; i++) {
667 668
		aup->rx_dma_ring[i] = (struct rx_dma *)
			(tx_base + 0x100 + sizeof(struct rx_dma) * i);
L
Linus Torvalds 已提交
669 670
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
671 672
		aup->tx_dma_ring[i] = (struct tx_dma *)
			(tx_base + sizeof(struct tx_dma) * i);
L
Linus Torvalds 已提交
673 674 675
	}
}

676 677 678
/*
 * ethtool operations
 */
L
Linus Torvalds 已提交
679

680
static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
L
Linus Torvalds 已提交
681
{
682
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
683

684 685
	if (aup->phy_dev)
		return phy_ethtool_gset(aup->phy_dev, cmd);
L
Linus Torvalds 已提交
686

687
	return -EINVAL;
L
Linus Torvalds 已提交
688 689
}

690
static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
L
Linus Torvalds 已提交
691
{
692
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
693

694 695
	if (!capable(CAP_NET_ADMIN))
		return -EPERM;
L
Linus Torvalds 已提交
696

697 698
	if (aup->phy_dev)
		return phy_ethtool_sset(aup->phy_dev, cmd);
L
Linus Torvalds 已提交
699

700
	return -EINVAL;
L
Linus Torvalds 已提交
701 702 703 704 705
}

static void
au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
706
	struct au1000_private *aup = netdev_priv(dev);
L
Linus Torvalds 已提交
707

708 709 710 711
	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
	snprintf(info->bus_info, sizeof(info->bus_info), "%s %d", DRV_NAME,
		 aup->mac_id);
L
Linus Torvalds 已提交
712 713
}

714 715 716 717 718 719 720 721 722 723 724 725
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;
}

726
static const struct ethtool_ops au1000_ethtool_ops = {
L
Linus Torvalds 已提交
727 728 729
	.get_settings = au1000_get_settings,
	.set_settings = au1000_set_settings,
	.get_drvinfo = au1000_get_drvinfo,
730
	.get_link = ethtool_op_get_link,
731 732
	.get_msglevel = au1000_get_msglevel,
	.set_msglevel = au1000_set_msglevel,
L
Linus Torvalds 已提交
733 734
};

F
Florian Fainelli 已提交
735 736 737 738 739 740 741 742 743 744 745

/*
 * 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 已提交
746
{
F
Florian Fainelli 已提交
747 748 749 750
	struct au1000_private *aup = netdev_priv(dev);
	unsigned long flags;
	int i;
	u32 control;
751

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

F
Florian Fainelli 已提交
754
	/* bring the device out of reset */
755
	au1000_enable_mac(dev, 1);
756

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

759
	writel(0, &aup->mac->control);
F
Florian Fainelli 已提交
760 761 762
	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 已提交
763

764 765 766 767 768
	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 已提交
769

770

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

774
	wmb(); /* drain writebuffer */
L
Linus Torvalds 已提交
775

F
Florian Fainelli 已提交
776 777 778 779 780 781 782 783 784 785 786
	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 已提交
787 788
	}

789 790
	writel(control, &aup->mac->control);
	writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
791
	wmb(); /* drain writebuffer */
L
Linus Torvalds 已提交
792

F
Florian Fainelli 已提交
793 794 795
	spin_unlock_irqrestore(&aup->lock, flags);
	return 0;
}
L
Linus Torvalds 已提交
796

797
static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
F
Florian Fainelli 已提交
798 799
{
	struct net_device_stats *ps = &dev->stats;
L
Linus Torvalds 已提交
800

F
Florian Fainelli 已提交
801 802 803
	ps->rx_packets++;
	if (status & RX_MCAST_FRAME)
		ps->multicast++;
L
Linus Torvalds 已提交
804

F
Florian Fainelli 已提交
805 806 807 808
	if (status & RX_ERROR) {
		ps->rx_errors++;
		if (status & RX_MISSED_FRAME)
			ps->rx_missed_errors++;
809
		if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
F
Florian Fainelli 已提交
810 811 812 813 814
			ps->rx_length_errors++;
		if (status & RX_CRC_ERROR)
			ps->rx_crc_errors++;
		if (status & RX_COLL)
			ps->collisions++;
815
	} else
F
Florian Fainelli 已提交
816
		ps->rx_bytes += status & RX_FRAME_LEN_MASK;
817

L
Linus Torvalds 已提交
818 819
}

820
/*
F
Florian Fainelli 已提交
821
 * Au1000 receive routine.
L
Linus Torvalds 已提交
822
 */
F
Florian Fainelli 已提交
823
static int au1000_rx(struct net_device *dev)
L
Linus Torvalds 已提交
824
{
825
	struct au1000_private *aup = netdev_priv(dev);
F
Florian Fainelli 已提交
826
	struct sk_buff *skb;
827
	struct rx_dma *prxd;
F
Florian Fainelli 已提交
828
	u32 buff_stat, status;
F
Florian Fainelli 已提交
829
	struct db_dest *pDB;
F
Florian Fainelli 已提交
830
	u32	frmlen;
L
Linus Torvalds 已提交
831

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

F
Florian Fainelli 已提交
834 835 836 837 838
	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];
839
		au1000_update_rx_stats(dev, status);
F
Florian Fainelli 已提交
840
		if (!(status & RX_ERROR))  {
L
Linus Torvalds 已提交
841

F
Florian Fainelli 已提交
842 843 844
			/* good frame */
			frmlen = (status & RX_FRAME_LEN_MASK);
			frmlen -= 4; /* Remove FCS */
845
			skb = netdev_alloc_skb(dev, frmlen + 2);
F
Florian Fainelli 已提交
846 847 848 849 850 851 852 853 854 855
			if (skb == NULL) {
				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 */
856
		} else {
F
Florian Fainelli 已提交
857
			if (au1000_debug > 4) {
858
				pr_err("rx_error(s):");
F
Florian Fainelli 已提交
859
				if (status & RX_MISSED_FRAME)
860
					pr_cont(" miss");
F
Florian Fainelli 已提交
861
				if (status & RX_WDOG_TIMER)
862
					pr_cont(" wdog");
F
Florian Fainelli 已提交
863
				if (status & RX_RUNT)
864
					pr_cont(" runt");
F
Florian Fainelli 已提交
865
				if (status & RX_OVERLEN)
866
					pr_cont(" overlen");
F
Florian Fainelli 已提交
867
				if (status & RX_COLL)
868
					pr_cont(" coll");
F
Florian Fainelli 已提交
869
				if (status & RX_MII_ERROR)
870
					pr_cont(" mii error");
F
Florian Fainelli 已提交
871
				if (status & RX_CRC_ERROR)
872
					pr_cont(" crc error");
F
Florian Fainelli 已提交
873
				if (status & RX_LEN_ERROR)
874
					pr_cont(" len error");
F
Florian Fainelli 已提交
875
				if (status & RX_U_CNTRL_FRAME)
876 877
					pr_cont(" u control frame");
				pr_cont("\n");
F
Florian Fainelli 已提交
878 879 880 881
			}
		}
		prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
		aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
882
		wmb(); /* drain writebuffer */
L
Linus Torvalds 已提交
883

F
Florian Fainelli 已提交
884 885 886
		/* next descriptor */
		prxd = aup->rx_dma_ring[aup->rx_head];
		buff_stat = prxd->buff_stat;
L
Linus Torvalds 已提交
887 888 889 890
	}
	return 0;
}

891
static void au1000_update_tx_stats(struct net_device *dev, u32 status)
L
Linus Torvalds 已提交
892
{
893
	struct au1000_private *aup = netdev_priv(dev);
F
Florian Fainelli 已提交
894
	struct net_device_stats *ps = &dev->stats;
895

F
Florian Fainelli 已提交
896 897 898 899
	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
900 901
				 * in half duplex mode
				 */
F
Florian Fainelli 已提交
902 903 904
				ps->tx_errors++;
				ps->tx_aborted_errors++;
			}
905
		} else {
F
Florian Fainelli 已提交
906 907 908 909 910 911 912
			ps->tx_errors++;
			ps->tx_aborted_errors++;
			if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
				ps->tx_carrier_errors++;
		}
	}
}
913

F
Florian Fainelli 已提交
914 915 916 917 918 919 920 921
/*
 * 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);
922
	struct tx_dma *ptxd;
923

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

F
Florian Fainelli 已提交
926
	while (ptxd->buff_stat & TX_T_DONE) {
927
		au1000_update_tx_stats(dev, ptxd->status);
F
Florian Fainelli 已提交
928 929
		ptxd->buff_stat &= ~TX_T_DONE;
		ptxd->len = 0;
930
		wmb(); /* drain writebuffer */
931

F
Florian Fainelli 已提交
932 933
		aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
		ptxd = aup->tx_dma_ring[aup->tx_tail];
934

F
Florian Fainelli 已提交
935 936 937 938
		if (aup->tx_full) {
			aup->tx_full = 0;
			netif_wake_queue(dev);
		}
L
Linus Torvalds 已提交
939
	}
F
Florian Fainelli 已提交
940
}
L
Linus Torvalds 已提交
941

F
Florian Fainelli 已提交
942 943 944 945 946 947
/*
 * Au1000 interrupt service routine.
 */
static irqreturn_t au1000_interrupt(int irq, void *dev_id)
{
	struct net_device *dev = dev_id;
L
Linus Torvalds 已提交
948

F
Florian Fainelli 已提交
949 950 951 952 953
	/* Handle RX interrupts first to minimize chance of overrun */

	au1000_rx(dev);
	au1000_tx_ack(dev);
	return IRQ_RETVAL(1);
L
Linus Torvalds 已提交
954 955 956 957 958
}

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

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

963 964 965
	retval = request_irq(dev->irq, au1000_interrupt, 0,
					dev->name, dev);
	if (retval) {
966
		netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
967 968 969
		return retval;
	}

970 971
	retval = au1000_init(dev);
	if (retval) {
972
		netdev_err(dev, "error in au1000_init\n");
L
Linus Torvalds 已提交
973 974 975 976
		free_irq(dev->irq, dev);
		return retval;
	}

977 978 979 980
	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 已提交
981 982
	}

983
	netif_start_queue(dev);
L
Linus Torvalds 已提交
984

985
	netif_dbg(aup, drv, dev, "open: Initialization done.\n");
L
Linus Torvalds 已提交
986 987 988 989 990 991

	return 0;
}

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

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

997 998
	if (aup->phy_dev)
		phy_stop(aup->phy_dev);
L
Linus Torvalds 已提交
999 1000

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

F
Florian Fainelli 已提交
1002
	au1000_reset_mac_unlocked(dev);
1003

L
Linus Torvalds 已提交
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
	/* 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.
 */
1017
static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
1018
{
1019
	struct au1000_private *aup = netdev_priv(dev);
1020
	struct net_device_stats *ps = &dev->stats;
1021
	struct tx_dma *ptxd;
L
Linus Torvalds 已提交
1022
	u32 buff_stat;
F
Florian Fainelli 已提交
1023
	struct db_dest *pDB;
L
Linus Torvalds 已提交
1024 1025
	int i;

1026 1027
	netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
				(unsigned)aup, skb->len,
L
Linus Torvalds 已提交
1028 1029 1030 1031 1032 1033 1034 1035
				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;
1036
		return NETDEV_TX_BUSY;
1037
	} else if (buff_stat & TX_T_DONE) {
1038
		au1000_update_tx_stats(dev, ptxd->status);
L
Linus Torvalds 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047
		ptxd->len = 0;
	}

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

	pDB = aup->tx_db_inuse[aup->tx_head];
1048
	skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
L
Linus Torvalds 已提交
1049
	if (skb->len < ETH_ZLEN) {
F
Florian Fainelli 已提交
1050
		for (i = skb->len; i < ETH_ZLEN; i++)
L
Linus Torvalds 已提交
1051
			((char *)pDB->vaddr)[i] = 0;
F
Florian Fainelli 已提交
1052

L
Linus Torvalds 已提交
1053
		ptxd->len = ETH_ZLEN;
1054
	} else
F
Florian Fainelli 已提交
1055
		ptxd->len = skb->len;
L
Linus Torvalds 已提交
1056

F
Florian Fainelli 已提交
1057 1058
	ps->tx_packets++;
	ps->tx_bytes += ptxd->len;
L
Linus Torvalds 已提交
1059

F
Florian Fainelli 已提交
1060
	ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
1061
	wmb(); /* drain writebuffer */
F
Florian Fainelli 已提交
1062 1063
	dev_kfree_skb(skb);
	aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
1064
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1065 1066 1067 1068 1069 1070 1071 1072
}

/*
 * 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)
{
1073
	netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
1074
	au1000_reset_mac(dev);
L
Linus Torvalds 已提交
1075
	au1000_init(dev);
1076
	netif_trans_update(dev); /* prevent tx timeout */
L
Linus Torvalds 已提交
1077 1078 1079
	netif_wake_queue(dev);
}

1080
static void au1000_multicast_list(struct net_device *dev)
L
Linus Torvalds 已提交
1081
{
1082
	struct au1000_private *aup = netdev_priv(dev);
1083
	u32 reg;
L
Linus Torvalds 已提交
1084

1085
	netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
1086
	reg = readl(&aup->mac->control);
L
Linus Torvalds 已提交
1087
	if (dev->flags & IFF_PROMISC) {			/* Set promiscuous. */
1088
		reg |= MAC_PROMISCUOUS;
L
Linus Torvalds 已提交
1089
	} else if ((dev->flags & IFF_ALLMULTI)  ||
1090
			   netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
1091 1092
		reg |= MAC_PASS_ALL_MULTI;
		reg &= ~MAC_PROMISCUOUS;
1093
		netdev_info(dev, "Pass all multicast\n");
L
Linus Torvalds 已提交
1094
	} else {
1095
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
1096 1097 1098
		u32 mc_filter[2];	/* Multicast hash filter */

		mc_filter[1] = mc_filter[0] = 0;
1099 1100
		netdev_for_each_mc_addr(ha, dev)
			set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
L
Linus Torvalds 已提交
1101
					(long *)mc_filter);
1102 1103 1104 1105
		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 已提交
1106
	}
1107
	writel(reg, &aup->mac->control);
L
Linus Torvalds 已提交
1108 1109 1110 1111
}

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

1114 1115
	if (!netif_running(dev))
		return -EINVAL;
L
Linus Torvalds 已提交
1116

1117 1118
	if (!aup->phy_dev)
		return -EINVAL; /* PHY not controllable */
L
Linus Torvalds 已提交
1119

1120
	return phy_mii_ioctl(aup->phy_dev, rq, cmd);
L
Linus Torvalds 已提交
1121 1122
}

1123 1124 1125 1126
static const struct net_device_ops au1000_netdev_ops = {
	.ndo_open		= au1000_open,
	.ndo_stop		= au1000_close,
	.ndo_start_xmit		= au1000_tx,
1127
	.ndo_set_rx_mode	= au1000_multicast_list,
1128 1129 1130 1131 1132 1133 1134
	.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,
};

B
Bill Pemberton 已提交
1135
static int au1000_probe(struct platform_device *pdev)
F
Florian Fainelli 已提交
1136 1137
{
	struct au1000_private *aup = NULL;
1138
	struct au1000_eth_platform_data *pd;
F
Florian Fainelli 已提交
1139
	struct net_device *dev = NULL;
F
Florian Fainelli 已提交
1140
	struct db_dest *pDB, *pDBfree;
1141
	int irq, i, err = 0;
1142
	struct resource *base, *macen, *macdma;
F
Florian Fainelli 已提交
1143

1144 1145
	base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!base) {
1146
		dev_err(&pdev->dev, "failed to retrieve base register\n");
1147 1148 1149
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1150

1151 1152
	macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (!macen) {
1153
		dev_err(&pdev->dev, "failed to retrieve MAC Enable register\n");
1154 1155 1156
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1157

1158 1159
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
1160
		dev_err(&pdev->dev, "failed to retrieve IRQ\n");
1161 1162 1163
		err = -ENODEV;
		goto out;
	}
F
Florian Fainelli 已提交
1164

1165 1166 1167 1168 1169 1170 1171
	macdma = platform_get_resource(pdev, IORESOURCE_MEM, 2);
	if (!macdma) {
		dev_err(&pdev->dev, "failed to retrieve MACDMA registers\n");
		err = -ENODEV;
		goto out;
	}

1172 1173
	if (!request_mem_region(base->start, resource_size(base),
							pdev->name)) {
1174
		dev_err(&pdev->dev, "failed to request memory region for base registers\n");
1175 1176 1177 1178
		err = -ENXIO;
		goto out;
	}

1179 1180
	if (!request_mem_region(macen->start, resource_size(macen),
							pdev->name)) {
1181
		dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
1182 1183 1184
		err = -ENXIO;
		goto err_request;
	}
F
Florian Fainelli 已提交
1185

1186 1187 1188 1189 1190 1191 1192
	if (!request_mem_region(macdma->start, resource_size(macdma),
							pdev->name)) {
		dev_err(&pdev->dev, "failed to request MACDMA memory region\n");
		err = -ENXIO;
		goto err_macdma;
	}

F
Florian Fainelli 已提交
1193 1194
	dev = alloc_etherdev(sizeof(struct au1000_private));
	if (!dev) {
1195 1196
		err = -ENOMEM;
		goto err_alloc;
F
Florian Fainelli 已提交
1197 1198
	}

1199 1200
	SET_NETDEV_DEV(dev, &pdev->dev);
	platform_set_drvdata(pdev, dev);
F
Florian Fainelli 已提交
1201 1202 1203
	aup = netdev_priv(dev);

	spin_lock_init(&aup->lock);
1204 1205
	aup->msg_enable = (au1000_debug < 4 ?
				AU1000_DEF_MSG_ENABLE : au1000_debug);
F
Florian Fainelli 已提交
1206

1207 1208 1209
	/* Allocate the data buffers
	 * Snooping works fine with eth on all au1xxx
	 */
F
Florian Fainelli 已提交
1210 1211 1212 1213
	aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
						(NUM_TX_BUFFS + NUM_RX_BUFFS),
						&aup->dma_addr,	0);
	if (!aup->vaddr) {
1214
		dev_err(&pdev->dev, "failed to allocate data buffers\n");
1215 1216
		err = -ENOMEM;
		goto err_vaddr;
F
Florian Fainelli 已提交
1217 1218 1219
	}

	/* aup->mac is the base address of the MAC's registers */
1220
	aup->mac = (struct mac_reg *)
1221
			ioremap_nocache(base->start, resource_size(base));
1222
	if (!aup->mac) {
1223
		dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
1224 1225 1226
		err = -ENXIO;
		goto err_remap1;
	}
F
Florian Fainelli 已提交
1227

F
Florian Fainelli 已提交
1228
	/* Setup some variables for quick register address access */
1229
	aup->enable = (u32 *)ioremap_nocache(macen->start,
1230
						resource_size(macen));
1231
	if (!aup->enable) {
1232
		dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
1233 1234 1235 1236
		err = -ENXIO;
		goto err_remap2;
	}
	aup->mac_id = pdev->id;
F
Florian Fainelli 已提交
1237

1238 1239 1240 1241 1242 1243 1244 1245
	aup->macdma = ioremap_nocache(macdma->start, resource_size(macdma));
	if (!aup->macdma) {
		dev_err(&pdev->dev, "failed to ioremap MACDMA registers\n");
		err = -ENXIO;
		goto err_remap3;
	}

	au1000_setup_hw_rings(aup, aup->macdma);
F
Florian Fainelli 已提交
1246

1247
	writel(0, aup->enable);
F
Florian Fainelli 已提交
1248 1249
	aup->mac_enabled = 0;

1250
	pd = dev_get_platdata(&pdev->dev);
1251
	if (!pd) {
1252 1253
		dev_info(&pdev->dev, "no platform_data passed,"
					" PHY search on MAC0\n");
1254 1255
		aup->phy1_search_mac0 = 1;
	} else {
1256
		if (is_valid_ether_addr(pd->mac)) {
1257
			memcpy(dev->dev_addr, pd->mac, ETH_ALEN);
1258 1259 1260 1261
		} else {
			/* Set a random MAC since no valid provided by platform_data. */
			eth_hw_addr_random(dev);
		}
1262

1263 1264 1265 1266 1267 1268 1269 1270
		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;
	}

1271
	if (aup->phy_busid > 0) {
1272
		dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
1273 1274 1275 1276
		err = -ENODEV;
		goto err_mdiobus_alloc;
	}

F
Florian Fainelli 已提交
1277
	aup->mii_bus = mdiobus_alloc();
1278
	if (aup->mii_bus == NULL) {
1279
		dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
1280 1281 1282
		err = -ENOMEM;
		goto err_mdiobus_alloc;
	}
F
Florian Fainelli 已提交
1283 1284 1285 1286 1287 1288

	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";
1289 1290
	snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
		pdev->name, aup->mac_id);
1291

F
Florian Fainelli 已提交
1292
	/* if known, set corresponding PHY IRQs */
1293 1294 1295 1296 1297 1298
	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) {
1299
		dev_err(&pdev->dev, "failed to register MDIO bus\n");
1300 1301
		goto err_mdiobus_reg;
	}
F
Florian Fainelli 已提交
1302

1303 1304
	err = au1000_mii_probe(dev);
	if (err != 0)
F
Florian Fainelli 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
		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;

1319
	err = -ENODEV;
F
Florian Fainelli 已提交
1320
	for (i = 0; i < NUM_RX_DMA; i++) {
1321
		pDB = au1000_GetFreeDB(aup);
F
Florian Fainelli 已提交
1322
		if (!pDB)
F
Florian Fainelli 已提交
1323
			goto err_out;
F
Florian Fainelli 已提交
1324

F
Florian Fainelli 已提交
1325 1326 1327
		aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
		aup->rx_db_inuse[i] = pDB;
	}
1328 1329

	err = -ENODEV;
F
Florian Fainelli 已提交
1330
	for (i = 0; i < NUM_TX_DMA; i++) {
1331
		pDB = au1000_GetFreeDB(aup);
F
Florian Fainelli 已提交
1332
		if (!pDB)
F
Florian Fainelli 已提交
1333
			goto err_out;
F
Florian Fainelli 已提交
1334

F
Florian Fainelli 已提交
1335 1336 1337 1338 1339
		aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
		aup->tx_dma_ring[i]->len = 0;
		aup->tx_db_inuse[i] = pDB;
	}

1340 1341 1342
	dev->base_addr = base->start;
	dev->irq = irq;
	dev->netdev_ops = &au1000_netdev_ops;
1343
	dev->ethtool_ops = &au1000_ethtool_ops;
1344 1345
	dev->watchdog_timeo = ETH_TX_TIMEOUT;

F
Florian Fainelli 已提交
1346 1347 1348 1349
	/*
	 * The boot code uses the ethernet controller, so reset it to start
	 * fresh.  au1000_init() expects that the device is in reset state.
	 */
1350
	au1000_reset_mac(dev);
F
Florian Fainelli 已提交
1351

1352 1353
	err = register_netdev(dev);
	if (err) {
1354
		netdev_err(dev, "Cannot register net device, aborting.\n");
1355 1356 1357
		goto err_out;
	}

1358 1359
	netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
			(unsigned long)base->start, irq);
1360 1361

	pr_info_once("%s version %s %s\n", DRV_NAME, DRV_VERSION, DRV_AUTHOR);
1362 1363

	return 0;
F
Florian Fainelli 已提交
1364 1365

err_out:
1366
	if (aup->mii_bus != NULL)
F
Florian Fainelli 已提交
1367 1368 1369
		mdiobus_unregister(aup->mii_bus);

	/* here we should have a valid dev plus aup-> register addresses
1370 1371
	 * so we can reset the mac properly.
	 */
1372
	au1000_reset_mac(dev);
F
Florian Fainelli 已提交
1373 1374 1375

	for (i = 0; i < NUM_RX_DMA; i++) {
		if (aup->rx_db_inuse[i])
1376
			au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
F
Florian Fainelli 已提交
1377 1378 1379
	}
	for (i = 0; i < NUM_TX_DMA; i++) {
		if (aup->tx_db_inuse[i])
1380
			au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
F
Florian Fainelli 已提交
1381
	}
1382 1383 1384
err_mdiobus_reg:
	mdiobus_free(aup->mii_bus);
err_mdiobus_alloc:
1385 1386
	iounmap(aup->macdma);
err_remap3:
1387 1388 1389 1390
	iounmap(aup->enable);
err_remap2:
	iounmap(aup->mac);
err_remap1:
F
Florian Fainelli 已提交
1391 1392
	dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
			     (void *)aup->vaddr, aup->dma_addr);
1393
err_vaddr:
F
Florian Fainelli 已提交
1394
	free_netdev(dev);
1395
err_alloc:
1396 1397
	release_mem_region(macdma->start, resource_size(macdma));
err_macdma:
1398 1399 1400 1401 1402
	release_mem_region(macen->start, resource_size(macen));
err_request:
	release_mem_region(base->start, resource_size(base));
out:
	return err;
F
Florian Fainelli 已提交
1403 1404
}

B
Bill Pemberton 已提交
1405
static int au1000_remove(struct platform_device *pdev)
F
Florian Fainelli 已提交
1406
{
1407 1408 1409 1410
	struct net_device *dev = platform_get_drvdata(pdev);
	struct au1000_private *aup = netdev_priv(dev);
	int i;
	struct resource *base, *macen;
F
Florian Fainelli 已提交
1411

1412 1413 1414 1415 1416 1417
	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])
1418
			au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
1419 1420 1421

	for (i = 0; i < NUM_TX_DMA; i++)
		if (aup->tx_db_inuse[i])
1422
			au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
1423 1424 1425 1426 1427

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

1428
	iounmap(aup->macdma);
1429 1430 1431
	iounmap(aup->mac);
	iounmap(aup->enable);

1432 1433 1434
	base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
	release_mem_region(base->start, resource_size(base));

1435 1436 1437 1438 1439 1440 1441
	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 已提交
1442 1443 1444 1445

	return 0;
}

1446 1447
static struct platform_driver au1000_eth_driver = {
	.probe  = au1000_probe,
B
Bill Pemberton 已提交
1448
	.remove = au1000_remove,
1449 1450 1451 1452 1453
	.driver = {
		.name   = "au1000-eth",
	},
};

1454
module_platform_driver(au1000_eth_driver);
F
Florian Fainelli 已提交
1455

1456
MODULE_ALIAS("platform:au1000-eth");