at91_ether.c 16.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Ethernet driver for the Atmel AT91RM9200 (Thunder)
 *
 *  Copyright (C) 2003 SAN People (Pty) Ltd
 *
 * Based on an earlier Atmel EMAC macrocell driver by Atmel and Lineo Inc.
 * Initial version by Rick Bronson 01/11/2003
 *
 * Intel LXT971A PHY support by Christopher Bahns & David Knickerbocker
 *   (Polaroid Corporation)
 *
 * Realtek RTL8201(B)L PHY support by Roman Avramenko <roman@imsystems.ru>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/init.h>
22
#include <linux/interrupt.h>
23 24 25 26 27
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/dma-mapping.h>
#include <linux/ethtool.h>
28
#include <linux/platform_data/macb.h>
29 30
#include <linux/platform_device.h>
#include <linux/clk.h>
31
#include <linux/gfp.h>
32
#include <linux/phy.h>
33 34 35 36 37

#include <asm/io.h>
#include <asm/uaccess.h>
#include <asm/mach-types.h>

38
#include "macb.h"
39 40 41 42

#define DRV_NAME	"at91_ether"
#define DRV_VERSION	"1.0"

43 44 45 46 47
/* 1518 rounded up */
#define MAX_RBUFF_SZ	0x600
/* max number of receive buffers */
#define MAX_RX_DESCR	9

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
/* ......................... ADDRESS MANAGEMENT ........................ */

/*
 * NOTE: Your bootloader must always set the MAC address correctly before
 * booting into Linux.
 *
 * - It must always set the MAC address after reset, even if it doesn't
 *   happen to access the Ethernet while it's booting.  Some versions of
 *   U-Boot on the AT91RM9200-DK do not do this.
 *
 * - Likewise it must store the addresses in the correct byte order.
 *   MicroMonitor (uMon) on the CSB337 does this incorrectly (and
 *   continues to do so, for bug-compatibility).
 */

static short __init unpack_mac_address(struct net_device *dev, unsigned int hi, unsigned int lo)
{
	char addr[6];

	if (machine_is_csb337()) {
		addr[5] = (lo & 0xff);			/* The CSB337 bootloader stores the MAC the wrong-way around */
		addr[4] = (lo & 0xff00) >> 8;
		addr[3] = (lo & 0xff0000) >> 16;
		addr[2] = (lo & 0xff000000) >> 24;
		addr[1] = (hi & 0xff);
		addr[0] = (hi & 0xff00) >> 8;
	}
	else {
		addr[0] = (lo & 0xff);
		addr[1] = (lo & 0xff00) >> 8;
		addr[2] = (lo & 0xff0000) >> 16;
		addr[3] = (lo & 0xff000000) >> 24;
		addr[4] = (hi & 0xff);
		addr[5] = (hi & 0xff00) >> 8;
	}

	if (is_valid_ether_addr(addr)) {
		memcpy(dev->dev_addr, &addr, 6);
		return 1;
	}
	return 0;
}

/*
 * Set the ethernet MAC address in dev->dev_addr
 */
static void __init get_mac_address(struct net_device *dev)
{
96
	struct macb *lp = netdev_priv(dev);
97

98
	/* Check Specific-Address 1 */
99
	if (unpack_mac_address(dev, macb_readl(lp, SA1T), macb_readl(lp, SA1B)))
100 101
		return;
	/* Check Specific-Address 2 */
102
	if (unpack_mac_address(dev, macb_readl(lp, SA2T), macb_readl(lp, SA2B)))
103 104
		return;
	/* Check Specific-Address 3 */
105
	if (unpack_mac_address(dev, macb_readl(lp, SA3T), macb_readl(lp, SA3B)))
106 107
		return;
	/* Check Specific-Address 4 */
108
	if (unpack_mac_address(dev, macb_readl(lp, SA4T), macb_readl(lp, SA4B)))
109 110 111 112 113 114 115 116 117 118
		return;

	printk(KERN_ERR "at91_ether: Your bootloader did not configure a MAC address.\n");
}

