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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39 #include <linux/capability.h>
40 #include <linux/dma-mapping.h>
41 #include <linux/module.h>
42 #include <linux/kernel.h>
43 #include <linux/string.h>
44 #include <linux/timer.h>
45 #include <linux/errno.h>
47 #include <linux/ioport.h>
48 #include <linux/bitops.h>
49 #include <linux/slab.h>
50 #include <linux/interrupt.h>
51 #include <linux/init.h>
52 #include <linux/netdevice.h>
53 #include <linux/etherdevice.h>
54 #include <linux/ethtool.h>
55 #include <linux/mii.h>
56 #include <linux/skbuff.h>
57 #include <linux/delay.h>
58 #include <linux/crc32.h>
59 #include <linux/phy.h>
60 #include <linux/platform_device.h>
61 #include <linux/cpu.h>
64 #include <asm/mipsregs.h>
66 #include <asm/processor.h>
69 #include <au1xxx_eth.h>
72 #include "au1000_eth.h"
74 #ifdef AU1000_ETH_DEBUG
75 static int au1000_debug
= 5;
77 static int au1000_debug
= 3;
80 #define AU1000_DEF_MSG_ENABLE (NETIF_MSG_DRV | \
84 #define DRV_NAME "au1000_eth"
85 #define DRV_VERSION "1.7"
86 #define DRV_AUTHOR "Pete Popov <ppopov@embeddedalley.com>"
87 #define DRV_DESC "Au1xxx on-chip Ethernet driver"
89 MODULE_AUTHOR(DRV_AUTHOR
);
90 MODULE_DESCRIPTION(DRV_DESC
);
91 MODULE_LICENSE("GPL");
92 MODULE_VERSION(DRV_VERSION
);
97 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
98 * There are four receive and four transmit descriptors. These
99 * descriptors are not in memory; rather, they are just a set of
100 * hardware registers.
102 * Since the Au1000 has a coherent data cache, the receive and
103 * transmit buffers are allocated from the KSEG0 segment. The
104 * hardware registers, however, are still mapped at KSEG1 to
105 * make sure there's no out-of-order writes, and that all writes
106 * complete immediately.
109 struct au1000_private
*au_macs
[NUM_ETH_INTERFACES
];
112 * board-specific configurations
114 * PHY detection algorithm
116 * If phy_static_config is undefined, the PHY setup is
119 * mii_probe() first searches the current MAC's MII bus for a PHY,
120 * selecting the first (or last, if phy_search_highest_addr is
121 * defined) PHY address not already claimed by another netdev.
123 * If nothing was found that way when searching for the 2nd ethernet
124 * controller's PHY and phy1_search_mac0 is defined, then
125 * the first MII bus is searched as well for an unclaimed PHY; this is
126 * needed in case of a dual-PHY accessible only through the MAC0's MII
129 * Finally, if no PHY is found, then the corresponding ethernet
130 * controller is not registered to the network subsystem.
133 /* autodetection defaults: phy1_search_mac0 */
137 * most boards PHY setup should be detectable properly with the
138 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
139 * you have a switch attached, or want to use the PHY's interrupt
140 * notification capabilities) you can provide a static PHY
143 * IRQs may only be set, if a PHY address was configured
144 * If a PHY address is given, also a bus id is required to be set
146 * ps: make sure the used irqs are configured properly in the board
150 static void au1000_enable_mac(struct net_device
*dev
, int force_reset
)
153 struct au1000_private
*aup
= netdev_priv(dev
);
155 spin_lock_irqsave(&aup
->lock
, flags
);
157 if (force_reset
|| (!aup
->mac_enabled
)) {
158 writel(MAC_EN_CLOCK_ENABLE
, &aup
->enable
);
160 writel((MAC_EN_RESET0
| MAC_EN_RESET1
| MAC_EN_RESET2
161 | MAC_EN_CLOCK_ENABLE
), &aup
->enable
);
164 aup
->mac_enabled
= 1;
167 spin_unlock_irqrestore(&aup
->lock
, flags
);
173 static int au1000_mdio_read(struct net_device
*dev
, int phy_addr
, int reg
)
175 struct au1000_private
*aup
= netdev_priv(dev
);
176 u32
*const mii_control_reg
= &aup
->mac
->mii_control
;
177 u32
*const mii_data_reg
= &aup
->mac
->mii_data
;
181 while (readl(mii_control_reg
) & MAC_MII_BUSY
) {
183 if (--timedout
== 0) {
184 netdev_err(dev
, "read_MII busy timeout!!\n");
189 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
190 MAC_SET_MII_SELECT_PHY(phy_addr
) | MAC_MII_READ
;
192 writel(mii_control
, mii_control_reg
);
195 while (readl(mii_control_reg
) & MAC_MII_BUSY
) {
197 if (--timedout
== 0) {
198 netdev_err(dev
, "mdio_read busy timeout!!\n");
202 return readl(mii_data_reg
);
205 static void au1000_mdio_write(struct net_device
*dev
, int phy_addr
,
208 struct au1000_private
*aup
= netdev_priv(dev
);
209 u32
*const mii_control_reg
= &aup
->mac
->mii_control
;
210 u32
*const mii_data_reg
= &aup
->mac
->mii_data
;
214 while (readl(mii_control_reg
) & MAC_MII_BUSY
) {
216 if (--timedout
== 0) {
217 netdev_err(dev
, "mdio_write busy timeout!!\n");
222 mii_control
= MAC_SET_MII_SELECT_REG(reg
) |
223 MAC_SET_MII_SELECT_PHY(phy_addr
) | MAC_MII_WRITE
;
225 writel(value
, mii_data_reg
);
226 writel(mii_control
, mii_control_reg
);
229 static int au1000_mdiobus_read(struct mii_bus
*bus
, int phy_addr
, int regnum
)
231 /* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
232 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus)
234 struct net_device
*const dev
= bus
->priv
;
236 /* make sure the MAC associated with this
239 au1000_enable_mac(dev
, 0);
241 return au1000_mdio_read(dev
, phy_addr
, regnum
);
244 static int au1000_mdiobus_write(struct mii_bus
*bus
, int phy_addr
, int regnum
,
247 struct net_device
*const dev
= bus
->priv
;
249 /* make sure the MAC associated with this
252 au1000_enable_mac(dev
, 0);
254 au1000_mdio_write(dev
, phy_addr
, regnum
, value
);
258 static int au1000_mdiobus_reset(struct mii_bus
*bus
)
260 struct net_device
*const dev
= bus
->priv
;
262 /* make sure the MAC associated with this
265 au1000_enable_mac(dev
, 0);
270 static void au1000_hard_stop(struct net_device
*dev
)
272 struct au1000_private
*aup
= netdev_priv(dev
);
275 netif_dbg(aup
, drv
, dev
, "hard stop\n");
277 reg
= readl(&aup
->mac
->control
);
278 reg
&= ~(MAC_RX_ENABLE
| MAC_TX_ENABLE
);
279 writel(reg
, &aup
->mac
->control
);
283 static void au1000_enable_rx_tx(struct net_device
*dev
)
285 struct au1000_private
*aup
= netdev_priv(dev
);
288 netif_dbg(aup
, hw
, dev
, "enable_rx_tx\n");
290 reg
= readl(&aup
->mac
->control
);
291 reg
|= (MAC_RX_ENABLE
| MAC_TX_ENABLE
);
292 writel(reg
, &aup
->mac
->control
);
297 au1000_adjust_link(struct net_device
*dev
)
299 struct au1000_private
*aup
= netdev_priv(dev
);
300 struct phy_device
*phydev
= aup
->phy_dev
;
304 int status_change
= 0;
306 BUG_ON(!aup
->phy_dev
);
308 spin_lock_irqsave(&aup
->lock
, flags
);
310 if (phydev
->link
&& (aup
->old_speed
!= phydev
->speed
)) {
313 switch (phydev
->speed
) {
318 netdev_warn(dev
, "Speed (%d) is not 10/100 ???\n",
323 aup
->old_speed
= phydev
->speed
;
328 if (phydev
->link
&& (aup
->old_duplex
!= phydev
->duplex
)) {
329 /* duplex mode changed */
331 /* switching duplex mode requires to disable rx and tx! */
332 au1000_hard_stop(dev
);
334 reg
= readl(&aup
->mac
->control
);
335 if (DUPLEX_FULL
== phydev
->duplex
) {
336 reg
|= MAC_FULL_DUPLEX
;
337 reg
&= ~MAC_DISABLE_RX_OWN
;
339 reg
&= ~MAC_FULL_DUPLEX
;
340 reg
|= MAC_DISABLE_RX_OWN
;
342 writel(reg
, &aup
->mac
->control
);
345 au1000_enable_rx_tx(dev
);
346 aup
->old_duplex
= phydev
->duplex
;
351 if (phydev
->link
!= aup
->old_link
) {
352 /* link state changed */
357 aup
->old_duplex
= -1;
360 aup
->old_link
= phydev
->link
;
364 spin_unlock_irqrestore(&aup
->lock
, flags
);
368 netdev_info(dev
, "link up (%d/%s)\n",
370 DUPLEX_FULL
== phydev
->duplex
? "Full" : "Half");
372 netdev_info(dev
, "link down\n");
376 static int au1000_mii_probe(struct net_device
*dev
)
378 struct au1000_private
*const aup
= netdev_priv(dev
);
379 struct phy_device
*phydev
= NULL
;
382 if (aup
->phy_static_config
) {
383 BUG_ON(aup
->mac_id
< 0 || aup
->mac_id
> 1);
386 phydev
= aup
->mii_bus
->phy_map
[aup
->phy_addr
];
388 netdev_info(dev
, "using PHY-less setup\n");
392 /* find the first (lowest address) PHY
393 * on the current MAC's MII bus
395 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++)
396 if (aup
->mii_bus
->phy_map
[phy_addr
]) {
397 phydev
= aup
->mii_bus
->phy_map
[phy_addr
];
398 if (!aup
->phy_search_highest_addr
)
399 /* break out with first one found */
403 if (aup
->phy1_search_mac0
) {
404 /* try harder to find a PHY */
405 if (!phydev
&& (aup
->mac_id
== 1)) {
406 /* no PHY found, maybe we have a dual PHY? */
407 dev_info(&dev
->dev
, ": no PHY found on MAC1, "
408 "let's see if it's attached to MAC0...\n");
410 /* find the first (lowest address) non-attached
411 * PHY on the MAC0 MII bus
413 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++) {
414 struct phy_device
*const tmp_phydev
=
415 aup
->mii_bus
->phy_map
[phy_addr
];
417 if (aup
->mac_id
== 1)
424 /* already claimed by MAC0 */
425 if (tmp_phydev
->attached_dev
)
429 break; /* found it */
435 netdev_err(dev
, "no PHY found\n");
439 /* now we are supposed to have a proper phydev, to attach to... */
440 BUG_ON(phydev
->attached_dev
);
442 phydev
= phy_connect(dev
, dev_name(&phydev
->dev
), &au1000_adjust_link
,
443 0, PHY_INTERFACE_MODE_MII
);
445 if (IS_ERR(phydev
)) {
446 netdev_err(dev
, "Could not attach to PHY\n");
447 return PTR_ERR(phydev
);
450 /* mask with MAC supported features */
451 phydev
->supported
&= (SUPPORTED_10baseT_Half
452 | SUPPORTED_10baseT_Full
453 | SUPPORTED_100baseT_Half
454 | SUPPORTED_100baseT_Full
456 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
460 phydev
->advertising
= phydev
->supported
;
464 aup
->old_duplex
= -1;
465 aup
->phy_dev
= phydev
;
467 netdev_info(dev
, "attached PHY driver [%s] "
468 "(mii_bus:phy_addr=%s, irq=%d)\n",
469 phydev
->drv
->name
, dev_name(&phydev
->dev
), phydev
->irq
);
476 * Buffer allocation/deallocation routines. The buffer descriptor returned
477 * has the virtual and dma address of a buffer suitable for
478 * both, receive and transmit operations.
480 static struct db_dest
*au1000_GetFreeDB(struct au1000_private
*aup
)
486 aup
->pDBfree
= pDB
->pnext
;
491 void au1000_ReleaseDB(struct au1000_private
*aup
, struct db_dest
*pDB
)
493 struct db_dest
*pDBfree
= aup
->pDBfree
;
495 pDBfree
->pnext
= pDB
;
499 static void au1000_reset_mac_unlocked(struct net_device
*dev
)
501 struct au1000_private
*const aup
= netdev_priv(dev
);
504 au1000_hard_stop(dev
);
506 writel(MAC_EN_CLOCK_ENABLE
, &aup
->enable
);
508 writel(0, &aup
->enable
);
512 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
513 /* reset control bits */
514 aup
->rx_dma_ring
[i
]->buff_stat
&= ~0xf;
516 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
517 /* reset control bits */
518 aup
->tx_dma_ring
[i
]->buff_stat
&= ~0xf;
521 aup
->mac_enabled
= 0;
525 static void au1000_reset_mac(struct net_device
*dev
)
527 struct au1000_private
*const aup
= netdev_priv(dev
);
530 netif_dbg(aup
, hw
, dev
, "reset mac, aup %x\n",
533 spin_lock_irqsave(&aup
->lock
, flags
);
535 au1000_reset_mac_unlocked(dev
);
537 spin_unlock_irqrestore(&aup
->lock
, flags
);
541 * Setup the receive and transmit "rings". These pointers are the addresses
542 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
543 * these are not descriptors sitting in memory.
546 au1000_setup_hw_rings(struct au1000_private
*aup
, u32 rx_base
, u32 tx_base
)
550 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
551 aup
->rx_dma_ring
[i
] =
553 (rx_base
+ sizeof(struct rx_dma
)*i
);
555 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
556 aup
->tx_dma_ring
[i
] =
558 (tx_base
+ sizeof(struct tx_dma
)*i
);
566 static int au1000_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
568 struct au1000_private
*aup
= netdev_priv(dev
);
571 return phy_ethtool_gset(aup
->phy_dev
, cmd
);
576 static int au1000_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
578 struct au1000_private
*aup
= netdev_priv(dev
);
580 if (!capable(CAP_NET_ADMIN
))
584 return phy_ethtool_sset(aup
->phy_dev
, cmd
);
590 au1000_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*info
)
592 struct au1000_private
*aup
= netdev_priv(dev
);
594 strcpy(info
->driver
, DRV_NAME
);
595 strcpy(info
->version
, DRV_VERSION
);
596 info
->fw_version
[0] = '\0';
597 sprintf(info
->bus_info
, "%s %d", DRV_NAME
, aup
->mac_id
);
598 info
->regdump_len
= 0;
601 static void au1000_set_msglevel(struct net_device
*dev
, u32 value
)
603 struct au1000_private
*aup
= netdev_priv(dev
);
604 aup
->msg_enable
= value
;
607 static u32
au1000_get_msglevel(struct net_device
*dev
)
609 struct au1000_private
*aup
= netdev_priv(dev
);
610 return aup
->msg_enable
;
613 static const struct ethtool_ops au1000_ethtool_ops
= {
614 .get_settings
= au1000_get_settings
,
615 .set_settings
= au1000_set_settings
,
616 .get_drvinfo
= au1000_get_drvinfo
,
617 .get_link
= ethtool_op_get_link
,
618 .get_msglevel
= au1000_get_msglevel
,
619 .set_msglevel
= au1000_set_msglevel
,
624 * Initialize the interface.
626 * When the device powers up, the clocks are disabled and the
627 * mac is in reset state. When the interface is closed, we
628 * do the same -- reset the device and disable the clocks to
629 * conserve power. Thus, whenever au1000_init() is called,
630 * the device should already be in reset state.
632 static int au1000_init(struct net_device
*dev
)
634 struct au1000_private
*aup
= netdev_priv(dev
);
639 netif_dbg(aup
, hw
, dev
, "au1000_init\n");
641 /* bring the device out of reset */
642 au1000_enable_mac(dev
, 1);
644 spin_lock_irqsave(&aup
->lock
, flags
);
646 writel(0, &aup
->mac
->control
);
647 aup
->tx_head
= (aup
->tx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
648 aup
->tx_tail
= aup
->tx_head
;
649 aup
->rx_head
= (aup
->rx_dma_ring
[0]->buff_stat
& 0xC) >> 2;
651 writel(dev
->dev_addr
[5]<<8 | dev
->dev_addr
[4],
652 &aup
->mac
->mac_addr_high
);
653 writel(dev
->dev_addr
[3]<<24 | dev
->dev_addr
[2]<<16 |
654 dev
->dev_addr
[1]<<8 | dev
->dev_addr
[0],
655 &aup
->mac
->mac_addr_low
);
658 for (i
= 0; i
< NUM_RX_DMA
; i
++)
659 aup
->rx_dma_ring
[i
]->buff_stat
|= RX_DMA_ENABLE
;
663 control
= MAC_RX_ENABLE
| MAC_TX_ENABLE
;
664 #ifndef CONFIG_CPU_LITTLE_ENDIAN
665 control
|= MAC_BIG_ENDIAN
;
668 if (aup
->phy_dev
->link
&& (DUPLEX_FULL
== aup
->phy_dev
->duplex
))
669 control
|= MAC_FULL_DUPLEX
;
671 control
|= MAC_DISABLE_RX_OWN
;
672 } else { /* PHY-less op, assume full-duplex */
673 control
|= MAC_FULL_DUPLEX
;
676 writel(control
, &aup
->mac
->control
);
677 writel(0x8100, &aup
->mac
->vlan1_tag
); /* activate vlan support */
680 spin_unlock_irqrestore(&aup
->lock
, flags
);
684 static inline void au1000_update_rx_stats(struct net_device
*dev
, u32 status
)
686 struct net_device_stats
*ps
= &dev
->stats
;
689 if (status
& RX_MCAST_FRAME
)
692 if (status
& RX_ERROR
) {
694 if (status
& RX_MISSED_FRAME
)
695 ps
->rx_missed_errors
++;
696 if (status
& (RX_OVERLEN
| RX_RUNT
| RX_LEN_ERROR
))
697 ps
->rx_length_errors
++;
698 if (status
& RX_CRC_ERROR
)
700 if (status
& RX_COLL
)
703 ps
->rx_bytes
+= status
& RX_FRAME_LEN_MASK
;
708 * Au1000 receive routine.
710 static int au1000_rx(struct net_device
*dev
)
712 struct au1000_private
*aup
= netdev_priv(dev
);
715 u32 buff_stat
, status
;
719 netif_dbg(aup
, rx_status
, dev
, "au1000_rx head %d\n", aup
->rx_head
);
721 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
722 buff_stat
= prxd
->buff_stat
;
723 while (buff_stat
& RX_T_DONE
) {
724 status
= prxd
->status
;
725 pDB
= aup
->rx_db_inuse
[aup
->rx_head
];
726 au1000_update_rx_stats(dev
, status
);
727 if (!(status
& RX_ERROR
)) {
730 frmlen
= (status
& RX_FRAME_LEN_MASK
);
731 frmlen
-= 4; /* Remove FCS */
732 skb
= dev_alloc_skb(frmlen
+ 2);
734 netdev_err(dev
, "Memory squeeze, dropping packet.\n");
735 dev
->stats
.rx_dropped
++;
738 skb_reserve(skb
, 2); /* 16 byte IP header align */
739 skb_copy_to_linear_data(skb
,
740 (unsigned char *)pDB
->vaddr
, frmlen
);
741 skb_put(skb
, frmlen
);
742 skb
->protocol
= eth_type_trans(skb
, dev
);
743 netif_rx(skb
); /* pass the packet to upper layers */
745 if (au1000_debug
> 4) {
746 pr_err("rx_error(s):");
747 if (status
& RX_MISSED_FRAME
)
749 if (status
& RX_WDOG_TIMER
)
751 if (status
& RX_RUNT
)
753 if (status
& RX_OVERLEN
)
755 if (status
& RX_COLL
)
757 if (status
& RX_MII_ERROR
)
758 pr_cont(" mii error");
759 if (status
& RX_CRC_ERROR
)
760 pr_cont(" crc error");
761 if (status
& RX_LEN_ERROR
)
762 pr_cont(" len error");
763 if (status
& RX_U_CNTRL_FRAME
)
764 pr_cont(" u control frame");
768 prxd
->buff_stat
= (u32
)(pDB
->dma_addr
| RX_DMA_ENABLE
);
769 aup
->rx_head
= (aup
->rx_head
+ 1) & (NUM_RX_DMA
- 1);
772 /* next descriptor */
773 prxd
= aup
->rx_dma_ring
[aup
->rx_head
];
774 buff_stat
= prxd
->buff_stat
;
779 static void au1000_update_tx_stats(struct net_device
*dev
, u32 status
)
781 struct au1000_private
*aup
= netdev_priv(dev
);
782 struct net_device_stats
*ps
= &dev
->stats
;
784 if (status
& TX_FRAME_ABORTED
) {
785 if (!aup
->phy_dev
|| (DUPLEX_FULL
== aup
->phy_dev
->duplex
)) {
786 if (status
& (TX_JAB_TIMEOUT
| TX_UNDERRUN
)) {
787 /* any other tx errors are only valid
788 * in half duplex mode
791 ps
->tx_aborted_errors
++;
795 ps
->tx_aborted_errors
++;
796 if (status
& (TX_NO_CARRIER
| TX_LOSS_CARRIER
))
797 ps
->tx_carrier_errors
++;
803 * Called from the interrupt service routine to acknowledge
804 * the TX DONE bits. This is a must if the irq is setup as
807 static void au1000_tx_ack(struct net_device
*dev
)
809 struct au1000_private
*aup
= netdev_priv(dev
);
812 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
814 while (ptxd
->buff_stat
& TX_T_DONE
) {
815 au1000_update_tx_stats(dev
, ptxd
->status
);
816 ptxd
->buff_stat
&= ~TX_T_DONE
;
820 aup
->tx_tail
= (aup
->tx_tail
+ 1) & (NUM_TX_DMA
- 1);
821 ptxd
= aup
->tx_dma_ring
[aup
->tx_tail
];
825 netif_wake_queue(dev
);
831 * Au1000 interrupt service routine.
833 static irqreturn_t
au1000_interrupt(int irq
, void *dev_id
)
835 struct net_device
*dev
= dev_id
;
837 /* Handle RX interrupts first to minimize chance of overrun */
841 return IRQ_RETVAL(1);
844 static int au1000_open(struct net_device
*dev
)
847 struct au1000_private
*aup
= netdev_priv(dev
);
849 netif_dbg(aup
, drv
, dev
, "open: dev=%p\n", dev
);
851 retval
= request_irq(dev
->irq
, au1000_interrupt
, 0,
854 netdev_err(dev
, "unable to get IRQ %d\n", dev
->irq
);
858 retval
= au1000_init(dev
);
860 netdev_err(dev
, "error in au1000_init\n");
861 free_irq(dev
->irq
, dev
);
866 /* cause the PHY state machine to schedule a link state check */
867 aup
->phy_dev
->state
= PHY_CHANGELINK
;
868 phy_start(aup
->phy_dev
);
871 netif_start_queue(dev
);
873 netif_dbg(aup
, drv
, dev
, "open: Initialization done.\n");
878 static int au1000_close(struct net_device
*dev
)
881 struct au1000_private
*const aup
= netdev_priv(dev
);
883 netif_dbg(aup
, drv
, dev
, "close: dev=%p\n", dev
);
886 phy_stop(aup
->phy_dev
);
888 spin_lock_irqsave(&aup
->lock
, flags
);
890 au1000_reset_mac_unlocked(dev
);
892 /* stop the device */
893 netif_stop_queue(dev
);
895 /* disable the interrupt */
896 free_irq(dev
->irq
, dev
);
897 spin_unlock_irqrestore(&aup
->lock
, flags
);
903 * Au1000 transmit routine.
905 static netdev_tx_t
au1000_tx(struct sk_buff
*skb
, struct net_device
*dev
)
907 struct au1000_private
*aup
= netdev_priv(dev
);
908 struct net_device_stats
*ps
= &dev
->stats
;
914 netif_dbg(aup
, tx_queued
, dev
, "tx: aup %x len=%d, data=%p, head %d\n",
915 (unsigned)aup
, skb
->len
,
916 skb
->data
, aup
->tx_head
);
918 ptxd
= aup
->tx_dma_ring
[aup
->tx_head
];
919 buff_stat
= ptxd
->buff_stat
;
920 if (buff_stat
& TX_DMA_ENABLE
) {
921 /* We've wrapped around and the transmitter is still busy */
922 netif_stop_queue(dev
);
924 return NETDEV_TX_BUSY
;
925 } else if (buff_stat
& TX_T_DONE
) {
926 au1000_update_tx_stats(dev
, ptxd
->status
);
932 netif_wake_queue(dev
);
935 pDB
= aup
->tx_db_inuse
[aup
->tx_head
];
936 skb_copy_from_linear_data(skb
, (void *)pDB
->vaddr
, skb
->len
);
937 if (skb
->len
< ETH_ZLEN
) {
938 for (i
= skb
->len
; i
< ETH_ZLEN
; i
++)
939 ((char *)pDB
->vaddr
)[i
] = 0;
941 ptxd
->len
= ETH_ZLEN
;
943 ptxd
->len
= skb
->len
;
946 ps
->tx_bytes
+= ptxd
->len
;
948 ptxd
->buff_stat
= pDB
->dma_addr
| TX_DMA_ENABLE
;
951 aup
->tx_head
= (aup
->tx_head
+ 1) & (NUM_TX_DMA
- 1);
956 * The Tx ring has been full longer than the watchdog timeout
957 * value. The transmitter must be hung?
959 static void au1000_tx_timeout(struct net_device
*dev
)
961 netdev_err(dev
, "au1000_tx_timeout: dev=%p\n", dev
);
962 au1000_reset_mac(dev
);
964 dev
->trans_start
= jiffies
; /* prevent tx timeout */
965 netif_wake_queue(dev
);
968 static void au1000_multicast_list(struct net_device
*dev
)
970 struct au1000_private
*aup
= netdev_priv(dev
);
973 netif_dbg(aup
, drv
, dev
, "%s: flags=%x\n", __func__
, dev
->flags
);
974 reg
= readl(&aup
->mac
->control
);
975 if (dev
->flags
& IFF_PROMISC
) { /* Set promiscuous. */
976 reg
|= MAC_PROMISCUOUS
;
977 } else if ((dev
->flags
& IFF_ALLMULTI
) ||
978 netdev_mc_count(dev
) > MULTICAST_FILTER_LIMIT
) {
979 reg
|= MAC_PASS_ALL_MULTI
;
980 reg
&= ~MAC_PROMISCUOUS
;
981 netdev_info(dev
, "Pass all multicast\n");
983 struct netdev_hw_addr
*ha
;
984 u32 mc_filter
[2]; /* Multicast hash filter */
986 mc_filter
[1] = mc_filter
[0] = 0;
987 netdev_for_each_mc_addr(ha
, dev
)
988 set_bit(ether_crc(ETH_ALEN
, ha
->addr
)>>26,
990 writel(mc_filter
[1], &aup
->mac
->multi_hash_high
);
991 writel(mc_filter
[0], &aup
->mac
->multi_hash_low
);
992 reg
&= ~MAC_PROMISCUOUS
;
993 reg
|= MAC_HASH_MODE
;
995 writel(reg
, &aup
->mac
->control
);
998 static int au1000_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
1000 struct au1000_private
*aup
= netdev_priv(dev
);
1002 if (!netif_running(dev
))
1006 return -EINVAL
; /* PHY not controllable */
1008 return phy_mii_ioctl(aup
->phy_dev
, rq
, cmd
);
1011 static const struct net_device_ops au1000_netdev_ops
= {
1012 .ndo_open
= au1000_open
,
1013 .ndo_stop
= au1000_close
,
1014 .ndo_start_xmit
= au1000_tx
,
1015 .ndo_set_multicast_list
= au1000_multicast_list
,
1016 .ndo_do_ioctl
= au1000_ioctl
,
1017 .ndo_tx_timeout
= au1000_tx_timeout
,
1018 .ndo_set_mac_address
= eth_mac_addr
,
1019 .ndo_validate_addr
= eth_validate_addr
,
1020 .ndo_change_mtu
= eth_change_mtu
,
1023 static int __devinit
au1000_probe(struct platform_device
*pdev
)
1025 static unsigned version_printed
;
1026 struct au1000_private
*aup
= NULL
;
1027 struct au1000_eth_platform_data
*pd
;
1028 struct net_device
*dev
= NULL
;
1029 struct db_dest
*pDB
, *pDBfree
;
1030 int irq
, i
, err
= 0;
1031 struct resource
*base
, *macen
;
1033 base
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1035 dev_err(&pdev
->dev
, "failed to retrieve base register\n");
1040 macen
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1042 dev_err(&pdev
->dev
, "failed to retrieve MAC Enable register\n");
1047 irq
= platform_get_irq(pdev
, 0);
1049 dev_err(&pdev
->dev
, "failed to retrieve IRQ\n");
1054 if (!request_mem_region(base
->start
, resource_size(base
),
1056 dev_err(&pdev
->dev
, "failed to request memory region for base registers\n");
1061 if (!request_mem_region(macen
->start
, resource_size(macen
),
1063 dev_err(&pdev
->dev
, "failed to request memory region for MAC enable register\n");
1068 dev
= alloc_etherdev(sizeof(struct au1000_private
));
1070 dev_err(&pdev
->dev
, "alloc_etherdev failed\n");
1075 SET_NETDEV_DEV(dev
, &pdev
->dev
);
1076 platform_set_drvdata(pdev
, dev
);
1077 aup
= netdev_priv(dev
);
1079 spin_lock_init(&aup
->lock
);
1080 aup
->msg_enable
= (au1000_debug
< 4 ?
1081 AU1000_DEF_MSG_ENABLE
: au1000_debug
);
1083 /* Allocate the data buffers
1084 * Snooping works fine with eth on all au1xxx
1086 aup
->vaddr
= (u32
)dma_alloc_noncoherent(NULL
, MAX_BUF_SIZE
*
1087 (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1090 dev_err(&pdev
->dev
, "failed to allocate data buffers\n");
1095 /* aup->mac is the base address of the MAC's registers */
1096 aup
->mac
= (struct mac_reg
*)
1097 ioremap_nocache(base
->start
, resource_size(base
));
1099 dev_err(&pdev
->dev
, "failed to ioremap MAC registers\n");
1104 /* Setup some variables for quick register address access */
1105 aup
->enable
= (u32
*)ioremap_nocache(macen
->start
,
1106 resource_size(macen
));
1108 dev_err(&pdev
->dev
, "failed to ioremap MAC enable register\n");
1112 aup
->mac_id
= pdev
->id
;
1115 au1000_setup_hw_rings(aup
, MAC0_RX_DMA_ADDR
, MAC0_TX_DMA_ADDR
);
1116 else if (pdev
->id
== 1)
1117 au1000_setup_hw_rings(aup
, MAC1_RX_DMA_ADDR
, MAC1_TX_DMA_ADDR
);
1119 /* set a random MAC now in case platform_data doesn't provide one */
1120 random_ether_addr(dev
->dev_addr
);
1122 writel(0, &aup
->enable
);
1123 aup
->mac_enabled
= 0;
1125 pd
= pdev
->dev
.platform_data
;
1127 dev_info(&pdev
->dev
, "no platform_data passed,"
1128 " PHY search on MAC0\n");
1129 aup
->phy1_search_mac0
= 1;
1131 if (is_valid_ether_addr(pd
->mac
))
1132 memcpy(dev
->dev_addr
, pd
->mac
, 6);
1134 aup
->phy_static_config
= pd
->phy_static_config
;
1135 aup
->phy_search_highest_addr
= pd
->phy_search_highest_addr
;
1136 aup
->phy1_search_mac0
= pd
->phy1_search_mac0
;
1137 aup
->phy_addr
= pd
->phy_addr
;
1138 aup
->phy_busid
= pd
->phy_busid
;
1139 aup
->phy_irq
= pd
->phy_irq
;
1142 if (aup
->phy_busid
&& aup
->phy_busid
> 0) {
1143 dev_err(&pdev
->dev
, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
1145 goto err_mdiobus_alloc
;
1148 aup
->mii_bus
= mdiobus_alloc();
1149 if (aup
->mii_bus
== NULL
) {
1150 dev_err(&pdev
->dev
, "failed to allocate mdiobus structure\n");
1152 goto err_mdiobus_alloc
;
1155 aup
->mii_bus
->priv
= dev
;
1156 aup
->mii_bus
->read
= au1000_mdiobus_read
;
1157 aup
->mii_bus
->write
= au1000_mdiobus_write
;
1158 aup
->mii_bus
->reset
= au1000_mdiobus_reset
;
1159 aup
->mii_bus
->name
= "au1000_eth_mii";
1160 snprintf(aup
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%x", aup
->mac_id
);
1161 aup
->mii_bus
->irq
= kmalloc(sizeof(int)*PHY_MAX_ADDR
, GFP_KERNEL
);
1162 if (aup
->mii_bus
->irq
== NULL
)
1165 for (i
= 0; i
< PHY_MAX_ADDR
; ++i
)
1166 aup
->mii_bus
->irq
[i
] = PHY_POLL
;
1167 /* if known, set corresponding PHY IRQs */
1168 if (aup
->phy_static_config
)
1169 if (aup
->phy_irq
&& aup
->phy_busid
== aup
->mac_id
)
1170 aup
->mii_bus
->irq
[aup
->phy_addr
] = aup
->phy_irq
;
1172 err
= mdiobus_register(aup
->mii_bus
);
1174 dev_err(&pdev
->dev
, "failed to register MDIO bus\n");
1175 goto err_mdiobus_reg
;
1178 if (au1000_mii_probe(dev
) != 0)
1182 /* setup the data buffer descriptors and attach a buffer to each one */
1184 for (i
= 0; i
< (NUM_TX_BUFFS
+NUM_RX_BUFFS
); i
++) {
1185 pDB
->pnext
= pDBfree
;
1187 pDB
->vaddr
= (u32
*)((unsigned)aup
->vaddr
+ MAX_BUF_SIZE
*i
);
1188 pDB
->dma_addr
= (dma_addr_t
)virt_to_bus(pDB
->vaddr
);
1191 aup
->pDBfree
= pDBfree
;
1193 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1194 pDB
= au1000_GetFreeDB(aup
);
1198 aup
->rx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1199 aup
->rx_db_inuse
[i
] = pDB
;
1201 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1202 pDB
= au1000_GetFreeDB(aup
);
1206 aup
->tx_dma_ring
[i
]->buff_stat
= (unsigned)pDB
->dma_addr
;
1207 aup
->tx_dma_ring
[i
]->len
= 0;
1208 aup
->tx_db_inuse
[i
] = pDB
;
1211 dev
->base_addr
= base
->start
;
1213 dev
->netdev_ops
= &au1000_netdev_ops
;
1214 SET_ETHTOOL_OPS(dev
, &au1000_ethtool_ops
);
1215 dev
->watchdog_timeo
= ETH_TX_TIMEOUT
;
1218 * The boot code uses the ethernet controller, so reset it to start
1219 * fresh. au1000_init() expects that the device is in reset state.
1221 au1000_reset_mac(dev
);
1223 err
= register_netdev(dev
);
1225 netdev_err(dev
, "Cannot register net device, aborting.\n");
1229 netdev_info(dev
, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1230 (unsigned long)base
->start
, irq
);
1231 if (version_printed
++ == 0)
1232 pr_info("%s version %s %s\n",
1233 DRV_NAME
, DRV_VERSION
, DRV_AUTHOR
);
1238 if (aup
->mii_bus
!= NULL
)
1239 mdiobus_unregister(aup
->mii_bus
);
1241 /* here we should have a valid dev plus aup-> register addresses
1242 * so we can reset the mac properly.
1244 au1000_reset_mac(dev
);
1246 for (i
= 0; i
< NUM_RX_DMA
; i
++) {
1247 if (aup
->rx_db_inuse
[i
])
1248 au1000_ReleaseDB(aup
, aup
->rx_db_inuse
[i
]);
1250 for (i
= 0; i
< NUM_TX_DMA
; i
++) {
1251 if (aup
->tx_db_inuse
[i
])
1252 au1000_ReleaseDB(aup
, aup
->tx_db_inuse
[i
]);
1255 mdiobus_free(aup
->mii_bus
);
1257 iounmap(aup
->enable
);
1261 dma_free_noncoherent(NULL
, MAX_BUF_SIZE
* (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1262 (void *)aup
->vaddr
, aup
->dma_addr
);
1266 release_mem_region(macen
->start
, resource_size(macen
));
1268 release_mem_region(base
->start
, resource_size(base
));
1273 static int __devexit
au1000_remove(struct platform_device
*pdev
)
1275 struct net_device
*dev
= platform_get_drvdata(pdev
);
1276 struct au1000_private
*aup
= netdev_priv(dev
);
1278 struct resource
*base
, *macen
;
1280 platform_set_drvdata(pdev
, NULL
);
1282 unregister_netdev(dev
);
1283 mdiobus_unregister(aup
->mii_bus
);
1284 mdiobus_free(aup
->mii_bus
);
1286 for (i
= 0; i
< NUM_RX_DMA
; i
++)
1287 if (aup
->rx_db_inuse
[i
])
1288 au1000_ReleaseDB(aup
, aup
->rx_db_inuse
[i
]);
1290 for (i
= 0; i
< NUM_TX_DMA
; i
++)
1291 if (aup
->tx_db_inuse
[i
])
1292 au1000_ReleaseDB(aup
, aup
->tx_db_inuse
[i
]);
1294 dma_free_noncoherent(NULL
, MAX_BUF_SIZE
*
1295 (NUM_TX_BUFFS
+ NUM_RX_BUFFS
),
1296 (void *)aup
->vaddr
, aup
->dma_addr
);
1299 iounmap(aup
->enable
);
1301 base
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1302 release_mem_region(base
->start
, resource_size(base
));
1304 macen
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1305 release_mem_region(macen
->start
, resource_size(macen
));
1312 static struct platform_driver au1000_eth_driver
= {
1313 .probe
= au1000_probe
,
1314 .remove
= __devexit_p(au1000_remove
),
1316 .name
= "au1000-eth",
1317 .owner
= THIS_MODULE
,
1320 MODULE_ALIAS("platform:au1000-eth");
1323 static int __init
au1000_init_module(void)
1325 return platform_driver_register(&au1000_eth_driver
);
1328 static void __exit
au1000_exit_module(void)
1330 platform_driver_unregister(&au1000_eth_driver
);
1333 module_init(au1000_init_module
);
1334 module_exit(au1000_exit_module
);