blob: fada15d959dec6fd6a7e8f72c8c32ed50afdb3df [file] [log] [blame]
Andrew Victord4b77802006-03-24 11:50:17 +02001/*
2 * Ethernet driver for the Atmel AT91RM9200 (Thunder)
3 *
4 * Copyright (C) 2003 SAN People (Pty) Ltd
5 *
6 * Based on an earlier Atmel EMAC macrocell driver by Atmel and Lineo Inc.
7 * Initial version by Rick Bronson 01/11/2003
8 *
9 * Intel LXT971A PHY support by Christopher Bahns & David Knickerbocker
10 * (Polaroid Corporation)
11 *
12 * Realtek RTL8201(B)L PHY support by Roman Avramenko <roman@imsystems.ru>
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19
20#include <linux/module.h>
21#include <linux/init.h>
Andrew Victord4b77802006-03-24 11:50:17 +020022#include <linux/mii.h>
23#include <linux/netdevice.h>
24#include <linux/etherdevice.h>
25#include <linux/skbuff.h>
26#include <linux/dma-mapping.h>
27#include <linux/ethtool.h>
28#include <linux/platform_device.h>
29#include <linux/clk.h>
30
31#include <asm/io.h>
32#include <asm/uaccess.h>
33#include <asm/mach-types.h>
34
35#include <asm/arch/at91rm9200_emac.h>
36#include <asm/arch/gpio.h>
37#include <asm/arch/board.h>
38
39#include "at91_ether.h"
40
41#define DRV_NAME "at91_ether"
42#define DRV_VERSION "1.0"
43
Andrew Victor775637d2006-06-20 11:50:23 +020044#define LINK_POLL_INTERVAL (HZ)
45
Andrew Victord4b77802006-03-24 11:50:17 +020046/* ..................................................................... */
47
48/*
49 * Read from a EMAC register.
50 */
51static inline unsigned long at91_emac_read(unsigned int reg)
52{
53 void __iomem *emac_base = (void __iomem *)AT91_VA_BASE_EMAC;
54
55 return __raw_readl(emac_base + reg);
56}
57
58/*
59 * Write to a EMAC register.
60 */
61static inline void at91_emac_write(unsigned int reg, unsigned long value)
62{
63 void __iomem *emac_base = (void __iomem *)AT91_VA_BASE_EMAC;
64
65 __raw_writel(value, emac_base + reg);
66}
67
68/* ........................... PHY INTERFACE ........................... */
69
70/*
71 * Enable the MDIO bit in MAC control register
72 * When not called from an interrupt-handler, access to the PHY must be
73 * protected by a spinlock.
74 */
75static void enable_mdi(void)
76{
77 unsigned long ctl;
78
79 ctl = at91_emac_read(AT91_EMAC_CTL);
80 at91_emac_write(AT91_EMAC_CTL, ctl | AT91_EMAC_MPE); /* enable management port */
81}
82
83/*
84 * Disable the MDIO bit in the MAC control register
85 */
86static void disable_mdi(void)
87{
88 unsigned long ctl;
89
90 ctl = at91_emac_read(AT91_EMAC_CTL);
91 at91_emac_write(AT91_EMAC_CTL, ctl & ~AT91_EMAC_MPE); /* disable management port */
92}
93
94/*
95 * Wait until the PHY operation is complete.
96 */
97static inline void at91_phy_wait(void) {
98 unsigned long timeout = jiffies + 2;
99
100 while (!(at91_emac_read(AT91_EMAC_SR) & AT91_EMAC_SR_IDLE)) {
101 if (time_after(jiffies, timeout)) {
102 printk("at91_ether: MIO timeout\n");
103 break;
104 }
105 cpu_relax();
106 }
107}
108
109/*
110 * Write value to the a PHY register
111 * Note: MDI interface is assumed to already have been enabled.
112 */
113static void write_phy(unsigned char phy_addr, unsigned char address, unsigned int value)
114{
115 at91_emac_write(AT91_EMAC_MAN, AT91_EMAC_MAN_802_3 | AT91_EMAC_RW_W
116 | ((phy_addr & 0x1f) << 23) | (address << 18) | (value & AT91_EMAC_DATA));
117
118 /* Wait until IDLE bit in Network Status register is cleared */
119 at91_phy_wait();
120}
121
122/*
123 * Read value stored in a PHY register.
124 * Note: MDI interface is assumed to already have been enabled.
125 */
126static void read_phy(unsigned char phy_addr, unsigned char address, unsigned int *value)
127{
128 at91_emac_write(AT91_EMAC_MAN, AT91_EMAC_MAN_802_3 | AT91_EMAC_RW_R
129 | ((phy_addr & 0x1f) << 23) | (address << 18));
130
131 /* Wait until IDLE bit in Network Status register is cleared */
132 at91_phy_wait();
133
134 *value = at91_emac_read(AT91_EMAC_MAN) & AT91_EMAC_DATA;
135}
136
137/* ........................... PHY MANAGEMENT .......................... */
138
139/*
140 * Access the PHY to determine the current link speed and mode, and update the
141 * MAC accordingly.
142 * If no link or auto-negotiation is busy, then no changes are made.
143 */
Andrew Victor775637d2006-06-20 11:50:23 +0200144static void update_linkspeed(struct net_device *dev, int silent)
Andrew Victord4b77802006-03-24 11:50:17 +0200145{
Andrew Victorc57ee092006-12-05 15:09:16 +0200146 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200147 unsigned int bmsr, bmcr, lpa, mac_cfg;
148 unsigned int speed, duplex;
149
150 if (!mii_link_ok(&lp->mii)) { /* no link */
151 netif_carrier_off(dev);
Andrew Victor775637d2006-06-20 11:50:23 +0200152 if (!silent)
153 printk(KERN_INFO "%s: Link down.\n", dev->name);
Andrew Victord4b77802006-03-24 11:50:17 +0200154 return;
155 }
156
157 /* Link up, or auto-negotiation still in progress */
158 read_phy(lp->phy_address, MII_BMSR, &bmsr);
159 read_phy(lp->phy_address, MII_BMCR, &bmcr);
160 if (bmcr & BMCR_ANENABLE) { /* AutoNegotiation is enabled */
161 if (!(bmsr & BMSR_ANEGCOMPLETE))
162 return; /* Do nothing - another interrupt generated when negotiation complete */
163
164 read_phy(lp->phy_address, MII_LPA, &lpa);
165 if ((lpa & LPA_100FULL) || (lpa & LPA_100HALF)) speed = SPEED_100;
166 else speed = SPEED_10;
167 if ((lpa & LPA_100FULL) || (lpa & LPA_10FULL)) duplex = DUPLEX_FULL;
168 else duplex = DUPLEX_HALF;
169 } else {
170 speed = (bmcr & BMCR_SPEED100) ? SPEED_100 : SPEED_10;
171 duplex = (bmcr & BMCR_FULLDPLX) ? DUPLEX_FULL : DUPLEX_HALF;
172 }
173
174 /* Update the MAC */
175 mac_cfg = at91_emac_read(AT91_EMAC_CFG) & ~(AT91_EMAC_SPD | AT91_EMAC_FD);
176 if (speed == SPEED_100) {
177 if (duplex == DUPLEX_FULL) /* 100 Full Duplex */
178 mac_cfg |= AT91_EMAC_SPD | AT91_EMAC_FD;
179 else /* 100 Half Duplex */
180 mac_cfg |= AT91_EMAC_SPD;
181 } else {
182 if (duplex == DUPLEX_FULL) /* 10 Full Duplex */
183 mac_cfg |= AT91_EMAC_FD;
184 else {} /* 10 Half Duplex */
185 }
186 at91_emac_write(AT91_EMAC_CFG, mac_cfg);
187
Andrew Victor775637d2006-06-20 11:50:23 +0200188 if (!silent)
189 printk(KERN_INFO "%s: Link now %i-%s\n", dev->name, speed, (duplex == DUPLEX_FULL) ? "FullDuplex" : "HalfDuplex");
Andrew Victord4b77802006-03-24 11:50:17 +0200190 netif_carrier_on(dev);
191}
192
193/*
194 * Handle interrupts from the PHY
195 */
David Howells7d12e782006-10-05 14:55:46 +0100196static irqreturn_t at91ether_phy_interrupt(int irq, void *dev_id)
Andrew Victord4b77802006-03-24 11:50:17 +0200197{
198 struct net_device *dev = (struct net_device *) dev_id;
Andrew Victorc57ee092006-12-05 15:09:16 +0200199 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200200 unsigned int phy;
201
202 /*
203 * This hander is triggered on both edges, but the PHY chips expect
204 * level-triggering. We therefore have to check if the PHY actually has
205 * an IRQ pending.
206 */
207 enable_mdi();
208 if ((lp->phy_type == MII_DM9161_ID) || (lp->phy_type == MII_DM9161A_ID)) {
209 read_phy(lp->phy_address, MII_DSINTR_REG, &phy); /* ack interrupt in Davicom PHY */
210 if (!(phy & (1 << 0)))
211 goto done;
212 }
213 else if (lp->phy_type == MII_LXT971A_ID) {
214 read_phy(lp->phy_address, MII_ISINTS_REG, &phy); /* ack interrupt in Intel PHY */
215 if (!(phy & (1 << 2)))
216 goto done;
217 }
218 else if (lp->phy_type == MII_BCM5221_ID) {
219 read_phy(lp->phy_address, MII_BCMINTR_REG, &phy); /* ack interrupt in Broadcom PHY */
220 if (!(phy & (1 << 0)))
221 goto done;
222 }
223 else if (lp->phy_type == MII_KS8721_ID) {
224 read_phy(lp->phy_address, MII_TPISTATUS, &phy); /* ack interrupt in Micrel PHY */
225 if (!(phy & ((1 << 2) | 1)))
226 goto done;
227 }
228
Andrew Victor775637d2006-06-20 11:50:23 +0200229 update_linkspeed(dev, 0);
Andrew Victord4b77802006-03-24 11:50:17 +0200230
231done:
232 disable_mdi();
233
234 return IRQ_HANDLED;
235}
236
237/*
238 * Initialize and enable the PHY interrupt for link-state changes
239 */
240static void enable_phyirq(struct net_device *dev)
241{
Andrew Victorc57ee092006-12-05 15:09:16 +0200242 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200243 unsigned int dsintr, irq_number;
244 int status;
245
Andrew Victord4b77802006-03-24 11:50:17 +0200246 irq_number = lp->board_data.phy_irq_pin;
Andrew Victor775637d2006-06-20 11:50:23 +0200247 if (!irq_number) {
248 /*
249 * PHY doesn't have an IRQ pin (RTL8201, DP83847, AC101L),
250 * or board does not have it connected.
251 */
Andrew Victorcf425532006-12-05 15:21:19 +0200252 mod_timer(&lp->check_timer, jiffies + LINK_POLL_INTERVAL);
Andrew Victor775637d2006-06-20 11:50:23 +0200253 return;
254 }
255
Andrew Victord4b77802006-03-24 11:50:17 +0200256 status = request_irq(irq_number, at91ether_phy_interrupt, 0, dev->name, dev);
257 if (status) {
258 printk(KERN_ERR "at91_ether: PHY IRQ %d request failed - status %d!\n", irq_number, status);
259 return;
260 }
261
262 spin_lock_irq(&lp->lock);
263 enable_mdi();
264
265 if ((lp->phy_type == MII_DM9161_ID) || (lp->phy_type == MII_DM9161A_ID)) { /* for Davicom PHY */
266 read_phy(lp->phy_address, MII_DSINTR_REG, &dsintr);
267 dsintr = dsintr & ~0xf00; /* clear bits 8..11 */
268 write_phy(lp->phy_address, MII_DSINTR_REG, dsintr);
269 }
270 else if (lp->phy_type == MII_LXT971A_ID) { /* for Intel PHY */
271 read_phy(lp->phy_address, MII_ISINTE_REG, &dsintr);
272 dsintr = dsintr | 0xf2; /* set bits 1, 4..7 */
273 write_phy(lp->phy_address, MII_ISINTE_REG, dsintr);
274 }
275 else if (lp->phy_type == MII_BCM5221_ID) { /* for Broadcom PHY */
276 dsintr = (1 << 15) | ( 1 << 14);
277 write_phy(lp->phy_address, MII_BCMINTR_REG, dsintr);
278 }
279 else if (lp->phy_type == MII_KS8721_ID) { /* for Micrel PHY */
280 dsintr = (1 << 10) | ( 1 << 8);
281 write_phy(lp->phy_address, MII_TPISTATUS, dsintr);
282 }
283
284 disable_mdi();
285 spin_unlock_irq(&lp->lock);
286}
287
288/*
289 * Disable the PHY interrupt
290 */
291static void disable_phyirq(struct net_device *dev)
292{
Andrew Victorc57ee092006-12-05 15:09:16 +0200293 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200294 unsigned int dsintr;
295 unsigned int irq_number;
296
Andrew Victor775637d2006-06-20 11:50:23 +0200297 irq_number = lp->board_data.phy_irq_pin;
298 if (!irq_number) {
Andrew Victorcf425532006-12-05 15:21:19 +0200299 del_timer_sync(&lp->check_timer);
Andrew Victord4b77802006-03-24 11:50:17 +0200300 return;
Andrew Victor775637d2006-06-20 11:50:23 +0200301 }
Andrew Victord4b77802006-03-24 11:50:17 +0200302
303 spin_lock_irq(&lp->lock);
304 enable_mdi();
305
306 if ((lp->phy_type == MII_DM9161_ID) || (lp->phy_type == MII_DM9161A_ID)) { /* for Davicom PHY */
307 read_phy(lp->phy_address, MII_DSINTR_REG, &dsintr);
308 dsintr = dsintr | 0xf00; /* set bits 8..11 */
309 write_phy(lp->phy_address, MII_DSINTR_REG, dsintr);
310 }
311 else if (lp->phy_type == MII_LXT971A_ID) { /* for Intel PHY */
312 read_phy(lp->phy_address, MII_ISINTE_REG, &dsintr);
313 dsintr = dsintr & ~0xf2; /* clear bits 1, 4..7 */
314 write_phy(lp->phy_address, MII_ISINTE_REG, dsintr);
315 }
316 else if (lp->phy_type == MII_BCM5221_ID) { /* for Broadcom PHY */
317 read_phy(lp->phy_address, MII_BCMINTR_REG, &dsintr);
318 dsintr = ~(1 << 14);
319 write_phy(lp->phy_address, MII_BCMINTR_REG, dsintr);
320 }
321 else if (lp->phy_type == MII_KS8721_ID) { /* for Micrel PHY */
322 read_phy(lp->phy_address, MII_TPISTATUS, &dsintr);
323 dsintr = ~((1 << 10) | (1 << 8));
324 write_phy(lp->phy_address, MII_TPISTATUS, dsintr);
325 }
326
327 disable_mdi();
328 spin_unlock_irq(&lp->lock);
329
Andrew Victord4b77802006-03-24 11:50:17 +0200330 free_irq(irq_number, dev); /* Free interrupt handler */
331}
332
333/*
334 * Perform a software reset of the PHY.
335 */
336#if 0
337static void reset_phy(struct net_device *dev)
338{
Andrew Victorc57ee092006-12-05 15:09:16 +0200339 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200340 unsigned int bmcr;
341
342 spin_lock_irq(&lp->lock);
343 enable_mdi();
344
345 /* Perform PHY reset */
346 write_phy(lp->phy_address, MII_BMCR, BMCR_RESET);
347
348 /* Wait until PHY reset is complete */
349 do {
350 read_phy(lp->phy_address, MII_BMCR, &bmcr);
351 } while (!(bmcr && BMCR_RESET));
352
353 disable_mdi();
354 spin_unlock_irq(&lp->lock);
355}
356#endif
357
Andrew Victor775637d2006-06-20 11:50:23 +0200358static void at91ether_check_link(unsigned long dev_id)
359{
360 struct net_device *dev = (struct net_device *) dev_id;
Andrew Victorcf425532006-12-05 15:21:19 +0200361 struct at91_private *lp = netdev_priv(dev);
Andrew Victor775637d2006-06-20 11:50:23 +0200362
363 enable_mdi();
364 update_linkspeed(dev, 1);
365 disable_mdi();
366
Andrew Victorcf425532006-12-05 15:21:19 +0200367 mod_timer(&lp->check_timer, jiffies + LINK_POLL_INTERVAL);
Andrew Victor775637d2006-06-20 11:50:23 +0200368}
369
Andrew Victord4b77802006-03-24 11:50:17 +0200370/* ......................... ADDRESS MANAGEMENT ........................ */
371
372/*
373 * NOTE: Your bootloader must always set the MAC address correctly before
374 * booting into Linux.
375 *
376 * - It must always set the MAC address after reset, even if it doesn't
377 * happen to access the Ethernet while it's booting. Some versions of
378 * U-Boot on the AT91RM9200-DK do not do this.
379 *
380 * - Likewise it must store the addresses in the correct byte order.
381 * MicroMonitor (uMon) on the CSB337 does this incorrectly (and
382 * continues to do so, for bug-compatibility).
383 */
384
385static short __init unpack_mac_address(struct net_device *dev, unsigned int hi, unsigned int lo)
386{
387 char addr[6];
388
389 if (machine_is_csb337()) {
390 addr[5] = (lo & 0xff); /* The CSB337 bootloader stores the MAC the wrong-way around */
391 addr[4] = (lo & 0xff00) >> 8;
392 addr[3] = (lo & 0xff0000) >> 16;
393 addr[2] = (lo & 0xff000000) >> 24;
394 addr[1] = (hi & 0xff);
395 addr[0] = (hi & 0xff00) >> 8;
396 }
397 else {
398 addr[0] = (lo & 0xff);
399 addr[1] = (lo & 0xff00) >> 8;
400 addr[2] = (lo & 0xff0000) >> 16;
401 addr[3] = (lo & 0xff000000) >> 24;
402 addr[4] = (hi & 0xff);
403 addr[5] = (hi & 0xff00) >> 8;
404 }
405
406 if (is_valid_ether_addr(addr)) {
407 memcpy(dev->dev_addr, &addr, 6);
408 return 1;
409 }
410 return 0;
411}
412
413/*
414 * Set the ethernet MAC address in dev->dev_addr
415 */
416static void __init get_mac_address(struct net_device *dev)
417{
418 /* Check Specific-Address 1 */
419 if (unpack_mac_address(dev, at91_emac_read(AT91_EMAC_SA1H), at91_emac_read(AT91_EMAC_SA1L)))
420 return;
421 /* Check Specific-Address 2 */
422 if (unpack_mac_address(dev, at91_emac_read(AT91_EMAC_SA2H), at91_emac_read(AT91_EMAC_SA2L)))
423 return;
424 /* Check Specific-Address 3 */
425 if (unpack_mac_address(dev, at91_emac_read(AT91_EMAC_SA3H), at91_emac_read(AT91_EMAC_SA3L)))
426 return;
427 /* Check Specific-Address 4 */
428 if (unpack_mac_address(dev, at91_emac_read(AT91_EMAC_SA4H), at91_emac_read(AT91_EMAC_SA4L)))
429 return;
430
431 printk(KERN_ERR "at91_ether: Your bootloader did not configure a MAC address.\n");
432}
433
434/*
435 * Program the hardware MAC address from dev->dev_addr.
436 */
437static void update_mac_address(struct net_device *dev)
438{
439 at91_emac_write(AT91_EMAC_SA1L, (dev->dev_addr[3] << 24) | (dev->dev_addr[2] << 16) | (dev->dev_addr[1] << 8) | (dev->dev_addr[0]));
440 at91_emac_write(AT91_EMAC_SA1H, (dev->dev_addr[5] << 8) | (dev->dev_addr[4]));
441
442 at91_emac_write(AT91_EMAC_SA2L, 0);
443 at91_emac_write(AT91_EMAC_SA2H, 0);
444}
445
446/*
447 * Store the new hardware address in dev->dev_addr, and update the MAC.
448 */
449static int set_mac_address(struct net_device *dev, void* addr)
450{
451 struct sockaddr *address = addr;
452
453 if (!is_valid_ether_addr(address->sa_data))
454 return -EADDRNOTAVAIL;
455
456 memcpy(dev->dev_addr, address->sa_data, dev->addr_len);
457 update_mac_address(dev);
458
459 printk("%s: Setting MAC address to %02x:%02x:%02x:%02x:%02x:%02x\n", dev->name,
460 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
461 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
462
463 return 0;
464}
465
466static int inline hash_bit_value(int bitnr, __u8 *addr)
467{
468 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
469 return 1;
470 return 0;
471}
472
473/*
474 * The hash address register is 64 bits long and takes up two locations in the memory map.
475 * The least significant bits are stored in EMAC_HSL and the most significant
476 * bits in EMAC_HSH.
477 *
478 * The unicast hash enable and the multicast hash enable bits in the network configuration
479 * register enable the reception of hash matched frames. The destination address is
480 * reduced to a 6 bit index into the 64 bit hash register using the following hash function.
481 * The hash function is an exclusive or of every sixth bit of the destination address.
482 * hash_index[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
483 * hash_index[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
484 * hash_index[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
485 * hash_index[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
486 * hash_index[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
487 * hash_index[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
488 * da[0] represents the least significant bit of the first byte received, that is, the multicast/
489 * unicast indicator, and da[47] represents the most significant bit of the last byte
490 * received.
491 * If the hash index points to a bit that is set in the hash register then the frame will be
492 * matched according to whether the frame is multicast or unicast.
493 * A multicast match will be signalled if the multicast hash enable bit is set, da[0] is 1 and
494 * the hash index points to a bit set in the hash register.
495 * A unicast match will be signalled if the unicast hash enable bit is set, da[0] is 0 and the
496 * hash index points to a bit set in the hash register.
497 * To receive all multicast frames, the hash register should be set with all ones and the
498 * multicast hash enable bit should be set in the network configuration register.
499 */
500
501/*
502 * Return the hash index value for the specified address.
503 */
504static int hash_get_index(__u8 *addr)
505{
506 int i, j, bitval;
507 int hash_index = 0;
508
509 for (j = 0; j < 6; j++) {
510 for (i = 0, bitval = 0; i < 8; i++)
511 bitval ^= hash_bit_value(i*6 + j, addr);
512
513 hash_index |= (bitval << j);
514 }
515
Andrew Victor427d2692006-06-20 12:10:57 +0200516 return hash_index;
Andrew Victord4b77802006-03-24 11:50:17 +0200517}
518
519/*
520 * Add multicast addresses to the internal multicast-hash table.
521 */
522static void at91ether_sethashtable(struct net_device *dev)
523{
524 struct dev_mc_list *curr;
525 unsigned long mc_filter[2];
526 unsigned int i, bitnr;
527
528 mc_filter[0] = mc_filter[1] = 0;
529
530 curr = dev->mc_list;
531 for (i = 0; i < dev->mc_count; i++, curr = curr->next) {
532 if (!curr) break; /* unexpected end of list */
533
534 bitnr = hash_get_index(curr->dmi_addr);
535 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
536 }
537
538 at91_emac_write(AT91_EMAC_HSH, mc_filter[0]);
539 at91_emac_write(AT91_EMAC_HSL, mc_filter[1]);
540}
541
542/*
543 * Enable/Disable promiscuous and multicast modes.
544 */
545static void at91ether_set_rx_mode(struct net_device *dev)
546{
547 unsigned long cfg;
548
549 cfg = at91_emac_read(AT91_EMAC_CFG);
550
551 if (dev->flags & IFF_PROMISC) /* Enable promiscuous mode */
552 cfg |= AT91_EMAC_CAF;
553 else if (dev->flags & (~IFF_PROMISC)) /* Disable promiscuous mode */
554 cfg &= ~AT91_EMAC_CAF;
555
556 if (dev->flags & IFF_ALLMULTI) { /* Enable all multicast mode */
557 at91_emac_write(AT91_EMAC_HSH, -1);
558 at91_emac_write(AT91_EMAC_HSL, -1);
559 cfg |= AT91_EMAC_MTI;
560 } else if (dev->mc_count > 0) { /* Enable specific multicasts */
561 at91ether_sethashtable(dev);
562 cfg |= AT91_EMAC_MTI;
563 } else if (dev->flags & (~IFF_ALLMULTI)) { /* Disable all multicast mode */
564 at91_emac_write(AT91_EMAC_HSH, 0);
565 at91_emac_write(AT91_EMAC_HSL, 0);
566 cfg &= ~AT91_EMAC_MTI;
567 }
568
569 at91_emac_write(AT91_EMAC_CFG, cfg);
570}
571
Andrew Victord4b77802006-03-24 11:50:17 +0200572/* ......................... ETHTOOL SUPPORT ........................... */
573
Andrew Victord4b77802006-03-24 11:50:17 +0200574static int mdio_read(struct net_device *dev, int phy_id, int location)
575{
576 unsigned int value;
577
578 read_phy(phy_id, location, &value);
579 return value;
580}
581
582static void mdio_write(struct net_device *dev, int phy_id, int location, int value)
583{
584 write_phy(phy_id, location, value);
585}
586
587static int at91ether_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
588{
Andrew Victorc57ee092006-12-05 15:09:16 +0200589 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200590 int ret;
591
592 spin_lock_irq(&lp->lock);
593 enable_mdi();
594
595 ret = mii_ethtool_gset(&lp->mii, cmd);
596
597 disable_mdi();
598 spin_unlock_irq(&lp->lock);
599
600 if (lp->phy_media == PORT_FIBRE) { /* override media type since mii.c doesn't know */
601 cmd->supported = SUPPORTED_FIBRE;
602 cmd->port = PORT_FIBRE;
603 }
604
605 return ret;
606}
607
608static int at91ether_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
609{
Andrew Victorc57ee092006-12-05 15:09:16 +0200610 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200611 int ret;
612
613 spin_lock_irq(&lp->lock);
614 enable_mdi();
615
616 ret = mii_ethtool_sset(&lp->mii, cmd);
617
618 disable_mdi();
619 spin_unlock_irq(&lp->lock);
620
621 return ret;
622}
623
624static int at91ether_nwayreset(struct net_device *dev)
625{
Andrew Victorc57ee092006-12-05 15:09:16 +0200626 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200627 int ret;
628
629 spin_lock_irq(&lp->lock);
630 enable_mdi();
631
632 ret = mii_nway_restart(&lp->mii);
633
634 disable_mdi();
635 spin_unlock_irq(&lp->lock);
636
637 return ret;
638}
639
640static void at91ether_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
641{
642 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
643 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
644 strlcpy(info->bus_info, dev->class_dev.dev->bus_id, sizeof(info->bus_info));
645}
646
Jeff Garzik7282d492006-09-13 14:30:00 -0400647static const struct ethtool_ops at91ether_ethtool_ops = {
Andrew Victord4b77802006-03-24 11:50:17 +0200648 .get_settings = at91ether_get_settings,
649 .set_settings = at91ether_set_settings,
650 .get_drvinfo = at91ether_get_drvinfo,
651 .nway_reset = at91ether_nwayreset,
652 .get_link = ethtool_op_get_link,
653};
654
Andrew Victorca5585e2006-06-20 11:59:05 +0200655static int at91ether_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
656{
Andrew Victorc57ee092006-12-05 15:09:16 +0200657 struct at91_private *lp = netdev_priv(dev);
Andrew Victorca5585e2006-06-20 11:59:05 +0200658 int res;
659
660 if (!netif_running(dev))
661 return -EINVAL;
662
663 spin_lock_irq(&lp->lock);
664 enable_mdi();
665 res = generic_mii_ioctl(&lp->mii, if_mii(rq), cmd, NULL);
666 disable_mdi();
667 spin_unlock_irq(&lp->lock);
668
669 return res;
670}
Andrew Victord4b77802006-03-24 11:50:17 +0200671
672/* ................................ MAC ................................ */
673
674/*
675 * Initialize and start the Receiver and Transmit subsystems
676 */
677static void at91ether_start(struct net_device *dev)
678{
Andrew Victorc57ee092006-12-05 15:09:16 +0200679 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200680 struct recv_desc_bufs *dlist, *dlist_phys;
681 int i;
682 unsigned long ctl;
683
684 dlist = lp->dlist;
685 dlist_phys = lp->dlist_phys;
686
687 for (i = 0; i < MAX_RX_DESCR; i++) {
688 dlist->descriptors[i].addr = (unsigned int) &dlist_phys->recv_buf[i][0];
689 dlist->descriptors[i].size = 0;
690 }
691
692 /* Set the Wrap bit on the last descriptor */
693 dlist->descriptors[i-1].addr |= EMAC_DESC_WRAP;
694
695 /* Reset buffer index */
696 lp->rxBuffIndex = 0;
697
698 /* Program address of descriptor list in Rx Buffer Queue register */
699 at91_emac_write(AT91_EMAC_RBQP, (unsigned long) dlist_phys);
700
701 /* Enable Receive and Transmit */
702 ctl = at91_emac_read(AT91_EMAC_CTL);
703 at91_emac_write(AT91_EMAC_CTL, ctl | AT91_EMAC_RE | AT91_EMAC_TE);
704}
705
706/*
707 * Open the ethernet interface
708 */
709static int at91ether_open(struct net_device *dev)
710{
Andrew Victorc57ee092006-12-05 15:09:16 +0200711 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200712 unsigned long ctl;
713
Andrew Victor427d2692006-06-20 12:10:57 +0200714 if (!is_valid_ether_addr(dev->dev_addr))
715 return -EADDRNOTAVAIL;
Andrew Victord4b77802006-03-24 11:50:17 +0200716
Andrew Victor427d2692006-06-20 12:10:57 +0200717 clk_enable(lp->ether_clk); /* Re-enable Peripheral clock */
Andrew Victord4b77802006-03-24 11:50:17 +0200718
719 /* Clear internal statistics */
720 ctl = at91_emac_read(AT91_EMAC_CTL);
721 at91_emac_write(AT91_EMAC_CTL, ctl | AT91_EMAC_CSR);
722
723 /* Update the MAC address (incase user has changed it) */
724 update_mac_address(dev);
725
726 /* Enable PHY interrupt */
727 enable_phyirq(dev);
728
729 /* Enable MAC interrupts */
730 at91_emac_write(AT91_EMAC_IER, AT91_EMAC_RCOM | AT91_EMAC_RBNA
731 | AT91_EMAC_TUND | AT91_EMAC_RTRY | AT91_EMAC_TCOM
732 | AT91_EMAC_ROVR | AT91_EMAC_ABT);
733
734 /* Determine current link speed */
735 spin_lock_irq(&lp->lock);
736 enable_mdi();
Andrew Victor775637d2006-06-20 11:50:23 +0200737 update_linkspeed(dev, 0);
Andrew Victord4b77802006-03-24 11:50:17 +0200738 disable_mdi();
739 spin_unlock_irq(&lp->lock);
740
741 at91ether_start(dev);
742 netif_start_queue(dev);
743 return 0;
744}
745
746/*
747 * Close the interface
748 */
749static int at91ether_close(struct net_device *dev)
750{
Andrew Victorc57ee092006-12-05 15:09:16 +0200751 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200752 unsigned long ctl;
753
754 /* Disable Receiver and Transmitter */
755 ctl = at91_emac_read(AT91_EMAC_CTL);
756 at91_emac_write(AT91_EMAC_CTL, ctl & ~(AT91_EMAC_TE | AT91_EMAC_RE));
757
758 /* Disable PHY interrupt */
759 disable_phyirq(dev);
760
761 /* Disable MAC interrupts */
762 at91_emac_write(AT91_EMAC_IDR, AT91_EMAC_RCOM | AT91_EMAC_RBNA
763 | AT91_EMAC_TUND | AT91_EMAC_RTRY | AT91_EMAC_TCOM
764 | AT91_EMAC_ROVR | AT91_EMAC_ABT);
765
766 netif_stop_queue(dev);
767
Andrew Victor427d2692006-06-20 12:10:57 +0200768 clk_disable(lp->ether_clk); /* Disable Peripheral clock */
Andrew Victord4b77802006-03-24 11:50:17 +0200769
770 return 0;
771}
772
773/*
774 * Transmit packet.
775 */
776static int at91ether_tx(struct sk_buff *skb, struct net_device *dev)
777{
Andrew Victorc57ee092006-12-05 15:09:16 +0200778 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200779
780 if (at91_emac_read(AT91_EMAC_TSR) & AT91_EMAC_TSR_BNQ) {
781 netif_stop_queue(dev);
782
783 /* Store packet information (to free when Tx completed) */
784 lp->skb = skb;
785 lp->skb_length = skb->len;
786 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len, DMA_TO_DEVICE);
787 lp->stats.tx_bytes += skb->len;
788
789 /* Set address of the data in the Transmit Address register */
790 at91_emac_write(AT91_EMAC_TAR, lp->skb_physaddr);
791 /* Set length of the packet in the Transmit Control register */
792 at91_emac_write(AT91_EMAC_TCR, skb->len);
793
794 dev->trans_start = jiffies;
795 } else {
796 printk(KERN_ERR "at91_ether.c: at91ether_tx() called, but device is busy!\n");
797 return 1; /* if we return anything but zero, dev.c:1055 calls kfree_skb(skb)
798 on this skb, he also reports -ENETDOWN and printk's, so either
799 we free and return(0) or don't free and return 1 */
800 }
801
802 return 0;
803}
804
805/*
806 * Update the current statistics from the internal statistics registers.
807 */
808static struct net_device_stats *at91ether_stats(struct net_device *dev)
809{
Andrew Victorc57ee092006-12-05 15:09:16 +0200810 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200811 int ale, lenerr, seqe, lcol, ecol;
812
813 if (netif_running(dev)) {
814 lp->stats.rx_packets += at91_emac_read(AT91_EMAC_OK); /* Good frames received */
815 ale = at91_emac_read(AT91_EMAC_ALE);
816 lp->stats.rx_frame_errors += ale; /* Alignment errors */
817 lenerr = at91_emac_read(AT91_EMAC_ELR) + at91_emac_read(AT91_EMAC_USF);
818 lp->stats.rx_length_errors += lenerr; /* Excessive Length or Undersize Frame error */
819 seqe = at91_emac_read(AT91_EMAC_SEQE);
820 lp->stats.rx_crc_errors += seqe; /* CRC error */
821 lp->stats.rx_fifo_errors += at91_emac_read(AT91_EMAC_DRFC); /* Receive buffer not available */
822 lp->stats.rx_errors += (ale + lenerr + seqe
823 + at91_emac_read(AT91_EMAC_CDE) + at91_emac_read(AT91_EMAC_RJB));
824
825 lp->stats.tx_packets += at91_emac_read(AT91_EMAC_FRA); /* Frames successfully transmitted */
826 lp->stats.tx_fifo_errors += at91_emac_read(AT91_EMAC_TUE); /* Transmit FIFO underruns */
827 lp->stats.tx_carrier_errors += at91_emac_read(AT91_EMAC_CSE); /* Carrier Sense errors */
828 lp->stats.tx_heartbeat_errors += at91_emac_read(AT91_EMAC_SQEE);/* Heartbeat error */
829
830 lcol = at91_emac_read(AT91_EMAC_LCOL);
831 ecol = at91_emac_read(AT91_EMAC_ECOL);
832 lp->stats.tx_window_errors += lcol; /* Late collisions */
833 lp->stats.tx_aborted_errors += ecol; /* 16 collisions */
834
835 lp->stats.collisions += (at91_emac_read(AT91_EMAC_SCOL) + at91_emac_read(AT91_EMAC_MCOL) + lcol + ecol);
836 }
837 return &lp->stats;
838}
839
840/*
841 * Extract received frame from buffer descriptors and sent to upper layers.
842 * (Called from interrupt context)
843 */
844static void at91ether_rx(struct net_device *dev)
845{
Andrew Victorc57ee092006-12-05 15:09:16 +0200846 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200847 struct recv_desc_bufs *dlist;
848 unsigned char *p_recv;
849 struct sk_buff *skb;
850 unsigned int pktlen;
851
852 dlist = lp->dlist;
853 while (dlist->descriptors[lp->rxBuffIndex].addr & EMAC_DESC_DONE) {
854 p_recv = dlist->recv_buf[lp->rxBuffIndex];
855 pktlen = dlist->descriptors[lp->rxBuffIndex].size & 0x7ff; /* Length of frame including FCS */
Andrew Victora3f63e42006-12-05 15:37:02 +0200856 skb = dev_alloc_skb(pktlen + 2);
Andrew Victord4b77802006-03-24 11:50:17 +0200857 if (skb != NULL) {
858 skb_reserve(skb, 2);
859 memcpy(skb_put(skb, pktlen), p_recv, pktlen);
860
861 skb->dev = dev;
862 skb->protocol = eth_type_trans(skb, dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200863 dev->last_rx = jiffies;
864 lp->stats.rx_bytes += pktlen;
865 netif_rx(skb);
866 }
867 else {
868 lp->stats.rx_dropped += 1;
869 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name);
870 }
871
872 if (dlist->descriptors[lp->rxBuffIndex].size & EMAC_MULTICAST)
873 lp->stats.multicast++;
874
875 dlist->descriptors[lp->rxBuffIndex].addr &= ~EMAC_DESC_DONE; /* reset ownership bit */
876 if (lp->rxBuffIndex == MAX_RX_DESCR-1) /* wrap after last buffer */
877 lp->rxBuffIndex = 0;
878 else
879 lp->rxBuffIndex++;
880 }
881}
882
883/*
884 * MAC interrupt handler
885 */
David Howells7d12e782006-10-05 14:55:46 +0100886static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
Andrew Victord4b77802006-03-24 11:50:17 +0200887{
888 struct net_device *dev = (struct net_device *) dev_id;
Andrew Victorc57ee092006-12-05 15:09:16 +0200889 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200890 unsigned long intstatus, ctl;
891
892 /* MAC Interrupt Status register indicates what interrupts are pending.
893 It is automatically cleared once read. */
894 intstatus = at91_emac_read(AT91_EMAC_ISR);
895
896 if (intstatus & AT91_EMAC_RCOM) /* Receive complete */
897 at91ether_rx(dev);
898
Andrew Victor427d2692006-06-20 12:10:57 +0200899 if (intstatus & AT91_EMAC_TCOM) { /* Transmit complete */
Andrew Victord4b77802006-03-24 11:50:17 +0200900 /* The TCOM bit is set even if the transmission failed. */
901 if (intstatus & (AT91_EMAC_TUND | AT91_EMAC_RTRY))
902 lp->stats.tx_errors += 1;
903
904 if (lp->skb) {
905 dev_kfree_skb_irq(lp->skb);
906 lp->skb = NULL;
907 dma_unmap_single(NULL, lp->skb_physaddr, lp->skb_length, DMA_TO_DEVICE);
908 }
909 netif_wake_queue(dev);
910 }
911
912 /* Work-around for Errata #11 */
913 if (intstatus & AT91_EMAC_RBNA) {
914 ctl = at91_emac_read(AT91_EMAC_CTL);
915 at91_emac_write(AT91_EMAC_CTL, ctl & ~AT91_EMAC_RE);
916 at91_emac_write(AT91_EMAC_CTL, ctl | AT91_EMAC_RE);
917 }
918
919 if (intstatus & AT91_EMAC_ROVR)
920 printk("%s: ROVR error\n", dev->name);
921
922 return IRQ_HANDLED;
923}
924
Andrew Victor51cc2102006-12-05 15:33:05 +0200925#ifdef CONFIG_NET_POLL_CONTROLLER
926static void at91ether_poll_controller(struct net_device *dev)
927{
928 unsigned long flags;
929
930 local_irq_save(flags);
931 at91ether_interrupt(dev->irq, dev);
932 local_irq_restore(flags);
933}
934#endif
935
Andrew Victord4b77802006-03-24 11:50:17 +0200936/*
937 * Initialize the ethernet interface
938 */
Andrew Victor427d2692006-06-20 12:10:57 +0200939static int __init at91ether_setup(unsigned long phy_type, unsigned short phy_address,
940 struct platform_device *pdev, struct clk *ether_clk)
Andrew Victord4b77802006-03-24 11:50:17 +0200941{
942 struct at91_eth_data *board_data = pdev->dev.platform_data;
943 struct net_device *dev;
944 struct at91_private *lp;
945 unsigned int val;
946 int res;
947
Andrew Victord4b77802006-03-24 11:50:17 +0200948 dev = alloc_etherdev(sizeof(struct at91_private));
949 if (!dev)
950 return -ENOMEM;
951
952 dev->base_addr = AT91_VA_BASE_EMAC;
Andrew Victor72729912006-09-27 09:44:11 +0100953 dev->irq = AT91RM9200_ID_EMAC;
Andrew Victord4b77802006-03-24 11:50:17 +0200954 SET_MODULE_OWNER(dev);
955
956 /* Install the interrupt handler */
957 if (request_irq(dev->irq, at91ether_interrupt, 0, dev->name, dev)) {
958 free_netdev(dev);
959 return -EBUSY;
960 }
961
962 /* Allocate memory for DMA Receive descriptors */
Andrew Victorc57ee092006-12-05 15:09:16 +0200963 lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +0200964 lp->dlist = (struct recv_desc_bufs *) dma_alloc_coherent(NULL, sizeof(struct recv_desc_bufs), (dma_addr_t *) &lp->dlist_phys, GFP_KERNEL);
965 if (lp->dlist == NULL) {
966 free_irq(dev->irq, dev);
967 free_netdev(dev);
968 return -ENOMEM;
969 }
970 lp->board_data = *board_data;
Andrew Victor427d2692006-06-20 12:10:57 +0200971 lp->ether_clk = ether_clk;
Andrew Victord4b77802006-03-24 11:50:17 +0200972 platform_set_drvdata(pdev, dev);
973
974 spin_lock_init(&lp->lock);
975
976 ether_setup(dev);
977 dev->open = at91ether_open;
978 dev->stop = at91ether_close;
979 dev->hard_start_xmit = at91ether_tx;
980 dev->get_stats = at91ether_stats;
981 dev->set_multicast_list = at91ether_set_rx_mode;
982 dev->set_mac_address = set_mac_address;
983 dev->ethtool_ops = &at91ether_ethtool_ops;
Andrew Victorca5585e2006-06-20 11:59:05 +0200984 dev->do_ioctl = at91ether_ioctl;
Andrew Victor51cc2102006-12-05 15:33:05 +0200985#ifdef CONFIG_NET_POLL_CONTROLLER
986 dev->poll_controller = at91ether_poll_controller;
987#endif
Andrew Victord4b77802006-03-24 11:50:17 +0200988
989 SET_NETDEV_DEV(dev, &pdev->dev);
990
991 get_mac_address(dev); /* Get ethernet address and store it in dev->dev_addr */
992 update_mac_address(dev); /* Program ethernet address into MAC */
993
994 at91_emac_write(AT91_EMAC_CTL, 0);
995
996 if (lp->board_data.is_rmii)
997 at91_emac_write(AT91_EMAC_CFG, AT91_EMAC_CLK_DIV32 | AT91_EMAC_BIG | AT91_EMAC_RMII);
998 else
999 at91_emac_write(AT91_EMAC_CFG, AT91_EMAC_CLK_DIV32 | AT91_EMAC_BIG);
1000
1001 /* Perform PHY-specific initialization */
1002 spin_lock_irq(&lp->lock);
1003 enable_mdi();
1004 if ((phy_type == MII_DM9161_ID) || (lp->phy_type == MII_DM9161A_ID)) {
1005 read_phy(phy_address, MII_DSCR_REG, &val);
1006 if ((val & (1 << 10)) == 0) /* DSCR bit 10 is 0 -- fiber mode */
1007 lp->phy_media = PORT_FIBRE;
1008 } else if (machine_is_csb337()) {
1009 /* mix link activity status into LED2 link state */
1010 write_phy(phy_address, MII_LEDCTRL_REG, 0x0d22);
1011 }
1012 disable_mdi();
1013 spin_unlock_irq(&lp->lock);
1014
1015 lp->mii.dev = dev; /* Support for ethtool */
1016 lp->mii.mdio_read = mdio_read;
1017 lp->mii.mdio_write = mdio_write;
Andrew Victorca5585e2006-06-20 11:59:05 +02001018 lp->mii.phy_id = phy_address;
1019 lp->mii.phy_id_mask = 0x1f;
1020 lp->mii.reg_num_mask = 0x1f;
Andrew Victord4b77802006-03-24 11:50:17 +02001021
1022 lp->phy_type = phy_type; /* Type of PHY connected */
1023 lp->phy_address = phy_address; /* MDI address of PHY */
1024
1025 /* Register the network interface */
1026 res = register_netdev(dev);
1027 if (res) {
1028 free_irq(dev->irq, dev);
1029 free_netdev(dev);
1030 dma_free_coherent(NULL, sizeof(struct recv_desc_bufs), lp->dlist, (dma_addr_t)lp->dlist_phys);
1031 return res;
1032 }
Andrew Victord4b77802006-03-24 11:50:17 +02001033
1034 /* Determine current link speed */
1035 spin_lock_irq(&lp->lock);
1036 enable_mdi();
Andrew Victor775637d2006-06-20 11:50:23 +02001037 update_linkspeed(dev, 0);
Andrew Victord4b77802006-03-24 11:50:17 +02001038 disable_mdi();
1039 spin_unlock_irq(&lp->lock);
1040 netif_carrier_off(dev); /* will be enabled in open() */
1041
Andrew Victor775637d2006-06-20 11:50:23 +02001042 /* If board has no PHY IRQ, use a timer to poll the PHY */
1043 if (!lp->board_data.phy_irq_pin) {
Andrew Victorcf425532006-12-05 15:21:19 +02001044 init_timer(&lp->check_timer);
1045 lp->check_timer.data = (unsigned long)dev;
1046 lp->check_timer.function = at91ether_check_link;
Andrew Victor775637d2006-06-20 11:50:23 +02001047 }
1048
Andrew Victord4b77802006-03-24 11:50:17 +02001049 /* Display ethernet banner */
1050 printk(KERN_INFO "%s: AT91 ethernet at 0x%08x int=%d %s%s (%02x:%02x:%02x:%02x:%02x:%02x)\n",
1051 dev->name, (uint) dev->base_addr, dev->irq,
1052 at91_emac_read(AT91_EMAC_CFG) & AT91_EMAC_SPD ? "100-" : "10-",
1053 at91_emac_read(AT91_EMAC_CFG) & AT91_EMAC_FD ? "FullDuplex" : "HalfDuplex",
1054 dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
1055 dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
1056 if ((phy_type == MII_DM9161_ID) || (lp->phy_type == MII_DM9161A_ID))
Andrew Victor427d2692006-06-20 12:10:57 +02001057 printk(KERN_INFO "%s: Davicom 9161 PHY %s\n", dev->name, (lp->phy_media == PORT_FIBRE) ? "(Fiber)" : "(Copper)");
Andrew Victord4b77802006-03-24 11:50:17 +02001058 else if (phy_type == MII_LXT971A_ID)
1059 printk(KERN_INFO "%s: Intel LXT971A PHY\n", dev->name);
1060 else if (phy_type == MII_RTL8201_ID)
1061 printk(KERN_INFO "%s: Realtek RTL8201(B)L PHY\n", dev->name);
1062 else if (phy_type == MII_BCM5221_ID)
1063 printk(KERN_INFO "%s: Broadcom BCM5221 PHY\n", dev->name);
1064 else if (phy_type == MII_DP83847_ID)
1065 printk(KERN_INFO "%s: National Semiconductor DP83847 PHY\n", dev->name);
1066 else if (phy_type == MII_AC101L_ID)
1067 printk(KERN_INFO "%s: Altima AC101L PHY\n", dev->name);
1068 else if (phy_type == MII_KS8721_ID)
1069 printk(KERN_INFO "%s: Micrel KS8721 PHY\n", dev->name);
1070
1071 return 0;
1072}
1073
1074/*
1075 * Detect MAC and PHY and perform initialization
1076 */
1077static int __init at91ether_probe(struct platform_device *pdev)
1078{
1079 unsigned int phyid1, phyid2;
1080 int detected = -1;
1081 unsigned long phy_id;
1082 unsigned short phy_address = 0;
Andrew Victor427d2692006-06-20 12:10:57 +02001083 struct clk *ether_clk;
Andrew Victord4b77802006-03-24 11:50:17 +02001084
1085 ether_clk = clk_get(&pdev->dev, "ether_clk");
Andrew Victor427d2692006-06-20 12:10:57 +02001086 if (IS_ERR(ether_clk)) {
Andrew Victord4b77802006-03-24 11:50:17 +02001087 printk(KERN_ERR "at91_ether: no clock defined\n");
1088 return -ENODEV;
1089 }
1090 clk_enable(ether_clk); /* Enable Peripheral clock */
1091
1092 while ((detected != 0) && (phy_address < 32)) {
1093 /* Read the PHY ID registers */
1094 enable_mdi();
1095 read_phy(phy_address, MII_PHYSID1, &phyid1);
1096 read_phy(phy_address, MII_PHYSID2, &phyid2);
1097 disable_mdi();
1098
1099 phy_id = (phyid1 << 16) | (phyid2 & 0xfff0);
1100 switch (phy_id) {
1101 case MII_DM9161_ID: /* Davicom 9161: PHY_ID1 = 0x181, PHY_ID2 = B881 */
1102 case MII_DM9161A_ID: /* Davicom 9161A: PHY_ID1 = 0x181, PHY_ID2 = B8A0 */
1103 case MII_LXT971A_ID: /* Intel LXT971A: PHY_ID1 = 0x13, PHY_ID2 = 78E0 */
1104 case MII_RTL8201_ID: /* Realtek RTL8201: PHY_ID1 = 0, PHY_ID2 = 0x8201 */
1105 case MII_BCM5221_ID: /* Broadcom BCM5221: PHY_ID1 = 0x40, PHY_ID2 = 0x61e0 */
1106 case MII_DP83847_ID: /* National Semiconductor DP83847: */
1107 case MII_AC101L_ID: /* Altima AC101L: PHY_ID1 = 0x22, PHY_ID2 = 0x5520 */
1108 case MII_KS8721_ID: /* Micrel KS8721: PHY_ID1 = 0x22, PHY_ID2 = 0x1610 */
Andrew Victor427d2692006-06-20 12:10:57 +02001109 detected = at91ether_setup(phy_id, phy_address, pdev, ether_clk);
Andrew Victord4b77802006-03-24 11:50:17 +02001110 break;
1111 }
1112
1113 phy_address++;
1114 }
1115
1116 clk_disable(ether_clk); /* Disable Peripheral clock */
1117
1118 return detected;
1119}
1120
1121static int __devexit at91ether_remove(struct platform_device *pdev)
1122{
Andrew Victorc57ee092006-12-05 15:09:16 +02001123 struct net_device *dev = platform_get_drvdata(pdev);
1124 struct at91_private *lp = netdev_priv(dev);
Andrew Victord4b77802006-03-24 11:50:17 +02001125
Andrew Victorc57ee092006-12-05 15:09:16 +02001126 unregister_netdev(dev);
1127 free_irq(dev->irq, dev);
Andrew Victord4b77802006-03-24 11:50:17 +02001128 dma_free_coherent(NULL, sizeof(struct recv_desc_bufs), lp->dlist, (dma_addr_t)lp->dlist_phys);
Andrew Victor427d2692006-06-20 12:10:57 +02001129 clk_put(lp->ether_clk);
Andrew Victord4b77802006-03-24 11:50:17 +02001130
Andrew Victorc57ee092006-12-05 15:09:16 +02001131 platform_set_drvdata(pdev, NULL);
1132 free_netdev(dev);
Andrew Victord4b77802006-03-24 11:50:17 +02001133 return 0;
1134}
1135
Andrew Victor00e5edc2006-06-20 12:19:13 +02001136#ifdef CONFIG_PM
1137
1138static int at91ether_suspend(struct platform_device *pdev, pm_message_t mesg)
1139{
Andrew Victor00e5edc2006-06-20 12:19:13 +02001140 struct net_device *net_dev = platform_get_drvdata(pdev);
Andrew Victorc57ee092006-12-05 15:09:16 +02001141 struct at91_private *lp = netdev_priv(net_dev);
Andrew Victor00e5edc2006-06-20 12:19:13 +02001142 int phy_irq = lp->board_data.phy_irq_pin;
1143
1144 if (netif_running(net_dev)) {
1145 if (phy_irq)
1146 disable_irq(phy_irq);
1147
1148 netif_stop_queue(net_dev);
1149 netif_device_detach(net_dev);
1150
1151 clk_disable(lp->ether_clk);
1152 }
1153 return 0;
1154}
1155
1156static int at91ether_resume(struct platform_device *pdev)
1157{
Andrew Victor00e5edc2006-06-20 12:19:13 +02001158 struct net_device *net_dev = platform_get_drvdata(pdev);
Andrew Victorc57ee092006-12-05 15:09:16 +02001159 struct at91_private *lp = netdev_priv(net_dev);
Andrew Victor00e5edc2006-06-20 12:19:13 +02001160 int phy_irq = lp->board_data.phy_irq_pin;
1161
1162 if (netif_running(net_dev)) {
1163 clk_enable(lp->ether_clk);
1164
1165 netif_device_attach(net_dev);
1166 netif_start_queue(net_dev);
1167
1168 if (phy_irq)
1169 enable_irq(phy_irq);
1170 }
1171 return 0;
1172}
1173
1174#else
1175#define at91ether_suspend NULL
1176#define at91ether_resume NULL
1177#endif
1178
Andrew Victord4b77802006-03-24 11:50:17 +02001179static struct platform_driver at91ether_driver = {
1180 .probe = at91ether_probe,
1181 .remove = __devexit_p(at91ether_remove),
Andrew Victor00e5edc2006-06-20 12:19:13 +02001182 .suspend = at91ether_suspend,
1183 .resume = at91ether_resume,
Andrew Victord4b77802006-03-24 11:50:17 +02001184 .driver = {
1185 .name = DRV_NAME,
1186 .owner = THIS_MODULE,
1187 },
1188};
1189
1190static int __init at91ether_init(void)
1191{
1192 return platform_driver_register(&at91ether_driver);
1193}
1194
1195static void __exit at91ether_exit(void)
1196{
1197 platform_driver_unregister(&at91ether_driver);
1198}
1199
1200module_init(at91ether_init)
1201module_exit(at91ether_exit)
1202
1203MODULE_LICENSE("GPL");
1204MODULE_DESCRIPTION("AT91RM9200 EMAC Ethernet driver");
1205MODULE_AUTHOR("Andrew Victor");