/*
 * Program the hardware MAC address from dev->dev_addr.
 */
static void update_mac_address(struct net_device *dev)
{
119
	struct macb *lp = netdev_priv(dev);
120

121
	macb_writel(lp, SA1B, (dev->dev_addr[3] << 24) | (dev->dev_addr[2] << 16)
122
					| (dev->dev_addr[1] << 8) | (dev->dev_addr[0]));
123
	macb_writel(lp, SA1T, (dev->dev_addr[5] << 8) | (dev->dev_addr[4]));
124

125 126
	macb_writel(lp, SA2B, 0);
	macb_writel(lp, SA2T, 0);
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
}

/*
 * Store the new hardware address in dev->dev_addr, and update the MAC.
 */
static int set_mac_address(struct net_device *dev, void* addr)
{
	struct sockaddr *address = addr;

	if (!is_valid_ether_addr(address->sa_data))
		return -EADDRNOTAVAIL;

	memcpy(dev->dev_addr, address->sa_data, dev->addr_len);
	update_mac_address(dev);

J
Johannes Berg 已提交
142 143
	printk("%s: Setting MAC address to %pM\n", dev->name,
	       dev->dev_addr);
144 145 146 147 148 149 150 151 152

	return 0;
}

/* ................................ MAC ................................ */

/*
 * Initialize and start the Receiver and Transmit subsystems
 */
153
static int at91ether_start(struct net_device *dev)
154
{
155
	struct macb *lp = netdev_priv(dev);
156
	unsigned long ctl;
157 158 159 160 161 162 163 164 165 166
	dma_addr_t addr;
	int i;

	lp->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
					MAX_RX_DESCR * sizeof(struct dma_desc),
					&lp->rx_ring_dma, GFP_KERNEL);
	if (!lp->rx_ring) {
		netdev_err(lp->dev, "unable to alloc rx ring DMA buffer\n");
		return -ENOMEM;
	}
167

168 169 170 171 172
	lp->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
					MAX_RX_DESCR * MAX_RBUFF_SZ,
					&lp->rx_buffers_dma, GFP_KERNEL);
	if (!lp->rx_buffers) {
		netdev_err(lp->dev, "unable to alloc rx data DMA buffer\n");
173

174 175 176 177 178 179 180 181
		dma_free_coherent(&lp->pdev->dev,
					MAX_RX_DESCR * sizeof(struct dma_desc),
					lp->rx_ring, lp->rx_ring_dma);
		lp->rx_ring = NULL;
		return -ENOMEM;
	}

	addr = lp->rx_buffers_dma;
182
	for (i = 0; i < MAX_RX_DESCR; i++) {
183 184 185
		lp->rx_ring[i].addr = addr;
		lp->rx_ring[i].ctrl = 0;
		addr += MAX_RBUFF_SZ;
186 187 188
	}

	/* Set the Wrap bit on the last descriptor */
189
	lp->rx_ring[MAX_RX_DESCR - 1].addr |= MACB_BIT(RX_WRAP);
190 191

	/* Reset buffer index */
192
	lp->rx_tail = 0;
193 194

	/* Program address of descriptor list in Rx Buffer Queue register */
195
	macb_writel(lp, RBQP, lp->rx_ring_dma);
196 197

	/* Enable Receive and Transmit */
198 199
	ctl = macb_readl(lp, NCR);
	macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
200 201

	return 0;
202 203 204 205 206 207 208
}

/*
 * Open the ethernet interface
 */
static int at91ether_open(struct net_device *dev)
{
209
	struct macb *lp = netdev_priv(dev);
210
	unsigned long ctl;
211
	int ret;
212

213 214
	if (!is_valid_ether_addr(dev->dev_addr))
		return -EADDRNOTAVAIL;
215 216

	/* Clear internal statistics */
217 218
	ctl = macb_readl(lp, NCR);
	macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
219 220 221 222

	/* Update the MAC address (incase user has changed it) */
	update_mac_address(dev);

223 224 225 226
	ret = at91ether_start(dev);
	if (ret)
		return ret;

227
	/* Enable MAC interrupts */
228
	macb_writel(lp, IER, MACB_BIT(RCOMP) | MACB_BIT(RXUBR)
229 230
				| MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE) | MACB_BIT(TCOMP)
				| MACB_BIT(ISR_ROVR) | MACB_BIT(HRESP));
