blob: dc7953894c3517c88ff51d78950ae64fecbd6363 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Ralf Baechlef90fdc32006-02-08 23:23:26 +00002 * Copyright (C) 2001,2002,2003,2004 Broadcom Corporation
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01003 * Copyright (c) 2006, 2007 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Ralf Baechle74b02472005-10-19 15:40:02 +010014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 *
19 * This driver is designed for the Broadcom SiByte SOC built-in
20 * Ethernet controllers. Written by Mitch Lichtenberg at Broadcom Corp.
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010021 *
22 * Updated to the driver model and the PHY abstraction layer
23 * by Maciej W. Rozycki.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010025
26#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/string.h>
30#include <linux/timer.h>
31#include <linux/errno.h>
32#include <linux/ioport.h>
33#include <linux/slab.h>
34#include <linux/interrupt.h>
35#include <linux/netdevice.h>
36#include <linux/etherdevice.h>
37#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/bitops.h>
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010039#include <linux/err.h>
40#include <linux/ethtool.h>
41#include <linux/mii.h>
42#include <linux/phy.h>
43#include <linux/platform_device.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040044#include <linux/prefetch.h>
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/cache.h>
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010047#include <asm/io.h>
48#include <asm/processor.h> /* Processor type for cache alignment. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Operational parameters that usually are not changed. */
51
52#define CONFIG_SBMAC_COALESCE
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* Time in jiffies before concluding the transmitter is hung. */
55#define TX_TIMEOUT (2*HZ)
56
57
58MODULE_AUTHOR("Mitch Lichtenberg (Broadcom Corp.)");
59MODULE_DESCRIPTION("Broadcom SiByte SOC GB Ethernet driver");
60
61/* A few user-configurable values which may be modified when a driver
62 module is loaded. */
63
64/* 1 normal messages, 0 quiet .. 7 verbose. */
65static int debug = 1;
66module_param(debug, int, S_IRUGO);
67MODULE_PARM_DESC(debug, "Debug messages");
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#ifdef CONFIG_SBMAC_COALESCE
Mark Mason693aa942007-04-26 00:23:22 -070070static int int_pktcnt_tx = 255;
71module_param(int_pktcnt_tx, int, S_IRUGO);
72MODULE_PARM_DESC(int_pktcnt_tx, "TX packet count");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Mark Mason693aa942007-04-26 00:23:22 -070074static int int_timeout_tx = 255;
75module_param(int_timeout_tx, int, S_IRUGO);
76MODULE_PARM_DESC(int_timeout_tx, "TX timeout value");
77
78static int int_pktcnt_rx = 64;
79module_param(int_pktcnt_rx, int, S_IRUGO);
80MODULE_PARM_DESC(int_pktcnt_rx, "RX packet count");
81
82static int int_timeout_rx = 64;
83module_param(int_timeout_rx, int, S_IRUGO);
84MODULE_PARM_DESC(int_timeout_rx, "RX timeout value");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#endif
86
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +010087#include <asm/sibyte/board.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <asm/sibyte/sb1250.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +000089#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
90#include <asm/sibyte/bcm1480_regs.h>
91#include <asm/sibyte/bcm1480_int.h>
Mark Mason693aa942007-04-26 00:23:22 -070092#define R_MAC_DMA_OODPKTLOST_RX R_MAC_DMA_OODPKTLOST
Ralf Baechlef90fdc32006-02-08 23:23:26 +000093#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include <asm/sibyte/sb1250_regs.h>
Ralf Baechlef90fdc32006-02-08 23:23:26 +000095#include <asm/sibyte/sb1250_int.h>
96#else
Thomas Weber0b1974d2010-09-23 11:46:48 +020097#error invalid SiByte MAC configuration
Ralf Baechlef90fdc32006-02-08 23:23:26 +000098#endif
99#include <asm/sibyte/sb1250_scd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <asm/sibyte/sb1250_mac.h>
101#include <asm/sibyte/sb1250_dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000103#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
104#define UNIT_INT(n) (K_BCM1480_INT_MAC_0 + ((n) * 2))
105#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
106#define UNIT_INT(n) (K_INT_MAC_0 + (n))
107#else
Thomas Weber0b1974d2010-09-23 11:46:48 +0200108#error invalid SiByte MAC configuration
Ralf Baechlef90fdc32006-02-08 23:23:26 +0000109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100111#ifdef K_INT_PHY
112#define SBMAC_PHY_INT K_INT_PHY
113#else
114#define SBMAC_PHY_INT PHY_POLL
115#endif
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/**********************************************************************
118 * Simple types
119 ********************************************************************* */
120
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100121enum sbmac_speed {
122 sbmac_speed_none = 0,
123 sbmac_speed_10 = SPEED_10,
124 sbmac_speed_100 = SPEED_100,
125 sbmac_speed_1000 = SPEED_1000,
126};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100128enum sbmac_duplex {
129 sbmac_duplex_none = -1,
130 sbmac_duplex_half = DUPLEX_HALF,
131 sbmac_duplex_full = DUPLEX_FULL,
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100134enum sbmac_fc {
135 sbmac_fc_none,
136 sbmac_fc_disabled,
137 sbmac_fc_frame,
138 sbmac_fc_collision,
139 sbmac_fc_carrier,
140};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100142enum sbmac_state {
143 sbmac_state_uninit,
144 sbmac_state_off,
145 sbmac_state_on,
146 sbmac_state_broken,
147};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149
150/**********************************************************************
151 * Macros
152 ********************************************************************* */
153
154
155#define SBDMA_NEXTBUF(d,f) ((((d)->f+1) == (d)->sbdma_dscrtable_end) ? \
156 (d)->sbdma_dscrtable : (d)->f+1)
157
158
159#define NUMCACHEBLKS(x) (((x)+SMP_CACHE_BYTES-1)/SMP_CACHE_BYTES)
160
Mark Mason693aa942007-04-26 00:23:22 -0700161#define SBMAC_MAX_TXDESCR 256
162#define SBMAC_MAX_RXDESCR 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Ralf Baechle74b02472005-10-19 15:40:02 +0100164#define ENET_PACKET_SIZE 1518
165/*#define ENET_PACKET_SIZE 9216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/**********************************************************************
168 * DMA Descriptor structure
169 ********************************************************************* */
170
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100171struct sbdmadscr {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 uint64_t dscr_a;
173 uint64_t dscr_b;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100174};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/**********************************************************************
177 * DMA Controller structure
178 ********************************************************************* */
179
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100180struct sbmacdma {
Ralf Baechle74b02472005-10-19 15:40:02 +0100181
182 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * This stuff is used to identify the channel and the registers
184 * associated with it.
185 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100186 struct sbmac_softc *sbdma_eth; /* back pointer to associated
187 MAC */
188 int sbdma_channel; /* channel number */
189 int sbdma_txdir; /* direction (1=transmit) */
190 int sbdma_maxdescr; /* total # of descriptors
191 in ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#ifdef CONFIG_SBMAC_COALESCE
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100193 int sbdma_int_pktcnt;
194 /* # descriptors rx/tx
195 before interrupt */
196 int sbdma_int_timeout;
197 /* # usec rx/tx interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#endif
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100199 void __iomem *sbdma_config0; /* DMA config register 0 */
200 void __iomem *sbdma_config1; /* DMA config register 1 */
201 void __iomem *sbdma_dscrbase;
202 /* descriptor base address */
203 void __iomem *sbdma_dscrcnt; /* descriptor count register */
204 void __iomem *sbdma_curdscr; /* current descriptor
205 address */
206 void __iomem *sbdma_oodpktlost;
207 /* pkt drop (rx only) */
Ralf Baechle74b02472005-10-19 15:40:02 +0100208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /*
210 * This stuff is for maintenance of the ring
211 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100212 void *sbdma_dscrtable_unaligned;
213 struct sbdmadscr *sbdma_dscrtable;
214 /* base of descriptor table */
215 struct sbdmadscr *sbdma_dscrtable_end;
216 /* end of descriptor table */
217 struct sk_buff **sbdma_ctxtable;
218 /* context table, one
219 per descr */
220 dma_addr_t sbdma_dscrtable_phys;
221 /* and also the phys addr */
222 struct sbdmadscr *sbdma_addptr; /* next dscr for sw to add */
223 struct sbdmadscr *sbdma_remptr; /* next dscr for sw
224 to remove */
225};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227
228/**********************************************************************
229 * Ethernet softc structure
230 ********************************************************************* */
231
232struct sbmac_softc {
Ralf Baechle74b02472005-10-19 15:40:02 +0100233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * Linux-specific things
236 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100237 struct net_device *sbm_dev; /* pointer to linux device */
238 struct napi_struct napi;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100239 struct phy_device *phy_dev; /* the associated PHY device */
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700240 struct mii_bus *mii_bus; /* the MII bus */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100241 spinlock_t sbm_lock; /* spin lock */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100242 int sbm_devflags; /* current device flags */
Ralf Baechle74b02472005-10-19 15:40:02 +0100243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /*
245 * Controller-specific things
246 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100247 void __iomem *sbm_base; /* MAC's base address */
248 enum sbmac_state sbm_state; /* current state */
Ralf Baechle74b02472005-10-19 15:40:02 +0100249
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100250 void __iomem *sbm_macenable; /* MAC Enable Register */
251 void __iomem *sbm_maccfg; /* MAC Config Register */
252 void __iomem *sbm_fifocfg; /* FIFO Config Register */
253 void __iomem *sbm_framecfg; /* Frame Config Register */
254 void __iomem *sbm_rxfilter; /* Receive Filter Register */
255 void __iomem *sbm_isr; /* Interrupt Status Register */
256 void __iomem *sbm_imr; /* Interrupt Mask Register */
257 void __iomem *sbm_mdio; /* MDIO Register */
Ralf Baechle74b02472005-10-19 15:40:02 +0100258
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100259 enum sbmac_speed sbm_speed; /* current speed */
260 enum sbmac_duplex sbm_duplex; /* current duplex */
261 enum sbmac_fc sbm_fc; /* cur. flow control setting */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100262 int sbm_pause; /* current pause setting */
263 int sbm_link; /* current link state */
Ralf Baechle74b02472005-10-19 15:40:02 +0100264
Joe Perches104bf3f2011-11-16 09:38:03 +0000265 unsigned char sbm_hwaddr[ETH_ALEN];
Ralf Baechle74b02472005-10-19 15:40:02 +0100266
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100267 struct sbmacdma sbm_txdma; /* only channel 0 for now */
268 struct sbmacdma sbm_rxdma;
269 int rx_hw_checksum;
270 int sbe_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271};
272
273
274/**********************************************************************
275 * Externs
276 ********************************************************************* */
277
278/**********************************************************************
279 * Prototypes
280 ********************************************************************* */
281
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100282static void sbdma_initctx(struct sbmacdma *d, struct sbmac_softc *s, int chan,
283 int txrx, int maxdescr);
284static void sbdma_channel_start(struct sbmacdma *d, int rxtx);
Stephen Hemminger789585e2008-05-18 04:45:09 +0100285static int sbdma_add_rcvbuffer(struct sbmac_softc *sc, struct sbmacdma *d,
286 struct sk_buff *m);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100287static int sbdma_add_txbuffer(struct sbmacdma *d, struct sk_buff *m);
288static void sbdma_emptyring(struct sbmacdma *d);
Stephen Hemminger789585e2008-05-18 04:45:09 +0100289static void sbdma_fillring(struct sbmac_softc *sc, struct sbmacdma *d);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100290static int sbdma_rx_process(struct sbmac_softc *sc, struct sbmacdma *d,
291 int work_to_do, int poll);
292static void sbdma_tx_process(struct sbmac_softc *sc, struct sbmacdma *d,
293 int poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294static int sbmac_initctx(struct sbmac_softc *s);
295static void sbmac_channel_start(struct sbmac_softc *s);
296static void sbmac_channel_stop(struct sbmac_softc *s);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100297static enum sbmac_state sbmac_set_channel_state(struct sbmac_softc *,
298 enum sbmac_state);
299static void sbmac_promiscuous_mode(struct sbmac_softc *sc, int onoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static uint64_t sbmac_addr2reg(unsigned char *ptr);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100301static irqreturn_t sbmac_intr(int irq, void *dev_instance);
YueHaibing15c30fd62018-09-19 18:45:12 +0800302static netdev_tx_t sbmac_start_tx(struct sk_buff *skb, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static void sbmac_setmulti(struct sbmac_softc *sc);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100304static int sbmac_init(struct platform_device *pldev, long long base);
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100305static int sbmac_set_speed(struct sbmac_softc *s, enum sbmac_speed speed);
306static int sbmac_set_duplex(struct sbmac_softc *s, enum sbmac_duplex duplex,
307 enum sbmac_fc fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309static int sbmac_open(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static void sbmac_tx_timeout (struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static void sbmac_set_rx_mode(struct net_device *dev);
312static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
313static int sbmac_close(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700314static int sbmac_poll(struct napi_struct *napi, int budget);
Mark Mason693aa942007-04-26 00:23:22 -0700315
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100316static void sbmac_mii_poll(struct net_device *dev);
Ralf Baechle59b81822005-10-20 12:01:28 +0100317static int sbmac_mii_probe(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100319static void sbmac_mii_sync(void __iomem *sbm_mdio);
320static void sbmac_mii_senddata(void __iomem *sbm_mdio, unsigned int data,
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100321 int bitcnt);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100322static int sbmac_mii_read(struct mii_bus *bus, int phyaddr, int regidx);
323static int sbmac_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
324 u16 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326
327/**********************************************************************
328 * Globals
329 ********************************************************************* */
330
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100331static char sbmac_string[] = "sb1250-mac";
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100332
333static char sbmac_mdio_string[] = "sb1250-mac-mdio";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335
336/**********************************************************************
337 * MDIO constants
338 ********************************************************************* */
339
340#define MII_COMMAND_START 0x01
341#define MII_COMMAND_READ 0x02
342#define MII_COMMAND_WRITE 0x01
343#define MII_COMMAND_ACK 0x02
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#define M_MAC_MDIO_DIR_OUTPUT 0 /* for clarity */
346
347#define ENABLE 1
348#define DISABLE 0
349
350/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100351 * SBMAC_MII_SYNC(sbm_mdio)
Ralf Baechle74b02472005-10-19 15:40:02 +0100352 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Synchronize with the MII - send a pattern of bits to the MII
354 * that will guarantee that it is ready to accept a command.
Ralf Baechle74b02472005-10-19 15:40:02 +0100355 *
356 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100357 * sbm_mdio - address of the MAC's MDIO register
Ralf Baechle74b02472005-10-19 15:40:02 +0100358 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * Return value:
360 * nothing
361 ********************************************************************* */
362
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100363static void sbmac_mii_sync(void __iomem *sbm_mdio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 int cnt;
366 uint64_t bits;
367 int mac_mdio_genc;
368
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100369 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 bits = M_MAC_MDIO_DIR_OUTPUT | M_MAC_MDIO_OUT;
Ralf Baechle74b02472005-10-19 15:40:02 +0100372
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100373 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 for (cnt = 0; cnt < 32; cnt++) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100376 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, sbm_mdio);
377 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379}
380
381/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100382 * SBMAC_MII_SENDDATA(sbm_mdio, data, bitcnt)
Ralf Baechle74b02472005-10-19 15:40:02 +0100383 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * Send some bits to the MII. The bits to be sent are right-
385 * justified in the 'data' parameter.
Ralf Baechle74b02472005-10-19 15:40:02 +0100386 *
387 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100388 * sbm_mdio - address of the MAC's MDIO register
389 * data - data to send
390 * bitcnt - number of bits to send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 ********************************************************************* */
392
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100393static void sbmac_mii_senddata(void __iomem *sbm_mdio, unsigned int data,
394 int bitcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 int i;
397 uint64_t bits;
398 unsigned int curmask;
399 int mac_mdio_genc;
400
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100401 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 bits = M_MAC_MDIO_DIR_OUTPUT;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100404 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 curmask = 1 << (bitcnt - 1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 for (i = 0; i < bitcnt; i++) {
409 if (data & curmask)
410 bits |= M_MAC_MDIO_OUT;
411 else bits &= ~M_MAC_MDIO_OUT;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100412 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
413 __raw_writeq(bits | M_MAC_MDC | mac_mdio_genc, sbm_mdio);
414 __raw_writeq(bits | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 curmask >>= 1;
416 }
417}
418
419
420
421/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100422 * SBMAC_MII_READ(bus, phyaddr, regidx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * Read a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100424 *
425 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100426 * bus - MDIO bus handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * phyaddr - PHY's address
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100428 * regnum - index of register to read
Ralf Baechle74b02472005-10-19 15:40:02 +0100429 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * Return value:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100431 * value read, or 0xffff if an error occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 ********************************************************************* */
433
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100434static int sbmac_mii_read(struct mii_bus *bus, int phyaddr, int regidx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100436 struct sbmac_softc *sc = (struct sbmac_softc *)bus->priv;
437 void __iomem *sbm_mdio = sc->sbm_mdio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int idx;
439 int error;
440 int regval;
441 int mac_mdio_genc;
442
443 /*
444 * Synchronize ourselves so that the PHY knows the next
445 * thing coming down is a command
446 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100447 sbmac_mii_sync(sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /*
450 * Send the data to the PHY. The sequence is
451 * a "start" command (2 bits)
452 * a "read" command (2 bits)
453 * the PHY addr (5 bits)
454 * the register index (5 bits)
455 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100456 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_START, 2);
457 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_READ, 2);
458 sbmac_mii_senddata(sbm_mdio, phyaddr, 5);
459 sbmac_mii_senddata(sbm_mdio, regidx, 5);
Ralf Baechle74b02472005-10-19 15:40:02 +0100460
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100461 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Ralf Baechle74b02472005-10-19 15:40:02 +0100462
463 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * Switch the port around without a clock transition.
465 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100466 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * Send out a clock pulse to signal we want the status
470 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100471 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
472 sbm_mdio);
473 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100474
475 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * If an error occurred, the PHY will signal '1' back
477 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100478 error = __raw_readq(sbm_mdio) & M_MAC_MDIO_IN;
Ralf Baechle74b02472005-10-19 15:40:02 +0100479
480 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * Issue an 'idle' clock pulse, but keep the direction
482 * the same.
483 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100484 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
485 sbm_mdio);
486 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 regval = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 for (idx = 0; idx < 16; idx++) {
491 regval <<= 1;
Ralf Baechle74b02472005-10-19 15:40:02 +0100492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (error == 0) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100494 if (__raw_readq(sbm_mdio) & M_MAC_MDIO_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 regval |= 1;
496 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100497
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100498 __raw_writeq(M_MAC_MDIO_DIR_INPUT | M_MAC_MDC | mac_mdio_genc,
499 sbm_mdio);
500 __raw_writeq(M_MAC_MDIO_DIR_INPUT | mac_mdio_genc, sbm_mdio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* Switch back to output */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100504 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (error == 0)
507 return regval;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100508 return 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511
512/**********************************************************************
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100513 * SBMAC_MII_WRITE(bus, phyaddr, regidx, regval)
Ralf Baechle74b02472005-10-19 15:40:02 +0100514 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * Write a value to a PHY register.
Ralf Baechle74b02472005-10-19 15:40:02 +0100516 *
517 * Input parameters:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100518 * bus - MDIO bus handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 * phyaddr - PHY to use
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100520 * regidx - register within the PHY
521 * regval - data to write to register
Ralf Baechle74b02472005-10-19 15:40:02 +0100522 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * Return value:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100524 * 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 ********************************************************************* */
526
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100527static int sbmac_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
528 u16 regval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100530 struct sbmac_softc *sc = (struct sbmac_softc *)bus->priv;
531 void __iomem *sbm_mdio = sc->sbm_mdio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int mac_mdio_genc;
533
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100534 sbmac_mii_sync(sbm_mdio);
Ralf Baechle74b02472005-10-19 15:40:02 +0100535
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100536 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_START, 2);
537 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_WRITE, 2);
538 sbmac_mii_senddata(sbm_mdio, phyaddr, 5);
539 sbmac_mii_senddata(sbm_mdio, regidx, 5);
540 sbmac_mii_senddata(sbm_mdio, MII_COMMAND_ACK, 2);
541 sbmac_mii_senddata(sbm_mdio, regval, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100543 mac_mdio_genc = __raw_readq(sbm_mdio) & M_MAC_GENC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100545 __raw_writeq(M_MAC_MDIO_DIR_OUTPUT | mac_mdio_genc, sbm_mdio);
546
547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550
551
552/**********************************************************************
553 * SBDMA_INITCTX(d,s,chan,txrx,maxdescr)
Ralf Baechle74b02472005-10-19 15:40:02 +0100554 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * Initialize a DMA channel context. Since there are potentially
556 * eight DMA channels per MAC, it's nice to do this in a standard
Ralf Baechle74b02472005-10-19 15:40:02 +0100557 * way.
558 *
559 * Input parameters:
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100560 * d - struct sbmacdma (DMA channel context)
561 * s - struct sbmac_softc (pointer to a MAC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * chan - channel number (0..1 right now)
563 * txrx - Identifies DMA_TX or DMA_RX for channel direction
564 * maxdescr - number of descriptors
Ralf Baechle74b02472005-10-19 15:40:02 +0100565 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * Return value:
567 * nothing
568 ********************************************************************* */
569
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100570static void sbdma_initctx(struct sbmacdma *d, struct sbmac_softc *s, int chan,
571 int txrx, int maxdescr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Mark Mason693aa942007-04-26 00:23:22 -0700573#ifdef CONFIG_SBMAC_COALESCE
574 int int_pktcnt, int_timeout;
575#endif
576
Ralf Baechle74b02472005-10-19 15:40:02 +0100577 /*
578 * Save away interesting stuff in the structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 d->sbdma_eth = s;
582 d->sbdma_channel = chan;
583 d->sbdma_txdir = txrx;
Ralf Baechle74b02472005-10-19 15:40:02 +0100584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#if 0
586 /* RMON clearing */
587 s->sbe_idx =(s->sbm_base - A_MAC_BASE_0)/MAC_SPACING;
588#endif
589
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +0100590 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_BYTES);
591 __raw_writeq(0, s->sbm_base + R_MAC_RMON_COLLISIONS);
592 __raw_writeq(0, s->sbm_base + R_MAC_RMON_LATE_COL);
593 __raw_writeq(0, s->sbm_base + R_MAC_RMON_EX_COL);
594 __raw_writeq(0, s->sbm_base + R_MAC_RMON_FCS_ERROR);
595 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_ABORT);
596 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_BAD);
597 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_GOOD);
598 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_RUNT);
599 __raw_writeq(0, s->sbm_base + R_MAC_RMON_TX_OVERSIZE);
600 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BYTES);
601 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_MCAST);
602 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BCAST);
603 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_BAD);
604 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_GOOD);
605 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_RUNT);
606 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_OVERSIZE);
607 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_FCS_ERROR);
608 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_LENGTH_ERROR);
609 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_CODE_ERROR);
610 __raw_writeq(0, s->sbm_base + R_MAC_RMON_RX_ALIGN_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Ralf Baechle74b02472005-10-19 15:40:02 +0100612 /*
613 * initialize register pointers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100615
616 d->sbdma_config0 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100618 d->sbdma_config1 =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CONFIG1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100620 d->sbdma_dscrbase =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_BASE);
Ralf Baechle74b02472005-10-19 15:40:02 +0100622 d->sbdma_dscrcnt =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_DSCR_CNT);
Ralf Baechle74b02472005-10-19 15:40:02 +0100624 d->sbdma_curdscr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_CUR_DSCRADDR);
Mark Mason693aa942007-04-26 00:23:22 -0700626 if (d->sbdma_txdir)
627 d->sbdma_oodpktlost = NULL;
628 else
629 d->sbdma_oodpktlost =
630 s->sbm_base + R_MAC_DMA_REGISTER(txrx,chan,R_MAC_DMA_OODPKTLOST_RX);
Ralf Baechle74b02472005-10-19 15:40:02 +0100631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * Allocate memory for the ring
634 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 d->sbdma_maxdescr = maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100637
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100638 d->sbdma_dscrtable_unaligned = kcalloc(d->sbdma_maxdescr + 1,
639 sizeof(*d->sbdma_dscrtable),
640 GFP_KERNEL);
Ralf Baechle04115de2005-10-10 14:50:36 +0100641
642 /*
643 * The descriptor table must be aligned to at least 16 bytes or the
644 * MAC will corrupt it.
645 */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100646 d->sbdma_dscrtable = (struct sbdmadscr *)
647 ALIGN((unsigned long)d->sbdma_dscrtable_unaligned,
648 sizeof(*d->sbdma_dscrtable));
Ralf Baechle74b02472005-10-19 15:40:02 +0100649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 d->sbdma_dscrtable_end = d->sbdma_dscrtable + d->sbdma_maxdescr;
Ralf Baechle74b02472005-10-19 15:40:02 +0100651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 d->sbdma_dscrtable_phys = virt_to_phys(d->sbdma_dscrtable);
Ralf Baechle74b02472005-10-19 15:40:02 +0100653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * And context table
656 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100657
Mariusz Kozlowskic477f332007-07-31 23:58:36 +0200658 d->sbdma_ctxtable = kcalloc(d->sbdma_maxdescr,
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100659 sizeof(*d->sbdma_ctxtable), GFP_KERNEL);
Ralf Baechle74b02472005-10-19 15:40:02 +0100660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661#ifdef CONFIG_SBMAC_COALESCE
662 /*
663 * Setup Rx/Tx DMA coalescing defaults
664 */
665
Mark Mason693aa942007-04-26 00:23:22 -0700666 int_pktcnt = (txrx == DMA_TX) ? int_pktcnt_tx : int_pktcnt_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if ( int_pktcnt ) {
668 d->sbdma_int_pktcnt = int_pktcnt;
669 } else {
670 d->sbdma_int_pktcnt = 1;
671 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100672
Mark Mason693aa942007-04-26 00:23:22 -0700673 int_timeout = (txrx == DMA_TX) ? int_timeout_tx : int_timeout_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if ( int_timeout ) {
675 d->sbdma_int_timeout = int_timeout;
676 } else {
677 d->sbdma_int_timeout = 0;
678 }
679#endif
680
681}
682
683/**********************************************************************
684 * SBDMA_CHANNEL_START(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100685 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100687 *
688 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * d - DMA channel to init (context must be previously init'd
690 * rxtx - DMA_RX or DMA_TX depending on what type of channel
Ralf Baechle74b02472005-10-19 15:40:02 +0100691 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Return value:
693 * nothing
694 ********************************************************************* */
695
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100696static void sbdma_channel_start(struct sbmacdma *d, int rxtx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 /*
699 * Turn on the DMA channel
700 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +0100703 __raw_writeq(V_DMA_INT_TIMEOUT(d->sbdma_int_timeout) |
704 0, d->sbdma_config1);
705 __raw_writeq(M_DMA_EOP_INT_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 V_DMA_RINGSZ(d->sbdma_maxdescr) |
707 V_DMA_INT_PKTCNT(d->sbdma_int_pktcnt) |
Ralf Baechle20399732005-10-19 15:39:05 +0100708 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#else
Ralf Baechle20399732005-10-19 15:39:05 +0100710 __raw_writeq(0, d->sbdma_config1);
711 __raw_writeq(V_DMA_RINGSZ(d->sbdma_maxdescr) |
712 0, d->sbdma_config0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#endif
714
Ralf Baechle20399732005-10-19 15:39:05 +0100715 __raw_writeq(d->sbdma_dscrtable_phys, d->sbdma_dscrbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /*
718 * Initialize ring pointers
719 */
720
721 d->sbdma_addptr = d->sbdma_dscrtable;
722 d->sbdma_remptr = d->sbdma_dscrtable;
723}
724
725/**********************************************************************
726 * SBDMA_CHANNEL_STOP(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100727 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * Initialize the hardware registers for a DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +0100729 *
730 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * d - DMA channel to init (context must be previously init'd
Ralf Baechle74b02472005-10-19 15:40:02 +0100732 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * Return value:
734 * nothing
735 ********************************************************************* */
736
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100737static void sbdma_channel_stop(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 /*
740 * Turn off the DMA channel
741 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100742
Ralf Baechle20399732005-10-19 15:39:05 +0100743 __raw_writeq(0, d->sbdma_config1);
Ralf Baechle74b02472005-10-19 15:40:02 +0100744
Ralf Baechle20399732005-10-19 15:39:05 +0100745 __raw_writeq(0, d->sbdma_dscrbase);
Ralf Baechle74b02472005-10-19 15:40:02 +0100746
Ralf Baechle20399732005-10-19 15:39:05 +0100747 __raw_writeq(0, d->sbdma_config0);
Ralf Baechle74b02472005-10-19 15:40:02 +0100748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /*
750 * Zero ring pointers
751 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100752
Ralf Baechle20399732005-10-19 15:39:05 +0100753 d->sbdma_addptr = NULL;
754 d->sbdma_remptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Stephen Hemminger789585e2008-05-18 04:45:09 +0100757static inline void sbdma_align_skb(struct sk_buff *skb,
758 unsigned int power2, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Stephen Hemminger789585e2008-05-18 04:45:09 +0100760 unsigned char *addr = skb->data;
761 unsigned char *newaddr = PTR_ALIGN(addr, power2);
Ralf Baechle74b02472005-10-19 15:40:02 +0100762
Stephen Hemminger789585e2008-05-18 04:45:09 +0100763 skb_reserve(skb, newaddr - addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766
767/**********************************************************************
768 * SBDMA_ADD_RCVBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +0100769 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * Add a buffer to the specified DMA channel. For receive channels,
771 * this queues a buffer for inbound packets.
Ralf Baechle74b02472005-10-19 15:40:02 +0100772 *
773 * Input parameters:
Stephen Hemminger789585e2008-05-18 04:45:09 +0100774 * sc - softc structure
775 * d - DMA channel descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * sb - sk_buff to add, or NULL if we should allocate one
Ralf Baechle74b02472005-10-19 15:40:02 +0100777 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * Return value:
779 * 0 if buffer could not be added (ring is full)
780 * 1 if buffer added successfully
781 ********************************************************************* */
782
783
Stephen Hemminger789585e2008-05-18 04:45:09 +0100784static int sbdma_add_rcvbuffer(struct sbmac_softc *sc, struct sbmacdma *d,
785 struct sk_buff *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Stephen Hemminger789585e2008-05-18 04:45:09 +0100787 struct net_device *dev = sc->sbm_dev;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100788 struct sbdmadscr *dsc;
789 struct sbdmadscr *nextdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct sk_buff *sb_new = NULL;
791 int pktsize = ENET_PACKET_SIZE;
Ralf Baechle74b02472005-10-19 15:40:02 +0100792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +0100794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 dsc = d->sbdma_addptr;
796 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +0100797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * figure out if the ring is full - if the next descriptor
800 * is the same as the one that we're going to remove from
801 * the ring, the ring is full
802 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (nextdsc == d->sbdma_remptr) {
805 return -ENOSPC;
806 }
807
Ralf Baechle74b02472005-10-19 15:40:02 +0100808 /*
809 * Allocate a sk_buff if we don't already have one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * If we do have an sk_buff, reset it so that it's empty.
811 *
812 * Note: sk_buffs don't seem to be guaranteed to have any sort
813 * of alignment when they are allocated. Therefore, allocate enough
814 * extra space to make sure that:
815 *
816 * 1. the data does not start in the middle of a cache line.
817 * 2. The data does not end in the middle of a cache line
Ralf Baechle74b02472005-10-19 15:40:02 +0100818 * 3. The buffer can be aligned such that the IP addresses are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * naturally aligned.
820 *
821 * Remember, the SOCs MAC writes whole cache lines at a time,
822 * without reading the old contents first. So, if the sk_buff's
823 * data portion starts in the middle of a cache line, the SOC
824 * DMA will trash the beginning (and ending) portions.
825 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (sb == NULL) {
Stephen Hemminger789585e2008-05-18 04:45:09 +0100828 sb_new = netdev_alloc_skb(dev, ENET_PACKET_SIZE +
829 SMP_CACHE_BYTES * 2 +
830 NET_IP_ALIGN);
Joe Perches720a43e2013-03-08 15:03:25 +0000831 if (sb_new == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Stephen Hemminger789585e2008-05-18 04:45:09 +0100834 sbdma_align_skb(sb_new, SMP_CACHE_BYTES, NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 else {
837 sb_new = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100838 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 * nothing special to reinit buffer, it's already aligned
840 * and sb->data already points to a good place.
841 */
842 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100845 * fill in the descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848#ifdef CONFIG_SBMAC_COALESCE
849 /*
850 * Do not interrupt per DMA transfer.
851 */
David S. Miller689be432005-06-28 15:25:31 -0700852 dsc->dscr_a = virt_to_phys(sb_new->data) |
Stephen Hemminger789585e2008-05-18 04:45:09 +0100853 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize + NET_IP_ALIGN)) | 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#else
David S. Miller689be432005-06-28 15:25:31 -0700855 dsc->dscr_a = virt_to_phys(sb_new->data) |
Stephen Hemminger789585e2008-05-18 04:45:09 +0100856 V_DMA_DSCRA_A_SIZE(NUMCACHEBLKS(pktsize + NET_IP_ALIGN)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 M_DMA_DSCRA_INTERRUPT;
858#endif
859
860 /* receiving: no options */
861 dsc->dscr_b = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +0100862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100864 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb_new;
Ralf Baechle74b02472005-10-19 15:40:02 +0100868
869 /*
870 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +0100874
875 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * Give the buffer to the DMA engine.
877 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100878
Ralf Baechle20399732005-10-19 15:39:05 +0100879 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +0100880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return 0; /* we did it */
882}
883
884/**********************************************************************
885 * SBDMA_ADD_TXBUFFER(d,sb)
Ralf Baechle74b02472005-10-19 15:40:02 +0100886 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * Add a transmit buffer to the specified DMA channel, causing a
888 * transmit to start.
Ralf Baechle74b02472005-10-19 15:40:02 +0100889 *
890 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * d - DMA channel descriptor
892 * sb - sk_buff to add
Ralf Baechle74b02472005-10-19 15:40:02 +0100893 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * Return value:
895 * 0 transmit queued successfully
896 * otherwise error code
897 ********************************************************************* */
898
899
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100900static int sbdma_add_txbuffer(struct sbmacdma *d, struct sk_buff *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100902 struct sbdmadscr *dsc;
903 struct sbdmadscr *nextdsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 uint64_t phys;
905 uint64_t ncb;
906 int length;
Ralf Baechle74b02472005-10-19 15:40:02 +0100907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /* get pointer to our current place in the ring */
Ralf Baechle74b02472005-10-19 15:40:02 +0100909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 dsc = d->sbdma_addptr;
911 nextdsc = SBDMA_NEXTBUF(d,sbdma_addptr);
Ralf Baechle74b02472005-10-19 15:40:02 +0100912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
914 * figure out if the ring is full - if the next descriptor
915 * is the same as the one that we're going to remove from
916 * the ring, the ring is full
917 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (nextdsc == d->sbdma_remptr) {
920 return -ENOSPC;
921 }
Ralf Baechle74b02472005-10-19 15:40:02 +0100922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /*
924 * Under Linux, it's not necessary to copy/coalesce buffers
925 * like it is on NetBSD. We think they're all contiguous,
926 * but that may not be true for GBE.
927 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 length = sb->len;
Ralf Baechle74b02472005-10-19 15:40:02 +0100930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /*
932 * fill in the descriptor. Note that the number of cache
933 * blocks in the descriptor is the number of blocks
934 * *spanned*, so we need to add in the offset (if any)
935 * while doing the calculation.
936 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 phys = virt_to_phys(sb->data);
939 ncb = NUMCACHEBLKS(length+(phys & (SMP_CACHE_BYTES - 1)));
940
Ralf Baechle74b02472005-10-19 15:40:02 +0100941 dsc->dscr_a = phys |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 V_DMA_DSCRA_A_SIZE(ncb) |
943#ifndef CONFIG_SBMAC_COALESCE
944 M_DMA_DSCRA_INTERRUPT |
945#endif
946 M_DMA_ETHTX_SOP;
Ralf Baechle74b02472005-10-19 15:40:02 +0100947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* transmitting: set outbound options and length */
949
950 dsc->dscr_b = V_DMA_DSCRB_OPTIONS(K_DMA_ETHTX_APPENDCRC_APPENDPAD) |
951 V_DMA_DSCRB_PKT_SIZE(length);
Ralf Baechle74b02472005-10-19 15:40:02 +0100952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
Ralf Baechle74b02472005-10-19 15:40:02 +0100954 * fill in the context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 d->sbdma_ctxtable[dsc-d->sbdma_dscrtable] = sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100958
959 /*
960 * point at next packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 d->sbdma_addptr = nextdsc;
Ralf Baechle74b02472005-10-19 15:40:02 +0100964
965 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 * Give the buffer to the DMA engine.
967 */
Ralf Baechle74b02472005-10-19 15:40:02 +0100968
Ralf Baechle20399732005-10-19 15:39:05 +0100969 __raw_writeq(1, d->sbdma_dscrcnt);
Ralf Baechle74b02472005-10-19 15:40:02 +0100970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return 0; /* we did it */
972}
973
974
975
976
977/**********************************************************************
978 * SBDMA_EMPTYRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +0100979 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 * Free all allocated sk_buffs on the specified DMA channel;
Ralf Baechle74b02472005-10-19 15:40:02 +0100981 *
982 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +0100984 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 * Return value:
986 * nothing
987 ********************************************************************* */
988
Maciej W. Rozycki73d73962007-09-20 19:14:01 +0100989static void sbdma_emptyring(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 int idx;
992 struct sk_buff *sb;
Ralf Baechle74b02472005-10-19 15:40:02 +0100993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 for (idx = 0; idx < d->sbdma_maxdescr; idx++) {
995 sb = d->sbdma_ctxtable[idx];
996 if (sb) {
997 dev_kfree_skb(sb);
998 d->sbdma_ctxtable[idx] = NULL;
999 }
1000 }
1001}
1002
1003
1004/**********************************************************************
1005 * SBDMA_FILLRING(d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 * Fill the specified DMA channel (must be receive channel)
1008 * with sk_buffs
Ralf Baechle74b02472005-10-19 15:40:02 +01001009 *
1010 * Input parameters:
Stephen Hemminger789585e2008-05-18 04:45:09 +01001011 * sc - softc structure
1012 * d - DMA channel
Ralf Baechle74b02472005-10-19 15:40:02 +01001013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 * Return value:
1015 * nothing
1016 ********************************************************************* */
1017
Stephen Hemminger789585e2008-05-18 04:45:09 +01001018static void sbdma_fillring(struct sbmac_softc *sc, struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 int idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01001021
Stephen Hemminger789585e2008-05-18 04:45:09 +01001022 for (idx = 0; idx < SBMAC_MAX_RXDESCR - 1; idx++) {
1023 if (sbdma_add_rcvbuffer(sc, d, NULL) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 break;
1025 }
1026}
1027
Deepak Saxenad6830012007-03-19 15:43:11 -07001028#ifdef CONFIG_NET_POLL_CONTROLLER
1029static void sbmac_netpoll(struct net_device *netdev)
1030{
1031 struct sbmac_softc *sc = netdev_priv(netdev);
1032 int irq = sc->sbm_dev->irq;
1033
1034 __raw_writeq(0, sc->sbm_imr);
1035
Yoann Padioleau0da2f0f2007-07-06 02:39:56 -07001036 sbmac_intr(irq, netdev);
Deepak Saxenad6830012007-03-19 15:43:11 -07001037
1038#ifdef CONFIG_SBMAC_COALESCE
1039 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1040 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
1041 sc->sbm_imr);
1042#else
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001043 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
Deepak Saxenad6830012007-03-19 15:43:11 -07001044 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
1045#endif
1046}
1047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049/**********************************************************************
Mark Mason693aa942007-04-26 00:23:22 -07001050 * SBDMA_RX_PROCESS(sc,d,work_to_do,poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001052 * Process "completed" receive buffers on the specified DMA channel.
Ralf Baechle74b02472005-10-19 15:40:02 +01001053 *
1054 * Input parameters:
Mark Mason693aa942007-04-26 00:23:22 -07001055 * sc - softc structure
1056 * d - DMA channel context
1057 * work_to_do - no. of packets to process before enabling interrupt
1058 * again (for NAPI)
1059 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001060 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 * Return value:
1062 * nothing
1063 ********************************************************************* */
1064
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001065static int sbdma_rx_process(struct sbmac_softc *sc, struct sbmacdma *d,
1066 int work_to_do, int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001068 struct net_device *dev = sc->sbm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int curidx;
1070 int hwidx;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001071 struct sbdmadscr *dsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct sk_buff *sb;
1073 int len;
Mark Mason693aa942007-04-26 00:23:22 -07001074 int work_done = 0;
1075 int dropped = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001076
Mark Mason693aa942007-04-26 00:23:22 -07001077 prefetch(d);
1078
1079again:
1080 /* Check if the HW dropped any frames */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001081 dev->stats.rx_fifo_errors
Mark Mason693aa942007-04-26 00:23:22 -07001082 += __raw_readq(sc->sbm_rxdma.sbdma_oodpktlost) & 0xffff;
1083 __raw_writeq(0, sc->sbm_rxdma.sbdma_oodpktlost);
1084
1085 while (work_to_do-- > 0) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001086 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * figure out where we are (as an index) and where
1088 * the hardware is (also as an index)
1089 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001090 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 * descriptor table was page-aligned and contiguous in
1092 * both virtual and physical memory -- you could then
1093 * just compare the low-order bits of the virtual address
1094 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1095 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001096
Mark Mason693aa942007-04-26 00:23:22 -07001097 dsc = d->sbdma_remptr;
1098 curidx = dsc - d->sbdma_dscrtable;
1099
1100 prefetch(dsc);
1101 prefetch(&d->sbdma_ctxtable[curidx]);
1102
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001103 hwidx = ((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
1104 d->sbdma_dscrtable_phys) /
1105 sizeof(*d->sbdma_dscrtable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /*
1108 * If they're the same, that means we've processed all
1109 * of the descriptors up to (but not including) the one that
1110 * the hardware is working on right now.
1111 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (curidx == hwidx)
Mark Mason693aa942007-04-26 00:23:22 -07001114 goto done;
Ralf Baechle74b02472005-10-19 15:40:02 +01001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /*
1117 * Otherwise, get the packet's sk_buff ptr back
1118 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 sb = d->sbdma_ctxtable[curidx];
1121 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 len = (int)G_DMA_DSCRB_PKT_SIZE(dsc->dscr_b) - 4;
Ralf Baechle74b02472005-10-19 15:40:02 +01001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /*
1126 * Check packet status. If good, process it.
1127 * If not, silently drop it and put it back on the
1128 * receive ring.
1129 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001130
Mark Mason693aa942007-04-26 00:23:22 -07001131 if (likely (!(dsc->dscr_a & M_DMA_ETHRX_BAD))) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /*
1134 * Add a new buffer to replace the old one. If we fail
1135 * to allocate a buffer, we're going to drop this
1136 * packet and put it right back on the receive ring.
1137 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001138
Stephen Hemminger789585e2008-05-18 04:45:09 +01001139 if (unlikely(sbdma_add_rcvbuffer(sc, d, NULL) ==
1140 -ENOBUFS)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001141 dev->stats.rx_dropped++;
Stephen Hemminger789585e2008-05-18 04:45:09 +01001142 /* Re-add old buffer */
1143 sbdma_add_rcvbuffer(sc, d, sb);
Mark Mason693aa942007-04-26 00:23:22 -07001144 /* No point in continuing at the moment */
1145 printk(KERN_ERR "dropped packet (1)\n");
1146 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1147 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 } else {
1149 /*
1150 * Set length into the packet
1151 */
1152 skb_put(sb,len);
Ralf Baechle74b02472005-10-19 15:40:02 +01001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /*
1155 * Buffer has been replaced on the
1156 * receive ring. Pass the buffer to
1157 * the kernel
1158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 sb->protocol = eth_type_trans(sb,d->sbdma_eth->sbm_dev);
1160 /* Check hw IPv4/TCP checksum if supported */
1161 if (sc->rx_hw_checksum == ENABLE) {
1162 if (!((dsc->dscr_a) & M_DMA_ETHRX_BADIP4CS) &&
1163 !((dsc->dscr_a) & M_DMA_ETHRX_BADTCPCS)) {
1164 sb->ip_summed = CHECKSUM_UNNECESSARY;
1165 /* don't need to set sb->csum */
1166 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001167 skb_checksum_none_assert(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169 }
Mark Mason693aa942007-04-26 00:23:22 -07001170 prefetch(sb->data);
1171 prefetch((const void *)(((char *)sb->data)+32));
1172 if (poll)
1173 dropped = netif_receive_skb(sb);
1174 else
1175 dropped = netif_rx(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001176
Mark Mason693aa942007-04-26 00:23:22 -07001177 if (dropped == NET_RX_DROP) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001178 dev->stats.rx_dropped++;
Mark Mason693aa942007-04-26 00:23:22 -07001179 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
1180 goto done;
1181 }
1182 else {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001183 dev->stats.rx_bytes += len;
1184 dev->stats.rx_packets++;
Mark Mason693aa942007-04-26 00:23:22 -07001185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187 } else {
1188 /*
1189 * Packet was mangled somehow. Just drop it and
1190 * put it back on the receive ring.
1191 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001192 dev->stats.rx_errors++;
Stephen Hemminger789585e2008-05-18 04:45:09 +01001193 sbdma_add_rcvbuffer(sc, d, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001195
1196
1197 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * .. and advance to the next buffer.
1199 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Mark Mason693aa942007-04-26 00:23:22 -07001202 work_done++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Mark Mason693aa942007-04-26 00:23:22 -07001204 if (!poll) {
1205 work_to_do = 32;
1206 goto again; /* collect fifo drop statistics again */
1207 }
1208done:
1209 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212/**********************************************************************
1213 * SBDMA_TX_PROCESS(sc,d)
Ralf Baechle74b02472005-10-19 15:40:02 +01001214 *
1215 * Process "completed" transmit buffers on the specified DMA channel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 * This is normally called within the interrupt service routine.
1217 * Note that this isn't really ideal for priority channels, since
Ralf Baechle74b02472005-10-19 15:40:02 +01001218 * it processes all of the packets on a given channel before
1219 * returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001221 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * sc - softc structure
Mark Mason693aa942007-04-26 00:23:22 -07001223 * d - DMA channel context
1224 * poll - 1: using polling (for NAPI)
Ralf Baechle74b02472005-10-19 15:40:02 +01001225 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 * Return value:
1227 * nothing
1228 ********************************************************************* */
1229
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001230static void sbdma_tx_process(struct sbmac_softc *sc, struct sbmacdma *d,
1231 int poll)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001233 struct net_device *dev = sc->sbm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int curidx;
1235 int hwidx;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001236 struct sbdmadscr *dsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 struct sk_buff *sb;
1238 unsigned long flags;
Mark Mason693aa942007-04-26 00:23:22 -07001239 int packets_handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 spin_lock_irqsave(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001242
Mark Mason693aa942007-04-26 00:23:22 -07001243 if (d->sbdma_remptr == d->sbdma_addptr)
1244 goto end_unlock;
1245
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001246 hwidx = ((__raw_readq(d->sbdma_curdscr) & M_DMA_CURDSCR_ADDR) -
1247 d->sbdma_dscrtable_phys) / sizeof(*d->sbdma_dscrtable);
Mark Mason693aa942007-04-26 00:23:22 -07001248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 for (;;) {
Ralf Baechle74b02472005-10-19 15:40:02 +01001250 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * figure out where we are (as an index) and where
1252 * the hardware is (also as an index)
1253 *
Ralf Baechle74b02472005-10-19 15:40:02 +01001254 * This could be done faster if (for example) the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 * descriptor table was page-aligned and contiguous in
1256 * both virtual and physical memory -- you could then
1257 * just compare the low-order bits of the virtual address
1258 * (sbdma_remptr) and the physical address (sbdma_curdscr CSR)
1259 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 curidx = d->sbdma_remptr - d->sbdma_dscrtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 /*
1264 * If they're the same, that means we've processed all
1265 * of the descriptors up to (but not including) the one that
1266 * the hardware is working on right now.
1267 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (curidx == hwidx)
1270 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /*
1273 * Otherwise, get the packet's sk_buff ptr back
1274 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 dsc = &(d->sbdma_dscrtable[curidx]);
1277 sb = d->sbdma_ctxtable[curidx];
1278 d->sbdma_ctxtable[curidx] = NULL;
Ralf Baechle74b02472005-10-19 15:40:02 +01001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
1281 * Stats
1282 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001283
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001284 dev->stats.tx_bytes += sb->len;
1285 dev->stats.tx_packets++;
Ralf Baechle74b02472005-10-19 15:40:02 +01001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 /*
1288 * for transmits, we just free buffers.
1289 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 dev_kfree_skb_irq(sb);
Ralf Baechle74b02472005-10-19 15:40:02 +01001292
1293 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 * .. and advance to the next buffer.
1295 */
1296
1297 d->sbdma_remptr = SBDMA_NEXTBUF(d,sbdma_remptr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001298
Mark Mason693aa942007-04-26 00:23:22 -07001299 packets_handled++;
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 /*
1304 * Decide if we should wake up the protocol or not.
1305 * Other drivers seem to do this when we reach a low
1306 * watermark on the transmit queue.
1307 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001308
Mark Mason693aa942007-04-26 00:23:22 -07001309 if (packets_handled)
1310 netif_wake_queue(d->sbdma_eth->sbm_dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01001311
Mark Mason693aa942007-04-26 00:23:22 -07001312end_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 spin_unlock_irqrestore(&(sc->sbm_lock), flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317
1318
1319/**********************************************************************
1320 * SBMAC_INITCTX(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001321 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 * Initialize an Ethernet context structure - this is called
1323 * once per MAC on the 1250. Memory is allocated here, so don't
1324 * call it again from inside the ioctl routines that bring the
1325 * interface up/down
Ralf Baechle74b02472005-10-19 15:40:02 +01001326 *
1327 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 * s - sbmac context structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001329 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 * Return value:
1331 * 0
1332 ********************************************************************* */
1333
1334static int sbmac_initctx(struct sbmac_softc *s)
1335{
Ralf Baechle74b02472005-10-19 15:40:02 +01001336
1337 /*
1338 * figure out the addresses of some ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 s->sbm_macenable = s->sbm_base + R_MAC_ENABLE;
1342 s->sbm_maccfg = s->sbm_base + R_MAC_CFG;
1343 s->sbm_fifocfg = s->sbm_base + R_MAC_THRSH_CFG;
1344 s->sbm_framecfg = s->sbm_base + R_MAC_FRAMECFG;
1345 s->sbm_rxfilter = s->sbm_base + R_MAC_ADFILTER_CFG;
1346 s->sbm_isr = s->sbm_base + R_MAC_STATUS;
1347 s->sbm_imr = s->sbm_base + R_MAC_INT_MASK;
1348 s->sbm_mdio = s->sbm_base + R_MAC_MDIO;
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 /*
1351 * Initialize the DMA channels. Right now, only one per MAC is used
1352 * Note: Only do this _once_, as it allocates memory from the kernel!
1353 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 sbdma_initctx(&(s->sbm_txdma),s,0,DMA_TX,SBMAC_MAX_TXDESCR);
1356 sbdma_initctx(&(s->sbm_rxdma),s,0,DMA_RX,SBMAC_MAX_RXDESCR);
Ralf Baechle74b02472005-10-19 15:40:02 +01001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /*
1359 * initial state is OFF
1360 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return 0;
1365}
1366
1367
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001368static void sbdma_uninitctx(struct sbmacdma *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Mark Mason693aa942007-04-26 00:23:22 -07001370 if (d->sbdma_dscrtable_unaligned) {
1371 kfree(d->sbdma_dscrtable_unaligned);
1372 d->sbdma_dscrtable_unaligned = d->sbdma_dscrtable = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (d->sbdma_ctxtable) {
1376 kfree(d->sbdma_ctxtable);
1377 d->sbdma_ctxtable = NULL;
1378 }
1379}
1380
1381
1382static void sbmac_uninitctx(struct sbmac_softc *sc)
1383{
1384 sbdma_uninitctx(&(sc->sbm_txdma));
1385 sbdma_uninitctx(&(sc->sbm_rxdma));
1386}
1387
1388
1389/**********************************************************************
1390 * SBMAC_CHANNEL_START(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001391 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * Start packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001393 *
1394 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001396 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * Return value:
1398 * nothing
1399 ********************************************************************* */
1400
1401static void sbmac_channel_start(struct sbmac_softc *s)
1402{
1403 uint64_t reg;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001404 void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 uint64_t cfg,fifo,framecfg;
1406 int idx, th_value;
Ralf Baechle74b02472005-10-19 15:40:02 +01001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /*
1409 * Don't do this if running
1410 */
1411
1412 if (s->sbm_state == sbmac_state_on)
1413 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /*
1416 * Bring the controller out of reset, but leave it off.
1417 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001418
Ralf Baechle20399732005-10-19 15:39:05 +01001419 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /*
1422 * Ignore all received packets
1423 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001424
Ralf Baechle20399732005-10-19 15:39:05 +01001425 __raw_writeq(0, s->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001426
1427 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 * Calculate values for various control registers.
1429 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 cfg = M_MAC_RETRY_EN |
Ralf Baechle74b02472005-10-19 15:40:02 +01001432 M_MAC_TX_HOLD_SOP_EN |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 V_MAC_TX_PAUSE_CNT_16K |
1434 M_MAC_AP_STAT_EN |
1435 M_MAC_FAST_SYNC |
1436 M_MAC_SS_EN |
1437 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001438
1439 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 * Be sure that RD_THRSH+WR_THRSH <= 32 for pass1 pars
1441 * and make sure that RD_THRSH + WR_THRSH <=128 for pass2 and above
1442 * Use a larger RD_THRSH for gigabit
1443 */
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001444 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 th_value = 28;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001446 else
1447 th_value = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 fifo = V_MAC_TX_WR_THRSH(4) | /* Must be '4' or '8' */
1450 ((s->sbm_speed == sbmac_speed_1000)
1451 ? V_MAC_TX_RD_THRSH(th_value) : V_MAC_TX_RD_THRSH(4)) |
1452 V_MAC_TX_RL_THRSH(4) |
1453 V_MAC_RX_PL_THRSH(4) |
1454 V_MAC_RX_RD_THRSH(4) | /* Must be '4' */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 V_MAC_RX_RL_THRSH(8) |
1456 0;
1457
1458 framecfg = V_MAC_MIN_FRAMESZ_DEFAULT |
1459 V_MAC_MAX_FRAMESZ_DEFAULT |
1460 V_MAC_BACKOFF_SEL(1);
1461
1462 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001463 * Clear out the hash address map
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 port = s->sbm_base + R_MAC_HASH_BASE;
1467 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001468 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 port += sizeof(uint64_t);
1470 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /*
1473 * Clear out the exact-match table
1474 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 port = s->sbm_base + R_MAC_ADDR_BASE;
1477 for (idx = 0; idx < MAC_ADDR_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001478 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 port += sizeof(uint64_t);
1480 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /*
1483 * Clear out the DMA Channel mapping table registers
1484 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 port = s->sbm_base + R_MAC_CHUP0_BASE;
1487 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001488 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 port += sizeof(uint64_t);
1490 }
1491
1492
1493 port = s->sbm_base + R_MAC_CHLO0_BASE;
1494 for (idx = 0; idx < MAC_CHMAP_COUNT; idx++) {
Ralf Baechle20399732005-10-19 15:39:05 +01001495 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 port += sizeof(uint64_t);
1497 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /*
1500 * Program the hardware address. It goes into the hardware-address
1501 * register as well as the first filter register.
1502 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 reg = sbmac_addr2reg(s->sbm_hwaddr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 port = s->sbm_base + R_MAC_ADDR_BASE;
Ralf Baechle20399732005-10-19 15:39:05 +01001507 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 port = s->sbm_base + R_MAC_ETHERNET_ADDR;
1509
Ralf Baechle20399732005-10-19 15:39:05 +01001510 __raw_writeq(reg, port);
Ralf Baechle74b02472005-10-19 15:40:02 +01001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /*
1513 * Set the receive filter for no packets, and write values
1514 * to the various config registers
1515 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001516
Ralf Baechle20399732005-10-19 15:39:05 +01001517 __raw_writeq(0, s->sbm_rxfilter);
1518 __raw_writeq(0, s->sbm_imr);
1519 __raw_writeq(framecfg, s->sbm_framecfg);
1520 __raw_writeq(fifo, s->sbm_fifocfg);
1521 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 /*
1524 * Initialize DMA channels (rings should be ok now)
1525 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 sbdma_channel_start(&(s->sbm_rxdma), DMA_RX);
1528 sbdma_channel_start(&(s->sbm_txdma), DMA_TX);
Ralf Baechle74b02472005-10-19 15:40:02 +01001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 /*
1531 * Configure the speed, duplex, and flow control
1532 */
1533
1534 sbmac_set_speed(s,s->sbm_speed);
1535 sbmac_set_duplex(s,s->sbm_duplex,s->sbm_fc);
Ralf Baechle74b02472005-10-19 15:40:02 +01001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /*
1538 * Fill the receive ring
1539 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001540
Stephen Hemminger789585e2008-05-18 04:45:09 +01001541 sbdma_fillring(s, &(s->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001542
1543 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 * Turn on the rest of the bits in the enable register
Ralf Baechle74b02472005-10-19 15:40:02 +01001545 */
1546
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001547#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
1548 __raw_writeq(M_MAC_RXDMA_EN0 |
1549 M_MAC_TXDMA_EN0, s->sbm_macenable);
1550#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Ralf Baechle20399732005-10-19 15:39:05 +01001551 __raw_writeq(M_MAC_RXDMA_EN0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 M_MAC_TXDMA_EN0 |
1553 M_MAC_RX_ENABLE |
Ralf Baechle20399732005-10-19 15:39:05 +01001554 M_MAC_TX_ENABLE, s->sbm_macenable);
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001555#else
Thomas Weber0b1974d2010-09-23 11:46:48 +02001556#error invalid SiByte MAC configuration
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001557#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559#ifdef CONFIG_SBMAC_COALESCE
Ralf Baechle20399732005-10-19 15:39:05 +01001560 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
1561 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562#else
Ralf Baechle20399732005-10-19 15:39:05 +01001563 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
1564 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), s->sbm_imr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565#endif
Ralf Baechle74b02472005-10-19 15:40:02 +01001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001568 * Enable receiving unicasts and broadcasts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001570
1571 __raw_writeq(M_MAC_UCAST_EN | M_MAC_BCAST_EN, s->sbm_rxfilter);
1572
1573 /*
1574 * we're running now.
1575 */
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 s->sbm_state = sbmac_state_on;
Ralf Baechle74b02472005-10-19 15:40:02 +01001578
1579 /*
1580 * Program multicast addresses
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 sbmac_setmulti(s);
Ralf Baechle74b02472005-10-19 15:40:02 +01001584
1585 /*
1586 * If channel was in promiscuous mode before, turn that on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (s->sbm_devflags & IFF_PROMISC) {
1590 sbmac_promiscuous_mode(s,1);
1591 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595
1596/**********************************************************************
1597 * SBMAC_CHANNEL_STOP(s)
Ralf Baechle74b02472005-10-19 15:40:02 +01001598 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 * Stop packet processing on this MAC.
Ralf Baechle74b02472005-10-19 15:40:02 +01001600 *
1601 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 * s - sbmac structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001603 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 * Return value:
1605 * nothing
1606 ********************************************************************* */
1607
1608static void sbmac_channel_stop(struct sbmac_softc *s)
1609{
1610 /* don't do this if already stopped */
Ralf Baechle74b02472005-10-19 15:40:02 +01001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (s->sbm_state == sbmac_state_off)
1613 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /* don't accept any packets, disable all interrupts */
Ralf Baechle74b02472005-10-19 15:40:02 +01001616
Ralf Baechle20399732005-10-19 15:39:05 +01001617 __raw_writeq(0, s->sbm_rxfilter);
1618 __raw_writeq(0, s->sbm_imr);
Ralf Baechle74b02472005-10-19 15:40:02 +01001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 /* Turn off ticker */
Ralf Baechle74b02472005-10-19 15:40:02 +01001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 /* XXX */
Ralf Baechle74b02472005-10-19 15:40:02 +01001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 /* turn off receiver and transmitter */
Ralf Baechle74b02472005-10-19 15:40:02 +01001625
Ralf Baechle20399732005-10-19 15:39:05 +01001626 __raw_writeq(0, s->sbm_macenable);
Ralf Baechle74b02472005-10-19 15:40:02 +01001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /* We're stopped now. */
Ralf Baechle74b02472005-10-19 15:40:02 +01001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 s->sbm_state = sbmac_state_off;
Ralf Baechle74b02472005-10-19 15:40:02 +01001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * Stop DMA channels (rings should be ok now)
1634 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 sbdma_channel_stop(&(s->sbm_rxdma));
1637 sbdma_channel_stop(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /* Empty the receive and transmit rings */
Ralf Baechle74b02472005-10-19 15:40:02 +01001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 sbdma_emptyring(&(s->sbm_rxdma));
1642 sbdma_emptyring(&(s->sbm_txdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
1646/**********************************************************************
1647 * SBMAC_SET_CHANNEL_STATE(state)
Ralf Baechle74b02472005-10-19 15:40:02 +01001648 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 * Set the channel's state ON or OFF
Ralf Baechle74b02472005-10-19 15:40:02 +01001650 *
1651 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 * state - new state
Ralf Baechle74b02472005-10-19 15:40:02 +01001653 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 * Return value:
1655 * old state
1656 ********************************************************************* */
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001657static enum sbmac_state sbmac_set_channel_state(struct sbmac_softc *sc,
1658 enum sbmac_state state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001660 enum sbmac_state oldstate = sc->sbm_state;
Ralf Baechle74b02472005-10-19 15:40:02 +01001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /*
1663 * If same as previous state, return
1664 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (state == oldstate) {
1667 return oldstate;
1668 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001671 * If new state is ON, turn channel on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (state == sbmac_state_on) {
1675 sbmac_channel_start(sc);
1676 }
1677 else {
1678 sbmac_channel_stop(sc);
1679 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 /*
1682 * Return previous state
1683 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return oldstate;
1686}
1687
1688
1689/**********************************************************************
1690 * SBMAC_PROMISCUOUS_MODE(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001691 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * Turn on or off promiscuous mode
Ralf Baechle74b02472005-10-19 15:40:02 +01001693 *
1694 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 * sc - softc
1696 * onoff - 1 to turn on, 0 to turn off
Ralf Baechle74b02472005-10-19 15:40:02 +01001697 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * Return value:
1699 * nothing
1700 ********************************************************************* */
1701
1702static void sbmac_promiscuous_mode(struct sbmac_softc *sc,int onoff)
1703{
1704 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (sc->sbm_state != sbmac_state_on)
1707 return;
Ralf Baechle74b02472005-10-19 15:40:02 +01001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (onoff) {
Ralf Baechle20399732005-10-19 15:39:05 +01001710 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 reg |= M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001712 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 else {
Ralf Baechle20399732005-10-19 15:39:05 +01001715 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 reg &= ~M_MAC_ALLPKT_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01001717 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719}
1720
1721/**********************************************************************
1722 * SBMAC_SETIPHDR_OFFSET(sc,onoff)
Ralf Baechle74b02472005-10-19 15:40:02 +01001723 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * Set the iphdr offset as 15 assuming ethernet encapsulation
Ralf Baechle74b02472005-10-19 15:40:02 +01001725 *
1726 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01001728 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * Return value:
1730 * nothing
1731 ********************************************************************* */
1732
1733static void sbmac_set_iphdr_offset(struct sbmac_softc *sc)
1734{
1735 uint64_t reg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 /* Hard code the off set to 15 for now */
Ralf Baechle20399732005-10-19 15:39:05 +01001738 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 reg &= ~M_MAC_IPHDR_OFFSET | V_MAC_IPHDR_OFFSET(15);
Ralf Baechle20399732005-10-19 15:39:05 +01001740 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01001741
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001742 /* BCM1250 pass1 didn't have hardware checksum. Everything
1743 later does. */
1744 if (soc_type == K_SYS_SOC_TYPE_BCM1250 && periph_rev < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 sc->rx_hw_checksum = DISABLE;
Ralf Baechlef90fdc32006-02-08 23:23:26 +00001746 } else {
1747 sc->rx_hw_checksum = ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
1749}
1750
1751
1752/**********************************************************************
1753 * SBMAC_ADDR2REG(ptr)
Ralf Baechle74b02472005-10-19 15:40:02 +01001754 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 * Convert six bytes into the 64-bit register value that
1756 * we typically write into the SBMAC's address/mcast registers
Ralf Baechle74b02472005-10-19 15:40:02 +01001757 *
1758 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 * ptr - pointer to 6 bytes
Ralf Baechle74b02472005-10-19 15:40:02 +01001760 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * Return value:
1762 * register value
1763 ********************************************************************* */
1764
1765static uint64_t sbmac_addr2reg(unsigned char *ptr)
1766{
1767 uint64_t reg = 0;
Ralf Baechle74b02472005-10-19 15:40:02 +01001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 ptr += 6;
Ralf Baechle74b02472005-10-19 15:40:02 +01001770
1771 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001773 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001775 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001777 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001779 reg |= (uint64_t) *(--ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 reg <<= 8;
Ralf Baechle74b02472005-10-19 15:40:02 +01001781 reg |= (uint64_t) *(--ptr);
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return reg;
1784}
1785
1786
1787/**********************************************************************
1788 * SBMAC_SET_SPEED(s,speed)
Ralf Baechle74b02472005-10-19 15:40:02 +01001789 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 * Configure LAN speed for the specified MAC.
1791 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01001792 *
1793 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 * s - sbmac structure
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001795 * speed - speed to set MAC to (see enum sbmac_speed)
Ralf Baechle74b02472005-10-19 15:40:02 +01001796 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 * Return value:
1798 * 1 if successful
1799 * 0 indicates invalid parameters
1800 ********************************************************************* */
1801
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001802static int sbmac_set_speed(struct sbmac_softc *s, enum sbmac_speed speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 uint64_t cfg;
1805 uint64_t framecfg;
1806
1807 /*
1808 * Save new current values
1809 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 s->sbm_speed = speed;
Ralf Baechle74b02472005-10-19 15:40:02 +01001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (s->sbm_state == sbmac_state_on)
1814 return 0; /* save for next restart */
1815
1816 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001817 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001819
Ralf Baechle20399732005-10-19 15:39:05 +01001820 cfg = __raw_readq(s->sbm_maccfg);
1821 framecfg = __raw_readq(s->sbm_framecfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 /*
1824 * Mask out the stuff we want to change
1825 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 cfg &= ~(M_MAC_BURST_EN | M_MAC_SPEED_SEL);
1828 framecfg &= ~(M_MAC_IFG_RX | M_MAC_IFG_TX | M_MAC_IFG_THRSH |
1829 M_MAC_SLOT_SIZE);
Ralf Baechle74b02472005-10-19 15:40:02 +01001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /*
1832 * Now add in the new bits
1833 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 switch (speed) {
1836 case sbmac_speed_10:
1837 framecfg |= V_MAC_IFG_RX_10 |
1838 V_MAC_IFG_TX_10 |
1839 K_MAC_IFG_THRSH_10 |
1840 V_MAC_SLOT_SIZE_10;
1841 cfg |= V_MAC_SPEED_SEL_10MBPS;
1842 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 case sbmac_speed_100:
1845 framecfg |= V_MAC_IFG_RX_100 |
1846 V_MAC_IFG_TX_100 |
1847 V_MAC_IFG_THRSH_100 |
1848 V_MAC_SLOT_SIZE_100;
1849 cfg |= V_MAC_SPEED_SEL_100MBPS ;
1850 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 case sbmac_speed_1000:
1853 framecfg |= V_MAC_IFG_RX_1000 |
1854 V_MAC_IFG_TX_1000 |
1855 V_MAC_IFG_THRSH_1000 |
1856 V_MAC_SLOT_SIZE_1000;
1857 cfg |= V_MAC_SPEED_SEL_1000MBPS | M_MAC_BURST_EN;
1858 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 default:
1861 return 0;
1862 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001865 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001867
Ralf Baechle20399732005-10-19 15:39:05 +01001868 __raw_writeq(framecfg, s->sbm_framecfg);
1869 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return 1;
1872}
1873
1874/**********************************************************************
1875 * SBMAC_SET_DUPLEX(s,duplex,fc)
Ralf Baechle74b02472005-10-19 15:40:02 +01001876 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 * Set Ethernet duplex and flow control options for this MAC
1878 * Warning: must be called when MAC is off!
Ralf Baechle74b02472005-10-19 15:40:02 +01001879 *
1880 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 * s - sbmac structure
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001882 * duplex - duplex setting (see enum sbmac_duplex)
1883 * fc - flow control setting (see enum sbmac_fc)
Ralf Baechle74b02472005-10-19 15:40:02 +01001884 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 * Return value:
1886 * 1 if ok
1887 * 0 if an invalid parameter combination was specified
1888 ********************************************************************* */
1889
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01001890static int sbmac_set_duplex(struct sbmac_softc *s, enum sbmac_duplex duplex,
1891 enum sbmac_fc fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
1893 uint64_t cfg;
Ralf Baechle74b02472005-10-19 15:40:02 +01001894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 /*
1896 * Save new current values
1897 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 s->sbm_duplex = duplex;
1900 s->sbm_fc = fc;
Ralf Baechle74b02472005-10-19 15:40:02 +01001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (s->sbm_state == sbmac_state_on)
1903 return 0; /* save for next restart */
Ralf Baechle74b02472005-10-19 15:40:02 +01001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001906 * Read current register values
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001908
Ralf Baechle20399732005-10-19 15:39:05 +01001909 cfg = __raw_readq(s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 /*
1912 * Mask off the stuff we're about to change
1913 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 cfg &= ~(M_MAC_FC_SEL | M_MAC_FC_CMD | M_MAC_HDX_EN);
Ralf Baechle74b02472005-10-19 15:40:02 +01001916
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 switch (duplex) {
1919 case sbmac_duplex_half:
1920 switch (fc) {
1921 case sbmac_fc_disabled:
1922 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_DISABLED;
1923 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 case sbmac_fc_collision:
1926 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENABLED;
1927 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 case sbmac_fc_carrier:
1930 cfg |= M_MAC_HDX_EN | V_MAC_FC_CMD_ENAB_FALSECARR;
1931 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 case sbmac_fc_frame: /* not valid in half duplex */
1934 default: /* invalid selection */
1935 return 0;
1936 }
1937 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 case sbmac_duplex_full:
1940 switch (fc) {
1941 case sbmac_fc_disabled:
1942 cfg |= V_MAC_FC_CMD_DISABLED;
1943 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 case sbmac_fc_frame:
1946 cfg |= V_MAC_FC_CMD_ENABLED;
1947 break;
Ralf Baechle74b02472005-10-19 15:40:02 +01001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 case sbmac_fc_collision: /* not valid in full duplex */
1950 case sbmac_fc_carrier: /* not valid in full duplex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 default:
1952 return 0;
1953 }
1954 break;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01001955 default:
1956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
Ralf Baechle74b02472005-10-19 15:40:02 +01001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01001960 * Send the bits back to the hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001962
Ralf Baechle20399732005-10-19 15:39:05 +01001963 __raw_writeq(cfg, s->sbm_maccfg);
Ralf Baechle74b02472005-10-19 15:40:02 +01001964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return 1;
1966}
1967
1968
1969
1970
1971/**********************************************************************
1972 * SBMAC_INTR()
Ralf Baechle74b02472005-10-19 15:40:02 +01001973 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * Interrupt handler for MAC interrupts
Ralf Baechle74b02472005-10-19 15:40:02 +01001975 *
1976 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 * MAC structure
Ralf Baechle74b02472005-10-19 15:40:02 +01001978 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * Return value:
1980 * nothing
1981 ********************************************************************* */
David Howells7d12e782006-10-05 14:55:46 +01001982static irqreturn_t sbmac_intr(int irq,void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct net_device *dev = (struct net_device *) dev_instance;
1985 struct sbmac_softc *sc = netdev_priv(dev);
1986 uint64_t isr;
1987 int handled = 0;
1988
Mark Mason693aa942007-04-26 00:23:22 -07001989 /*
1990 * Read the ISR (this clears the bits in the real
1991 * register, except for counter addr)
1992 */
Ralf Baechle74b02472005-10-19 15:40:02 +01001993
Mark Mason693aa942007-04-26 00:23:22 -07001994 isr = __raw_readq(sc->sbm_isr) & ~M_MAC_COUNTER_ADDR;
Ralf Baechle74b02472005-10-19 15:40:02 +01001995
Mark Mason693aa942007-04-26 00:23:22 -07001996 if (isr == 0)
1997 return IRQ_RETVAL(0);
1998 handled = 1;
Ralf Baechle74b02472005-10-19 15:40:02 +01001999
Mark Mason693aa942007-04-26 00:23:22 -07002000 /*
2001 * Transmits on channel 0
2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002004 if (isr & (M_MAC_INT_CHANNEL << S_MAC_TX_CH0))
Mark Mason693aa942007-04-26 00:23:22 -07002005 sbdma_tx_process(sc,&(sc->sbm_txdma), 0);
Ralf Baechle74b02472005-10-19 15:40:02 +01002006
Mark Mason693aa942007-04-26 00:23:22 -07002007 if (isr & (M_MAC_INT_CHANNEL << S_MAC_RX_CH0)) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002008 if (napi_schedule_prep(&sc->napi)) {
Mark Mason693aa942007-04-26 00:23:22 -07002009 __raw_writeq(0, sc->sbm_imr);
Ben Hutchings288379f2009-01-19 16:43:59 -08002010 __napi_schedule(&sc->napi);
Mark Mason693aa942007-04-26 00:23:22 -07002011 /* Depend on the exit from poll to reenable intr */
2012 }
2013 else {
2014 /* may leave some packets behind */
2015 sbdma_rx_process(sc,&(sc->sbm_rxdma),
2016 SBMAC_MAX_RXDESCR * 2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018 }
2019 return IRQ_RETVAL(handled);
2020}
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022/**********************************************************************
2023 * SBMAC_START_TX(skb,dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002024 *
2025 * Start output on the specified interface. Basically, we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 * queue as many buffers as we can until the ring fills up, or
2027 * we run off the end of the queue, whichever comes first.
Ralf Baechle74b02472005-10-19 15:40:02 +01002028 *
2029 * Input parameters:
2030 *
2031 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 * Return value:
2033 * nothing
2034 ********************************************************************* */
YueHaibing15c30fd62018-09-19 18:45:12 +08002035static netdev_tx_t sbmac_start_tx(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
2037 struct sbmac_softc *sc = netdev_priv(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002038 unsigned long flags;
Ralf Baechle74b02472005-10-19 15:40:02 +01002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 /* lock eth irq */
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002041 spin_lock_irqsave(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /*
Ralf Baechle74b02472005-10-19 15:40:02 +01002044 * Put the buffer on the transmit ring. If we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 * don't have room, stop the queue.
2046 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (sbdma_add_txbuffer(&(sc->sbm_txdma),skb)) {
2049 /* XXX save skb that we could not send */
2050 netif_stop_queue(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002051 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Patrick McHardy5b548142009-06-12 06:22:29 +00002053 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002055
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002056 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002057
Patrick McHardy6ed10652009-06-23 06:03:08 +00002058 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
2061/**********************************************************************
2062 * SBMAC_SETMULTI(sc)
Ralf Baechle74b02472005-10-19 15:40:02 +01002063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * Reprogram the multicast table into the hardware, given
2065 * the list of multicasts associated with the interface
2066 * structure.
Ralf Baechle74b02472005-10-19 15:40:02 +01002067 *
2068 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 * sc - softc
Ralf Baechle74b02472005-10-19 15:40:02 +01002070 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 * Return value:
2072 * nothing
2073 ********************************************************************* */
2074
2075static void sbmac_setmulti(struct sbmac_softc *sc)
2076{
2077 uint64_t reg;
Maciej W. Rozycki73d73962007-09-20 19:14:01 +01002078 void __iomem *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 int idx;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002080 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct net_device *dev = sc->sbm_dev;
Ralf Baechle74b02472005-10-19 15:40:02 +01002082
2083 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * Clear out entire multicast table. We do this by nuking
2085 * the entire hash table and all the direct matches except
Ralf Baechle74b02472005-10-19 15:40:02 +01002086 * the first one, which is used for our station address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 for (idx = 1; idx < MAC_ADDR_COUNT; idx++) {
2090 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002091 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 for (idx = 0; idx < MAC_HASH_COUNT; idx++) {
2095 port = sc->sbm_base + R_MAC_HASH_BASE+(idx*sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002096 __raw_writeq(0, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 /*
2100 * Clear the filter to say we don't want any multicasts.
2101 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002102
Ralf Baechle20399732005-10-19 15:39:05 +01002103 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 reg &= ~(M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002105 __raw_writeq(reg, sc->sbm_rxfilter);
Ralf Baechle74b02472005-10-19 15:40:02 +01002106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (dev->flags & IFF_ALLMULTI) {
Ralf Baechle74b02472005-10-19 15:40:02 +01002108 /*
2109 * Enable ALL multicasts. Do this by inverting the
2110 * multicast enable bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 */
Ralf Baechle20399732005-10-19 15:39:05 +01002112 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 reg |= (M_MAC_MCAST_INV | M_MAC_MCAST_EN);
Ralf Baechle20399732005-10-19 15:39:05 +01002114 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return;
2116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Ralf Baechle74b02472005-10-19 15:40:02 +01002118
2119 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 * Progam new multicast entries. For now, only use the
2121 * perfect filter. In the future we'll need to use the
2122 * hash filter if the perfect filter overflows
2123 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 /* XXX only using perfect filter for now, need to use hash
2126 * XXX if the table overflows */
Ralf Baechle74b02472005-10-19 15:40:02 +01002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 idx = 1; /* skip station address */
Jiri Pirko22bedad32010-04-01 21:22:57 +00002129 netdev_for_each_mc_addr(ha, dev) {
Jiri Pirko55085902010-02-18 00:42:54 +00002130 if (idx == MAC_ADDR_COUNT)
2131 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002132 reg = sbmac_addr2reg(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 port = sc->sbm_base + R_MAC_ADDR_BASE+(idx * sizeof(uint64_t));
Ralf Baechle20399732005-10-19 15:39:05 +01002134 __raw_writeq(reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002137
2138 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 * Enable the "accept multicast bits" if we programmed at least one
Ralf Baechle74b02472005-10-19 15:40:02 +01002140 * multicast.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (idx > 1) {
Ralf Baechle20399732005-10-19 15:39:05 +01002144 reg = __raw_readq(sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 reg |= M_MAC_MCAST_EN;
Ralf Baechle20399732005-10-19 15:39:05 +01002146 __raw_writeq(reg, sc->sbm_rxfilter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148}
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150static int sb1250_change_mtu(struct net_device *_dev, int new_mtu)
2151{
2152 if (new_mtu > ENET_PACKET_SIZE)
2153 return -EINVAL;
2154 _dev->mtu = new_mtu;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002155 pr_info("changing the mtu to %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
2157}
2158
Alexander Beregalovb4cf3422009-04-15 12:52:57 +00002159static const struct net_device_ops sbmac_netdev_ops = {
2160 .ndo_open = sbmac_open,
2161 .ndo_stop = sbmac_close,
2162 .ndo_start_xmit = sbmac_start_tx,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002163 .ndo_set_rx_mode = sbmac_set_rx_mode,
Alexander Beregalovb4cf3422009-04-15 12:52:57 +00002164 .ndo_tx_timeout = sbmac_tx_timeout,
2165 .ndo_do_ioctl = sbmac_mii_ioctl,
2166 .ndo_change_mtu = sb1250_change_mtu,
2167 .ndo_validate_addr = eth_validate_addr,
2168 .ndo_set_mac_address = eth_mac_addr,
2169#ifdef CONFIG_NET_POLL_CONTROLLER
2170 .ndo_poll_controller = sbmac_netpoll,
2171#endif
2172};
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174/**********************************************************************
2175 * SBMAC_INIT(dev)
Ralf Baechle74b02472005-10-19 15:40:02 +01002176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 * Attach routine - init hardware and hook ourselves into linux
Ralf Baechle74b02472005-10-19 15:40:02 +01002178 *
2179 * Input parameters:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 * dev - net_device structure
Ralf Baechle74b02472005-10-19 15:40:02 +01002181 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 * Return value:
2183 * status
2184 ********************************************************************* */
2185
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002186static int sbmac_init(struct platform_device *pldev, long long base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
Jingoo Han8513fbd2013-05-23 00:52:31 +00002188 struct net_device *dev = platform_get_drvdata(pldev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002189 int idx = pldev->id;
2190 struct sbmac_softc *sc = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 unsigned char *eaddr;
2192 uint64_t ea_reg;
2193 int i;
2194 int err;
Ralf Baechle74b02472005-10-19 15:40:02 +01002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 sc->sbm_dev = dev;
2197 sc->sbe_idx = idx;
Ralf Baechle74b02472005-10-19 15:40:02 +01002198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 eaddr = sc->sbm_hwaddr;
Ralf Baechle74b02472005-10-19 15:40:02 +01002200
2201 /*
Nick Andrew877d0312009-01-26 11:06:57 +01002202 * Read the ethernet address. The firmware left this programmed
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 * for us in the ethernet address register for each mac.
2204 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002205
Ralf Baechle20399732005-10-19 15:39:05 +01002206 ea_reg = __raw_readq(sc->sbm_base + R_MAC_ETHERNET_ADDR);
2207 __raw_writeq(0, sc->sbm_base + R_MAC_ETHERNET_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 for (i = 0; i < 6; i++) {
2209 eaddr[i] = (uint8_t) (ea_reg & 0xFF);
2210 ea_reg >>= 8;
2211 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 for (i = 0; i < 6; i++) {
2214 dev->dev_addr[i] = eaddr[i];
2215 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002216
Ralf Baechle74b02472005-10-19 15:40:02 +01002217 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * Initialize context (get pointers to registers and stuff), then
2219 * allocate the memory for the descriptor tables.
2220 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 sbmac_initctx(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 /*
2225 * Set up Linux device callins
2226 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 spin_lock_init(&(sc->sbm_lock));
Ralf Baechle74b02472005-10-19 15:40:02 +01002229
Alexander Beregalovb4cf3422009-04-15 12:52:57 +00002230 dev->netdev_ops = &sbmac_netdev_ops;
2231 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002232
2233 netif_napi_add(dev, &sc->napi, sbmac_poll, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002235 dev->irq = UNIT_INT(idx);
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 /* This is needed for PASS2 for Rx H/W checksum feature */
2238 sbmac_set_iphdr_offset(sc);
2239
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002240 sc->mii_bus = mdiobus_alloc();
2241 if (sc->mii_bus == NULL) {
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002242 err = -ENOMEM;
2243 goto uninit_ctx;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002244 }
2245
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002246 sc->mii_bus->name = sbmac_mdio_string;
Florian Fainelli446bbc42012-01-09 23:59:10 +00002247 snprintf(sc->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
2248 pldev->name, idx);
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002249 sc->mii_bus->priv = sc;
2250 sc->mii_bus->read = sbmac_mii_read;
2251 sc->mii_bus->write = sbmac_mii_write;
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002252
2253 sc->mii_bus->parent = &pldev->dev;
2254 /*
2255 * Probe PHY address
2256 */
2257 err = mdiobus_register(sc->mii_bus);
2258 if (err) {
2259 printk(KERN_ERR "%s: unable to register MDIO bus\n",
2260 dev->name);
2261 goto free_mdio;
2262 }
Jingoo Han8513fbd2013-05-23 00:52:31 +00002263 platform_set_drvdata(pldev, sc->mii_bus);
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 err = register_netdev(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002266 if (err) {
2267 printk(KERN_ERR "%s.%d: unable to register netdev\n",
2268 sbmac_string, idx);
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002269 goto unreg_mdio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002272 pr_info("%s.%d: registered as %s\n", sbmac_string, idx, dev->name);
2273
2274 if (sc->rx_hw_checksum == ENABLE)
2275 pr_info("%s: enabling TCP rcv checksum\n", dev->name);
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /*
2278 * Display Ethernet address (this is called during the config
2279 * process so we need to finish off the config message that
2280 * was being displayed)
2281 */
Johannes Berge1749612008-10-27 15:59:26 -07002282 pr_info("%s: SiByte Ethernet at 0x%08Lx, address: %pM\n",
2283 dev->name, base, eaddr);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return 0;
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002286unreg_mdio:
2287 mdiobus_unregister(sc->mii_bus);
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002288free_mdio:
2289 mdiobus_free(sc->mii_bus);
2290uninit_ctx:
2291 sbmac_uninitctx(sc);
2292 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
2295
2296static int sbmac_open(struct net_device *dev)
2297{
2298 struct sbmac_softc *sc = netdev_priv(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002299 int err;
Ralf Baechle74b02472005-10-19 15:40:02 +01002300
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002301 if (debug > 1)
2302 pr_debug("%s: sbmac_open() irq %d.\n", dev->name, dev->irq);
Ralf Baechle74b02472005-10-19 15:40:02 +01002303
2304 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 * map/route interrupt (clear status first, in case something
2306 * weird is pending; we haven't initialized the mac registers
2307 * yet)
2308 */
2309
Ralf Baechle20399732005-10-19 15:39:05 +01002310 __raw_readq(sc->sbm_isr);
Joe Perchesa0607fd2009-11-18 23:29:17 -08002311 err = request_irq(dev->irq, sbmac_intr, IRQF_SHARED, dev->name, dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002312 if (err) {
2313 printk(KERN_ERR "%s: unable to get IRQ %d\n", dev->name,
2314 dev->irq);
2315 goto out_err;
Ralf Baechle59b81822005-10-20 12:01:28 +01002316 }
2317
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002318 sc->sbm_speed = sbmac_speed_none;
2319 sc->sbm_duplex = sbmac_duplex_none;
2320 sc->sbm_fc = sbmac_fc_none;
2321 sc->sbm_pause = -1;
2322 sc->sbm_link = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002323
Ralf Baechle59b81822005-10-20 12:01:28 +01002324 /*
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002325 * Attach to the PHY
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 */
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002327 err = sbmac_mii_probe(dev);
2328 if (err)
2329 goto out_unregister;
Ralf Baechle74b02472005-10-19 15:40:02 +01002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /*
2332 * Turn on the channel
2333 */
2334
2335 sbmac_set_channel_state(sc,sbmac_state_on);
Ralf Baechle74b02472005-10-19 15:40:02 +01002336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 netif_start_queue(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 sbmac_set_rx_mode(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002340
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002341 phy_start(sc->phy_dev);
2342
2343 napi_enable(&sc->napi);
Ralf Baechle74b02472005-10-19 15:40:02 +01002344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return 0;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002346
2347out_unregister:
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002348 free_irq(dev->irq, dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002349out_err:
2350 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
Ralf Baechle59b81822005-10-20 12:01:28 +01002353static int sbmac_mii_probe(struct net_device *dev)
2354{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 struct sbmac_softc *sc = netdev_priv(dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002356 struct phy_device *phy_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Guenter Roeckee64f082016-01-10 12:03:16 -08002358 phy_dev = phy_find_first(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002359 if (!phy_dev) {
2360 printk(KERN_ERR "%s: no PHY found\n", dev->name);
2361 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002363
Andrew Lunne5a03bf2016-01-06 20:11:16 +01002364 phy_dev = phy_connect(dev, dev_name(&phy_dev->mdio.dev),
2365 &sbmac_mii_poll, PHY_INTERFACE_MODE_GMII);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002366 if (IS_ERR(phy_dev)) {
2367 printk(KERN_ERR "%s: could not attach to PHY\n", dev->name);
2368 return PTR_ERR(phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
Ralf Baechle74b02472005-10-19 15:40:02 +01002370
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002371 /* Remove any features not supported by the controller */
2372 phy_dev->supported &= SUPPORTED_10baseT_Half |
2373 SUPPORTED_10baseT_Full |
2374 SUPPORTED_100baseT_Half |
2375 SUPPORTED_100baseT_Full |
2376 SUPPORTED_1000baseT_Half |
2377 SUPPORTED_1000baseT_Full |
2378 SUPPORTED_Autoneg |
2379 SUPPORTED_MII |
2380 SUPPORTED_Pause |
2381 SUPPORTED_Asym_Pause;
Ralf Baechle74b02472005-10-19 15:40:02 +01002382
Guenter Roeckee64f082016-01-10 12:03:16 -08002383 phy_attached_info(phy_dev);
Andrew Lunn22209432016-01-06 20:11:13 +01002384
2385 phy_dev->advertising = phy_dev->supported;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002386
2387 sc->phy_dev = phy_dev;
2388
2389 return 0;
2390}
2391
2392
2393static void sbmac_mii_poll(struct net_device *dev)
2394{
2395 struct sbmac_softc *sc = netdev_priv(dev);
2396 struct phy_device *phy_dev = sc->phy_dev;
2397 unsigned long flags;
2398 enum sbmac_fc fc;
2399 int link_chg, speed_chg, duplex_chg, pause_chg, fc_chg;
2400
2401 link_chg = (sc->sbm_link != phy_dev->link);
2402 speed_chg = (sc->sbm_speed != phy_dev->speed);
2403 duplex_chg = (sc->sbm_duplex != phy_dev->duplex);
2404 pause_chg = (sc->sbm_pause != phy_dev->pause);
2405
2406 if (!link_chg && !speed_chg && !duplex_chg && !pause_chg)
2407 return; /* Hmmm... */
2408
2409 if (!phy_dev->link) {
2410 if (link_chg) {
2411 sc->sbm_link = phy_dev->link;
2412 sc->sbm_speed = sbmac_speed_none;
2413 sc->sbm_duplex = sbmac_duplex_none;
2414 sc->sbm_fc = sbmac_fc_disabled;
2415 sc->sbm_pause = -1;
2416 pr_info("%s: link unavailable\n", dev->name);
2417 }
2418 return;
2419 }
2420
2421 if (phy_dev->duplex == DUPLEX_FULL) {
2422 if (phy_dev->pause)
2423 fc = sbmac_fc_frame;
2424 else
2425 fc = sbmac_fc_disabled;
2426 } else
2427 fc = sbmac_fc_collision;
2428 fc_chg = (sc->sbm_fc != fc);
2429
2430 pr_info("%s: link available: %dbase-%cD\n", dev->name, phy_dev->speed,
2431 phy_dev->duplex == DUPLEX_FULL ? 'F' : 'H');
2432
2433 spin_lock_irqsave(&sc->sbm_lock, flags);
2434
2435 sc->sbm_speed = phy_dev->speed;
2436 sc->sbm_duplex = phy_dev->duplex;
2437 sc->sbm_fc = fc;
2438 sc->sbm_pause = phy_dev->pause;
2439 sc->sbm_link = phy_dev->link;
2440
2441 if ((speed_chg || duplex_chg || fc_chg) &&
2442 sc->sbm_state != sbmac_state_off) {
2443 /*
2444 * something changed, restart the channel
2445 */
2446 if (debug > 1)
2447 pr_debug("%s: restarting channel "
2448 "because PHY state changed\n", dev->name);
2449 sbmac_channel_stop(sc);
2450 sbmac_channel_start(sc);
2451 }
2452
2453 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454}
2455
2456
2457static void sbmac_tx_timeout (struct net_device *dev)
2458{
2459 struct sbmac_softc *sc = netdev_priv(dev);
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002460 unsigned long flags;
Ralf Baechle74b02472005-10-19 15:40:02 +01002461
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002462 spin_lock_irqsave(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002463
2464
Florian Westphal860e9532016-05-03 16:33:13 +02002465 netif_trans_update(dev); /* prevent tx timeout */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002466 dev->stats.tx_errors++;
Ralf Baechle74b02472005-10-19 15:40:02 +01002467
Weiwei Wangbe61ea52008-09-18 08:23:48 +08002468 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 printk (KERN_WARNING "%s: Transmit timed out\n",dev->name);
2471}
2472
2473
2474
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476static void sbmac_set_rx_mode(struct net_device *dev)
2477{
2478 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 struct sbmac_softc *sc = netdev_priv(dev);
2480
2481 spin_lock_irqsave(&sc->sbm_lock, flags);
2482 if ((dev->flags ^ sc->sbm_devflags) & IFF_PROMISC) {
2483 /*
2484 * Promiscuous changed.
2485 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002486
2487 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 sbmac_promiscuous_mode(sc,1);
2489 }
2490 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 sbmac_promiscuous_mode(sc,0);
2492 }
2493 }
2494 spin_unlock_irqrestore(&sc->sbm_lock, flags);
Ralf Baechle74b02472005-10-19 15:40:02 +01002495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 /*
2497 * Program the multicasts. Do this every time.
2498 */
Ralf Baechle74b02472005-10-19 15:40:02 +01002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 sbmac_setmulti(sc);
Ralf Baechle74b02472005-10-19 15:40:02 +01002501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
2504static int sbmac_mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2505{
2506 struct sbmac_softc *sc = netdev_priv(dev);
Ralf Baechle74b02472005-10-19 15:40:02 +01002507
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002508 if (!netif_running(dev) || !sc->phy_dev)
2509 return -EINVAL;
Ralf Baechle74b02472005-10-19 15:40:02 +01002510
Richard Cochran28b04112010-07-17 08:48:55 +00002511 return phy_mii_ioctl(sc->phy_dev, rq, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512}
2513
2514static int sbmac_close(struct net_device *dev)
2515{
2516 struct sbmac_softc *sc = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002518 napi_disable(&sc->napi);
2519
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002520 phy_stop(sc->phy_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002522 sbmac_set_channel_state(sc, sbmac_state_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 netif_stop_queue(dev);
2525
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002526 if (debug > 1)
2527 pr_debug("%s: Shutting down ethercard\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002529 phy_disconnect(sc->phy_dev);
2530 sc->phy_dev = NULL;
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002531 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 sbdma_emptyring(&(sc->sbm_txdma));
2534 sbdma_emptyring(&(sc->sbm_rxdma));
Ralf Baechle74b02472005-10-19 15:40:02 +01002535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return 0;
2537}
2538
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002539static int sbmac_poll(struct napi_struct *napi, int budget)
Mark Mason693aa942007-04-26 00:23:22 -07002540{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002541 struct sbmac_softc *sc = container_of(napi, struct sbmac_softc, napi);
Mark Mason693aa942007-04-26 00:23:22 -07002542 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002544 work_done = sbdma_rx_process(sc, &(sc->sbm_rxdma), budget, 1);
Mark Mason693aa942007-04-26 00:23:22 -07002545 sbdma_tx_process(sc, &(sc->sbm_txdma), 1);
2546
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002547 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002548 napi_complete(napi);
Mark Mason693aa942007-04-26 00:23:22 -07002549
2550#ifdef CONFIG_SBMAC_COALESCE
2551 __raw_writeq(((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_TX_CH0) |
2552 ((M_MAC_INT_EOP_COUNT | M_MAC_INT_EOP_TIMER) << S_MAC_RX_CH0),
2553 sc->sbm_imr);
2554#else
2555 __raw_writeq((M_MAC_INT_CHANNEL << S_MAC_TX_CH0) |
2556 (M_MAC_INT_CHANNEL << S_MAC_RX_CH0), sc->sbm_imr);
2557#endif
2558 }
2559
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002560 return work_done;
Mark Mason693aa942007-04-26 00:23:22 -07002561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002563
Bill Pemberton047fc562012-12-03 09:24:23 -05002564static int sbmac_probe(struct platform_device *pldev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002566 struct net_device *dev;
2567 struct sbmac_softc *sc;
2568 void __iomem *sbm_base;
2569 struct resource *res;
2570 u64 sbmac_orig_hwaddr;
2571 int err;
2572
2573 res = platform_get_resource(pldev, IORESOURCE_MEM, 0);
2574 BUG_ON(!res);
Joe Perches28f65c112011-06-09 09:13:32 -07002575 sbm_base = ioremap_nocache(res->start, resource_size(res));
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002576 if (!sbm_base) {
2577 printk(KERN_ERR "%s: unable to map device registers\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002578 dev_name(&pldev->dev));
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002579 err = -ENOMEM;
2580 goto out_out;
2581 }
2582
2583 /*
2584 * The R_MAC_ETHERNET_ADDR register will be set to some nonzero
2585 * value for us by the firmware if we're going to use this MAC.
2586 * If we find a zero, skip this MAC.
2587 */
2588 sbmac_orig_hwaddr = __raw_readq(sbm_base + R_MAC_ETHERNET_ADDR);
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002589 pr_debug("%s: %sconfiguring MAC at 0x%08Lx\n", dev_name(&pldev->dev),
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002590 sbmac_orig_hwaddr ? "" : "not ", (long long)res->start);
2591 if (sbmac_orig_hwaddr == 0) {
2592 err = 0;
2593 goto out_unmap;
2594 }
2595
2596 /*
2597 * Okay, cool. Initialize this MAC.
2598 */
2599 dev = alloc_etherdev(sizeof(struct sbmac_softc));
2600 if (!dev) {
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002601 err = -ENOMEM;
2602 goto out_unmap;
2603 }
2604
Jingoo Han8513fbd2013-05-23 00:52:31 +00002605 platform_set_drvdata(pldev, dev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002606 SET_NETDEV_DEV(dev, &pldev->dev);
2607
2608 sc = netdev_priv(dev);
2609 sc->sbm_base = sbm_base;
2610
2611 err = sbmac_init(pldev, res->start);
2612 if (err)
2613 goto out_kfree;
2614
2615 return 0;
2616
2617out_kfree:
2618 free_netdev(dev);
2619 __raw_writeq(sbmac_orig_hwaddr, sbm_base + R_MAC_ETHERNET_ADDR);
2620
2621out_unmap:
2622 iounmap(sbm_base);
2623
2624out_out:
2625 return err;
2626}
2627
2628static int __exit sbmac_remove(struct platform_device *pldev)
2629{
Jingoo Han8513fbd2013-05-23 00:52:31 +00002630 struct net_device *dev = platform_get_drvdata(pldev);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002631 struct sbmac_softc *sc = netdev_priv(dev);
2632
2633 unregister_netdev(dev);
2634 sbmac_uninitctx(sc);
Sebastian Siewior03f80cc2010-04-28 09:57:01 +00002635 mdiobus_unregister(sc->mii_bus);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -07002636 mdiobus_free(sc->mii_bus);
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002637 iounmap(sc->sbm_base);
2638 free_netdev(dev);
2639
2640 return 0;
2641}
2642
Maciej W. Rozyckif5279ff2007-09-21 12:52:10 +01002643static struct platform_driver sbmac_driver = {
2644 .probe = sbmac_probe,
2645 .remove = __exit_p(sbmac_remove),
2646 .driver = {
2647 .name = sbmac_string,
2648 },
2649};
2650
Axel Lindb62f682011-11-27 16:44:17 +00002651module_platform_driver(sbmac_driver);