3 * Alchemy Au1x00 ethernet driver
5 * Copyright 2001,2002,2003 MontaVista Software Inc.
6 * Copyright 2002 TimeSys Corp.
7 * Added ethtool/mii-tool support,
8 * Copyright 2004 Matt Porter <mporter@kernel.crashing.org>
9 * Update: 2004 Bjoern Riemer, riemer@fokus.fraunhofer.de
10 * or riemer@riemer-nt.de: fixed the link beat detection with
11 * ioctls (SIOCGMIIPHY)
12 * Author: MontaVista Software, Inc.
13 * ppopov@mvista.com or source@mvista.com
15 * ########################################################################
17 * This program is free software; you can distribute it and/or modify it
18 * under the terms of the GNU General Public License (Version 2) as
19 * published by the Free Software Foundation.
21 * This program is distributed in the hope it will be useful, but WITHOUT
22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 * You should have received a copy of the GNU General Public License along
27 * with this program; if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
30 * ########################################################################
35 #include <linux/config.h>
36 #include <linux/module.h>
37 #include <linux/kernel.h>
38 #include <linux/sched.h>
39 #include <linux/string.h>
40 #include <linux/timer.h>
41 #include <linux/errno.h>
43 #include <linux/ioport.h>
44 #include <linux/bitops.h>
45 #include <linux/slab.h>
46 #include <linux/interrupt.h>
47 #include <linux/pci.h>
48 #include <linux/init.h>
49 #include <linux/netdevice.h>
50 #include <linux/etherdevice.h>
51 #include <linux/ethtool.h>
52 #include <linux/mii.h>
53 #include <linux/skbuff.h>
54 #include <linux/delay.h>
55 #include <linux/crc32.h>
56 #include <asm/mipsregs.h>
59 #include <asm/processor.h>
61 #include <asm/mach-au1x00/au1000.h>
63 #include "au1000_eth.h"
65 #ifdef AU1000_ETH_DEBUG
66 static int au1000_debug
= 5;
68 static int au1000_debug
= 3;
71 #define DRV_NAME "au1000eth"
72 #define DRV_VERSION "1.5"
73 #define DRV_AUTHOR "Pete Popov <ppopov@embeddedalley.com>"
74 #define DRV_DESC "Au1xxx on-chip Ethernet driver"
76 MODULE_AUTHOR(DRV_AUTHOR
);
77 MODULE_DESCRIPTION(DRV_DESC
);
78 MODULE_LICENSE("GPL");
81 static void hard_stop(struct net_device
*);
82 static void enable_rx_tx(struct net_device
*dev
);
83 static struct net_device
* au1000_probe(u32 ioaddr
, int irq
, int port_num
);
84 static int au1000_init(struct net_device
*);
85 static int au1000_open(struct net_device
*);
86 static int au1000_close(struct net_device
*);
87 static int au1000_tx(struct sk_buff
*, struct net_device
*);
88 static int au1000_rx(struct net_device
*);
89 static irqreturn_t
au1000_interrupt(int, void *, struct pt_regs
*);
90 static void au1000_tx_timeout(struct net_device
*);
91 static int au1000_set_config(struct net_device
*dev
, struct ifmap
*map
);
92 static void set_rx_mode(struct net_device
*);
93 static struct net_device_stats
*au1000_get_stats(struct net_device
*);
94 static void au1000_timer(unsigned long);
95 static int au1000_ioctl(struct net_device
*, struct ifreq
*, int);
96 static int mdio_read(struct net_device
*, int, int);
97 static void mdio_write(struct net_device
*, int, int, u16
);
98 static void dump_mii(struct net_device
*dev
, int phy_id
);
101 extern void ack_rise_edge_irq(unsigned int);
102 extern int get_ethernet_addr(char *ethernet_addr
);
103 extern void str2eaddr(unsigned char *ea
, unsigned char *str
);
104 extern char * __init
prom_getcmdline(void);
107 * Theory of operation
109 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
110 * There are four receive and four transmit descriptors. These
111 * descriptors are not in memory; rather, they are just a set of
112 * hardware registers.
114 * Since the Au1000 has a coherent data cache, the receive and
115 * transmit buffers are allocated from the KSEG0 segment. The
116 * hardware registers, however, are still mapped at KSEG1 to
117 * make sure there's no out-of-order writes, and that all writes
118 * complete immediately.
121 /* These addresses are only used if yamon doesn't tell us what
122 * the mac address is, and the mac address is not passed on the
125 static unsigned char au1000_mac_addr
[6] __devinitdata
= {
126 0x00, 0x50, 0xc2, 0x0c, 0x30, 0x00
129 #define nibswap(x) ((((x) >> 4) & 0x0f) | (((x) << 4) & 0xf0))
130 #define RUN_AT(x) (jiffies + (x))
132 // For reading/writing 32-bit words from/to DMA memory
133 #define cpu_to_dma32 cpu_to_be32
134 #define dma32_to_cpu be32_to_cpu
136 struct au1000_private
*au_macs
[NUM_ETH_INTERFACES
];
139 * All of the PHY code really should be detached from the MAC
143 /* Default advertise */
144 #define GENMII_DEFAULT_ADVERTISE \
145 ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full | \
146 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full | \
149 #define GENMII_DEFAULT_FEATURES \
150 SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full | \
151 SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full | \
154 int bcm_5201_init(struct net_device
*dev
, int phy_addr
)
158 /* Stop auto-negotiation */
159 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
160 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
& ~MII_CNTL_AUTO
);
162 /* Set advertisement to 10/100 and Half/Full duplex
163 * (full capabilities) */
164 data
= mdio_read(dev
, phy_addr
, MII_ANADV
);
165 data
|= MII_NWAY_TX
| MII_NWAY_TX_FDX
| MII_NWAY_T_FDX
| MII_NWAY_T
;
166 mdio_write(dev
, phy_addr
, MII_ANADV
, data
);
168 /* Restart auto-negotiation */
169 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
170 data
|= MII_CNTL_RST_AUTO
| MII_CNTL_AUTO
;
171 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
);
173 if (au1000_debug
> 4)
174 dump_mii(dev
, phy_addr
);
178 int bcm_5201_reset(struct net_device
*dev
, int phy_addr
)
180 s16 mii_control
, timeout
;
182 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
183 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
185 for (timeout
= 100; timeout
> 0; --timeout
) {
186 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
187 if ((mii_control
& MII_CNTL_RESET
) == 0)
191 if (mii_control
& MII_CNTL_RESET
) {
192 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
199 bcm_5201_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
202 struct au1000_private
*aup
;
205 printk(KERN_ERR
"bcm_5201_status error: NULL dev\n");
208 aup
= (struct au1000_private
*) dev
->priv
;
210 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
211 if (mii_data
& MII_STAT_LINK
) {
213 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_AUX_CNTRL
);
214 if (mii_data
& MII_AUX_100
) {
215 if (mii_data
& MII_AUX_FDX
) {
216 *speed
= IF_PORT_100BASEFX
;
217 dev
->if_port
= IF_PORT_100BASEFX
;
220 *speed
= IF_PORT_100BASETX
;
221 dev
->if_port
= IF_PORT_100BASETX
;
225 *speed
= IF_PORT_10BASET
;
226 dev
->if_port
= IF_PORT_10BASET
;
233 dev
->if_port
= IF_PORT_UNKNOWN
;
238 int lsi_80227_init(struct net_device
*dev
, int phy_addr
)
240 if (au1000_debug
> 4)
241 printk("lsi_80227_init\n");
243 /* restart auto-negotiation */
244 mdio_write(dev
, phy_addr
, MII_CONTROL
,
245 MII_CNTL_F100
| MII_CNTL_AUTO
| MII_CNTL_RST_AUTO
); // | MII_CNTL_FDX);
248 /* set up LEDs to correct display */
249 #ifdef CONFIG_MIPS_MTX1
250 mdio_write(dev
, phy_addr
, 17, 0xff80);
252 mdio_write(dev
, phy_addr
, 17, 0xffc0);
255 if (au1000_debug
> 4)
256 dump_mii(dev
, phy_addr
);
260 int lsi_80227_reset(struct net_device
*dev
, int phy_addr
)
262 s16 mii_control
, timeout
;
264 if (au1000_debug
> 4) {
265 printk("lsi_80227_reset\n");
266 dump_mii(dev
, phy_addr
);
269 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
270 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
272 for (timeout
= 100; timeout
> 0; --timeout
) {
273 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
274 if ((mii_control
& MII_CNTL_RESET
) == 0)
278 if (mii_control
& MII_CNTL_RESET
) {
279 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
286 lsi_80227_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
289 struct au1000_private
*aup
;
292 printk(KERN_ERR
"lsi_80227_status error: NULL dev\n");
295 aup
= (struct au1000_private
*) dev
->priv
;
297 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
298 if (mii_data
& MII_STAT_LINK
) {
300 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_LSI_PHY_STAT
);
301 if (mii_data
& MII_LSI_PHY_STAT_SPD
) {
302 if (mii_data
& MII_LSI_PHY_STAT_FDX
) {
303 *speed
= IF_PORT_100BASEFX
;
304 dev
->if_port
= IF_PORT_100BASEFX
;
307 *speed
= IF_PORT_100BASETX
;
308 dev
->if_port
= IF_PORT_100BASETX
;
312 *speed
= IF_PORT_10BASET
;
313 dev
->if_port
= IF_PORT_10BASET
;
320 dev
->if_port
= IF_PORT_UNKNOWN
;
325 int am79c901_init(struct net_device
*dev
, int phy_addr
)
327 printk("am79c901_init\n");
331 int am79c901_reset(struct net_device
*dev
, int phy_addr
)
333 printk("am79c901_reset\n");
338 am79c901_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
343 int am79c874_init(struct net_device
*dev
, int phy_addr
)
347 /* 79c874 has quit resembled bit assignments to BCM5201 */
348 if (au1000_debug
> 4)
349 printk("am79c847_init\n");
351 /* Stop auto-negotiation */
352 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
353 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
& ~MII_CNTL_AUTO
);
355 /* Set advertisement to 10/100 and Half/Full duplex
356 * (full capabilities) */
357 data
= mdio_read(dev
, phy_addr
, MII_ANADV
);
358 data
|= MII_NWAY_TX
| MII_NWAY_TX_FDX
| MII_NWAY_T_FDX
| MII_NWAY_T
;
359 mdio_write(dev
, phy_addr
, MII_ANADV
, data
);
361 /* Restart auto-negotiation */
362 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
363 data
|= MII_CNTL_RST_AUTO
| MII_CNTL_AUTO
;
365 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
);
367 if (au1000_debug
> 4) dump_mii(dev
, phy_addr
);
371 int am79c874_reset(struct net_device
*dev
, int phy_addr
)
373 s16 mii_control
, timeout
;
375 if (au1000_debug
> 4)
376 printk("am79c874_reset\n");
378 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
379 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
381 for (timeout
= 100; timeout
> 0; --timeout
) {
382 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
383 if ((mii_control
& MII_CNTL_RESET
) == 0)
387 if (mii_control
& MII_CNTL_RESET
) {
388 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
395 am79c874_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
398 struct au1000_private
*aup
;
400 // printk("am79c874_status\n");
402 printk(KERN_ERR
"am79c874_status error: NULL dev\n");
406 aup
= (struct au1000_private
*) dev
->priv
;
407 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
409 if (mii_data
& MII_STAT_LINK
) {
411 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_AMD_PHY_STAT
);
412 if (mii_data
& MII_AMD_PHY_STAT_SPD
) {
413 if (mii_data
& MII_AMD_PHY_STAT_FDX
) {
414 *speed
= IF_PORT_100BASEFX
;
415 dev
->if_port
= IF_PORT_100BASEFX
;
418 *speed
= IF_PORT_100BASETX
;
419 dev
->if_port
= IF_PORT_100BASETX
;
423 *speed
= IF_PORT_10BASET
;
424 dev
->if_port
= IF_PORT_10BASET
;
431 dev
->if_port
= IF_PORT_UNKNOWN
;
436 int lxt971a_init(struct net_device
*dev
, int phy_addr
)
438 if (au1000_debug
> 4)
439 printk("lxt971a_init\n");
441 /* restart auto-negotiation */
442 mdio_write(dev
, phy_addr
, MII_CONTROL
,
443 MII_CNTL_F100
| MII_CNTL_AUTO
| MII_CNTL_RST_AUTO
| MII_CNTL_FDX
);
445 /* set up LEDs to correct display */
446 mdio_write(dev
, phy_addr
, 20, 0x0422);
448 if (au1000_debug
> 4)
449 dump_mii(dev
, phy_addr
);
453 int lxt971a_reset(struct net_device
*dev
, int phy_addr
)
455 s16 mii_control
, timeout
;
457 if (au1000_debug
> 4) {
458 printk("lxt971a_reset\n");
459 dump_mii(dev
, phy_addr
);
462 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
463 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
465 for (timeout
= 100; timeout
> 0; --timeout
) {
466 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
467 if ((mii_control
& MII_CNTL_RESET
) == 0)
471 if (mii_control
& MII_CNTL_RESET
) {
472 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
479 lxt971a_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
482 struct au1000_private
*aup
;
485 printk(KERN_ERR
"lxt971a_status error: NULL dev\n");
488 aup
= (struct au1000_private
*) dev
->priv
;
490 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
491 if (mii_data
& MII_STAT_LINK
) {
493 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_INTEL_PHY_STAT
);
494 if (mii_data
& MII_INTEL_PHY_STAT_SPD
) {
495 if (mii_data
& MII_INTEL_PHY_STAT_FDX
) {
496 *speed
= IF_PORT_100BASEFX
;
497 dev
->if_port
= IF_PORT_100BASEFX
;
500 *speed
= IF_PORT_100BASETX
;
501 dev
->if_port
= IF_PORT_100BASETX
;
505 *speed
= IF_PORT_10BASET
;
506 dev
->if_port
= IF_PORT_10BASET
;
513 dev
->if_port
= IF_PORT_UNKNOWN
;
518 int ks8995m_init(struct net_device
*dev
, int phy_addr
)
522 // printk("ks8995m_init\n");
523 /* Stop auto-negotiation */
524 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
525 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
& ~MII_CNTL_AUTO
);
527 /* Set advertisement to 10/100 and Half/Full duplex
528 * (full capabilities) */
529 data
= mdio_read(dev
, phy_addr
, MII_ANADV
);
530 data
|= MII_NWAY_TX
| MII_NWAY_TX_FDX
| MII_NWAY_T_FDX
| MII_NWAY_T
;
531 mdio_write(dev
, phy_addr
, MII_ANADV
, data
);
533 /* Restart auto-negotiation */
534 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
535 data
|= MII_CNTL_RST_AUTO
| MII_CNTL_AUTO
;
536 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
);
538 if (au1000_debug
> 4) dump_mii(dev
, phy_addr
);
543 int ks8995m_reset(struct net_device
*dev
, int phy_addr
)
545 s16 mii_control
, timeout
;
547 // printk("ks8995m_reset\n");
548 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
549 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
551 for (timeout
= 100; timeout
> 0; --timeout
) {
552 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
553 if ((mii_control
& MII_CNTL_RESET
) == 0)
557 if (mii_control
& MII_CNTL_RESET
) {
558 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
564 int ks8995m_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
567 struct au1000_private
*aup
;
570 printk(KERN_ERR
"ks8995m_status error: NULL dev\n");
573 aup
= (struct au1000_private
*) dev
->priv
;
575 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
576 if (mii_data
& MII_STAT_LINK
) {
578 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_AUX_CNTRL
);
579 if (mii_data
& MII_AUX_100
) {
580 if (mii_data
& MII_AUX_FDX
) {
581 *speed
= IF_PORT_100BASEFX
;
582 dev
->if_port
= IF_PORT_100BASEFX
;
585 *speed
= IF_PORT_100BASETX
;
586 dev
->if_port
= IF_PORT_100BASETX
;
590 *speed
= IF_PORT_10BASET
;
591 dev
->if_port
= IF_PORT_10BASET
;
598 dev
->if_port
= IF_PORT_UNKNOWN
;
604 smsc_83C185_init (struct net_device
*dev
, int phy_addr
)
608 if (au1000_debug
> 4)
609 printk("smsc_83C185_init\n");
611 /* Stop auto-negotiation */
612 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
613 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
& ~MII_CNTL_AUTO
);
615 /* Set advertisement to 10/100 and Half/Full duplex
616 * (full capabilities) */
617 data
= mdio_read(dev
, phy_addr
, MII_ANADV
);
618 data
|= MII_NWAY_TX
| MII_NWAY_TX_FDX
| MII_NWAY_T_FDX
| MII_NWAY_T
;
619 mdio_write(dev
, phy_addr
, MII_ANADV
, data
);
621 /* Restart auto-negotiation */
622 data
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
623 data
|= MII_CNTL_RST_AUTO
| MII_CNTL_AUTO
;
625 mdio_write(dev
, phy_addr
, MII_CONTROL
, data
);
627 if (au1000_debug
> 4) dump_mii(dev
, phy_addr
);
632 smsc_83C185_reset (struct net_device
*dev
, int phy_addr
)
634 s16 mii_control
, timeout
;
636 if (au1000_debug
> 4)
637 printk("smsc_83C185_reset\n");
639 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
640 mdio_write(dev
, phy_addr
, MII_CONTROL
, mii_control
| MII_CNTL_RESET
);
642 for (timeout
= 100; timeout
> 0; --timeout
) {
643 mii_control
= mdio_read(dev
, phy_addr
, MII_CONTROL
);
644 if ((mii_control
& MII_CNTL_RESET
) == 0)
648 if (mii_control
& MII_CNTL_RESET
) {
649 printk(KERN_ERR
"%s PHY reset timeout !\n", dev
->name
);
656 smsc_83C185_status (struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
659 struct au1000_private
*aup
;
662 printk(KERN_ERR
"smsc_83C185_status error: NULL dev\n");
666 aup
= (struct au1000_private
*) dev
->priv
;
667 mii_data
= mdio_read(dev
, aup
->phy_addr
, MII_STATUS
);
669 if (mii_data
& MII_STAT_LINK
) {
671 mii_data
= mdio_read(dev
, aup
->phy_addr
, 0x1f);
672 if (mii_data
& (1<<3)) {
673 if (mii_data
& (1<<4)) {
674 *speed
= IF_PORT_100BASEFX
;
675 dev
->if_port
= IF_PORT_100BASEFX
;
678 *speed
= IF_PORT_100BASETX
;
679 dev
->if_port
= IF_PORT_100BASETX
;
683 *speed
= IF_PORT_10BASET
;
684 dev
->if_port
= IF_PORT_10BASET
;
690 dev
->if_port
= IF_PORT_UNKNOWN
;
696 #ifdef CONFIG_MIPS_BOSPORUS
697 int stub_init(struct net_device
*dev
, int phy_addr
)
699 //printk("PHY stub_init\n");
703 int stub_reset(struct net_device
*dev
, int phy_addr
)
705 //printk("PHY stub_reset\n");
710 stub_status(struct net_device
*dev
, int phy_addr
, u16
*link
, u16
*speed
)
712 //printk("PHY stub_status\n");
715 *speed
= IF_PORT_100BASEFX
;
716 dev
->if_port
= IF_PORT_100BASEFX
;
721 struct phy_ops bcm_5201_ops
= {
727 struct phy_ops am79c874_ops
= {
733 struct phy_ops am79c901_ops
= {
739 struct phy_ops lsi_80227_ops
= {
745 struct phy_ops lxt971a_ops
= {
751 struct phy_ops ks8995m_ops
= {
757 struct phy_ops smsc_83C185_ops
= {
763 #ifdef CONFIG_MIPS_BOSPORUS
764 struct phy_ops stub_ops
= {
771 static struct mii_chip_info
{
775 struct phy_ops
*phy_ops
;
777 } mii_chip_table
[] = {
778 {"Broadcom BCM5201 10/100 BaseT PHY",0x0040,0x6212, &bcm_5201_ops
,0},
779 {"Broadcom BCM5221 10/100 BaseT PHY",0x0040,0x61e4, &bcm_5201_ops
,0},
780 {"Broadcom BCM5222 10/100 BaseT PHY",0x0040,0x6322, &bcm_5201_ops
,1},
781 {"NS DP83847 PHY", 0x2000, 0x5c30, &bcm_5201_ops
,0},
782 {"AMD 79C901 HomePNA PHY",0x0000,0x35c8, &am79c901_ops
,0},
783 {"AMD 79C874 10/100 BaseT PHY",0x0022,0x561b, &am79c874_ops
,0},
784 {"LSI 80227 10/100 BaseT PHY",0x0016,0xf840, &lsi_80227_ops
,0},
785 {"Intel LXT971A Dual Speed PHY",0x0013,0x78e2, &lxt971a_ops
,0},
786 {"Kendin KS8995M 10/100 BaseT PHY",0x0022,0x1450, &ks8995m_ops
,0},
787 {"SMSC LAN83C185 10/100 BaseT PHY",0x0007,0xc0a3, &smsc_83C185_ops
,0},
788 #ifdef CONFIG_MIPS_BOSPORUS
789 {"Stub", 0x1234, 0x5678, &stub_ops
},
794 static int mdio_read(struct net_device
*dev
, int phy_id
, int reg
)
796 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
797 volatile u32
*mii_control_reg
;
798 volatile u32
*mii_data_reg
;
802 #ifdef CONFIG_BCM5222_DUAL_PHY
803 /* First time we probe, it's for the mac0 phy.
804 * Since we haven't determined yet that we have a dual phy,
805 * aup->mii->mii_control_reg won't be setup and we'll
806 * default to the else statement.
807 * By the time we probe for the mac1 phy, the mii_control_reg
808 * will be setup to be the address of the mac0 phy control since
809 * both phys are controlled through mac0.
811 if (aup
->mii
&& aup
->mii
->mii_control_reg
) {
812 mii_control_reg
= aup
->mii
->mii_control_reg
;
813 mii_data_reg
= aup
->mii
->mii_data_reg
;
815 else if (au_macs
[0]->mii
&& au_macs
[0]->mii
->mii_control_reg
) {
816 /* assume both phys are controlled through mac0 */
817 mii_control_reg
= au_macs
[0]->mii
->mii_control_reg
;
818 mii_data_reg
= au_macs
[0]->mii
->mii_data_reg
;
823 /* default control and data reg addresses */
824 mii_control_reg
= &aup
->mac
->mii_control
;
825 mii_data_reg
= &aup
->mac
->mii_data
;
828 while (*mii_control_reg
& MAC_MII_BUSY
) {
830 if (--timedout
== 0) {
831 printk(KERN_ERR
"%s: read_MII busy timeout!!\n",
837 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
838 MAC_SET_MII_SELECT_PHY(phy_id
) | MAC_MII_READ
;
840 *mii_control_reg
= mii_control
;
843 while (*mii_control_reg
& MAC_MII_BUSY
) {
845 if (--timedout
== 0) {
846 printk(KERN_ERR
"%s: mdio_read busy timeout!!\n",
851 return (int)*mii_data_reg
;
854 static void mdio_write(struct net_device
*dev
, int phy_id
, int reg
, u16 value
)
856 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
857 volatile u32
*mii_control_reg
;
858 volatile u32
*mii_data_reg
;
862 #ifdef CONFIG_BCM5222_DUAL_PHY
863 if (aup
->mii
&& aup
->mii
->mii_control_reg
) {
864 mii_control_reg
= aup
->mii
->mii_control_reg
;
865 mii_data_reg
= aup
->mii
->mii_data_reg
;
867 else if (au_macs
[0]->mii
&& au_macs
[0]->mii
->mii_control_reg
) {
868 /* assume both phys are controlled through mac0 */
869 mii_control_reg
= au_macs
[0]->mii
->mii_control_reg
;
870 mii_data_reg
= au_macs
[0]->mii
->mii_data_reg
;
875 /* default control and data reg addresses */
876 mii_control_reg
= &aup
->mac
->mii_control
;
877 mii_data_reg
= &aup
->mac
->mii_data
;
880 while (*mii_control_reg
& MAC_MII_BUSY
) {
882 if (--timedout
== 0) {
883 printk(KERN_ERR
"%s: mdio_write busy timeout!!\n",
889 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
890 MAC_SET_MII_SELECT_PHY(phy_id
) | MAC_MII_WRITE
;
892 *mii_data_reg
= value
;
893 *mii_control_reg
= mii_control
;
897 static void dump_mii(struct net_device
*dev
, int phy_id
)
901 for (i
= 0; i
< 7; i
++) {
902 if ((val
= mdio_read(dev
, phy_id
, i
)) >= 0)
903 printk("%s: MII Reg %d=%x\n", dev
->name
, i
, val
);
905 for (i
= 16; i
< 25; i
++) {
906 if ((val
= mdio_read(dev
, phy_id
, i
)) >= 0)
907 printk("%s: MII Reg %d=%x\n", dev
->name
, i
, val
);
911 static int mii_probe (struct net_device
* dev
)
913 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
915 #ifdef CONFIG_MIPS_BOSPORUS
919 /* search for total of 32 possible mii phy addresses */
920 for (phy_addr
= 0; phy_addr
< 32; phy_addr
++) {
922 u16 phy_id0
, phy_id1
;
925 #ifdef CONFIG_BCM5222_DUAL_PHY
926 /* Mask the already found phy, try next one */
927 if (au_macs
[0]->mii
&& au_macs
[0]->mii
->mii_control_reg
) {
928 if (au_macs
[0]->phy_addr
== phy_addr
)
933 mii_status
= mdio_read(dev
, phy_addr
, MII_STATUS
);
934 if (mii_status
== 0xffff || mii_status
== 0x0000)
935 /* the mii is not accessable, try next one */
938 phy_id0
= mdio_read(dev
, phy_addr
, MII_PHY_ID0
);
939 phy_id1
= mdio_read(dev
, phy_addr
, MII_PHY_ID1
);
941 /* search our mii table for the current mii */
942 for (i
= 0; mii_chip_table
[i
].phy_id1
; i
++) {
943 if (phy_id0
== mii_chip_table
[i
].phy_id0
&&
944 phy_id1
== mii_chip_table
[i
].phy_id1
) {
945 struct mii_phy
* mii_phy
= aup
->mii
;
947 printk(KERN_INFO
"%s: %s at phy address %d\n",
948 dev
->name
, mii_chip_table
[i
].name
,
950 #ifdef CONFIG_MIPS_BOSPORUS
953 mii_phy
->chip_info
= mii_chip_table
+i
;
954 aup
->phy_addr
= phy_addr
;
955 aup
->want_autoneg
= 1;
956 aup
->phy_ops
= mii_chip_table
[i
].phy_ops
;
957 aup
->phy_ops
->phy_init(dev
,phy_addr
);
959 // Check for dual-phy and then store required
960 // values and set indicators. We need to do
961 // this now since mdio_{read,write} need the
962 // control and data register addresses.
963 #ifdef CONFIG_BCM5222_DUAL_PHY
964 if ( mii_chip_table
[i
].dual_phy
) {
966 /* assume both phys are controlled
967 * through MAC0. Board specific? */
970 if (!au_macs
[0] || !au_macs
[0]->mii
)
972 aup
->mii
->mii_control_reg
= (u32
*)
973 &au_macs
[0]->mac
->mii_control
;
974 aup
->mii
->mii_data_reg
= (u32
*)
975 &au_macs
[0]->mac
->mii_data
;
984 #ifdef CONFIG_MIPS_BOSPORUS
985 /* This is a workaround for the Micrel/Kendin 5 port switch
986 The second MAC doesn't see a PHY connected... so we need to
987 trick it into thinking we have one.
989 If this kernel is run on another Au1500 development board
990 the stub will be found as well as the actual PHY. However,
991 the last found PHY will be used... usually at Addr 31 (Db1500).
995 u16 phy_id0
, phy_id1
;
1001 /* search our mii table for the current mii */
1002 for (i
= 0; mii_chip_table
[i
].phy_id1
; i
++) {
1003 if (phy_id0
== mii_chip_table
[i
].phy_id0
&&
1004 phy_id1
== mii_chip_table
[i
].phy_id1
) {
1005 struct mii_phy
* mii_phy
;
1007 printk(KERN_INFO
"%s: %s at phy address %d\n",
1008 dev
->name
, mii_chip_table
[i
].name
,
1010 mii_phy
= kmalloc(sizeof(struct mii_phy
),
1013 mii_phy
->chip_info
= mii_chip_table
+i
;
1014 aup
->phy_addr
= phy_addr
;
1015 mii_phy
->next
= aup
->mii
;
1017 mii_chip_table
[i
].phy_ops
;
1019 aup
->phy_ops
->phy_init(dev
,phy_addr
);
1021 printk(KERN_ERR
"%s: out of memory\n",
1025 mii_phy
->chip_info
= mii_chip_table
+i
;
1026 aup
->phy_addr
= phy_addr
;
1027 aup
->phy_ops
= mii_chip_table
[i
].phy_ops
;
1028 aup
->phy_ops
->phy_init(dev
,phy_addr
);
1033 if (aup
->mac_id
== 0) {
1034 /* the Bosporus phy responds to addresses 0-5 but
1035 * 5 is the correct one.
1041 if (aup
->mii
->chip_info
== NULL
) {
1042 printk(KERN_ERR
"%s: Au1x No known MII transceivers found!\n",
1047 printk(KERN_INFO
"%s: Using %s as default\n",
1048 dev
->name
, aup
->mii
->chip_info
->name
);
1055 * Buffer allocation/deallocation routines. The buffer descriptor returned
1056 * has the virtual and dma address of a buffer suitable for
1057 * both, receive and transmit operations.
1059 static db_dest_t
*GetFreeDB(struct au1000_private
*aup
)
1065 aup
->pDBfree
= pDB
->pnext
;
1070 void ReleaseDB(struct au1000_private
*aup
, db_dest_t
*pDB
)
1072 db_dest_t
*pDBfree
= aup
->pDBfree
;
1074 pDBfree
->pnext
= pDB
;
1078 static void enable_rx_tx(struct net_device
*dev
)
1080 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1082 if (au1000_debug
> 4)
1083 printk(KERN_INFO
"%s: enable_rx_tx\n", dev
->name
);
1085 aup
->mac
->control
|= (MAC_RX_ENABLE
| MAC_TX_ENABLE
);
1089 static void hard_stop(struct net_device
*dev
)
1091 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1093 if (au1000_debug
> 4)
1094 printk(KERN_INFO
"%s: hard stop\n", dev
->name
);
1096 aup
->mac
->control
&= ~(MAC_RX_ENABLE
| MAC_TX_ENABLE
);
1101 static void reset_mac(struct net_device
*dev
)
1105 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1107 if (au1000_debug
> 4)
1108 printk(KERN_INFO
"%s: reset mac, aup %x\n",
1109 dev
->name
, (unsigned)aup
);
1111 spin_lock_irqsave(&aup
->lock
, flags
);
1112 if (aup
->timer
.function
== &au1000_timer
) {/* check if timer initted */
1113 del_timer(&aup
->timer
);
1117 #ifdef CONFIG_BCM5222_DUAL_PHY
1118 if (aup
->mac_id
!= 0) {
1120 /* If BCM5222, we can't leave MAC0 in reset because then
1121 * we can't access the dual phy for ETH1 */
1122 *aup
->enable
= MAC_EN_CLOCK_ENABLE
;
1126 #ifdef CONFIG_BCM5222_DUAL_PHY
1130 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1131 /* reset control bits */
1132 aup
->rx_dma_ring
[i
]->buff_stat
&= ~0xf;
1134 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1135 /* reset control bits */
1136 aup
->tx_dma_ring
[i
]->buff_stat
&= ~0xf;
1138 spin_unlock_irqrestore(&aup
->lock
, flags
);
1143 * Setup the receive and transmit "rings". These pointers are the addresses
1144 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
1145 * these are not descriptors sitting in memory.
1148 setup_hw_rings(struct au1000_private
*aup
, u32 rx_base
, u32 tx_base
)
1152 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1153 aup
->rx_dma_ring
[i
] =
1154 (volatile rx_dma_t
*) (rx_base
+ sizeof(rx_dma_t
)*i
);
1156 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1157 aup
->tx_dma_ring
[i
] =
1158 (volatile tx_dma_t
*) (tx_base
+ sizeof(tx_dma_t
)*i
);
1167 struct net_device
*dev
;
1173 * Setup the base address and interupt of the Au1xxx ethernet macs
1174 * based on cpu type and whether the interface is enabled in sys_pinfunc
1175 * register. The last interface is enabled if SYS_PF_NI2 (bit 4) is 0.
1177 static int __init
au1000_init_module(void)
1179 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1180 int ni
= (int)((au_readl(SYS_PINFUNC
) & (u32
)(SYS_PF_NI2
)) >> 4);
1181 struct net_device
*dev
;
1182 int i
, found_one
= 0;
1184 switch (c
->cputype
) {
1185 #ifdef CONFIG_SOC_AU1000
1188 iflist
[0].base_addr
= AU1000_ETH0_BASE
;
1189 iflist
[1].base_addr
= AU1000_ETH1_BASE
;
1190 iflist
[0].macen_addr
= AU1000_MAC0_ENABLE
;
1191 iflist
[1].macen_addr
= AU1000_MAC1_ENABLE
;
1192 iflist
[0].irq
= AU1000_MAC0_DMA_INT
;
1193 iflist
[1].irq
= AU1000_MAC1_DMA_INT
;
1196 #ifdef CONFIG_SOC_AU1100
1199 iflist
[0].base_addr
= AU1100_ETH0_BASE
;
1200 iflist
[0].macen_addr
= AU1100_MAC0_ENABLE
;
1201 iflist
[0].irq
= AU1100_MAC0_DMA_INT
;
1204 #ifdef CONFIG_SOC_AU1500
1207 iflist
[0].base_addr
= AU1500_ETH0_BASE
;
1208 iflist
[1].base_addr
= AU1500_ETH1_BASE
;
1209 iflist
[0].macen_addr
= AU1500_MAC0_ENABLE
;
1210 iflist
[1].macen_addr
= AU1500_MAC1_ENABLE
;
1211 iflist
[0].irq
= AU1500_MAC0_DMA_INT
;
1212 iflist
[1].irq
= AU1500_MAC1_DMA_INT
;
1215 #ifdef CONFIG_SOC_AU1550
1218 iflist
[0].base_addr
= AU1550_ETH0_BASE
;
1219 iflist
[1].base_addr
= AU1550_ETH1_BASE
;
1220 iflist
[0].macen_addr
= AU1550_MAC0_ENABLE
;
1221 iflist
[1].macen_addr
= AU1550_MAC1_ENABLE
;
1222 iflist
[0].irq
= AU1550_MAC0_DMA_INT
;
1223 iflist
[1].irq
= AU1550_MAC1_DMA_INT
;
1229 for(i
= 0; i
< num_ifs
; i
++) {
1230 dev
= au1000_probe(iflist
[i
].base_addr
, iflist
[i
].irq
, i
);
1231 iflist
[i
].dev
= dev
;
1240 static int au1000_setup_aneg(struct net_device
*dev
, u32 advertise
)
1242 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1245 /* Setup standard advertise */
1246 adv
= mdio_read(dev
, aup
->phy_addr
, MII_ADVERTISE
);
1247 adv
&= ~(ADVERTISE_ALL
| ADVERTISE_100BASE4
);
1248 if (advertise
& ADVERTISED_10baseT_Half
)
1249 adv
|= ADVERTISE_10HALF
;
1250 if (advertise
& ADVERTISED_10baseT_Full
)
1251 adv
|= ADVERTISE_10FULL
;
1252 if (advertise
& ADVERTISED_100baseT_Half
)
1253 adv
|= ADVERTISE_100HALF
;
1254 if (advertise
& ADVERTISED_100baseT_Full
)
1255 adv
|= ADVERTISE_100FULL
;
1256 mdio_write(dev
, aup
->phy_addr
, MII_ADVERTISE
, adv
);
1258 /* Start/Restart aneg */
1259 ctl
= mdio_read(dev
, aup
->phy_addr
, MII_BMCR
);
1260 ctl
|= (BMCR_ANENABLE
| BMCR_ANRESTART
);
1261 mdio_write(dev
, aup
->phy_addr
, MII_BMCR
, ctl
);
1266 static int au1000_setup_forced(struct net_device
*dev
, int speed
, int fd
)
1268 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1271 ctl
= mdio_read(dev
, aup
->phy_addr
, MII_BMCR
);
1272 ctl
&= ~(BMCR_FULLDPLX
| BMCR_SPEED100
| BMCR_ANENABLE
);
1274 /* First reset the PHY */
1275 mdio_write(dev
, aup
->phy_addr
, MII_BMCR
, ctl
| BMCR_RESET
);
1277 /* Select speed & duplex */
1282 ctl
|= BMCR_SPEED100
;
1288 if (fd
== DUPLEX_FULL
)
1289 ctl
|= BMCR_FULLDPLX
;
1290 mdio_write(dev
, aup
->phy_addr
, MII_BMCR
, ctl
);
1297 au1000_start_link(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1299 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1305 /* Default advertise */
1306 advertise
= GENMII_DEFAULT_ADVERTISE
;
1307 autoneg
= aup
->want_autoneg
;
1308 forced_speed
= SPEED_100
;
1309 forced_duplex
= DUPLEX_FULL
;
1311 /* Setup link parameters */
1313 if (cmd
->autoneg
== AUTONEG_ENABLE
) {
1314 advertise
= cmd
->advertising
;
1319 forced_speed
= cmd
->speed
;
1320 forced_duplex
= cmd
->duplex
;
1324 /* Configure PHY & start aneg */
1325 aup
->want_autoneg
= autoneg
;
1327 au1000_setup_aneg(dev
, advertise
);
1329 au1000_setup_forced(dev
, forced_speed
, forced_duplex
);
1330 mod_timer(&aup
->timer
, jiffies
+ HZ
);
1333 static int au1000_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1335 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1338 cmd
->supported
= GENMII_DEFAULT_FEATURES
;
1339 cmd
->advertising
= GENMII_DEFAULT_ADVERTISE
;
1340 cmd
->port
= PORT_MII
;
1341 cmd
->transceiver
= XCVR_EXTERNAL
;
1342 cmd
->phy_address
= aup
->phy_addr
;
1343 spin_lock_irq(&aup
->lock
);
1344 cmd
->autoneg
= aup
->want_autoneg
;
1345 aup
->phy_ops
->phy_status(dev
, aup
->phy_addr
, &link
, &speed
);
1346 if ((speed
== IF_PORT_100BASETX
) || (speed
== IF_PORT_100BASEFX
))
1347 cmd
->speed
= SPEED_100
;
1348 else if (speed
== IF_PORT_10BASET
)
1349 cmd
->speed
= SPEED_10
;
1350 if (link
&& (dev
->if_port
== IF_PORT_100BASEFX
))
1351 cmd
->duplex
= DUPLEX_FULL
;
1353 cmd
->duplex
= DUPLEX_HALF
;
1354 spin_unlock_irq(&aup
->lock
);
1358 static int au1000_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
1360 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1361 unsigned long features
= GENMII_DEFAULT_FEATURES
;
1363 if (!capable(CAP_NET_ADMIN
))
1366 if (cmd
->autoneg
!= AUTONEG_ENABLE
&& cmd
->autoneg
!= AUTONEG_DISABLE
)
1368 if (cmd
->autoneg
== AUTONEG_ENABLE
&& cmd
->advertising
== 0)
1370 if (cmd
->duplex
!= DUPLEX_HALF
&& cmd
->duplex
!= DUPLEX_FULL
)
1372 if (cmd
->autoneg
== AUTONEG_DISABLE
)
1373 switch (cmd
->speed
) {
1375 if (cmd
->duplex
== DUPLEX_HALF
&&
1376 (features
& SUPPORTED_10baseT_Half
) == 0)
1378 if (cmd
->duplex
== DUPLEX_FULL
&&
1379 (features
& SUPPORTED_10baseT_Full
) == 0)
1383 if (cmd
->duplex
== DUPLEX_HALF
&&
1384 (features
& SUPPORTED_100baseT_Half
) == 0)
1386 if (cmd
->duplex
== DUPLEX_FULL
&&
1387 (features
& SUPPORTED_100baseT_Full
) == 0)
1393 else if ((features
& SUPPORTED_Autoneg
) == 0)
1396 spin_lock_irq(&aup
->lock
);
1397 au1000_start_link(dev
, cmd
);
1398 spin_unlock_irq(&aup
->lock
);
1402 static int au1000_nway_reset(struct net_device
*dev
)
1404 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1406 if (!aup
->want_autoneg
)
1408 spin_lock_irq(&aup
->lock
);
1409 au1000_start_link(dev
, NULL
);
1410 spin_unlock_irq(&aup
->lock
);
1415 au1000_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
1417 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
1419 strcpy(info
->driver
, DRV_NAME
);
1420 strcpy(info
->version
, DRV_VERSION
);
1421 info
->fw_version
[0] = '\0';
1422 sprintf(info
->bus_info
, "%s %d", DRV_NAME
, aup
->mac_id
);
1423 info
->regdump_len
= 0;
1426 static u32
au1000_get_link(struct net_device
*dev
)
1428 return netif_carrier_ok(dev
);
1431 static struct ethtool_ops au1000_ethtool_ops
= {
1432 .get_settings
= au1000_get_settings
,
1433 .set_settings
= au1000_set_settings
,
1434 .get_drvinfo
= au1000_get_drvinfo
,
1435 .nway_reset
= au1000_nway_reset
,
1436 .get_link
= au1000_get_link
1439 static struct net_device
*
1440 au1000_probe(u32 ioaddr
, int irq
, int port_num
)
1442 static unsigned version_printed
= 0;
1443 struct au1000_private
*aup
= NULL
;
1444 struct net_device
*dev
= NULL
;
1445 db_dest_t
*pDB
, *pDBfree
;
1446 char *pmac
, *argptr
;
1450 if (!request_mem_region(CPHYSADDR(ioaddr
), MAC_IOSIZE
, "Au1x00 ENET"))
1453 if (version_printed
++ == 0)
1454 printk("%s version %s %s\n", DRV_NAME
, DRV_VERSION
, DRV_AUTHOR
);
1456 dev
= alloc_etherdev(sizeof(struct au1000_private
));
1458 printk (KERN_ERR
"au1000 eth: alloc_etherdev failed\n");
1462 if ((err
= register_netdev(dev
))) {
1463 printk(KERN_ERR
"Au1x_eth Cannot register net device err %d\n",
1469 printk("%s: Au1x Ethernet found at 0x%x, irq %d\n",
1470 dev
->name
, ioaddr
, irq
);
1474 /* Allocate the data buffers */
1475 /* Snooping works fine with eth on all au1xxx */
1476 aup
->vaddr
= (u32
)dma_alloc_noncoherent(NULL
,
1477 MAX_BUF_SIZE
* (NUM_TX_BUFFS
+NUM_RX_BUFFS
),
1482 release_mem_region(CPHYSADDR(ioaddr
), MAC_IOSIZE
);
1486 /* aup->mac is the base address of the MAC's registers */
1487 aup
->mac
= (volatile mac_reg_t
*)((unsigned long)ioaddr
);
1488 /* Setup some variables for quick register address access */
1489 if (ioaddr
== iflist
[0].base_addr
)
1491 /* check env variables first */
1492 if (!get_ethernet_addr(ethaddr
)) {
1493 memcpy(au1000_mac_addr
, ethaddr
, sizeof(au1000_mac_addr
));
1495 /* Check command line */
1496 argptr
= prom_getcmdline();
1497 if ((pmac
= strstr(argptr
, "ethaddr=")) == NULL
) {
1498 printk(KERN_INFO
"%s: No mac address found\n",
1500 /* use the hard coded mac addresses */
1502 str2eaddr(ethaddr
, pmac
+ strlen("ethaddr="));
1503 memcpy(au1000_mac_addr
, ethaddr
,
1504 sizeof(au1000_mac_addr
));
1507 aup
->enable
= (volatile u32
*)
1508 ((unsigned long)iflist
[0].macen_addr
);
1509 memcpy(dev
->dev_addr
, au1000_mac_addr
, sizeof(au1000_mac_addr
));
1510 setup_hw_rings(aup
, MAC0_RX_DMA_ADDR
, MAC0_TX_DMA_ADDR
);
1515 if (ioaddr
== iflist
[1].base_addr
)
1517 aup
->enable
= (volatile u32
*)
1518 ((unsigned long)iflist
[1].macen_addr
);
1519 memcpy(dev
->dev_addr
, au1000_mac_addr
, sizeof(au1000_mac_addr
));
1520 dev
->dev_addr
[4] += 0x10;
1521 setup_hw_rings(aup
, MAC1_RX_DMA_ADDR
, MAC1_TX_DMA_ADDR
);
1527 printk(KERN_ERR
"%s: bad ioaddr\n", dev
->name
);
1530 /* bring the device out of reset, otherwise probing the mii
1532 *aup
->enable
= MAC_EN_CLOCK_ENABLE
;
1534 *aup
->enable
= MAC_EN_RESET0
| MAC_EN_RESET1
|
1535 MAC_EN_RESET2
| MAC_EN_CLOCK_ENABLE
;
1538 aup
->mii
= kmalloc(sizeof(struct mii_phy
), GFP_KERNEL
);
1540 printk(KERN_ERR
"%s: out of memory\n", dev
->name
);
1543 aup
->mii
->next
= NULL
;
1544 aup
->mii
->chip_info
= NULL
;
1545 aup
->mii
->status
= 0;
1546 aup
->mii
->mii_control_reg
= 0;
1547 aup
->mii
->mii_data_reg
= 0;
1549 if (mii_probe(dev
) != 0) {
1554 /* setup the data buffer descriptors and attach a buffer to each one */
1556 for (i
= 0; i
< (NUM_TX_BUFFS
+NUM_RX_BUFFS
); i
++) {
1557 pDB
->pnext
= pDBfree
;
1559 pDB
->vaddr
= (u32
*)((unsigned)aup
->vaddr
+ MAX_BUF_SIZE
*i
);
1560 pDB
->dma_addr
= (dma_addr_t
)virt_to_bus(pDB
->vaddr
);
1563 aup
->pDBfree
= pDBfree
;
1565 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1566 pDB
= GetFreeDB(aup
);
1570 aup
->rx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1571 aup
->rx_db_inuse
[i
] = pDB
;
1573 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1574 pDB
= GetFreeDB(aup
);
1578 aup
->tx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1579 aup
->tx_dma_ring
[i
]->len
= 0;
1580 aup
->tx_db_inuse
[i
] = pDB
;
1583 spin_lock_init(&aup
->lock
);
1584 dev
->base_addr
= ioaddr
;
1586 dev
->open
= au1000_open
;
1587 dev
->hard_start_xmit
= au1000_tx
;
1588 dev
->stop
= au1000_close
;
1589 dev
->get_stats
= au1000_get_stats
;
1590 dev
->set_multicast_list
= &set_rx_mode
;
1591 dev
->do_ioctl
= &au1000_ioctl
;
1592 SET_ETHTOOL_OPS(dev
, &au1000_ethtool_ops
);
1593 dev
->set_config
= &au1000_set_config
;
1594 dev
->tx_timeout
= au1000_tx_timeout
;
1595 dev
->watchdog_timeo
= ETH_TX_TIMEOUT
;
1598 * The boot code uses the ethernet controller, so reset it to start
1599 * fresh. au1000_init() expects that the device is in reset state.
1606 /* here we should have a valid dev plus aup-> register addresses
1607 * so we can reset the mac properly.*/
1610 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1611 if (aup
->rx_db_inuse
[i
])
1612 ReleaseDB(aup
, aup
->rx_db_inuse
[i
]);
1614 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1615 if (aup
->tx_db_inuse
[i
])
1616 ReleaseDB(aup
, aup
->tx_db_inuse
[i
]);
1618 dma_free_noncoherent(NULL
,
1619 MAX_BUF_SIZE
* (NUM_TX_BUFFS
+NUM_RX_BUFFS
),
1622 unregister_netdev(dev
);
1624 release_mem_region(CPHYSADDR(ioaddr
), MAC_IOSIZE
);
1629 * Initialize the interface.
1631 * When the device powers up, the clocks are disabled and the
1632 * mac is in reset state. When the interface is closed, we
1633 * do the same -- reset the device and disable the clocks to
1634 * conserve power. Thus, whenever au1000_init() is called,
1635 * the device should already be in reset state.
1637 static int au1000_init(struct net_device
*dev
)
1639 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1645 if (au1000_debug
> 4)
1646 printk("%s: au1000_init\n", dev
->name
);
1648 spin_lock_irqsave(&aup
->lock
, flags
);
1650 /* bring the device out of reset */
1651 *aup
->enable
= MAC_EN_CLOCK_ENABLE
;
1653 *aup
->enable
= MAC_EN_RESET0
| MAC_EN_RESET1
|
1654 MAC_EN_RESET2
| MAC_EN_CLOCK_ENABLE
;
1657 aup
->mac
->control
= 0;
1658 aup
->tx_head
= (aup
->tx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
1659 aup
->tx_tail
= aup
->tx_head
;
1660 aup
->rx_head
= (aup
->rx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
1662 aup
->mac
->mac_addr_high
= dev
->dev_addr
[5]<<8 | dev
->dev_addr
[4];
1663 aup
->mac
->mac_addr_low
= dev
->dev_addr
[3]<<24 | dev
->dev_addr
[2]<<16 |
1664 dev
->dev_addr
[1]<<8 | dev
->dev_addr
[0];
1666 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1667 aup
->rx_dma_ring
[i
]->buff_stat
|= RX_DMA_ENABLE
;
1671 aup
->phy_ops
->phy_status(dev
, aup
->phy_addr
, &link
, &speed
);
1672 control
= MAC_DISABLE_RX_OWN
| MAC_RX_ENABLE
| MAC_TX_ENABLE
;
1673 #ifndef CONFIG_CPU_LITTLE_ENDIAN
1674 control
|= MAC_BIG_ENDIAN
;
1676 if (link
&& (dev
->if_port
== IF_PORT_100BASEFX
)) {
1677 control
|= MAC_FULL_DUPLEX
;
1680 aup
->mac
->control
= control
;
1681 aup
->mac
->vlan1_tag
= 0x8100; /* activate vlan support */
1684 spin_unlock_irqrestore(&aup
->lock
, flags
);
1688 static void au1000_timer(unsigned long data
)
1690 struct net_device
*dev
= (struct net_device
*)data
;
1691 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1692 unsigned char if_port
;
1696 /* fatal error, don't restart the timer */
1697 printk(KERN_ERR
"au1000_timer error: NULL dev\n");
1701 if_port
= dev
->if_port
;
1702 if (aup
->phy_ops
->phy_status(dev
, aup
->phy_addr
, &link
, &speed
) == 0) {
1704 if (!netif_carrier_ok(dev
)) {
1705 netif_carrier_on(dev
);
1706 printk(KERN_INFO
"%s: link up\n", dev
->name
);
1710 if (netif_carrier_ok(dev
)) {
1711 netif_carrier_off(dev
);
1713 printk(KERN_INFO
"%s: link down\n", dev
->name
);
1718 if (link
&& (dev
->if_port
!= if_port
) &&
1719 (dev
->if_port
!= IF_PORT_UNKNOWN
)) {
1721 if (dev
->if_port
== IF_PORT_100BASEFX
) {
1722 printk(KERN_INFO
"%s: going to full duplex\n",
1724 aup
->mac
->control
|= MAC_FULL_DUPLEX
;
1728 aup
->mac
->control
&= ~MAC_FULL_DUPLEX
;
1734 aup
->timer
.expires
= RUN_AT((1*HZ
));
1735 aup
->timer
.data
= (unsigned long)dev
;
1736 aup
->timer
.function
= &au1000_timer
; /* timer handler */
1737 add_timer(&aup
->timer
);
1741 static int au1000_open(struct net_device
*dev
)
1744 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1746 if (au1000_debug
> 4)
1747 printk("%s: open: dev=%p\n", dev
->name
, dev
);
1749 if ((retval
= au1000_init(dev
))) {
1750 printk(KERN_ERR
"%s: error in au1000_init\n", dev
->name
);
1751 free_irq(dev
->irq
, dev
);
1754 netif_start_queue(dev
);
1756 if ((retval
= request_irq(dev
->irq
, &au1000_interrupt
, 0,
1758 printk(KERN_ERR
"%s: unable to get IRQ %d\n",
1759 dev
->name
, dev
->irq
);
1763 init_timer(&aup
->timer
); /* used in ioctl() */
1764 aup
->timer
.expires
= RUN_AT((3*HZ
));
1765 aup
->timer
.data
= (unsigned long)dev
;
1766 aup
->timer
.function
= &au1000_timer
; /* timer handler */
1767 add_timer(&aup
->timer
);
1769 if (au1000_debug
> 4)
1770 printk("%s: open: Initialization done.\n", dev
->name
);
1775 static int au1000_close(struct net_device
*dev
)
1778 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1780 if (au1000_debug
> 4)
1781 printk("%s: close: dev=%p\n", dev
->name
, dev
);
1785 spin_lock_irqsave(&aup
->lock
, flags
);
1787 /* stop the device */
1788 netif_stop_queue(dev
);
1790 /* disable the interrupt */
1791 free_irq(dev
->irq
, dev
);
1792 spin_unlock_irqrestore(&aup
->lock
, flags
);
1797 static void __exit
au1000_cleanup_module(void)
1800 struct net_device
*dev
;
1801 struct au1000_private
*aup
;
1803 for (i
= 0; i
< num_ifs
; i
++) {
1804 dev
= iflist
[i
].dev
;
1806 aup
= (struct au1000_private
*) dev
->priv
;
1807 unregister_netdev(dev
);
1809 for (j
= 0; j
< NUM_RX_DMA
; j
++) {
1810 if (aup
->rx_db_inuse
[j
])
1811 ReleaseDB(aup
, aup
->rx_db_inuse
[j
]);
1813 for (j
= 0; j
< NUM_TX_DMA
; j
++) {
1814 if (aup
->tx_db_inuse
[j
])
1815 ReleaseDB(aup
, aup
->tx_db_inuse
[j
]);
1817 dma_free_noncoherent(NULL
,
1818 MAX_BUF_SIZE
* (NUM_TX_BUFFS
+NUM_RX_BUFFS
),
1822 release_mem_region(CPHYSADDR(iflist
[i
].base_addr
), MAC_IOSIZE
);
1827 static void update_tx_stats(struct net_device
*dev
, u32 status
)
1829 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1830 struct net_device_stats
*ps
= &aup
->stats
;
1832 if (status
& TX_FRAME_ABORTED
) {
1833 if (dev
->if_port
== IF_PORT_100BASEFX
) {
1834 if (status
& (TX_JAB_TIMEOUT
| TX_UNDERRUN
)) {
1835 /* any other tx errors are only valid
1836 * in half duplex mode */
1838 ps
->tx_aborted_errors
++;
1843 ps
->tx_aborted_errors
++;
1844 if (status
& (TX_NO_CARRIER
| TX_LOSS_CARRIER
))
1845 ps
->tx_carrier_errors
++;
1852 * Called from the interrupt service routine to acknowledge
1853 * the TX DONE bits. This is a must if the irq is setup as
1856 static void au1000_tx_ack(struct net_device
*dev
)
1858 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1859 volatile tx_dma_t
*ptxd
;
1861 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
1863 while (ptxd
->buff_stat
& TX_T_DONE
) {
1864 update_tx_stats(dev
, ptxd
->status
);
1865 ptxd
->buff_stat
&= ~TX_T_DONE
;
1869 aup
->tx_tail
= (aup
->tx_tail
+ 1) & (NUM_TX_DMA
- 1);
1870 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
1874 netif_wake_queue(dev
);
1881 * Au1000 transmit routine.
1883 static int au1000_tx(struct sk_buff
*skb
, struct net_device
*dev
)
1885 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1886 struct net_device_stats
*ps
= &aup
->stats
;
1887 volatile tx_dma_t
*ptxd
;
1892 if (au1000_debug
> 5)
1893 printk("%s: tx: aup %x len=%d, data=%p, head %d\n",
1894 dev
->name
, (unsigned)aup
, skb
->len
,
1895 skb
->data
, aup
->tx_head
);
1897 ptxd
= aup
->tx_dma_ring
[aup
->tx_head
];
1898 buff_stat
= ptxd
->buff_stat
;
1899 if (buff_stat
& TX_DMA_ENABLE
) {
1900 /* We've wrapped around and the transmitter is still busy */
1901 netif_stop_queue(dev
);
1905 else if (buff_stat
& TX_T_DONE
) {
1906 update_tx_stats(dev
, ptxd
->status
);
1912 netif_wake_queue(dev
);
1915 pDB
= aup
->tx_db_inuse
[aup
->tx_head
];
1916 memcpy((void *)pDB
->vaddr
, skb
->data
, skb
->len
);
1917 if (skb
->len
< ETH_ZLEN
) {
1918 for (i
=skb
->len
; i
<ETH_ZLEN
; i
++) {
1919 ((char *)pDB
->vaddr
)[i
] = 0;
1921 ptxd
->len
= ETH_ZLEN
;
1924 ptxd
->len
= skb
->len
;
1927 ps
->tx_bytes
+= ptxd
->len
;
1929 ptxd
->buff_stat
= pDB
->dma_addr
| TX_DMA_ENABLE
;
1932 aup
->tx_head
= (aup
->tx_head
+ 1) & (NUM_TX_DMA
- 1);
1933 dev
->trans_start
= jiffies
;
1937 static inline void update_rx_stats(struct net_device
*dev
, u32 status
)
1939 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1940 struct net_device_stats
*ps
= &aup
->stats
;
1943 if (status
& RX_MCAST_FRAME
)
1946 if (status
& RX_ERROR
) {
1948 if (status
& RX_MISSED_FRAME
)
1949 ps
->rx_missed_errors
++;
1950 if (status
& (RX_OVERLEN
| RX_OVERLEN
| RX_LEN_ERROR
))
1951 ps
->rx_length_errors
++;
1952 if (status
& RX_CRC_ERROR
)
1953 ps
->rx_crc_errors
++;
1954 if (status
& RX_COLL
)
1958 ps
->rx_bytes
+= status
& RX_FRAME_LEN_MASK
;
1963 * Au1000 receive routine.
1965 static int au1000_rx(struct net_device
*dev
)
1967 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
1968 struct sk_buff
*skb
;
1969 volatile rx_dma_t
*prxd
;
1970 u32 buff_stat
, status
;
1974 if (au1000_debug
> 5)
1975 printk("%s: au1000_rx head %d\n", dev
->name
, aup
->rx_head
);
1977 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
1978 buff_stat
= prxd
->buff_stat
;
1979 while (buff_stat
& RX_T_DONE
) {
1980 status
= prxd
->status
;
1981 pDB
= aup
->rx_db_inuse
[aup
->rx_head
];
1982 update_rx_stats(dev
, status
);
1983 if (!(status
& RX_ERROR
)) {
1986 frmlen
= (status
& RX_FRAME_LEN_MASK
);
1987 frmlen
-= 4; /* Remove FCS */
1988 skb
= dev_alloc_skb(frmlen
+ 2);
1991 "%s: Memory squeeze, dropping packet.\n",
1993 aup
->stats
.rx_dropped
++;
1997 skb_reserve(skb
, 2); /* 16 byte IP header align */
1998 eth_copy_and_sum(skb
,
1999 (unsigned char *)pDB
->vaddr
, frmlen
, 0);
2000 skb_put(skb
, frmlen
);
2001 skb
->protocol
= eth_type_trans(skb
, dev
);
2002 netif_rx(skb
); /* pass the packet to upper layers */
2005 if (au1000_debug
> 4) {
2006 if (status
& RX_MISSED_FRAME
)
2007 printk("rx miss\n");
2008 if (status
& RX_WDOG_TIMER
)
2009 printk("rx wdog\n");
2010 if (status
& RX_RUNT
)
2011 printk("rx runt\n");
2012 if (status
& RX_OVERLEN
)
2013 printk("rx overlen\n");
2014 if (status
& RX_COLL
)
2015 printk("rx coll\n");
2016 if (status
& RX_MII_ERROR
)
2017 printk("rx mii error\n");
2018 if (status
& RX_CRC_ERROR
)
2019 printk("rx crc error\n");
2020 if (status
& RX_LEN_ERROR
)
2021 printk("rx len error\n");
2022 if (status
& RX_U_CNTRL_FRAME
)
2023 printk("rx u control frame\n");
2024 if (status
& RX_MISSED_FRAME
)
2025 printk("rx miss\n");
2028 prxd
->buff_stat
= (u32
)(pDB
->dma_addr
| RX_DMA_ENABLE
);
2029 aup
->rx_head
= (aup
->rx_head
+ 1) & (NUM_RX_DMA
- 1);
2032 /* next descriptor */
2033 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
2034 buff_stat
= prxd
->buff_stat
;
2035 dev
->last_rx
= jiffies
;
2042 * Au1000 interrupt service routine.
2044 static irqreturn_t
au1000_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
2046 struct net_device
*dev
= (struct net_device
*) dev_id
;
2049 printk(KERN_ERR
"%s: isr: null dev ptr\n", dev
->name
);
2050 return IRQ_RETVAL(1);
2053 /* Handle RX interrupts first to minimize chance of overrun */
2057 return IRQ_RETVAL(1);
2062 * The Tx ring has been full longer than the watchdog timeout
2063 * value. The transmitter must be hung?
2065 static void au1000_tx_timeout(struct net_device
*dev
)
2067 printk(KERN_ERR
"%s: au1000_tx_timeout: dev=%p\n", dev
->name
, dev
);
2070 dev
->trans_start
= jiffies
;
2071 netif_wake_queue(dev
);
2074 static void set_rx_mode(struct net_device
*dev
)
2076 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
2078 if (au1000_debug
> 4)
2079 printk("%s: set_rx_mode: flags=%x\n", dev
->name
, dev
->flags
);
2081 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
2082 aup
->mac
->control
|= MAC_PROMISCUOUS
;
2083 printk(KERN_INFO
"%s: Promiscuous mode enabled.\n", dev
->name
);
2084 } else if ((dev
->flags
& IFF_ALLMULTI
) ||
2085 dev
->mc_count
> MULTICAST_FILTER_LIMIT
) {
2086 aup
->mac
->control
|= MAC_PASS_ALL_MULTI
;
2087 aup
->mac
->control
&= ~MAC_PROMISCUOUS
;
2088 printk(KERN_INFO
"%s: Pass all multicast\n", dev
->name
);
2091 struct dev_mc_list
*mclist
;
2092 u32 mc_filter
[2]; /* Multicast hash filter */
2094 mc_filter
[1] = mc_filter
[0] = 0;
2095 for (i
= 0, mclist
= dev
->mc_list
; mclist
&& i
< dev
->mc_count
;
2096 i
++, mclist
= mclist
->next
) {
2097 set_bit(ether_crc(ETH_ALEN
, mclist
->dmi_addr
)>>26,
2100 aup
->mac
->multi_hash_high
= mc_filter
[1];
2101 aup
->mac
->multi_hash_low
= mc_filter
[0];
2102 aup
->mac
->control
&= ~MAC_PROMISCUOUS
;
2103 aup
->mac
->control
|= MAC_HASH_MODE
;
2108 static int au1000_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2110 struct au1000_private
*aup
= (struct au1000_private
*)dev
->priv
;
2111 u16
*data
= (u16
*)&rq
->ifr_ifru
;
2114 case SIOCDEVPRIVATE
: /* Get the address of the PHY in use. */
2116 if (!netif_running(dev
)) return -EINVAL
;
2117 data
[0] = aup
->phy_addr
;
2118 case SIOCDEVPRIVATE
+1: /* Read the specified MII register. */
2120 data
[3] = mdio_read(dev
, data
[0], data
[1]);
2122 case SIOCDEVPRIVATE
+2: /* Write the specified MII register */
2124 if (!capable(CAP_NET_ADMIN
))
2126 mdio_write(dev
, data
[0], data
[1],data
[2]);
2135 static int au1000_set_config(struct net_device
*dev
, struct ifmap
*map
)
2137 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
2140 if (au1000_debug
> 4) {
2141 printk("%s: set_config called: dev->if_port %d map->port %x\n",
2142 dev
->name
, dev
->if_port
, map
->port
);
2146 case IF_PORT_UNKNOWN
: /* use auto here */
2147 printk(KERN_INFO
"%s: config phy for aneg\n",
2149 dev
->if_port
= map
->port
;
2150 /* Link Down: the timer will bring it up */
2151 netif_carrier_off(dev
);
2153 /* read current control */
2154 control
= mdio_read(dev
, aup
->phy_addr
, MII_CONTROL
);
2155 control
&= ~(MII_CNTL_FDX
| MII_CNTL_F100
);
2157 /* enable auto negotiation and reset the negotiation */
2158 mdio_write(dev
, aup
->phy_addr
, MII_CONTROL
,
2159 control
| MII_CNTL_AUTO
|
2164 case IF_PORT_10BASET
: /* 10BaseT */
2165 printk(KERN_INFO
"%s: config phy for 10BaseT\n",
2167 dev
->if_port
= map
->port
;
2169 /* Link Down: the timer will bring it up */
2170 netif_carrier_off(dev
);
2172 /* set Speed to 10Mbps, Half Duplex */
2173 control
= mdio_read(dev
, aup
->phy_addr
, MII_CONTROL
);
2174 control
&= ~(MII_CNTL_F100
| MII_CNTL_AUTO
|
2177 /* disable auto negotiation and force 10M/HD mode*/
2178 mdio_write(dev
, aup
->phy_addr
, MII_CONTROL
, control
);
2181 case IF_PORT_100BASET
: /* 100BaseT */
2182 case IF_PORT_100BASETX
: /* 100BaseTx */
2183 printk(KERN_INFO
"%s: config phy for 100BaseTX\n",
2185 dev
->if_port
= map
->port
;
2187 /* Link Down: the timer will bring it up */
2188 netif_carrier_off(dev
);
2190 /* set Speed to 100Mbps, Half Duplex */
2191 /* disable auto negotiation and enable 100MBit Mode */
2192 control
= mdio_read(dev
, aup
->phy_addr
, MII_CONTROL
);
2193 control
&= ~(MII_CNTL_AUTO
| MII_CNTL_FDX
);
2194 control
|= MII_CNTL_F100
;
2195 mdio_write(dev
, aup
->phy_addr
, MII_CONTROL
, control
);
2198 case IF_PORT_100BASEFX
: /* 100BaseFx */
2199 printk(KERN_INFO
"%s: config phy for 100BaseFX\n",
2201 dev
->if_port
= map
->port
;
2203 /* Link Down: the timer will bring it up */
2204 netif_carrier_off(dev
);
2206 /* set Speed to 100Mbps, Full Duplex */
2207 /* disable auto negotiation and enable 100MBit Mode */
2208 control
= mdio_read(dev
, aup
->phy_addr
, MII_CONTROL
);
2209 control
&= ~MII_CNTL_AUTO
;
2210 control
|= MII_CNTL_F100
| MII_CNTL_FDX
;
2211 mdio_write(dev
, aup
->phy_addr
, MII_CONTROL
, control
);
2213 case IF_PORT_10BASE2
: /* 10Base2 */
2214 case IF_PORT_AUI
: /* AUI */
2215 /* These Modes are not supported (are they?)*/
2216 printk(KERN_ERR
"%s: 10Base2/AUI not supported",
2222 printk(KERN_ERR
"%s: Invalid media selected",
2229 static struct net_device_stats
*au1000_get_stats(struct net_device
*dev
)
2231 struct au1000_private
*aup
= (struct au1000_private
*) dev
->priv
;
2233 if (au1000_debug
> 4)
2234 printk("%s: au1000_get_stats: dev=%p\n", dev
->name
, dev
);
2236 if (netif_device_present(dev
)) {
2242 module_init(au1000_init_module
);
2243 module_exit(au1000_cleanup_module
);