231

232 233 234
	/* schedule a link state check */
	phy_start(lp->phy_dev);

235
	netif_start_queue(dev);
236

237 238 239 240 241 242 243 244
	return 0;
}

/*
 * Close the interface
 */
static int at91ether_close(struct net_device *dev)
{
245
	struct macb *lp = netdev_priv(dev);
246 247 248
	unsigned long ctl;

	/* Disable Receiver and Transmitter */
249 250
	ctl = macb_readl(lp, NCR);
	macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
251 252

	/* Disable MAC interrupts */
253
	macb_writel(lp, IDR, MACB_BIT(RCOMP) | MACB_BIT(RXUBR)
254 255 256
				| MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)
				| MACB_BIT(TCOMP) | MACB_BIT(ISR_ROVR)
				| MACB_BIT(HRESP));
257 258 259

	netif_stop_queue(dev);

260 261 262 263 264 265 266 267 268 269
	dma_free_coherent(&lp->pdev->dev,
				MAX_RX_DESCR * sizeof(struct dma_desc),
				lp->rx_ring, lp->rx_ring_dma);
	lp->rx_ring = NULL;

	dma_free_coherent(&lp->pdev->dev,
				MAX_RX_DESCR * MAX_RBUFF_SZ,
				lp->rx_buffers, lp->rx_buffers_dma);
	lp->rx_buffers = NULL;

270 271 272 273 274 275
	return 0;
}

/*
 * Transmit packet.
 */
276
static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
277
{
278
	struct macb *lp = netdev_priv(dev);
279

280
	if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
281 282 283 284 285 286
		netif_stop_queue(dev);

		/* Store packet information (to free when Tx completed) */
		lp->skb = skb;
		lp->skb_length = skb->len;
		lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len, DMA_TO_DEVICE);
287
		dev->stats.tx_bytes += skb->len;
288 289

		/* Set address of the data in the Transmit Address register */
290
		macb_writel(lp, TAR, lp->skb_physaddr);
291
		/* Set length of the packet in the Transmit Control register */
292
		macb_writel(lp, TCR, skb->len);
293 294

	} else {
295
		printk(KERN_ERR "at91_ether.c: at91ether_start_xmit() called, but device is busy!\n");
296
		return NETDEV_TX_BUSY;	/* if we return anything but zero, dev.c:1055 calls kfree_skb(skb)
297 298 299 300
				on this skb, he also reports -ENETDOWN and printk's, so either
				we free and return(0) or don't free and return 1 */
	}

301
	return NETDEV_TX_OK;
302 303 304 305 306 307 308
}

/*
 * Update the current statistics from the internal statistics registers.
 */
static struct net_device_stats *at91ether_stats(struct net_device *dev)
{
309
	struct macb *lp = netdev_priv(dev);
310 311 312
	int ale, lenerr, seqe, lcol, ecol;

