3 * Alchemy Au1x00 ethernet driver
5 * Copyright 2001-2003, 2006 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 * Copyright 2006 Herbert Valerio Riedel <hvr@gnu.org>
13 * converted to use linux-2.6.x's PHY framework
15 * Author: MontaVista Software, Inc.
16 * ppopov@mvista.com or source@mvista.com
18 * ########################################################################
20 * This program is free software; you can distribute it and/or modify it
21 * under the terms of the GNU General Public License (Version 2) as
22 * published by the Free Software Foundation.
24 * This program is distributed in the hope it will be useful, but WITHOUT
25 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
29 * You should have received a copy of the GNU General Public License along
30 * with this program; if not, write to the Free Software Foundation, Inc.,
31 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
33 * ########################################################################
37 #include <linux/capability.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/string.h>
42 #include <linux/timer.h>
43 #include <linux/errno.h>
45 #include <linux/ioport.h>
46 #include <linux/bitops.h>
47 #include <linux/slab.h>
48 #include <linux/interrupt.h>
49 #include <linux/init.h>
50 #include <linux/netdevice.h>
51 #include <linux/etherdevice.h>
52 #include <linux/ethtool.h>
53 #include <linux/mii.h>
54 #include <linux/skbuff.h>
55 #include <linux/delay.h>
56 #include <linux/crc32.h>
57 #include <linux/phy.h>
58 #include <linux/platform_device.h>
61 #include <asm/mipsregs.h>
64 #include <asm/processor.h>
67 #include <au1xxx_eth.h>
70 #include "au1000_eth.h"
72 #ifdef AU1000_ETH_DEBUG
73 static int au1000_debug
= 5;
75 static int au1000_debug
= 3;
78 #define AU1000_DEF_MSG_ENABLE (NETIF_MSG_DRV | \
82 #define DRV_NAME "au1000_eth"
83 #define DRV_VERSION "1.7"
84 #define DRV_AUTHOR "Pete Popov <ppopov@embeddedalley.com>"
85 #define DRV_DESC "Au1xxx on-chip Ethernet driver"
87 MODULE_AUTHOR(DRV_AUTHOR
);
88 MODULE_DESCRIPTION(DRV_DESC
);
89 MODULE_LICENSE("GPL");
90 MODULE_VERSION(DRV_VERSION
);
95 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
96 * There are four receive and four transmit descriptors. These
97 * descriptors are not in memory; rather, they are just a set of
100 * Since the Au1000 has a coherent data cache, the receive and
101 * transmit buffers are allocated from the KSEG0 segment. The
102 * hardware registers, however, are still mapped at KSEG1 to
103 * make sure there's no out-of-order writes, and that all writes
104 * complete immediately.
107 /* These addresses are only used if yamon doesn't tell us what
108 * the mac address is, and the mac address is not passed on the
111 static unsigned char au1000_mac_addr
[6] __devinitdata
= {
112 0x00, 0x50, 0xc2, 0x0c, 0x30, 0x00
115 struct au1000_private
*au_macs
[NUM_ETH_INTERFACES
];
118 * board-specific configurations
120 * PHY detection algorithm
122 * If phy_static_config is undefined, the PHY setup is
125 * mii_probe() first searches the current MAC's MII bus for a PHY,
126 * selecting the first (or last, if phy_search_highest_addr is
127 * defined) PHY address not already claimed by another netdev.
129 * If nothing was found that way when searching for the 2nd ethernet
130 * controller's PHY and phy1_search_mac0 is defined, then
131 * the first MII bus is searched as well for an unclaimed PHY; this is
132 * needed in case of a dual-PHY accessible only through the MAC0's MII
135 * Finally, if no PHY is found, then the corresponding ethernet
136 * controller is not registered to the network subsystem.
139 /* autodetection defaults: phy1_search_mac0 */
143 * most boards PHY setup should be detectable properly with the
144 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
145 * you have a switch attached, or want to use the PHY's interrupt
146 * notification capabilities) you can provide a static PHY
149 * IRQs may only be set, if a PHY address was configured
150 * If a PHY address is given, also a bus id is required to be set
152 * ps: make sure the used irqs are configured properly in the board
156 static void au1000_enable_mac(struct net_device
*dev
, int force_reset
)
159 struct au1000_private
*aup
= netdev_priv(dev
);
161 spin_lock_irqsave(&aup
->lock
, flags
);
163 if(force_reset
|| (!aup
->mac_enabled
)) {
164 *aup
->enable
= MAC_EN_CLOCK_ENABLE
;
166 *aup
->enable
= (MAC_EN_RESET0
| MAC_EN_RESET1
| MAC_EN_RESET2
167 | MAC_EN_CLOCK_ENABLE
);
170 aup
->mac_enabled
= 1;
173 spin_unlock_irqrestore(&aup
->lock
, flags
);
179 static int au1000_mdio_read(struct net_device
*dev
, int phy_addr
, int reg
)
181 struct au1000_private
*aup
= netdev_priv(dev
);
182 volatile u32
*const mii_control_reg
= &aup
->mac
->mii_control
;
183 volatile u32
*const mii_data_reg
= &aup
->mac
->mii_data
;
187 while (*mii_control_reg
& MAC_MII_BUSY
) {
189 if (--timedout
== 0) {
190 netdev_err(dev
, "read_MII busy timeout!!\n");
195 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
196 MAC_SET_MII_SELECT_PHY(phy_addr
) | MAC_MII_READ
;
198 *mii_control_reg
= mii_control
;
201 while (*mii_control_reg
& MAC_MII_BUSY
) {
203 if (--timedout
== 0) {
204 netdev_err(dev
, "mdio_read busy timeout!!\n");
208 return (int)*mii_data_reg
;
211 static void au1000_mdio_write(struct net_device
*dev
, int phy_addr
,
214 struct au1000_private
*aup
= netdev_priv(dev
);
215 volatile u32
*const mii_control_reg
= &aup
->mac
->mii_control
;
216 volatile u32
*const mii_data_reg
= &aup
->mac
->mii_data
;
220 while (*mii_control_reg
& MAC_MII_BUSY
) {
222 if (--timedout
== 0) {
223 netdev_err(dev
, "mdio_write busy timeout!!\n");
228 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
229 MAC_SET_MII_SELECT_PHY(phy_addr
) | MAC_MII_WRITE
;
231 *mii_data_reg
= value
;
232 *mii_control_reg
= mii_control
;
235 static int au1000_mdiobus_read(struct mii_bus
*bus
, int phy_addr
, int regnum
)
237 /* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
238 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus) */
239 struct net_device
*const dev
= bus
->priv
;
241 au1000_enable_mac(dev
, 0); /* make sure the MAC associated with this
242 * mii_bus is enabled */
243 return au1000_mdio_read(dev
, phy_addr
, regnum
);
246 static int au1000_mdiobus_write(struct mii_bus
*bus
, int phy_addr
, int regnum
,
249 struct net_device
*const dev
= bus
->priv
;
251 au1000_enable_mac(dev
, 0); /* make sure the MAC associated with this
252 * mii_bus is enabled */
253 au1000_mdio_write(dev
, phy_addr
, regnum
, value
);
257 static int au1000_mdiobus_reset(struct mii_bus
*bus
)
259 struct net_device
*const dev
= bus
->priv
;
261 au1000_enable_mac(dev
, 0); /* make sure the MAC associated with this
262 * mii_bus is enabled */
266 static void au1000_hard_stop(struct net_device
*dev
)
268 struct au1000_private
*aup
= netdev_priv(dev
);
270 netif_dbg(aup
, drv
, dev
, "hard stop\n");
272 aup
->mac
->control
&= ~(MAC_RX_ENABLE
| MAC_TX_ENABLE
);
276 static void au1000_enable_rx_tx(struct net_device
*dev
)
278 struct au1000_private
*aup
= netdev_priv(dev
);
280 netif_dbg(aup
, hw
, dev
, "enable_rx_tx\n");
282 aup
->mac
->control
|= (MAC_RX_ENABLE
| MAC_TX_ENABLE
);
287 au1000_adjust_link(struct net_device
*dev
)
289 struct au1000_private
*aup
= netdev_priv(dev
);
290 struct phy_device
*phydev
= aup
->phy_dev
;
293 int status_change
= 0;
295 BUG_ON(!aup
->phy_dev
);
297 spin_lock_irqsave(&aup
->lock
, flags
);
299 if (phydev
->link
&& (aup
->old_speed
!= phydev
->speed
)) {
302 switch (phydev
->speed
) {
307 netdev_warn(dev
, "Speed (%d) is not 10/100 ???\n",
312 aup
->old_speed
= phydev
->speed
;
317 if (phydev
->link
&& (aup
->old_duplex
!= phydev
->duplex
)) {
318 /* duplex mode changed */
320 /* switching duplex mode requires to disable rx and tx! */
321 au1000_hard_stop(dev
);
323 if (DUPLEX_FULL
== phydev
->duplex
)
324 aup
->mac
->control
= ((aup
->mac
->control
326 & ~MAC_DISABLE_RX_OWN
);
328 aup
->mac
->control
= ((aup
->mac
->control
330 | MAC_DISABLE_RX_OWN
);
333 au1000_enable_rx_tx(dev
);
334 aup
->old_duplex
= phydev
->duplex
;
339 if (phydev
->link
!= aup
->old_link
) {
340 /* link state changed */
345 aup
->old_duplex
= -1;
348 aup
->old_link
= phydev
->link
;
352 spin_unlock_irqrestore(&aup
->lock
, flags
);
356 netdev_info(dev
, "link up (%d/%s)\n",
358 DUPLEX_FULL
== phydev
->duplex
? "Full" : "Half");
360 netdev_info(dev
, "link down\n");
364 static int au1000_mii_probe (struct net_device
*dev
)
366 struct au1000_private
*const aup
= netdev_priv(dev
);
367 struct phy_device
*phydev
= NULL
;
369 if (aup
->phy_static_config
) {
370 BUG_ON(aup
->mac_id
< 0 || aup
->mac_id
> 1);
373 phydev
= aup
->mii_bus
->phy_map
[aup
->phy_addr
];
375 netdev_info(dev
, "using PHY-less setup\n");
380 /* find the first (lowest address) PHY on the current MAC's MII bus */
381 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++)
382 if (aup
->mii_bus
->phy_map
[phy_addr
]) {
383 phydev
= aup
->mii_bus
->phy_map
[phy_addr
];
384 if (!aup
->phy_search_highest_addr
)
385 break; /* break out with first one found */
388 if (aup
->phy1_search_mac0
) {
389 /* try harder to find a PHY */
390 if (!phydev
&& (aup
->mac_id
== 1)) {
391 /* no PHY found, maybe we have a dual PHY? */
392 dev_info(&dev
->dev
, ": no PHY found on MAC1, "
393 "let's see if it's attached to MAC0...\n");
395 /* find the first (lowest address) non-attached PHY on
396 * the MAC0 MII bus */
397 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++) {
398 struct phy_device
*const tmp_phydev
=
399 aup
->mii_bus
->phy_map
[phy_addr
];
401 if (aup
->mac_id
== 1)
405 continue; /* no PHY here... */
407 if (tmp_phydev
->attached_dev
)
408 continue; /* already claimed by MAC0 */
411 break; /* found it */
418 netdev_err(dev
, "no PHY found\n");
422 /* now we are supposed to have a proper phydev, to attach to... */
423 BUG_ON(phydev
->attached_dev
);
425 phydev
= phy_connect(dev
, dev_name(&phydev
->dev
), &au1000_adjust_link
,
426 0, PHY_INTERFACE_MODE_MII
);
428 if (IS_ERR(phydev
)) {
429 netdev_err(dev
, "Could not attach to PHY\n");
430 return PTR_ERR(phydev
);
433 /* mask with MAC supported features */
434 phydev
->supported
&= (SUPPORTED_10baseT_Half
435 | SUPPORTED_10baseT_Full
436 | SUPPORTED_100baseT_Half
437 | SUPPORTED_100baseT_Full
439 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
443 phydev
->advertising
= phydev
->supported
;
447 aup
->old_duplex
= -1;
448 aup
->phy_dev
= phydev
;
450 netdev_info(dev
, "attached PHY driver [%s] "
451 "(mii_bus:phy_addr=%s, irq=%d)\n",
452 phydev
->drv
->name
, dev_name(&phydev
->dev
), phydev
->irq
);
459 * Buffer allocation/deallocation routines. The buffer descriptor returned
460 * has the virtual and dma address of a buffer suitable for
461 * both, receive and transmit operations.
463 static db_dest_t
*au1000_GetFreeDB(struct au1000_private
*aup
)
469 aup
->pDBfree
= pDB
->pnext
;
474 void au1000_ReleaseDB(struct au1000_private
*aup
, db_dest_t
*pDB
)
476 db_dest_t
*pDBfree
= aup
->pDBfree
;
478 pDBfree
->pnext
= pDB
;
482 static void au1000_reset_mac_unlocked(struct net_device
*dev
)
484 struct au1000_private
*const aup
= netdev_priv(dev
);
487 au1000_hard_stop(dev
);
489 *aup
->enable
= MAC_EN_CLOCK_ENABLE
;
495 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
496 /* reset control bits */
497 aup
->rx_dma_ring
[i
]->buff_stat
&= ~0xf;
499 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
500 /* reset control bits */
501 aup
->tx_dma_ring
[i
]->buff_stat
&= ~0xf;
504 aup
->mac_enabled
= 0;
508 static void au1000_reset_mac(struct net_device
*dev
)
510 struct au1000_private
*const aup
= netdev_priv(dev
);
513 netif_dbg(aup
, hw
, dev
, "reset mac, aup %x\n",
516 spin_lock_irqsave(&aup
->lock
, flags
);
518 au1000_reset_mac_unlocked (dev
);
520 spin_unlock_irqrestore(&aup
->lock
, flags
);
524 * Setup the receive and transmit "rings". These pointers are the addresses
525 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
526 * these are not descriptors sitting in memory.
529 au1000_setup_hw_rings(struct au1000_private
*aup
, u32 rx_base
, u32 tx_base
)
533 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
534 aup
->rx_dma_ring
[i
] =
535 (volatile rx_dma_t
*) (rx_base
+ sizeof(rx_dma_t
)*i
);
537 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
538 aup
->tx_dma_ring
[i
] =
539 (volatile tx_dma_t
*) (tx_base
+ sizeof(tx_dma_t
)*i
);
547 static int au1000_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
549 struct au1000_private
*aup
= netdev_priv(dev
);
552 return phy_ethtool_gset(aup
->phy_dev
, cmd
);
557 static int au1000_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
559 struct au1000_private
*aup
= netdev_priv(dev
);
561 if (!capable(CAP_NET_ADMIN
))
565 return phy_ethtool_sset(aup
->phy_dev
, cmd
);
571 au1000_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
573 struct au1000_private
*aup
= netdev_priv(dev
);
575 strcpy(info
->driver
, DRV_NAME
);
576 strcpy(info
->version
, DRV_VERSION
);
577 info
->fw_version
[0] = '\0';
578 sprintf(info
->bus_info
, "%s %d", DRV_NAME
, aup
->mac_id
);
579 info
->regdump_len
= 0;
582 static void au1000_set_msglevel(struct net_device
*dev
, u32 value
)
584 struct au1000_private
*aup
= netdev_priv(dev
);
585 aup
->msg_enable
= value
;
588 static u32
au1000_get_msglevel(struct net_device
*dev
)
590 struct au1000_private
*aup
= netdev_priv(dev
);
591 return aup
->msg_enable
;
594 static const struct ethtool_ops au1000_ethtool_ops
= {
595 .get_settings
= au1000_get_settings
,
596 .set_settings
= au1000_set_settings
,
597 .get_drvinfo
= au1000_get_drvinfo
,
598 .get_link
= ethtool_op_get_link
,
599 .get_msglevel
= au1000_get_msglevel
,
600 .set_msglevel
= au1000_set_msglevel
,
605 * Initialize the interface.
607 * When the device powers up, the clocks are disabled and the
608 * mac is in reset state. When the interface is closed, we
609 * do the same -- reset the device and disable the clocks to
610 * conserve power. Thus, whenever au1000_init() is called,
611 * the device should already be in reset state.
613 static int au1000_init(struct net_device
*dev
)
615 struct au1000_private
*aup
= netdev_priv(dev
);
620 netif_dbg(aup
, hw
, dev
, "au1000_init\n");
622 /* bring the device out of reset */
623 au1000_enable_mac(dev
, 1);
625 spin_lock_irqsave(&aup
->lock
, flags
);
627 aup
->mac
->control
= 0;
628 aup
->tx_head
= (aup
->tx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
629 aup
->tx_tail
= aup
->tx_head
;
630 aup
->rx_head
= (aup
->rx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
632 aup
->mac
->mac_addr_high
= dev
->dev_addr
[5]<<8 | dev
->dev_addr
[4];
633 aup
->mac
->mac_addr_low
= dev
->dev_addr
[3]<<24 | dev
->dev_addr
[2]<<16 |
634 dev
->dev_addr
[1]<<8 | dev
->dev_addr
[0];
636 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
637 aup
->rx_dma_ring
[i
]->buff_stat
|= RX_DMA_ENABLE
;
641 control
= MAC_RX_ENABLE
| MAC_TX_ENABLE
;
642 #ifndef CONFIG_CPU_LITTLE_ENDIAN
643 control
|= MAC_BIG_ENDIAN
;
646 if (aup
->phy_dev
->link
&& (DUPLEX_FULL
== aup
->phy_dev
->duplex
))
647 control
|= MAC_FULL_DUPLEX
;
649 control
|= MAC_DISABLE_RX_OWN
;
650 } else { /* PHY-less op, assume full-duplex */
651 control
|= MAC_FULL_DUPLEX
;
654 aup
->mac
->control
= control
;
655 aup
->mac
->vlan1_tag
= 0x8100; /* activate vlan support */
658 spin_unlock_irqrestore(&aup
->lock
, flags
);
662 static inline void au1000_update_rx_stats(struct net_device
*dev
, u32 status
)
664 struct net_device_stats
*ps
= &dev
->stats
;
667 if (status
& RX_MCAST_FRAME
)
670 if (status
& RX_ERROR
) {
672 if (status
& RX_MISSED_FRAME
)
673 ps
->rx_missed_errors
++;
674 if (status
& (RX_OVERLEN
| RX_RUNT
| RX_LEN_ERROR
))
675 ps
->rx_length_errors
++;
676 if (status
& RX_CRC_ERROR
)
678 if (status
& RX_COLL
)
681 ps
->rx_bytes
+= status
& RX_FRAME_LEN_MASK
;
686 * Au1000 receive routine.
688 static int au1000_rx(struct net_device
*dev
)
690 struct au1000_private
*aup
= netdev_priv(dev
);
692 volatile rx_dma_t
*prxd
;
693 u32 buff_stat
, status
;
697 netif_dbg(aup
, rx_status
, dev
, "au1000_rx head %d\n", aup
->rx_head
);
699 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
700 buff_stat
= prxd
->buff_stat
;
701 while (buff_stat
& RX_T_DONE
) {
702 status
= prxd
->status
;
703 pDB
= aup
->rx_db_inuse
[aup
->rx_head
];
704 au1000_update_rx_stats(dev
, status
);
705 if (!(status
& RX_ERROR
)) {
708 frmlen
= (status
& RX_FRAME_LEN_MASK
);
709 frmlen
-= 4; /* Remove FCS */
710 skb
= dev_alloc_skb(frmlen
+ 2);
712 netdev_err(dev
, "Memory squeeze, dropping packet.\n");
713 dev
->stats
.rx_dropped
++;
716 skb_reserve(skb
, 2); /* 16 byte IP header align */
717 skb_copy_to_linear_data(skb
,
718 (unsigned char *)pDB
->vaddr
, frmlen
);
719 skb_put(skb
, frmlen
);
720 skb
->protocol
= eth_type_trans(skb
, dev
);
721 netif_rx(skb
); /* pass the packet to upper layers */
723 if (au1000_debug
> 4) {
724 if (status
& RX_MISSED_FRAME
)
726 if (status
& RX_WDOG_TIMER
)
728 if (status
& RX_RUNT
)
730 if (status
& RX_OVERLEN
)
731 printk("rx overlen\n");
732 if (status
& RX_COLL
)
734 if (status
& RX_MII_ERROR
)
735 printk("rx mii error\n");
736 if (status
& RX_CRC_ERROR
)
737 printk("rx crc error\n");
738 if (status
& RX_LEN_ERROR
)
739 printk("rx len error\n");
740 if (status
& RX_U_CNTRL_FRAME
)
741 printk("rx u control frame\n");
744 prxd
->buff_stat
= (u32
)(pDB
->dma_addr
| RX_DMA_ENABLE
);
745 aup
->rx_head
= (aup
->rx_head
+ 1) & (NUM_RX_DMA
- 1);
748 /* next descriptor */
749 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
750 buff_stat
= prxd
->buff_stat
;
755 static void au1000_update_tx_stats(struct net_device
*dev
, u32 status
)
757 struct au1000_private
*aup
= netdev_priv(dev
);
758 struct net_device_stats
*ps
= &dev
->stats
;
760 if (status
& TX_FRAME_ABORTED
) {
761 if (!aup
->phy_dev
|| (DUPLEX_FULL
== aup
->phy_dev
->duplex
)) {
762 if (status
& (TX_JAB_TIMEOUT
| TX_UNDERRUN
)) {
763 /* any other tx errors are only valid
764 * in half duplex mode */
766 ps
->tx_aborted_errors
++;
770 ps
->tx_aborted_errors
++;
771 if (status
& (TX_NO_CARRIER
| TX_LOSS_CARRIER
))
772 ps
->tx_carrier_errors
++;
778 * Called from the interrupt service routine to acknowledge
779 * the TX DONE bits. This is a must if the irq is setup as
782 static void au1000_tx_ack(struct net_device
*dev
)
784 struct au1000_private
*aup
= netdev_priv(dev
);
785 volatile tx_dma_t
*ptxd
;
787 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
789 while (ptxd
->buff_stat
& TX_T_DONE
) {
790 au1000_update_tx_stats(dev
, ptxd
->status
);
791 ptxd
->buff_stat
&= ~TX_T_DONE
;
795 aup
->tx_tail
= (aup
->tx_tail
+ 1) & (NUM_TX_DMA
- 1);
796 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
800 netif_wake_queue(dev
);
806 * Au1000 interrupt service routine.
808 static irqreturn_t
au1000_interrupt(int irq
, void *dev_id
)
810 struct net_device
*dev
= dev_id
;
812 /* Handle RX interrupts first to minimize chance of overrun */
816 return IRQ_RETVAL(1);
819 static int au1000_open(struct net_device
*dev
)
822 struct au1000_private
*aup
= netdev_priv(dev
);
824 netif_dbg(aup
, drv
, dev
, "open: dev=%p\n", dev
);
826 retval
= request_irq(dev
->irq
, au1000_interrupt
, 0,
829 netdev_err(dev
, "unable to get IRQ %d\n", dev
->irq
);
833 retval
= au1000_init(dev
);
835 netdev_err(dev
, "error in au1000_init\n");
836 free_irq(dev
->irq
, dev
);
841 /* cause the PHY state machine to schedule a link state check */
842 aup
->phy_dev
->state
= PHY_CHANGELINK
;
843 phy_start(aup
->phy_dev
);
846 netif_start_queue(dev
);
848 netif_dbg(aup
, drv
, dev
, "open: Initialization done.\n");
853 static int au1000_close(struct net_device
*dev
)
856 struct au1000_private
*const aup
= netdev_priv(dev
);
858 netif_dbg(aup
, drv
, dev
, "close: dev=%p\n", dev
);
861 phy_stop(aup
->phy_dev
);
863 spin_lock_irqsave(&aup
->lock
, flags
);
865 au1000_reset_mac_unlocked (dev
);
867 /* stop the device */
868 netif_stop_queue(dev
);
870 /* disable the interrupt */
871 free_irq(dev
->irq
, dev
);
872 spin_unlock_irqrestore(&aup
->lock
, flags
);
878 * Au1000 transmit routine.
880 static netdev_tx_t
au1000_tx(struct sk_buff
*skb
, struct net_device
*dev
)
882 struct au1000_private
*aup
= netdev_priv(dev
);
883 struct net_device_stats
*ps
= &dev
->stats
;
884 volatile tx_dma_t
*ptxd
;
889 netif_dbg(aup
, tx_queued
, dev
, "tx: aup %x len=%d, data=%p, head %d\n",
890 (unsigned)aup
, skb
->len
,
891 skb
->data
, aup
->tx_head
);
893 ptxd
= aup
->tx_dma_ring
[aup
->tx_head
];
894 buff_stat
= ptxd
->buff_stat
;
895 if (buff_stat
& TX_DMA_ENABLE
) {
896 /* We've wrapped around and the transmitter is still busy */
897 netif_stop_queue(dev
);
899 return NETDEV_TX_BUSY
;
900 } else if (buff_stat
& TX_T_DONE
) {
901 au1000_update_tx_stats(dev
, ptxd
->status
);
907 netif_wake_queue(dev
);
910 pDB
= aup
->tx_db_inuse
[aup
->tx_head
];
911 skb_copy_from_linear_data(skb
, (void *)pDB
->vaddr
, skb
->len
);
912 if (skb
->len
< ETH_ZLEN
) {
913 for (i
= skb
->len
; i
< ETH_ZLEN
; i
++) {
914 ((char *)pDB
->vaddr
)[i
] = 0;
916 ptxd
->len
= ETH_ZLEN
;
918 ptxd
->len
= skb
->len
;
921 ps
->tx_bytes
+= ptxd
->len
;
923 ptxd
->buff_stat
= pDB
->dma_addr
| TX_DMA_ENABLE
;
926 aup
->tx_head
= (aup
->tx_head
+ 1) & (NUM_TX_DMA
- 1);
931 * The Tx ring has been full longer than the watchdog timeout
932 * value. The transmitter must be hung?
934 static void au1000_tx_timeout(struct net_device
*dev
)
936 netdev_err(dev
, "au1000_tx_timeout: dev=%p\n", dev
);
937 au1000_reset_mac(dev
);
939 dev
->trans_start
= jiffies
; /* prevent tx timeout */
940 netif_wake_queue(dev
);
943 static void au1000_multicast_list(struct net_device
*dev
)
945 struct au1000_private
*aup
= netdev_priv(dev
);
947 netif_dbg(aup
, drv
, dev
, "au1000_multicast_list: flags=%x\n", dev
->flags
);
949 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
950 aup
->mac
->control
|= MAC_PROMISCUOUS
;
951 } else if ((dev
->flags
& IFF_ALLMULTI
) ||
952 netdev_mc_count(dev
) > MULTICAST_FILTER_LIMIT
) {
953 aup
->mac
->control
|= MAC_PASS_ALL_MULTI
;
954 aup
->mac
->control
&= ~MAC_PROMISCUOUS
;
955 netdev_info(dev
, "Pass all multicast\n");
957 struct netdev_hw_addr
*ha
;
958 u32 mc_filter
[2]; /* Multicast hash filter */
960 mc_filter
[1] = mc_filter
[0] = 0;
961 netdev_for_each_mc_addr(ha
, dev
)
962 set_bit(ether_crc(ETH_ALEN
, ha
->addr
)>>26,
964 aup
->mac
->multi_hash_high
= mc_filter
[1];
965 aup
->mac
->multi_hash_low
= mc_filter
[0];
966 aup
->mac
->control
&= ~MAC_PROMISCUOUS
;
967 aup
->mac
->control
|= MAC_HASH_MODE
;
971 static int au1000_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
973 struct au1000_private
*aup
= netdev_priv(dev
);
975 if (!netif_running(dev
))
979 return -EINVAL
; /* PHY not controllable */
981 return phy_mii_ioctl(aup
->phy_dev
, if_mii(rq
), cmd
);
984 static const struct net_device_ops au1000_netdev_ops
= {
985 .ndo_open
= au1000_open
,
986 .ndo_stop
= au1000_close
,
987 .ndo_start_xmit
= au1000_tx
,
988 .ndo_set_multicast_list
= au1000_multicast_list
,
989 .ndo_do_ioctl
= au1000_ioctl
,
990 .ndo_tx_timeout
= au1000_tx_timeout
,
991 .ndo_set_mac_address
= eth_mac_addr
,
992 .ndo_validate_addr
= eth_validate_addr
,
993 .ndo_change_mtu
= eth_change_mtu
,
996 static int __devinit
au1000_probe(struct platform_device
*pdev
)
998 static unsigned version_printed
;
999 struct au1000_private
*aup
= NULL
;
1000 struct au1000_eth_platform_data
*pd
;
1001 struct net_device
*dev
= NULL
;
1002 db_dest_t
*pDB
, *pDBfree
;
1003 int irq
, i
, err
= 0;
1004 struct resource
*base
, *macen
;
1007 base
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1009 dev_err(&pdev
->dev
, "failed to retrieve base register\n");
1014 macen
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1016 dev_err(&pdev
->dev
, "failed to retrieve MAC Enable register\n");
1021 irq
= platform_get_irq(pdev
, 0);
1023 dev_err(&pdev
->dev
, "failed to retrieve IRQ\n");
1028 if (!request_mem_region(base
->start
, resource_size(base
), pdev
->name
)) {
1029 dev_err(&pdev
->dev
, "failed to request memory region for base registers\n");
1034 if (!request_mem_region(macen
->start
, resource_size(macen
), pdev
->name
)) {
1035 dev_err(&pdev
->dev
, "failed to request memory region for MAC enable register\n");
1040 dev
= alloc_etherdev(sizeof(struct au1000_private
));
1042 dev_err(&pdev
->dev
, "alloc_etherdev failed\n");
1047 SET_NETDEV_DEV(dev
, &pdev
->dev
);
1048 platform_set_drvdata(pdev
, dev
);
1049 aup
= netdev_priv(dev
);
1051 spin_lock_init(&aup
->lock
);
1052 aup
->msg_enable
= (au1000_debug
< 4 ? AU1000_DEF_MSG_ENABLE
: au1000_debug
);
1054 /* Allocate the data buffers */
1055 /* Snooping works fine with eth on all au1xxx */
1056 aup
->vaddr
= (u32
)dma_alloc_noncoherent(NULL
, MAX_BUF_SIZE
*
1057 (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1060 dev_err(&pdev
->dev
, "failed to allocate data buffers\n");
1065 /* aup->mac is the base address of the MAC's registers */
1066 aup
->mac
= (volatile mac_reg_t
*)ioremap_nocache(base
->start
, resource_size(base
));
1068 dev_err(&pdev
->dev
, "failed to ioremap MAC registers\n");
1073 /* Setup some variables for quick register address access */
1074 aup
->enable
= (volatile u32
*)ioremap_nocache(macen
->start
, resource_size(macen
));
1076 dev_err(&pdev
->dev
, "failed to ioremap MAC enable register\n");
1080 aup
->mac_id
= pdev
->id
;
1082 if (pdev
->id
== 0) {
1083 if (prom_get_ethernet_addr(ethaddr
) == 0)
1084 memcpy(au1000_mac_addr
, ethaddr
, sizeof(au1000_mac_addr
));
1086 netdev_info(dev
, "No MAC address found\n");
1087 /* Use the hard coded MAC addresses */
1090 au1000_setup_hw_rings(aup
, MAC0_RX_DMA_ADDR
, MAC0_TX_DMA_ADDR
);
1091 } else if (pdev
->id
== 1)
1092 au1000_setup_hw_rings(aup
, MAC1_RX_DMA_ADDR
, MAC1_TX_DMA_ADDR
);
1095 * Assign to the Ethernet ports two consecutive MAC addresses
1096 * to match those that are printed on their stickers
1098 memcpy(dev
->dev_addr
, au1000_mac_addr
, sizeof(au1000_mac_addr
));
1099 dev
->dev_addr
[5] += pdev
->id
;
1102 aup
->mac_enabled
= 0;
1104 pd
= pdev
->dev
.platform_data
;
1106 dev_info(&pdev
->dev
, "no platform_data passed, PHY search on MAC0\n");
1107 aup
->phy1_search_mac0
= 1;
1109 aup
->phy_static_config
= pd
->phy_static_config
;
1110 aup
->phy_search_highest_addr
= pd
->phy_search_highest_addr
;
1111 aup
->phy1_search_mac0
= pd
->phy1_search_mac0
;
1112 aup
->phy_addr
= pd
->phy_addr
;
1113 aup
->phy_busid
= pd
->phy_busid
;
1114 aup
->phy_irq
= pd
->phy_irq
;
1117 if (aup
->phy_busid
&& aup
->phy_busid
> 0) {
1118 dev_err(&pdev
->dev
, "MAC0-associated PHY attached 2nd MACs MII"
1119 "bus not supported yet\n");
1121 goto err_mdiobus_alloc
;
1124 aup
->mii_bus
= mdiobus_alloc();
1125 if (aup
->mii_bus
== NULL
) {
1126 dev_err(&pdev
->dev
, "failed to allocate mdiobus structure\n");
1128 goto err_mdiobus_alloc
;
1131 aup
->mii_bus
->priv
= dev
;
1132 aup
->mii_bus
->read
= au1000_mdiobus_read
;
1133 aup
->mii_bus
->write
= au1000_mdiobus_write
;
1134 aup
->mii_bus
->reset
= au1000_mdiobus_reset
;
1135 aup
->mii_bus
->name
= "au1000_eth_mii";
1136 snprintf(aup
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%x", aup
->mac_id
);
1137 aup
->mii_bus
->irq
= kmalloc(sizeof(int)*PHY_MAX_ADDR
, GFP_KERNEL
);
1138 if (aup
->mii_bus
->irq
== NULL
)
1141 for (i
= 0; i
< PHY_MAX_ADDR
; ++i
)
1142 aup
->mii_bus
->irq
[i
] = PHY_POLL
;
1143 /* if known, set corresponding PHY IRQs */
1144 if (aup
->phy_static_config
)
1145 if (aup
->phy_irq
&& aup
->phy_busid
== aup
->mac_id
)
1146 aup
->mii_bus
->irq
[aup
->phy_addr
] = aup
->phy_irq
;
1148 err
= mdiobus_register(aup
->mii_bus
);
1150 dev_err(&pdev
->dev
, "failed to register MDIO bus\n");
1151 goto err_mdiobus_reg
;
1154 if (au1000_mii_probe(dev
) != 0)
1158 /* setup the data buffer descriptors and attach a buffer to each one */
1160 for (i
= 0; i
< (NUM_TX_BUFFS
+NUM_RX_BUFFS
); i
++) {
1161 pDB
->pnext
= pDBfree
;
1163 pDB
->vaddr
= (u32
*)((unsigned)aup
->vaddr
+ MAX_BUF_SIZE
*i
);
1164 pDB
->dma_addr
= (dma_addr_t
)virt_to_bus(pDB
->vaddr
);
1167 aup
->pDBfree
= pDBfree
;
1169 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1170 pDB
= au1000_GetFreeDB(aup
);
1174 aup
->rx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1175 aup
->rx_db_inuse
[i
] = pDB
;
1177 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1178 pDB
= au1000_GetFreeDB(aup
);
1182 aup
->tx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1183 aup
->tx_dma_ring
[i
]->len
= 0;
1184 aup
->tx_db_inuse
[i
] = pDB
;
1187 dev
->base_addr
= base
->start
;
1189 dev
->netdev_ops
= &au1000_netdev_ops
;
1190 SET_ETHTOOL_OPS(dev
, &au1000_ethtool_ops
);
1191 dev
->watchdog_timeo
= ETH_TX_TIMEOUT
;
1194 * The boot code uses the ethernet controller, so reset it to start
1195 * fresh. au1000_init() expects that the device is in reset state.
1197 au1000_reset_mac(dev
);
1199 err
= register_netdev(dev
);
1201 netdev_err(dev
, "Cannot register net device, aborting.\n");
1205 netdev_info(dev
, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1206 (unsigned long)base
->start
, irq
);
1207 if (version_printed
++ == 0)
1208 printk("%s version %s %s\n", DRV_NAME
, DRV_VERSION
, DRV_AUTHOR
);
1213 if (aup
->mii_bus
!= NULL
)
1214 mdiobus_unregister(aup
->mii_bus
);
1216 /* here we should have a valid dev plus aup-> register addresses
1217 * so we can reset the mac properly.*/
1218 au1000_reset_mac(dev
);
1220 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1221 if (aup
->rx_db_inuse
[i
])
1222 au1000_ReleaseDB(aup
, aup
->rx_db_inuse
[i
]);
1224 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1225 if (aup
->tx_db_inuse
[i
])
1226 au1000_ReleaseDB(aup
, aup
->tx_db_inuse
[i
]);
1229 mdiobus_free(aup
->mii_bus
);
1231 iounmap(aup
->enable
);
1235 dma_free_noncoherent(NULL
, MAX_BUF_SIZE
* (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1236 (void *)aup
->vaddr
, aup
->dma_addr
);
1240 release_mem_region(macen
->start
, resource_size(macen
));
1242 release_mem_region(base
->start
, resource_size(base
));
1247 static int __devexit
au1000_remove(struct platform_device
*pdev
)
1249 struct net_device
*dev
= platform_get_drvdata(pdev
);
1250 struct au1000_private
*aup
= netdev_priv(dev
);
1252 struct resource
*base
, *macen
;
1254 platform_set_drvdata(pdev
, NULL
);
1256 unregister_netdev(dev
);
1257 mdiobus_unregister(aup
->mii_bus
);
1258 mdiobus_free(aup
->mii_bus
);
1260 for (i
= 0; i
< NUM_RX_DMA
; i
++)
1261 if (aup
->rx_db_inuse
[i
])
1262 au1000_ReleaseDB(aup
, aup
->rx_db_inuse
[i
]);
1264 for (i
= 0; i
< NUM_TX_DMA
; i
++)
1265 if (aup
->tx_db_inuse
[i
])
1266 au1000_ReleaseDB(aup
, aup
->tx_db_inuse
[i
]);
1268 dma_free_noncoherent(NULL
, MAX_BUF_SIZE
*
1269 (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1270 (void *)aup
->vaddr
, aup
->dma_addr
);
1273 iounmap(aup
->enable
);
1275 base
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1276 release_mem_region(base
->start
, resource_size(base
));
1278 macen
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1279 release_mem_region(macen
->start
, resource_size(macen
));
1286 static struct platform_driver au1000_eth_driver
= {
1287 .probe
= au1000_probe
,
1288 .remove
= __devexit_p(au1000_remove
),
1290 .name
= "au1000-eth",
1291 .owner
= THIS_MODULE
,
1294 MODULE_ALIAS("platform:au1000-eth");
1297 static int __init
au1000_init_module(void)
1299 return platform_driver_register(&au1000_eth_driver
);
1302 static void __exit
au1000_exit_module(void)
1304 platform_driver_unregister(&au1000_eth_driver
);
1307 module_init(au1000_init_module
);
1308 module_exit(au1000_exit_module
);