blob: 982b581d3484a12c36a4b66ad79724118fbbd6d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Alchemy Au1x00 ethernet driver
4 *
Sergei Shtylyov89be0502006-04-19 22:46:21 +04005 * Copyright 2001-2003, 2006 MontaVista Software Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright 2002 TimeSys Corp.
7 * Added ethtool/mii-tool support,
8 * Copyright 2004 Matt Porter <mporter@kernel.crashing.org>
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009 * Update: 2004 Bjoern Riemer, riemer@fokus.fraunhofer.de
10 * or riemer@riemer-nt.de: fixed the link beat detection with
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * ioctls (SIOCGMIIPHY)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +020012 * Copyright 2006 Herbert Valerio Riedel <hvr@gnu.org>
13 * converted to use linux-2.6.x's PHY framework
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Author: MontaVista Software, Inc.
Florian Fainelliec7eabdd2010-09-08 11:11:31 +000016 * ppopov@mvista.com or source@mvista.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * ########################################################################
19 *
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.
23 *
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
27 * for more details.
28 *
29 * You should have received a copy of the GNU General Public License along
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080030 * with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
32 * ########################################################################
33 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040034 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
Florian Fainelli215e17b2010-09-08 11:11:45 +000036#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
37
Manuel Laussbc36b422009-10-17 02:00:07 +000038#include <linux/capability.h>
Ralf Baechled791c2b2007-06-24 15:59:54 +020039#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/module.h>
41#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/string.h>
43#include <linux/timer.h>
44#include <linux/errno.h>
45#include <linux/in.h>
46#include <linux/ioport.h>
47#include <linux/bitops.h>
48#include <linux/slab.h>
49#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#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>
Herbert Valerio Riedel8cd35da2006-05-01 15:37:09 +020056#include <linux/crc32.h>
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +020057#include <linux/phy.h>
Florian Fainellibd2302c2009-11-10 01:13:38 +010058#include <linux/platform_device.h>
Florian Fainelli49a42c02010-09-08 11:11:49 +000059#include <linux/cpu.h>
60#include <linux/io.h>
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/mipsregs.h>
63#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/processor.h>
65
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090066#include <au1000.h>
Florian Fainellibd2302c2009-11-10 01:13:38 +010067#include <au1xxx_eth.h>
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090068#include <prom.h>
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include "au1000_eth.h"
71
72#ifdef AU1000_ETH_DEBUG
73static int au1000_debug = 5;
74#else
75static int au1000_debug = 3;
76#endif
77
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +000078#define AU1000_DEF_MSG_ENABLE (NETIF_MSG_DRV | \
79 NETIF_MSG_PROBE | \
80 NETIF_MSG_LINK)
81
Sergei Shtylyov89be0502006-04-19 22:46:21 +040082#define DRV_NAME "au1000_eth"
Florian Fainelli8020eb82010-04-06 22:09:20 +000083#define DRV_VERSION "1.7"
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define DRV_AUTHOR "Pete Popov <ppopov@embeddedalley.com>"
85#define DRV_DESC "Au1xxx on-chip Ethernet driver"
86
87MODULE_AUTHOR(DRV_AUTHOR);
88MODULE_DESCRIPTION(DRV_DESC);
89MODULE_LICENSE("GPL");
Florian Fainelli13130c72010-04-06 22:08:57 +000090MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Manuel Laussfb1a7602014-07-23 16:36:22 +020092/* AU1000 MAC registers and bits */
93#define MAC_CONTROL 0x0
94# define MAC_RX_ENABLE (1 << 2)
95# define MAC_TX_ENABLE (1 << 3)
96# define MAC_DEF_CHECK (1 << 5)
97# define MAC_SET_BL(X) (((X) & 0x3) << 6)
98# define MAC_AUTO_PAD (1 << 8)
99# define MAC_DISABLE_RETRY (1 << 10)
100# define MAC_DISABLE_BCAST (1 << 11)
101# define MAC_LATE_COL (1 << 12)
102# define MAC_HASH_MODE (1 << 13)
103# define MAC_HASH_ONLY (1 << 15)
104# define MAC_PASS_ALL (1 << 16)
105# define MAC_INVERSE_FILTER (1 << 17)
106# define MAC_PROMISCUOUS (1 << 18)
107# define MAC_PASS_ALL_MULTI (1 << 19)
108# define MAC_FULL_DUPLEX (1 << 20)
109# define MAC_NORMAL_MODE 0
110# define MAC_INT_LOOPBACK (1 << 21)
111# define MAC_EXT_LOOPBACK (1 << 22)
112# define MAC_DISABLE_RX_OWN (1 << 23)
113# define MAC_BIG_ENDIAN (1 << 30)
114# define MAC_RX_ALL (1 << 31)
115#define MAC_ADDRESS_HIGH 0x4
116#define MAC_ADDRESS_LOW 0x8
117#define MAC_MCAST_HIGH 0xC
118#define MAC_MCAST_LOW 0x10
119#define MAC_MII_CNTRL 0x14
120# define MAC_MII_BUSY (1 << 0)
121# define MAC_MII_READ 0
122# define MAC_MII_WRITE (1 << 1)
123# define MAC_SET_MII_SELECT_REG(X) (((X) & 0x1f) << 6)
124# define MAC_SET_MII_SELECT_PHY(X) (((X) & 0x1f) << 11)
125#define MAC_MII_DATA 0x18
126#define MAC_FLOW_CNTRL 0x1C
127# define MAC_FLOW_CNTRL_BUSY (1 << 0)
128# define MAC_FLOW_CNTRL_ENABLE (1 << 1)
129# define MAC_PASS_CONTROL (1 << 2)
130# define MAC_SET_PAUSE(X) (((X) & 0xffff) << 16)
131#define MAC_VLAN1_TAG 0x20
132#define MAC_VLAN2_TAG 0x24
133
134/* Ethernet Controller Enable */
135# define MAC_EN_CLOCK_ENABLE (1 << 0)
136# define MAC_EN_RESET0 (1 << 1)
137# define MAC_EN_TOSS (0 << 2)
138# define MAC_EN_CACHEABLE (1 << 3)
139# define MAC_EN_RESET1 (1 << 4)
140# define MAC_EN_RESET2 (1 << 5)
141# define MAC_DMA_RESET (1 << 6)
142
143/* Ethernet Controller DMA Channels */
144/* offsets from MAC_TX_RING_ADDR address */
145#define MAC_TX_BUFF0_STATUS 0x0
146# define TX_FRAME_ABORTED (1 << 0)
147# define TX_JAB_TIMEOUT (1 << 1)
148# define TX_NO_CARRIER (1 << 2)
149# define TX_LOSS_CARRIER (1 << 3)
150# define TX_EXC_DEF (1 << 4)
151# define TX_LATE_COLL_ABORT (1 << 5)
152# define TX_EXC_COLL (1 << 6)
153# define TX_UNDERRUN (1 << 7)
154# define TX_DEFERRED (1 << 8)
155# define TX_LATE_COLL (1 << 9)
156# define TX_COLL_CNT_MASK (0xF << 10)
157# define TX_PKT_RETRY (1 << 31)
158#define MAC_TX_BUFF0_ADDR 0x4
159# define TX_DMA_ENABLE (1 << 0)
160# define TX_T_DONE (1 << 1)
161# define TX_GET_DMA_BUFFER(X) (((X) >> 2) & 0x3)
162#define MAC_TX_BUFF0_LEN 0x8
163#define MAC_TX_BUFF1_STATUS 0x10
164#define MAC_TX_BUFF1_ADDR 0x14
165#define MAC_TX_BUFF1_LEN 0x18
166#define MAC_TX_BUFF2_STATUS 0x20
167#define MAC_TX_BUFF2_ADDR 0x24
168#define MAC_TX_BUFF2_LEN 0x28
169#define MAC_TX_BUFF3_STATUS 0x30
170#define MAC_TX_BUFF3_ADDR 0x34
171#define MAC_TX_BUFF3_LEN 0x38
172
173/* offsets from MAC_RX_RING_ADDR */
174#define MAC_RX_BUFF0_STATUS 0x0
175# define RX_FRAME_LEN_MASK 0x3fff
176# define RX_WDOG_TIMER (1 << 14)
177# define RX_RUNT (1 << 15)
178# define RX_OVERLEN (1 << 16)
179# define RX_COLL (1 << 17)
180# define RX_ETHER (1 << 18)
181# define RX_MII_ERROR (1 << 19)
182# define RX_DRIBBLING (1 << 20)
183# define RX_CRC_ERROR (1 << 21)
184# define RX_VLAN1 (1 << 22)
185# define RX_VLAN2 (1 << 23)
186# define RX_LEN_ERROR (1 << 24)
187# define RX_CNTRL_FRAME (1 << 25)
188# define RX_U_CNTRL_FRAME (1 << 26)
189# define RX_MCAST_FRAME (1 << 27)
190# define RX_BCAST_FRAME (1 << 28)
191# define RX_FILTER_FAIL (1 << 29)
192# define RX_PACKET_FILTER (1 << 30)
193# define RX_MISSED_FRAME (1 << 31)
194
195# define RX_ERROR (RX_WDOG_TIMER | RX_RUNT | RX_OVERLEN | \
196 RX_COLL | RX_MII_ERROR | RX_CRC_ERROR | \
197 RX_LEN_ERROR | RX_U_CNTRL_FRAME | RX_MISSED_FRAME)
198#define MAC_RX_BUFF0_ADDR 0x4
199# define RX_DMA_ENABLE (1 << 0)
200# define RX_T_DONE (1 << 1)
201# define RX_GET_DMA_BUFFER(X) (((X) >> 2) & 0x3)
202# define RX_SET_BUFF_ADDR(X) ((X) & 0xffffffc0)
203#define MAC_RX_BUFF1_STATUS 0x10
204#define MAC_RX_BUFF1_ADDR 0x14
205#define MAC_RX_BUFF2_STATUS 0x20
206#define MAC_RX_BUFF2_ADDR 0x24
207#define MAC_RX_BUFF3_STATUS 0x30
208#define MAC_RX_BUFF3_ADDR 0x34
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*
211 * Theory of operation
212 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400213 * The Au1000 MACs use a simple rx and tx descriptor ring scheme.
214 * There are four receive and four transmit descriptors. These
215 * descriptors are not in memory; rather, they are just a set of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * hardware registers.
217 *
218 * Since the Au1000 has a coherent data cache, the receive and
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400219 * transmit buffers are allocated from the KSEG0 segment. The
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * hardware registers, however, are still mapped at KSEG1 to
221 * make sure there's no out-of-order writes, and that all writes
222 * complete immediately.
223 */
224
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200225/*
226 * board-specific configurations
227 *
228 * PHY detection algorithm
229 *
Florian Fainellibd2302c2009-11-10 01:13:38 +0100230 * If phy_static_config is undefined, the PHY setup is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200231 * autodetected:
232 *
233 * mii_probe() first searches the current MAC's MII bus for a PHY,
Florian Fainellibd2302c2009-11-10 01:13:38 +0100234 * selecting the first (or last, if phy_search_highest_addr is
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200235 * defined) PHY address not already claimed by another netdev.
236 *
237 * If nothing was found that way when searching for the 2nd ethernet
Florian Fainellibd2302c2009-11-10 01:13:38 +0100238 * controller's PHY and phy1_search_mac0 is defined, then
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200239 * the first MII bus is searched as well for an unclaimed PHY; this is
240 * needed in case of a dual-PHY accessible only through the MAC0's MII
241 * bus.
242 *
243 * Finally, if no PHY is found, then the corresponding ethernet
244 * controller is not registered to the network subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
246
Florian Fainellibd2302c2009-11-10 01:13:38 +0100247/* autodetection defaults: phy1_search_mac0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200249/* static PHY setup
250 *
251 * most boards PHY setup should be detectable properly with the
252 * autodetection algorithm in mii_probe(), but in some cases (e.g. if
253 * you have a switch attached, or want to use the PHY's interrupt
254 * notification capabilities) you can provide a static PHY
255 * configuration here
256 *
257 * IRQs may only be set, if a PHY address was configured
258 * If a PHY address is given, also a bus id is required to be set
259 *
260 * ps: make sure the used irqs are configured properly in the board
261 * specific irq-map
262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Florian Fainellieb049632010-04-06 22:09:01 +0000264static void au1000_enable_mac(struct net_device *dev, int force_reset)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800265{
266 unsigned long flags;
267 struct au1000_private *aup = netdev_priv(dev);
268
269 spin_lock_irqsave(&aup->lock, flags);
270
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000271 if (force_reset || (!aup->mac_enabled)) {
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000272 writel(MAC_EN_CLOCK_ENABLE, aup->enable);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200273 wmb(); /* drain writebuffer */
274 mdelay(2);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000275 writel((MAC_EN_RESET0 | MAC_EN_RESET1 | MAC_EN_RESET2
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000276 | MAC_EN_CLOCK_ENABLE), aup->enable);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200277 wmb(); /* drain writebuffer */
278 mdelay(2);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800279
280 aup->mac_enabled = 1;
281 }
282
283 spin_unlock_irqrestore(&aup->lock, flags);
284}
285
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200286/*
287 * MII operations
288 */
Adrian Bunk1210dde2008-10-12 21:02:19 -0700289static int au1000_mdio_read(struct net_device *dev, int phy_addr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Wang Chen454d7c92008-11-12 23:37:49 -0800291 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000292 u32 *const mii_control_reg = &aup->mac->mii_control;
293 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u32 timedout = 20;
295 u32 mii_control;
296
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000297 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mdelay(1);
299 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000300 netdev_err(dev, "read_MII busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -1;
302 }
303 }
304
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400305 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200306 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000308 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 timedout = 20;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000311 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 mdelay(1);
313 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000314 netdev_err(dev, "mdio_read busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return -1;
316 }
317 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000318 return readl(mii_data_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Adrian Bunk1210dde2008-10-12 21:02:19 -0700321static void au1000_mdio_write(struct net_device *dev, int phy_addr,
322 int reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Wang Chen454d7c92008-11-12 23:37:49 -0800324 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000325 u32 *const mii_control_reg = &aup->mac->mii_control;
326 u32 *const mii_data_reg = &aup->mac->mii_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 u32 timedout = 20;
328 u32 mii_control;
329
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000330 while (readl(mii_control_reg) & MAC_MII_BUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 mdelay(1);
332 if (--timedout == 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000333 netdev_err(dev, "mdio_write busy timeout!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return;
335 }
336 }
337
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400338 mii_control = MAC_SET_MII_SELECT_REG(reg) |
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200339 MAC_SET_MII_SELECT_PHY(phy_addr) | MAC_MII_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000341 writel(value, mii_data_reg);
342 writel(mii_control, mii_control_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Adrian Bunk1210dde2008-10-12 21:02:19 -0700345static int au1000_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200347 /* WARNING: bus->phy_map[phy_addr].attached_dev == dev does
Florian Fainellidc998392010-09-08 11:11:59 +0000348 * _NOT_ hold (e.g. when PHY is accessed through other MAC's MII bus)
349 */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200350 struct net_device *const dev = bus->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Florian Fainellidc998392010-09-08 11:11:59 +0000352 /* make sure the MAC associated with this
353 * mii_bus is enabled
354 */
355 au1000_enable_mac(dev, 0);
356
Adrian Bunk1210dde2008-10-12 21:02:19 -0700357 return au1000_mdio_read(dev, phy_addr, regnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Adrian Bunk1210dde2008-10-12 21:02:19 -0700360static int au1000_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum,
361 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200363 struct net_device *const dev = bus->priv;
364
Florian Fainellidc998392010-09-08 11:11:59 +0000365 /* make sure the MAC associated with this
366 * mii_bus is enabled
367 */
368 au1000_enable_mac(dev, 0);
369
Adrian Bunk1210dde2008-10-12 21:02:19 -0700370 au1000_mdio_write(dev, phy_addr, regnum, value);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200371 return 0;
372}
373
Adrian Bunk1210dde2008-10-12 21:02:19 -0700374static int au1000_mdiobus_reset(struct mii_bus *bus)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200375{
376 struct net_device *const dev = bus->priv;
377
Florian Fainellidc998392010-09-08 11:11:59 +0000378 /* make sure the MAC associated with this
379 * mii_bus is enabled
380 */
381 au1000_enable_mac(dev, 0);
382
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200383 return 0;
384}
385
Florian Fainellieb049632010-04-06 22:09:01 +0000386static void au1000_hard_stop(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800387{
388 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000389 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800390
Florian Fainelli5368c722010-04-06 22:09:17 +0000391 netif_dbg(aup, drv, dev, "hard stop\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800392
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000393 reg = readl(&aup->mac->control);
394 reg &= ~(MAC_RX_ENABLE | MAC_TX_ENABLE);
395 writel(reg, &aup->mac->control);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200396 wmb(); /* drain writebuffer */
397 mdelay(10);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800398}
399
Florian Fainellieb049632010-04-06 22:09:01 +0000400static void au1000_enable_rx_tx(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800401{
402 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000403 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800404
Florian Fainelli5368c722010-04-06 22:09:17 +0000405 netif_dbg(aup, hw, dev, "enable_rx_tx\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800406
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000407 reg = readl(&aup->mac->control);
408 reg |= (MAC_RX_ENABLE | MAC_TX_ENABLE);
409 writel(reg, &aup->mac->control);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200410 wmb(); /* drain writebuffer */
411 mdelay(10);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800412}
413
414static void
415au1000_adjust_link(struct net_device *dev)
416{
417 struct au1000_private *aup = netdev_priv(dev);
418 struct phy_device *phydev = aup->phy_dev;
419 unsigned long flags;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000420 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800421
422 int status_change = 0;
423
424 BUG_ON(!aup->phy_dev);
425
426 spin_lock_irqsave(&aup->lock, flags);
427
428 if (phydev->link && (aup->old_speed != phydev->speed)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000429 /* speed changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800430
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000431 switch (phydev->speed) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800432 case SPEED_10:
433 case SPEED_100:
434 break;
435 default:
Florian Fainelli5368c722010-04-06 22:09:17 +0000436 netdev_warn(dev, "Speed (%d) is not 10/100 ???\n",
437 phydev->speed);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800438 break;
439 }
440
441 aup->old_speed = phydev->speed;
442
443 status_change = 1;
444 }
445
446 if (phydev->link && (aup->old_duplex != phydev->duplex)) {
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000447 /* duplex mode changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800448
449 /* switching duplex mode requires to disable rx and tx! */
Florian Fainellieb049632010-04-06 22:09:01 +0000450 au1000_hard_stop(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800451
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000452 reg = readl(&aup->mac->control);
453 if (DUPLEX_FULL == phydev->duplex) {
454 reg |= MAC_FULL_DUPLEX;
455 reg &= ~MAC_DISABLE_RX_OWN;
456 } else {
457 reg &= ~MAC_FULL_DUPLEX;
458 reg |= MAC_DISABLE_RX_OWN;
459 }
460 writel(reg, &aup->mac->control);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200461 wmb(); /* drain writebuffer */
462 mdelay(1);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800463
Florian Fainellieb049632010-04-06 22:09:01 +0000464 au1000_enable_rx_tx(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800465 aup->old_duplex = phydev->duplex;
466
467 status_change = 1;
468 }
469
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000470 if (phydev->link != aup->old_link) {
471 /* link state changed */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800472
473 if (!phydev->link) {
474 /* link went down */
475 aup->old_speed = 0;
476 aup->old_duplex = -1;
477 }
478
479 aup->old_link = phydev->link;
480 status_change = 1;
481 }
482
483 spin_unlock_irqrestore(&aup->lock, flags);
484
485 if (status_change) {
486 if (phydev->link)
Florian Fainelli5368c722010-04-06 22:09:17 +0000487 netdev_info(dev, "link up (%d/%s)\n",
488 phydev->speed,
Florian Fainelli5ef30412009-01-22 14:06:25 -0800489 DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
490 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000491 netdev_info(dev, "link down\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800492 }
493}
494
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000495static int au1000_mii_probe(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200496{
Wang Chen454d7c92008-11-12 23:37:49 -0800497 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200498 struct phy_device *phydev = NULL;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000499 int phy_addr;
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200500
Florian Fainellibd2302c2009-11-10 01:13:38 +0100501 if (aup->phy_static_config) {
502 BUG_ON(aup->mac_id < 0 || aup->mac_id > 1);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200503
Florian Fainellibd2302c2009-11-10 01:13:38 +0100504 if (aup->phy_addr)
505 phydev = aup->mii_bus->phy_map[aup->phy_addr];
506 else
Florian Fainelli5368c722010-04-06 22:09:17 +0000507 netdev_info(dev, "using PHY-less setup\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200508 return 0;
Florian Fainelli18b8e152010-09-08 11:11:40 +0000509 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200510
Florian Fainelli18b8e152010-09-08 11:11:40 +0000511 /* find the first (lowest address) PHY
Florian Fainellidc998392010-09-08 11:11:59 +0000512 * on the current MAC's MII bus
513 */
Florian Fainelli18b8e152010-09-08 11:11:40 +0000514 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++)
515 if (aup->mii_bus->phy_map[phy_addr]) {
516 phydev = aup->mii_bus->phy_map[phy_addr];
517 if (!aup->phy_search_highest_addr)
518 /* break out with first one found */
519 break;
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Florian Fainelli18b8e152010-09-08 11:11:40 +0000522 if (aup->phy1_search_mac0) {
523 /* try harder to find a PHY */
524 if (!phydev && (aup->mac_id == 1)) {
525 /* no PHY found, maybe we have a dual PHY? */
526 dev_info(&dev->dev, ": no PHY found on MAC1, "
527 "let's see if it's attached to MAC0...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Florian Fainelli18b8e152010-09-08 11:11:40 +0000529 /* find the first (lowest address) non-attached
530 * PHY on the MAC0 MII bus
531 */
532 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
533 struct phy_device *const tmp_phydev =
534 aup->mii_bus->phy_map[phy_addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Florian Fainelli18b8e152010-09-08 11:11:40 +0000536 if (aup->mac_id == 1)
537 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Florian Fainelli18b8e152010-09-08 11:11:40 +0000539 /* no PHY here... */
540 if (!tmp_phydev)
541 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Florian Fainelli18b8e152010-09-08 11:11:40 +0000543 /* already claimed by MAC0 */
544 if (tmp_phydev->attached_dev)
545 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Florian Fainelli18b8e152010-09-08 11:11:40 +0000547 phydev = tmp_phydev;
548 break; /* found it */
Florian Fainellibd2302c2009-11-10 01:13:38 +0100549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200553 if (!phydev) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000554 netdev_err(dev, "no PHY found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return -1;
556 }
557
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200558 /* now we are supposed to have a proper phydev, to attach to... */
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200559 BUG_ON(phydev->attached_dev);
560
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100561 phydev = phy_connect(dev, phydev_name(phydev),
Florian Fainellif9a8f832013-01-14 00:52:52 +0000562 &au1000_adjust_link, PHY_INTERFACE_MODE_MII);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200563
564 if (IS_ERR(phydev)) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000565 netdev_err(dev, "Could not attach to PHY\n");
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200566 return PTR_ERR(phydev);
567 }
568
569 /* mask with MAC supported features */
570 phydev->supported &= (SUPPORTED_10baseT_Half
571 | SUPPORTED_10baseT_Full
572 | SUPPORTED_100baseT_Half
573 | SUPPORTED_100baseT_Full
574 | SUPPORTED_Autoneg
575 /* | SUPPORTED_Pause | SUPPORTED_Asym_Pause */
576 | SUPPORTED_MII
577 | SUPPORTED_TP);
578
579 phydev->advertising = phydev->supported;
580
581 aup->old_link = 0;
582 aup->old_speed = 0;
583 aup->old_duplex = -1;
584 aup->phy_dev = phydev;
585
Andrew Lunn22209432016-01-06 20:11:13 +0100586 phy_attached_info(phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 return 0;
589}
590
591
592/*
593 * Buffer allocation/deallocation routines. The buffer descriptor returned
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400594 * has the virtual and dma address of a buffer suitable for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * both, receive and transmit operations.
596 */
Florian Fainelli34415922010-09-08 11:11:25 +0000597static struct db_dest *au1000_GetFreeDB(struct au1000_private *aup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Florian Fainelli34415922010-09-08 11:11:25 +0000599 struct db_dest *pDB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 pDB = aup->pDBfree;
601
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000602 if (pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 aup->pDBfree = pDB->pnext;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return pDB;
606}
607
Florian Fainelli34415922010-09-08 11:11:25 +0000608void au1000_ReleaseDB(struct au1000_private *aup, struct db_dest *pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Florian Fainelli34415922010-09-08 11:11:25 +0000610 struct db_dest *pDBfree = aup->pDBfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (pDBfree)
612 pDBfree->pnext = pDB;
613 aup->pDBfree = pDB;
614}
615
Florian Fainellieb049632010-04-06 22:09:01 +0000616static void au1000_reset_mac_unlocked(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200617{
Wang Chen454d7c92008-11-12 23:37:49 -0800618 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200619 int i;
620
Florian Fainellieb049632010-04-06 22:09:01 +0000621 au1000_hard_stop(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200622
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000623 writel(MAC_EN_CLOCK_ENABLE, aup->enable);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200624 wmb(); /* drain writebuffer */
625 mdelay(2);
Wolfgang Grandegger462ca992010-11-23 06:40:25 +0000626 writel(0, aup->enable);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200627 wmb(); /* drain writebuffer */
628 mdelay(2);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 aup->tx_full = 0;
631 for (i = 0; i < NUM_RX_DMA; i++) {
632 /* reset control bits */
633 aup->rx_dma_ring[i]->buff_stat &= ~0xf;
634 }
635 for (i = 0; i < NUM_TX_DMA; i++) {
636 /* reset control bits */
637 aup->tx_dma_ring[i]->buff_stat &= ~0xf;
638 }
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200639
640 aup->mac_enabled = 0;
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Florian Fainellieb049632010-04-06 22:09:01 +0000644static void au1000_reset_mac(struct net_device *dev)
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200645{
Wang Chen454d7c92008-11-12 23:37:49 -0800646 struct au1000_private *const aup = netdev_priv(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200647 unsigned long flags;
648
Florian Fainelli5368c722010-04-06 22:09:17 +0000649 netif_dbg(aup, hw, dev, "reset mac, aup %x\n",
650 (unsigned)aup);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200651
652 spin_lock_irqsave(&aup->lock, flags);
653
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000654 au1000_reset_mac_unlocked(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200655
656 spin_unlock_irqrestore(&aup->lock, flags);
657}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400659/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * Setup the receive and transmit "rings". These pointers are the addresses
661 * of the rx and tx MAC DMA registers so they are fixed by the hardware --
662 * these are not descriptors sitting in memory.
663 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400664static void
Linus Torvaldsd6748062011-11-03 13:28:14 -0700665au1000_setup_hw_rings(struct au1000_private *aup, void __iomem *tx_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 int i;
668
669 for (i = 0; i < NUM_RX_DMA; i++) {
Linus Torvaldsd6748062011-11-03 13:28:14 -0700670 aup->rx_dma_ring[i] = (struct rx_dma *)
671 (tx_base + 0x100 + sizeof(struct rx_dma) * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673 for (i = 0; i < NUM_TX_DMA; i++) {
Linus Torvaldsd6748062011-11-03 13:28:14 -0700674 aup->tx_dma_ring[i] = (struct tx_dma *)
675 (tx_base + sizeof(struct tx_dma) * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200680 * ethtool operations
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683static int au1000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
684{
Wang Chen454d7c92008-11-12 23:37:49 -0800685 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200687 if (aup->phy_dev)
688 return phy_ethtool_gset(aup->phy_dev, cmd);
689
690 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693static int au1000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
694{
Wang Chen454d7c92008-11-12 23:37:49 -0800695 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200697 if (!capable(CAP_NET_ADMIN))
698 return -EPERM;
699
700 if (aup->phy_dev)
701 return phy_ethtool_sset(aup->phy_dev, cmd);
702
703 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706static void
707au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
708{
Wang Chen454d7c92008-11-12 23:37:49 -0800709 struct au1000_private *aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jiri Pirko7826d432013-01-06 00:44:26 +0000711 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
712 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
713 snprintf(info->bus_info, sizeof(info->bus_info), "%s %d", DRV_NAME,
714 aup->mac_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000717static void au1000_set_msglevel(struct net_device *dev, u32 value)
718{
719 struct au1000_private *aup = netdev_priv(dev);
720 aup->msg_enable = value;
721}
722
723static u32 au1000_get_msglevel(struct net_device *dev)
724{
725 struct au1000_private *aup = netdev_priv(dev);
726 return aup->msg_enable;
727}
728
Jeff Garzik7282d492006-09-13 14:30:00 -0400729static const struct ethtool_ops au1000_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 .get_settings = au1000_get_settings,
731 .set_settings = au1000_set_settings,
732 .get_drvinfo = au1000_get_drvinfo,
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200733 .get_link = ethtool_op_get_link,
Florian Fainelli7cd2e6e2010-04-06 22:09:09 +0000734 .get_msglevel = au1000_get_msglevel,
735 .set_msglevel = au1000_set_msglevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736};
737
Florian Fainelli5ef30412009-01-22 14:06:25 -0800738
739/*
740 * Initialize the interface.
741 *
742 * When the device powers up, the clocks are disabled and the
743 * mac is in reset state. When the interface is closed, we
744 * do the same -- reset the device and disable the clocks to
745 * conserve power. Thus, whenever au1000_init() is called,
746 * the device should already be in reset state.
747 */
748static int au1000_init(struct net_device *dev)
749{
750 struct au1000_private *aup = netdev_priv(dev);
751 unsigned long flags;
752 int i;
753 u32 control;
754
Florian Fainelli5368c722010-04-06 22:09:17 +0000755 netif_dbg(aup, hw, dev, "au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800756
757 /* bring the device out of reset */
Florian Fainellieb049632010-04-06 22:09:01 +0000758 au1000_enable_mac(dev, 1);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800759
760 spin_lock_irqsave(&aup->lock, flags);
761
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000762 writel(0, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800763 aup->tx_head = (aup->tx_dma_ring[0]->buff_stat & 0xC) >> 2;
764 aup->tx_tail = aup->tx_head;
765 aup->rx_head = (aup->rx_dma_ring[0]->buff_stat & 0xC) >> 2;
766
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000767 writel(dev->dev_addr[5]<<8 | dev->dev_addr[4],
768 &aup->mac->mac_addr_high);
769 writel(dev->dev_addr[3]<<24 | dev->dev_addr[2]<<16 |
770 dev->dev_addr[1]<<8 | dev->dev_addr[0],
771 &aup->mac->mac_addr_low);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800772
Florian Fainelli18b8e152010-09-08 11:11:40 +0000773
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000774 for (i = 0; i < NUM_RX_DMA; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800775 aup->rx_dma_ring[i]->buff_stat |= RX_DMA_ENABLE;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +0000776
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200777 wmb(); /* drain writebuffer */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800778
779 control = MAC_RX_ENABLE | MAC_TX_ENABLE;
780#ifndef CONFIG_CPU_LITTLE_ENDIAN
781 control |= MAC_BIG_ENDIAN;
782#endif
783 if (aup->phy_dev) {
784 if (aup->phy_dev->link && (DUPLEX_FULL == aup->phy_dev->duplex))
785 control |= MAC_FULL_DUPLEX;
786 else
787 control |= MAC_DISABLE_RX_OWN;
788 } else { /* PHY-less op, assume full-duplex */
789 control |= MAC_FULL_DUPLEX;
790 }
791
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000792 writel(control, &aup->mac->control);
793 writel(0x8100, &aup->mac->vlan1_tag); /* activate vlan support */
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200794 wmb(); /* drain writebuffer */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800795
796 spin_unlock_irqrestore(&aup->lock, flags);
797 return 0;
798}
799
Florian Fainellieb049632010-04-06 22:09:01 +0000800static inline void au1000_update_rx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800801{
Florian Fainelli5ef30412009-01-22 14:06:25 -0800802 struct net_device_stats *ps = &dev->stats;
803
804 ps->rx_packets++;
805 if (status & RX_MCAST_FRAME)
806 ps->multicast++;
807
808 if (status & RX_ERROR) {
809 ps->rx_errors++;
810 if (status & RX_MISSED_FRAME)
811 ps->rx_missed_errors++;
roel kluin4989ccb2009-10-06 09:54:18 +0000812 if (status & (RX_OVERLEN | RX_RUNT | RX_LEN_ERROR))
Florian Fainelli5ef30412009-01-22 14:06:25 -0800813 ps->rx_length_errors++;
814 if (status & RX_CRC_ERROR)
815 ps->rx_crc_errors++;
816 if (status & RX_COLL)
817 ps->collisions++;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000818 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -0800819 ps->rx_bytes += status & RX_FRAME_LEN_MASK;
820
821}
822
823/*
824 * Au1000 receive routine.
825 */
826static int au1000_rx(struct net_device *dev)
827{
828 struct au1000_private *aup = netdev_priv(dev);
829 struct sk_buff *skb;
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000830 struct rx_dma *prxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800831 u32 buff_stat, status;
Florian Fainelli34415922010-09-08 11:11:25 +0000832 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800833 u32 frmlen;
834
Florian Fainelli5368c722010-04-06 22:09:17 +0000835 netif_dbg(aup, rx_status, dev, "au1000_rx head %d\n", aup->rx_head);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800836
837 prxd = aup->rx_dma_ring[aup->rx_head];
838 buff_stat = prxd->buff_stat;
839 while (buff_stat & RX_T_DONE) {
840 status = prxd->status;
841 pDB = aup->rx_db_inuse[aup->rx_head];
Florian Fainellieb049632010-04-06 22:09:01 +0000842 au1000_update_rx_stats(dev, status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800843 if (!(status & RX_ERROR)) {
844
845 /* good frame */
846 frmlen = (status & RX_FRAME_LEN_MASK);
847 frmlen -= 4; /* Remove FCS */
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000848 skb = netdev_alloc_skb(dev, frmlen + 2);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800849 if (skb == NULL) {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800850 dev->stats.rx_dropped++;
851 continue;
852 }
853 skb_reserve(skb, 2); /* 16 byte IP header align */
854 skb_copy_to_linear_data(skb,
855 (unsigned char *)pDB->vaddr, frmlen);
856 skb_put(skb, frmlen);
857 skb->protocol = eth_type_trans(skb, dev);
858 netif_rx(skb); /* pass the packet to upper layers */
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000859 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800860 if (au1000_debug > 4) {
Florian Fainelli215e17b2010-09-08 11:11:45 +0000861 pr_err("rx_error(s):");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800862 if (status & RX_MISSED_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000863 pr_cont(" miss");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800864 if (status & RX_WDOG_TIMER)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000865 pr_cont(" wdog");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800866 if (status & RX_RUNT)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000867 pr_cont(" runt");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800868 if (status & RX_OVERLEN)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000869 pr_cont(" overlen");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800870 if (status & RX_COLL)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000871 pr_cont(" coll");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800872 if (status & RX_MII_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000873 pr_cont(" mii error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800874 if (status & RX_CRC_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000875 pr_cont(" crc error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800876 if (status & RX_LEN_ERROR)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000877 pr_cont(" len error");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800878 if (status & RX_U_CNTRL_FRAME)
Florian Fainelli215e17b2010-09-08 11:11:45 +0000879 pr_cont(" u control frame");
880 pr_cont("\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800881 }
882 }
883 prxd->buff_stat = (u32)(pDB->dma_addr | RX_DMA_ENABLE);
884 aup->rx_head = (aup->rx_head + 1) & (NUM_RX_DMA - 1);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200885 wmb(); /* drain writebuffer */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800886
887 /* next descriptor */
888 prxd = aup->rx_dma_ring[aup->rx_head];
889 buff_stat = prxd->buff_stat;
890 }
891 return 0;
892}
893
Florian Fainellieb049632010-04-06 22:09:01 +0000894static void au1000_update_tx_stats(struct net_device *dev, u32 status)
Florian Fainelli5ef30412009-01-22 14:06:25 -0800895{
896 struct au1000_private *aup = netdev_priv(dev);
897 struct net_device_stats *ps = &dev->stats;
898
899 if (status & TX_FRAME_ABORTED) {
900 if (!aup->phy_dev || (DUPLEX_FULL == aup->phy_dev->duplex)) {
901 if (status & (TX_JAB_TIMEOUT | TX_UNDERRUN)) {
902 /* any other tx errors are only valid
Florian Fainellidc998392010-09-08 11:11:59 +0000903 * in half duplex mode
904 */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800905 ps->tx_errors++;
906 ps->tx_aborted_errors++;
907 }
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000908 } else {
Florian Fainelli5ef30412009-01-22 14:06:25 -0800909 ps->tx_errors++;
910 ps->tx_aborted_errors++;
911 if (status & (TX_NO_CARRIER | TX_LOSS_CARRIER))
912 ps->tx_carrier_errors++;
913 }
914 }
915}
916
917/*
918 * Called from the interrupt service routine to acknowledge
919 * the TX DONE bits. This is a must if the irq is setup as
920 * edge triggered.
921 */
922static void au1000_tx_ack(struct net_device *dev)
923{
924 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +0000925 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -0800926
927 ptxd = aup->tx_dma_ring[aup->tx_tail];
928
929 while (ptxd->buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +0000930 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800931 ptxd->buff_stat &= ~TX_T_DONE;
932 ptxd->len = 0;
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200933 wmb(); /* drain writebuffer */
Florian Fainelli5ef30412009-01-22 14:06:25 -0800934
935 aup->tx_tail = (aup->tx_tail + 1) & (NUM_TX_DMA - 1);
936 ptxd = aup->tx_dma_ring[aup->tx_tail];
937
938 if (aup->tx_full) {
939 aup->tx_full = 0;
940 netif_wake_queue(dev);
941 }
942 }
943}
944
945/*
946 * Au1000 interrupt service routine.
947 */
948static irqreturn_t au1000_interrupt(int irq, void *dev_id)
949{
950 struct net_device *dev = dev_id;
951
952 /* Handle RX interrupts first to minimize chance of overrun */
953
954 au1000_rx(dev);
955 au1000_tx_ack(dev);
956 return IRQ_RETVAL(1);
957}
958
959static int au1000_open(struct net_device *dev)
960{
961 int retval;
962 struct au1000_private *aup = netdev_priv(dev);
963
Florian Fainelli5368c722010-04-06 22:09:17 +0000964 netif_dbg(aup, drv, dev, "open: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800965
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000966 retval = request_irq(dev->irq, au1000_interrupt, 0,
967 dev->name, dev);
968 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000969 netdev_err(dev, "unable to get IRQ %d\n", dev->irq);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800970 return retval;
971 }
972
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +0000973 retval = au1000_init(dev);
974 if (retval) {
Florian Fainelli5368c722010-04-06 22:09:17 +0000975 netdev_err(dev, "error in au1000_init\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800976 free_irq(dev->irq, dev);
977 return retval;
978 }
979
980 if (aup->phy_dev) {
981 /* cause the PHY state machine to schedule a link state check */
982 aup->phy_dev->state = PHY_CHANGELINK;
983 phy_start(aup->phy_dev);
984 }
985
986 netif_start_queue(dev);
987
Florian Fainelli5368c722010-04-06 22:09:17 +0000988 netif_dbg(aup, drv, dev, "open: Initialization done.\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -0800989
990 return 0;
991}
992
993static int au1000_close(struct net_device *dev)
994{
995 unsigned long flags;
996 struct au1000_private *const aup = netdev_priv(dev);
997
Florian Fainelli5368c722010-04-06 22:09:17 +0000998 netif_dbg(aup, drv, dev, "close: dev=%p\n", dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -0800999
1000 if (aup->phy_dev)
1001 phy_stop(aup->phy_dev);
1002
1003 spin_lock_irqsave(&aup->lock, flags);
1004
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001005 au1000_reset_mac_unlocked(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001006
1007 /* stop the device */
1008 netif_stop_queue(dev);
1009
1010 /* disable the interrupt */
1011 free_irq(dev->irq, dev);
1012 spin_unlock_irqrestore(&aup->lock, flags);
1013
1014 return 0;
1015}
1016
1017/*
1018 * Au1000 transmit routine.
1019 */
Stephen Hemminger613573252009-08-31 19:50:58 +00001020static netdev_tx_t au1000_tx(struct sk_buff *skb, struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -08001021{
1022 struct au1000_private *aup = netdev_priv(dev);
1023 struct net_device_stats *ps = &dev->stats;
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001024 struct tx_dma *ptxd;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001025 u32 buff_stat;
Florian Fainelli34415922010-09-08 11:11:25 +00001026 struct db_dest *pDB;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001027 int i;
1028
Florian Fainelli5368c722010-04-06 22:09:17 +00001029 netif_dbg(aup, tx_queued, dev, "tx: aup %x len=%d, data=%p, head %d\n",
1030 (unsigned)aup, skb->len,
Florian Fainelli5ef30412009-01-22 14:06:25 -08001031 skb->data, aup->tx_head);
1032
1033 ptxd = aup->tx_dma_ring[aup->tx_head];
1034 buff_stat = ptxd->buff_stat;
1035 if (buff_stat & TX_DMA_ENABLE) {
1036 /* We've wrapped around and the transmitter is still busy */
1037 netif_stop_queue(dev);
1038 aup->tx_full = 1;
Patrick McHardy5b548142009-06-12 06:22:29 +00001039 return NETDEV_TX_BUSY;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001040 } else if (buff_stat & TX_T_DONE) {
Florian Fainellieb049632010-04-06 22:09:01 +00001041 au1000_update_tx_stats(dev, ptxd->status);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001042 ptxd->len = 0;
1043 }
1044
1045 if (aup->tx_full) {
1046 aup->tx_full = 0;
1047 netif_wake_queue(dev);
1048 }
1049
1050 pDB = aup->tx_db_inuse[aup->tx_head];
Florian Fainellibd2302c2009-11-10 01:13:38 +01001051 skb_copy_from_linear_data(skb, (void *)pDB->vaddr, skb->len);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001052 if (skb->len < ETH_ZLEN) {
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001053 for (i = skb->len; i < ETH_ZLEN; i++)
Florian Fainelli5ef30412009-01-22 14:06:25 -08001054 ((char *)pDB->vaddr)[i] = 0;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001055
Florian Fainelli5ef30412009-01-22 14:06:25 -08001056 ptxd->len = ETH_ZLEN;
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001057 } else
Florian Fainelli5ef30412009-01-22 14:06:25 -08001058 ptxd->len = skb->len;
1059
1060 ps->tx_packets++;
1061 ps->tx_bytes += ptxd->len;
1062
1063 ptxd->buff_stat = pDB->dma_addr | TX_DMA_ENABLE;
Manuel Lauss2f73bfb2014-07-23 16:36:26 +02001064 wmb(); /* drain writebuffer */
Florian Fainelli5ef30412009-01-22 14:06:25 -08001065 dev_kfree_skb(skb);
1066 aup->tx_head = (aup->tx_head + 1) & (NUM_TX_DMA - 1);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001067 return NETDEV_TX_OK;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001068}
1069
1070/*
1071 * The Tx ring has been full longer than the watchdog timeout
1072 * value. The transmitter must be hung?
1073 */
1074static void au1000_tx_timeout(struct net_device *dev)
1075{
Florian Fainelli5368c722010-04-06 22:09:17 +00001076 netdev_err(dev, "au1000_tx_timeout: dev=%p\n", dev);
Florian Fainellieb049632010-04-06 22:09:01 +00001077 au1000_reset_mac(dev);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001078 au1000_init(dev);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -07001079 dev->trans_start = jiffies; /* prevent tx timeout */
Florian Fainelli5ef30412009-01-22 14:06:25 -08001080 netif_wake_queue(dev);
1081}
1082
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001083static void au1000_multicast_list(struct net_device *dev)
Florian Fainelli5ef30412009-01-22 14:06:25 -08001084{
1085 struct au1000_private *aup = netdev_priv(dev);
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001086 u32 reg;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001087
Florian Fainelli18b8e152010-09-08 11:11:40 +00001088 netif_dbg(aup, drv, dev, "%s: flags=%x\n", __func__, dev->flags);
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001089 reg = readl(&aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001090 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001091 reg |= MAC_PROMISCUOUS;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001092 } else if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001093 netdev_mc_count(dev) > MULTICAST_FILTER_LIMIT) {
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001094 reg |= MAC_PASS_ALL_MULTI;
1095 reg &= ~MAC_PROMISCUOUS;
Florian Fainelli5368c722010-04-06 22:09:17 +00001096 netdev_info(dev, "Pass all multicast\n");
Florian Fainelli5ef30412009-01-22 14:06:25 -08001097 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001098 struct netdev_hw_addr *ha;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001099 u32 mc_filter[2]; /* Multicast hash filter */
1100
1101 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001102 netdev_for_each_mc_addr(ha, dev)
1103 set_bit(ether_crc(ETH_ALEN, ha->addr)>>26,
Florian Fainelli5ef30412009-01-22 14:06:25 -08001104 (long *)mc_filter);
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001105 writel(mc_filter[1], &aup->mac->multi_hash_high);
1106 writel(mc_filter[0], &aup->mac->multi_hash_low);
1107 reg &= ~MAC_PROMISCUOUS;
1108 reg |= MAC_HASH_MODE;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001109 }
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001110 writel(reg, &aup->mac->control);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001111}
1112
1113static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1114{
1115 struct au1000_private *aup = netdev_priv(dev);
1116
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001117 if (!netif_running(dev))
1118 return -EINVAL;
Florian Fainelli5ef30412009-01-22 14:06:25 -08001119
Florian Fainelli2cc3c6b2010-04-06 22:09:06 +00001120 if (!aup->phy_dev)
1121 return -EINVAL; /* PHY not controllable */
Florian Fainelli5ef30412009-01-22 14:06:25 -08001122
Richard Cochran28b04112010-07-17 08:48:55 +00001123 return phy_mii_ioctl(aup->phy_dev, rq, cmd);
Florian Fainelli5ef30412009-01-22 14:06:25 -08001124}
1125
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001126static const struct net_device_ops au1000_netdev_ops = {
1127 .ndo_open = au1000_open,
1128 .ndo_stop = au1000_close,
1129 .ndo_start_xmit = au1000_tx,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001130 .ndo_set_rx_mode = au1000_multicast_list,
Alexander Beregalovd9a92ce2009-04-14 18:30:23 +00001131 .ndo_do_ioctl = au1000_ioctl,
1132 .ndo_tx_timeout = au1000_tx_timeout,
1133 .ndo_set_mac_address = eth_mac_addr,
1134 .ndo_validate_addr = eth_validate_addr,
1135 .ndo_change_mtu = eth_change_mtu,
1136};
1137
Bill Pemberton0cb05682012-12-03 09:23:54 -05001138static int au1000_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 struct au1000_private *aup = NULL;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001141 struct au1000_eth_platform_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct net_device *dev = NULL;
Florian Fainelli34415922010-09-08 11:11:25 +00001143 struct db_dest *pDB, *pDBfree;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001144 int irq, i, err = 0;
Linus Torvaldsd6748062011-11-03 13:28:14 -07001145 struct resource *base, *macen, *macdma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Florian Fainellibd2302c2009-11-10 01:13:38 +01001147 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1148 if (!base) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001149 dev_err(&pdev->dev, "failed to retrieve base register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001150 err = -ENODEV;
1151 goto out;
1152 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001153
Florian Fainellibd2302c2009-11-10 01:13:38 +01001154 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1155 if (!macen) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001156 dev_err(&pdev->dev, "failed to retrieve MAC Enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001157 err = -ENODEV;
1158 goto out;
1159 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001160
Florian Fainellibd2302c2009-11-10 01:13:38 +01001161 irq = platform_get_irq(pdev, 0);
1162 if (irq < 0) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001163 dev_err(&pdev->dev, "failed to retrieve IRQ\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001164 err = -ENODEV;
1165 goto out;
1166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvaldsd6748062011-11-03 13:28:14 -07001168 macdma = platform_get_resource(pdev, IORESOURCE_MEM, 2);
1169 if (!macdma) {
1170 dev_err(&pdev->dev, "failed to retrieve MACDMA registers\n");
1171 err = -ENODEV;
1172 goto out;
1173 }
1174
Florian Fainelli18b8e152010-09-08 11:11:40 +00001175 if (!request_mem_region(base->start, resource_size(base),
1176 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001177 dev_err(&pdev->dev, "failed to request memory region for base registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001178 err = -ENXIO;
1179 goto out;
1180 }
1181
Florian Fainelli18b8e152010-09-08 11:11:40 +00001182 if (!request_mem_region(macen->start, resource_size(macen),
1183 pdev->name)) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001184 dev_err(&pdev->dev, "failed to request memory region for MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001185 err = -ENXIO;
1186 goto err_request;
1187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Linus Torvaldsd6748062011-11-03 13:28:14 -07001189 if (!request_mem_region(macdma->start, resource_size(macdma),
1190 pdev->name)) {
1191 dev_err(&pdev->dev, "failed to request MACDMA memory region\n");
1192 err = -ENXIO;
1193 goto err_macdma;
1194 }
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 dev = alloc_etherdev(sizeof(struct au1000_private));
1197 if (!dev) {
Florian Fainellibd2302c2009-11-10 01:13:38 +01001198 err = -ENOMEM;
1199 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201
Florian Fainellibd2302c2009-11-10 01:13:38 +01001202 SET_NETDEV_DEV(dev, &pdev->dev);
1203 platform_set_drvdata(pdev, dev);
Wang Chen454d7c92008-11-12 23:37:49 -08001204 aup = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Martin Gebert533763d2008-07-23 09:40:09 +02001206 spin_lock_init(&aup->lock);
Florian Fainelli18b8e152010-09-08 11:11:40 +00001207 aup->msg_enable = (au1000_debug < 4 ?
1208 AU1000_DEF_MSG_ENABLE : au1000_debug);
Martin Gebert533763d2008-07-23 09:40:09 +02001209
Florian Fainellidc998392010-09-08 11:11:59 +00001210 /* Allocate the data buffers
1211 * Snooping works fine with eth on all au1xxx
1212 */
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001213 aup->vaddr = (u32)dma_alloc_noncoherent(NULL, MAX_BUF_SIZE *
1214 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1215 &aup->dma_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!aup->vaddr) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001217 dev_err(&pdev->dev, "failed to allocate data buffers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001218 err = -ENOMEM;
1219 goto err_vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
1222 /* aup->mac is the base address of the MAC's registers */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001223 aup->mac = (struct mac_reg *)
Florian Fainelli18b8e152010-09-08 11:11:40 +00001224 ioremap_nocache(base->start, resource_size(base));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001225 if (!aup->mac) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001226 dev_err(&pdev->dev, "failed to ioremap MAC registers\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001227 err = -ENXIO;
1228 goto err_remap1;
1229 }
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001230
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001231 /* Setup some variables for quick register address access */
Florian Fainellid0e7cb52010-09-08 11:15:13 +00001232 aup->enable = (u32 *)ioremap_nocache(macen->start,
Florian Fainelli18b8e152010-09-08 11:11:40 +00001233 resource_size(macen));
Florian Fainellibd2302c2009-11-10 01:13:38 +01001234 if (!aup->enable) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001235 dev_err(&pdev->dev, "failed to ioremap MAC enable register\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001236 err = -ENXIO;
1237 goto err_remap2;
1238 }
1239 aup->mac_id = pdev->id;
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001240
Linus Torvaldsd6748062011-11-03 13:28:14 -07001241 aup->macdma = ioremap_nocache(macdma->start, resource_size(macdma));
1242 if (!aup->macdma) {
1243 dev_err(&pdev->dev, "failed to ioremap MACDMA registers\n");
1244 err = -ENXIO;
1245 goto err_remap3;
1246 }
1247
1248 au1000_setup_hw_rings(aup, aup->macdma);
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001249
Wolfgang Grandegger462ca992010-11-23 06:40:25 +00001250 writel(0, aup->enable);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001251 aup->mac_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Jingoo Han1fc2c462013-08-30 13:51:45 +09001253 pd = dev_get_platdata(&pdev->dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001254 if (!pd) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001255 dev_info(&pdev->dev, "no platform_data passed,"
1256 " PHY search on MAC0\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001257 aup->phy1_search_mac0 = 1;
1258 } else {
Danny Kukawka7718f2c2012-02-17 05:43:22 +00001259 if (is_valid_ether_addr(pd->mac)) {
Joe Perchesd458cdf2013-10-01 19:04:40 -07001260 memcpy(dev->dev_addr, pd->mac, ETH_ALEN);
Danny Kukawka7718f2c2012-02-17 05:43:22 +00001261 } else {
1262 /* Set a random MAC since no valid provided by platform_data. */
1263 eth_hw_addr_random(dev);
1264 }
Manuel Laussf6673652010-07-21 14:30:50 +02001265
Florian Fainellibd2302c2009-11-10 01:13:38 +01001266 aup->phy_static_config = pd->phy_static_config;
1267 aup->phy_search_highest_addr = pd->phy_search_highest_addr;
1268 aup->phy1_search_mac0 = pd->phy1_search_mac0;
1269 aup->phy_addr = pd->phy_addr;
1270 aup->phy_busid = pd->phy_busid;
1271 aup->phy_irq = pd->phy_irq;
1272 }
1273
1274 if (aup->phy_busid && aup->phy_busid > 0) {
Florian Fainelli18b8e152010-09-08 11:11:40 +00001275 dev_err(&pdev->dev, "MAC0-associated PHY attached 2nd MACs MII bus not supported yet\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001276 err = -ENODEV;
1277 goto err_mdiobus_alloc;
1278 }
1279
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001280 aup->mii_bus = mdiobus_alloc();
Florian Fainellibd2302c2009-11-10 01:13:38 +01001281 if (aup->mii_bus == NULL) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001282 dev_err(&pdev->dev, "failed to allocate mdiobus structure\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001283 err = -ENOMEM;
1284 goto err_mdiobus_alloc;
1285 }
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001286
1287 aup->mii_bus->priv = dev;
Adrian Bunk1210dde2008-10-12 21:02:19 -07001288 aup->mii_bus->read = au1000_mdiobus_read;
1289 aup->mii_bus->write = au1000_mdiobus_write;
1290 aup->mii_bus->reset = au1000_mdiobus_reset;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001291 aup->mii_bus->name = "au1000_eth_mii";
Florian Fainellif74299b2012-01-09 23:59:09 +00001292 snprintf(aup->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1293 pdev->name, aup->mac_id);
roel kluindcbfef82009-08-30 22:40:15 +00001294
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001295 /* if known, set corresponding PHY IRQs */
Florian Fainellibd2302c2009-11-10 01:13:38 +01001296 if (aup->phy_static_config)
1297 if (aup->phy_irq && aup->phy_busid == aup->mac_id)
1298 aup->mii_bus->irq[aup->phy_addr] = aup->phy_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Florian Fainellibd2302c2009-11-10 01:13:38 +01001300 err = mdiobus_register(aup->mii_bus);
1301 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001302 dev_err(&pdev->dev, "failed to register MDIO bus\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001303 goto err_mdiobus_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001306 err = au1000_mii_probe(dev);
1307 if (err != 0)
Florian Fainellibd2302c2009-11-10 01:13:38 +01001308 goto err_out;
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 pDBfree = NULL;
1311 /* setup the data buffer descriptors and attach a buffer to each one */
1312 pDB = aup->db;
1313 for (i = 0; i < (NUM_TX_BUFFS+NUM_RX_BUFFS); i++) {
1314 pDB->pnext = pDBfree;
1315 pDBfree = pDB;
1316 pDB->vaddr = (u32 *)((unsigned)aup->vaddr + MAX_BUF_SIZE*i);
1317 pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
1318 pDB++;
1319 }
1320 aup->pDBfree = pDBfree;
1321
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001322 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 for (i = 0; i < NUM_RX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001324 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001325 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 aup->rx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1329 aup->rx_db_inuse[i] = pDB;
1330 }
Peter Senna Tschudin69129922012-10-05 12:10:52 +00001331
1332 err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 for (i = 0; i < NUM_TX_DMA; i++) {
Florian Fainellieb049632010-04-06 22:09:01 +00001334 pDB = au1000_GetFreeDB(aup);
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001335 if (!pDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto err_out;
Florian Fainelliec7eabdd2010-09-08 11:11:31 +00001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 aup->tx_dma_ring[i]->buff_stat = (unsigned)pDB->dma_addr;
1339 aup->tx_dma_ring[i]->len = 0;
1340 aup->tx_db_inuse[i] = pDB;
1341 }
1342
Florian Fainellibd2302c2009-11-10 01:13:38 +01001343 dev->base_addr = base->start;
1344 dev->irq = irq;
1345 dev->netdev_ops = &au1000_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001346 dev->ethtool_ops = &au1000_ethtool_ops;
Florian Fainellibd2302c2009-11-10 01:13:38 +01001347 dev->watchdog_timeo = ETH_TX_TIMEOUT;
1348
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001349 /*
1350 * The boot code uses the ethernet controller, so reset it to start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 * fresh. au1000_init() expects that the device is in reset state.
1352 */
Florian Fainellieb049632010-04-06 22:09:01 +00001353 au1000_reset_mac(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Florian Fainellibd2302c2009-11-10 01:13:38 +01001355 err = register_netdev(dev);
1356 if (err) {
Florian Fainelli5368c722010-04-06 22:09:17 +00001357 netdev_err(dev, "Cannot register net device, aborting.\n");
Florian Fainellibd2302c2009-11-10 01:13:38 +01001358 goto err_out;
1359 }
1360
Florian Fainelli5368c722010-04-06 22:09:17 +00001361 netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
1362 (unsigned long)base->start, irq);
Varka Bhadrame9c3f992014-09-11 12:50:50 +05301363
1364 pr_info_once("%s version %s %s\n", DRV_NAME, DRV_VERSION, DRV_AUTHOR);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001365
1366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368err_out:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001369 if (aup->mii_bus != NULL)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001370 mdiobus_unregister(aup->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 /* here we should have a valid dev plus aup-> register addresses
Florian Fainellidc998392010-09-08 11:11:59 +00001373 * so we can reset the mac properly.
1374 */
Florian Fainellieb049632010-04-06 22:09:01 +00001375 au1000_reset_mac(dev);
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +02001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 for (i = 0; i < NUM_RX_DMA; i++) {
1378 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001379 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381 for (i = 0; i < NUM_TX_DMA; i++) {
1382 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001383 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
Florian Fainellibd2302c2009-11-10 01:13:38 +01001385err_mdiobus_reg:
1386 mdiobus_free(aup->mii_bus);
1387err_mdiobus_alloc:
Linus Torvaldsd6748062011-11-03 13:28:14 -07001388 iounmap(aup->macdma);
1389err_remap3:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001390 iounmap(aup->enable);
1391err_remap2:
1392 iounmap(aup->mac);
1393err_remap1:
Sergei Shtylyov89be0502006-04-19 22:46:21 +04001394 dma_free_noncoherent(NULL, MAX_BUF_SIZE * (NUM_TX_BUFFS + NUM_RX_BUFFS),
1395 (void *)aup->vaddr, aup->dma_addr);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001396err_vaddr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 free_netdev(dev);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001398err_alloc:
Linus Torvaldsd6748062011-11-03 13:28:14 -07001399 release_mem_region(macdma->start, resource_size(macdma));
1400err_macdma:
Florian Fainellibd2302c2009-11-10 01:13:38 +01001401 release_mem_region(macen->start, resource_size(macen));
1402err_request:
1403 release_mem_region(base->start, resource_size(base));
1404out:
1405 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Bill Pemberton0cb05682012-12-03 09:23:54 -05001408static int au1000_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Florian Fainellibd2302c2009-11-10 01:13:38 +01001410 struct net_device *dev = platform_get_drvdata(pdev);
1411 struct au1000_private *aup = netdev_priv(dev);
1412 int i;
1413 struct resource *base, *macen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Florian Fainellibd2302c2009-11-10 01:13:38 +01001415 unregister_netdev(dev);
1416 mdiobus_unregister(aup->mii_bus);
1417 mdiobus_free(aup->mii_bus);
1418
1419 for (i = 0; i < NUM_RX_DMA; i++)
1420 if (aup->rx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001421 au1000_ReleaseDB(aup, aup->rx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001422
1423 for (i = 0; i < NUM_TX_DMA; i++)
1424 if (aup->tx_db_inuse[i])
Florian Fainellieb049632010-04-06 22:09:01 +00001425 au1000_ReleaseDB(aup, aup->tx_db_inuse[i]);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001426
1427 dma_free_noncoherent(NULL, MAX_BUF_SIZE *
1428 (NUM_TX_BUFFS + NUM_RX_BUFFS),
1429 (void *)aup->vaddr, aup->dma_addr);
1430
Linus Torvaldsd6748062011-11-03 13:28:14 -07001431 iounmap(aup->macdma);
Florian Fainellibd2302c2009-11-10 01:13:38 +01001432 iounmap(aup->mac);
1433 iounmap(aup->enable);
1434
Linus Torvaldsd6748062011-11-03 13:28:14 -07001435 base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
1436 release_mem_region(base->start, resource_size(base));
1437
Florian Fainellibd2302c2009-11-10 01:13:38 +01001438 base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1439 release_mem_region(base->start, resource_size(base));
1440
1441 macen = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1442 release_mem_region(macen->start, resource_size(macen));
1443
1444 free_netdev(dev);
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return 0;
1447}
1448
Florian Fainellibd2302c2009-11-10 01:13:38 +01001449static struct platform_driver au1000_eth_driver = {
1450 .probe = au1000_probe,
Bill Pemberton0cb05682012-12-03 09:23:54 -05001451 .remove = au1000_remove,
Florian Fainellibd2302c2009-11-10 01:13:38 +01001452 .driver = {
1453 .name = "au1000-eth",
Florian Fainellibd2302c2009-11-10 01:13:38 +01001454 },
1455};
Axel Lindb62f682011-11-27 16:44:17 +00001456
1457module_platform_driver(au1000_eth_driver);
1458
Florian Fainellibd2302c2009-11-10 01:13:38 +01001459MODULE_ALIAS("platform:au1000-eth");