	if (netif_running(dev)) {
313 314
		dev->stats.rx_packets += macb_readl(lp, FRO);	/* Good frames received */
		ale = macb_readl(lp, ALE);
315
		dev->stats.rx_frame_errors += ale;				/* Alignment errors */
316
		lenerr = macb_readl(lp, ELE) + macb_readl(lp, USF);
317
		dev->stats.rx_length_errors += lenerr;				/* Excessive Length or Undersize Frame error */
318
		seqe = macb_readl(lp, FCSE);
319
		dev->stats.rx_crc_errors += seqe;				/* CRC error */
320
		dev->stats.rx_fifo_errors += macb_readl(lp, RRE);/* Receive buffer not available */
321
		dev->stats.rx_errors += (ale + lenerr + seqe
322
			+ macb_readl(lp, RSE) + macb_readl(lp, RJA));
323

324 325 326 327
		dev->stats.tx_packets += macb_readl(lp, FTO);	/* Frames successfully transmitted */
		dev->stats.tx_fifo_errors += macb_readl(lp, TUND);	/* Transmit FIFO underruns */
		dev->stats.tx_carrier_errors += macb_readl(lp, CSE);	/* Carrier Sense errors */
		dev->stats.tx_heartbeat_errors += macb_readl(lp, STE);/* Heartbeat error */
328

329 330
		lcol = macb_readl(lp, LCOL);
		ecol = macb_readl(lp, EXCOL);
331 332
		dev->stats.tx_window_errors += lcol;			/* Late collisions */
		dev->stats.tx_aborted_errors += ecol;			/* 16 collisions */
333

334
		dev->stats.collisions += (macb_readl(lp, SCF) + macb_readl(lp, MCF) + lcol + ecol);
335
	}
336
	return &dev->stats;
337 338 339 340 341 342 343 344
}

/*
 * Extract received frame from buffer descriptors and sent to upper layers.
 * (Called from interrupt context)
 */
static void at91ether_rx(struct net_device *dev)
{
345
	struct macb *lp = netdev_priv(dev);
346 347 348 349
	unsigned char *p_recv;
	struct sk_buff *skb;
	unsigned int pktlen;

350 351 352
	while (lp->rx_ring[lp->rx_tail].addr & MACB_BIT(RX_USED)) {
		p_recv = lp->rx_buffers + lp->rx_tail * MAX_RBUFF_SZ;
		pktlen = MACB_BF(RX_FRMLEN, lp->rx_ring[lp->rx_tail].ctrl);
353
		skb = netdev_alloc_skb(dev, pktlen + 2);
354
		if (skb) {
355 356 357 358
			skb_reserve(skb, 2);
			memcpy(skb_put(skb, pktlen), p_recv, pktlen);

			skb->protocol = eth_type_trans(skb, dev);
359
			dev->stats.rx_bytes += pktlen;
360
			netif_rx(skb);
361
		} else {
362
			dev->stats.rx_dropped += 1;
363
			netdev_notice(dev, "Memory squeeze, dropping packet.\n");
364 365
		}

366
		if (lp->rx_ring[lp->rx_tail].ctrl & MACB_BIT(RX_MHASH_MATCH))
367
			dev->stats.multicast++;
368

369 370 371 372 373 374
		/* reset ownership bit */
		lp->rx_ring[lp->rx_tail].addr &= ~MACB_BIT(RX_USED);

		/* wrap after last buffer */
		if (lp->rx_tail == MAX_RX_DESCR - 1)
			lp->rx_tail = 0;
375
		else
376
			lp->rx_tail++;
377 378 379 380 381 382
	}
}

/*
 * MAC interrupt handler
 */
383
static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
384 385
{
	struct net_device *dev = (struct net_device *) dev_id;
386
	struct macb *lp = netdev_priv(dev);
387 388 389 390
	unsigned long intstatus, ctl;

	/* MAC Interrupt Status register indicates what interrupts are pending.
	   It is automatically cleared once read. */
391
	intstatus = macb_readl(lp, ISR);
392

393
	if (intstatus & MACB_BIT(RCOMP))		/* Receive complete */
394 395
		at91ether_rx(dev);

396
	if (intstatus & MACB_BIT(TCOMP)) {	/* Transmit complete */
397
		/* The TCOM bit is set even if the transmission failed. */
398
		if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
399
			dev->stats.tx_errors += 1;
400 401 402 403 404 405 406 407 408 409

		if (lp->skb) {
			dev_kfree_skb_irq(lp->skb);
			lp->skb = NULL;
			dma_unmap_single(NULL, lp->skb_physaddr, lp->skb_length, DMA_TO_DEVICE);
		}
		netif_wake_queue(dev);
	}

	/* Work-around for Errata #11 */
410
	if (intstatus & MACB_BIT(RXUBR)) {
411 412 413
		ctl = macb_readl(lp, NCR);
		macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
		macb_writel(lp, NCR, ctl | MACB_BIT(RE));
414 415
	}

416
	if (intstatus & MACB_BIT(ISR_ROVR))
417 418 419 420 421
		printk("%s: ROVR error\n", dev->name);

	return IRQ_HANDLED;
}

