net: remove interrupt.h inclusion from netdevice.h
[linux-2.6-block.git] / drivers / net / macb.c
CommitLineData
89e5785f
HS
1/*
2 * Atmel MACB Ethernet Controller driver
3 *
4 * Copyright (C) 2004-2006 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/clk.h>
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/kernel.h>
15#include <linux/types.h>
16#include <linux/slab.h>
17#include <linux/init.h>
a6b7a407 18#include <linux/interrupt.h>
89e5785f
HS
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
89e5785f 21#include <linux/dma-mapping.h>
89e5785f 22#include <linux/platform_device.h>
6c36a707 23#include <linux/phy.h>
89e5785f 24
a09e64fb
RK
25#include <mach/board.h>
26#include <mach/cpu.h>
89e5785f
HS
27
28#include "macb.h"
29
89e5785f
HS
30#define RX_BUFFER_SIZE 128
31#define RX_RING_SIZE 512
32#define RX_RING_BYTES (sizeof(struct dma_desc) * RX_RING_SIZE)
33
34/* Make the IP header word-aligned (the ethernet header is 14 bytes) */
35#define RX_OFFSET 2
36
37#define TX_RING_SIZE 128
38#define DEF_TX_RING_PENDING (TX_RING_SIZE - 1)
39#define TX_RING_BYTES (sizeof(struct dma_desc) * TX_RING_SIZE)
40
41#define TX_RING_GAP(bp) \
42 (TX_RING_SIZE - (bp)->tx_pending)
43#define TX_BUFFS_AVAIL(bp) \
44 (((bp)->tx_tail <= (bp)->tx_head) ? \
45 (bp)->tx_tail + (bp)->tx_pending - (bp)->tx_head : \
46 (bp)->tx_tail - (bp)->tx_head - TX_RING_GAP(bp))
47#define NEXT_TX(n) (((n) + 1) & (TX_RING_SIZE - 1))
48
49#define NEXT_RX(n) (((n) + 1) & (RX_RING_SIZE - 1))
50
51/* minimum number of free TX descriptors before waking up TX process */
52#define MACB_TX_WAKEUP_THRESH (TX_RING_SIZE / 4)
53
54#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
55 | MACB_BIT(ISR_ROVR))
56
57static void __macb_set_hwaddr(struct macb *bp)
58{
59 u32 bottom;
60 u16 top;
61
62 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
63 macb_writel(bp, SA1B, bottom);
64 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
65 macb_writel(bp, SA1T, top);
66}
67
68static void __init macb_get_hwaddr(struct macb *bp)
69{
70 u32 bottom;
71 u16 top;
72 u8 addr[6];
73
74 bottom = macb_readl(bp, SA1B);
75 top = macb_readl(bp, SA1T);
76
77 addr[0] = bottom & 0xff;
78 addr[1] = (bottom >> 8) & 0xff;
79 addr[2] = (bottom >> 16) & 0xff;
80 addr[3] = (bottom >> 24) & 0xff;
81 addr[4] = top & 0xff;
82 addr[5] = (top >> 8) & 0xff;
83
d1d5741d 84 if (is_valid_ether_addr(addr)) {
89e5785f 85 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
d1d5741d
SS
86 } else {
87 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
88 random_ether_addr(bp->dev->dev_addr);
89 }
89e5785f
HS
90}
91
6c36a707 92static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
89e5785f 93{
6c36a707 94 struct macb *bp = bus->priv;
89e5785f
HS
95 int value;
96
89e5785f
HS
97 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
98 | MACB_BF(RW, MACB_MAN_READ)
6c36a707
R
99 | MACB_BF(PHYA, mii_id)
100 | MACB_BF(REGA, regnum)
89e5785f
HS
101 | MACB_BF(CODE, MACB_MAN_CODE)));
102
6c36a707
R
103 /* wait for end of transfer */
104 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
105 cpu_relax();
89e5785f
HS
106
107 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
89e5785f
HS
108
109 return value;
110}
111
6c36a707
R
112static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
113 u16 value)
89e5785f 114{
6c36a707 115 struct macb *bp = bus->priv;
89e5785f
HS
116
117 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
118 | MACB_BF(RW, MACB_MAN_WRITE)
6c36a707
R
119 | MACB_BF(PHYA, mii_id)
120 | MACB_BF(REGA, regnum)
89e5785f 121 | MACB_BF(CODE, MACB_MAN_CODE)
6c36a707 122 | MACB_BF(DATA, value)));
89e5785f 123
6c36a707
R
124 /* wait for end of transfer */
125 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
126 cpu_relax();
127
128 return 0;
129}
89e5785f 130
6c36a707
R
131static int macb_mdio_reset(struct mii_bus *bus)
132{
133 return 0;
89e5785f
HS
134}
135
6c36a707 136static void macb_handle_link_change(struct net_device *dev)
89e5785f 137{
6c36a707
R
138 struct macb *bp = netdev_priv(dev);
139 struct phy_device *phydev = bp->phy_dev;
140 unsigned long flags;
89e5785f 141
6c36a707 142 int status_change = 0;
89e5785f 143
6c36a707
R
144 spin_lock_irqsave(&bp->lock, flags);
145
146 if (phydev->link) {
147 if ((bp->speed != phydev->speed) ||
148 (bp->duplex != phydev->duplex)) {
149 u32 reg;
150
151 reg = macb_readl(bp, NCFGR);
152 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
153
154 if (phydev->duplex)
155 reg |= MACB_BIT(FD);
179956f4 156 if (phydev->speed == SPEED_100)
6c36a707
R
157 reg |= MACB_BIT(SPD);
158
159 macb_writel(bp, NCFGR, reg);
160
161 bp->speed = phydev->speed;
162 bp->duplex = phydev->duplex;
163 status_change = 1;
164 }
89e5785f
HS
165 }
166
6c36a707 167 if (phydev->link != bp->link) {
c8f15686 168 if (!phydev->link) {
6c36a707
R
169 bp->speed = 0;
170 bp->duplex = -1;
171 }
172 bp->link = phydev->link;
89e5785f 173
6c36a707
R
174 status_change = 1;
175 }
89e5785f 176
6c36a707
R
177 spin_unlock_irqrestore(&bp->lock, flags);
178
179 if (status_change) {
180 if (phydev->link)
181 printk(KERN_INFO "%s: link up (%d/%s)\n",
182 dev->name, phydev->speed,
183 DUPLEX_FULL == phydev->duplex ? "Full":"Half");
184 else
185 printk(KERN_INFO "%s: link down\n", dev->name);
186 }
89e5785f
HS
187}
188
6c36a707
R
189/* based on au1000_eth. c*/
190static int macb_mii_probe(struct net_device *dev)
89e5785f 191{
6c36a707 192 struct macb *bp = netdev_priv(dev);
7455a76f 193 struct phy_device *phydev;
6c36a707 194 struct eth_platform_data *pdata;
7455a76f 195 int ret;
6c36a707 196
7455a76f 197 phydev = phy_find_first(bp->mii_bus);
6c36a707
R
198 if (!phydev) {
199 printk (KERN_ERR "%s: no PHY found\n", dev->name);
200 return -1;
201 }
202
203 pdata = bp->pdev->dev.platform_data;
204 /* TODO : add pin_irq */
205
206 /* attach the mac to the phy */
7455a76f
JP
207 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change, 0,
208 pdata && pdata->is_rmii ?
209 PHY_INTERFACE_MODE_RMII :
210 PHY_INTERFACE_MODE_MII);
211 if (ret) {
6c36a707 212 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
7455a76f 213 return ret;
6c36a707
R
214 }
215
216 /* mask with MAC supported features */
217 phydev->supported &= PHY_BASIC_FEATURES;
218
219 phydev->advertising = phydev->supported;
220
221 bp->link = 0;
222 bp->speed = 0;
223 bp->duplex = -1;
224 bp->phy_dev = phydev;
225
226 return 0;
89e5785f
HS
227}
228
6c36a707 229static int macb_mii_init(struct macb *bp)
89e5785f 230{
6c36a707
R
231 struct eth_platform_data *pdata;
232 int err = -ENXIO, i;
89e5785f 233
3dbda77e 234 /* Enable management port */
6c36a707 235 macb_writel(bp, NCR, MACB_BIT(MPE));
89e5785f 236
298cf9be
LB
237 bp->mii_bus = mdiobus_alloc();
238 if (bp->mii_bus == NULL) {
239 err = -ENOMEM;
240 goto err_out;
241 }
242
243 bp->mii_bus->name = "MACB_mii_bus";
244 bp->mii_bus->read = &macb_mdio_read;
245 bp->mii_bus->write = &macb_mdio_write;
246 bp->mii_bus->reset = &macb_mdio_reset;
247 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%x", bp->pdev->id);
248 bp->mii_bus->priv = bp;
249 bp->mii_bus->parent = &bp->dev->dev;
6c36a707 250 pdata = bp->pdev->dev.platform_data;
89e5785f 251
6c36a707 252 if (pdata)
298cf9be 253 bp->mii_bus->phy_mask = pdata->phy_mask;
89e5785f 254
298cf9be
LB
255 bp->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
256 if (!bp->mii_bus->irq) {
6c36a707 257 err = -ENOMEM;
298cf9be 258 goto err_out_free_mdiobus;
89e5785f
HS
259 }
260
6c36a707 261 for (i = 0; i < PHY_MAX_ADDR; i++)
298cf9be 262 bp->mii_bus->irq[i] = PHY_POLL;
89e5785f 263
91523947 264 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
89e5785f 265
298cf9be 266 if (mdiobus_register(bp->mii_bus))
6c36a707 267 goto err_out_free_mdio_irq;
89e5785f 268
6c36a707
R
269 if (macb_mii_probe(bp->dev) != 0) {
270 goto err_out_unregister_bus;
271 }
89e5785f 272
6c36a707 273 return 0;
89e5785f 274
6c36a707 275err_out_unregister_bus:
298cf9be 276 mdiobus_unregister(bp->mii_bus);
6c36a707 277err_out_free_mdio_irq:
298cf9be
LB
278 kfree(bp->mii_bus->irq);
279err_out_free_mdiobus:
280 mdiobus_free(bp->mii_bus);
6c36a707
R
281err_out:
282 return err;
89e5785f
HS
283}
284
285static void macb_update_stats(struct macb *bp)
286{
287 u32 __iomem *reg = bp->regs + MACB_PFR;
288 u32 *p = &bp->hw_stats.rx_pause_frames;
289 u32 *end = &bp->hw_stats.tx_pause_frames + 1;
290
291 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
292
293 for(; p < end; p++, reg++)
0f0d84e5 294 *p += __raw_readl(reg);
89e5785f
HS
295}
296
89e5785f
HS
297static void macb_tx(struct macb *bp)
298{
299 unsigned int tail;
300 unsigned int head;
301 u32 status;
302
303 status = macb_readl(bp, TSR);
304 macb_writel(bp, TSR, status);
305
306 dev_dbg(&bp->pdev->dev, "macb_tx status = %02lx\n",
307 (unsigned long)status);
308
ee33c585 309 if (status & (MACB_BIT(UND) | MACB_BIT(TSR_RLE))) {
bdcba151 310 int i;
ee33c585
EW
311 printk(KERN_ERR "%s: TX %s, resetting buffers\n",
312 bp->dev->name, status & MACB_BIT(UND) ?
313 "underrun" : "retry limit exceeded");
bdcba151 314
39eddb4c
RR
315 /* Transfer ongoing, disable transmitter, to avoid confusion */
316 if (status & MACB_BIT(TGO))
317 macb_writel(bp, NCR, macb_readl(bp, NCR) & ~MACB_BIT(TE));
318
bdcba151
GC
319 head = bp->tx_head;
320
321 /*Mark all the buffer as used to avoid sending a lost buffer*/
322 for (i = 0; i < TX_RING_SIZE; i++)
323 bp->tx_ring[i].ctrl = MACB_BIT(TX_USED);
324
325 /* free transmit buffer in upper layer*/
326 for (tail = bp->tx_tail; tail != head; tail = NEXT_TX(tail)) {
327 struct ring_info *rp = &bp->tx_skb[tail];
328 struct sk_buff *skb = rp->skb;
329
330 BUG_ON(skb == NULL);
331
332 rmb();
333
334 dma_unmap_single(&bp->pdev->dev, rp->mapping, skb->len,
335 DMA_TO_DEVICE);
336 rp->skb = NULL;
337 dev_kfree_skb_irq(skb);
338 }
339
89e5785f 340 bp->tx_head = bp->tx_tail = 0;
39eddb4c
RR
341
342 /* Enable the transmitter again */
343 if (status & MACB_BIT(TGO))
344 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TE));
89e5785f
HS
345 }
346
347 if (!(status & MACB_BIT(COMP)))
348 /*
349 * This may happen when a buffer becomes complete
350 * between reading the ISR and scanning the
351 * descriptors. Nothing to worry about.
352 */
353 return;
354
355 head = bp->tx_head;
356 for (tail = bp->tx_tail; tail != head; tail = NEXT_TX(tail)) {
357 struct ring_info *rp = &bp->tx_skb[tail];
358 struct sk_buff *skb = rp->skb;
359 u32 bufstat;
360
361 BUG_ON(skb == NULL);
362
363 rmb();
364 bufstat = bp->tx_ring[tail].ctrl;
365
366 if (!(bufstat & MACB_BIT(TX_USED)))
367 break;
368
369 dev_dbg(&bp->pdev->dev, "skb %u (data %p) TX complete\n",
370 tail, skb->data);
371 dma_unmap_single(&bp->pdev->dev, rp->mapping, skb->len,
372 DMA_TO_DEVICE);
373 bp->stats.tx_packets++;
374 bp->stats.tx_bytes += skb->len;
375 rp->skb = NULL;
376 dev_kfree_skb_irq(skb);
377 }
378
379 bp->tx_tail = tail;
380 if (netif_queue_stopped(bp->dev) &&
381 TX_BUFFS_AVAIL(bp) > MACB_TX_WAKEUP_THRESH)
382 netif_wake_queue(bp->dev);
383}
384
385static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
386 unsigned int last_frag)
387{
388 unsigned int len;
389 unsigned int frag;
390 unsigned int offset = 0;
391 struct sk_buff *skb;
392
393 len = MACB_BFEXT(RX_FRMLEN, bp->rx_ring[last_frag].ctrl);
394
395 dev_dbg(&bp->pdev->dev, "macb_rx_frame frags %u - %u (len %u)\n",
396 first_frag, last_frag, len);
397
398 skb = dev_alloc_skb(len + RX_OFFSET);
399 if (!skb) {
400 bp->stats.rx_dropped++;
401 for (frag = first_frag; ; frag = NEXT_RX(frag)) {
402 bp->rx_ring[frag].addr &= ~MACB_BIT(RX_USED);
403 if (frag == last_frag)
404 break;
405 }
406 wmb();
407 return 1;
408 }
409
410 skb_reserve(skb, RX_OFFSET);
bc8acf2c 411 skb_checksum_none_assert(skb);
89e5785f
HS
412 skb_put(skb, len);
413
414 for (frag = first_frag; ; frag = NEXT_RX(frag)) {
415 unsigned int frag_len = RX_BUFFER_SIZE;
416
417 if (offset + frag_len > len) {
418 BUG_ON(frag != last_frag);
419 frag_len = len - offset;
420 }
27d7ff46
ACM
421 skb_copy_to_linear_data_offset(skb, offset,
422 (bp->rx_buffers +
423 (RX_BUFFER_SIZE * frag)),
424 frag_len);
89e5785f
HS
425 offset += RX_BUFFER_SIZE;
426 bp->rx_ring[frag].addr &= ~MACB_BIT(RX_USED);
427 wmb();
428
429 if (frag == last_frag)
430 break;
431 }
432
433 skb->protocol = eth_type_trans(skb, bp->dev);
434
435 bp->stats.rx_packets++;
436 bp->stats.rx_bytes += len;
89e5785f
HS
437 dev_dbg(&bp->pdev->dev, "received skb of length %u, csum: %08x\n",
438 skb->len, skb->csum);
439 netif_receive_skb(skb);
440
441 return 0;
442}
443
444/* Mark DMA descriptors from begin up to and not including end as unused */
445static void discard_partial_frame(struct macb *bp, unsigned int begin,
446 unsigned int end)
447{
448 unsigned int frag;
449
450 for (frag = begin; frag != end; frag = NEXT_RX(frag))
451 bp->rx_ring[frag].addr &= ~MACB_BIT(RX_USED);
452 wmb();
453
454 /*
455 * When this happens, the hardware stats registers for
456 * whatever caused this is updated, so we don't have to record
457 * anything.
458 */
459}
460
461static int macb_rx(struct macb *bp, int budget)
462{
463 int received = 0;
464 unsigned int tail = bp->rx_tail;
465 int first_frag = -1;
466
467 for (; budget > 0; tail = NEXT_RX(tail)) {
468 u32 addr, ctrl;
469
470 rmb();
471 addr = bp->rx_ring[tail].addr;
472 ctrl = bp->rx_ring[tail].ctrl;
473
474 if (!(addr & MACB_BIT(RX_USED)))
475 break;
476
477 if (ctrl & MACB_BIT(RX_SOF)) {
478 if (first_frag != -1)
479 discard_partial_frame(bp, first_frag, tail);
480 first_frag = tail;
481 }
482
483 if (ctrl & MACB_BIT(RX_EOF)) {
484 int dropped;
485 BUG_ON(first_frag == -1);
486
487 dropped = macb_rx_frame(bp, first_frag, tail);
488 first_frag = -1;
489 if (!dropped) {
490 received++;
491 budget--;
492 }
493 }
494 }
495
496 if (first_frag != -1)
497 bp->rx_tail = first_frag;
498 else
499 bp->rx_tail = tail;
500
501 return received;
502}
503
bea3348e 504static int macb_poll(struct napi_struct *napi, int budget)
89e5785f 505{
bea3348e 506 struct macb *bp = container_of(napi, struct macb, napi);
bea3348e 507 int work_done;
89e5785f
HS
508 u32 status;
509
510 status = macb_readl(bp, RSR);
511 macb_writel(bp, RSR, status);
512
bea3348e 513 work_done = 0;
89e5785f
HS
514
515 dev_dbg(&bp->pdev->dev, "poll: status = %08lx, budget = %d\n",
bea3348e 516 (unsigned long)status, budget);
89e5785f 517
bea3348e 518 work_done = macb_rx(bp, budget);
b336369c 519 if (work_done < budget) {
288379f0 520 napi_complete(napi);
89e5785f 521
b336369c
JH
522 /*
523 * We've done what we can to clean the buffers. Make sure we
524 * get notified when new packets arrive.
525 */
526 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
527 }
89e5785f
HS
528
529 /* TODO: Handle errors */
530
bea3348e 531 return work_done;
89e5785f
HS
532}
533
534static irqreturn_t macb_interrupt(int irq, void *dev_id)
535{
536 struct net_device *dev = dev_id;
537 struct macb *bp = netdev_priv(dev);
538 u32 status;
539
540 status = macb_readl(bp, ISR);
541
542 if (unlikely(!status))
543 return IRQ_NONE;
544
545 spin_lock(&bp->lock);
546
547 while (status) {
89e5785f
HS
548 /* close possible race with dev_close */
549 if (unlikely(!netif_running(dev))) {
550 macb_writel(bp, IDR, ~0UL);
551 break;
552 }
553
554 if (status & MACB_RX_INT_FLAGS) {
b336369c
JH
555 /*
556 * There's no point taking any more interrupts
557 * until we have processed the buffers. The
558 * scheduling call may fail if the poll routine
559 * is already scheduled, so disable interrupts
560 * now.
561 */
562 macb_writel(bp, IDR, MACB_RX_INT_FLAGS);
563
288379f0 564 if (napi_schedule_prep(&bp->napi)) {
6c36a707
R
565 dev_dbg(&bp->pdev->dev,
566 "scheduling RX softirq\n");
288379f0 567 __napi_schedule(&bp->napi);
89e5785f
HS
568 }
569 }
570
ee33c585
EW
571 if (status & (MACB_BIT(TCOMP) | MACB_BIT(ISR_TUND) |
572 MACB_BIT(ISR_RLE)))
89e5785f
HS
573 macb_tx(bp);
574
575 /*
576 * Link change detection isn't possible with RMII, so we'll
577 * add that if/when we get our hands on a full-blown MII PHY.
578 */
579
b19f7f71
AS
580 if (status & MACB_BIT(ISR_ROVR)) {
581 /* We missed at least one packet */
582 bp->hw_stats.rx_overruns++;
583 }
584
89e5785f
HS
585 if (status & MACB_BIT(HRESP)) {
586 /*
587 * TODO: Reset the hardware, and maybe move the printk
588 * to a lower-priority context as well (work queue?)
589 */
590 printk(KERN_ERR "%s: DMA bus error: HRESP not OK\n",
591 dev->name);
592 }
593
594 status = macb_readl(bp, ISR);
595 }
596
597 spin_unlock(&bp->lock);
598
599 return IRQ_HANDLED;
600}
601
6e8cf5c0
TP
602#ifdef CONFIG_NET_POLL_CONTROLLER
603/*
604 * Polling receive - used by netconsole and other diagnostic tools
605 * to allow network i/o with interrupts disabled.
606 */
607static void macb_poll_controller(struct net_device *dev)
608{
609 unsigned long flags;
610
611 local_irq_save(flags);
612 macb_interrupt(dev->irq, dev);
613 local_irq_restore(flags);
614}
615#endif
616
89e5785f
HS
617static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
618{
619 struct macb *bp = netdev_priv(dev);
620 dma_addr_t mapping;
621 unsigned int len, entry;
622 u32 ctrl;
4871953c 623 unsigned long flags;
89e5785f
HS
624
625#ifdef DEBUG
626 int i;
627 dev_dbg(&bp->pdev->dev,
628 "start_xmit: len %u head %p data %p tail %p end %p\n",
27a884dc 629 skb->len, skb->head, skb->data,
4305b541 630 skb_tail_pointer(skb), skb_end_pointer(skb));
89e5785f
HS
631 dev_dbg(&bp->pdev->dev,
632 "data:");
633 for (i = 0; i < 16; i++)
634 printk(" %02x", (unsigned int)skb->data[i]);
635 printk("\n");
636#endif
637
638 len = skb->len;
4871953c 639 spin_lock_irqsave(&bp->lock, flags);
89e5785f
HS
640
641 /* This is a hard error, log it. */
642 if (TX_BUFFS_AVAIL(bp) < 1) {
643 netif_stop_queue(dev);
4871953c 644 spin_unlock_irqrestore(&bp->lock, flags);
89e5785f
HS
645 dev_err(&bp->pdev->dev,
646 "BUG! Tx Ring full when queue awake!\n");
647 dev_dbg(&bp->pdev->dev, "tx_head = %u, tx_tail = %u\n",
648 bp->tx_head, bp->tx_tail);
5b548140 649 return NETDEV_TX_BUSY;
89e5785f
HS
650 }
651
652 entry = bp->tx_head;
653 dev_dbg(&bp->pdev->dev, "Allocated ring entry %u\n", entry);
654 mapping = dma_map_single(&bp->pdev->dev, skb->data,
655 len, DMA_TO_DEVICE);
656 bp->tx_skb[entry].skb = skb;
657 bp->tx_skb[entry].mapping = mapping;
658 dev_dbg(&bp->pdev->dev, "Mapped skb data %p to DMA addr %08lx\n",
659 skb->data, (unsigned long)mapping);
660
661 ctrl = MACB_BF(TX_FRMLEN, len);
662 ctrl |= MACB_BIT(TX_LAST);
663 if (entry == (TX_RING_SIZE - 1))
664 ctrl |= MACB_BIT(TX_WRAP);
665
666 bp->tx_ring[entry].addr = mapping;
667 bp->tx_ring[entry].ctrl = ctrl;
668 wmb();
669
670 entry = NEXT_TX(entry);
671 bp->tx_head = entry;
672
673 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
674
675 if (TX_BUFFS_AVAIL(bp) < 1)
676 netif_stop_queue(dev);
677
4871953c 678 spin_unlock_irqrestore(&bp->lock, flags);
89e5785f 679
6ed10654 680 return NETDEV_TX_OK;
89e5785f
HS
681}
682
683static void macb_free_consistent(struct macb *bp)
684{
685 if (bp->tx_skb) {
686 kfree(bp->tx_skb);
687 bp->tx_skb = NULL;
688 }
689 if (bp->rx_ring) {
690 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
691 bp->rx_ring, bp->rx_ring_dma);
692 bp->rx_ring = NULL;
693 }
694 if (bp->tx_ring) {
695 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
696 bp->tx_ring, bp->tx_ring_dma);
697 bp->tx_ring = NULL;
698 }
699 if (bp->rx_buffers) {
700 dma_free_coherent(&bp->pdev->dev,
701 RX_RING_SIZE * RX_BUFFER_SIZE,
702 bp->rx_buffers, bp->rx_buffers_dma);
703 bp->rx_buffers = NULL;
704 }
705}
706
707static int macb_alloc_consistent(struct macb *bp)
708{
709 int size;
710
711 size = TX_RING_SIZE * sizeof(struct ring_info);
712 bp->tx_skb = kmalloc(size, GFP_KERNEL);
713 if (!bp->tx_skb)
714 goto out_err;
715
716 size = RX_RING_BYTES;
717 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
718 &bp->rx_ring_dma, GFP_KERNEL);
719 if (!bp->rx_ring)
720 goto out_err;
721 dev_dbg(&bp->pdev->dev,
722 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
723 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
724
725 size = TX_RING_BYTES;
726 bp->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
727 &bp->tx_ring_dma, GFP_KERNEL);
728 if (!bp->tx_ring)
729 goto out_err;
730 dev_dbg(&bp->pdev->dev,
731 "Allocated TX ring of %d bytes at %08lx (mapped %p)\n",
732 size, (unsigned long)bp->tx_ring_dma, bp->tx_ring);
733
734 size = RX_RING_SIZE * RX_BUFFER_SIZE;
735 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
736 &bp->rx_buffers_dma, GFP_KERNEL);
737 if (!bp->rx_buffers)
738 goto out_err;
739 dev_dbg(&bp->pdev->dev,
740 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
741 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
742
743 return 0;
744
745out_err:
746 macb_free_consistent(bp);
747 return -ENOMEM;
748}
749
750static void macb_init_rings(struct macb *bp)
751{
752 int i;
753 dma_addr_t addr;
754
755 addr = bp->rx_buffers_dma;
756 for (i = 0; i < RX_RING_SIZE; i++) {
757 bp->rx_ring[i].addr = addr;
758 bp->rx_ring[i].ctrl = 0;
759 addr += RX_BUFFER_SIZE;
760 }
761 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
762
763 for (i = 0; i < TX_RING_SIZE; i++) {
764 bp->tx_ring[i].addr = 0;
765 bp->tx_ring[i].ctrl = MACB_BIT(TX_USED);
766 }
767 bp->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
768
769 bp->rx_tail = bp->tx_head = bp->tx_tail = 0;
770}
771
772static void macb_reset_hw(struct macb *bp)
773{
774 /* Make sure we have the write buffer for ourselves */
775 wmb();
776
777 /*
778 * Disable RX and TX (XXX: Should we halt the transmission
779 * more gracefully?)
780 */
781 macb_writel(bp, NCR, 0);
782
783 /* Clear the stats registers (XXX: Update stats first?) */
784 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
785
786 /* Clear all status flags */
787 macb_writel(bp, TSR, ~0UL);
788 macb_writel(bp, RSR, ~0UL);
789
790 /* Disable all interrupts */
791 macb_writel(bp, IDR, ~0UL);
792 macb_readl(bp, ISR);
793}
794
795static void macb_init_hw(struct macb *bp)
796{
797 u32 config;
798
799 macb_reset_hw(bp);
800 __macb_set_hwaddr(bp);
801
802 config = macb_readl(bp, NCFGR) & MACB_BF(CLK, -1L);
803 config |= MACB_BIT(PAE); /* PAuse Enable */
804 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
8dd4bd00 805 config |= MACB_BIT(BIG); /* Receive oversized frames */
89e5785f
HS
806 if (bp->dev->flags & IFF_PROMISC)
807 config |= MACB_BIT(CAF); /* Copy All Frames */
808 if (!(bp->dev->flags & IFF_BROADCAST))
809 config |= MACB_BIT(NBC); /* No BroadCast */
810 macb_writel(bp, NCFGR, config);
811
812 /* Initialize TX and RX buffers */
813 macb_writel(bp, RBQP, bp->rx_ring_dma);
814 macb_writel(bp, TBQP, bp->tx_ring_dma);
815
816 /* Enable TX and RX */
6c36a707 817 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
89e5785f
HS
818
819 /* Enable interrupts */
820 macb_writel(bp, IER, (MACB_BIT(RCOMP)
821 | MACB_BIT(RXUBR)
822 | MACB_BIT(ISR_TUND)
823 | MACB_BIT(ISR_RLE)
824 | MACB_BIT(TXERR)
825 | MACB_BIT(TCOMP)
826 | MACB_BIT(ISR_ROVR)
827 | MACB_BIT(HRESP)));
89e5785f 828
89e5785f
HS
829}
830
446ebd01
PV
831/*
832 * The hash address register is 64 bits long and takes up two
833 * locations in the memory map. The least significant bits are stored
834 * in EMAC_HSL and the most significant bits in EMAC_HSH.
835 *
836 * The unicast hash enable and the multicast hash enable bits in the
837 * network configuration register enable the reception of hash matched
838 * frames. The destination address is reduced to a 6 bit index into
839 * the 64 bit hash register using the following hash function. The
840 * hash function is an exclusive or of every sixth bit of the
841 * destination address.
842 *
843 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
844 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
845 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
846 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
847 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
848 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
849 *
850 * da[0] represents the least significant bit of the first byte
851 * received, that is, the multicast/unicast indicator, and da[47]
852 * represents the most significant bit of the last byte received. If
853 * the hash index, hi[n], points to a bit that is set in the hash
854 * register then the frame will be matched according to whether the
855 * frame is multicast or unicast. A multicast match will be signalled
856 * if the multicast hash enable bit is set, da[0] is 1 and the hash
857 * index points to a bit set in the hash register. A unicast match
858 * will be signalled if the unicast hash enable bit is set, da[0] is 0
859 * and the hash index points to a bit set in the hash register. To
860 * receive all multicast frames, the hash register should be set with
861 * all ones and the multicast hash enable bit should be set in the
862 * network configuration register.
863 */
864
865static inline int hash_bit_value(int bitnr, __u8 *addr)
866{
867 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
868 return 1;
869 return 0;
870}
871
872/*
873 * Return the hash index value for the specified address.
874 */
875static int hash_get_index(__u8 *addr)
876{
877 int i, j, bitval;
878 int hash_index = 0;
879
880 for (j = 0; j < 6; j++) {
881 for (i = 0, bitval = 0; i < 8; i++)
882 bitval ^= hash_bit_value(i*6 + j, addr);
883
884 hash_index |= (bitval << j);
885 }
886
887 return hash_index;
888}
889
890/*
891 * Add multicast addresses to the internal multicast-hash table.
892 */
893static void macb_sethashtable(struct net_device *dev)
894{
22bedad3 895 struct netdev_hw_addr *ha;
446ebd01 896 unsigned long mc_filter[2];
f9dcbcc9 897 unsigned int bitnr;
446ebd01
PV
898 struct macb *bp = netdev_priv(dev);
899
900 mc_filter[0] = mc_filter[1] = 0;
901
22bedad3
JP
902 netdev_for_each_mc_addr(ha, dev) {
903 bitnr = hash_get_index(ha->addr);
446ebd01
PV
904 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
905 }
906
907 macb_writel(bp, HRB, mc_filter[0]);
908 macb_writel(bp, HRT, mc_filter[1]);
909}
910
911/*
912 * Enable/Disable promiscuous and multicast modes.
913 */
914static void macb_set_rx_mode(struct net_device *dev)
915{
916 unsigned long cfg;
917 struct macb *bp = netdev_priv(dev);
918
919 cfg = macb_readl(bp, NCFGR);
920
921 if (dev->flags & IFF_PROMISC)
922 /* Enable promiscuous mode */
923 cfg |= MACB_BIT(CAF);
924 else if (dev->flags & (~IFF_PROMISC))
925 /* Disable promiscuous mode */
926 cfg &= ~MACB_BIT(CAF);
927
928 if (dev->flags & IFF_ALLMULTI) {
929 /* Enable all multicast mode */
930 macb_writel(bp, HRB, -1);
931 macb_writel(bp, HRT, -1);
932 cfg |= MACB_BIT(NCFGR_MTI);
4cd24eaf 933 } else if (!netdev_mc_empty(dev)) {
446ebd01
PV
934 /* Enable specific multicasts */
935 macb_sethashtable(dev);
936 cfg |= MACB_BIT(NCFGR_MTI);
937 } else if (dev->flags & (~IFF_ALLMULTI)) {
938 /* Disable all multicast mode */
939 macb_writel(bp, HRB, 0);
940 macb_writel(bp, HRT, 0);
941 cfg &= ~MACB_BIT(NCFGR_MTI);
942 }
943
944 macb_writel(bp, NCFGR, cfg);
945}
946
89e5785f
HS
947static int macb_open(struct net_device *dev)
948{
949 struct macb *bp = netdev_priv(dev);
950 int err;
951
952 dev_dbg(&bp->pdev->dev, "open\n");
953
6c36a707
R
954 /* if the phy is not yet register, retry later*/
955 if (!bp->phy_dev)
956 return -EAGAIN;
957
89e5785f
HS
958 if (!is_valid_ether_addr(dev->dev_addr))
959 return -EADDRNOTAVAIL;
960
961 err = macb_alloc_consistent(bp);
962 if (err) {
963 printk(KERN_ERR
964 "%s: Unable to allocate DMA memory (error %d)\n",
965 dev->name, err);
966 return err;
967 }
968
bea3348e
SH
969 napi_enable(&bp->napi);
970
89e5785f
HS
971 macb_init_rings(bp);
972 macb_init_hw(bp);
89e5785f 973
6c36a707
R
974 /* schedule a link state check */
975 phy_start(bp->phy_dev);
89e5785f 976
6c36a707 977 netif_start_queue(dev);
89e5785f
HS
978
979 return 0;
980}
981
982static int macb_close(struct net_device *dev)
983{
984 struct macb *bp = netdev_priv(dev);
985 unsigned long flags;
986
89e5785f 987 netif_stop_queue(dev);
bea3348e 988 napi_disable(&bp->napi);
89e5785f 989
6c36a707
R
990 if (bp->phy_dev)
991 phy_stop(bp->phy_dev);
992
89e5785f
HS
993 spin_lock_irqsave(&bp->lock, flags);
994 macb_reset_hw(bp);
995 netif_carrier_off(dev);
996 spin_unlock_irqrestore(&bp->lock, flags);
997
998 macb_free_consistent(bp);
999
1000 return 0;
1001}
1002
1003static struct net_device_stats *macb_get_stats(struct net_device *dev)
1004{
1005 struct macb *bp = netdev_priv(dev);
1006 struct net_device_stats *nstat = &bp->stats;
1007 struct macb_stats *hwstat = &bp->hw_stats;
1008
6c36a707
R
1009 /* read stats from hardware */
1010 macb_update_stats(bp);
1011
89e5785f
HS
1012 /* Convert HW stats into netdevice stats */
1013 nstat->rx_errors = (hwstat->rx_fcs_errors +
1014 hwstat->rx_align_errors +
1015 hwstat->rx_resource_errors +
1016 hwstat->rx_overruns +
1017 hwstat->rx_oversize_pkts +
1018 hwstat->rx_jabbers +
1019 hwstat->rx_undersize_pkts +
1020 hwstat->sqe_test_errors +
1021 hwstat->rx_length_mismatch);
1022 nstat->tx_errors = (hwstat->tx_late_cols +
1023 hwstat->tx_excessive_cols +
1024 hwstat->tx_underruns +
1025 hwstat->tx_carrier_errors);
1026 nstat->collisions = (hwstat->tx_single_cols +
1027 hwstat->tx_multiple_cols +
1028 hwstat->tx_excessive_cols);
1029 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1030 hwstat->rx_jabbers +
1031 hwstat->rx_undersize_pkts +
1032 hwstat->rx_length_mismatch);
b19f7f71
AS
1033 nstat->rx_over_errors = hwstat->rx_resource_errors +
1034 hwstat->rx_overruns;
89e5785f
HS
1035 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
1036 nstat->rx_frame_errors = hwstat->rx_align_errors;
1037 nstat->rx_fifo_errors = hwstat->rx_overruns;
1038 /* XXX: What does "missed" mean? */
1039 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
1040 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
1041 nstat->tx_fifo_errors = hwstat->tx_underruns;
1042 /* Don't know about heartbeat or window errors... */
1043
1044 return nstat;
1045}
1046
1047static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1048{
1049 struct macb *bp = netdev_priv(dev);
6c36a707
R
1050 struct phy_device *phydev = bp->phy_dev;
1051
1052 if (!phydev)
1053 return -ENODEV;
89e5785f 1054
6c36a707 1055 return phy_ethtool_gset(phydev, cmd);
89e5785f
HS
1056}
1057
1058static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1059{
1060 struct macb *bp = netdev_priv(dev);
6c36a707 1061 struct phy_device *phydev = bp->phy_dev;
89e5785f 1062
6c36a707
R
1063 if (!phydev)
1064 return -ENODEV;
1065
1066 return phy_ethtool_sset(phydev, cmd);
89e5785f
HS
1067}
1068
6c36a707
R
1069static void macb_get_drvinfo(struct net_device *dev,
1070 struct ethtool_drvinfo *info)
89e5785f
HS
1071{
1072 struct macb *bp = netdev_priv(dev);
1073
1074 strcpy(info->driver, bp->pdev->dev.driver->name);
1075 strcpy(info->version, "$Revision: 1.14 $");
db1d7bf7 1076 strcpy(info->bus_info, dev_name(&bp->pdev->dev));
89e5785f
HS
1077}
1078
0fc0b732 1079static const struct ethtool_ops macb_ethtool_ops = {
89e5785f
HS
1080 .get_settings = macb_get_settings,
1081 .set_settings = macb_set_settings,
1082 .get_drvinfo = macb_get_drvinfo,
89e5785f
HS
1083 .get_link = ethtool_op_get_link,
1084};
1085
1086static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1087{
1088 struct macb *bp = netdev_priv(dev);
6c36a707 1089 struct phy_device *phydev = bp->phy_dev;
89e5785f
HS
1090
1091 if (!netif_running(dev))
1092 return -EINVAL;
1093
6c36a707
R
1094 if (!phydev)
1095 return -ENODEV;
89e5785f 1096
28b04113 1097 return phy_mii_ioctl(phydev, rq, cmd);
89e5785f
HS
1098}
1099
5f1fa992
AB
1100static const struct net_device_ops macb_netdev_ops = {
1101 .ndo_open = macb_open,
1102 .ndo_stop = macb_close,
1103 .ndo_start_xmit = macb_start_xmit,
1104 .ndo_set_multicast_list = macb_set_rx_mode,
1105 .ndo_get_stats = macb_get_stats,
1106 .ndo_do_ioctl = macb_ioctl,
1107 .ndo_validate_addr = eth_validate_addr,
1108 .ndo_change_mtu = eth_change_mtu,
1109 .ndo_set_mac_address = eth_mac_addr,
6e8cf5c0
TP
1110#ifdef CONFIG_NET_POLL_CONTROLLER
1111 .ndo_poll_controller = macb_poll_controller,
1112#endif
5f1fa992
AB
1113};
1114
06c3fd6a 1115static int __init macb_probe(struct platform_device *pdev)
89e5785f
HS
1116{
1117 struct eth_platform_data *pdata;
1118 struct resource *regs;
1119 struct net_device *dev;
1120 struct macb *bp;
6c36a707 1121 struct phy_device *phydev;
89e5785f
HS
1122 unsigned long pclk_hz;
1123 u32 config;
1124 int err = -ENXIO;
1125
1126 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1127 if (!regs) {
1128 dev_err(&pdev->dev, "no mmio resource defined\n");
1129 goto err_out;
1130 }
1131
1132 err = -ENOMEM;
1133 dev = alloc_etherdev(sizeof(*bp));
1134 if (!dev) {
1135 dev_err(&pdev->dev, "etherdev alloc failed, aborting.\n");
1136 goto err_out;
1137 }
1138
89e5785f
HS
1139 SET_NETDEV_DEV(dev, &pdev->dev);
1140
1141 /* TODO: Actually, we have some interesting features... */
1142 dev->features |= 0;
1143
1144 bp = netdev_priv(dev);
1145 bp->pdev = pdev;
1146 bp->dev = dev;
1147
1148 spin_lock_init(&bp->lock);
1149
0cc8674f
AV
1150#if defined(CONFIG_ARCH_AT91)
1151 bp->pclk = clk_get(&pdev->dev, "macb_clk");
1152 if (IS_ERR(bp->pclk)) {
1153 dev_err(&pdev->dev, "failed to get macb_clk\n");
1154 goto err_out_free_dev;
1155 }
1156 clk_enable(bp->pclk);
1157#else
89e5785f
HS
1158 bp->pclk = clk_get(&pdev->dev, "pclk");
1159 if (IS_ERR(bp->pclk)) {
1160 dev_err(&pdev->dev, "failed to get pclk\n");
1161 goto err_out_free_dev;
1162 }
1163 bp->hclk = clk_get(&pdev->dev, "hclk");
1164 if (IS_ERR(bp->hclk)) {
1165 dev_err(&pdev->dev, "failed to get hclk\n");
1166 goto err_out_put_pclk;
1167 }
1168
1169 clk_enable(bp->pclk);
1170 clk_enable(bp->hclk);
0cc8674f 1171#endif
89e5785f
HS
1172
1173 bp->regs = ioremap(regs->start, regs->end - regs->start + 1);
1174 if (!bp->regs) {
1175 dev_err(&pdev->dev, "failed to map registers, aborting.\n");
1176 err = -ENOMEM;
1177 goto err_out_disable_clocks;
1178 }
1179
1180 dev->irq = platform_get_irq(pdev, 0);
ab392d2d 1181 err = request_irq(dev->irq, macb_interrupt, 0, dev->name, dev);
89e5785f
HS
1182 if (err) {
1183 printk(KERN_ERR
1184 "%s: Unable to request IRQ %d (error %d)\n",
1185 dev->name, dev->irq, err);
1186 goto err_out_iounmap;
1187 }
1188
5f1fa992 1189 dev->netdev_ops = &macb_netdev_ops;
bea3348e 1190 netif_napi_add(dev, &bp->napi, macb_poll, 64);
89e5785f
HS
1191 dev->ethtool_ops = &macb_ethtool_ops;
1192
1193 dev->base_addr = regs->start;
1194
89e5785f
HS
1195 /* Set MII management clock divider */
1196 pclk_hz = clk_get_rate(bp->pclk);
1197 if (pclk_hz <= 20000000)
1198 config = MACB_BF(CLK, MACB_CLK_DIV8);
1199 else if (pclk_hz <= 40000000)
1200 config = MACB_BF(CLK, MACB_CLK_DIV16);
1201 else if (pclk_hz <= 80000000)
1202 config = MACB_BF(CLK, MACB_CLK_DIV32);
1203 else
1204 config = MACB_BF(CLK, MACB_CLK_DIV64);
1205 macb_writel(bp, NCFGR, config);
1206
89e5785f 1207 macb_get_hwaddr(bp);
89e5785f 1208 pdata = pdev->dev.platform_data;
6c36a707 1209
89e5785f 1210 if (pdata && pdata->is_rmii)
0cc8674f
AV
1211#if defined(CONFIG_ARCH_AT91)
1212 macb_writel(bp, USRIO, (MACB_BIT(RMII) | MACB_BIT(CLKEN)) );
1213#else
89e5785f 1214 macb_writel(bp, USRIO, 0);
0cc8674f 1215#endif
89e5785f 1216 else
0cc8674f
AV
1217#if defined(CONFIG_ARCH_AT91)
1218 macb_writel(bp, USRIO, MACB_BIT(CLKEN));
1219#else
89e5785f 1220 macb_writel(bp, USRIO, MACB_BIT(MII));
0cc8674f 1221#endif
89e5785f
HS
1222
1223 bp->tx_pending = DEF_TX_RING_PENDING;
1224
1225 err = register_netdev(dev);
1226 if (err) {
1227 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
1228 goto err_out_free_irq;
1229 }
1230
6c36a707
R
1231 if (macb_mii_init(bp) != 0) {
1232 goto err_out_unregister_netdev;
1233 }
89e5785f 1234
6c36a707 1235 platform_set_drvdata(pdev, dev);
89e5785f 1236
e174961c
JB
1237 printk(KERN_INFO "%s: Atmel MACB at 0x%08lx irq %d (%pM)\n",
1238 dev->name, dev->base_addr, dev->irq, dev->dev_addr);
89e5785f 1239
6c36a707
R
1240 phydev = bp->phy_dev;
1241 printk(KERN_INFO "%s: attached PHY driver [%s] "
db1d7bf7
KS
1242 "(mii_bus:phy_addr=%s, irq=%d)\n", dev->name,
1243 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
6c36a707 1244
89e5785f
HS
1245 return 0;
1246
6c36a707
R
1247err_out_unregister_netdev:
1248 unregister_netdev(dev);
89e5785f
HS
1249err_out_free_irq:
1250 free_irq(dev->irq, dev);
1251err_out_iounmap:
1252 iounmap(bp->regs);
1253err_out_disable_clocks:
0cc8674f 1254#ifndef CONFIG_ARCH_AT91
89e5785f 1255 clk_disable(bp->hclk);
89e5785f 1256 clk_put(bp->hclk);
0cc8674f
AV
1257#endif
1258 clk_disable(bp->pclk);
6c36a707 1259#ifndef CONFIG_ARCH_AT91
89e5785f 1260err_out_put_pclk:
6c36a707 1261#endif
89e5785f
HS
1262 clk_put(bp->pclk);
1263err_out_free_dev:
1264 free_netdev(dev);
1265err_out:
1266 platform_set_drvdata(pdev, NULL);
1267 return err;
1268}
1269
06c3fd6a 1270static int __exit macb_remove(struct platform_device *pdev)
89e5785f
HS
1271{
1272 struct net_device *dev;
1273 struct macb *bp;
1274
1275 dev = platform_get_drvdata(pdev);
1276
1277 if (dev) {
1278 bp = netdev_priv(dev);
84b7901f
AN
1279 if (bp->phy_dev)
1280 phy_disconnect(bp->phy_dev);
298cf9be
LB
1281 mdiobus_unregister(bp->mii_bus);
1282 kfree(bp->mii_bus->irq);
1283 mdiobus_free(bp->mii_bus);
89e5785f
HS
1284 unregister_netdev(dev);
1285 free_irq(dev->irq, dev);
1286 iounmap(bp->regs);
0cc8674f 1287#ifndef CONFIG_ARCH_AT91
89e5785f 1288 clk_disable(bp->hclk);
89e5785f 1289 clk_put(bp->hclk);
0cc8674f
AV
1290#endif
1291 clk_disable(bp->pclk);
89e5785f
HS
1292 clk_put(bp->pclk);
1293 free_netdev(dev);
1294 platform_set_drvdata(pdev, NULL);
1295 }
1296
1297 return 0;
1298}
1299
c1f598fd
HS
1300#ifdef CONFIG_PM
1301static int macb_suspend(struct platform_device *pdev, pm_message_t state)
1302{
1303 struct net_device *netdev = platform_get_drvdata(pdev);
1304 struct macb *bp = netdev_priv(netdev);
1305
1306 netif_device_detach(netdev);
1307
1308#ifndef CONFIG_ARCH_AT91
1309 clk_disable(bp->hclk);
1310#endif
1311 clk_disable(bp->pclk);
1312
1313 return 0;
1314}
1315
1316static int macb_resume(struct platform_device *pdev)
1317{
1318 struct net_device *netdev = platform_get_drvdata(pdev);
1319 struct macb *bp = netdev_priv(netdev);
1320
1321 clk_enable(bp->pclk);
1322#ifndef CONFIG_ARCH_AT91
1323 clk_enable(bp->hclk);
1324#endif
1325
1326 netif_device_attach(netdev);
1327
1328 return 0;
1329}
1330#else
1331#define macb_suspend NULL
1332#define macb_resume NULL
1333#endif
1334
89e5785f 1335static struct platform_driver macb_driver = {
06c3fd6a 1336 .remove = __exit_p(macb_remove),
c1f598fd
HS
1337 .suspend = macb_suspend,
1338 .resume = macb_resume,
89e5785f
HS
1339 .driver = {
1340 .name = "macb",
72abb461 1341 .owner = THIS_MODULE,
89e5785f
HS
1342 },
1343};
1344
1345static int __init macb_init(void)
1346{
06c3fd6a 1347 return platform_driver_probe(&macb_driver, macb_probe);
89e5785f
HS
1348}
1349
1350static void __exit macb_exit(void)
1351{
1352 platform_driver_unregister(&macb_driver);
1353}
1354
1355module_init(macb_init);
1356module_exit(macb_exit);
1357
1358MODULE_LICENSE("GPL");
1359MODULE_DESCRIPTION("Atmel MACB Ethernet driver");
e05503ef 1360MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
72abb461 1361MODULE_ALIAS("platform:macb");