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