422 423 424 425 426 427 428 429 430 431 432
#ifdef CONFIG_NET_POLL_CONTROLLER
static void at91ether_poll_controller(struct net_device *dev)
{
	unsigned long flags;

	local_irq_save(flags);
	at91ether_interrupt(dev->irq, dev);
	local_irq_restore(flags);
}
#endif

433 434 435 436 437
static const struct net_device_ops at91ether_netdev_ops = {
	.ndo_open		= at91ether_open,
	.ndo_stop		= at91ether_close,
	.ndo_start_xmit		= at91ether_start_xmit,
	.ndo_get_stats		= at91ether_stats,
438
	.ndo_set_rx_mode	= macb_set_rx_mode,
439
	.ndo_set_mac_address	= set_mac_address,
440
	.ndo_do_ioctl		= macb_ioctl,
441 442 443 444 445 446 447
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_change_mtu		= eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= at91ether_poll_controller,
#endif
};

448 449 450 451
/*
 * Detect MAC & PHY and perform ethernet interface initialization
 */
static int __init at91ether_probe(struct platform_device *pdev)
452
{
453
	struct macb_platform_data *board_data = pdev->dev.platform_data;
454
	struct resource *regs;
455
	struct net_device *dev;
456
	struct phy_device *phydev;
457
	struct macb *lp;
458 459
	int res;

460 461 462 463
	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!regs)
		return -ENOENT;

464
	dev = alloc_etherdev(sizeof(struct macb));
465 466 467
	if (!dev)
		return -ENOMEM;

468
	lp = netdev_priv(dev);
469 470
	lp->pdev = pdev;
	lp->dev = dev;
471 472 473 474
	lp->board_data = *board_data;
	spin_lock_init(&lp->lock);

	dev->base_addr = regs->start;		/* physical base address */
475 476
	lp->regs = ioremap(regs->start, regs->end - regs->start + 1);
	if (!lp->regs) {
477 478 479 480 481
		res = -ENOMEM;
		goto err_free_dev;
	}

	/* Clock */
482 483 484
	lp->pclk = clk_get(&pdev->dev, "ether_clk");
	if (IS_ERR(lp->pclk)) {
		res = PTR_ERR(lp->pclk);
485 486
		goto err_ioumap;
	}
487
	clk_enable(lp->pclk);
488 489

	/* Install the interrupt handler */
490
	dev->irq = platform_get_irq(pdev, 0);
491
	if (request_irq(dev->irq, at91ether_interrupt, 0, dev->name, dev)) {
492 493
		res = -EBUSY;
		goto err_disable_clock;
494 495 496
	}

	ether_setup(dev);
497
	dev->netdev_ops = &at91ether_netdev_ops;
498
	dev->ethtool_ops = &macb_ethtool_ops;
499
	platform_set_drvdata(pdev, dev);
500 501 502 503 504
	SET_NETDEV_DEV(dev, &pdev->dev);

	get_mac_address(dev);		/* Get ethernet address and store it in dev->dev_addr */
	update_mac_address(dev);	/* Program ethernet address into MAC */

505
	macb_writel(lp, NCR, 0);
506

507
	if (board_data->is_rmii) {
508
		macb_writel(lp, NCFGR, MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG) | MACB_BIT(RM9200_RMII));
509 510
		lp->phy_interface = PHY_INTERFACE_MODE_RMII;
	} else {
511
		macb_writel(lp, NCFGR, MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG));
512
		lp->phy_interface = PHY_INTERFACE_MODE_MII;
513
	}
514

515 516
	/* Register the network interface */
	res = register_netdev(dev);
517
	if (res)
518
		goto err_free_irq;
519

520 521 522
	if (macb_mii_init(lp) != 0)
		goto err_out_unregister_netdev;

523 524
	netif_carrier_off(dev);		/* will be enabled in open() */

525 526 527
	phydev = lp->phy_dev;
	netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
		phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
528

529
	/* Display ethernet banner */
J
Johannes Berg 已提交
530
	printk(KERN_INFO "%s: AT91 ethernet at 0x%08x int=%d %s%s (%pM)\n",
531
	       dev->name, (uint) dev->base_addr, dev->irq,
532 533
	       macb_readl(lp, NCFGR) & MACB_BIT(SPD) ? "100-" : "10-",
	       macb_readl(lp, NCFGR) & MACB_BIT(FD) ? "FullDuplex" : "HalfDuplex",
J
Johannes Berg 已提交
534
	       dev->dev_addr);
535

536
	return 0;
537

538 539
err_out_unregister_netdev:
	unregister_netdev(dev);
540
err_free_irq:
541
	platform_set_drvdata(pdev, NULL);
542 543
	free_irq(dev->irq, dev);
err_disable_clock:
544 545
	clk_disable(lp->pclk);
	clk_put(lp->pclk);
546
err_ioumap:
547
	iounmap(lp->regs);
548 549 550
err_free_dev:
	free_netdev(dev);
	return res;
551 552 553 554
}

static int __devexit at91ether_remove(struct platform_device *pdev)
{
555
	struct net_device *dev = platform_get_drvdata(pdev);
556
	struct macb *lp = netdev_priv(dev);
557

558 559
	if (lp->phy_dev)
		phy_disconnect(lp->phy_dev);
560

561 562 563
	mdiobus_unregister(lp->mii_bus);
	kfree(lp->mii_bus->irq);
	mdiobus_free(lp->mii_bus);
564 565
	unregister_netdev(dev);
	free_irq(dev->irq, dev);
566 567
	iounmap(lp->regs);
	clk_disable(lp->pclk);
568
	clk_put(lp->pclk);
569
	free_netdev(dev);
570 571
	platform_set_drvdata(pdev, NULL);

572 573 574
	return 0;
}

575 576 577 578 579
#ifdef CONFIG_PM

static int at91ether_suspend(struct platform_device *pdev, pm_message_t mesg)
{
	struct net_device *net_dev = platform_get_drvdata(pdev);
580
	struct macb *lp = netdev_priv(net_dev);
581 582 583 584 585

	if (netif_running(net_dev)) {
		netif_stop_queue(net_dev);
		netif_device_detach(net_dev);

586
		clk_disable(lp->pclk);
587 588 589 590 591 592 593
	}
	return 0;
}

static int at91ether_resume(struct platform_device *pdev)
{
	struct net_device *net_dev = platform_get_drvdata(pdev);
594
	struct macb *lp = netdev_priv(net_dev);
595 596

	if (netif_running(net_dev)) {
597
		clk_enable(lp->pclk);
598 599 600 601 602 603 604 605 606 607 608 609

		netif_device_attach(net_dev);
		netif_start_queue(net_dev);
	}
	return 0;
}

#else
#define at91ether_suspend	NULL
#define at91ether_resume	NULL
#endif

610 611
static struct platform_driver at91ether_driver = {
	.remove		= __devexit_p(at91ether_remove),
612 613
	.suspend	= at91ether_suspend,
	.resume		= at91ether_resume,
614 615 616 617 618 619 620 621
	.driver		= {
		.name	= DRV_NAME,
		.owner	= THIS_MODULE,
	},
};

static int __init at91ether_init(void)
{
622
	return platform_driver_probe(&at91ether_driver, at91ether_probe);
623 624 625 626 627 628 629 630 631 632 633 634 635
}

static void __exit at91ether_exit(void)
{
	platform_driver_unregister(&at91ether_driver);
}

module_init(at91ether_init)
module_exit(at91ether_exit)

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("AT91RM9200 EMAC Ethernet driver");
MODULE_AUTHOR("Andrew Victor");
636
MODULE_ALIAS("platform:" DRV_NAME);